1 /* vi: set sw=4 ts=4: */
3 * $Id: hostname.c,v 1.36 2003/07/14 21:21:01 andersen Exp $
4 * Mini hostname implementation for busybox
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
8 * adjusted by Erik Andersen <andersen@codepoet.org> to remove
9 * use of long options and GNU getopt. Improved the usage info.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <arpa/inet.h>
36 extern char *optarg; /* in unistd.h */
37 extern int optind, opterr, optopt; /* in unistd.h */
39 static void do_sethostname(char *s, int isfile)
47 if (sethostname(s, strlen(s)) < 0) {
49 bb_error_msg_and_die("you must be root to change the hostname");
51 bb_perror_msg_and_die("sethostname");
54 f = bb_xfopen(s, "r");
55 while (fgets(buf, 255, f) != NULL) {
60 do_sethostname(buf, 0);
62 #ifdef CONFIG_FEATURE_CLEAN_UP
68 int hostname_main(int argc, char **argv)
73 char *filename = NULL;
80 while ((opt = getopt(argc, argv, "dfisF:")) > 0) {
96 /* Output in desired format */
98 gethostname(buf, 255);
99 hp = xgethostbyname(buf);
100 p = strchr(hp->h_name, '.');
103 } else if (type == 's') {
108 } else if (type == 'd') {
110 } else if (type == 'i') {
111 while (hp->h_addr_list[0]) {
112 printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++)));
117 /* Set the hostname */
118 else if (filename != NULL) {
119 do_sethostname(filename, 1);
120 } else if (optind < argc) {
121 do_sethostname(argv[optind], 0);
123 /* Or if all else fails,
124 * just print the current hostname */
126 gethostname(buf, 255);