2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-08 04:44:59 +05:30
|
|
|
/*
|
2000-12-08 01:26:48 +05:30
|
|
|
* $Id: hostname.c,v 1.16 2000/12/07 19:56:48 markw 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
|
|
|
|
*/
|
|
|
|
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-12-08 04:44:59 +05:30
|
|
|
#include <errno.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
void do_sethostname(char *s, int isfile)
|
|
|
|
{
|
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)
|
2000-12-08 01:26:48 +05:30
|
|
|
error_msg("you must be root to change the hostname\n");
|
2000-02-09 01:28:47 +05:30
|
|
|
else
|
|
|
|
perror("sethostname");
|
|
|
|
exit(1);
|
|
|
|
}
|
1999-12-08 04:44:59 +05:30
|
|
|
} else {
|
2000-09-27 08:13:35 +05:30
|
|
|
f = xfopen(s, "r");
|
|
|
|
fgets(buf, 255, f);
|
|
|
|
fclose(f);
|
|
|
|
if (buf[strlen(buf) - 1] == '\n')
|
|
|
|
buf[strlen(buf) - 1] = 0;
|
|
|
|
if (sethostname(buf, strlen(buf)) < 0) {
|
|
|
|
perror("sethostname");
|
2000-02-09 01:28:47 +05:30
|
|
|
exit(1);
|
|
|
|
}
|
1999-12-08 04:44:59 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int hostname_main(int argc, char **argv)
|
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
int opt_short = 0;
|
|
|
|
int opt_domain = 0;
|
|
|
|
int opt_ip = 0;
|
|
|
|
struct hostent *h;
|
|
|
|
char *filename = NULL;
|
|
|
|
char buf[255];
|
|
|
|
char *s = NULL;
|
1999-12-08 04:44:59 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argc < 1)
|
1999-12-08 09:43:44 +05:30
|
|
|
usage(hostname_usage);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
while (--argc > 0 && **(++argv) == '-') {
|
|
|
|
while (*(++(*argv))) {
|
|
|
|
switch (**argv) {
|
|
|
|
case 's':
|
|
|
|
opt_short = 1;
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
opt_ip = 1;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
opt_domain = 1;
|
|
|
|
break;
|
|
|
|
case 'F':
|
|
|
|
if (--argc == 0) {
|
|
|
|
usage(hostname_usage);
|
|
|
|
}
|
|
|
|
filename = *(++argv);
|
|
|
|
break;
|
2000-10-13 04:00:31 +05:30
|
|
|
case '-':
|
|
|
|
if (strcmp(++(*argv), "file") || --argc ==0 ) {
|
|
|
|
usage(hostname_usage);
|
|
|
|
}
|
|
|
|
filename = *(++argv);
|
|
|
|
break;
|
2000-02-09 01:28:47 +05:30
|
|
|
default:
|
|
|
|
usage(hostname_usage);
|
|
|
|
}
|
|
|
|
if (filename != NULL)
|
|
|
|
break;
|
|
|
|
}
|
1999-12-08 09:43:44 +05:30
|
|
|
}
|
1999-12-08 04:44:59 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argc >= 1) {
|
|
|
|
do_sethostname(*argv, 0);
|
|
|
|
} else if (filename != NULL) {
|
|
|
|
do_sethostname(filename, 1);
|
|
|
|
} else {
|
|
|
|
gethostname(buf, 255);
|
|
|
|
if (opt_short) {
|
|
|
|
s = strchr(buf, '.');
|
|
|
|
if (!s)
|
|
|
|
s = buf;
|
|
|
|
*s = 0;
|
|
|
|
printf("%s\n", buf);
|
|
|
|
} else if (opt_domain) {
|
|
|
|
s = strchr(buf, '.');
|
|
|
|
printf("%s\n", (s ? s + 1 : ""));
|
|
|
|
} else if (opt_ip) {
|
|
|
|
h = gethostbyname(buf);
|
|
|
|
if (!h) {
|
|
|
|
printf("Host not found\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
printf("%s\n", inet_ntoa(*(struct in_addr *) (h->h_addr)));
|
|
|
|
} else {
|
|
|
|
printf("%s\n", buf);
|
|
|
|
}
|
|
|
|
}
|
2000-06-19 22:55:40 +05:30
|
|
|
return(0);
|
1999-12-08 04:44:59 +05:30
|
|
|
}
|