ifconfig(8): Rename global 'name' to 'IfName' to avoid shadowing
[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    IfName[IFNAMSIZ];       /* name of interface */
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", IfName);
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 */
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(IfName, ifname, sizeof(IfName));
491                                 if (iflen >= sizeof(IfName))
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(IfName, ifname, sizeof(IfName));
527                 if (iflen >= sizeof(IfName))
528                         errx(1, "%s: cloning name too long", ifname);
529
530                 flags = getifflags(IfName, -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(IfName, ifa->ifa_name, sizeof(IfName));
563                 if (iflen >= sizeof(IfName)) {
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 ? " " : ""),
588                                        IfName);
589                                 ifindex++;
590                         }
591                         continue;
592                 }
593
594                 if (argc > 0)
595                         ifconfig(argc, argv, 0, afp);
596                 else
597                         status(afp, sdl, ifa);
598         }
599
600         if (namesonly)
601                 putchar('\n');
602
603         freeifaddrs(ifap);
604         freeformat();
605
606         return (exit_code);
607 }
608
609
610 /*
611  * Returns true if an interface should be listed because any its groups
612  * matches shell pattern "match" and none of groups matches pattern "nomatch".
613  * If any pattern is NULL, corresponding condition is skipped.
614  */
615 static bool
616 group_member(const char *ifname, const char *match, const char *nomatch)
617 {
618         static int               sock = -1;
619
620         struct ifgroupreq        ifgr;
621         struct ifg_req          *ifg;
622         size_t                   len;
623         bool                     matched, nomatched;
624
625         /* Sanity checks. */
626         if (match == NULL && nomatch == NULL)
627                 return (true);
628         if (ifname == NULL)
629                 return (false);
630
631         memset(&ifgr, 0, sizeof(ifgr));
632         strlcpy(ifgr.ifgr_name, ifname, sizeof(ifgr.ifgr_name));
633
634         /* The socket is opened once. Let _exit() close it. */
635         if (sock == -1) {
636                 sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
637                 if (sock == -1)
638                         errx(1, "%s: socket(AF_LOCAL,SOCK_DGRAM)", __func__);
639         }
640
641         /* Determine amount of memory for the list of groups. */
642         if (ioctl(sock, SIOCGIFGROUP, &ifgr) == -1) {
643                 if (errno == EINVAL || errno == ENOTTY)
644                         return (false);
645                 else
646                         errx(1, "%s: SIOCGIFGROUP", __func__);
647         }
648
649         /* Obtain the list of groups. */
650         len = ifgr.ifgr_len;
651         ifgr.ifgr_groups = calloc(1, len);
652         if (ifgr.ifgr_groups == NULL)
653                 errx(1, "%s: no memory", __func__);
654         if (ioctl(sock, SIOCGIFGROUP, &ifgr) == -1)
655                 errx(1, "%s: SIOCGIFGROUP", __func__);
656
657         /* Perform matching. */
658         matched = false;
659         nomatched = true;
660         for (ifg = ifgr.ifgr_groups; ifg && len >= sizeof(*ifg); ifg++) {
661                 len -= sizeof(struct ifg_req);
662                 if (match)
663                         matched |= !fnmatch(match, ifg->ifgrq_group, 0);
664                 if (nomatch)
665                         nomatched &= fnmatch(nomatch, ifg->ifgrq_group, 0);
666         }
667
668         if (match && !nomatch)
669                 return (matched);
670         if (!match && nomatch)
671                 return (nomatched);
672         return (matched && nomatched);
673 }
674
675
676 static struct afswtch *afs = NULL;
677
678 void
679 af_register(struct afswtch *p)
680 {
681         p->af_next = afs;
682         afs = p;
683 }
684
685 static struct afswtch *
686 af_getbyname(const char *name)
687 {
688         struct afswtch *afp;
689
690         for (afp = afs; afp !=  NULL; afp = afp->af_next)
691                 if (strcmp(afp->af_name, name) == 0)
692                         return afp;
693         return NULL;
694 }
695
696 static struct afswtch *
697 af_getbyfamily(int af)
698 {
699         struct afswtch *afp;
700
701         for (afp = afs; afp != NULL; afp = afp->af_next)
702                 if (afp->af_af == af)
703                         return afp;
704         return NULL;
705 }
706
707 static void
708 af_other_status(int s)
709 {
710         struct afswtch *afp;
711         uint8_t afmask[howmany(AF_MAX, NBBY)];
712
713         memset(afmask, 0, sizeof(afmask));
714         for (afp = afs; afp != NULL; afp = afp->af_next) {
715                 if (afp->af_other_status == NULL)
716                         continue;
717                 if (afp->af_af != AF_UNSPEC && isset(afmask, afp->af_af))
718                         continue;
719                 afp->af_other_status(s);
720                 setbit(afmask, afp->af_af);
721         }
722 }
723
724 static void
725 af_all_tunnel_status(int s)
726 {
727         struct afswtch *afp;
728         uint8_t afmask[howmany(AF_MAX, NBBY)];
729
730         memset(afmask, 0, sizeof(afmask));
731         for (afp = afs; afp != NULL; afp = afp->af_next) {
732                 if (afp->af_status_tunnel == NULL)
733                         continue;
734                 if (afp->af_af != AF_UNSPEC && isset(afmask, afp->af_af))
735                         continue;
736                 afp->af_status_tunnel(s);
737                 setbit(afmask, afp->af_af);
738         }
739 }
740
741 static struct cmd *cmds = NULL;
742
743 void
744 cmd_register(struct cmd *p)
745 {
746         p->c_next = cmds;
747         cmds = p;
748 }
749
750 static const struct cmd *
751 cmd_lookup(const char *name, int iscreate)
752 {
753         const struct cmd *p;
754
755         for (p = cmds; p != NULL; p = p->c_next) {
756                 if (strcmp(name, p->c_name) == 0) {
757                         if (iscreate) {
758                                 if (p->c_iscloneop)
759                                         return p;
760                         } else {
761                                 if (!p->c_iscloneop)
762                                         return p;
763                         }
764                 }
765         }
766
767         return NULL;
768 }
769
770 struct callback {
771         callback_func *cb_func;
772         void    *cb_arg;
773         struct callback *cb_next;
774 };
775 static struct callback *callbacks = NULL;
776
777 void
778 callback_register(callback_func *func, void *arg)
779 {
780         struct callback *cb;
781
782         cb = malloc(sizeof(struct callback));
783         if (cb == NULL)
784                 errx(1, "unable to allocate memory for callback");
785         cb->cb_func = func;
786         cb->cb_arg = arg;
787         cb->cb_next = callbacks;
788         callbacks = cb;
789 }
790
791 /* specially-handled commands */
792 static void setifaddr(const char *, int, int, const struct afswtch *);
793 static const struct cmd setifaddr_cmd = DEF_CMD("ifaddr", 0, setifaddr);
794
795 static void setifdstaddr(const char *, int, int, const struct afswtch *);
796 static const struct cmd setifdstaddr_cmd =
797         DEF_CMD("ifdstaddr", 0, setifdstaddr);
798
799 static int
800 ifconfig(int argc, char *const *argv, int iscreate,
801          const struct afswtch *uafp)
802 {
803         const struct afswtch *afp, *nafp;
804         const struct cmd *p;
805         struct callback *cb;
806         int s;
807
808         strlcpy(ifr.ifr_name, IfName, sizeof(ifr.ifr_name));
809         afp = uafp != NULL ? uafp : af_getbyname("inet");
810 top:
811         ifr.ifr_addr.sa_family =
812                 afp->af_af == AF_LINK || afp->af_af == AF_UNSPEC ?
813                 AF_LOCAL : afp->af_af;
814
815         if ((s = socket(ifr.ifr_addr.sa_family, SOCK_DGRAM, 0)) < 0 &&
816             (uafp != NULL || errno != EAFNOSUPPORT ||
817              (s = socket(AF_LOCAL, SOCK_DGRAM, 0)) < 0))
818                 err(1, "socket(family %u,SOCK_DGRAM)", ifr.ifr_addr.sa_family);
819
820         while (argc > 0) {
821                 p = cmd_lookup(*argv, iscreate);
822                 if (iscreate && p == NULL) {
823                         /*
824                          * Push the clone create callback so the new
825                          * device is created and can be used for any
826                          * remaining arguments.
827                          */
828                         cb = callbacks;
829                         if (cb == NULL)
830                                 errx(1, "internal error, no callback");
831                         callbacks = cb->cb_next;
832                         cb->cb_func(s, cb->cb_arg);
833                         iscreate = 0;
834
835                         /*
836                          * After cloning, make sure we have an up-to-date name
837                          * in ifr_name.
838                          */
839                         strlcpy(ifr.ifr_name, IfName, sizeof(ifr.ifr_name));
840
841                         /*
842                          * Handle any address family spec that
843                          * immediately follows and potentially
844                          * recreate the socket.
845                          */
846                         nafp = af_getbyname(*argv);
847                         if (nafp != NULL) {
848                                 argc--, argv++;
849                                 if (nafp != afp) {
850                                         close(s);
851                                         afp = nafp;
852                                         goto top;
853                                 }
854                         }
855
856                         /* Look for a normal parameter. */
857                         continue;
858                 }
859                 if (p == NULL) {
860                         /*
861                          * Not a recognized command, choose between setting
862                          * the interface address and the dst address.
863                          */
864                         p = (setaddr ? &setifdstaddr_cmd : &setifaddr_cmd);
865                 }
866                 if (p->c_u.c_func || p->c_u.c_func2) {
867                         if (p->c_parameter == NEXTARG) {
868                                 if (argv[1] == NULL)
869                                         errx(1, "'%s' requires argument",
870                                             p->c_name);
871                                 p->c_u.c_func(argv[1], 0, s, afp);
872                                 argc--, argv++;
873                         } else if (p->c_parameter == OPTARG) {
874                                 p->c_u.c_func(argv[1], 0, s, afp);
875                                 if (argv[1] != NULL)
876                                         argc--, argv++;
877                         } else if (p->c_parameter == NEXTARG2) {
878                                 if (argc < 3)
879                                         errx(1, "'%s' requires 2 arguments",
880                                             p->c_name);
881                                 p->c_u.c_func2(argv[1], argv[2], s, afp);
882                                 argc -= 2, argv += 2;
883                         } else
884                                 p->c_u.c_func(*argv, p->c_parameter, s, afp);
885                 }
886                 argc--, argv++;
887         }
888
889         /*
890          * Do any post argument processing required by the address family.
891          */
892         if (afp->af_postproc != NULL)
893                 afp->af_postproc(s, afp);
894         /*
895          * Do deferred callbacks registered while processing
896          * command-line arguments.
897          */
898         for (cb = callbacks; cb != NULL; cb = cb->cb_next)
899                 cb->cb_func(s, cb->cb_arg);
900         /*
901          * Do deferred operations.
902          */
903         if (clearaddr) {
904                 if (afp->af_ridreq == NULL || afp->af_difaddr == 0) {
905                         warnx("interface %s cannot change %s addresses!",
906                               IfName, afp->af_name);
907                         clearaddr = 0;
908                 }
909         }
910         if (clearaddr) {
911                 strlcpy(afp->af_ridreq, IfName, sizeof(ifr.ifr_name));
912                 if (ioctl(s, afp->af_difaddr, afp->af_ridreq) < 0) {
913                         if (errno == EADDRNOTAVAIL && doalias >= 0) {
914                                 /* means no previous address for interface */
915                         } else
916                                 Perror("ioctl (SIOCDIFADDR)");
917                 }
918         }
919         if (newaddr) {
920                 if (afp->af_addreq == NULL || afp->af_aifaddr == 0) {
921                         warnx("interface %s cannot change %s addresses!",
922                               IfName, afp->af_name);
923                         newaddr = 0;
924                 }
925         }
926         if (newaddr && (setaddr || setmask)) {
927                 strlcpy(afp->af_addreq, IfName, sizeof(ifr.ifr_name));
928                 if (ioctl(s, afp->af_aifaddr, afp->af_addreq) < 0)
929                         Perror("ioctl (SIOCAIFADDR)");
930         }
931
932         close(s);
933         return (0);
934 }
935
936 static void
937 setifaddr(const char *addr, int dummy __unused, int s __unused,
938           const struct afswtch *afp)
939 {
940         if (afp->af_getaddr == NULL)
941                 return;
942         /*
943          * Delay the ioctl to set the interface addr until flags are all set.
944          * The address interpretation may depend on the flags,
945          * and the flags may change when the address is set.
946          */
947         setaddr++;
948         if (doalias == 0 && afp->af_af != AF_LINK)
949                 clearaddr = 1;
950         afp->af_getaddr(addr, (doalias >= 0 ? ADDR : RIDADDR));
951 }
952
953 static void
954 settunnel(const char *src, const char *dst, int s, const struct afswtch *afp)
955 {
956         struct addrinfo *srcres, *dstres;
957         int ecode;
958
959         if (afp->af_settunnel == NULL) {
960                 warn("address family %s does not support tunnel setup",
961                         afp->af_name);
962                 return;
963         }
964
965         if ((ecode = getaddrinfo(src, NULL, NULL, &srcres)) != 0)
966                 errx(1, "error in parsing address string: %s",
967                     gai_strerror(ecode));
968
969         if ((ecode = getaddrinfo(dst, NULL, NULL, &dstres)) != 0)
970                 errx(1, "error in parsing address string: %s",
971                     gai_strerror(ecode));
972
973         if (srcres->ai_addr->sa_family != dstres->ai_addr->sa_family)
974                 errx(1,
975                     "source and destination address families do not match");
976
977         afp->af_settunnel(s, srcres, dstres);
978
979         freeaddrinfo(srcres);
980         freeaddrinfo(dstres);
981 }
982
983 static void
984 deletetunnel(const char *arg __unused, int dummy __unused, int s,
985              const struct afswtch *afp __unused)
986 {
987         if (ioctl(s, SIOCDIFPHYADDR, &ifr) < 0)
988                 err(1, "SIOCDIFPHYADDR");
989 }
990
991 static void
992 setifnetmask(const char *addr, int dummy __unused, int s __unused,
993              const struct afswtch *afp)
994 {
995         if (afp->af_getaddr != NULL) {
996                 setmask++;
997                 afp->af_getaddr(addr, MASK);
998         }
999 }
1000
1001 static void
1002 setifbroadaddr(const char *addr, int dummy __unused, int s __unused,
1003                const struct afswtch *afp)
1004 {
1005         if (afp->af_getaddr != NULL)
1006                 afp->af_getaddr(addr, DSTADDR);
1007 }
1008
1009 static void
1010 notealias(const char *addr __unused, int param, int s __unused,
1011           const struct afswtch *afp)
1012 {
1013 #define rqtosa(x) (&(((struct ifreq *)(afp->x))->ifr_addr))
1014         if (setaddr && doalias == 0 && param < 0)
1015                 if (afp->af_addreq != NULL && afp->af_ridreq != NULL)
1016                         bcopy(rqtosa(af_addreq), rqtosa(af_ridreq),
1017                               rqtosa(af_addreq)->sa_len);
1018         doalias = param;
1019         if (param < 0) {
1020                 clearaddr = 1;
1021                 newaddr = 0;
1022         } else {
1023                 clearaddr = 0;
1024         }
1025 #undef rqtosa
1026 }
1027
1028 static void
1029 setifdstaddr(const char *addr, int dummy __unused, int s __unused,
1030              const struct afswtch *afp __unused)
1031 {
1032         if (afp->af_getaddr != NULL)
1033                 afp->af_getaddr(addr, DSTADDR);
1034 }
1035
1036 static int
1037 getifflags(const char *ifname, int us)
1038 {
1039         struct ifreq my_ifr;
1040         int s;
1041
1042         memset(&my_ifr, 0, sizeof(struct ifreq));
1043         strlcpy(my_ifr.ifr_name, ifname, sizeof(my_ifr.ifr_name));
1044
1045         s = us;
1046         if (us < 0) {
1047                 if ((s = socket(AF_LOCAL, SOCK_DGRAM, 0)) < 0)
1048                         err(1, "socket(family AF_LOCAL,SOCK_DGRAM)");
1049         }
1050
1051         if (ioctl(s, SIOCGIFFLAGS, &my_ifr) < 0)
1052                 Perror("ioctl (SIOCGIFFLAGS)");
1053
1054         if (us < 0)
1055                 close(s);
1056
1057         return ((my_ifr.ifr_flags & 0xffff) | (my_ifr.ifr_flagshigh << 16));
1058 }
1059
1060 static void
1061 setifflags(const char *vname, int value, int s,
1062            const struct afswtch *afp __unused)
1063 {
1064         struct ifreq my_ifr;
1065         int flags;
1066
1067         flags = getifflags(IfName, s);
1068         if (value < 0) {
1069                 value = -value;
1070                 flags &= ~value;
1071         } else {
1072                 flags |= value;
1073         }
1074
1075         memset(&my_ifr, 0, sizeof(struct ifreq));
1076         strlcpy(my_ifr.ifr_name, IfName, sizeof(my_ifr.ifr_name));
1077         my_ifr.ifr_flags = flags & 0xffff;
1078         my_ifr.ifr_flagshigh = flags >> 16;
1079
1080         if (ioctl(s, SIOCSIFFLAGS, &my_ifr) < 0)
1081                 Perror(vname);
1082 }
1083
1084 void
1085 setifcap(const char *vname, int value, int s,
1086          const struct afswtch *afp __unused)
1087 {
1088         int flags;
1089
1090         if (ioctl(s, SIOCGIFCAP, &ifr) < 0)
1091                 Perror("ioctl (SIOCGIFCAP)");
1092
1093         flags = ifr.ifr_curcap;
1094         if (value < 0) {
1095                 value = -value;
1096                 flags &= ~value;
1097         } else {
1098                 flags |= value;
1099         }
1100         ifr.ifr_reqcap = flags;
1101         if (ioctl(s, SIOCSIFCAP, &ifr) < 0)
1102                 Perror(vname);
1103 }
1104
1105 static void
1106 setifmetric(const char *val, int dummy __unused, int s,
1107             const struct afswtch *afp __unused)
1108 {
1109         strlcpy(ifr.ifr_name, IfName, sizeof (ifr.ifr_name));
1110         ifr.ifr_metric = atoi(val);
1111         if (ioctl(s, SIOCSIFMETRIC, &ifr) < 0)
1112                 err(1, "ioctl SIOCSIFMETRIC (set metric)");
1113 }
1114
1115 static void
1116 setifmtu(const char *val, int dummy __unused, int s,
1117          const struct afswtch *afp __unused)
1118 {
1119         strlcpy(ifr.ifr_name, IfName, sizeof (ifr.ifr_name));
1120         ifr.ifr_mtu = atoi(val);
1121         if (ioctl(s, SIOCSIFMTU, &ifr) < 0)
1122                 err(1, "ioctl SIOCSIFMTU (set mtu)");
1123 }
1124
1125 static void
1126 setiftsolen(const char *val, int dummy __unused, int s,
1127             const struct afswtch *afp __unused)
1128 {
1129         strlcpy(ifr.ifr_name, IfName, sizeof (ifr.ifr_name));
1130         ifr.ifr_tsolen = atoi(val);
1131         if (ioctl(s, SIOCSIFTSOLEN, &ifr) < 0)
1132                 err(1, "ioctl SIOCSIFTSOLEN (set tsolen)");
1133 }
1134
1135 static void
1136 setifname(const char *val, int dummy __unused, int s,
1137           const struct afswtch *afp __unused)
1138 {
1139         char *newname;
1140
1141         strlcpy(ifr.ifr_name, IfName, sizeof(ifr.ifr_name));
1142
1143         newname = strdup(val);
1144         if (newname == NULL)
1145                 err(1, "no memory to set ifname");
1146
1147         ifr.ifr_data = newname;
1148         if (ioctl(s, SIOCSIFNAME, &ifr) < 0) {
1149                 free(newname);
1150                 err(1, "ioctl SIOCSIFNAME (set name)");
1151         }
1152
1153         printifname = 1;
1154         strlcpy(IfName, newname, sizeof(IfName));
1155         free(newname);
1156 }
1157
1158 static void
1159 setifpollcpu(const char *val __unused, int dummy __unused, int s,
1160              const struct afswtch *afp)
1161 {
1162         warnx("pollcpu is deprecated, use polling or npolling instead");
1163         setifflags("npolling", IFF_NPOLLING, s, afp);
1164 }
1165
1166 static void
1167 setifdescr(const char *val, int dummy __unused, int s,
1168            const struct afswtch *afp __unused)
1169 {
1170         char *newdescr;
1171
1172         ifr.ifr_buffer.length = strlen(val) + 1;
1173         if (ifr.ifr_buffer.length == 1) {
1174                 ifr.ifr_buffer.buffer = newdescr = NULL;
1175                 ifr.ifr_buffer.length = 0;
1176         } else {
1177                 newdescr = strdup(val);
1178                 ifr.ifr_buffer.buffer = newdescr;
1179                 if (newdescr == NULL) {
1180                         warn("no memory to set ifdescr");
1181                         return;
1182                 }
1183         }
1184
1185         if (ioctl(s, SIOCSIFDESCR, &ifr) < 0)
1186                 warn("ioctl (set descr)");
1187
1188         free(newdescr);
1189 }
1190
1191 static void
1192 unsetifdescr(const char *val __unused, int dummy __unused, int s,
1193              const struct afswtch *afp __unused)
1194 {
1195         setifdescr("", 0, s, 0);
1196 }
1197
1198 #define IFFBITS \
1199 "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6SMART\7RUNNING" \
1200 "\10NOARP\11PROMISC\12ALLMULTI\14SIMPLEX\15LINK0\16LINK1\17LINK2" \
1201 "\20MULTICAST\22PPROMISC\23MONITOR\24STATICARP\25NPOLLING\26IDIRECT"
1202
1203 #define IFCAPBITS \
1204 "\020\1RXCSUM\2TXCSUM\3NETCONS\4VLAN_MTU\5VLAN_HWTAGGING\6JUMBO_MTU\7RSS" \
1205 "\10VLAN_HWCSUM\11TSO"
1206
1207 /*
1208  * Print the status of the interface.  If an address family was
1209  * specified, show only it; otherwise, show them all.
1210  */
1211 static void
1212 status(const struct afswtch *afp, const struct sockaddr_dl *sdl __unused,
1213        struct ifaddrs *ifa)
1214 {
1215         struct ifaddrs *ift;
1216         int allfamilies, s;
1217         struct ifstat ifs;
1218
1219         if (afp == NULL) {
1220                 allfamilies = 1;
1221                 ifr.ifr_addr.sa_family = AF_LOCAL;
1222         } else {
1223                 allfamilies = 0;
1224                 ifr.ifr_addr.sa_family =
1225                     afp->af_af == AF_LINK ? AF_LOCAL : afp->af_af;
1226         }
1227         strlcpy(ifr.ifr_name, IfName, sizeof(ifr.ifr_name));
1228
1229         s = socket(ifr.ifr_addr.sa_family, SOCK_DGRAM, 0);
1230         if (s < 0)
1231                 err(1, "socket(family %u,SOCK_DGRAM)", ifr.ifr_addr.sa_family);
1232
1233         printf("%s: ", IfName);
1234         printb("flags", ifa->ifa_flags, IFFBITS);
1235         if (ioctl(s, SIOCGIFMETRIC, &ifr) != -1)
1236                 printf(" metric %d", ifr.ifr_metric);
1237         if (ioctl(s, SIOCGIFMTU, &ifr) != -1)
1238                 printf(" mtu %d", ifr.ifr_mtu);
1239         putchar('\n');
1240
1241         for (;;) {
1242                 if ((descr = reallocf(descr, descrlen)) != NULL) {
1243                         ifr.ifr_buffer.buffer = descr;
1244                         ifr.ifr_buffer.length = descrlen;
1245                         if (ioctl(s, SIOCGIFDESCR, &ifr) == 0) {
1246                                 if (ifr.ifr_buffer.length > 1)
1247                                         printf("\tdescription: %s\n", descr);
1248                         } else if (errno == ENOMSG) {
1249                                 break;
1250                         } else if (errno == ENAMETOOLONG) {
1251                                 descrlen = ifr.ifr_buffer.length;
1252                                 continue;
1253                         } else {
1254                                 warn("ioctl (get descr)");
1255                         }
1256                 } else {
1257                         warn("unable to allocate memory for interface "
1258                             "description");
1259                 }
1260                 break;
1261         }
1262
1263         if (ioctl(s, SIOCGIFCAP, &ifr) == 0) {
1264                 if (ifr.ifr_curcap != 0) {
1265                         printb("\toptions", ifr.ifr_curcap, IFCAPBITS);
1266                         putchar('\n');
1267                 }
1268                 if (supmedia && ifr.ifr_reqcap != 0) {
1269                         printb("\tcapabilities", ifr.ifr_reqcap, IFCAPBITS);
1270                         putchar('\n');
1271                         if (ifr.ifr_reqcap & IFCAP_TSO) {
1272                                 if (ioctl(s, SIOCGIFTSOLEN, &ifr) == 0) {
1273                                         printf("\ttsolen %d", ifr.ifr_tsolen);
1274                                         putchar('\n');
1275                                 }
1276                         }
1277                 }
1278         }
1279
1280         tunnel_status(s);
1281
1282         for (ift = ifa; ift != NULL; ift = ift->ifa_next) {
1283                 if (ift->ifa_addr == NULL)
1284                         continue;
1285                 if (strcmp(ifa->ifa_name, ift->ifa_name) != 0)
1286                         continue;
1287                 if (allfamilies) {
1288                         const struct afswtch *p;
1289                         p = af_getbyfamily(ift->ifa_addr->sa_family);
1290                         if (p != NULL && p->af_status != NULL)
1291                                 p->af_status(s, ift);
1292                 } else if (afp->af_af == ift->ifa_addr->sa_family)
1293                         afp->af_status(s, ift);
1294         }
1295 #if 0
1296         if (allfamilies || afp->af_af == AF_LINK) {
1297                 const struct afswtch *lafp;
1298
1299                 /*
1300                  * Hack; the link level address is received separately
1301                  * from the routing information so any address is not
1302                  * handled above.  Cobble together an entry and invoke
1303                  * the status method specially.
1304                  */
1305                 lafp = af_getbyname("lladdr");
1306                 if (lafp != NULL) {
1307                         info.rti_info[RTAX_IFA] = (struct sockaddr *)sdl;
1308                         lafp->af_status(s, &info);
1309                 }
1310         }
1311 #endif
1312         if (allfamilies)
1313                 af_other_status(s);
1314         else if (afp->af_other_status != NULL)
1315                 afp->af_other_status(s);
1316
1317         strlcpy(ifs.ifs_name, IfName, sizeof(ifs.ifs_name));
1318         if (ioctl(s, SIOCGIFSTATUS, &ifs) == 0)
1319                 printf("%s", ifs.ascii);
1320
1321         close(s);
1322 }
1323
1324 static void
1325 tunnel_status(int s)
1326 {
1327         af_all_tunnel_status(s);
1328 }
1329
1330 void
1331 Perror(const char *cmd)
1332 {
1333         switch (errno) {
1334         case ENXIO:
1335                 errx(1, "%s: no such interface", cmd);
1336                 break;
1337         case EPERM:
1338                 errx(1, "%s: permission denied", cmd);
1339                 break;
1340         default:
1341                 err(1, "%s", cmd);
1342         }
1343 }
1344
1345 /*
1346  * Print a value a la the %pb%i format of the kernel's kprintf()
1347  */
1348 void
1349 printb(const char *s, unsigned v, const char *bits)
1350 {
1351         int i, any = 0;
1352         char c;
1353
1354         if (bits && *bits == 8)
1355                 printf("%s=%o", s, v);
1356         else
1357                 printf("%s=%x", s, v);
1358         bits++;
1359         if (bits) {
1360                 putchar('<');
1361                 while ((i = *bits++) != '\0') {
1362                         if (v & (1 << (i-1))) {
1363                                 if (any)
1364                                         putchar(',');
1365                                 any = 1;
1366                                 for (; (c = *bits) > 32; bits++)
1367                                         putchar(c);
1368                         } else
1369                                 for (; *bits > 32; bits++)
1370                                         ;
1371                 }
1372                 putchar('>');
1373         }
1374 }
1375
1376 void
1377 ifmaybeload(const char *name)
1378 {
1379 #define MOD_PREFIX_LEN          3       /* "if_" */
1380         struct module_stat mstat;
1381         int fileid, modid;
1382         char ifkind[IFNAMSIZ + MOD_PREFIX_LEN], ifname[IFNAMSIZ], *dp;
1383         const char *cp;
1384
1385         /* loading suppressed by the user */
1386         if (noload)
1387                 return;
1388
1389         /* trim the interface number off the end */
1390         strlcpy(ifname, name, sizeof(ifname));
1391         for (dp = ifname; *dp != 0; dp++)
1392                 if (isdigit(*dp)) {
1393                         *dp = 0;
1394                         break;
1395                 }
1396
1397         /* turn interface and unit into module name */
1398         strlcpy(ifkind, "if_", sizeof(ifkind));
1399         strlcat(ifkind, ifname, sizeof(ifkind));
1400
1401         /* scan files in kernel */
1402         mstat.version = sizeof(struct module_stat);
1403         for (fileid = kldnext(0); fileid > 0; fileid = kldnext(fileid)) {
1404                 /* scan modules in file */
1405                 for (modid = kldfirstmod(fileid); modid > 0;
1406                      modid = modfnext(modid)) {
1407                         if (modstat(modid, &mstat) < 0)
1408                                 continue;
1409                         /* strip bus name if present */
1410                         if ((cp = strchr(mstat.name, '/')) != NULL) {
1411                                 cp++;
1412                         } else {
1413                                 cp = mstat.name;
1414                         }
1415                         /* already loaded? */
1416                         if (strcmp(ifname, cp) == 0 ||
1417                             strcmp(ifkind, cp) == 0)
1418                                 return;
1419                 }
1420         }
1421
1422         /* not present, we should try to load it */
1423         kldload(ifkind);
1424 }
1425
1426 static struct cmd basic_cmds[] = {
1427         DEF_CMD("up",           IFF_UP,         setifflags),
1428         DEF_CMD("down",         -IFF_UP,        setifflags),
1429         DEF_CMD("arp",          -IFF_NOARP,     setifflags),
1430         DEF_CMD("-arp",         IFF_NOARP,      setifflags),
1431         DEF_CMD("debug",        IFF_DEBUG,      setifflags),
1432         DEF_CMD("-debug",       -IFF_DEBUG,     setifflags),
1433         DEF_CMD_ARG("description",              setifdescr),
1434         DEF_CMD_ARG("descr",                    setifdescr),
1435         DEF_CMD("-description", 0,              unsetifdescr),
1436         DEF_CMD("-descr",       0,              unsetifdescr),
1437         DEF_CMD("promisc",      IFF_PPROMISC,   setifflags),
1438         DEF_CMD("-promisc",     -IFF_PPROMISC,  setifflags),
1439         DEF_CMD("add",          IFF_UP,         notealias),
1440         DEF_CMD("alias",        IFF_UP,         notealias),
1441         DEF_CMD("-alias",       -IFF_UP,        notealias),
1442         DEF_CMD("delete",       -IFF_UP,        notealias),
1443         DEF_CMD("remove",       -IFF_UP,        notealias),
1444 #ifdef notdef
1445 #define EN_SWABIPS      0x1000
1446         DEF_CMD("swabips",      EN_SWABIPS,     setifflags),
1447         DEF_CMD("-swabips",     -EN_SWABIPS,    setifflags),
1448 #endif
1449         DEF_CMD_ARG("netmask",                  setifnetmask),
1450         DEF_CMD_ARG("metric",                   setifmetric),
1451         DEF_CMD_ARG("broadcast",                setifbroadaddr),
1452         DEF_CMD_ARG2("tunnel",                  settunnel),
1453         DEF_CMD("-tunnel", 0,                   deletetunnel),
1454         DEF_CMD("deletetunnel", 0,              deletetunnel),
1455         DEF_CMD("link0",        IFF_LINK0,      setifflags),
1456         DEF_CMD("-link0",       -IFF_LINK0,     setifflags),
1457         DEF_CMD("link1",        IFF_LINK1,      setifflags),
1458         DEF_CMD("-link1",       -IFF_LINK1,     setifflags),
1459         DEF_CMD("link2",        IFF_LINK2,      setifflags),
1460         DEF_CMD("-link2",       -IFF_LINK2,     setifflags),
1461         DEF_CMD("monitor",      IFF_MONITOR,    setifflags),
1462         DEF_CMD("-monitor",     -IFF_MONITOR,   setifflags),
1463         DEF_CMD("staticarp",    IFF_STATICARP,  setifflags),
1464         DEF_CMD("-staticarp",   -IFF_STATICARP, setifflags),
1465         DEF_CMD("polling",      IFF_NPOLLING,   setifflags),
1466         DEF_CMD("-polling",     -IFF_NPOLLING,  setifflags),
1467         DEF_CMD("npolling",     IFF_NPOLLING,   setifflags),
1468         DEF_CMD("-npolling",    -IFF_NPOLLING,  setifflags),
1469         DEF_CMD("rxcsum",       IFCAP_RXCSUM,   setifcap),
1470         DEF_CMD("-rxcsum",      -IFCAP_RXCSUM,  setifcap),
1471         DEF_CMD("txcsum",       IFCAP_TXCSUM,   setifcap),
1472         DEF_CMD("-txcsum",      -IFCAP_TXCSUM,  setifcap),
1473         DEF_CMD("netcons",      IFCAP_NETCONS,  setifcap),
1474         DEF_CMD("-netcons",     -IFCAP_NETCONS, setifcap),
1475         DEF_CMD("rss",          IFCAP_RSS,      setifcap),
1476         DEF_CMD("-rss",         -IFCAP_RSS,     setifcap),
1477         DEF_CMD("tso",          IFCAP_TSO,      setifcap),
1478         DEF_CMD("-tso",         -IFCAP_TSO,     setifcap),
1479         DEF_CMD("normal",       -IFF_LINK0,     setifflags),
1480         DEF_CMD("compress",     IFF_LINK0,      setifflags),
1481         DEF_CMD("noicmp",       IFF_LINK1,      setifflags),
1482         DEF_CMD_ARG("mtu",                      setifmtu),
1483         DEF_CMD_ARG("name",                     setifname),
1484         DEF_CMD_ARG("pollcpu",                  setifpollcpu),
1485         DEF_CMD_ARG("tsolen",                   setiftsolen)
1486 };
1487
1488 __constructor(101)
1489 static void
1490 ifconfig_ctor(void)
1491 {
1492         size_t i;
1493
1494         for (i = 0; i < nitems(basic_cmds);  i++)
1495                 cmd_register(&basic_cmds[i]);
1496 }