blob: 4b305d2b64bb68d4d7afc87197eaa9403d1833e1 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen485b9551999-12-07 23:14:59 +000011 */
Pere Orga5bc8c002011-04-11 03:29:49 +020012
Denys Vlasenko67fd2f22016-11-13 22:35:10 +010013//config:config HOSTNAME
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020014//config: bool "hostname (5.6 kb)"
Denys Vlasenko67fd2f22016-11-13 22:35:10 +010015//config: default y
16//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020017//config: Show or set the system's host name.
Denys Vlasenko67fd2f22016-11-13 22:35:10 +010018//config:
19//config:config DNSDOMAINNAME
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020020//config: bool "dnsdomainname (3.6 kb)"
Denys Vlasenko67fd2f22016-11-13 22:35:10 +010021//config: default y
22//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020023//config: Alias to "hostname -d".
Denys Vlasenko67fd2f22016-11-13 22:35:10 +010024
Denys Vlasenko205d48e2017-01-29 14:57:33 +010025// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenko67fd2f22016-11-13 22:35:10 +010026//applet:IF_DNSDOMAINNAME(APPLET_ODDNAME(dnsdomainname, hostname, BB_DIR_BIN, BB_SUID_DROP, dnsdomainname))
27//applet:IF_HOSTNAME(APPLET(hostname, BB_DIR_BIN, BB_SUID_DROP))
28
29//kbuild: lib-$(CONFIG_HOSTNAME) += hostname.o
30//kbuild: lib-$(CONFIG_DNSDOMAINNAME) += hostname.o
31
Pere Orga5bc8c002011-04-11 03:29:49 +020032//usage:#define hostname_trivial_usage
33//usage: "[OPTIONS] [HOSTNAME | -F FILE]"
34//usage:#define hostname_full_usage "\n\n"
35//usage: "Get or set hostname or DNS domain name\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020036//usage: "\n -s Short"
37//usage: "\n -i Addresses for the hostname"
38//usage: "\n -d DNS domain name"
39//usage: "\n -f Fully qualified domain name"
40//usage: "\n -F FILE Use FILE's content as hostname"
41//usage:
42//usage:#define hostname_example_usage
43//usage: "$ hostname\n"
44//usage: "sage\n"
45//usage:
46//usage:#define dnsdomainname_trivial_usage NOUSAGE_STR
47//usage:#define dnsdomainname_full_usage ""
48
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000049#include "libbb.h"
Eric Andersen3d61b102001-10-31 09:59:57 +000050
Eric Andersen3e6ff902001-03-09 21:24:12 +000051static void do_sethostname(char *s, int isfile)
Eric Andersen485b9551999-12-07 23:14:59 +000052{
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020053// if (!s)
54// return;
Denis Vlasenko5415c852008-07-21 23:05:26 +000055 if (isfile) {
56 parser_t *parser = config_open2(s, xfopen_for_read);
Denis Vlasenko084266e2008-07-26 23:08:31 +000057 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
Denis Vlasenko5415c852008-07-21 23:05:26 +000058 do_sethostname(s, 0);
Eric Andersen3d61b102001-10-31 09:59:57 +000059 }
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000060 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenko5415c852008-07-21 23:05:26 +000061 config_close(parser);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020062 } else if (sethostname(s, strlen(s))) {
63// if (errno == EPERM)
64// bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
Denis Vlasenko5415c852008-07-21 23:05:26 +000065 bb_perror_msg_and_die("sethostname");
Eric Andersen485b9551999-12-07 23:14:59 +000066 }
Eric Andersen485b9551999-12-07 23:14:59 +000067}
68
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020069/* Manpage circa 2009:
70 *
Denys Vlasenko9038d6f2009-07-15 20:02:19 +020071 * hostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [--long]
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020072 * [-i] [--ip-address] [-s] [--short] [-y] [--yp] [--nis]
73 *
74 * hostname [-v] [-F filename] [--file filename] / [hostname]
75 *
76 * domainname [-v] [-F filename] [--file filename] / [name]
77 * { bbox: not supported }
78 *
79 * nodename [-v] [-F filename] [--file filename] / [name]
80 * { bbox: not supported }
81 *
82 * dnsdomainname [-v]
83 * { bbox: supported: Linux kernel build needs this }
84 * nisdomainname [-v]
85 * { bbox: not supported }
86 * ypdomainname [-v]
87 * { bbox: not supported }
88 *
89 * -a, --alias
90 * Display the alias name of the host (if used).
91 * { bbox: not supported }
92 * -d, --domain
93 * Display the name of the DNS domain. Don't use the command
94 * domainname to get the DNS domain name because it will show the
95 * NIS domain name and not the DNS domain name. Use dnsdomainname
96 * instead.
97 * -f, --fqdn, --long
98 * Display the FQDN (Fully Qualified Domain Name). A FQDN consists
99 * of a short host name and the DNS domain name. Unless you are
100 * using bind or NIS for host lookups you can change the FQDN and
101 * the DNS domain name (which is part of the FQDN) in the
102 * /etc/hosts file.
103 * -i, --ip-address
104 * Display the IP address(es) of the host.
105 * -s, --short
106 * Display the short host name. This is the host name cut at the
107 * first dot.
108 * -v, --verbose
109 * Be verbose and tell what's going on.
110 * { bbox: supported but ignored }
111 * -y, --yp, --nis
112 * Display the NIS domain name. If a parameter is given (or --file
113 * name ) then root can also set a new NIS domain.
114 * { bbox: not supported }
115 * -F, --file filename
116 * Read the host name from the specified file. Comments (lines
117 * starting with a `#') are ignored.
118 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000119int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200120int hostname_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000121{
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000122 enum {
123 OPT_d = 0x1,
124 OPT_f = 0x2,
125 OPT_i = 0x4,
126 OPT_s = 0x8,
Denis Vlasenkobc5262d2007-01-26 07:02:56 +0000127 OPT_F = 0x10,
Michael Tokareve9355c42013-12-17 19:13:45 +0100128 OPT_dfi = 0x7,
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000129 };
130
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200131 unsigned opts;
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000132 char *buf;
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +0000133 char *hostname_str;
Eric Andersen485b9551999-12-07 23:14:59 +0000134
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200135#if ENABLE_LONG_OPTS
136 applet_long_options =
137 "domain\0" No_argument "d"
138 "fqdn\0" No_argument "f"
139 //Enable if seen in active use in some distro:
140 // "long\0" No_argument "f"
141 // "ip-address\0" No_argument "i"
142 // "short\0" No_argument "s"
143 // "verbose\0" No_argument "v"
144 "file\0" No_argument "F"
145 ;
Eric Andersen485b9551999-12-07 23:14:59 +0000146
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200147#endif
148 /* dnsdomainname from net-tools 1.60, hostname 1.100 (2001-04-14),
149 * supports hostname's options too (not just -v as manpage says) */
150 opts = getopt32(argv, "dfisF:v", &hostname_str);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000151 argv += optind;
152 buf = safe_gethostname();
Denys Vlasenko67fd2f22016-11-13 22:35:10 +0100153 if (ENABLE_DNSDOMAINNAME) {
154 if (!ENABLE_HOSTNAME || applet_name[0] == 'd') {
155 /* dnsdomainname */
156 opts = OPT_d;
157 }
158 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159
Michael Tokareve9355c42013-12-17 19:13:45 +0100160 if (opts & OPT_dfi) {
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200161 /* Cases when we need full hostname (or its part) */
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000162 struct hostent *hp;
163 char *p;
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200164
Eric Andersen3d61b102001-10-31 09:59:57 +0000165 hp = xgethostbyname(buf);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200166 p = strchrnul(hp->h_name, '.');
167 if (opts & OPT_f) {
Eric Andersen3d61b102001-10-31 09:59:57 +0000168 puts(hp->h_name);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200169 } else if (opts & OPT_s) {
170 *p = '\0';
Glenn L McGrath3ff3f4a2002-11-10 22:07:48 +0000171 puts(hp->h_name);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200172 } else if (opts & OPT_d) {
173 if (*p)
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +0000174 puts(p + 1);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200175 } else /*if (opts & OPT_i)*/ {
Denys Vlasenko99069332010-02-27 19:38:19 +0100176 if (hp->h_length == sizeof(struct in_addr)) {
177 struct in_addr **h_addr_list = (struct in_addr **)hp->h_addr_list;
178 while (*h_addr_list) {
Denys Vlasenko1d9e99b2012-04-01 16:52:21 +0200179 printf(h_addr_list[1] ? "%s " : "%s", inet_ntoa(**h_addr_list));
Denys Vlasenko99069332010-02-27 19:38:19 +0100180 h_addr_list++;
181 }
182 bb_putchar('\n');
Eric Andersen3d61b102001-10-31 09:59:57 +0000183 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000184 }
Michael Tokareve9355c42013-12-17 19:13:45 +0100185 } else if (opts & OPT_s) {
186 strchrnul(buf, '.')[0] = '\0';
187 puts(buf);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200188 } else if (opts & OPT_F) {
189 /* Set the hostname */
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000190 do_sethostname(hostname_str, 1);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000191 } else if (argv[0]) {
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200192 /* Set the hostname */
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000193 do_sethostname(argv[0], 0);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200194 } else {
195 /* Just print the current hostname */
Eric Andersen3d61b102001-10-31 09:59:57 +0000196 puts(buf);
197 }
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200198
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000199 if (ENABLE_FEATURE_CLEAN_UP)
200 free(buf);
Denis Vlasenko5415c852008-07-21 23:05:26 +0000201 return EXIT_SUCCESS;
Eric Andersen485b9551999-12-07 23:14:59 +0000202}