2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-08 04:44:59 +05:30
|
|
|
/*
|
2002-10-19 03:43:23 +05:30
|
|
|
* $Id: hostname.c,v 1.33 2002/10/18 22:13:23 andersen Exp $
|
1999-12-08 04:44:59 +05:30
|
|
|
* Mini hostname implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
|
|
|
|
*
|
1999-12-08 09:43:44 +05:30
|
|
|
* adjusted by Erik Andersen <andersee@debian.org> to remove
|
|
|
|
* use of long options and GNU getopt. Improved the usage info.
|
|
|
|
*
|
1999-12-08 04:44:59 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <unistd.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <string.h>
|
1999-12-08 04:44:59 +05:30
|
|
|
#include <stdio.h>
|
2001-03-09 20:06:42 +05:30
|
|
|
#include <stdlib.h>
|
2001-10-31 15:29:57 +05:30
|
|
|
#include <getopt.h>
|
2001-06-23 19:19:14 +05:30
|
|
|
#include "busybox.h"
|
1999-12-08 04:44:59 +05:30
|
|
|
|
2001-10-31 15:29:57 +05:30
|
|
|
extern char *optarg; /* in unistd.h */
|
|
|
|
extern int optind, opterr, optopt; /* in unistd.h */
|
|
|
|
|
2001-03-10 02:54:12 +05:30
|
|
|
static void do_sethostname(char *s, int isfile)
|
1999-12-08 04:44:59 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
FILE *f;
|
|
|
|
char buf[255];
|
|
|
|
|
|
|
|
if (!s)
|
|
|
|
return;
|
|
|
|
if (!isfile) {
|
|
|
|
if (sethostname(s, strlen(s)) < 0) {
|
|
|
|
if (errno == EPERM)
|
2001-02-01 00:30:21 +05:30
|
|
|
error_msg_and_die("you must be root to change the hostname");
|
2000-02-09 01:28:47 +05:30
|
|
|
else
|
2000-12-22 07:18:07 +05:30
|
|
|
perror_msg_and_die("sethostname");
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-08 04:44:59 +05:30
|
|
|
} else {
|
2000-09-27 08:13:35 +05:30
|
|
|
f = xfopen(s, "r");
|
2001-10-31 15:29:57 +05:30
|
|
|
while (fgets(buf, 255, f) != NULL) {
|
|
|
|
if (buf[0] =='#') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
chomp(buf);
|
|
|
|
do_sethostname(buf, 0);
|
|
|
|
}
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
2000-09-27 08:13:35 +05:30
|
|
|
fclose(f);
|
2001-06-26 07:36:08 +05:30
|
|
|
#endif
|
1999-12-08 04:44:59 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int hostname_main(int argc, char **argv)
|
|
|
|
{
|
2001-10-31 15:29:57 +05:30
|
|
|
int opt;
|
|
|
|
int type = 0;
|
|
|
|
struct hostent *hp;
|
2000-02-09 01:28:47 +05:30
|
|
|
char *filename = NULL;
|
|
|
|
char buf[255];
|
2001-10-31 15:29:57 +05:30
|
|
|
char *p = NULL;
|
1999-12-08 04:44:59 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argc < 1)
|
2001-02-15 02:53:06 +05:30
|
|
|
show_usage();
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2001-10-31 15:29:57 +05:30
|
|
|
while ((opt = getopt(argc, argv, "dfisF:")) > 0) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'd':
|
|
|
|
case 'f':
|
|
|
|
case 'i':
|
|
|
|
case 's':
|
|
|
|
type = opt;
|
|
|
|
break;
|
|
|
|
case 'F':
|
|
|
|
filename = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
show_usage();
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-08 09:43:44 +05:30
|
|
|
}
|
1999-12-08 04:44:59 +05:30
|
|
|
|
2001-10-31 15:29:57 +05:30
|
|
|
/* Output in desired format */
|
|
|
|
if (type != 0) {
|
2000-02-09 01:28:47 +05:30
|
|
|
gethostname(buf, 255);
|
2001-10-31 15:29:57 +05:30
|
|
|
hp = xgethostbyname(buf);
|
|
|
|
p = strchr(hp->h_name, '.');
|
|
|
|
if (type == 'f') {
|
|
|
|
puts(hp->h_name);
|
|
|
|
} else if (type == 's') {
|
|
|
|
if (p != NULL) {
|
|
|
|
*p = 0;
|
|
|
|
}
|
2001-05-16 19:51:09 +05:30
|
|
|
puts(buf);
|
2001-10-31 15:29:57 +05:30
|
|
|
} else if (type == 'd') {
|
2002-10-19 03:43:23 +05:30
|
|
|
if (p) puts(p + 1);
|
2001-10-31 15:29:57 +05:30
|
|
|
} else if (type == 'i') {
|
|
|
|
while (hp->h_addr_list[0]) {
|
|
|
|
printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++)));
|
|
|
|
}
|
|
|
|
printf("\n");
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
}
|
2001-10-31 15:29:57 +05:30
|
|
|
/* Set the hostname */
|
|
|
|
else if (filename != NULL) {
|
|
|
|
do_sethostname(filename, 1);
|
|
|
|
} else if (optind < argc) {
|
|
|
|
do_sethostname(argv[optind], 0);
|
|
|
|
}
|
|
|
|
/* Or if all else fails,
|
|
|
|
* just print the current hostname */
|
|
|
|
else {
|
|
|
|
gethostname(buf, 255);
|
|
|
|
puts(buf);
|
|
|
|
}
|
2000-06-19 22:55:40 +05:30
|
|
|
return(0);
|
1999-12-08 04:44:59 +05:30
|
|
|
}
|