blob: 2c224bef905fc5afc6c1b4ddb3a0e4a88f24d6c2 [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 *
Eric Andersencb81e642003-07-14 21:21:08 +00007 * 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 *
Eric Andersen485b9551999-12-07 23:14:59 +000010 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"Robert P. J. Day"2819f752006-07-11 11:32:31 +000011 *
12 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen485b9551999-12-07 23:14:59 +000013 */
14
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Eric Andersen3d61b102001-10-31 09:59:57 +000016
Eric Andersen3e6ff902001-03-09 21:24:12 +000017static void do_sethostname(char *s, int isfile)
Eric Andersen485b9551999-12-07 23:14:59 +000018{
Erik Andersene49d5ec2000-02-08 19:58:47 +000019 FILE *f;
Erik Andersene49d5ec2000-02-08 19:58:47 +000020
21 if (!s)
22 return;
23 if (!isfile) {
24 if (sethostname(s, strlen(s)) < 0) {
25 if (errno == EPERM)
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000026 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
Erik Andersene49d5ec2000-02-08 19:58:47 +000027 else
Manuel Novoa III cad53642003-03-19 09:13:01 +000028 bb_perror_msg_and_die("sethostname");
Erik Andersene49d5ec2000-02-08 19:58:47 +000029 }
Eric Andersen485b9551999-12-07 23:14:59 +000030 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +000031 f = xfopen(s, "r");
Denis Vlasenko74324c82007-06-04 10:16:52 +000032#define strbuf bb_common_bufsiz1
33 while (fgets(strbuf, sizeof(strbuf), f) != NULL) {
34 if (strbuf[0] == '#') {
Eric Andersen3d61b102001-10-31 09:59:57 +000035 continue;
36 }
Denis Vlasenko74324c82007-06-04 10:16:52 +000037 chomp(strbuf);
38 do_sethostname(strbuf, 0);
Eric Andersen3d61b102001-10-31 09:59:57 +000039 }
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000040 if (ENABLE_FEATURE_CLEAN_UP)
41 fclose(f);
Eric Andersen485b9551999-12-07 23:14:59 +000042 }
Eric Andersen485b9551999-12-07 23:14:59 +000043}
44
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000045int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Eric Andersen485b9551999-12-07 23:14:59 +000046int hostname_main(int argc, char **argv)
47{
Denis Vlasenko8514fc52006-09-22 08:53:14 +000048 enum {
49 OPT_d = 0x1,
50 OPT_f = 0x2,
51 OPT_i = 0x4,
52 OPT_s = 0x8,
Denis Vlasenkobc5262d2007-01-26 07:02:56 +000053 OPT_F = 0x10,
Denis Vlasenko8514fc52006-09-22 08:53:14 +000054 OPT_dfis = 0xf,
55 };
56
57 char buf[256];
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000058 char *hostname_str;
Eric Andersen485b9551999-12-07 23:14:59 +000059
Erik Andersene49d5ec2000-02-08 19:58:47 +000060 if (argc < 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +000061 bb_show_usage();
Eric Andersen485b9551999-12-07 23:14:59 +000062
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000063 getopt32(argv, "dfisF:", &hostname_str);
Erik Andersene49d5ec2000-02-08 19:58:47 +000064
Eric Andersen3d61b102001-10-31 09:59:57 +000065 /* Output in desired format */
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000066 if (option_mask32 & OPT_dfis) {
Denis Vlasenko8514fc52006-09-22 08:53:14 +000067 struct hostent *hp;
68 char *p;
69 gethostname(buf, sizeof(buf));
Eric Andersen3d61b102001-10-31 09:59:57 +000070 hp = xgethostbyname(buf);
71 p = strchr(hp->h_name, '.');
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000072 if (option_mask32 & OPT_f) {
Eric Andersen3d61b102001-10-31 09:59:57 +000073 puts(hp->h_name);
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000074 } else if (option_mask32 & OPT_s) {
Eric Andersen3d61b102001-10-31 09:59:57 +000075 if (p != NULL) {
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000076 *p = '\0';
Eric Andersen3d61b102001-10-31 09:59:57 +000077 }
Glenn L McGrath3ff3f4a2002-11-10 22:07:48 +000078 puts(hp->h_name);
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000079 } else if (option_mask32 & OPT_d) {
80 if (p)
81 puts(p + 1);
82 } else if (option_mask32 & OPT_i) {
Eric Andersen3d61b102001-10-31 09:59:57 +000083 while (hp->h_addr_list[0]) {
84 printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++)));
85 }
Denis Vlasenko4daad902007-09-27 10:20:47 +000086 bb_putchar('\n');
Erik Andersene49d5ec2000-02-08 19:58:47 +000087 }
88 }
Eric Andersen3d61b102001-10-31 09:59:57 +000089 /* Set the hostname */
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000090 else if (option_mask32 & OPT_F) {
Denis Vlasenko8514fc52006-09-22 08:53:14 +000091 do_sethostname(hostname_str, 1);
Eric Andersen3d61b102001-10-31 09:59:57 +000092 } else if (optind < argc) {
93 do_sethostname(argv[optind], 0);
94 }
95 /* Or if all else fails,
96 * just print the current hostname */
Denis Vlasenko8514fc52006-09-22 08:53:14 +000097 else {
98 gethostname(buf, sizeof(buf));
Eric Andersen3d61b102001-10-31 09:59:57 +000099 puts(buf);
100 }
Denis Vlasenko8514fc52006-09-22 08:53:14 +0000101 return 0;
Eric Andersen485b9551999-12-07 23:14:59 +0000102}