1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
28 #include "hostname-setup.h"
33 #if defined(TARGET_FEDORA) || defined(TARGET_ALTLINUX) || defined(TARGET_MANDRIVA)
34 #define FILENAME "/etc/sysconfig/network"
35 #elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE)
36 #define FILENAME "/etc/HOSTNAME"
37 #elif defined(TARGET_ARCH)
38 #define FILENAME "/etc/rc.conf"
39 #elif defined(TARGET_GENTOO)
40 #define FILENAME "/etc/conf.d/hostname"
43 static char* strip_bad_chars(char *s) {
46 for (p = s, d = s; *p; p++)
47 if ((*p >= 'a' && *p <= 'z') ||
48 (*p >= 'A' && *p <= 'Z') ||
49 (*p >= '0' && *p <= '9') ||
60 static int read_and_strip_hostname(const char *path, char **hn) {
67 if ((r = read_one_line_file(path, &s)) < 0)
70 k = strdup(strstrip(s));
88 static int read_distro_hostname(char **hn) {
90 #if defined(TARGET_FEDORA) || defined(TARGET_ARCH) || defined(TARGET_GENTOO) || defined(TARGET_ALTLINUX) || defined(TARGET_MANDRIVA)
96 if (!(f = fopen(FILENAME, "re")))
103 if (!fgets(line, sizeof(line), f)) {
113 if (!startswith_no_case(s, "HOSTNAME="))
116 if (!(k = strdup(s+9))) {
140 #elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE)
141 return read_and_strip_hostname(FILENAME, hn);
147 static int read_hostname(char **hn) {
152 /* First, try to load the generic hostname configuration file,
153 * that we support on all distributions */
155 if ((r = read_and_strip_hostname("/etc/hostname", hn)) < 0) {
158 return read_distro_hostname(hn);
166 int hostname_setup(void) {
169 const char *hn = NULL;
171 if ((r = read_hostname(&b)) < 0) {
173 log_info("No hostname configured.");
175 log_warning("Failed to read configured hostname: %s", strerror(-r));
182 /* Don't override the hostname if it is unset and not
183 * explicitly configured */
185 char *old_hostname = NULL;
187 if ((old_hostname = gethostname_malloc())) {
190 already_set = old_hostname[0] != 0;
200 if (sethostname(hn, strlen(hn)) < 0) {
201 log_warning("Failed to set hostname to <%s>: %m", hn);
204 log_info("Set hostname to <%s>.", hn);