Home | History | Annotate | Line # | Download | only in ifconfig
ifconfig.c revision 1.220
      1  1.220    dyoung /*	$NetBSD: ifconfig.c,v 1.220 2009/08/07 18:53:37 dyoung Exp $	*/
      2   1.24   thorpej 
      3   1.41   thorpej /*-
      4   1.64   thorpej  * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
      5   1.24   thorpej  * All rights reserved.
      6   1.24   thorpej  *
      7   1.41   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.41   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9   1.41   thorpej  * NASA Ames Research Center.
     10   1.41   thorpej  *
     11   1.24   thorpej  * Redistribution and use in source and binary forms, with or without
     12   1.24   thorpej  * modification, are permitted provided that the following conditions
     13   1.24   thorpej  * are met:
     14   1.24   thorpej  * 1. Redistributions of source code must retain the above copyright
     15   1.24   thorpej  *    notice, this list of conditions and the following disclaimer.
     16   1.24   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.24   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18   1.24   thorpej  *    documentation and/or other materials provided with the distribution.
     19   1.24   thorpej  *
     20   1.41   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21   1.41   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22   1.41   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23   1.41   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24   1.41   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25   1.41   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26   1.41   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27   1.41   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28   1.41   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29   1.41   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30   1.41   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31   1.24   thorpej  */
     32   1.19       cgd 
     33    1.1       cgd /*
     34   1.13   mycroft  * Copyright (c) 1983, 1993
     35   1.13   mycroft  *	The Regents of the University of California.  All rights reserved.
     36    1.1       cgd  *
     37    1.1       cgd  * Redistribution and use in source and binary forms, with or without
     38    1.1       cgd  * modification, are permitted provided that the following conditions
     39    1.1       cgd  * are met:
     40    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     41    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     42    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     43    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     44    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     45  1.138       agc  * 3. Neither the name of the University nor the names of its contributors
     46    1.1       cgd  *    may be used to endorse or promote products derived from this software
     47    1.1       cgd  *    without specific prior written permission.
     48    1.1       cgd  *
     49    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     50    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     51    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     52    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     53    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     54    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     55    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     56    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     57    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     58    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     59    1.1       cgd  * SUCH DAMAGE.
     60    1.1       cgd  */
     61    1.1       cgd 
     62   1.39     lukem #include <sys/cdefs.h>
     63    1.1       cgd #ifndef lint
     64  1.212     lukem __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
     65  1.212     lukem  The Regents of the University of California.  All rights reserved.");
     66  1.220    dyoung __RCSID("$NetBSD: ifconfig.c,v 1.220 2009/08/07 18:53:37 dyoung Exp $");
     67    1.1       cgd #endif /* not lint */
     68    1.1       cgd 
     69    1.1       cgd #include <sys/param.h>
     70  1.208    dyoung #include <sys/queue.h>
     71    1.1       cgd #include <sys/socket.h>
     72    1.1       cgd #include <sys/ioctl.h>
     73    1.1       cgd 
     74    1.1       cgd #include <net/if.h>
     75   1.30   thorpej #include <net/if_dl.h>
     76   1.24   thorpej #include <net/if_media.h>
     77   1.62    chopps #include <net/if_ether.h>
     78  1.166   thorpej #include <netinet/in.h>		/* XXX */
     79  1.166   thorpej #include <netinet/in_var.h>	/* XXX */
     80  1.187    dyoung 
     81   1.13   mycroft #include <netdb.h>
     82    1.1       cgd 
     83    1.1       cgd #include <sys/protosw.h>
     84    1.1       cgd 
     85  1.187    dyoung #include <assert.h>
     86   1.13   mycroft #include <ctype.h>
     87   1.13   mycroft #include <err.h>
     88   1.13   mycroft #include <errno.h>
     89  1.185    dyoung #include <stdbool.h>
     90   1.50    chopps #include <stddef.h>
     91    1.1       cgd #include <stdio.h>
     92    1.1       cgd #include <stdlib.h>
     93    1.1       cgd #include <string.h>
     94   1.13   mycroft #include <unistd.h>
     95   1.78    itojun #include <ifaddrs.h>
     96  1.130  christos #include <util.h>
     97    1.1       cgd 
     98  1.156   thorpej #include "extern.h"
     99  1.161   thorpej 
    100  1.208    dyoung #include "media.h"
    101  1.187    dyoung #include "parse.h"
    102  1.187    dyoung #include "env.h"
    103  1.153      yamt 
    104  1.208    dyoung static bool bflag, dflag, hflag, sflag, uflag;
    105  1.220    dyoung bool lflag, Nflag, vflag, zflag;
    106    1.1       cgd 
    107  1.220    dyoung static char gflags[10 + 26 * 2 + 1] = "AabCdhlNsuvz";
    108  1.208    dyoung bool gflagset[10 + 26 * 2];
    109  1.187    dyoung 
    110  1.208    dyoung static int carrier(prop_dictionary_t);
    111  1.208    dyoung static int clone_command(prop_dictionary_t, prop_dictionary_t);
    112  1.208    dyoung static void do_setifpreference(prop_dictionary_t);
    113  1.208    dyoung static int flag_index(int);
    114  1.208    dyoung static void init_afs(void);
    115  1.208    dyoung static int list_cloners(prop_dictionary_t, prop_dictionary_t);
    116  1.208    dyoung static int media_status_exec(prop_dictionary_t, prop_dictionary_t);
    117  1.187    dyoung static int no_cmds_exec(prop_dictionary_t, prop_dictionary_t);
    118  1.208    dyoung static int notrailers(prop_dictionary_t, prop_dictionary_t);
    119  1.208    dyoung static void printall(const char *, prop_dictionary_t);
    120  1.208    dyoung static int setifaddr(prop_dictionary_t, prop_dictionary_t);
    121  1.208    dyoung static int setifbroadaddr(prop_dictionary_t, prop_dictionary_t);
    122  1.208    dyoung static int setifcaps(prop_dictionary_t, prop_dictionary_t);
    123  1.208    dyoung static int setifdstormask(prop_dictionary_t, prop_dictionary_t);
    124  1.208    dyoung static int setifflags(prop_dictionary_t, prop_dictionary_t);
    125  1.208    dyoung static int setifmetric(prop_dictionary_t, prop_dictionary_t);
    126  1.208    dyoung static int setifmtu(prop_dictionary_t, prop_dictionary_t);
    127  1.208    dyoung static int setifnetmask(prop_dictionary_t, prop_dictionary_t);
    128  1.208    dyoung static int setifprefixlen(prop_dictionary_t, prop_dictionary_t);
    129  1.216    dyoung static void status(const struct sockaddr *, prop_dictionary_t,
    130  1.189    dyoung     prop_dictionary_t);
    131  1.208    dyoung static void usage(void);
    132  1.187    dyoung 
    133  1.198    dyoung static const struct kwinst ifflagskw[] = {
    134  1.215    plunky 	  IFKW("arp", -IFF_NOARP)
    135  1.187    dyoung 	, IFKW("debug", IFF_DEBUG)
    136  1.187    dyoung 	, IFKW("link0", IFF_LINK0)
    137  1.187    dyoung 	, IFKW("link1", IFF_LINK1)
    138  1.187    dyoung 	, IFKW("link2", IFF_LINK2)
    139  1.205    dyoung 	, {.k_word = "down", .k_type = KW_T_INT, .k_int = -IFF_UP}
    140  1.205    dyoung 	, {.k_word = "up", .k_type = KW_T_INT, .k_int = IFF_UP}
    141  1.187    dyoung };
    142  1.187    dyoung 
    143  1.198    dyoung static const struct kwinst ifcapskw[] = {
    144  1.187    dyoung 	  IFKW("ip4csum-tx",	IFCAP_CSUM_IPv4_Tx)
    145  1.187    dyoung 	, IFKW("ip4csum-rx",	IFCAP_CSUM_IPv4_Rx)
    146  1.187    dyoung 	, IFKW("tcp4csum-tx",	IFCAP_CSUM_TCPv4_Tx)
    147  1.187    dyoung 	, IFKW("tcp4csum-rx",	IFCAP_CSUM_TCPv4_Rx)
    148  1.187    dyoung 	, IFKW("udp4csum-tx",	IFCAP_CSUM_UDPv4_Tx)
    149  1.187    dyoung 	, IFKW("udp4csum-rx",	IFCAP_CSUM_UDPv4_Rx)
    150  1.187    dyoung 	, IFKW("tcp6csum-tx",	IFCAP_CSUM_TCPv6_Tx)
    151  1.187    dyoung 	, IFKW("tcp6csum-rx",	IFCAP_CSUM_TCPv6_Rx)
    152  1.187    dyoung 	, IFKW("udp6csum-tx",	IFCAP_CSUM_UDPv6_Tx)
    153  1.187    dyoung 	, IFKW("udp6csum-rx",	IFCAP_CSUM_UDPv6_Rx)
    154  1.187    dyoung 	, IFKW("ip4csum",	IFCAP_CSUM_IPv4_Tx|IFCAP_CSUM_IPv4_Rx)
    155  1.187    dyoung 	, IFKW("tcp4csum",	IFCAP_CSUM_TCPv4_Tx|IFCAP_CSUM_TCPv4_Rx)
    156  1.187    dyoung 	, IFKW("udp4csum",	IFCAP_CSUM_UDPv4_Tx|IFCAP_CSUM_UDPv4_Rx)
    157  1.187    dyoung 	, IFKW("tcp6csum",	IFCAP_CSUM_TCPv6_Tx|IFCAP_CSUM_TCPv6_Rx)
    158  1.187    dyoung 	, IFKW("udp6csum",	IFCAP_CSUM_UDPv6_Tx|IFCAP_CSUM_UDPv6_Rx)
    159  1.187    dyoung 	, IFKW("tso4",		IFCAP_TSOv4)
    160  1.187    dyoung 	, IFKW("tso6",		IFCAP_TSOv6)
    161  1.187    dyoung };
    162   1.45   thorpej 
    163  1.187    dyoung extern struct pbranch command_root;
    164  1.187    dyoung extern struct pbranch opt_command;
    165  1.187    dyoung extern struct pbranch opt_family, opt_silent_family;
    166  1.200    dyoung extern struct pkw cloning, silent_family, family, ifcaps, ifflags, misc;
    167  1.187    dyoung 
    168  1.187    dyoung struct pinteger parse_metric = PINTEGER_INITIALIZER(&parse_metric, "metric", 10,
    169  1.187    dyoung     setifmetric, "metric", &command_root.pb_parser);
    170  1.187    dyoung 
    171  1.187    dyoung struct pinteger parse_mtu = PINTEGER_INITIALIZER(&parse_mtu, "mtu", 10,
    172  1.187    dyoung     setifmtu, "mtu", &command_root.pb_parser);
    173  1.187    dyoung 
    174  1.187    dyoung struct pinteger parse_prefixlen = PINTEGER_INITIALIZER(&parse_prefixlen,
    175  1.187    dyoung     "prefixlen", 10, setifprefixlen, "prefixlen", &command_root.pb_parser);
    176  1.187    dyoung 
    177  1.187    dyoung struct pinteger parse_preference = PINTEGER_INITIALIZER1(&parse_preference,
    178  1.187    dyoung     "preference", INT16_MIN, INT16_MAX, 10, NULL, "preference",
    179  1.187    dyoung     &command_root.pb_parser);
    180  1.187    dyoung 
    181  1.187    dyoung struct paddr parse_netmask = PADDR_INITIALIZER(&parse_netmask, "netmask",
    182  1.187    dyoung     setifnetmask, "dstormask", NULL, NULL, NULL, &command_root.pb_parser);
    183  1.187    dyoung 
    184  1.187    dyoung struct paddr parse_broadcast = PADDR_INITIALIZER(&parse_broadcast,
    185  1.187    dyoung     "broadcast address",
    186  1.187    dyoung     setifbroadaddr, "broadcast", NULL, NULL, NULL, &command_root.pb_parser);
    187  1.187    dyoung 
    188  1.198    dyoung static const struct kwinst misckw[] = {
    189  1.208    dyoung 	  {.k_word = "alias", .k_key = "alias", .k_deact = "alias",
    190  1.187    dyoung 	   .k_type = KW_T_BOOL, .k_neg = true,
    191  1.187    dyoung 	   .k_bool = true, .k_negbool = false,
    192  1.208    dyoung 	   .k_nextparser = &command_root.pb_parser}
    193  1.187    dyoung 	, {.k_word = "broadcast", .k_nextparser = &parse_broadcast.pa_parser}
    194  1.187    dyoung 	, {.k_word = "delete", .k_key = "alias", .k_deact = "alias",
    195  1.208    dyoung 	   .k_type = KW_T_BOOL, .k_bool = false,
    196  1.187    dyoung 	   .k_nextparser = &command_root.pb_parser}
    197  1.187    dyoung 	, {.k_word = "metric", .k_nextparser = &parse_metric.pi_parser}
    198  1.187    dyoung 	, {.k_word = "mtu", .k_nextparser = &parse_mtu.pi_parser}
    199  1.187    dyoung 	, {.k_word = "netmask", .k_nextparser = &parse_netmask.pa_parser}
    200  1.187    dyoung 	, {.k_word = "preference", .k_act = "address",
    201  1.187    dyoung 	   .k_nextparser = &parse_preference.pi_parser}
    202  1.187    dyoung 	, {.k_word = "prefixlen", .k_nextparser = &parse_prefixlen.pi_parser}
    203  1.187    dyoung 	, {.k_word = "trailers", .k_neg = true,
    204  1.187    dyoung 	   .k_exec = notrailers, .k_nextparser = &command_root.pb_parser}
    205    1.1       cgd };
    206    1.1       cgd 
    207  1.187    dyoung /* key: clonecmd */
    208  1.198    dyoung static const struct kwinst clonekw[] = {
    209  1.205    dyoung 	{.k_word = "create", .k_type = KW_T_INT, .k_int = SIOCIFCREATE,
    210  1.187    dyoung 	 .k_nextparser = &opt_silent_family.pb_parser},
    211  1.205    dyoung 	{.k_word = "destroy", .k_type = KW_T_INT, .k_int = SIOCIFDESTROY}
    212  1.187    dyoung };
    213   1.24   thorpej 
    214  1.208    dyoung static struct kwinst familykw[24];
    215    1.1       cgd 
    216  1.187    dyoung struct pterm cloneterm = PTERM_INITIALIZER(&cloneterm, "list cloners",
    217  1.187    dyoung     list_cloners, "none");
    218  1.187    dyoung 
    219  1.187    dyoung struct pterm no_cmds = PTERM_INITIALIZER(&no_cmds, "no commands", no_cmds_exec,
    220  1.187    dyoung     "none");
    221  1.187    dyoung 
    222  1.187    dyoung struct pkw family_only =
    223  1.187    dyoung     PKW_INITIALIZER(&family_only, "family-only", NULL, "af", familykw,
    224  1.187    dyoung 	__arraycount(familykw), &no_cmds.pt_parser);
    225  1.187    dyoung 
    226  1.187    dyoung struct paddr address = PADDR_INITIALIZER(&address,
    227  1.187    dyoung     "local address (address 1)",
    228  1.187    dyoung     setifaddr, "address", "netmask", NULL, "address", &command_root.pb_parser);
    229  1.187    dyoung 
    230  1.187    dyoung struct paddr dstormask = PADDR_INITIALIZER(&dstormask,
    231  1.187    dyoung     "destination/netmask (address 2)",
    232  1.187    dyoung     setifdstormask, "dstormask", NULL, "address", "dstormask",
    233  1.187    dyoung     &command_root.pb_parser);
    234  1.187    dyoung 
    235  1.187    dyoung struct paddr broadcast = PADDR_INITIALIZER(&broadcast,
    236  1.187    dyoung     "broadcast address (address 3)",
    237  1.187    dyoung     setifbroadaddr, "broadcast", NULL, "dstormask", "broadcast",
    238  1.187    dyoung     &command_root.pb_parser);
    239  1.187    dyoung 
    240  1.208    dyoung static SIMPLEQ_HEAD(, afswtch) aflist = SIMPLEQ_HEAD_INITIALIZER(aflist);
    241  1.208    dyoung 
    242  1.209    dyoung static SIMPLEQ_HEAD(, usage_func) usage_funcs =
    243  1.209    dyoung     SIMPLEQ_HEAD_INITIALIZER(usage_funcs);
    244  1.208    dyoung static SIMPLEQ_HEAD(, status_func) status_funcs =
    245  1.208    dyoung     SIMPLEQ_HEAD_INITIALIZER(status_funcs);
    246  1.208    dyoung static SIMPLEQ_HEAD(, statistics_func) statistics_funcs =
    247  1.208    dyoung     SIMPLEQ_HEAD_INITIALIZER(statistics_funcs);
    248  1.208    dyoung static SIMPLEQ_HEAD(, cmdloop_branch) cmdloop_branches =
    249  1.208    dyoung     SIMPLEQ_HEAD_INITIALIZER(cmdloop_branches);
    250  1.208    dyoung 
    251  1.187    dyoung struct branch opt_clone_brs[] = {
    252  1.187    dyoung 	  {.b_nextparser = &cloning.pk_parser}
    253  1.187    dyoung 	, {.b_nextparser = &opt_family.pb_parser}
    254  1.187    dyoung }, opt_silent_family_brs[] = {
    255  1.187    dyoung 	  {.b_nextparser = &silent_family.pk_parser}
    256  1.187    dyoung 	, {.b_nextparser = &command_root.pb_parser}
    257  1.187    dyoung }, opt_family_brs[] = {
    258  1.187    dyoung 	  {.b_nextparser = &family.pk_parser}
    259  1.187    dyoung 	, {.b_nextparser = &opt_command.pb_parser}
    260  1.187    dyoung }, command_root_brs[] = {
    261  1.208    dyoung 	  {.b_nextparser = &ifflags.pk_parser}
    262  1.187    dyoung 	, {.b_nextparser = &ifcaps.pk_parser}
    263  1.208    dyoung 	, {.b_nextparser = &kwmedia.pk_parser}
    264  1.187    dyoung 	, {.b_nextparser = &misc.pk_parser}
    265  1.187    dyoung 	, {.b_nextparser = &address.pa_parser}
    266  1.187    dyoung 	, {.b_nextparser = &dstormask.pa_parser}
    267  1.187    dyoung 	, {.b_nextparser = &broadcast.pa_parser}
    268  1.187    dyoung 	, {.b_nextparser = NULL}
    269  1.187    dyoung }, opt_command_brs[] = {
    270  1.187    dyoung 	  {.b_nextparser = &no_cmds.pt_parser}
    271  1.187    dyoung 	, {.b_nextparser = &command_root.pb_parser}
    272  1.187    dyoung };
    273  1.187    dyoung 
    274  1.187    dyoung struct branch opt_family_only_brs[] = {
    275  1.187    dyoung 	  {.b_nextparser = &no_cmds.pt_parser}
    276  1.187    dyoung 	, {.b_nextparser = &family_only.pk_parser}
    277  1.187    dyoung };
    278  1.187    dyoung struct pbranch opt_family_only = PBRANCH_INITIALIZER(&opt_family_only,
    279  1.187    dyoung     "opt-family-only", opt_family_only_brs,
    280  1.187    dyoung     __arraycount(opt_family_only_brs), true);
    281  1.187    dyoung struct pbranch opt_command = PBRANCH_INITIALIZER(&opt_command,
    282  1.187    dyoung     "optional command",
    283  1.187    dyoung     opt_command_brs, __arraycount(opt_command_brs), true);
    284  1.187    dyoung 
    285  1.187    dyoung struct pbranch command_root = PBRANCH_INITIALIZER(&command_root,
    286  1.187    dyoung     "command-root", command_root_brs, __arraycount(command_root_brs), true);
    287  1.187    dyoung 
    288  1.187    dyoung struct piface iface_opt_family_only =
    289  1.187    dyoung     PIFACE_INITIALIZER(&iface_opt_family_only, "iface-opt-family-only",
    290  1.187    dyoung     NULL, "if", &opt_family_only.pb_parser);
    291  1.187    dyoung 
    292  1.187    dyoung struct pkw family = PKW_INITIALIZER(&family, "family", NULL, "af",
    293  1.187    dyoung     familykw, __arraycount(familykw), &opt_command.pb_parser);
    294  1.187    dyoung 
    295  1.187    dyoung struct pkw silent_family = PKW_INITIALIZER(&silent_family, "silent family",
    296  1.187    dyoung     NULL, "af", familykw, __arraycount(familykw), &command_root.pb_parser);
    297  1.187    dyoung 
    298  1.208    dyoung struct pkw *family_users[] = {&family_only, &family, &silent_family};
    299  1.208    dyoung 
    300  1.187    dyoung struct pkw ifcaps = PKW_INITIALIZER(&ifcaps, "ifcaps", setifcaps,
    301  1.187    dyoung     "ifcap", ifcapskw, __arraycount(ifcapskw), &command_root.pb_parser);
    302  1.187    dyoung 
    303  1.187    dyoung struct pkw ifflags = PKW_INITIALIZER(&ifflags, "ifflags", setifflags,
    304  1.187    dyoung     "ifflag", ifflagskw, __arraycount(ifflagskw), &command_root.pb_parser);
    305  1.187    dyoung 
    306  1.187    dyoung struct pkw cloning = PKW_INITIALIZER(&cloning, "cloning", clone_command,
    307  1.187    dyoung     "clonecmd", clonekw, __arraycount(clonekw), NULL);
    308  1.187    dyoung 
    309  1.187    dyoung struct pkw misc = PKW_INITIALIZER(&misc, "misc", NULL, NULL,
    310  1.187    dyoung     misckw, __arraycount(misckw), NULL);
    311  1.187    dyoung 
    312  1.187    dyoung struct pbranch opt_clone = PBRANCH_INITIALIZER(&opt_clone,
    313  1.187    dyoung     "opt-clone", opt_clone_brs, __arraycount(opt_clone_brs), true);
    314  1.187    dyoung 
    315  1.187    dyoung struct pbranch opt_silent_family = PBRANCH_INITIALIZER(&opt_silent_family,
    316  1.187    dyoung     "optional silent family", opt_silent_family_brs,
    317  1.187    dyoung     __arraycount(opt_silent_family_brs), true);
    318  1.187    dyoung 
    319  1.187    dyoung struct pbranch opt_family = PBRANCH_INITIALIZER(&opt_family,
    320  1.187    dyoung     "opt-family", opt_family_brs, __arraycount(opt_family_brs), true);
    321  1.187    dyoung 
    322  1.187    dyoung struct piface iface_start = PIFACE_INITIALIZER(&iface_start,
    323  1.187    dyoung     "iface-opt-family", NULL, "if", &opt_clone.pb_parser);
    324  1.187    dyoung 
    325  1.187    dyoung struct piface iface_only = PIFACE_INITIALIZER(&iface_only, "iface",
    326  1.187    dyoung     media_status_exec, "if", NULL);
    327  1.187    dyoung 
    328  1.209    dyoung static bool
    329  1.209    dyoung flag_is_registered(const char *flags, int flag)
    330  1.209    dyoung {
    331  1.209    dyoung 	return flags != NULL && strchr(flags, flag) != NULL;
    332  1.209    dyoung }
    333  1.209    dyoung 
    334  1.208    dyoung static int
    335  1.209    dyoung check_flag(const char *flags, int flag)
    336  1.208    dyoung {
    337  1.209    dyoung 	if (flag_is_registered(flags, flag)) {
    338  1.208    dyoung 		errno = EEXIST;
    339  1.208    dyoung 		return -1;
    340  1.208    dyoung 	}
    341  1.208    dyoung 
    342  1.208    dyoung 	if (flag >= '0' && flag <= '9')
    343  1.208    dyoung 		return 0;
    344  1.208    dyoung 	if (flag >= 'a' && flag <= 'z')
    345  1.208    dyoung 		return 0;
    346  1.208    dyoung 	if (flag >= 'A' && flag <= 'Z')
    347  1.208    dyoung 		return 0;
    348  1.208    dyoung 
    349  1.208    dyoung 	errno = EINVAL;
    350  1.208    dyoung 	return -1;
    351  1.208    dyoung }
    352  1.208    dyoung 
    353  1.208    dyoung void
    354  1.208    dyoung cmdloop_branch_init(cmdloop_branch_t *b, struct parser *p)
    355  1.208    dyoung {
    356  1.208    dyoung 	b->b_parser = p;
    357  1.208    dyoung }
    358  1.208    dyoung 
    359  1.208    dyoung void
    360  1.208    dyoung statistics_func_init(statistics_func_t *f, statistics_cb_t func)
    361  1.208    dyoung {
    362  1.208    dyoung 	f->f_func = func;
    363  1.208    dyoung }
    364  1.208    dyoung 
    365  1.208    dyoung void
    366  1.208    dyoung status_func_init(status_func_t *f, status_cb_t func)
    367  1.208    dyoung {
    368  1.208    dyoung 	f->f_func = func;
    369  1.208    dyoung }
    370  1.208    dyoung 
    371  1.209    dyoung void
    372  1.209    dyoung usage_func_init(usage_func_t *f, usage_cb_t func)
    373  1.209    dyoung {
    374  1.209    dyoung 	f->f_func = func;
    375  1.209    dyoung }
    376  1.209    dyoung 
    377  1.208    dyoung int
    378  1.208    dyoung register_cmdloop_branch(cmdloop_branch_t *b)
    379  1.208    dyoung {
    380  1.208    dyoung 	SIMPLEQ_INSERT_TAIL(&cmdloop_branches, b, b_next);
    381  1.208    dyoung 	return 0;
    382  1.208    dyoung }
    383  1.208    dyoung 
    384  1.208    dyoung int
    385  1.208    dyoung register_statistics(statistics_func_t *f)
    386  1.208    dyoung {
    387  1.208    dyoung 	SIMPLEQ_INSERT_TAIL(&statistics_funcs, f, f_next);
    388  1.208    dyoung 	return 0;
    389  1.208    dyoung }
    390  1.208    dyoung 
    391  1.208    dyoung int
    392  1.208    dyoung register_status(status_func_t *f)
    393  1.208    dyoung {
    394  1.208    dyoung 	SIMPLEQ_INSERT_TAIL(&status_funcs, f, f_next);
    395  1.208    dyoung 	return 0;
    396  1.208    dyoung }
    397  1.208    dyoung 
    398  1.208    dyoung int
    399  1.209    dyoung register_usage(usage_func_t *f)
    400  1.209    dyoung {
    401  1.209    dyoung 	SIMPLEQ_INSERT_TAIL(&usage_funcs, f, f_next);
    402  1.209    dyoung 	return 0;
    403  1.209    dyoung }
    404  1.209    dyoung 
    405  1.209    dyoung int
    406  1.208    dyoung register_family(struct afswtch *af)
    407  1.208    dyoung {
    408  1.208    dyoung 	SIMPLEQ_INSERT_TAIL(&aflist, af, af_next);
    409  1.208    dyoung 	return 0;
    410  1.208    dyoung }
    411  1.208    dyoung 
    412  1.208    dyoung int
    413  1.208    dyoung register_flag(int flag)
    414  1.208    dyoung {
    415  1.208    dyoung 	if (check_flag(gflags, flag) == -1)
    416  1.208    dyoung 		return -1;
    417  1.208    dyoung 
    418  1.208    dyoung 	if (strlen(gflags) + 1 >= sizeof(gflags)) {
    419  1.208    dyoung 		errno = ENOMEM;
    420  1.208    dyoung 		return -1;
    421  1.208    dyoung 	}
    422  1.208    dyoung 
    423  1.208    dyoung 	gflags[strlen(gflags)] = flag;
    424  1.208    dyoung 
    425  1.208    dyoung 	return 0;
    426  1.208    dyoung }
    427  1.208    dyoung 
    428  1.208    dyoung static int
    429  1.208    dyoung flag_index(int flag)
    430  1.208    dyoung {
    431  1.208    dyoung 	if (flag >= '0' && flag <= '9')
    432  1.208    dyoung 		return flag - '0';
    433  1.208    dyoung 	if (flag >= 'a' && flag <= 'z')
    434  1.208    dyoung 		return 10 + flag - 'a';
    435  1.208    dyoung 	if (flag >= 'A' && flag <= 'Z')
    436  1.208    dyoung 		return 10 + 26 + flag - 'a';
    437  1.208    dyoung 
    438  1.208    dyoung 	errno = EINVAL;
    439  1.208    dyoung 	return -1;
    440  1.208    dyoung }
    441  1.208    dyoung 
    442  1.208    dyoung static bool
    443  1.208    dyoung set_flag(int flag)
    444  1.208    dyoung {
    445  1.208    dyoung 	int idx;
    446  1.208    dyoung 
    447  1.208    dyoung 	if ((idx = flag_index(flag)) == -1)
    448  1.208    dyoung 		return false;
    449  1.208    dyoung 
    450  1.208    dyoung 	return gflagset[idx] = true;
    451  1.208    dyoung }
    452  1.208    dyoung 
    453  1.208    dyoung bool
    454  1.208    dyoung get_flag(int flag)
    455  1.208    dyoung {
    456  1.208    dyoung 	int idx;
    457  1.208    dyoung 
    458  1.208    dyoung 	if ((idx = flag_index(flag)) == -1)
    459  1.208    dyoung 		return false;
    460  1.208    dyoung 
    461  1.208    dyoung 	return gflagset[idx];
    462  1.208    dyoung }
    463  1.208    dyoung 
    464  1.187    dyoung static struct parser *
    465  1.187    dyoung init_parser(void)
    466  1.187    dyoung {
    467  1.208    dyoung 	cmdloop_branch_t *b;
    468  1.208    dyoung 
    469  1.187    dyoung 	if (parser_init(&iface_opt_family_only.pif_parser) == -1)
    470  1.187    dyoung 		err(EXIT_FAILURE, "parser_init(iface_opt_family_only)");
    471  1.187    dyoung 	if (parser_init(&iface_only.pif_parser) == -1)
    472  1.187    dyoung 		err(EXIT_FAILURE, "parser_init(iface_only)");
    473  1.187    dyoung 	if (parser_init(&iface_start.pif_parser) == -1)
    474  1.187    dyoung 		err(EXIT_FAILURE, "parser_init(iface_start)");
    475  1.208    dyoung 
    476  1.208    dyoung 	SIMPLEQ_FOREACH(b, &cmdloop_branches, b_next)
    477  1.208    dyoung 		pbranch_addbranch(&command_root, b->b_parser);
    478  1.187    dyoung 
    479  1.187    dyoung 	return &iface_start.pif_parser;
    480  1.187    dyoung }
    481  1.187    dyoung 
    482  1.187    dyoung static int
    483  1.211    dyoung no_cmds_exec(prop_dictionary_t env, prop_dictionary_t oenv)
    484  1.187    dyoung {
    485  1.187    dyoung 	const char *ifname;
    486  1.187    dyoung 	unsigned short ignore;
    487  1.187    dyoung 
    488  1.187    dyoung 	/* ifname == NULL is ok.  It indicates 'ifconfig -a'. */
    489  1.187    dyoung 	if ((ifname = getifname(env)) == NULL)
    490  1.187    dyoung 		;
    491  1.211    dyoung 	else if (getifflags(env, oenv, &ignore) == -1)
    492  1.187    dyoung 		err(EXIT_FAILURE, "SIOCGIFFLAGS %s", ifname);
    493  1.187    dyoung 
    494  1.187    dyoung 	printall(ifname, env);
    495  1.187    dyoung 	exit(EXIT_SUCCESS);
    496  1.187    dyoung }
    497  1.187    dyoung 
    498  1.187    dyoung static int
    499  1.211    dyoung media_status_exec(prop_dictionary_t env, prop_dictionary_t oenv)
    500  1.187    dyoung {
    501  1.187    dyoung 	const char *ifname;
    502  1.187    dyoung 	unsigned short ignore;
    503  1.187    dyoung 
    504  1.187    dyoung 	/* ifname == NULL is ok.  It indicates 'ifconfig -a'. */
    505  1.187    dyoung 	if ((ifname = getifname(env)) == NULL)
    506  1.187    dyoung 		;
    507  1.211    dyoung 	else if (getifflags(env, oenv, &ignore) == -1)
    508  1.187    dyoung 		err(EXIT_FAILURE, "SIOCGIFFLAGS %s", ifname);
    509  1.187    dyoung 
    510  1.187    dyoung 	exit(carrier(env));
    511  1.187    dyoung }
    512    1.1       cgd 
    513  1.192    dyoung static void
    514  1.201    dyoung do_setifcaps(prop_dictionary_t env)
    515  1.192    dyoung {
    516  1.192    dyoung 	struct ifcapreq ifcr;
    517  1.192    dyoung 	prop_data_t d;
    518  1.192    dyoung 
    519  1.193    dyoung 	d = (prop_data_t )prop_dictionary_get(env, "ifcaps");
    520  1.193    dyoung 	if (d == NULL)
    521  1.192    dyoung 		return;
    522  1.192    dyoung 
    523  1.193    dyoung 	assert(sizeof(ifcr) == prop_data_size(d));
    524  1.193    dyoung 
    525  1.192    dyoung 	memcpy(&ifcr, prop_data_data_nocopy(d), sizeof(ifcr));
    526  1.201    dyoung 	if (direct_ioctl(env, SIOCSIFCAP, &ifcr) == -1)
    527  1.192    dyoung 		err(EXIT_FAILURE, "SIOCSIFCAP");
    528  1.192    dyoung }
    529  1.192    dyoung 
    530   1.16       cgd int
    531  1.187    dyoung main(int argc, char **argv)
    532    1.1       cgd {
    533  1.187    dyoung 	const struct afswtch *afp;
    534  1.208    dyoung 	int af, s;
    535  1.208    dyoung 	bool aflag = false, Cflag = false;
    536  1.187    dyoung 	struct match match[32];
    537  1.187    dyoung 	size_t nmatch;
    538  1.187    dyoung 	struct parser *start;
    539  1.187    dyoung 	int ch, narg = 0, rc;
    540  1.211    dyoung 	prop_dictionary_t env, oenv;
    541  1.187    dyoung 	const char *ifname;
    542  1.187    dyoung 
    543  1.219     pooka #ifdef RUMP_ACTION
    544  1.219     pooka 	rump_init();
    545  1.219     pooka #endif
    546  1.187    dyoung 	memset(match, 0, sizeof(match));
    547  1.187    dyoung 
    548  1.208    dyoung 	init_afs();
    549  1.208    dyoung 
    550  1.187    dyoung 	start = init_parser();
    551   1.24   thorpej 
    552   1.24   thorpej 	/* Parse command-line options */
    553  1.220    dyoung 	aflag = Nflag = vflag = zflag = false;
    554  1.208    dyoung 	while ((ch = getopt(argc, argv, gflags)) != -1) {
    555   1.24   thorpej 		switch (ch) {
    556   1.49  christos 		case 'A':
    557  1.107    itojun 			warnx("-A is deprecated");
    558   1.49  christos 			break;
    559   1.49  christos 
    560   1.24   thorpej 		case 'a':
    561  1.208    dyoung 			aflag = true;
    562   1.24   thorpej 			break;
    563   1.24   thorpej 
    564   1.54  sommerfe 		case 'b':
    565  1.208    dyoung 			bflag = true;
    566   1.54  sommerfe 			break;
    567   1.54  sommerfe 
    568   1.87   thorpej 		case 'C':
    569  1.208    dyoung 			Cflag = true;
    570   1.87   thorpej 			break;
    571   1.87   thorpej 
    572   1.34     lukem 		case 'd':
    573  1.208    dyoung 			dflag = true;
    574   1.34     lukem 			break;
    575  1.169    rpaulo 		case 'h':
    576  1.208    dyoung 			hflag = true;
    577  1.169    rpaulo 			break;
    578   1.31   thorpej 		case 'l':
    579  1.208    dyoung 			lflag = true;
    580   1.24   thorpej 			break;
    581  1.220    dyoung 		case 'N':
    582  1.220    dyoung 			Nflag = true;
    583  1.220    dyoung 			break;
    584    1.1       cgd 
    585   1.54  sommerfe 		case 's':
    586  1.208    dyoung 			sflag = true;
    587   1.54  sommerfe 			break;
    588   1.54  sommerfe 
    589   1.34     lukem 		case 'u':
    590  1.208    dyoung 			uflag = true;
    591   1.34     lukem 			break;
    592   1.34     lukem 
    593  1.124      matt 		case 'v':
    594  1.208    dyoung 			vflag = true;
    595  1.124      matt 			break;
    596  1.124      matt 
    597  1.134     perry 		case 'z':
    598  1.208    dyoung 			zflag = true;
    599  1.134     perry 			break;
    600  1.134     perry 
    601   1.24   thorpej 		default:
    602  1.208    dyoung 			if (!set_flag(ch))
    603  1.208    dyoung 				usage();
    604  1.208    dyoung 			break;
    605   1.24   thorpej 		}
    606  1.187    dyoung 		switch (ch) {
    607  1.187    dyoung 		case 'a':
    608  1.187    dyoung 			start = &opt_family_only.pb_parser;
    609  1.187    dyoung 			break;
    610  1.187    dyoung 
    611  1.187    dyoung 		case 'L':
    612  1.187    dyoung 		case 'm':
    613  1.187    dyoung 		case 'v':
    614  1.187    dyoung 		case 'z':
    615  1.187    dyoung 			if (start != &opt_family_only.pb_parser)
    616  1.187    dyoung 				start = &iface_opt_family_only.pif_parser;
    617  1.187    dyoung 			break;
    618  1.187    dyoung 		case 'C':
    619  1.187    dyoung 			start = &cloneterm.pt_parser;
    620  1.187    dyoung 			break;
    621  1.187    dyoung 		case 'l':
    622  1.187    dyoung 			start = &no_cmds.pt_parser;
    623  1.187    dyoung 			break;
    624  1.187    dyoung 		case 's':
    625  1.187    dyoung 			if (start != &no_cmds.pt_parser &&
    626  1.187    dyoung 			    start != &opt_family_only.pb_parser)
    627  1.187    dyoung 				start = &iface_only.pif_parser;
    628  1.187    dyoung 			break;
    629  1.187    dyoung 		default:
    630  1.187    dyoung 			break;
    631  1.187    dyoung 		}
    632    1.1       cgd 	}
    633   1.24   thorpej 	argc -= optind;
    634   1.24   thorpej 	argv += optind;
    635   1.24   thorpej 
    636   1.31   thorpej 	/*
    637   1.31   thorpej 	 * -l means "list all interfaces", and is mutally exclusive with
    638   1.31   thorpej 	 * all other flags/commands.
    639   1.31   thorpej 	 *
    640   1.87   thorpej 	 * -C means "list all names of cloners", and it mutually exclusive
    641   1.87   thorpej 	 * with all other flags/commands.
    642   1.87   thorpej 	 *
    643   1.31   thorpej 	 * -a means "print status of all interfaces".
    644   1.31   thorpej 	 */
    645  1.208    dyoung 	if ((lflag || Cflag) && (aflag || get_flag('m') || vflag || zflag))
    646   1.54  sommerfe 		usage();
    647  1.208    dyoung 	if ((lflag || Cflag) && get_flag('L'))
    648   1.31   thorpej 		usage();
    649   1.87   thorpej 	if (lflag && Cflag)
    650   1.87   thorpej 		usage();
    651   1.24   thorpej 
    652  1.187    dyoung 	nmatch = __arraycount(match);
    653  1.187    dyoung 
    654  1.187    dyoung 	rc = parse(argc, argv, start, match, &nmatch, &narg);
    655  1.187    dyoung 	if (rc != 0)
    656   1.24   thorpej 		usage();
    657   1.24   thorpej 
    658  1.211    dyoung 	if ((oenv = prop_dictionary_create()) == NULL)
    659  1.187    dyoung 		err(EXIT_FAILURE, "%s: prop_dictionary_create", __func__);
    660  1.187    dyoung 
    661  1.211    dyoung 	if (matches_exec(match, oenv, nmatch) == -1)
    662  1.187    dyoung 		err(EXIT_FAILURE, "exec_matches");
    663   1.81   thorpej 
    664  1.187    dyoung 	argc -= narg;
    665  1.187    dyoung 	argv += narg;
    666   1.24   thorpej 
    667  1.187    dyoung 	env = (nmatch > 0) ? match[(int)nmatch - 1].m_env : NULL;
    668  1.187    dyoung 	if (env == NULL)
    669  1.211    dyoung 		env = oenv;
    670   1.52   thorpej 	else
    671  1.211    dyoung 		env = prop_dictionary_augment(env, oenv);
    672   1.24   thorpej 
    673  1.187    dyoung 	/* Process any media commands that may have been issued. */
    674  1.187    dyoung 	process_media_commands(env);
    675   1.24   thorpej 
    676  1.208    dyoung 	if ((af = getaf(env)) == -1)
    677  1.187    dyoung 		af = AF_INET;
    678   1.54  sommerfe 
    679  1.187    dyoung 	if ((s = getsock(af)) == -1)
    680  1.187    dyoung 		err(EXIT_FAILURE, "%s: getsock", __func__);
    681   1.51   thorpej 
    682  1.187    dyoung 	if ((ifname = getifname(env)) == NULL)
    683  1.187    dyoung 		err(EXIT_FAILURE, "%s: getifname", __func__);
    684   1.24   thorpej 
    685  1.187    dyoung 	if ((afp = lookup_af_bynum(af)) == NULL)
    686  1.187    dyoung 		errx(EXIT_FAILURE, "%s: lookup_af_bynum", __func__);
    687    1.1       cgd 
    688  1.208    dyoung 	assert(afp->af_addr_commit != NULL);
    689  1.211    dyoung 	(*afp->af_addr_commit)(env, oenv);
    690   1.21       gwr 
    691  1.187    dyoung 	do_setifpreference(env);
    692  1.201    dyoung 	do_setifcaps(env);
    693  1.108   thorpej 
    694  1.208    dyoung 	exit(EXIT_SUCCESS);
    695  1.208    dyoung }
    696   1.24   thorpej 
    697  1.208    dyoung static void
    698  1.208    dyoung init_afs(void)
    699  1.208    dyoung {
    700  1.214     lukem 	size_t i;
    701  1.208    dyoung 	const struct afswtch *afp;
    702  1.208    dyoung 	struct kwinst kw = {.k_type = KW_T_INT};
    703  1.208    dyoung 
    704  1.208    dyoung 	SIMPLEQ_FOREACH(afp, &aflist, af_next) {
    705  1.208    dyoung 		kw.k_word = afp->af_name;
    706  1.208    dyoung 		kw.k_int = afp->af_af;
    707  1.208    dyoung 		for (i = 0; i < __arraycount(familykw); i++) {
    708  1.208    dyoung 			if (familykw[i].k_word == NULL) {
    709  1.208    dyoung 				familykw[i] = kw;
    710  1.208    dyoung 				break;
    711  1.208    dyoung 			}
    712  1.208    dyoung 		}
    713  1.208    dyoung 	}
    714   1.24   thorpej }
    715   1.24   thorpej 
    716  1.160   thorpej const struct afswtch *
    717  1.158   thorpej lookup_af_bynum(int afnum)
    718  1.158   thorpej {
    719  1.208    dyoung 	const struct afswtch *afp;
    720  1.158   thorpej 
    721  1.208    dyoung 	SIMPLEQ_FOREACH(afp, &aflist, af_next) {
    722  1.208    dyoung 		if (afp->af_af == afnum)
    723  1.208    dyoung 			break;
    724  1.208    dyoung 	}
    725  1.208    dyoung 	return afp;
    726  1.158   thorpej }
    727  1.158   thorpej 
    728   1.13   mycroft void
    729  1.187    dyoung printall(const char *ifname, prop_dictionary_t env0)
    730    1.5   deraadt {
    731   1.78    itojun 	struct ifaddrs *ifap, *ifa;
    732  1.187    dyoung 	struct ifreq ifr;
    733  1.216    dyoung 	const struct sockaddr *sdl = NULL;
    734  1.189    dyoung 	prop_dictionary_t env, oenv;
    735   1.78    itojun 	int idx;
    736   1.78    itojun 	char *p;
    737   1.78    itojun 
    738  1.187    dyoung 	if (env0 == NULL)
    739  1.187    dyoung 		env = prop_dictionary_create();
    740  1.187    dyoung 	else
    741  1.187    dyoung 		env = prop_dictionary_copy_mutable(env0);
    742  1.187    dyoung 
    743  1.189    dyoung 	oenv = prop_dictionary_create();
    744  1.189    dyoung 
    745  1.189    dyoung 	if (env == NULL || oenv == NULL)
    746  1.187    dyoung 		errx(EXIT_FAILURE, "%s: prop_dictionary_copy/create", __func__);
    747  1.187    dyoung 
    748   1.78    itojun 	if (getifaddrs(&ifap) != 0)
    749  1.120    atatat 		err(EXIT_FAILURE, "getifaddrs");
    750   1.78    itojun 	p = NULL;
    751   1.78    itojun 	idx = 0;
    752   1.78    itojun 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    753  1.187    dyoung 		memset(&ifr, 0, sizeof(ifr));
    754  1.187    dyoung 		estrlcpy(ifr.ifr_name, ifa->ifa_name, sizeof(ifr.ifr_name));
    755  1.187    dyoung 		if (sizeof(ifr.ifr_addr) >= ifa->ifa_addr->sa_len) {
    756  1.187    dyoung 			memcpy(&ifr.ifr_addr, ifa->ifa_addr,
    757   1.78    itojun 			    ifa->ifa_addr->sa_len);
    758   1.78    itojun 		}
    759   1.78    itojun 
    760  1.187    dyoung 		if (ifname != NULL && strcmp(ifname, ifa->ifa_name) != 0)
    761  1.107    itojun 			continue;
    762   1.78    itojun 		if (ifa->ifa_addr->sa_family == AF_LINK)
    763  1.216    dyoung 			sdl = ifa->ifa_addr;
    764   1.78    itojun 		if (p && strcmp(p, ifa->ifa_name) == 0)
    765   1.78    itojun 			continue;
    766  1.189    dyoung 		if (!prop_dictionary_set_cstring(env, "if", ifa->ifa_name))
    767  1.140    itojun 			continue;
    768   1.78    itojun 		p = ifa->ifa_name;
    769   1.78    itojun 
    770  1.135     lukem 		if (bflag && (ifa->ifa_flags & IFF_BROADCAST) == 0)
    771   1.78    itojun 			continue;
    772   1.78    itojun 		if (dflag && (ifa->ifa_flags & IFF_UP) != 0)
    773   1.78    itojun 			continue;
    774   1.78    itojun 		if (uflag && (ifa->ifa_flags & IFF_UP) == 0)
    775   1.78    itojun 			continue;
    776   1.78    itojun 
    777  1.187    dyoung 		if (sflag && carrier(env))
    778   1.78    itojun 			continue;
    779   1.78    itojun 		idx++;
    780   1.78    itojun 		/*
    781   1.78    itojun 		 * Are we just listing the interfaces?
    782   1.78    itojun 		 */
    783   1.78    itojun 		if (lflag) {
    784   1.78    itojun 			if (idx > 1)
    785  1.147       dsl 				printf(" ");
    786  1.187    dyoung 			fputs(ifa->ifa_name, stdout);
    787   1.78    itojun 			continue;
    788   1.78    itojun 		}
    789   1.78    itojun 
    790  1.189    dyoung 		status(sdl, env, oenv);
    791  1.119     bjh21 		sdl = NULL;
    792   1.78    itojun 	}
    793   1.78    itojun 	if (lflag)
    794  1.147       dsl 		printf("\n");
    795  1.187    dyoung 	prop_object_release((prop_object_t)env);
    796  1.189    dyoung 	prop_object_release((prop_object_t)oenv);
    797   1.78    itojun 	freeifaddrs(ifap);
    798   1.87   thorpej }
    799   1.87   thorpej 
    800  1.208    dyoung static int
    801  1.187    dyoung list_cloners(prop_dictionary_t env, prop_dictionary_t oenv)
    802   1.87   thorpej {
    803   1.87   thorpej 	struct if_clonereq ifcr;
    804   1.87   thorpej 	char *cp, *buf;
    805  1.187    dyoung 	int idx, s;
    806   1.87   thorpej 
    807   1.87   thorpej 	memset(&ifcr, 0, sizeof(ifcr));
    808   1.87   thorpej 
    809  1.187    dyoung 	s = getsock(AF_INET);
    810   1.87   thorpej 
    811  1.120    atatat 	if (ioctl(s, SIOCIFGCLONERS, &ifcr) == -1)
    812  1.120    atatat 		err(EXIT_FAILURE, "SIOCIFGCLONERS for count");
    813   1.87   thorpej 
    814   1.87   thorpej 	buf = malloc(ifcr.ifcr_total * IFNAMSIZ);
    815   1.87   thorpej 	if (buf == NULL)
    816  1.120    atatat 		err(EXIT_FAILURE, "unable to allocate cloner name buffer");
    817   1.87   thorpej 
    818   1.87   thorpej 	ifcr.ifcr_count = ifcr.ifcr_total;
    819   1.87   thorpej 	ifcr.ifcr_buffer = buf;
    820   1.87   thorpej 
    821  1.120    atatat 	if (ioctl(s, SIOCIFGCLONERS, &ifcr) == -1)
    822  1.120    atatat 		err(EXIT_FAILURE, "SIOCIFGCLONERS for names");
    823   1.87   thorpej 
    824   1.87   thorpej 	/*
    825   1.87   thorpej 	 * In case some disappeared in the mean time, clamp it down.
    826   1.87   thorpej 	 */
    827   1.87   thorpej 	if (ifcr.ifcr_count > ifcr.ifcr_total)
    828   1.87   thorpej 		ifcr.ifcr_count = ifcr.ifcr_total;
    829   1.87   thorpej 
    830   1.87   thorpej 	for (cp = buf, idx = 0; idx < ifcr.ifcr_count; idx++, cp += IFNAMSIZ) {
    831   1.87   thorpej 		if (idx > 0)
    832  1.147       dsl 			printf(" ");
    833   1.87   thorpej 		printf("%s", cp);
    834   1.87   thorpej 	}
    835   1.87   thorpej 
    836  1.147       dsl 	printf("\n");
    837   1.87   thorpej 	free(buf);
    838  1.187    dyoung 	exit(EXIT_SUCCESS);
    839    1.5   deraadt }
    840    1.5   deraadt 
    841  1.187    dyoung static int
    842  1.211    dyoung clone_command(prop_dictionary_t env, prop_dictionary_t oenv)
    843   1.81   thorpej {
    844  1.188    dyoung 	int64_t cmd;
    845  1.187    dyoung 
    846  1.188    dyoung 	if (!prop_dictionary_get_int64(env, "clonecmd", &cmd)) {
    847  1.187    dyoung 		errno = ENOENT;
    848  1.187    dyoung 		return -1;
    849  1.187    dyoung 	}
    850  1.187    dyoung 
    851  1.201    dyoung 	if (indirect_ioctl(env, (unsigned long)cmd, NULL) == -1) {
    852  1.187    dyoung 		warn("%s", __func__);
    853  1.187    dyoung 		return -1;
    854  1.187    dyoung 	}
    855  1.187    dyoung 	return 0;
    856   1.81   thorpej }
    857   1.81   thorpej 
    858   1.81   thorpej /*ARGSUSED*/
    859  1.208    dyoung static int
    860  1.211    dyoung setifaddr(prop_dictionary_t env, prop_dictionary_t oenv)
    861   1.81   thorpej {
    862  1.187    dyoung 	const struct paddr_prefix *pfx0;
    863  1.187    dyoung 	struct paddr_prefix *pfx;
    864  1.187    dyoung 	prop_data_t d;
    865  1.208    dyoung 	int af;
    866  1.187    dyoung 
    867  1.187    dyoung 	if ((af = getaf(env)) == -1)
    868  1.187    dyoung 		af = AF_INET;
    869  1.187    dyoung 
    870  1.187    dyoung 	d = (prop_data_t)prop_dictionary_get(env, "address");
    871  1.187    dyoung 	assert(d != NULL);
    872  1.187    dyoung 	pfx0 = prop_data_data_nocopy(d);
    873   1.81   thorpej 
    874  1.194    dyoung 	if (pfx0->pfx_len >= 0) {
    875  1.187    dyoung 		pfx = prefixlen_to_mask(af, pfx0->pfx_len);
    876  1.187    dyoung 		if (pfx == NULL)
    877  1.187    dyoung 			err(EXIT_FAILURE, "prefixlen_to_mask");
    878  1.187    dyoung 		free(pfx);
    879  1.187    dyoung 	}
    880  1.187    dyoung 
    881  1.187    dyoung 	return 0;
    882    1.1       cgd }
    883    1.1       cgd 
    884  1.208    dyoung static int
    885  1.211    dyoung setifnetmask(prop_dictionary_t env, prop_dictionary_t oenv)
    886    1.1       cgd {
    887  1.187    dyoung 	const struct paddr_prefix *pfx;
    888  1.187    dyoung 	prop_data_t d;
    889  1.187    dyoung 
    890  1.187    dyoung 	d = (prop_data_t)prop_dictionary_get(env, "dstormask");
    891  1.187    dyoung 	assert(d != NULL);
    892  1.187    dyoung 	pfx = prop_data_data_nocopy(d);
    893  1.187    dyoung 
    894  1.211    dyoung 	if (!prop_dictionary_set(oenv, "netmask", (prop_object_t)d))
    895  1.187    dyoung 		return -1;
    896  1.187    dyoung 
    897  1.187    dyoung 	return 0;
    898    1.1       cgd }
    899    1.1       cgd 
    900  1.208    dyoung static int
    901  1.211    dyoung setifbroadaddr(prop_dictionary_t env, prop_dictionary_t oenv)
    902    1.1       cgd {
    903  1.187    dyoung 	const struct paddr_prefix *pfx;
    904  1.187    dyoung 	prop_data_t d;
    905  1.187    dyoung 	unsigned short flags;
    906  1.187    dyoung 
    907  1.211    dyoung 	if (getifflags(env, oenv, &flags) == -1)
    908  1.187    dyoung 		err(EXIT_FAILURE, "%s: getifflags", __func__);
    909  1.187    dyoung 
    910  1.187    dyoung 	if ((flags & IFF_BROADCAST) == 0)
    911  1.187    dyoung 		errx(EXIT_FAILURE, "not a broadcast interface");
    912  1.187    dyoung 
    913  1.187    dyoung 	d = (prop_data_t)prop_dictionary_get(env, "broadcast");
    914  1.187    dyoung 	assert(d != NULL);
    915  1.187    dyoung 	pfx = prop_data_data_nocopy(d);
    916  1.187    dyoung 
    917  1.211    dyoung 	if (!prop_dictionary_set(oenv, "broadcast", (prop_object_t)d))
    918  1.187    dyoung 		return -1;
    919  1.187    dyoung 
    920  1.187    dyoung 	return 0;
    921    1.1       cgd }
    922    1.1       cgd 
    923    1.1       cgd /*ARGSUSED*/
    924  1.208    dyoung static int
    925  1.211    dyoung notrailers(prop_dictionary_t env, prop_dictionary_t oenv)
    926   1.13   mycroft {
    927   1.34     lukem 	puts("Note: trailers are no longer sent, but always received");
    928  1.187    dyoung 	return 0;
    929   1.13   mycroft }
    930   1.13   mycroft 
    931   1.13   mycroft /*ARGSUSED*/
    932  1.208    dyoung static int
    933  1.211    dyoung setifdstormask(prop_dictionary_t env, prop_dictionary_t oenv)
    934    1.1       cgd {
    935  1.187    dyoung 	const char *key;
    936  1.187    dyoung 	const struct paddr_prefix *pfx;
    937  1.187    dyoung 	prop_data_t d;
    938  1.187    dyoung 	unsigned short flags;
    939  1.187    dyoung 
    940  1.211    dyoung 	if (getifflags(env, oenv, &flags) == -1)
    941  1.187    dyoung 		err(EXIT_FAILURE, "%s: getifflags", __func__);
    942  1.187    dyoung 
    943  1.187    dyoung 	d = (prop_data_t)prop_dictionary_get(env, "dstormask");
    944  1.187    dyoung 	assert(d != NULL);
    945  1.187    dyoung 	pfx = prop_data_data_nocopy(d);
    946  1.187    dyoung 
    947  1.187    dyoung 	if ((flags & IFF_BROADCAST) == 0) {
    948  1.187    dyoung 		key = "dst";
    949  1.187    dyoung 	} else {
    950  1.187    dyoung 		key = "netmask";
    951  1.187    dyoung 	}
    952  1.187    dyoung 
    953  1.211    dyoung 	if (!prop_dictionary_set(oenv, key, (prop_object_t)d))
    954  1.187    dyoung 		return -1;
    955  1.187    dyoung 
    956  1.187    dyoung 	return 0;
    957    1.1       cgd }
    958    1.1       cgd 
    959  1.208    dyoung static int
    960  1.211    dyoung setifflags(prop_dictionary_t env, prop_dictionary_t oenv)
    961    1.1       cgd {
    962  1.201    dyoung 	struct ifreq ifr;
    963  1.189    dyoung 	int64_t ifflag;
    964  1.189    dyoung 	bool rc;
    965  1.187    dyoung 
    966  1.189    dyoung 	rc = prop_dictionary_get_int64(env, "ifflag", &ifflag);
    967  1.189    dyoung 	assert(rc);
    968   1.79     enami 
    969  1.201    dyoung  	if (direct_ioctl(env, SIOCGIFFLAGS, &ifr) == -1)
    970  1.187    dyoung 		return -1;
    971  1.187    dyoung 
    972  1.187    dyoung 	if (ifflag < 0) {
    973  1.187    dyoung 		ifflag = -ifflag;
    974  1.201    dyoung 		ifr.ifr_flags &= ~ifflag;
    975    1.1       cgd 	} else
    976  1.201    dyoung 		ifr.ifr_flags |= ifflag;
    977  1.187    dyoung 
    978  1.201    dyoung 	if (direct_ioctl(env, SIOCSIFFLAGS, &ifr) == -1)
    979  1.187    dyoung 		return -1;
    980  1.187    dyoung 
    981  1.187    dyoung 	return 0;
    982  1.187    dyoung }
    983  1.187    dyoung 
    984  1.187    dyoung static int
    985  1.187    dyoung getifcaps(prop_dictionary_t env, prop_dictionary_t oenv, struct ifcapreq *oifcr)
    986  1.187    dyoung {
    987  1.187    dyoung 	bool rc;
    988  1.187    dyoung 	struct ifcapreq ifcr;
    989  1.187    dyoung 	const struct ifcapreq *tmpifcr;
    990  1.187    dyoung 	prop_data_t capdata;
    991  1.187    dyoung 
    992  1.187    dyoung 	capdata = (prop_data_t)prop_dictionary_get(env, "ifcaps");
    993  1.187    dyoung 
    994  1.187    dyoung 	if (capdata != NULL) {
    995  1.187    dyoung 		tmpifcr = prop_data_data_nocopy(capdata);
    996  1.187    dyoung 		*oifcr = *tmpifcr;
    997  1.187    dyoung 		return 0;
    998  1.187    dyoung 	}
    999  1.187    dyoung 
   1000  1.201    dyoung 	(void)direct_ioctl(env, SIOCGIFCAP, &ifcr);
   1001  1.187    dyoung 	*oifcr = ifcr;
   1002  1.187    dyoung 
   1003  1.187    dyoung 	capdata = prop_data_create_data(&ifcr, sizeof(ifcr));
   1004  1.187    dyoung 
   1005  1.187    dyoung 	rc = prop_dictionary_set(oenv, "ifcaps", capdata);
   1006  1.187    dyoung 
   1007  1.187    dyoung 	prop_object_release((prop_object_t)capdata);
   1008  1.187    dyoung 
   1009  1.190    dyoung 	return rc ? 0 : -1;
   1010    1.1       cgd }
   1011    1.1       cgd 
   1012  1.187    dyoung static int
   1013  1.187    dyoung setifcaps(prop_dictionary_t env, prop_dictionary_t oenv)
   1014  1.108   thorpej {
   1015  1.189    dyoung 	int64_t ifcap;
   1016  1.189    dyoung 	int s;
   1017  1.189    dyoung 	bool rc;
   1018  1.187    dyoung 	prop_data_t capdata;
   1019  1.187    dyoung 	struct ifcapreq ifcr;
   1020  1.187    dyoung 
   1021  1.187    dyoung 	s = getsock(AF_INET);
   1022  1.187    dyoung 
   1023  1.189    dyoung 	rc = prop_dictionary_get_int64(env, "ifcap", &ifcap);
   1024  1.189    dyoung 	assert(rc);
   1025  1.189    dyoung 
   1026  1.187    dyoung 	if (getifcaps(env, oenv, &ifcr) == -1)
   1027  1.187    dyoung 		return -1;
   1028  1.187    dyoung 
   1029  1.187    dyoung 	if (ifcap < 0) {
   1030  1.187    dyoung 		ifcap = -ifcap;
   1031  1.187    dyoung 		ifcr.ifcr_capenable &= ~ifcap;
   1032  1.108   thorpej 	} else
   1033  1.187    dyoung 		ifcr.ifcr_capenable |= ifcap;
   1034  1.187    dyoung 
   1035  1.187    dyoung 	if ((capdata = prop_data_create_data(&ifcr, sizeof(ifcr))) == NULL)
   1036  1.187    dyoung 		return -1;
   1037  1.108   thorpej 
   1038  1.191    dyoung 	rc = prop_dictionary_set(oenv, "ifcaps", capdata);
   1039  1.190    dyoung 	prop_object_release((prop_object_t)capdata);
   1040  1.187    dyoung 
   1041  1.190    dyoung 	return rc ? 0 : -1;
   1042  1.108   thorpej }
   1043  1.108   thorpej 
   1044  1.187    dyoung static int
   1045  1.211    dyoung setifmetric(prop_dictionary_t env, prop_dictionary_t oenv)
   1046    1.1       cgd {
   1047  1.187    dyoung 	struct ifreq ifr;
   1048  1.189    dyoung 	bool rc;
   1049  1.189    dyoung 	int64_t metric;
   1050  1.187    dyoung 
   1051  1.189    dyoung 	rc = prop_dictionary_get_int64(env, "metric", &metric);
   1052  1.189    dyoung 	assert(rc);
   1053  1.125    itojun 
   1054  1.189    dyoung 	ifr.ifr_metric = metric;
   1055  1.201    dyoung 	if (direct_ioctl(env, SIOCSIFMETRIC, &ifr) == -1)
   1056   1.13   mycroft 		warn("SIOCSIFMETRIC");
   1057  1.187    dyoung 	return 0;
   1058    1.1       cgd }
   1059    1.1       cgd 
   1060  1.187    dyoung static void
   1061  1.187    dyoung do_setifpreference(prop_dictionary_t env)
   1062  1.178    dyoung {
   1063  1.178    dyoung 	struct if_addrprefreq ifap;
   1064  1.187    dyoung 	prop_data_t d;
   1065  1.187    dyoung 	const struct paddr_prefix *pfx;
   1066  1.187    dyoung 
   1067  1.189    dyoung 	memset(&ifap, 0, sizeof(ifap));
   1068  1.189    dyoung 
   1069  1.189    dyoung 	if (!prop_dictionary_get_int16(env, "preference",
   1070  1.189    dyoung 	    &ifap.ifap_preference))
   1071  1.187    dyoung 		return;
   1072  1.187    dyoung 
   1073  1.187    dyoung 	d = (prop_data_t)prop_dictionary_get(env, "address");
   1074  1.187    dyoung 	assert(d != NULL);
   1075  1.189    dyoung 
   1076  1.187    dyoung 	pfx = prop_data_data_nocopy(d);
   1077  1.187    dyoung 
   1078  1.187    dyoung 	memcpy(&ifap.ifap_addr, &pfx->pfx_addr,
   1079  1.187    dyoung 	    MIN(sizeof(ifap.ifap_addr), pfx->pfx_addr.sa_len));
   1080  1.201    dyoung 	if (direct_ioctl(env, SIOCSIFADDRPREF, &ifap) == -1)
   1081  1.178    dyoung 		warn("SIOCSIFADDRPREF");
   1082  1.178    dyoung }
   1083  1.178    dyoung 
   1084  1.187    dyoung static int
   1085  1.211    dyoung setifmtu(prop_dictionary_t env, prop_dictionary_t oenv)
   1086   1.33        is {
   1087  1.189    dyoung 	int64_t mtu;
   1088  1.189    dyoung 	bool rc;
   1089  1.187    dyoung 	struct ifreq ifr;
   1090  1.125    itojun 
   1091  1.189    dyoung 	rc = prop_dictionary_get_int64(env, "mtu", &mtu);
   1092  1.189    dyoung 	assert(rc);
   1093  1.187    dyoung 
   1094  1.189    dyoung 	ifr.ifr_mtu = mtu;
   1095  1.201    dyoung 	if (direct_ioctl(env, SIOCSIFMTU, &ifr) == -1)
   1096   1.33        is 		warn("SIOCSIFMTU");
   1097   1.33        is 
   1098  1.187    dyoung 	return 0;
   1099   1.88      onoe }
   1100   1.88      onoe 
   1101  1.208    dyoung static int
   1102  1.187    dyoung carrier(prop_dictionary_t env)
   1103   1.54  sommerfe {
   1104   1.54  sommerfe 	struct ifmediareq ifmr;
   1105  1.187    dyoung 
   1106  1.201    dyoung 	memset(&ifmr, 0, sizeof(ifmr));
   1107   1.54  sommerfe 
   1108  1.201    dyoung 	if (direct_ioctl(env, SIOCGIFMEDIA, &ifmr) == -1) {
   1109   1.54  sommerfe 		/*
   1110   1.54  sommerfe 		 * Interface doesn't support SIOC{G,S}IFMEDIA;
   1111   1.54  sommerfe 		 * assume ok.
   1112   1.54  sommerfe 		 */
   1113  1.187    dyoung 		return EXIT_SUCCESS;
   1114   1.54  sommerfe 	}
   1115   1.54  sommerfe 	if ((ifmr.ifm_status & IFM_AVALID) == 0) {
   1116   1.54  sommerfe 		/*
   1117   1.54  sommerfe 		 * Interface doesn't report media-valid status.
   1118   1.54  sommerfe 		 * assume ok.
   1119   1.54  sommerfe 		 */
   1120  1.187    dyoung 		return EXIT_SUCCESS;
   1121   1.54  sommerfe 	}
   1122   1.54  sommerfe 	/* otherwise, return ok for active, not-ok if not active. */
   1123  1.187    dyoung 	if (ifmr.ifm_status & IFM_ACTIVE)
   1124  1.187    dyoung 		return EXIT_SUCCESS;
   1125  1.187    dyoung 	else
   1126  1.187    dyoung 		return EXIT_FAILURE;
   1127   1.54  sommerfe }
   1128   1.54  sommerfe 
   1129  1.208    dyoung static void
   1130  1.208    dyoung print_plural(const char *prefix, uint64_t n, const char *unit)
   1131  1.208    dyoung {
   1132  1.208    dyoung 	printf("%s%" PRIu64 " %s%s", prefix, n, unit, (n == 1) ? "" : "s");
   1133  1.208    dyoung }
   1134   1.63   thorpej 
   1135  1.208    dyoung static void
   1136  1.208    dyoung print_human_bytes(bool humanize, uint64_t n)
   1137  1.208    dyoung {
   1138  1.208    dyoung 	char buf[5];
   1139  1.208    dyoung 
   1140  1.208    dyoung 	if (humanize) {
   1141  1.208    dyoung 		(void)humanize_number(buf, sizeof(buf),
   1142  1.208    dyoung 		    (int64_t)n, "", HN_AUTOSCALE, HN_NOSPACE | HN_DECIMAL);
   1143  1.208    dyoung 		printf(", %s byte%s", buf, (atof(buf) == 1.0) ? "" : "s");
   1144  1.208    dyoung 	} else
   1145  1.208    dyoung 		print_plural(", ", n, "byte");
   1146  1.208    dyoung }
   1147   1.63   thorpej 
   1148    1.1       cgd /*
   1149    1.1       cgd  * Print the status of the interface.  If an address family was
   1150    1.1       cgd  * specified, show it and it only; otherwise, show them all.
   1151    1.1       cgd  */
   1152   1.16       cgd void
   1153  1.216    dyoung status(const struct sockaddr *sdl, prop_dictionary_t env,
   1154  1.189    dyoung     prop_dictionary_t oenv)
   1155    1.1       cgd {
   1156  1.208    dyoung 	const struct if_data *ifi;
   1157  1.208    dyoung 	status_func_t *status_f;
   1158  1.208    dyoung 	statistics_func_t *statistics_f;
   1159  1.124      matt 	struct ifdatareq ifdr;
   1160  1.187    dyoung 	struct ifreq ifr;
   1161  1.130  christos 	char fbuf[BUFSIZ];
   1162  1.187    dyoung 	int af, s;
   1163  1.187    dyoung 	const char *ifname;
   1164  1.187    dyoung 	struct ifcapreq ifcr;
   1165  1.187    dyoung 	unsigned short flags;
   1166  1.187    dyoung 	const struct afswtch *afp;
   1167  1.187    dyoung 
   1168  1.188    dyoung 	if ((af = getaf(env)) == -1) {
   1169  1.188    dyoung 		afp = NULL;
   1170  1.188    dyoung 		af = AF_UNSPEC;
   1171  1.188    dyoung 	} else
   1172  1.188    dyoung 		afp = lookup_af_bynum(af);
   1173  1.188    dyoung 
   1174  1.201    dyoung 	/* get out early if the family is unsupported by the kernel */
   1175  1.188    dyoung 	if ((s = getsock(af)) == -1)
   1176  1.187    dyoung 		err(EXIT_FAILURE, "%s: getsock", __func__);
   1177  1.187    dyoung 
   1178  1.189    dyoung 	if ((ifname = getifinfo(env, oenv, &flags)) == NULL)
   1179  1.187    dyoung 		err(EXIT_FAILURE, "%s: getifinfo", __func__);
   1180    1.1       cgd 
   1181  1.130  christos 	(void)snprintb(fbuf, sizeof(fbuf), IFFBITS, flags);
   1182  1.187    dyoung 	printf("%s: flags=%s", ifname, &fbuf[2]);
   1183  1.187    dyoung 
   1184  1.187    dyoung 	estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
   1185  1.187    dyoung 	if (ioctl(s, SIOCGIFMETRIC, &ifr) == -1)
   1186  1.187    dyoung 		warn("SIOCGIFMETRIC %s", ifr.ifr_name);
   1187  1.187    dyoung 	else if (ifr.ifr_metric != 0)
   1188  1.187    dyoung 		printf(" metric %d", ifr.ifr_metric);
   1189  1.187    dyoung 
   1190  1.187    dyoung 	estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
   1191  1.187    dyoung 	if (ioctl(s, SIOCGIFMTU, &ifr) != -1 && ifr.ifr_mtu != 0)
   1192  1.187    dyoung 		printf(" mtu %d", ifr.ifr_mtu);
   1193  1.147       dsl 	printf("\n");
   1194  1.108   thorpej 
   1195  1.189    dyoung 	if (getifcaps(env, oenv, &ifcr) == -1)
   1196  1.187    dyoung 		err(EXIT_FAILURE, "%s: getifcaps", __func__);
   1197  1.187    dyoung 
   1198  1.187    dyoung 	if (ifcr.ifcr_capabilities != 0) {
   1199  1.130  christos 		(void)snprintb(fbuf, sizeof(fbuf), IFCAPBITS,
   1200  1.187    dyoung 		    ifcr.ifcr_capabilities);
   1201  1.130  christos 		printf("\tcapabilities=%s\n", &fbuf[2]);
   1202  1.130  christos 		(void)snprintb(fbuf, sizeof(fbuf), IFCAPBITS,
   1203  1.187    dyoung 		    ifcr.ifcr_capenable);
   1204  1.130  christos 		printf("\tenabled=%s\n", &fbuf[2]);
   1205  1.108   thorpej 	}
   1206   1.65   thorpej 
   1207  1.208    dyoung 	SIMPLEQ_FOREACH(status_f, &status_funcs, f_next)
   1208  1.208    dyoung 		(*status_f->f_func)(env, oenv);
   1209   1.65   thorpej 
   1210  1.218    dyoung 	print_link_addresses(env, true);
   1211   1.24   thorpej 
   1212  1.208    dyoung 	media_status(env, oenv);
   1213   1.24   thorpej 
   1214  1.134     perry 	if (!vflag && !zflag)
   1215  1.124      matt 		goto proto_status;
   1216  1.124      matt 
   1217  1.187    dyoung 	estrlcpy(ifdr.ifdr_name, ifname, sizeof(ifdr.ifdr_name));
   1218  1.124      matt 
   1219  1.217    dyoung 	if (ioctl(s, zflag ? SIOCZIFDATA : SIOCGIFDATA, &ifdr) == -1)
   1220  1.134     perry 		err(EXIT_FAILURE, zflag ? "SIOCZIFDATA" : "SIOCGIFDATA");
   1221  1.169    rpaulo 
   1222  1.208    dyoung 	ifi = &ifdr.ifdr_data;
   1223  1.208    dyoung 
   1224  1.208    dyoung 	print_plural("\tinput: ", ifi->ifi_ipackets, "packet");
   1225  1.208    dyoung 	print_human_bytes(hflag, ifi->ifi_ibytes);
   1226  1.208    dyoung 	if (ifi->ifi_imcasts)
   1227  1.208    dyoung 		print_plural(", ", ifi->ifi_imcasts, "multicast");
   1228  1.208    dyoung 	if (ifi->ifi_ierrors)
   1229  1.208    dyoung 		print_plural(", ", ifi->ifi_ierrors, "error");
   1230  1.208    dyoung 	if (ifi->ifi_iqdrops)
   1231  1.208    dyoung 		print_plural(", ", ifi->ifi_iqdrops, "queue drop");
   1232  1.208    dyoung 	if (ifi->ifi_noproto)
   1233  1.208    dyoung 		printf(", %" PRIu64 " unknown protocol", ifi->ifi_noproto);
   1234  1.208    dyoung 	print_plural("\n\toutput: ", ifi->ifi_opackets, "packet");
   1235  1.208    dyoung 	print_human_bytes(hflag, ifi->ifi_obytes);
   1236  1.208    dyoung 	if (ifi->ifi_omcasts)
   1237  1.208    dyoung 		print_plural(", ", ifi->ifi_omcasts, "multicast");
   1238  1.208    dyoung 	if (ifi->ifi_oerrors)
   1239  1.208    dyoung 		print_plural(", ", ifi->ifi_oerrors, "error");
   1240  1.208    dyoung 	if (ifi->ifi_collisions)
   1241  1.208    dyoung 		print_plural(", ", ifi->ifi_collisions, "collision");
   1242  1.208    dyoung 	printf("\n");
   1243  1.124      matt 
   1244  1.208    dyoung 	SIMPLEQ_FOREACH(statistics_f, &statistics_funcs, f_next)
   1245  1.208    dyoung 		(*statistics_f->f_func)(env);
   1246  1.149    dyoung 
   1247   1.24   thorpej  proto_status:
   1248  1.187    dyoung 
   1249  1.187    dyoung 	if (afp != NULL)
   1250  1.189    dyoung 		(*afp->af_status)(env, oenv, true);
   1251  1.208    dyoung 	else SIMPLEQ_FOREACH(afp, &aflist, af_next)
   1252  1.189    dyoung 		(*afp->af_status)(env, oenv, false);
   1253   1.49  christos }
   1254   1.49  christos 
   1255  1.208    dyoung static int
   1256  1.211    dyoung setifprefixlen(prop_dictionary_t env, prop_dictionary_t oenv)
   1257   1.53    itojun {
   1258  1.189    dyoung 	bool rc;
   1259  1.189    dyoung 	int64_t plen;
   1260  1.187    dyoung 	int af;
   1261  1.187    dyoung 	struct paddr_prefix *pfx;
   1262  1.187    dyoung 	prop_data_t d;
   1263  1.187    dyoung 
   1264  1.187    dyoung 	if ((af = getaf(env)) == -1)
   1265  1.187    dyoung 		af = AF_INET;
   1266  1.187    dyoung 
   1267  1.189    dyoung 	rc = prop_dictionary_get_int64(env, "prefixlen", &plen);
   1268  1.189    dyoung 	assert(rc);
   1269  1.187    dyoung 
   1270  1.189    dyoung 	pfx = prefixlen_to_mask(af, plen);
   1271  1.187    dyoung 	if (pfx == NULL)
   1272  1.187    dyoung 		err(EXIT_FAILURE, "prefixlen_to_mask");
   1273  1.187    dyoung 
   1274  1.213    dyoung 	d = prop_data_create_data(pfx, paddr_prefix_size(pfx));
   1275  1.187    dyoung 	if (d == NULL)
   1276  1.187    dyoung 		err(EXIT_FAILURE, "%s: prop_data_create_data", __func__);
   1277  1.187    dyoung 
   1278  1.211    dyoung 	if (!prop_dictionary_set(oenv, "netmask", (prop_object_t)d))
   1279  1.187    dyoung 		err(EXIT_FAILURE, "%s: prop_dictionary_set", __func__);
   1280  1.187    dyoung 
   1281  1.187    dyoung 	free(pfx);
   1282  1.187    dyoung 	return 0;
   1283   1.53    itojun }
   1284   1.53    itojun 
   1285  1.210    dyoung static void
   1286  1.145       dsl usage(void)
   1287   1.18     glass {
   1288   1.99       cgd 	const char *progname = getprogname();
   1289  1.209    dyoung 	usage_func_t *usage_f;
   1290  1.209    dyoung 	prop_dictionary_t env;
   1291   1.80   thorpej 
   1292  1.209    dyoung 	if ((env = prop_dictionary_create()) == NULL)
   1293  1.209    dyoung 		err(EXIT_FAILURE, "%s: prop_dictionary_create", __func__);
   1294  1.209    dyoung 
   1295  1.209    dyoung 	fprintf(stderr, "usage: %s [-h] %s[-v] [-z] %sinterface\n"
   1296  1.105    itojun 		"\t[ af [ address [ dest_addr ] ] [ netmask mask ] [ prefixlen n ]\n"
   1297  1.105    itojun 		"\t\t[ alias | -alias ] ]\n"
   1298  1.209    dyoung 		"\t[ up ] [ down ] [ metric n ] [ mtu n ]\n", progname,
   1299  1.209    dyoung 		flag_is_registered(gflags, 'm') ? "[-m] " : "",
   1300  1.209    dyoung 		flag_is_registered(gflags, 'L') ? "[-L] " : "");
   1301  1.209    dyoung 
   1302  1.209    dyoung 	SIMPLEQ_FOREACH(usage_f, &usage_funcs, f_next)
   1303  1.209    dyoung 		(*usage_f->f_func)(env);
   1304  1.209    dyoung 
   1305  1.209    dyoung 	fprintf(stderr,
   1306   1.80   thorpej 		"\t[ arp | -arp ]\n"
   1307  1.178    dyoung 		"\t[ preference n ]\n"
   1308   1.80   thorpej 		"\t[ link0 | -link0 ] [ link1 | -link1 ] [ link2 | -link2 ]\n"
   1309  1.209    dyoung 		"       %s -a [-b] [-d] [-h] %s[-u] [-v] [-z] [ af ]\n"
   1310  1.209    dyoung 		"       %s -l [-b] [-d] [-s] [-u]\n"
   1311  1.101  christos 		"       %s -C\n"
   1312   1.81   thorpej 		"       %s interface create\n"
   1313   1.81   thorpej 		"       %s interface destroy\n",
   1314  1.209    dyoung 		progname, flag_is_registered(gflags, 'm') ? "[-m] " : "",
   1315  1.209    dyoung 		progname, progname, progname, progname);
   1316  1.209    dyoung 
   1317  1.209    dyoung 	prop_object_release((prop_object_t)env);
   1318  1.187    dyoung 	exit(EXIT_FAILURE);
   1319    1.1       cgd }
   1320