blob: 121ad40bb8a3e9dad559a0b5b26a430df0ee2fa0 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen485b9551999-12-07 23:14:59 +00002/*
Eric Andersen485b9551999-12-07 23:14:59 +00003 * Mini hostname implementation for busybox
4 *
5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
6 *
Denys Vlasenkod30b89c2009-06-26 01:55:45 +02007 * Adjusted by Erik Andersen <andersen@codepoet.org> to remove
Eric Andersend29edf31999-12-08 04:13:44 +00008 * use of long options and GNU getopt. Improved the usage info.
9 *
"Robert P. J. Day"2819f752006-07-11 11:32:31 +000010 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen485b9551999-12-07 23:14:59 +000011 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Eric Andersen3d61b102001-10-31 09:59:57 +000013
Eric Andersen3e6ff902001-03-09 21:24:12 +000014static void do_sethostname(char *s, int isfile)
Eric Andersen485b9551999-12-07 23:14:59 +000015{
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020016// if (!s)
17// return;
Denis Vlasenko5415c852008-07-21 23:05:26 +000018 if (isfile) {
19 parser_t *parser = config_open2(s, xfopen_for_read);
Denis Vlasenko084266e2008-07-26 23:08:31 +000020 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
Denis Vlasenko5415c852008-07-21 23:05:26 +000021 do_sethostname(s, 0);
Eric Andersen3d61b102001-10-31 09:59:57 +000022 }
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000023 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenko5415c852008-07-21 23:05:26 +000024 config_close(parser);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020025 } else if (sethostname(s, strlen(s))) {
26// if (errno == EPERM)
27// bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
Denis Vlasenko5415c852008-07-21 23:05:26 +000028 bb_perror_msg_and_die("sethostname");
Eric Andersen485b9551999-12-07 23:14:59 +000029 }
Eric Andersen485b9551999-12-07 23:14:59 +000030}
31
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020032/* Manpage circa 2009:
33 *
Denys Vlasenko9038d6f2009-07-15 20:02:19 +020034 * hostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [--long]
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020035 * [-i] [--ip-address] [-s] [--short] [-y] [--yp] [--nis]
36 *
37 * hostname [-v] [-F filename] [--file filename] / [hostname]
38 *
39 * domainname [-v] [-F filename] [--file filename] / [name]
40 * { bbox: not supported }
41 *
42 * nodename [-v] [-F filename] [--file filename] / [name]
43 * { bbox: not supported }
44 *
45 * dnsdomainname [-v]
46 * { bbox: supported: Linux kernel build needs this }
47 * nisdomainname [-v]
48 * { bbox: not supported }
49 * ypdomainname [-v]
50 * { bbox: not supported }
51 *
52 * -a, --alias
53 * Display the alias name of the host (if used).
54 * { bbox: not supported }
55 * -d, --domain
56 * Display the name of the DNS domain. Don't use the command
57 * domainname to get the DNS domain name because it will show the
58 * NIS domain name and not the DNS domain name. Use dnsdomainname
59 * instead.
60 * -f, --fqdn, --long
61 * Display the FQDN (Fully Qualified Domain Name). A FQDN consists
62 * of a short host name and the DNS domain name. Unless you are
63 * using bind or NIS for host lookups you can change the FQDN and
64 * the DNS domain name (which is part of the FQDN) in the
65 * /etc/hosts file.
66 * -i, --ip-address
67 * Display the IP address(es) of the host.
68 * -s, --short
69 * Display the short host name. This is the host name cut at the
70 * first dot.
71 * -v, --verbose
72 * Be verbose and tell what's going on.
73 * { bbox: supported but ignored }
74 * -y, --yp, --nis
75 * Display the NIS domain name. If a parameter is given (or --file
76 * name ) then root can also set a new NIS domain.
77 * { bbox: not supported }
78 * -F, --file filename
79 * Read the host name from the specified file. Comments (lines
80 * starting with a `#') are ignored.
81 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000082int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020083int hostname_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +000084{
Denis Vlasenko8514fc52006-09-22 08:53:14 +000085 enum {
86 OPT_d = 0x1,
87 OPT_f = 0x2,
88 OPT_i = 0x4,
89 OPT_s = 0x8,
Denis Vlasenkobc5262d2007-01-26 07:02:56 +000090 OPT_F = 0x10,
Denis Vlasenko8514fc52006-09-22 08:53:14 +000091 OPT_dfis = 0xf,
92 };
93
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020094 unsigned opts;
Denis Vlasenko6f1713f2008-02-25 23:23:58 +000095 char *buf;
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000096 char *hostname_str;
Eric Andersen485b9551999-12-07 23:14:59 +000097
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020098#if ENABLE_LONG_OPTS
99 applet_long_options =
100 "domain\0" No_argument "d"
101 "fqdn\0" No_argument "f"
102 //Enable if seen in active use in some distro:
103 // "long\0" No_argument "f"
104 // "ip-address\0" No_argument "i"
105 // "short\0" No_argument "s"
106 // "verbose\0" No_argument "v"
107 "file\0" No_argument "F"
108 ;
Eric Andersen485b9551999-12-07 23:14:59 +0000109
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200110#endif
111 /* dnsdomainname from net-tools 1.60, hostname 1.100 (2001-04-14),
112 * supports hostname's options too (not just -v as manpage says) */
113 opts = getopt32(argv, "dfisF:v", &hostname_str);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000114 argv += optind;
115 buf = safe_gethostname();
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200116 if (applet_name[0] == 'd') /* dnsdomainname? */
117 opts = OPT_d;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000118
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200119 if (opts & OPT_dfis) {
120 /* Cases when we need full hostname (or its part) */
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000121 struct hostent *hp;
122 char *p;
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200123
Eric Andersen3d61b102001-10-31 09:59:57 +0000124 hp = xgethostbyname(buf);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200125 p = strchrnul(hp->h_name, '.');
126 if (opts & OPT_f) {
Eric Andersen3d61b102001-10-31 09:59:57 +0000127 puts(hp->h_name);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200128 } else if (opts & OPT_s) {
129 *p = '\0';
Glenn L McGrath3ff3f4a2002-11-10 22:07:48 +0000130 puts(hp->h_name);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200131 } else if (opts & OPT_d) {
132 if (*p)
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +0000133 puts(p + 1);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200134 } else /*if (opts & OPT_i)*/ {
Denys Vlasenko99069332010-02-27 19:38:19 +0100135 if (hp->h_length == sizeof(struct in_addr)) {
136 struct in_addr **h_addr_list = (struct in_addr **)hp->h_addr_list;
137 while (*h_addr_list) {
138 printf("%s ", inet_ntoa(**h_addr_list));
139 h_addr_list++;
140 }
141 bb_putchar('\n');
Eric Andersen3d61b102001-10-31 09:59:57 +0000142 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 }
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200144 } else if (opts & OPT_F) {
145 /* Set the hostname */
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000146 do_sethostname(hostname_str, 1);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000147 } else if (argv[0]) {
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200148 /* Set the hostname */
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000149 do_sethostname(argv[0], 0);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200150 } else {
151 /* Just print the current hostname */
Eric Andersen3d61b102001-10-31 09:59:57 +0000152 puts(buf);
153 }
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200154
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000155 if (ENABLE_FEATURE_CLEAN_UP)
156 free(buf);
Denis Vlasenko5415c852008-07-21 23:05:26 +0000157 return EXIT_SUCCESS;
Eric Andersen485b9551999-12-07 23:14:59 +0000158}