blob: 7116a14df4e2f631625b5a069aaf0cd99680decd [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
Eric Andersene0c07572001-06-23 13:49:14 +000015#include "busybox.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");
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000032 while (fgets(bb_common_bufsiz1, sizeof(bb_common_bufsiz1), f) != NULL) {
33 if (bb_common_bufsiz1[0] == '#') {
Eric Andersen3d61b102001-10-31 09:59:57 +000034 continue;
35 }
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000036 chomp(bb_common_bufsiz1);
37 do_sethostname(bb_common_bufsiz1, 0);
Eric Andersen3d61b102001-10-31 09:59:57 +000038 }
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000039 if (ENABLE_FEATURE_CLEAN_UP)
40 fclose(f);
Eric Andersen485b9551999-12-07 23:14:59 +000041 }
Eric Andersen485b9551999-12-07 23:14:59 +000042}
43
44int hostname_main(int argc, char **argv)
45{
Denis Vlasenko8514fc52006-09-22 08:53:14 +000046 enum {
47 OPT_d = 0x1,
48 OPT_f = 0x2,
49 OPT_i = 0x4,
50 OPT_s = 0x8,
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000051 OPT_F = 0x8,
Denis Vlasenko8514fc52006-09-22 08:53:14 +000052 OPT_dfis = 0xf,
53 };
54
55 char buf[256];
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000056 char *hostname_str;
Eric Andersen485b9551999-12-07 23:14:59 +000057
Erik Andersene49d5ec2000-02-08 19:58:47 +000058 if (argc < 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +000059 bb_show_usage();
Eric Andersen485b9551999-12-07 23:14:59 +000060
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000061 getopt32(argc, argv, "dfisF:", &hostname_str);
Erik Andersene49d5ec2000-02-08 19:58:47 +000062
Eric Andersen3d61b102001-10-31 09:59:57 +000063 /* Output in desired format */
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000064 if (option_mask32 & OPT_dfis) {
Denis Vlasenko8514fc52006-09-22 08:53:14 +000065 struct hostent *hp;
66 char *p;
67 gethostname(buf, sizeof(buf));
Eric Andersen3d61b102001-10-31 09:59:57 +000068 hp = xgethostbyname(buf);
69 p = strchr(hp->h_name, '.');
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000070 if (option_mask32 & OPT_f) {
Eric Andersen3d61b102001-10-31 09:59:57 +000071 puts(hp->h_name);
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000072 } else if (option_mask32 & OPT_s) {
Eric Andersen3d61b102001-10-31 09:59:57 +000073 if (p != NULL) {
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000074 *p = '\0';
Eric Andersen3d61b102001-10-31 09:59:57 +000075 }
Glenn L McGrath3ff3f4a2002-11-10 22:07:48 +000076 puts(hp->h_name);
Bernhard Reutner-Fischerf07fe622007-01-09 10:06:19 +000077 } else if (option_mask32 & OPT_d) {
78 if (p)
79 puts(p + 1);
80 } else if (option_mask32 & OPT_i) {
Eric Andersen3d61b102001-10-31 09:59:57 +000081 while (hp->h_addr_list[0]) {
82 printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++)));
83 }
Denis Vlasenko8514fc52006-09-22 08:53:14 +000084 puts("");
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 }
86 }
Eric Andersen3d61b102001-10-31 09:59:57 +000087 /* Set the hostname */
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +000088 else if (option_mask32 & OPT_F) {
Denis Vlasenko8514fc52006-09-22 08:53:14 +000089 do_sethostname(hostname_str, 1);
Eric Andersen3d61b102001-10-31 09:59:57 +000090 } else if (optind < argc) {
91 do_sethostname(argv[optind], 0);
92 }
93 /* Or if all else fails,
94 * just print the current hostname */
Denis Vlasenko8514fc52006-09-22 08:53:14 +000095 else {
96 gethostname(buf, sizeof(buf));
Eric Andersen3d61b102001-10-31 09:59:57 +000097 puts(buf);
98 }
Denis Vlasenko8514fc52006-09-22 08:53:14 +000099 return 0;
Eric Andersen485b9551999-12-07 23:14:59 +0000100}