blob: 49a3e89bb8861eabed54dbc08a23817fd0d5366b [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
13//usage:#define hostname_trivial_usage
14//usage: "[OPTIONS] [HOSTNAME | -F FILE]"
15//usage:#define hostname_full_usage "\n\n"
16//usage: "Get or set hostname or DNS domain name\n"
17//usage: "\nOptions:"
18//usage: "\n -s Short"
19//usage: "\n -i Addresses for the hostname"
20//usage: "\n -d DNS domain name"
21//usage: "\n -f Fully qualified domain name"
22//usage: "\n -F FILE Use FILE's content as hostname"
23//usage:
24//usage:#define hostname_example_usage
25//usage: "$ hostname\n"
26//usage: "sage\n"
27//usage:
28//usage:#define dnsdomainname_trivial_usage NOUSAGE_STR
29//usage:#define dnsdomainname_full_usage ""
30
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000031#include "libbb.h"
Eric Andersen3d61b102001-10-31 09:59:57 +000032
Eric Andersen3e6ff902001-03-09 21:24:12 +000033static void do_sethostname(char *s, int isfile)
Eric Andersen485b9551999-12-07 23:14:59 +000034{
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020035// if (!s)
36// return;
Denis Vlasenko5415c852008-07-21 23:05:26 +000037 if (isfile) {
38 parser_t *parser = config_open2(s, xfopen_for_read);
Denis Vlasenko084266e2008-07-26 23:08:31 +000039 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
Denis Vlasenko5415c852008-07-21 23:05:26 +000040 do_sethostname(s, 0);
Eric Andersen3d61b102001-10-31 09:59:57 +000041 }
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000042 if (ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenko5415c852008-07-21 23:05:26 +000043 config_close(parser);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020044 } else if (sethostname(s, strlen(s))) {
45// if (errno == EPERM)
46// bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
Denis Vlasenko5415c852008-07-21 23:05:26 +000047 bb_perror_msg_and_die("sethostname");
Eric Andersen485b9551999-12-07 23:14:59 +000048 }
Eric Andersen485b9551999-12-07 23:14:59 +000049}
50
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020051/* Manpage circa 2009:
52 *
Denys Vlasenko9038d6f2009-07-15 20:02:19 +020053 * hostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [--long]
Denys Vlasenkod30b89c2009-06-26 01:55:45 +020054 * [-i] [--ip-address] [-s] [--short] [-y] [--yp] [--nis]
55 *
56 * hostname [-v] [-F filename] [--file filename] / [hostname]
57 *
58 * domainname [-v] [-F filename] [--file filename] / [name]
59 * { bbox: not supported }
60 *
61 * nodename [-v] [-F filename] [--file filename] / [name]
62 * { bbox: not supported }
63 *
64 * dnsdomainname [-v]
65 * { bbox: supported: Linux kernel build needs this }
66 * nisdomainname [-v]
67 * { bbox: not supported }
68 * ypdomainname [-v]
69 * { bbox: not supported }
70 *
71 * -a, --alias
72 * Display the alias name of the host (if used).
73 * { bbox: not supported }
74 * -d, --domain
75 * Display the name of the DNS domain. Don't use the command
76 * domainname to get the DNS domain name because it will show the
77 * NIS domain name and not the DNS domain name. Use dnsdomainname
78 * instead.
79 * -f, --fqdn, --long
80 * Display the FQDN (Fully Qualified Domain Name). A FQDN consists
81 * of a short host name and the DNS domain name. Unless you are
82 * using bind or NIS for host lookups you can change the FQDN and
83 * the DNS domain name (which is part of the FQDN) in the
84 * /etc/hosts file.
85 * -i, --ip-address
86 * Display the IP address(es) of the host.
87 * -s, --short
88 * Display the short host name. This is the host name cut at the
89 * first dot.
90 * -v, --verbose
91 * Be verbose and tell what's going on.
92 * { bbox: supported but ignored }
93 * -y, --yp, --nis
94 * Display the NIS domain name. If a parameter is given (or --file
95 * name ) then root can also set a new NIS domain.
96 * { bbox: not supported }
97 * -F, --file filename
98 * Read the host name from the specified file. Comments (lines
99 * starting with a `#') are ignored.
100 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000101int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200102int hostname_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen485b9551999-12-07 23:14:59 +0000103{
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000104 enum {
105 OPT_d = 0x1,
106 OPT_f = 0x2,
107 OPT_i = 0x4,
108 OPT_s = 0x8,
Denis Vlasenkobc5262d2007-01-26 07:02:56 +0000109 OPT_F = 0x10,
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000110 OPT_dfis = 0xf,
111 };
112
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200113 unsigned opts;
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000114 char *buf;
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +0000115 char *hostname_str;
Eric Andersen485b9551999-12-07 23:14:59 +0000116
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200117#if ENABLE_LONG_OPTS
118 applet_long_options =
119 "domain\0" No_argument "d"
120 "fqdn\0" No_argument "f"
121 //Enable if seen in active use in some distro:
122 // "long\0" No_argument "f"
123 // "ip-address\0" No_argument "i"
124 // "short\0" No_argument "s"
125 // "verbose\0" No_argument "v"
126 "file\0" No_argument "F"
127 ;
Eric Andersen485b9551999-12-07 23:14:59 +0000128
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200129#endif
130 /* dnsdomainname from net-tools 1.60, hostname 1.100 (2001-04-14),
131 * supports hostname's options too (not just -v as manpage says) */
132 opts = getopt32(argv, "dfisF:v", &hostname_str);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000133 argv += optind;
134 buf = safe_gethostname();
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200135 if (applet_name[0] == 'd') /* dnsdomainname? */
136 opts = OPT_d;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200138 if (opts & OPT_dfis) {
139 /* Cases when we need full hostname (or its part) */
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000140 struct hostent *hp;
141 char *p;
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200142
Eric Andersen3d61b102001-10-31 09:59:57 +0000143 hp = xgethostbyname(buf);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200144 p = strchrnul(hp->h_name, '.');
145 if (opts & OPT_f) {
Eric Andersen3d61b102001-10-31 09:59:57 +0000146 puts(hp->h_name);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200147 } else if (opts & OPT_s) {
148 *p = '\0';
Glenn L McGrath3ff3f4a2002-11-10 22:07:48 +0000149 puts(hp->h_name);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200150 } else if (opts & OPT_d) {
151 if (*p)
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +0000152 puts(p + 1);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200153 } else /*if (opts & OPT_i)*/ {
Denys Vlasenko99069332010-02-27 19:38:19 +0100154 if (hp->h_length == sizeof(struct in_addr)) {
155 struct in_addr **h_addr_list = (struct in_addr **)hp->h_addr_list;
156 while (*h_addr_list) {
157 printf("%s ", inet_ntoa(**h_addr_list));
158 h_addr_list++;
159 }
160 bb_putchar('\n');
Eric Andersen3d61b102001-10-31 09:59:57 +0000161 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162 }
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200163 } else if (opts & OPT_F) {
164 /* Set the hostname */
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000165 do_sethostname(hostname_str, 1);
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000166 } else if (argv[0]) {
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200167 /* Set the hostname */
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000168 do_sethostname(argv[0], 0);
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200169 } else {
170 /* Just print the current hostname */
Eric Andersen3d61b102001-10-31 09:59:57 +0000171 puts(buf);
172 }
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200173
Denis Vlasenko6f1713f2008-02-25 23:23:58 +0000174 if (ENABLE_FEATURE_CLEAN_UP)
175 free(buf);
Denis Vlasenko5415c852008-07-21 23:05:26 +0000176 return EXIT_SUCCESS;
Eric Andersen485b9551999-12-07 23:14:59 +0000177}