X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbasic%2Fhostname-util.c;h=a5cb62eb661e03eaf16682241f82d830ee952e46;hp=c0048409b6f2f93767580f78c76179e7011e2d69;hb=0835742b579039bb13784c8de7b6d2a39c5f0a93;hpb=3b22396a4b2767a98172f6915929c47738cb0a1e diff --git a/src/basic/hostname-util.c b/src/basic/hostname-util.c index c0048409b..a5cb62eb6 100644 --- a/src/basic/hostname-util.c +++ b/src/basic/hostname-util.c @@ -1,5 +1,3 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - /*** This file is part of systemd. @@ -19,14 +17,20 @@ along with systemd; If not, see . ***/ +#include +#include +#include +#include #include -#include +#include -#include "util.h" +//#include "fd-util.h" +#include "fileio.h" #include "hostname-util.h" +//#include "macro.h" +#include "string-util.h" -/// UNNEEDED by elogind -#if 0 +#if 0 /// UNNEEDED by elogind bool hostname_is_set(void) { struct utsname u; @@ -41,10 +45,15 @@ bool hostname_is_set(void) { return true; } +#endif // 0 char* gethostname_malloc(void) { struct utsname u; + /* This call tries to return something useful, either the actual hostname + * or it makes something up. The only reason it might fail is OOM. + * It might even return "localhost" if that's set. */ + assert_se(uname(&u) >= 0); if (isempty(u.nodename) || streq(u.nodename, "(none)")) @@ -52,6 +61,32 @@ char* gethostname_malloc(void) { return strdup(u.nodename); } + +#if 0 /// UNNEEDED by elogind +int gethostname_strict(char **ret) { + struct utsname u; + char *k; + + /* This call will rather fail than make up a name. It will not return "localhost" either. */ + + assert_se(uname(&u) >= 0); + + if (isempty(u.nodename)) + return -ENXIO; + + if (streq(u.nodename, "(none)")) + return -ENXIO; + + if (is_localhost(u.nodename)) + return -ENXIO; + + k = strdup(u.nodename); + if (!k) + return -ENOMEM; + + *ret = k; + return 0; +} #endif // 0 static bool hostname_valid_char(char c) { @@ -72,7 +107,7 @@ static bool hostname_valid_char(char c) { * allow_trailing_dot is true and at least two components are present * in the name. Note that due to the restricted charset and length * this call is substantially more conservative than - * dns_domain_is_valid(). + * dns_name_is_valid(). */ bool hostname_is_valid(const char *s, bool allow_trailing_dot) { unsigned n_dots = 0; @@ -93,7 +128,7 @@ bool hostname_is_valid(const char *s, bool allow_trailing_dot) { return false; dot = true; - n_dots ++; + n_dots++; } else { if (!hostname_valid_char(*p)) return false; @@ -113,14 +148,15 @@ bool hostname_is_valid(const char *s, bool allow_trailing_dot) { return true; } -/// UNNEEDED by elogind -#if 0 +#if 0 /// UNNEEDED by elogind char* hostname_cleanup(char *s) { char *p, *d; bool dot; assert(s); + strshorten(s, HOST_NAME_MAX); + for (p = s, d = s, dot = true; *p; p++) { if (*p == '.') { if (dot) @@ -140,8 +176,6 @@ char* hostname_cleanup(char *s) { else *d = 0; - strshorten(s, HOST_NAME_MAX); - return s; } #endif // 0 @@ -150,20 +184,19 @@ bool is_localhost(const char *hostname) { assert(hostname); /* This tries to identify local host and domain names - * described in RFC6761 plus the redhatism of .localdomain */ + * described in RFC6761 plus the redhatism of localdomain */ return strcaseeq(hostname, "localhost") || strcaseeq(hostname, "localhost.") || - strcaseeq(hostname, "localdomain.") || - strcaseeq(hostname, "localdomain") || + strcaseeq(hostname, "localhost.localdomain") || + strcaseeq(hostname, "localhost.localdomain.") || endswith_no_case(hostname, ".localhost") || endswith_no_case(hostname, ".localhost.") || - endswith_no_case(hostname, ".localdomain") || - endswith_no_case(hostname, ".localdomain."); + endswith_no_case(hostname, ".localhost.localdomain") || + endswith_no_case(hostname, ".localhost.localdomain."); } -/// UNNEEDED by elogind -#if 0 +#if 0 /// UNNEEDED by elogind bool is_gateway_hostname(const char *hostname) { assert(hostname);