X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fhostname-setup.c;h=ef68d783953d3e2fc8894f8c6db996d058651258;hp=d8fa5679010f045f3e0d362c9dd35920e6a8457e;hb=90102b22ba0a9a6aa8ff1b9d32349e100902a8d7;hpb=e59077036bcf5a041e336f04cb0d2f7d18d489a1 diff --git a/src/hostname-setup.c b/src/hostname-setup.c index d8fa56790..ef68d7839 100644 --- a/src/hostname-setup.c +++ b/src/hostname-setup.c @@ -30,9 +30,9 @@ #include "util.h" #include "log.h" -#if defined(TARGET_FEDORA) +#if defined(TARGET_FEDORA) || defined(TARGET_ALTLINUX) || defined(TARGET_MANDRIVA) #define FILENAME "/etc/sysconfig/network" -#elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) +#elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE) #define FILENAME "/etc/HOSTNAME" #elif defined(TARGET_ARCH) #define FILENAME "/etc/rc.conf" @@ -57,9 +57,37 @@ static char* strip_bad_chars(char *s) { return s; } +static int read_and_strip_hostname(const char *path, char **hn) { + char *s, *k; + int r; + + assert(path); + assert(hn); + + if ((r = read_one_line_file(path, &s)) < 0) + return r; + + k = strdup(strstrip(s)); + free(s); + + if (!k) + return -ENOMEM; + + strip_bad_chars(k); + + if (k[0] == 0) { + free(k); + return -ENOENT; + } + + *hn = k; + + return 0; +} + static int read_distro_hostname(char **hn) { -#if defined(TARGET_FEDORA) || defined(TARGET_ARCH) || defined(TARGET_GENTOO) +#if defined(TARGET_FEDORA) || defined(TARGET_ARCH) || defined(TARGET_GENTOO) || defined(TARGET_ALTLINUX) || defined(TARGET_MANDRIVA) int r; FILE *f; @@ -109,31 +137,8 @@ finish: fclose(f); return r; -#elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) - int r; - char *s, *k; - - assert(hn); - - if ((r = read_one_line_file(FILENAME, &s)) < 0) - return r; - - k = strdup(strstrip(s)); - free(s); - - if (!k) - return -ENOMEM; - - strip_bad_chars(k); - - if (k[0] == 0) { - free(k); - return -ENOENT; - } - - *hn = k; - return 0; - +#elif defined(TARGET_SUSE) || defined(TARGET_SLACKWARE) || defined(TARGET_FRUGALWARE) + return read_and_strip_hostname(FILENAME, hn); #else return -ENOENT; #endif @@ -141,14 +146,13 @@ finish: static int read_hostname(char **hn) { int r; - char *s, *k; assert(hn); /* First, try to load the generic hostname configuration file, * that we support on all distributions */ - if ((r = read_one_line_file("/etc/hostname", &s)) < 0) { + if ((r = read_and_strip_hostname("/etc/hostname", hn)) < 0) { if (r == -ENOENT) return read_distro_hostname(hn); @@ -156,43 +160,31 @@ static int read_hostname(char **hn) { return r; } - k = strdup(strstrip(s)); - free(s); - - if (!k) - return -ENOMEM; - - strip_bad_chars(k); - - if (k[0] == 0) { - free(k); - return -ENOENT; - } - - *hn = k; - return 0; } int hostname_setup(void) { int r; - char *hn; + char *b = NULL; + const char *hn = NULL; - if ((r = read_hostname(&hn)) < 0) { - if (r != -ENOENT) + if ((r = read_hostname(&b)) < 0) { + if (r == -ENOENT) + log_info("No hostname configured."); + else log_warning("Failed to read configured hostname: %s", strerror(-r)); - return r; - } - - r = sethostname(hn, strlen(hn)) < 0 ? -errno : 0; + hn = "localhost"; + } else + hn = b; - if (r < 0) - log_warning("Failed to set hostname to <%s>: %s", hn, strerror(-r)); - else + if (sethostname(hn, strlen(hn)) < 0) { + log_warning("Failed to set hostname to <%s>: %m", hn); + r = -errno; + } else log_info("Set hostname to <%s>.", hn); - free(hn); + free(b); return r; }