2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 4. 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.
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
31 static const char copyright
[] =
32 "@(#) Copyright (c) 1983, 1993\n\
33 The Regents of the University of California. All rights reserved.\n";
38 static char sccsid
[] = "@(#)ifconfig.c 8.2 (Berkeley) 2/16/94";
40 static const char rcsid
[] =
44 #include <sys/param.h>
45 #include <sys/ioctl.h>
46 #include <sys/socket.h>
47 #include <sys/sysctl.h>
49 #include <sys/module.h>
50 #include <sys/linker.h>
52 #include <net/ethernet.h>
54 #include <net/if_var.h>
55 #include <net/if_dl.h>
56 #include <net/if_types.h>
57 #include <net/route.h>
60 #include <netinet/in.h>
61 #include <netinet/in_var.h>
62 #include <arpa/inet.h>
78 * Since "struct ifreq" is composed of various union members, callers
79 * should pay special attention to interprete the value.
80 * (.e.g. little/big endian difference in the structure.)
94 int printkeys
= 0; /* Print keying material for interfaces. */
96 static int ifconfig(int argc
, char *const *argv
, int iscreate
,
97 const struct afswtch
*afp
);
98 static void status(const struct afswtch
*afp
, const struct sockaddr_dl
*sdl
,
100 static void tunnel_status(int s
);
101 static void usage(void);
103 static struct afswtch
*af_getbyname(const char *name
);
104 static struct afswtch
*af_getbyfamily(int af
);
105 static void af_other_status(int);
107 static struct option
*opts
= NULL
;
110 opt_register(struct option
*p
)
122 /* XXX not right but close enough for now */
124 for (p
= opts
; p
!= NULL
; p
= p
->next
) {
125 strlcat(options
, p
->opt_usage
, sizeof(options
));
126 strlcat(options
, " ", sizeof(options
));
130 "usage: ifconfig %sinterface address_family [address [dest_address]]\n"
132 " ifconfig interface create\n"
133 " ifconfig -a %s[-d] [-m] [-u] [-v] [address_family]\n"
134 " ifconfig -l [-d] [-u] [address_family]\n"
135 " ifconfig %s[-d] [-m] [-u] [-v]\n",
136 options
, options
, options
);
141 main(int argc
, char *argv
[])
143 int c
, all
, namesonly
, downonly
, uponly
;
144 const struct afswtch
*afp
= NULL
;
146 struct ifaddrs
*ifap
, *ifa
;
148 const struct sockaddr_dl
*sdl
;
149 char options
[1024], *cp
;
154 all
= downonly
= uponly
= namesonly
= noload
= verbose
= 0;
156 /* Parse leading line options */
157 strlcpy(options
, "adklmnuv", sizeof(options
));
158 for (p
= opts
; p
!= NULL
; p
= p
->next
)
159 strlcat(options
, p
->opt
, sizeof(options
));
160 while ((c
= getopt(argc
, argv
, options
)) != -1) {
162 case 'a': /* scan all interfaces */
165 case 'd': /* restrict scan to "down" interfaces */
171 case 'l': /* scan interface names only */
174 case 'm': /* show media choices in status */
177 case 'n': /* suppress module loading */
180 case 'u': /* restrict scan to "up" interfaces */
187 for (p
= opts
; p
!= NULL
; p
= p
->next
)
188 if (p
->opt
[0] == c
) {
200 /* -l cannot be used with -a or -m */
201 if (namesonly
&& (all
|| supmedia
))
205 if (uponly
&& downonly
)
208 /* no arguments is equivalent to '-a' */
209 if (!namesonly
&& argc
< 1)
212 /* -a and -l allow an address family arg to limit the output */
213 if (all
|| namesonly
) {
220 afp
= af_getbyname(*argv
);
223 if (afp
->af_name
!= NULL
)
225 /* leave with afp non-zero */
228 /* not listing, need an argument */
235 /* check and maybe load support for this interface */
238 ifindex
= if_nametoindex(ifname
);
241 * NOTE: We must special-case the `create' command
242 * right here as we would otherwise fail when trying
243 * to find the interface.
245 if (argc
> 0 && (strcmp(argv
[0], "create") == 0 ||
246 strcmp(argv
[0], "plumb") == 0)) {
247 iflen
= strlcpy(name
, ifname
, sizeof(name
));
248 if (iflen
>= sizeof(name
))
249 errx(1, "%s: cloning name too long",
251 ifconfig(argc
, argv
, 1, NULL
);
254 errx(1, "interface %s does not exist", ifname
);
258 /* Check for address family */
260 afp
= af_getbyname(*argv
);
265 if (getifaddrs(&ifap
) != 0)
266 err(EXIT_FAILURE
, "getifaddrs");
269 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
270 memset(&paifr
, 0, sizeof(paifr
));
271 strncpy(paifr
.ifr_name
, ifa
->ifa_name
, sizeof(paifr
.ifr_name
));
272 if (sizeof(paifr
.ifr_addr
) >= ifa
->ifa_addr
->sa_len
) {
273 memcpy(&paifr
.ifr_addr
, ifa
->ifa_addr
,
274 ifa
->ifa_addr
->sa_len
);
277 if (ifname
!= NULL
&& strcmp(ifname
, ifa
->ifa_name
) != 0)
279 if (ifa
->ifa_addr
->sa_family
== AF_LINK
)
280 sdl
= (const struct sockaddr_dl
*) ifa
->ifa_addr
;
283 if (cp
!= NULL
&& strcmp(cp
, ifa
->ifa_name
) == 0)
285 iflen
= strlcpy(name
, ifa
->ifa_name
, sizeof(name
));
286 if (iflen
>= sizeof(name
)) {
287 warnx("%s: interface name too long, skipping",
293 if (downonly
&& (ifa
->ifa_flags
& IFF_UP
) != 0)
295 if (uponly
&& (ifa
->ifa_flags
& IFF_UP
) == 0)
299 * Are we just listing the interfaces?
309 ifconfig(argc
, argv
, 0, afp
);
311 status(afp
, sdl
, ifa
);
320 static struct afswtch
*afs
= NULL
;
323 af_register(struct afswtch
*p
)
329 static struct afswtch
*
330 af_getbyname(const char *name
)
334 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
)
335 if (strcmp(afp
->af_name
, name
) == 0)
340 static struct afswtch
*
341 af_getbyfamily(int af
)
345 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
)
346 if (afp
->af_af
== af
)
352 af_other_status(int s
)
355 uint8_t afmask
[howmany(AF_MAX
, NBBY
)];
357 memset(afmask
, 0, sizeof(afmask
));
358 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
) {
359 if (afp
->af_other_status
== NULL
)
361 if (afp
->af_af
!= AF_UNSPEC
&& isset(afmask
, afp
->af_af
))
363 afp
->af_other_status(s
);
364 setbit(afmask
, afp
->af_af
);
369 af_all_tunnel_status(int s
)
372 uint8_t afmask
[howmany(AF_MAX
, NBBY
)];
374 memset(afmask
, 0, sizeof(afmask
));
375 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
) {
376 if (afp
->af_status_tunnel
== NULL
)
378 if (afp
->af_af
!= AF_UNSPEC
&& isset(afmask
, afp
->af_af
))
380 afp
->af_status_tunnel(s
);
381 setbit(afmask
, afp
->af_af
);
385 static struct cmd
*cmds
= NULL
;
388 cmd_register(struct cmd
*p
)
394 static const struct cmd
*
395 cmd_lookup(const char *name
)
397 #define N(a) (sizeof(a)/sizeof(a[0]))
400 for (p
= cmds
; p
!= NULL
; p
= p
->c_next
)
401 if (strcmp(name
, p
->c_name
) == 0)
408 callback_func
*cb_func
;
410 struct callback
*cb_next
;
412 static struct callback
*callbacks
= NULL
;
415 callback_register(callback_func
*func
, void *arg
)
419 cb
= malloc(sizeof(struct callback
));
421 errx(1, "unable to allocate memory for callback");
424 cb
->cb_next
= callbacks
;
428 /* specially-handled commands */
429 static void setifaddr(const char *, int, int, const struct afswtch
*);
430 static const struct cmd setifaddr_cmd
= DEF_CMD("ifaddr", 0, setifaddr
);
432 static void setifdstaddr(const char *, int, int, const struct afswtch
*);
433 static const struct cmd setifdstaddr_cmd
=
434 DEF_CMD("ifdstaddr", 0, setifdstaddr
);
437 ifconfig(int argc
, char *const *argv
, int iscreate
, const struct afswtch
*afp
)
439 const struct afswtch
*nafp
;
443 strncpy(ifr
.ifr_name
, name
, sizeof ifr
.ifr_name
);
446 afp
= af_getbyname("inet");
447 ifr
.ifr_addr
.sa_family
=
448 afp
->af_af
== AF_LINK
|| afp
->af_af
== AF_UNSPEC
?
449 AF_INET
: afp
->af_af
;
451 if ((s
= socket(ifr
.ifr_addr
.sa_family
, SOCK_DGRAM
, 0)) < 0)
452 err(1, "socket(family %u,SOCK_DGRAM", ifr
.ifr_addr
.sa_family
);
457 p
= cmd_lookup(*argv
);
460 * Not a recognized command, choose between setting
461 * the interface address and the dst address.
463 p
= (setaddr
? &setifdstaddr_cmd
: &setifaddr_cmd
);
465 if (p
->c_u
.c_func
|| p
->c_u
.c_func2
) {
466 if (iscreate
&& !p
->c_iscloneop
) {
468 * Push the clone create callback so the new
469 * device is created and can be used for any
470 * remaining arguments.
474 errx(1, "internal error, no callback");
475 callbacks
= cb
->cb_next
;
476 cb
->cb_func(s
, cb
->cb_arg
);
479 * Handle any address family spec that
480 * immediately follows and potentially
481 * recreate the socket.
483 nafp
= af_getbyname(*argv
);
493 if (p
->c_parameter
== NEXTARG
) {
495 errx(1, "'%s' requires argument",
497 p
->c_u
.c_func(argv
[1], 0, s
, afp
);
499 } else if (p
->c_parameter
== OPTARG
) {
500 p
->c_u
.c_func(argv
[1], 0, s
, afp
);
503 } else if (p
->c_parameter
== NEXTARG2
) {
505 errx(1, "'%s' requires 2 arguments",
507 p
->c_u
.c_func2(argv
[1], argv
[2], s
, afp
);
508 argc
-= 2, argv
+= 2;
510 p
->c_u
.c_func(*argv
, p
->c_parameter
, s
, afp
);
516 * Do any post argument processing required by the address family.
518 if (afp
->af_postproc
!= NULL
)
519 afp
->af_postproc(s
, afp
);
521 * Do deferred callbacks registered while processing
522 * command-line arguments.
524 for (cb
= callbacks
; cb
!= NULL
; cb
= cb
->cb_next
)
525 cb
->cb_func(s
, cb
->cb_arg
);
527 * Do deferred operations.
530 if (afp
->af_ridreq
== NULL
|| afp
->af_difaddr
== 0) {
531 warnx("interface %s cannot change %s addresses!",
538 strncpy(afp
->af_ridreq
, name
, sizeof ifr
.ifr_name
);
539 ret
= ioctl(s
, afp
->af_difaddr
, afp
->af_ridreq
);
541 if (errno
== EADDRNOTAVAIL
&& (doalias
>= 0)) {
542 /* means no previous address for interface */
544 Perror("ioctl (SIOCDIFADDR)");
548 if (afp
->af_addreq
== NULL
|| afp
->af_aifaddr
== 0) {
549 warnx("interface %s cannot change %s addresses!",
554 if (newaddr
&& (setaddr
|| setmask
)) {
555 strncpy(afp
->af_addreq
, name
, sizeof ifr
.ifr_name
);
556 if (ioctl(s
, afp
->af_aifaddr
, afp
->af_addreq
) < 0)
557 Perror("ioctl (SIOCAIFADDR)");
566 setifaddr(const char *addr
, int param
, int s
, const struct afswtch
*afp
)
568 if (afp
->af_getaddr
== NULL
)
571 * Delay the ioctl to set the interface addr until flags are all set.
572 * The address interpretation may depend on the flags,
573 * and the flags may change when the address is set.
576 if (doalias
== 0 && afp
->af_af
!= AF_LINK
)
578 afp
->af_getaddr(addr
, (doalias
>= 0 ? ADDR
: RIDADDR
));
582 settunnel(const char *src
, const char *dst
, int s
, const struct afswtch
*afp
)
584 struct addrinfo
*srcres
, *dstres
;
587 if (afp
->af_settunnel
== NULL
) {
588 warn("address family %s does not support tunnel setup",
593 if ((ecode
= getaddrinfo(src
, NULL
, NULL
, &srcres
)) != 0)
594 errx(1, "error in parsing address string: %s",
595 gai_strerror(ecode
));
597 if ((ecode
= getaddrinfo(dst
, NULL
, NULL
, &dstres
)) != 0)
598 errx(1, "error in parsing address string: %s",
599 gai_strerror(ecode
));
601 if (srcres
->ai_addr
->sa_family
!= dstres
->ai_addr
->sa_family
)
603 "source and destination address families do not match");
605 afp
->af_settunnel(s
, srcres
, dstres
);
607 freeaddrinfo(srcres
);
608 freeaddrinfo(dstres
);
613 deletetunnel(const char *vname
, int param
, int s
, const struct afswtch
*afp
)
616 if (ioctl(s
, SIOCDIFPHYADDR
, &ifr
) < 0)
617 err(1, "SIOCDIFPHYADDR");
621 setifnetmask(const char *addr
, int dummy __unused
, int s
,
622 const struct afswtch
*afp
)
624 if (afp
->af_getaddr
!= NULL
) {
626 afp
->af_getaddr(addr
, MASK
);
631 setifbroadaddr(const char *addr
, int dummy __unused
, int s
,
632 const struct afswtch
*afp
)
634 if (afp
->af_getaddr
!= NULL
)
635 afp
->af_getaddr(addr
, DSTADDR
);
639 setifipdst(const char *addr
, int dummy __unused
, int s
,
640 const struct afswtch
*afp
)
642 const struct afswtch
*inet
;
644 inet
= af_getbyname("inet");
647 inet
->af_getaddr(addr
, DSTADDR
);
653 notealias(const char *addr
, int param
, int s
, const struct afswtch
*afp
)
655 #define rqtosa(x) (&(((struct ifreq *)(afp->x))->ifr_addr))
656 if (setaddr
&& doalias
== 0 && param
< 0)
657 if (afp
->af_addreq
!= NULL
&& afp
->af_ridreq
!= NULL
)
658 bcopy((caddr_t
)rqtosa(af_addreq
),
659 (caddr_t
)rqtosa(af_ridreq
),
660 rqtosa(af_addreq
)->sa_len
);
672 setifdstaddr(const char *addr
, int param __unused
, int s
,
673 const struct afswtch
*afp
)
675 if (afp
->af_getaddr
!= NULL
)
676 afp
->af_getaddr(addr
, DSTADDR
);
680 * Note: doing an SIOCIGIFFLAGS scribbles on the union portion
681 * of the ifreq structure, which may confuse other parts of ifconfig.
682 * Make a private copy so we can avoid that.
685 setifflags(const char *vname
, int value
, int s
, const struct afswtch
*afp
)
690 bcopy((char *)&ifr
, (char *)&my_ifr
, sizeof(struct ifreq
));
692 if (ioctl(s
, SIOCGIFFLAGS
, (caddr_t
)&my_ifr
) < 0) {
693 Perror("ioctl (SIOCGIFFLAGS)");
696 strncpy(my_ifr
.ifr_name
, name
, sizeof (my_ifr
.ifr_name
));
697 flags
= (my_ifr
.ifr_flags
& 0xffff) | (my_ifr
.ifr_flagshigh
<< 16);
704 my_ifr
.ifr_flags
= flags
& 0xffff;
705 my_ifr
.ifr_flagshigh
= flags
>> 16;
706 if (ioctl(s
, SIOCSIFFLAGS
, (caddr_t
)&my_ifr
) < 0)
711 setifcap(const char *vname
, int value
, int s
, const struct afswtch
*afp
)
715 if (ioctl(s
, SIOCGIFCAP
, (caddr_t
)&ifr
) < 0) {
716 Perror("ioctl (SIOCGIFCAP)");
719 flags
= ifr
.ifr_curcap
;
725 flags
&= ifr
.ifr_reqcap
;
726 ifr
.ifr_reqcap
= flags
;
727 if (ioctl(s
, SIOCSIFCAP
, (caddr_t
)&ifr
) < 0)
732 setifmetric(const char *val
, int dummy __unused
, int s
,
733 const struct afswtch
*afp
)
735 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
736 ifr
.ifr_metric
= atoi(val
);
737 if (ioctl(s
, SIOCSIFMETRIC
, (caddr_t
)&ifr
) < 0)
738 warn("ioctl (set metric)");
742 setifmtu(const char *val
, int dummy __unused
, int s
,
743 const struct afswtch
*afp
)
745 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
746 ifr
.ifr_mtu
= atoi(val
);
747 if (ioctl(s
, SIOCSIFMTU
, (caddr_t
)&ifr
) < 0)
748 warn("ioctl (set mtu)");
752 setifname(const char *val
, int dummy __unused
, int s
,
753 const struct afswtch
*afp
)
757 newname
= strdup(val
);
758 if (newname
== NULL
) {
759 warn("no memory to set ifname");
762 ifr
.ifr_data
= newname
;
763 if (ioctl(s
, SIOCSIFNAME
, (caddr_t
)&ifr
) < 0) {
764 warn("ioctl (set name)");
768 strlcpy(name
, newname
, sizeof(name
));
773 "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6SMART\7RUNNING" \
774 "\10NOARP\11PROMISC\12ALLMULTI\13OACTIVE\14SIMPLEX\15LINK0\16LINK1\17LINK2" \
775 "\20MULTICAST\22PPROMISC\23MONITOR\24STATICARP\25NEEDSGIANT"
778 "\020\1RXCSUM\2TXCSUM\3NETCONS\4VLAN_MTU\5VLAN_HWTAGGING\6JUMBO_MTU\7POLLING" \
779 "\10VLAN_HWCSUM\11TSO4\12TSO6\13LRO\14WOL_UCAST\15WOL_MCAST\16WOL_MAGIC" \
783 * Print the status of the interface. If an address family was
784 * specified, show only it; otherwise, show them all.
787 status(const struct afswtch
*afp
, const struct sockaddr_dl
*sdl
,
796 afp
= af_getbyname("inet");
800 ifr
.ifr_addr
.sa_family
= afp
->af_af
== AF_LINK
? AF_INET
: afp
->af_af
;
801 strncpy(ifr
.ifr_name
, name
, sizeof(ifr
.ifr_name
));
803 s
= socket(ifr
.ifr_addr
.sa_family
, SOCK_DGRAM
, 0);
805 err(1, "socket(family %u,SOCK_DGRAM)", ifr
.ifr_addr
.sa_family
);
807 printf("%s: ", name
);
808 printb("flags", ifa
->ifa_flags
, IFFBITS
);
809 if (ioctl(s
, SIOCGIFMETRIC
, &ifr
) != -1)
810 printf(" metric %d", ifr
.ifr_metric
);
811 if (ioctl(s
, SIOCGIFMTU
, &ifr
) != -1)
812 printf(" mtu %d", ifr
.ifr_mtu
);
815 if (ioctl(s
, SIOCGIFCAP
, (caddr_t
)&ifr
) == 0) {
816 if (ifr
.ifr_curcap
!= 0) {
817 printb("\toptions", ifr
.ifr_curcap
, IFCAPBITS
);
820 if (supmedia
&& ifr
.ifr_reqcap
!= 0) {
821 printb("\tcapabilities", ifr
.ifr_reqcap
, IFCAPBITS
);
828 for (ift
= ifa
; ift
!= NULL
; ift
= ift
->ifa_next
) {
829 if (ift
->ifa_addr
== NULL
)
831 if (strcmp(ifa
->ifa_name
, ift
->ifa_name
) != 0)
834 const struct afswtch
*p
;
835 p
= af_getbyfamily(ift
->ifa_addr
->sa_family
);
836 if (p
!= NULL
&& p
->af_status
!= NULL
)
837 p
->af_status(s
, ift
);
838 } else if (afp
->af_af
== ift
->ifa_addr
->sa_family
)
839 afp
->af_status(s
, ift
);
842 if (allfamilies
|| afp
->af_af
== AF_LINK
) {
843 const struct afswtch
*lafp
;
846 * Hack; the link level address is received separately
847 * from the routing information so any address is not
848 * handled above. Cobble together an entry and invoke
849 * the status method specially.
851 lafp
= af_getbyname("lladdr");
853 info
.rti_info
[RTAX_IFA
] = (struct sockaddr
*)sdl
;
854 lafp
->af_status(s
, &info
);
860 else if (afp
->af_other_status
!= NULL
)
861 afp
->af_other_status(s
);
863 strncpy(ifs
.ifs_name
, name
, sizeof ifs
.ifs_name
);
864 if (ioctl(s
, SIOCGIFSTATUS
, &ifs
) == 0)
865 printf("%s", ifs
.ascii
);
874 af_all_tunnel_status(s
);
878 Perror(const char *cmd
)
883 errx(1, "%s: no such interface", cmd
);
887 errx(1, "%s: permission denied", cmd
);
896 * Print a value a la the %b format of the kernel's printf
899 printb(const char *s
, unsigned v
, const char *bits
)
904 if (bits
&& *bits
== 8)
905 printf("%s=%o", s
, v
);
907 printf("%s=%x", s
, v
);
911 while ((i
= *bits
++) != '\0') {
912 if (v
& (1 << (i
-1))) {
916 for (; (c
= *bits
) > 32; bits
++)
919 for (; *bits
> 32; bits
++)
927 ifmaybeload(const char *name
)
929 #define MOD_PREFIX_LEN 3 /* "if_" */
930 struct module_stat mstat
;
932 char ifkind
[IFNAMSIZ
+ MOD_PREFIX_LEN
], ifname
[IFNAMSIZ
], *dp
;
935 /* loading suppressed by the user */
939 /* trim the interface number off the end */
940 strlcpy(ifname
, name
, sizeof(ifname
));
941 for (dp
= ifname
; *dp
!= 0; dp
++)
947 /* turn interface and unit into module name */
948 strcpy(ifkind
, "if_");
949 strlcpy(ifkind
+ MOD_PREFIX_LEN
, ifname
,
950 sizeof(ifkind
) - MOD_PREFIX_LEN
);
952 /* scan files in kernel */
953 mstat
.version
= sizeof(struct module_stat
);
954 for (fileid
= kldnext(0); fileid
> 0; fileid
= kldnext(fileid
)) {
955 /* scan modules in file */
956 for (modid
= kldfirstmod(fileid
); modid
> 0;
957 modid
= modfnext(modid
)) {
958 if (modstat(modid
, &mstat
) < 0)
960 /* strip bus name if present */
961 if ((cp
= strchr(mstat
.name
, '/')) != NULL
) {
966 /* already loaded? */
967 if (strncmp(ifname
, cp
, strlen(ifname
) + 1) == 0 ||
968 strncmp(ifkind
, cp
, strlen(ifkind
) + 1) == 0)
973 /* not present, we should try to load it */
977 static struct cmd basic_cmds
[] = {
978 DEF_CMD("up", IFF_UP
, setifflags
),
979 DEF_CMD("down", -IFF_UP
, setifflags
),
980 DEF_CMD("arp", -IFF_NOARP
, setifflags
),
981 DEF_CMD("-arp", IFF_NOARP
, setifflags
),
982 DEF_CMD("debug", IFF_DEBUG
, setifflags
),
983 DEF_CMD("-debug", -IFF_DEBUG
, setifflags
),
984 DEF_CMD("promisc", IFF_PPROMISC
, setifflags
),
985 DEF_CMD("-promisc", -IFF_PPROMISC
, setifflags
),
986 DEF_CMD("add", IFF_UP
, notealias
),
987 DEF_CMD("alias", IFF_UP
, notealias
),
988 DEF_CMD("-alias", -IFF_UP
, notealias
),
989 DEF_CMD("delete", -IFF_UP
, notealias
),
990 DEF_CMD("remove", -IFF_UP
, notealias
),
992 #define EN_SWABIPS 0x1000
993 DEF_CMD("swabips", EN_SWABIPS
, setifflags
),
994 DEF_CMD("-swabips", -EN_SWABIPS
, setifflags
),
996 DEF_CMD_ARG("netmask", setifnetmask
),
997 DEF_CMD_ARG("metric", setifmetric
),
998 DEF_CMD_ARG("broadcast", setifbroadaddr
),
999 DEF_CMD_ARG("ipdst", setifipdst
),
1000 DEF_CMD_ARG2("tunnel", settunnel
),
1001 DEF_CMD("-tunnel", 0, deletetunnel
),
1002 DEF_CMD("deletetunnel", 0, deletetunnel
),
1003 DEF_CMD("link0", IFF_LINK0
, setifflags
),
1004 DEF_CMD("-link0", -IFF_LINK0
, setifflags
),
1005 DEF_CMD("link1", IFF_LINK1
, setifflags
),
1006 DEF_CMD("-link1", -IFF_LINK1
, setifflags
),
1007 DEF_CMD("link2", IFF_LINK2
, setifflags
),
1008 DEF_CMD("-link2", -IFF_LINK2
, setifflags
),
1009 DEF_CMD("monitor", IFF_MONITOR
, setifflags
),
1010 DEF_CMD("-monitor", -IFF_MONITOR
, setifflags
),
1011 DEF_CMD("staticarp", IFF_STATICARP
, setifflags
),
1012 DEF_CMD("-staticarp", -IFF_STATICARP
, setifflags
),
1013 DEF_CMD("rxcsum", IFCAP_RXCSUM
, setifcap
),
1014 DEF_CMD("-rxcsum", -IFCAP_RXCSUM
, setifcap
),
1015 DEF_CMD("txcsum", IFCAP_TXCSUM
, setifcap
),
1016 DEF_CMD("-txcsum", -IFCAP_TXCSUM
, setifcap
),
1017 DEF_CMD("netcons", IFCAP_NETCONS
, setifcap
),
1018 DEF_CMD("-netcons", -IFCAP_NETCONS
, setifcap
),
1019 DEF_CMD("polling", IFCAP_POLLING
, setifcap
),
1020 DEF_CMD("-polling", -IFCAP_POLLING
, setifcap
),
1021 DEF_CMD("tso", IFCAP_TSO
, setifcap
),
1022 DEF_CMD("-tso", -IFCAP_TSO
, setifcap
),
1023 DEF_CMD("lro", IFCAP_LRO
, setifcap
),
1024 DEF_CMD("-lro", -IFCAP_LRO
, setifcap
),
1025 DEF_CMD("wol", IFCAP_WOL
, setifcap
),
1026 DEF_CMD("-wol", -IFCAP_WOL
, setifcap
),
1027 DEF_CMD("wol_ucast", IFCAP_WOL_UCAST
, setifcap
),
1028 DEF_CMD("-wol_ucast", -IFCAP_WOL_UCAST
, setifcap
),
1029 DEF_CMD("wol_mcast", IFCAP_WOL_MCAST
, setifcap
),
1030 DEF_CMD("-wol_mcast", -IFCAP_WOL_MCAST
, setifcap
),
1031 DEF_CMD("wol_magic", IFCAP_WOL_MAGIC
, setifcap
),
1032 DEF_CMD("-wol_magic", -IFCAP_WOL_MAGIC
, setifcap
),
1033 DEF_CMD("normal", -IFF_LINK0
, setifflags
),
1034 DEF_CMD("compress", IFF_LINK0
, setifflags
),
1035 DEF_CMD("noicmp", IFF_LINK1
, setifflags
),
1036 DEF_CMD_ARG("mtu", setifmtu
),
1037 DEF_CMD_ARG("name", setifname
),
1040 static __constructor
void
1043 #define N(a) (sizeof(a) / sizeof(a[0]))
1046 for (i
= 0; i
< N(basic_cmds
); i
++)
1047 cmd_register(&basic_cmds
[i
]);