Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | b610615 | 2000-06-19 17:25:40 +0000 | [diff] [blame] | 3 | * $Id: hostname.c,v 1.10 2000/06/19 17:25:39 andersen Exp $ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 4 | * Mini hostname implementation for busybox |
| 5 | * |
| 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
| 7 | * |
Eric Andersen | d29edf3 | 1999-12-08 04:13:44 +0000 | [diff] [blame] | 8 | * adjusted by Erik Andersen <andersee@debian.org> to remove |
| 9 | * use of long options and GNU getopt. Improved the usage info. |
| 10 | * |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 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. |
| 15 | * |
| 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. |
| 20 | * |
| 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 |
| 24 | */ |
| 25 | |
| 26 | #include "internal.h" |
| 27 | #include <errno.h> |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 28 | #include <arpa/inet.h> |
| 29 | #include <netdb.h> |
| 30 | #include <unistd.h> |
| 31 | #include <stdio.h> |
| 32 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 33 | static const char *hostname_usage = |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 34 | "hostname [OPTION] {hostname | -F file}\n" |
| 35 | #ifndef BB_FEATURE_TRIVIAL_HELP |
| 36 | "\nGet or set the hostname or DNS domain name. If a hostname is given\n" |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 37 | "(or a file with the -F parameter), the host name will be set.\n\n" |
| 38 | "Options:\n" |
| 39 | "\t-s\t\tShort\n" |
| 40 | |
| 41 | "\t-i\t\tAddresses for the hostname\n" |
| 42 | "\t-d\t\tDNS domain name\n" |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 43 | "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n" |
| 44 | #endif |
| 45 | ; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 46 | |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 47 | |
| 48 | void do_sethostname(char *s, int isfile) |
| 49 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 50 | FILE *f; |
| 51 | char buf[255]; |
| 52 | |
| 53 | if (!s) |
| 54 | return; |
| 55 | if (!isfile) { |
| 56 | if (sethostname(s, strlen(s)) < 0) { |
| 57 | if (errno == EPERM) |
| 58 | fprintf(stderr, |
| 59 | "hostname: you must be root to change the hostname\n"); |
| 60 | else |
| 61 | perror("sethostname"); |
| 62 | exit(1); |
| 63 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 64 | } else { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 65 | if ((f = fopen(s, "r")) == NULL) { |
| 66 | perror(s); |
| 67 | exit(1); |
| 68 | } else { |
| 69 | fgets(buf, 255, f); |
| 70 | fclose(f); |
| 71 | if (buf[strlen(buf) - 1] == '\n') |
| 72 | buf[strlen(buf) - 1] = 0; |
| 73 | if (sethostname(buf, strlen(buf)) < 0) { |
| 74 | perror("sethostname"); |
| 75 | exit(1); |
| 76 | } |
| 77 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 78 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | int hostname_main(int argc, char **argv) |
| 82 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 83 | int opt_short = 0; |
| 84 | int opt_domain = 0; |
| 85 | int opt_ip = 0; |
| 86 | struct hostent *h; |
| 87 | char *filename = NULL; |
| 88 | char buf[255]; |
| 89 | char *s = NULL; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 90 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 91 | if (argc < 1) |
Eric Andersen | d29edf3 | 1999-12-08 04:13:44 +0000 | [diff] [blame] | 92 | usage(hostname_usage); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 93 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 94 | while (--argc > 0 && **(++argv) == '-') { |
| 95 | while (*(++(*argv))) { |
| 96 | switch (**argv) { |
| 97 | case 's': |
| 98 | opt_short = 1; |
| 99 | break; |
| 100 | case 'i': |
| 101 | opt_ip = 1; |
| 102 | break; |
| 103 | case 'd': |
| 104 | opt_domain = 1; |
| 105 | break; |
| 106 | case 'F': |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 107 | if (--argc == 0) { |
| 108 | usage(hostname_usage); |
| 109 | } |
| 110 | filename = *(++argv); |
| 111 | break; |
| 112 | default: |
| 113 | usage(hostname_usage); |
| 114 | } |
| 115 | if (filename != NULL) |
| 116 | break; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | if (argc >= 1) { |
| 121 | do_sethostname(*argv, 0); |
| 122 | } else if (filename != NULL) { |
| 123 | do_sethostname(filename, 1); |
| 124 | } else { |
| 125 | gethostname(buf, 255); |
| 126 | if (opt_short) { |
| 127 | s = strchr(buf, '.'); |
| 128 | if (!s) |
| 129 | s = buf; |
| 130 | *s = 0; |
| 131 | printf("%s\n", buf); |
| 132 | } else if (opt_domain) { |
| 133 | s = strchr(buf, '.'); |
| 134 | printf("%s\n", (s ? s + 1 : "")); |
| 135 | } else if (opt_ip) { |
| 136 | h = gethostbyname(buf); |
| 137 | if (!h) { |
| 138 | printf("Host not found\n"); |
| 139 | exit(1); |
| 140 | } |
| 141 | printf("%s\n", inet_ntoa(*(struct in_addr *) (h->h_addr))); |
| 142 | } else { |
| 143 | printf("%s\n", buf); |
| 144 | } |
| 145 | } |
Eric Andersen | b610615 | 2000-06-19 17:25:40 +0000 | [diff] [blame] | 146 | return(0); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 147 | } |