ifconfig(8): Minor code simplifications and style cleanups
[dragonfly.git] / sbin / ifconfig / ifconfig.c
1 /*
2  * Copyright (c) 1983, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD: src/sbin/ifconfig/ifconfig.c,v 1.113.2.4 2006/02/09 10:48:43 yar Exp $
30  */
31
32 #include <sys/param.h>
33 #include <sys/ioctl.h>
34 #include <sys/socket.h>
35 #include <sys/sysctl.h>
36 #include <sys/time.h>
37 #include <sys/module.h>
38 #include <sys/linker.h>
39 #include <sys/cdefs.h>
40 #include <sys/queue.h>
41
42 #include <net/ethernet.h>
43 #include <net/if.h>
44 #include <net/if_var.h>
45 #include <net/if_dl.h>
46 #include <net/if_types.h>
47 #include <net/route.h>
48
49 /* IP */
50 #include <netinet/in.h>
51 #include <netinet/in_var.h>
52 #include <arpa/inet.h>
53 #include <netdb.h>
54
55 #include <ctype.h>
56 #include <err.h>
57 #include <errno.h>
58 #include <fcntl.h>
59 #include <fnmatch.h>
60 #include <ifaddrs.h>
61 #include <stdbool.h>
62 #include <stdio.h>
63 #include <stdlib.h>
64 #include <string.h>
65 #include <unistd.h>
66
67 #include "ifconfig.h"
68
69 /*
70  * Since "struct ifreq" is composed of various union members, callers
71  * should pay special attention to interpret the value.
72  * (.e.g. little/big endian difference in the structure.)
73  */
74 struct  ifreq ifr;
75
76 char    name[IFNAMSIZ];
77 int     newaddr = 1;
78 int     verbose;
79 int     supmedia = 0;
80 int     printkeys = 0;          /* Print keying material for interfaces. */
81 int     printifname = 0;        /* Print the name of the created interface. */
82 int     exit_code = 0;
83 char    *f_inet, *f_inet6, *f_ether, *f_addr;   /* Formatter strings */
84
85 static  bool group_member(const char *ifname, const char *match,
86                           const char *nomatch);
87 static  int ifconfig(int argc, char *const *argv, int iscreate,
88                      const struct afswtch *afp);
89 static  void status(const struct afswtch *afp, const struct sockaddr_dl *sdl,
90                     struct ifaddrs *ifa);
91 static  void tunnel_status(int s);
92 static  void usage(void) __dead2;
93
94 static int getifflags(const char *ifname, int us);
95 static struct afswtch *af_getbyname(const char *name);
96 static struct afswtch *af_getbyfamily(int af);
97 static void af_other_status(int);
98 static void printifnamemaybe(void);
99 static void freeformat(void);
100 static void setformat(char *input);
101
102 static struct option *opts = NULL;
103 static char *descr = NULL;
104 static size_t descrlen = 64;
105 static int clearaddr;
106 static int doalias;
107 static int noload;
108 static int setaddr;
109 static int setmask;
110
111 struct ifa_order_elt {
112         int             if_order;
113         int             af_orders[255];
114         struct ifaddrs  *ifa;
115         TAILQ_ENTRY(ifa_order_elt) link;
116 };
117 TAILQ_HEAD(ifa_queue, ifa_order_elt);
118
119 static int calcorders(struct ifaddrs *ifa, struct ifa_queue *q);
120 static int cmpifaddrs(struct ifaddrs *a, struct ifaddrs *b,
121                       struct ifa_queue *q);
122 typedef int (*ifaddrs_cmp)(struct ifaddrs *, struct ifaddrs *, struct ifa_queue *);
123 static struct ifaddrs *sortifaddrs(struct ifaddrs *list, ifaddrs_cmp compare,
124                                    struct ifa_queue *q);
125
126
127 void
128 opt_register(struct option *p)
129 {
130         p->next = opts;
131         opts = p;
132 }
133
134 static void
135 usage(void)
136 {
137         char options[1024];
138         struct option *p;
139
140         /* XXX not right but close enough for now */
141         options[0] = '\0';
142         for (p = opts; p != NULL; p = p->next) {
143                 strlcat(options, p->opt_usage, sizeof(options));
144                 strlcat(options, " ", sizeof(options));
145         }
146
147         fprintf(stderr,
148         "usage: ifconfig %s[-n] [-f type:format] interface address_family\n"
149         "                [address [dest_address]] [parameters]\n"
150         "       ifconfig [-n] interface create\n"
151         "       ifconfig [-n] interface destroy\n"
152         "       ifconfig -a %s[-G nogroup] [-d | -u] [-m] [-v] [address_family]\n"
153         "       ifconfig -l [-d | -u] [address_family]\n"
154         "       ifconfig %s[-d | -u] [-m] [-v]\n",
155                 options, options, options);
156         exit(1);
157 }
158
159 static int
160 calcorders(struct ifaddrs *ifa, struct ifa_queue *q)
161 {
162         struct ifaddrs *prev;
163         struct ifa_order_elt *cur;
164         unsigned int ord, af, ifa_ord;
165
166         prev = NULL;
167         cur = NULL;
168         ord = 0;
169         ifa_ord = 0;
170
171         while (ifa != NULL) {
172                 if (prev == NULL ||
173                     strcmp(ifa->ifa_name, prev->ifa_name) != 0) {
174                         cur = calloc(1, sizeof(*cur));
175                         if (cur == NULL)
176                                 return (-1);
177
178                         TAILQ_INSERT_TAIL(q, cur, link);
179                         cur->if_order = ifa_ord++;
180                         cur->ifa = ifa;
181                         ord = 0;
182                 }
183
184                 if (ifa->ifa_addr) {
185                         af = ifa->ifa_addr->sa_family;
186
187                         if (af < nitems(cur->af_orders) &&
188                             cur->af_orders[af] == 0)
189                                 cur->af_orders[af] = ++ord;
190                 }
191
192                 prev = ifa;
193                 ifa = ifa->ifa_next;
194         }
195
196         return (0);
197 }
198
199 static int
200 cmpifaddrs(struct ifaddrs *a, struct ifaddrs *b, struct ifa_queue *q)
201 {
202         struct ifa_order_elt *cur, *e1, *e2;
203         unsigned int af1, af2;
204
205         e1 = e2 = NULL;
206
207         if (strcmp(a->ifa_name, b->ifa_name) != 0) {
208                 TAILQ_FOREACH(cur, q, link) {
209                         if (e1 != NULL && e2 != NULL)
210                                 break;
211
212                         if (strcmp(cur->ifa->ifa_name, a->ifa_name) == 0)
213                                 e1 = cur;
214                         else if (strcmp(cur->ifa->ifa_name, b->ifa_name) == 0)
215                                 e2 = cur;
216                 }
217
218                 if (e1 == NULL || e2 == NULL)
219                         return (0);
220                 else
221                         return (e1->if_order - e2->if_order);
222
223         } else if (a->ifa_addr != NULL && b->ifa_addr != NULL) {
224                 TAILQ_FOREACH(cur, q, link) {
225                         if (strcmp(cur->ifa->ifa_name, a->ifa_name) == 0) {
226                                 e1 = cur;
227                                 break;
228                         }
229                 }
230
231                 if (e1 == NULL)
232                         return (0);
233
234                 af1 = a->ifa_addr->sa_family;
235                 af2 = b->ifa_addr->sa_family;
236
237                 if (af1 < nitems(e1->af_orders) && af2 < nitems(e1->af_orders))
238                         return (e1->af_orders[af1] - e1->af_orders[af2]);
239         }
240
241         return (0);
242 }
243
244 static struct ifaddrs *
245 sortifaddrs(struct ifaddrs *list, ifaddrs_cmp compare, struct ifa_queue *q)
246 {
247         struct ifaddrs *right, *temp, *last, *result, *next, *tail;
248
249         right = temp = last = list;
250         result = next = tail = NULL;
251
252         if (list == NULL || list->ifa_next == NULL)
253                 return (list);
254
255         while (temp != NULL && temp->ifa_next != NULL) {
256                 last = right;
257                 right = right->ifa_next;
258                 temp = temp->ifa_next->ifa_next;
259         }
260
261         last->ifa_next = NULL;
262
263         list = sortifaddrs(list, compare, q);
264         right = sortifaddrs(right, compare, q);
265
266         while (list != NULL || right != NULL) {
267                 if (right == NULL) {
268                         next = list;
269                         list = list->ifa_next;
270                 } else if (list == NULL) {
271                         next = right;
272                         right = right->ifa_next;
273                 } else if (compare(list, right, q) <= 0) {
274                         next = list;
275                         list = list->ifa_next;
276                 } else {
277                         next = right;
278                         right = right->ifa_next;
279                 }
280
281                 if (result == NULL)
282                         result = next;
283                 else
284                         tail->ifa_next = next;
285
286                 tail = next;
287         }
288
289         return (result);
290 }
291
292 static void
293 printifnamemaybe(void)
294 {
295         if (printifname)
296                 printf("%s\n", name);
297 }
298
299 static void
300 freeformat(void)
301 {
302         if (f_inet != NULL)
303                 free(f_inet);
304         if (f_inet6 != NULL)
305                 free(f_inet6);
306         if (f_ether != NULL)
307                 free(f_ether);
308         if (f_addr != NULL)
309                 free(f_addr);
310 }
311
312 static void
313 setformat(char *input)
314 {
315         char *formatstr, *category, *modifier;
316         char **fp;
317
318         formatstr = strdup(input);
319         if (formatstr == NULL)
320                 err(1, "no memory to set format");
321
322         while ((category = strsep(&formatstr, ",")) != NULL) {
323                 modifier = strchr(category, ':');
324                 if (modifier == NULL || modifier[1] == '\0') {
325                         warnx("skip invalid format specification: %s\n",
326                               category);
327                         continue;
328                 }
329
330                 modifier[0] = '\0';
331                 modifier++;
332
333                 fp = NULL;
334                 if (strcmp(category, "addr") == 0)
335                         fp = &f_addr;
336                 else if (strcmp(category, "ether") == 0)
337                         fp = &f_ether;
338                 else if (strcmp(category, "inet") == 0)
339                         fp = &f_inet;
340                 else if (strcmp(category, "inet6") == 0)
341                         fp = &f_inet6;
342
343                 if (fp != NULL) {
344                         *fp = strdup(modifier);
345                         if (*fp == NULL)
346                                 err(1, "strdup");
347                 }
348         }
349
350         free(formatstr);
351 }
352
353
354 int
355 main(int argc, char *argv[])
356 {
357         int c, all, namesonly, downonly, uponly;
358         int ifindex, flags;
359         const struct afswtch *afp = NULL;
360         const struct sockaddr_dl *sdl;
361         const char *ifname, *matchgroup, *nogroup;
362         struct ifa_order_elt *cur, *tmp;
363         struct ifa_queue q = TAILQ_HEAD_INITIALIZER(q);
364         struct ifaddrs *ifap, *sifap, *ifa;
365         struct ifreq paifr;
366         struct option *p;
367         size_t iflen;
368         char *envformat, *cp;
369         char options[1024];
370
371         all = downonly = uponly = namesonly = verbose = noload = 0;
372         f_inet = f_inet6 = f_ether = f_addr = NULL;
373         matchgroup = nogroup = NULL;
374
375         /*
376          * Ensure we print interface name when expected to,
377          * even if we terminate early due to error.
378          */
379         atexit(printifnamemaybe);
380
381         envformat = getenv("IFCONFIG_FORMAT");
382         if (envformat != NULL)
383                 setformat(envformat);
384
385         /* Parse leading line options */
386         strlcpy(options, "adf:G:klmnuv", sizeof(options));
387         for (p = opts; p != NULL; p = p->next)
388                 strlcat(options, p->opt, sizeof(options));
389         while ((c = getopt(argc, argv, options)) != -1) {
390                 switch (c) {
391                 case 'a':       /* scan all interfaces */
392                         all++;
393                         break;
394                 case 'd':       /* restrict scan to "down" interfaces */
395                         downonly++;
396                         break;
397                 case 'f':
398                         setformat(optarg);
399                         break;
400                 case 'G':
401                         if (!all)
402                                 usage();
403                         nogroup = optarg;
404                         break;
405                 case 'k':
406                         printkeys++;
407                         break;
408                 case 'l':       /* scan interface names only */
409                         namesonly++;
410                         break;
411                 case 'm':       /* show media choices in status */
412                         supmedia = 1;
413                         break;
414                 case 'n':       /* suppress module loading */
415                         noload++;
416                         break;
417                 case 'u':       /* restrict scan to "up" interfaces */
418                         uponly++;
419                         break;
420                 case 'v':
421                         verbose++;
422                         break;
423                 case 'g':
424                         if (all) {
425                                 matchgroup = optarg;
426                                 break;
427                         }
428                         /* FALLTHROUGH (for ifgroup) */
429                 default:
430                         for (p = opts; p != NULL; p = p->next)
431                                 if (p->opt[0] == c) {
432                                         p->cb(optarg);
433                                         break;
434                                 }
435                         if (p == NULL)
436                                 usage();
437                         break;
438                 }
439         }
440         argc -= optind;
441         argv += optind;
442
443         /* -l cannot be used with -a or -m */
444         if (namesonly && (all || supmedia))
445                 usage();
446
447         /* nonsense.. */
448         if (uponly && downonly)
449                 usage();
450
451         /* no arguments is equivalent to '-a' */
452         if (!namesonly && argc < 1)
453                 all = 1;
454
455         /* -a and -l allow an address family arg to limit the output */
456         if (all || namesonly) {
457                 if (argc > 1)
458                         usage();
459
460                 ifname = NULL;
461                 ifindex = 0;
462                 if (argc == 1) {
463                         afp = af_getbyname(*argv);
464                         if (afp == NULL)
465                                 usage();
466                         if (afp->af_name != NULL)
467                                 argc--, argv++;
468                         /* leave with afp non-zero */
469                 }
470         } else {
471                 /* not listing, need an argument */
472                 if (argc < 1)
473                         usage();
474
475                 ifname = *argv;
476                 argc--, argv++;
477
478                 /* check and maybe load support for this interface */
479                 ifmaybeload(ifname);
480
481                 ifindex = if_nametoindex(ifname);
482                 if (ifindex == 0) {
483                         /*
484                          * NOTE:  We must special-case the `create' command
485                          * right here as we would otherwise fail when trying
486                          * to find the interface.
487                          */
488                         if (argc > 0 && (strcmp(argv[0], "create") == 0 ||
489                             strcmp(argv[0], "plumb") == 0)) {
490                                 iflen = strlcpy(name, ifname, sizeof(name));
491                                 if (iflen >= sizeof(name))
492                                         errx(1, "%s: cloning name too long",
493                                             ifname);
494                                 ifconfig(argc, argv, 1, NULL);
495                                 exit(exit_code);
496                         }
497                         errx(1, "interface %s does not exist", ifname);
498                 } else {
499                         /*
500                          * Do not allow to use `create` command as hostname
501                          * if address family is not specified.
502                          */
503                         if (argc > 0 && (strcmp(argv[0], "create") == 0 ||
504                             strcmp(argv[0], "plumb") == 0)) {
505                                 if (argc == 1)
506                                         errx(1, "interface %s already exists",
507                                             ifname);
508                                 argc--, argv++;
509                         }
510                 }
511         }
512
513         /* Check for address family */
514         if (argc > 0) {
515                 afp = af_getbyname(*argv);
516                 if (afp != NULL)
517                         argc--, argv++;
518         }
519
520         /*
521          * Check for a requested configuration action on a single interface,
522          * which doesn't require building, sorting, and searching the entire
523          * system address list.
524          */
525         if (argc > 0 && ifname != NULL) {
526                 iflen = strlcpy(name, ifname, sizeof(name));
527                 if (iflen >= sizeof(name))
528                         errx(1, "%s: cloning name too long", ifname);
529
530                 flags = getifflags(name, -1);
531                 if (!((downonly && (flags & IFF_UP) != 0) ||
532                       (uponly && (flags & IFF_UP) == 0))) {
533                         ifconfig(argc, argv, 0, afp);
534                 }
535
536                 exit(exit_code);
537         }
538
539         if (getifaddrs(&ifap) != 0)
540                 err(1, "getifaddrs");
541         if (calcorders(ifap, &q) != 0)
542                 err(1, "calcorders");
543         sifap = sortifaddrs(ifap, cmpifaddrs, &q);
544
545         TAILQ_FOREACH_MUTABLE(cur, &q, link, tmp)
546                 free(cur);
547
548         cp = NULL;
549         ifindex = 0;
550         for (ifa = sifap; ifa != NULL; ifa = ifa->ifa_next) {
551                 memset(&paifr, 0, sizeof(paifr));
552                 strlcpy(paifr.ifr_name, ifa->ifa_name, sizeof(paifr.ifr_name));
553                 if (sizeof(paifr.ifr_addr) >= ifa->ifa_addr->sa_len) {
554                         memcpy(&paifr.ifr_addr, ifa->ifa_addr,
555                                ifa->ifa_addr->sa_len);
556                 }
557
558                 if (ifname != NULL && strcmp(ifname, ifa->ifa_name) != 0)
559                         continue;
560                 if (cp != NULL && strcmp(cp, ifa->ifa_name) == 0)
561                         continue;
562                 iflen = strlcpy(name, ifa->ifa_name, sizeof(name));
563                 if (iflen >= sizeof(name)) {
564                         warnx("%s: interface name too long, skipping",
565                               ifa->ifa_name);
566                         continue;
567                 }
568                 cp = ifa->ifa_name;
569
570                 if (downonly && (ifa->ifa_flags & IFF_UP) != 0)
571                         continue;
572                 if (uponly && (ifa->ifa_flags & IFF_UP) == 0)
573                         continue;
574                 if (!group_member(ifa->ifa_name, matchgroup, nogroup))
575                         continue;
576
577                 if (ifa->ifa_addr->sa_family == AF_LINK)
578                         sdl = (const struct sockaddr_dl *)ifa->ifa_addr;
579                 else
580                         sdl = NULL;
581
582                 /* Are we just listing the interfaces? */
583                 if (namesonly) {
584                         if (afp == NULL ||
585                             afp->af_af != AF_LINK ||
586                             (sdl != NULL && sdl->sdl_type == IFT_ETHER)) {
587                                 printf("%s%s", (ifindex > 0 ? " " : ""), name);
588                                 ifindex++;
589                         }
590                         continue;
591                 }
592
593                 if (argc > 0)
594                         ifconfig(argc, argv, 0, afp);
595                 else
596                         status(afp, sdl, ifa);
597         }
598
599         if (namesonly)
600                 putchar('\n');
601
602         freeifaddrs(ifap);
603         freeformat();
604
605         return (exit_code);
606 }
607
608
609 /*
610  * Returns true if an interface should be listed because any its groups
611  * matches shell pattern "match" and none of groups matches pattern "nomatch".
612  * If any pattern is NULL, corresponding condition is skipped.
613  */
614 static bool
615 group_member(const char *ifname, const char *match, const char *nomatch)
616 {
617         static int               sock = -1;
618
619         struct ifgroupreq        ifgr;
620         struct ifg_req          *ifg;
621         size_t                   len;
622         bool                     matched, nomatched;
623
624         /* Sanity checks. */
625         if (match == NULL && nomatch == NULL)
626                 return (true);
627         if (ifname == NULL)
628                 return (false);
629
630         memset(&ifgr, 0, sizeof(ifgr));
631         strlcpy(ifgr.ifgr_name, ifname, sizeof(ifgr.ifgr_name));
632
633         /* The socket is opened once. Let _exit() close it. */
634         if (sock == -1) {
635                 sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
636                 if (sock == -1)
637                         errx(1, "%s: socket(AF_LOCAL,SOCK_DGRAM)", __func__);
638         }
639
640         /* Determine amount of memory for the list of groups. */
641         if (ioctl(sock, SIOCGIFGROUP, &ifgr) == -1) {
642                 if (errno == EINVAL || errno == ENOTTY)
643                         return (false);
644                 else
645                         errx(1, "%s: SIOCGIFGROUP", __func__);
646         }
647
648         /* Obtain the list of groups. */
649         len = ifgr.ifgr_len;
650         ifgr.ifgr_groups = calloc(1, len);
651         if (ifgr.ifgr_groups == NULL)
652                 errx(1, "%s: no memory", __func__);
653         if (ioctl(sock, SIOCGIFGROUP, &ifgr) == -1)
654                 errx(1, "%s: SIOCGIFGROUP", __func__);
655
656         /* Perform matching. */
657         matched = false;
658         nomatched = true;
659         for (ifg = ifgr.ifgr_groups; ifg && len >= sizeof(*ifg); ifg++) {
660                 len -= sizeof(struct ifg_req);
661                 if (match)
662                         matched |= !fnmatch(match, ifg->ifgrq_group, 0);
663                 if (nomatch)
664                         nomatched &= fnmatch(nomatch, ifg->ifgrq_group, 0);
665         }
666
667         if (match && !nomatch)
668                 return (matched);
669         if (!match && nomatch)
670                 return (nomatched);
671         return (matched && nomatched);
672 }
673
674
675 static struct afswtch *afs = NULL;
676
677 void
678 af_register(struct afswtch *p)
679 {
680         p->af_next = afs;
681         afs = p;
682 }
683
684 static struct afswtch *
685 af_getbyname(const char *name)
686 {
687         struct afswtch *afp;
688
689         for (afp = afs; afp !=  NULL; afp = afp->af_next)
690                 if (strcmp(afp->af_name, name) == 0)
691                         return afp;
692         return NULL;
693 }
694
695 static struct afswtch *
696 af_getbyfamily(int af)
697 {
698         struct afswtch *afp;
699
700         for (afp = afs; afp != NULL; afp = afp->af_next)
701                 if (afp->af_af == af)
702                         return afp;
703         return NULL;
704 }
705
706 static void
707 af_other_status(int s)
708 {
709         struct afswtch *afp;
710         uint8_t afmask[howmany(AF_MAX, NBBY)];
711
712         memset(afmask, 0, sizeof(afmask));
713         for (afp = afs; afp != NULL; afp = afp->af_next) {
714                 if (afp->af_other_status == NULL)
715                         continue;
716                 if (afp->af_af != AF_UNSPEC && isset(afmask, afp->af_af))
717                         continue;
718                 afp->af_other_status(s);
719                 setbit(afmask, afp->af_af);
720         }
721 }
722
723 static void
724 af_all_tunnel_status(int s)
725 {
726         struct afswtch *afp;
727         uint8_t afmask[howmany(AF_MAX, NBBY)];
728
729         memset(afmask, 0, sizeof(afmask));
730         for (afp = afs; afp != NULL; afp = afp->af_next) {
731                 if (afp->af_status_tunnel == NULL)
732                         continue;
733                 if (afp->af_af != AF_UNSPEC && isset(afmask, afp->af_af))
734                         continue;
735                 afp->af_status_tunnel(s);
736                 setbit(afmask, afp->af_af);
737         }
738 }
739
740 static struct cmd *cmds = NULL;
741
742 void
743 cmd_register(struct cmd *p)
744 {
745         p->c_next = cmds;
746         cmds = p;
747 }
748
749 static const struct cmd *
750 cmd_lookup(const char *name, int iscreate)
751 {
752         const struct cmd *p;
753
754         for (p = cmds; p != NULL; p = p->c_next) {
755                 if (strcmp(name, p->c_name) == 0) {
756                         if (iscreate) {
757                                 if (p->c_iscloneop)
758                                         return p;
759                         } else {
760                                 if (!p->c_iscloneop)
761                                         return p;
762                         }
763                 }
764         }
765
766         return NULL;
767 }
768
769 struct callback {
770         callback_func *cb_func;
771         void    *cb_arg;
772         struct callback *cb_next;
773 };
774 static struct callback *callbacks = NULL;
775
776 void
777 callback_register(callback_func *func, void *arg)
778 {
779         struct callback *cb;
780
781         cb = malloc(sizeof(struct callback));
782         if (cb == NULL)
783                 errx(1, "unable to allocate memory for callback");
784         cb->cb_func = func;
785         cb->cb_arg = arg;
786         cb->cb_next = callbacks;
787         callbacks = cb;
788 }
789
790 /* specially-handled commands */
791 static void setifaddr(const char *, int, int, const struct afswtch *);
792 static const struct cmd setifaddr_cmd = DEF_CMD("ifaddr", 0, setifaddr);
793
794 static void setifdstaddr(const char *, int, int, const struct afswtch *);
795 static const struct cmd setifdstaddr_cmd =
796         DEF_CMD("ifdstaddr", 0, setifdstaddr);
797
798 static int
799 ifconfig(int argc, char *const *argv, int iscreate,
800          const struct afswtch *uafp)
801 {
802         const struct afswtch *afp, *nafp;
803         const struct cmd *p;
804         struct callback *cb;
805         int s;
806
807         strlcpy(ifr.ifr_name, name, sizeof ifr.ifr_name);
808         afp = uafp != NULL ? uafp : af_getbyname("inet");
809 top:
810         ifr.ifr_addr.sa_family =
811                 afp->af_af == AF_LINK || afp->af_af == AF_UNSPEC ?
812                 AF_LOCAL : afp->af_af;
813
814         if ((s = socket(ifr.ifr_addr.sa_family, SOCK_DGRAM, 0)) < 0 &&
815             (uafp != NULL || errno != EAFNOSUPPORT ||
816              (s = socket(AF_LOCAL, SOCK_DGRAM, 0)) < 0))
817                 err(1, "socket(family %u,SOCK_DGRAM)", ifr.ifr_addr.sa_family);
818
819         while (argc > 0) {
820                 p = cmd_lookup(*argv, iscreate);
821                 if (iscreate && p == NULL) {
822                         /*
823                          * Push the clone create callback so the new
824                          * device is created and can be used for any
825                          * remaining arguments.
826                          */
827                         cb = callbacks;
828                         if (cb == NULL)
829                                 errx(1, "internal error, no callback");
830                         callbacks = cb->cb_next;
831                         cb->cb_func(s, cb->cb_arg);
832                         iscreate = 0;
833
834                         /*
835                          * After cloning, make sure we have an up-to-date name
836                          * in ifr_name.
837                          */
838                         strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
839
840                         /*
841                          * Handle any address family spec that
842                          * immediately follows and potentially
843                          * recreate the socket.
844                          */
845                         nafp = af_getbyname(*argv);
846                         if (nafp != NULL) {
847                                 argc--, argv++;
848                                 if (nafp != afp) {
849                                         close(s);
850                                         afp = nafp;
851                                         goto top;
852                                 }
853                         }
854
855                         /* Look for a normal parameter. */
856                         continue;
857                 }
858                 if (p == NULL) {
859                         /*
860                          * Not a recognized command, choose between setting
861                          * the interface address and the dst address.
862                          */
863                         p = (setaddr ? &setifdstaddr_cmd : &setifaddr_cmd);
864                 }
865                 if (p->c_u.c_func || p->c_u.c_func2) {
866                         if (p->c_parameter == NEXTARG) {
867                                 if (argv[1] == NULL)
868                                         errx(1, "'%s' requires argument",
869                                             p->c_name);
870                                 p->c_u.c_func(argv[1], 0, s, afp);
871                                 argc--, argv++;
872                         } else if (p->c_parameter == OPTARG) {
873                                 p->c_u.c_func(argv[1], 0, s, afp);
874                                 if (argv[1] != NULL)
875                                         argc--, argv++;
876                         } else if (p->c_parameter == NEXTARG2) {
877                                 if (argc < 3)
878                                         errx(1, "'%s' requires 2 arguments",
879                                             p->c_name);
880                                 p->c_u.c_func2(argv[1], argv[2], s, afp);
881                                 argc -= 2, argv += 2;
882                         } else
883                                 p->c_u.c_func(*argv, p->c_parameter, s, afp);
884                 }
885                 argc--, argv++;
886         }
887
888         /*
889          * Do any post argument processing required by the address family.
890          */
891         if (afp->af_postproc != NULL)
892                 afp->af_postproc(s, afp);
893         /*
894          * Do deferred callbacks registered while processing
895          * command-line arguments.
896          */
897         for (cb = callbacks; cb != NULL; cb = cb->cb_next)
898                 cb->cb_func(s, cb->cb_arg);
899         /*
900          * Do deferred operations.
901          */
902         if (clearaddr) {
903                 if (afp->af_ridreq == NULL || afp->af_difaddr == 0) {
904                         warnx("interface %s cannot change %s addresses!",
905                               name, afp->af_name);
906                         clearaddr = 0;
907                 }
908         }
909         if (clearaddr) {
910                 strlcpy(afp->af_ridreq, name, sizeof ifr.ifr_name);
911                 if (ioctl(s, afp->af_difaddr, afp->af_ridreq) < 0) {
912                         if (errno == EADDRNOTAVAIL && doalias >= 0) {
913                                 /* means no previous address for interface */
914                         } else
915                                 Perror("ioctl (SIOCDIFADDR)");
916                 }
917         }
918         if (newaddr) {
919                 if (afp->af_addreq == NULL || afp->af_aifaddr == 0) {
920                         warnx("interface %s cannot change %s addresses!",
921                               name, afp->af_name);
922                         newaddr = 0;
923                 }
924         }
925         if (newaddr && (setaddr || setmask)) {
926                 strlcpy(afp->af_addreq, name, sizeof ifr.ifr_name);
927                 if (ioctl(s, afp->af_aifaddr, afp->af_addreq) < 0)
928                         Perror("ioctl (SIOCAIFADDR)");
929         }
930
931         close(s);
932         return (0);
933 }
934
935 static void
936 setifaddr(const char *addr, int dummy __unused, int s __unused,
937           const struct afswtch *afp)
938 {
939         if (afp->af_getaddr == NULL)
940                 return;
941         /*
942          * Delay the ioctl to set the interface addr until flags are all set.
943          * The address interpretation may depend on the flags,
944          * and the flags may change when the address is set.
945          */
946         setaddr++;
947         if (doalias == 0 && afp->af_af != AF_LINK)
948                 clearaddr = 1;
949         afp->af_getaddr(addr, (doalias >= 0 ? ADDR : RIDADDR));
950 }
951
952 static void
953 settunnel(const char *src, const char *dst, int s, const struct afswtch *afp)
954 {
955         struct addrinfo *srcres, *dstres;
956         int ecode;
957
958         if (afp->af_settunnel == NULL) {
959                 warn("address family %s does not support tunnel setup",
960                         afp->af_name);
961                 return;
962         }
963
964         if ((ecode = getaddrinfo(src, NULL, NULL, &srcres)) != 0)
965                 errx(1, "error in parsing address string: %s",
966                     gai_strerror(ecode));
967
968         if ((ecode = getaddrinfo(dst, NULL, NULL, &dstres)) != 0)
969                 errx(1, "error in parsing address string: %s",
970                     gai_strerror(ecode));
971
972         if (srcres->ai_addr->sa_family != dstres->ai_addr->sa_family)
973                 errx(1,
974                     "source and destination address families do not match");
975
976         afp->af_settunnel(s, srcres, dstres);
977
978         freeaddrinfo(srcres);
979         freeaddrinfo(dstres);
980 }
981
982 static void
983 deletetunnel(const char *arg __unused, int dummy __unused, int s,
984              const struct afswtch *afp __unused)
985 {
986         if (ioctl(s, SIOCDIFPHYADDR, &ifr) < 0)
987                 err(1, "SIOCDIFPHYADDR");
988 }
989
990 static void
991 setifnetmask(const char *addr, int dummy __unused, int s __unused,
992              const struct afswtch *afp)
993 {
994         if (afp->af_getaddr != NULL) {
995                 setmask++;
996                 afp->af_getaddr(addr, MASK);
997         }
998 }
999
1000 static void
1001 setifbroadaddr(const char *addr, int dummy __unused, int s __unused,
1002                const struct afswtch *afp)
1003 {
1004         if (afp->af_getaddr != NULL)
1005                 afp->af_getaddr(addr, DSTADDR);
1006 }
1007
1008 static void
1009 notealias(const char *addr __unused, int param, int s __unused,
1010           const struct afswtch *afp)
1011 {
1012 #define rqtosa(x) (&(((struct ifreq *)(afp->x))->ifr_addr))
1013         if (setaddr && doalias == 0 && param < 0)
1014                 if (afp->af_addreq != NULL && afp->af_ridreq != NULL)
1015                         bcopy(rqtosa(af_addreq), rqtosa(af_ridreq),
1016                               rqtosa(af_addreq)->sa_len);
1017         doalias = param;
1018         if (param < 0) {
1019                 clearaddr = 1;
1020                 newaddr = 0;
1021         } else {
1022                 clearaddr = 0;
1023         }
1024 #undef rqtosa
1025 }
1026
1027 static void
1028 setifdstaddr(const char *addr, int dummy __unused, int s __unused,
1029              const struct afswtch *afp __unused)
1030 {
1031         if (afp->af_getaddr != NULL)
1032                 afp->af_getaddr(addr, DSTADDR);
1033 }
1034
1035 static int
1036 getifflags(const char *ifname, int us)
1037 {
1038         struct ifreq my_ifr;
1039         int s;
1040
1041         memset(&my_ifr, 0, sizeof(struct ifreq));
1042         strlcpy(my_ifr.ifr_name, ifname, sizeof(my_ifr.ifr_name));
1043
1044         s = us;
1045         if (us < 0) {
1046                 if ((s = socket(AF_LOCAL, SOCK_DGRAM, 0)) < 0)
1047                         err(1, "socket(family AF_LOCAL,SOCK_DGRAM)");
1048         }
1049
1050         if (ioctl(s, SIOCGIFFLAGS, &my_ifr) < 0)
1051                 Perror("ioctl (SIOCGIFFLAGS)");
1052
1053         if (us < 0)
1054                 close(s);
1055
1056         return ((my_ifr.ifr_flags & 0xffff) | (my_ifr.ifr_flagshigh << 16));
1057 }
1058
1059 static void
1060 setifflags(const char *vname, int value, int s,
1061            const struct afswtch *afp __unused)
1062 {
1063         struct ifreq my_ifr;
1064         int flags;
1065
1066         flags = getifflags(name, s);
1067         if (value < 0) {
1068                 value = -value;
1069                 flags &= ~value;
1070         } else {
1071                 flags |= value;
1072         }
1073
1074         memset(&my_ifr, 0, sizeof(struct ifreq));
1075         strlcpy(my_ifr.ifr_name, name, sizeof(my_ifr.ifr_name));
1076         my_ifr.ifr_flags = flags & 0xffff;
1077         my_ifr.ifr_flagshigh = flags >> 16;
1078
1079         if (ioctl(s, SIOCSIFFLAGS, &my_ifr) < 0)
1080                 Perror(vname);
1081 }
1082
1083 void
1084 setifcap(const char *vname, int value, int s,
1085          const struct afswtch *afp __unused)
1086 {
1087         int flags;
1088
1089         if (ioctl(s, SIOCGIFCAP, &ifr) < 0)
1090                 Perror("ioctl (SIOCGIFCAP)");
1091
1092         flags = ifr.ifr_curcap;
1093         if (value < 0) {
1094                 value = -value;
1095                 flags &= ~value;
1096         } else {
1097                 flags |= value;
1098         }
1099         ifr.ifr_reqcap = flags;
1100         if (ioctl(s, SIOCSIFCAP, &ifr) < 0)
1101                 Perror(vname);
1102 }
1103
1104 static void
1105 setifmetric(const char *val, int dummy __unused, int s,
1106             const struct afswtch *afp __unused)
1107 {
1108         strlcpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
1109         ifr.ifr_metric = atoi(val);
1110         if (ioctl(s, SIOCSIFMETRIC, &ifr) < 0)
1111                 err(1, "ioctl SIOCSIFMETRIC (set metric)");
1112 }
1113
1114 static void
1115 setifmtu(const char *val, int dummy __unused, int s,
1116          const struct afswtch *afp __unused)
1117 {
1118         strlcpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
1119         ifr.ifr_mtu = atoi(val);
1120         if (ioctl(s, SIOCSIFMTU, &ifr) < 0)
1121                 err(1, "ioctl SIOCSIFMTU (set mtu)");
1122 }
1123
1124 static void
1125 setiftsolen(const char *val, int dummy __unused, int s,
1126             const struct afswtch *afp __unused)
1127 {
1128         strlcpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
1129         ifr.ifr_tsolen = atoi(val);
1130         if (ioctl(s, SIOCSIFTSOLEN, &ifr) < 0)
1131                 err(1, "ioctl SIOCSIFTSOLEN (set tsolen)");
1132 }
1133
1134 static void
1135 setifname(const char *val, int dummy __unused, int s,
1136           const struct afswtch *afp __unused)
1137 {
1138         char *newname;
1139
1140         strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
1141
1142         newname = strdup(val);
1143         if (newname == NULL)
1144                 err(1, "no memory to set ifname");
1145         ifr.ifr_data = newname;
1146         if (ioctl(s, SIOCSIFNAME, &ifr) < 0) {
1147                 free(newname);
1148                 err(1, "ioctl SIOCSIFNAME (set name)");
1149         }
1150         printifname = 1;
1151         strlcpy(name, newname, sizeof(name));
1152         free(newname);
1153 }
1154
1155 static void
1156 setifpollcpu(const char *val __unused, int dummy __unused, int s,
1157              const struct afswtch *afp)
1158 {
1159         warnx("pollcpu is deprecated, use polling or npolling instead");
1160         setifflags("npolling", IFF_NPOLLING, s, afp);
1161 }
1162
1163 static void
1164 setifdescr(const char *val, int dummy __unused, int s,
1165            const struct afswtch *afp __unused)
1166 {
1167         char *newdescr;
1168
1169         ifr.ifr_buffer.length = strlen(val) + 1;
1170         if (ifr.ifr_buffer.length == 1) {
1171                 ifr.ifr_buffer.buffer = newdescr = NULL;
1172                 ifr.ifr_buffer.length = 0;
1173         } else {
1174                 newdescr = strdup(val);
1175                 ifr.ifr_buffer.buffer = newdescr;
1176                 if (newdescr == NULL) {
1177                         warn("no memory to set ifdescr");
1178                         return;
1179                 }
1180         }
1181
1182         if (ioctl(s, SIOCSIFDESCR, &ifr) < 0)
1183                 warn("ioctl (set descr)");
1184
1185         free(newdescr);
1186 }
1187
1188 static void
1189 unsetifdescr(const char *val __unused, int dummy __unused, int s,
1190              const struct afswtch *afp __unused)
1191 {
1192         setifdescr("", 0, s, 0);
1193 }
1194
1195 #define IFFBITS \
1196 "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6SMART\7RUNNING" \
1197 "\10NOARP\11PROMISC\12ALLMULTI\14SIMPLEX\15LINK0\16LINK1\17LINK2" \
1198 "\20MULTICAST\22PPROMISC\23MONITOR\24STATICARP\25NPOLLING\26IDIRECT"
1199
1200 #define IFCAPBITS \
1201 "\020\1RXCSUM\2TXCSUM\3NETCONS\4VLAN_MTU\5VLAN_HWTAGGING\6JUMBO_MTU\7RSS" \
1202 "\10VLAN_HWCSUM\11TSO"
1203
1204 /*
1205  * Print the status of the interface.  If an address family was
1206  * specified, show only it; otherwise, show them all.
1207  */
1208 static void
1209 status(const struct afswtch *afp, const struct sockaddr_dl *sdl __unused,
1210        struct ifaddrs *ifa)
1211 {
1212         struct ifaddrs *ift;
1213         int allfamilies, s;
1214         struct ifstat ifs;
1215
1216         if (afp == NULL) {
1217                 allfamilies = 1;
1218                 ifr.ifr_addr.sa_family = AF_LOCAL;
1219         } else {
1220                 allfamilies = 0;
1221                 ifr.ifr_addr.sa_family =
1222                     afp->af_af == AF_LINK ? AF_LOCAL : afp->af_af;
1223         }
1224         strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
1225
1226         s = socket(ifr.ifr_addr.sa_family, SOCK_DGRAM, 0);
1227         if (s < 0)
1228                 err(1, "socket(family %u,SOCK_DGRAM)", ifr.ifr_addr.sa_family);
1229
1230         printf("%s: ", name);
1231         printb("flags", ifa->ifa_flags, IFFBITS);
1232         if (ioctl(s, SIOCGIFMETRIC, &ifr) != -1)
1233                 printf(" metric %d", ifr.ifr_metric);
1234         if (ioctl(s, SIOCGIFMTU, &ifr) != -1)
1235                 printf(" mtu %d", ifr.ifr_mtu);
1236         putchar('\n');
1237
1238         for (;;) {
1239                 if ((descr = reallocf(descr, descrlen)) != NULL) {
1240                         ifr.ifr_buffer.buffer = descr;
1241                         ifr.ifr_buffer.length = descrlen;
1242                         if (ioctl(s, SIOCGIFDESCR, &ifr) == 0) {
1243                                 if (ifr.ifr_buffer.length > 1)
1244                                         printf("\tdescription: %s\n", descr);
1245                         } else if (errno == ENOMSG) {
1246                                 break;
1247                         } else if (errno == ENAMETOOLONG) {
1248                                 descrlen = ifr.ifr_buffer.length;
1249                                 continue;
1250                         } else {
1251                                 warn("ioctl (get descr)");
1252                         }
1253                 } else {
1254                         warn("unable to allocate memory for interface "
1255                             "description");
1256                 }
1257                 break;
1258         }
1259
1260         if (ioctl(s, SIOCGIFCAP, &ifr) == 0) {
1261                 if (ifr.ifr_curcap != 0) {
1262                         printb("\toptions", ifr.ifr_curcap, IFCAPBITS);
1263                         putchar('\n');
1264                 }
1265                 if (supmedia && ifr.ifr_reqcap != 0) {
1266                         printb("\tcapabilities", ifr.ifr_reqcap, IFCAPBITS);
1267                         putchar('\n');
1268                         if (ifr.ifr_reqcap & IFCAP_TSO) {
1269                                 if (ioctl(s, SIOCGIFTSOLEN, &ifr) == 0) {
1270                                         printf("\ttsolen %d", ifr.ifr_tsolen);
1271                                         putchar('\n');
1272                                 }
1273                         }
1274                 }
1275         }
1276
1277         tunnel_status(s);
1278
1279         for (ift = ifa; ift != NULL; ift = ift->ifa_next) {
1280                 if (ift->ifa_addr == NULL)
1281                         continue;
1282                 if (strcmp(ifa->ifa_name, ift->ifa_name) != 0)
1283                         continue;
1284                 if (allfamilies) {
1285                         const struct afswtch *p;
1286                         p = af_getbyfamily(ift->ifa_addr->sa_family);
1287                         if (p != NULL && p->af_status != NULL)
1288                                 p->af_status(s, ift);
1289                 } else if (afp->af_af == ift->ifa_addr->sa_family)
1290                         afp->af_status(s, ift);
1291         }
1292 #if 0
1293         if (allfamilies || afp->af_af == AF_LINK) {
1294                 const struct afswtch *lafp;
1295
1296                 /*
1297                  * Hack; the link level address is received separately
1298                  * from the routing information so any address is not
1299                  * handled above.  Cobble together an entry and invoke
1300                  * the status method specially.
1301                  */
1302                 lafp = af_getbyname("lladdr");
1303                 if (lafp != NULL) {
1304                         info.rti_info[RTAX_IFA] = (struct sockaddr *)sdl;
1305                         lafp->af_status(s, &info);
1306                 }
1307         }
1308 #endif
1309         if (allfamilies)
1310                 af_other_status(s);
1311         else if (afp->af_other_status != NULL)
1312                 afp->af_other_status(s);
1313
1314         strlcpy(ifs.ifs_name, name, sizeof ifs.ifs_name);
1315         if (ioctl(s, SIOCGIFSTATUS, &ifs) == 0)
1316                 printf("%s", ifs.ascii);
1317
1318         close(s);
1319 }
1320
1321 static void
1322 tunnel_status(int s)
1323 {
1324         af_all_tunnel_status(s);
1325 }
1326
1327 void
1328 Perror(const char *cmd)
1329 {
1330         switch (errno) {
1331         case ENXIO:
1332                 errx(1, "%s: no such interface", cmd);
1333                 break;
1334         case EPERM:
1335                 errx(1, "%s: permission denied", cmd);
1336                 break;
1337         default:
1338                 err(1, "%s", cmd);
1339         }
1340 }
1341
1342 /*
1343  * Print a value a la the %pb%i format of the kernel's kprintf()
1344  */
1345 void
1346 printb(const char *s, unsigned v, const char *bits)
1347 {
1348         int i, any = 0;
1349         char c;
1350
1351         if (bits && *bits == 8)
1352                 printf("%s=%o", s, v);
1353         else
1354                 printf("%s=%x", s, v);
1355         bits++;
1356         if (bits) {
1357                 putchar('<');
1358                 while ((i = *bits++) != '\0') {
1359                         if (v & (1 << (i-1))) {
1360                                 if (any)
1361                                         putchar(',');
1362                                 any = 1;
1363                                 for (; (c = *bits) > 32; bits++)
1364                                         putchar(c);
1365                         } else
1366                                 for (; *bits > 32; bits++)
1367                                         ;
1368                 }
1369                 putchar('>');
1370         }
1371 }
1372
1373 void
1374 ifmaybeload(const char *name)
1375 {
1376 #define MOD_PREFIX_LEN          3       /* "if_" */
1377         struct module_stat mstat;
1378         int fileid, modid;
1379         char ifkind[IFNAMSIZ + MOD_PREFIX_LEN], ifname[IFNAMSIZ], *dp;
1380         const char *cp;
1381
1382         /* loading suppressed by the user */
1383         if (noload)
1384                 return;
1385
1386         /* trim the interface number off the end */
1387         strlcpy(ifname, name, sizeof(ifname));
1388         for (dp = ifname; *dp != 0; dp++)
1389                 if (isdigit(*dp)) {
1390                         *dp = 0;
1391                         break;
1392                 }
1393
1394         /* turn interface and unit into module name */
1395         strlcpy(ifkind, "if_", sizeof(ifkind));
1396         strlcat(ifkind, ifname, sizeof(ifkind));
1397
1398         /* scan files in kernel */
1399         mstat.version = sizeof(struct module_stat);
1400         for (fileid = kldnext(0); fileid > 0; fileid = kldnext(fileid)) {
1401                 /* scan modules in file */
1402                 for (modid = kldfirstmod(fileid); modid > 0;
1403                      modid = modfnext(modid)) {
1404                         if (modstat(modid, &mstat) < 0)
1405                                 continue;
1406                         /* strip bus name if present */
1407                         if ((cp = strchr(mstat.name, '/')) != NULL) {
1408                                 cp++;
1409                         } else {
1410                                 cp = mstat.name;
1411                         }
1412                         /* already loaded? */
1413                         if (strcmp(ifname, cp) == 0 ||
1414                             strcmp(ifkind, cp) == 0)
1415                                 return;
1416                 }
1417         }
1418
1419         /* not present, we should try to load it */
1420         kldload(ifkind);
1421 }
1422
1423 static struct cmd basic_cmds[] = {
1424         DEF_CMD("up",           IFF_UP,         setifflags),
1425         DEF_CMD("down",         -IFF_UP,        setifflags),
1426         DEF_CMD("arp",          -IFF_NOARP,     setifflags),
1427         DEF_CMD("-arp",         IFF_NOARP,      setifflags),
1428         DEF_CMD("debug",        IFF_DEBUG,      setifflags),
1429         DEF_CMD("-debug",       -IFF_DEBUG,     setifflags),
1430         DEF_CMD_ARG("description",              setifdescr),
1431         DEF_CMD_ARG("descr",                    setifdescr),
1432         DEF_CMD("-description", 0,              unsetifdescr),
1433         DEF_CMD("-descr",       0,              unsetifdescr),
1434         DEF_CMD("promisc",      IFF_PPROMISC,   setifflags),
1435         DEF_CMD("-promisc",     -IFF_PPROMISC,  setifflags),
1436         DEF_CMD("add",          IFF_UP,         notealias),
1437         DEF_CMD("alias",        IFF_UP,         notealias),
1438         DEF_CMD("-alias",       -IFF_UP,        notealias),
1439         DEF_CMD("delete",       -IFF_UP,        notealias),
1440         DEF_CMD("remove",       -IFF_UP,        notealias),
1441 #ifdef notdef
1442 #define EN_SWABIPS      0x1000
1443         DEF_CMD("swabips",      EN_SWABIPS,     setifflags),
1444         DEF_CMD("-swabips",     -EN_SWABIPS,    setifflags),
1445 #endif
1446         DEF_CMD_ARG("netmask",                  setifnetmask),
1447         DEF_CMD_ARG("metric",                   setifmetric),
1448         DEF_CMD_ARG("broadcast",                setifbroadaddr),
1449         DEF_CMD_ARG2("tunnel",                  settunnel),
1450         DEF_CMD("-tunnel", 0,                   deletetunnel),
1451         DEF_CMD("deletetunnel", 0,              deletetunnel),
1452         DEF_CMD("link0",        IFF_LINK0,      setifflags),
1453         DEF_CMD("-link0",       -IFF_LINK0,     setifflags),
1454         DEF_CMD("link1",        IFF_LINK1,      setifflags),
1455         DEF_CMD("-link1",       -IFF_LINK1,     setifflags),
1456         DEF_CMD("link2",        IFF_LINK2,      setifflags),
1457         DEF_CMD("-link2",       -IFF_LINK2,     setifflags),
1458         DEF_CMD("monitor",      IFF_MONITOR,    setifflags),
1459         DEF_CMD("-monitor",     -IFF_MONITOR,   setifflags),
1460         DEF_CMD("staticarp",    IFF_STATICARP,  setifflags),
1461         DEF_CMD("-staticarp",   -IFF_STATICARP, setifflags),
1462         DEF_CMD("polling",      IFF_NPOLLING,   setifflags),
1463         DEF_CMD("-polling",     -IFF_NPOLLING,  setifflags),
1464         DEF_CMD("npolling",     IFF_NPOLLING,   setifflags),
1465         DEF_CMD("-npolling",    -IFF_NPOLLING,  setifflags),
1466         DEF_CMD("rxcsum",       IFCAP_RXCSUM,   setifcap),
1467         DEF_CMD("-rxcsum",      -IFCAP_RXCSUM,  setifcap),
1468         DEF_CMD("txcsum",       IFCAP_TXCSUM,   setifcap),
1469         DEF_CMD("-txcsum",      -IFCAP_TXCSUM,  setifcap),
1470         DEF_CMD("netcons",      IFCAP_NETCONS,  setifcap),
1471         DEF_CMD("-netcons",     -IFCAP_NETCONS, setifcap),
1472         DEF_CMD("rss",          IFCAP_RSS,      setifcap),
1473         DEF_CMD("-rss",         -IFCAP_RSS,     setifcap),
1474         DEF_CMD("tso",          IFCAP_TSO,      setifcap),
1475         DEF_CMD("-tso",         -IFCAP_TSO,     setifcap),
1476         DEF_CMD("normal",       -IFF_LINK0,     setifflags),
1477         DEF_CMD("compress",     IFF_LINK0,      setifflags),
1478         DEF_CMD("noicmp",       IFF_LINK1,      setifflags),
1479         DEF_CMD_ARG("mtu",                      setifmtu),
1480         DEF_CMD_ARG("name",                     setifname),
1481         DEF_CMD_ARG("pollcpu",                  setifpollcpu),
1482         DEF_CMD_ARG("tsolen",                   setiftsolen)
1483 };
1484
1485 __constructor(101)
1486 static void
1487 ifconfig_ctor(void)
1488 {
1489         size_t i;
1490
1491         for (i = 0; i < nitems(basic_cmds);  i++)
1492                 cmd_register(&basic_cmds[i]);
1493 }