Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/networking/hostname.c

    r1765 r2725  
    55 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
    66 *
    7  * adjusted by Erik Andersen <andersen@codepoet.org> to remove
     7 * Adjusted by Erik Andersen <andersen@codepoet.org> to remove
    88 * use of long options and GNU getopt.  Improved the usage info.
    99 *
    10  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    11  *
    12  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
     10 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    1311 */
    14 
    1512#include "libbb.h"
    1613
    1714static void do_sethostname(char *s, int isfile)
    1815{
    19     FILE *f;
    20 
    21     if (!s)
    22         return;
    23     if (!isfile) {
    24         if (sethostname(s, strlen(s)) < 0) {
    25             if (errno == EPERM)
    26                 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
    27             else
    28                 bb_perror_msg_and_die("sethostname");
    29         }
    30     } else {
    31         f = xfopen(s, "r");
    32 #define strbuf bb_common_bufsiz1
    33         while (fgets(strbuf, sizeof(strbuf), f) != NULL) {
    34             if (strbuf[0] == '#') {
    35                 continue;
    36             }
    37             chomp(strbuf);
    38             do_sethostname(strbuf, 0);
     16//  if (!s)
     17//      return;
     18    if (isfile) {
     19        parser_t *parser = config_open2(s, xfopen_for_read);
     20        while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
     21            do_sethostname(s, 0);
    3922        }
    4023        if (ENABLE_FEATURE_CLEAN_UP)
    41             fclose(f);
     24            config_close(parser);
     25    } else if (sethostname(s, strlen(s))) {
     26//      if (errno == EPERM)
     27//          bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
     28        bb_perror_msg_and_die("sethostname");
    4229    }
    4330}
    4431
    45 int hostname_main(int argc, char **argv);
    46 int hostname_main(int argc, char **argv)
     32/* Manpage circa 2009:
     33 *
     34 * hostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [--long]
     35 *      [-i] [--ip-address] [-s] [--short] [-y] [--yp] [--nis]
     36 *
     37 * hostname [-v] [-F filename] [--file filename] / [hostname]
     38 *
     39 * domainname [-v] [-F filename] [--file filename]  / [name]
     40 *  { bbox: not supported }
     41 *
     42 * nodename [-v] [-F filename] [--file filename] / [name]
     43 *  { bbox: not supported }
     44 *
     45 * dnsdomainname [-v]
     46 *  { bbox: supported: Linux kernel build needs this }
     47 * nisdomainname [-v]
     48 *  { bbox: not supported }
     49 * ypdomainname [-v]
     50 *  { bbox: not supported }
     51 *
     52 * -a, --alias
     53 *  Display the alias name of the host (if used).
     54 *  { bbox: not supported }
     55 * -d, --domain
     56 *  Display the name of the DNS domain. Don't use the command
     57 *  domainname to get the DNS domain name because it will show the
     58 *  NIS domain name and not the DNS domain name. Use dnsdomainname
     59 *  instead.
     60 * -f, --fqdn, --long
     61 *  Display the FQDN (Fully Qualified Domain Name). A FQDN consists
     62 *  of a short host name and the DNS domain name. Unless you are
     63 *  using bind or NIS for host lookups you can change the FQDN and
     64 *  the DNS domain name (which is part of the FQDN) in the
     65 *  /etc/hosts file.
     66 * -i, --ip-address
     67 *  Display the IP address(es) of the host.
     68 * -s, --short
     69 *  Display the short host name. This is the host name cut at the
     70 *  first dot.
     71 * -v, --verbose
     72 *  Be verbose and tell what's going on.
     73 *  { bbox: supported but ignored }
     74 * -y, --yp, --nis
     75 *  Display the NIS domain name. If a parameter is given (or --file
     76 *  name ) then root can also set a new NIS domain.
     77 *  { bbox: not supported }
     78 * -F, --file filename
     79 *  Read the host name from the specified file. Comments (lines
     80 *  starting with a `#') are ignored.
     81 */
     82int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
     83int hostname_main(int argc UNUSED_PARAM, char **argv)
    4784{
    4885    enum {
     
    5592    };
    5693
    57     char buf[256];
     94    unsigned opts;
     95    char *buf;
    5896    char *hostname_str;
    5997
    60     if (argc < 1)
    61         bb_show_usage();
     98#if ENABLE_LONG_OPTS
     99    applet_long_options =
     100        "domain\0"     No_argument "d"
     101        "fqdn\0"       No_argument "f"
     102    //Enable if seen in active use in some distro:
     103    //  "long\0"       No_argument "f"
     104    //  "ip-address\0" No_argument "i"
     105    //  "short\0"      No_argument "s"
     106    //  "verbose\0"    No_argument "v"
     107        "file\0"       No_argument "F"
     108        ;
    62109
    63     getopt32(argv, "dfisF:", &hostname_str);
     110#endif
     111    /* dnsdomainname from net-tools 1.60, hostname 1.100 (2001-04-14),
     112     * supports hostname's options too (not just -v as manpage says) */
     113    opts = getopt32(argv, "dfisF:v", &hostname_str);
     114    argv += optind;
     115    buf = safe_gethostname();
     116    if (applet_name[0] == 'd') /* dnsdomainname? */
     117        opts = OPT_d;
    64118
    65     /* Output in desired format */
    66     if (option_mask32 & OPT_dfis) {
     119    if (opts & OPT_dfis) {
     120        /* Cases when we need full hostname (or its part) */
    67121        struct hostent *hp;
    68122        char *p;
    69         gethostname(buf, sizeof(buf));
     123
    70124        hp = xgethostbyname(buf);
    71         p = strchr(hp->h_name, '.');
    72         if (option_mask32 & OPT_f) {
     125        p = strchrnul(hp->h_name, '.');
     126        if (opts & OPT_f) {
    73127            puts(hp->h_name);
    74         } else if (option_mask32 & OPT_s) {
    75             if (p != NULL) {
    76                 *p = '\0';
     128        } else if (opts & OPT_s) {
     129            *p = '\0';
     130            puts(hp->h_name);
     131        } else if (opts & OPT_d) {
     132            if (*p)
     133                puts(p + 1);
     134        } else /*if (opts & OPT_i)*/ {
     135            if (hp->h_length == sizeof(struct in_addr)) {
     136                struct in_addr **h_addr_list = (struct in_addr **)hp->h_addr_list;
     137                while (*h_addr_list) {
     138                    printf("%s ", inet_ntoa(**h_addr_list));
     139                    h_addr_list++;
     140                }
     141                bb_putchar('\n');
    77142            }
    78             puts(hp->h_name);
    79         } else if (option_mask32 & OPT_d) {
    80             if (p)
    81                 puts(p + 1);
    82         } else if (option_mask32 & OPT_i) {
    83             while (hp->h_addr_list[0]) {
    84                 printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++)));
    85             }
    86             puts("");
    87143        }
    88     }
    89     /* Set the hostname */
    90     else if (option_mask32 & OPT_F) {
     144    } else if (opts & OPT_F) {
     145        /* Set the hostname */
    91146        do_sethostname(hostname_str, 1);
    92     } else if (optind < argc) {
    93         do_sethostname(argv[optind], 0);
    94     }
    95     /* Or if all else fails,
    96      * just print the current hostname */
    97     else {
    98         gethostname(buf, sizeof(buf));
     147    } else if (argv[0]) {
     148        /* Set the hostname */
     149        do_sethostname(argv[0], 0);
     150    } else {
     151        /* Just print the current hostname */
    99152        puts(buf);
    100153    }
    101     return 0;
     154
     155    if (ENABLE_FEATURE_CLEAN_UP)
     156        free(buf);
     157    return EXIT_SUCCESS;
    102158}
Note: See TracChangeset for help on using the changeset viewer.