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 * 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.
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
29 * $FreeBSD: src/sbin/ifconfig/ifconfig.c,v 1.113.2.4 2006/02/09 10:48:43 yar Exp $
32 #include <sys/param.h>
33 #include <sys/ioctl.h>
34 #include <sys/socket.h>
35 #include <sys/sysctl.h>
37 #include <sys/module.h>
38 #include <sys/linker.h>
39 #include <sys/cdefs.h>
41 #include <net/ethernet.h>
43 #include <net/if_var.h>
44 #include <net/if_dl.h>
45 #include <net/if_types.h>
46 #include <net/route.h>
49 #include <netinet/in.h>
50 #include <netinet/in_var.h>
51 #include <arpa/inet.h>
66 * Since "struct ifreq" is composed of various union members, callers
67 * should pay special attention to interprete the value.
68 * (.e.g. little/big endian difference in the structure.)
82 int printkeys
= 0; /* Print keying material for interfaces. */
83 int printname
= 0; /* Print the name of the created interface. */
85 static int ifconfig(int argc
, char *const *argv
, int, const struct afswtch
*afp
);
86 static void status(const struct afswtch
*afp
, int addrcount
,
87 struct sockaddr_dl
*sdl
, struct if_msghdr
*ifm
,
88 struct ifa_msghdr
*ifam
);
89 static void tunnel_status(int s
);
90 static void usage(void) __dead2
;
92 static struct afswtch
*af_getbyname(const char *name
);
93 static struct afswtch
*af_getbyfamily(int af
);
94 static void af_other_status(int);
96 static struct option
*opts
= NULL
;
99 opt_register(struct option
*p
)
111 /* XXX not right but close enough for now */
113 for (p
= opts
; p
!= NULL
; p
= p
->next
) {
114 strlcat(options
, p
->opt_usage
, sizeof(options
));
115 strlcat(options
, " ", sizeof(options
));
119 "usage: ifconfig %sinterface address_family [address [dest_address]]\n"
121 " ifconfig interface create\n"
122 " ifconfig -a %s[-d] [-m] [-u] [-v] [address_family]\n"
123 " ifconfig -l [-d] [-u] [address_family]\n"
124 " ifconfig %s[-d] [-m] [-u] [-v]\n",
125 options
, options
, options
);
130 main(int argc
, char *argv
[])
132 int c
, all
, namesonly
, downonly
, uponly
;
133 int need_nl
= 0, count
= 0;
134 const struct afswtch
*afp
= NULL
;
135 int addrcount
, ifindex
;
136 struct if_msghdr
*ifm
, *nextifm
;
137 struct ifa_msghdr
*ifam
;
138 struct sockaddr_dl
*sdl
;
139 char *buf
, *lim
, *next
;
147 all
= downonly
= uponly
= namesonly
= verbose
= 0;
149 /* Parse leading line options */
150 strlcpy(options
, "adklmuv", sizeof(options
));
151 for (p
= opts
; p
!= NULL
; p
= p
->next
)
152 strlcat(options
, p
->opt
, sizeof(options
));
153 while ((c
= getopt(argc
, argv
, options
)) != -1) {
155 case 'a': /* scan all interfaces */
158 case 'd': /* restrict scan to "down" interfaces */
164 case 'l': /* scan interface names only */
167 case 'm': /* show media choices in status */
170 case 'u': /* restrict scan to "up" interfaces */
177 for (p
= opts
; p
!= NULL
; p
= p
->next
)
178 if (p
->opt
[0] == c
) {
190 /* -l cannot be used with -a or -m */
191 if (namesonly
&& (all
|| supmedia
))
195 if (uponly
&& downonly
)
198 /* no arguments is equivalent to '-a' */
199 if (!namesonly
&& argc
< 1)
202 /* -a and -l allow an address family arg to limit the output */
203 if (all
|| namesonly
) {
210 afp
= af_getbyname(*argv
);
213 if (afp
->af_name
!= NULL
)
215 /* leave with afp non-zero */
218 /* not listing, need an argument */
225 /* check and maybe load support for this interface */
227 ifindex
= if_nametoindex(ifname
);
230 * NOTE: We must special-case the `create' command
231 * right here as we would otherwise fail when trying
232 * to find the interface.
234 if (argc
> 0 && (strcmp(argv
[0], "create") == 0 ||
235 strcmp(argv
[0], "plumb") == 0)) {
236 iflen
= strlcpy(name
, ifname
, sizeof(name
));
237 if (iflen
>= sizeof(name
))
238 errx(1, "%s: cloning name too long",
240 ifconfig(argc
, argv
, 1, NULL
);
243 errx(1, "interface %s does not exist", ifname
);
247 /* Check for address family */
249 afp
= af_getbyname(*argv
);
258 mib
[3] = 0; /* address family */
259 mib
[4] = NET_RT_IFLIST
;
260 mib
[5] = ifindex
; /* interface index */
262 /* if particular family specified, only ask about it */
266 if (sysctl(mib
, 6, NULL
, &needed
, NULL
, 0) < 0)
267 errx(1, "iflist-sysctl-estimate");
268 if ((buf
= malloc(needed
)) == NULL
)
270 if (sysctl(mib
, 6, buf
, &needed
, NULL
, 0) < 0) {
271 if (errno
== ENOMEM
&& count
++ < 10) {
272 warnx("Routing table grew, retrying");
277 errx(1, "actual retrieval of interface table");
285 ifm
= (struct if_msghdr
*)next
;
287 if (ifm
->ifm_type
== RTM_IFINFO
) {
289 if (ifm
->ifm_data
.ifi_datalen
== 0)
290 ifm
->ifm_data
.ifi_datalen
= sizeof(struct if_data
);
291 sdl
= (struct sockaddr_dl
*)((char *)ifm
+ sizeof(struct if_msghdr
) -
292 sizeof(struct if_data
) + ifm
->ifm_data
.ifi_datalen
);
294 sdl
= (struct sockaddr_dl
*)(ifm
+ 1);
296 flags
= ifm
->ifm_flags
;
298 fprintf(stderr
, "out of sync parsing NET_RT_IFLIST\n");
299 fprintf(stderr
, "expected %d, got %d\n", RTM_IFINFO
,
301 fprintf(stderr
, "msglen = %d\n", ifm
->ifm_msglen
);
302 fprintf(stderr
, "buf:%p, next:%p, lim:%p\n", buf
, next
,
307 next
+= ifm
->ifm_msglen
;
312 nextifm
= (struct if_msghdr
*)next
;
314 if (nextifm
->ifm_type
!= RTM_NEWADDR
)
318 ifam
= (struct ifa_msghdr
*)nextifm
;
321 next
+= nextifm
->ifm_msglen
;
324 if (sizeof(name
) <= sdl
->sdl_nlen
)
325 name_len
= sizeof(name
) - 1;
327 name_len
= sdl
->sdl_nlen
;
329 memcpy(name
, sdl
->sdl_data
, name_len
);
330 name
[name_len
] = '\0';
332 if (all
|| namesonly
) {
334 if ((flags
& IFF_UP
) == 0)
335 continue; /* not up */
338 continue; /* not down */
340 if (afp
== NULL
|| afp
->af_af
!= AF_LINK
||
341 sdl
->sdl_type
== IFT_ETHER
) {
352 ifconfig(argc
, argv
, 0, afp
);
354 status(afp
, addrcount
, sdl
, ifm
, ifam
);
358 if (namesonly
&& need_nl
> 0)
361 printf("%s\n", name
);
366 static struct afswtch
*afs
= NULL
;
369 af_register(struct afswtch
*p
)
375 static struct afswtch
*
376 af_getbyname(const char *name
)
380 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
)
381 if (strcmp(afp
->af_name
, name
) == 0)
386 static struct afswtch
*
387 af_getbyfamily(int af
)
391 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
)
392 if (afp
->af_af
== af
)
398 af_other_status(int s
)
401 uint8_t afmask
[howmany(AF_MAX
, NBBY
)];
403 memset(afmask
, 0, sizeof(afmask
));
404 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
) {
405 if (afp
->af_other_status
== NULL
)
407 if (afp
->af_af
!= AF_UNSPEC
&& isset(afmask
, afp
->af_af
))
409 afp
->af_other_status(s
);
410 setbit(afmask
, afp
->af_af
);
415 af_all_tunnel_status(int s
)
418 uint8_t afmask
[howmany(AF_MAX
, NBBY
)];
420 memset(afmask
, 0, sizeof(afmask
));
421 for (afp
= afs
; afp
!= NULL
; afp
= afp
->af_next
) {
422 if (afp
->af_status_tunnel
== NULL
)
424 if (afp
->af_af
!= AF_UNSPEC
&& isset(afmask
, afp
->af_af
))
426 afp
->af_status_tunnel(s
);
427 setbit(afmask
, afp
->af_af
);
431 static struct cmd
*cmds
= NULL
;
434 cmd_register(struct cmd
*p
)
440 static const struct cmd
*
441 cmd_lookup(const char *name
, int iscreate
)
443 #define N(a) (sizeof(a)/sizeof(a[0]))
446 for (p
= cmds
; p
!= NULL
; p
= p
->c_next
)
447 if (strcmp(name
, p
->c_name
) == 0) {
461 callback_func
*cb_func
;
463 struct callback
*cb_next
;
465 static struct callback
*callbacks
= NULL
;
468 callback_register(callback_func
*func
, void *arg
)
472 cb
= malloc(sizeof(struct callback
));
474 errx(1, "unable to allocate memory for callback");
477 cb
->cb_next
= callbacks
;
481 /* specially-handled commands */
482 static void setifaddr(const char *, int, int, const struct afswtch
*);
483 static const struct cmd setifaddr_cmd
= DEF_CMD("ifaddr", 0, setifaddr
);
485 static void setifdstaddr(const char *, int, int, const struct afswtch
*);
486 static const struct cmd setifdstaddr_cmd
=
487 DEF_CMD("ifdstaddr", 0, setifdstaddr
);
490 ifconfig(int argc
, char *const *argv
, int iscreate
, const struct afswtch
*uafp
)
492 const struct afswtch
*afp
, *nafp
;
496 strncpy(ifr
.ifr_name
, name
, sizeof ifr
.ifr_name
);
497 afp
= uafp
!= NULL
? uafp
: af_getbyname("inet");
499 ifr
.ifr_addr
.sa_family
=
500 afp
->af_af
== AF_LINK
|| afp
->af_af
== AF_UNSPEC
?
501 AF_INET
: afp
->af_af
;
503 if ((s
= socket(ifr
.ifr_addr
.sa_family
, SOCK_DGRAM
, 0)) < 0)
504 err(1, "socket(family %u,SOCK_DGRAM", ifr
.ifr_addr
.sa_family
);
509 p
= cmd_lookup(*argv
, iscreate
);
511 if (iscreate
&& p
== NULL
) {
513 * Push the clone create callback so the new
514 * device is created and can be used for any
515 * remaining arguments.
519 errx(1, "internal error, no callback");
520 callbacks
= cb
->cb_next
;
521 cb
->cb_func(s
, cb
->cb_arg
);
525 * After cloning, make sure we have an up-to-date name
528 strncpy(ifr
.ifr_name
, name
, sizeof(ifr
.ifr_name
));
531 * Handle any address family spec that
532 * immediately follows and potentially
533 * recreate the socket.
535 nafp
= af_getbyname(*argv
);
545 * Look for a normal parameter.
551 * Not a recognized command, choose between setting
552 * the interface address and the dst address.
554 p
= (setaddr
? &setifdstaddr_cmd
: &setifaddr_cmd
);
556 if (p
->c_u
.c_func
|| p
->c_u
.c_func2
) {
557 if (p
->c_parameter
== NEXTARG
) {
559 errx(1, "'%s' requires argument",
561 p
->c_u
.c_func(argv
[1], 0, s
, afp
);
563 } else if (p
->c_parameter
== OPTARG
) {
564 p
->c_u
.c_func(argv
[1], 0, s
, afp
);
567 } else if (p
->c_parameter
== NEXTARG2
) {
569 errx(1, "'%s' requires 2 arguments",
571 p
->c_u
.c_func2(argv
[1], argv
[2], s
, afp
);
572 argc
-= 2, argv
+= 2;
574 p
->c_u
.c_func(*argv
, p
->c_parameter
, s
, afp
);
580 * Do any post argument processing required by the address family.
582 if (afp
->af_postproc
!= NULL
)
583 afp
->af_postproc(s
, afp
);
585 * Do deferred callbacks registered while processing
586 * command-line arguments.
588 for (cb
= callbacks
; cb
!= NULL
; cb
= cb
->cb_next
)
589 cb
->cb_func(s
, cb
->cb_arg
);
591 * Do deferred operations.
594 if (afp
->af_ridreq
== NULL
|| afp
->af_difaddr
== 0) {
595 warnx("interface %s cannot change %s addresses!",
602 strncpy(afp
->af_ridreq
, name
, sizeof ifr
.ifr_name
);
603 ret
= ioctl(s
, afp
->af_difaddr
, afp
->af_ridreq
);
605 if (errno
== EADDRNOTAVAIL
&& (doalias
>= 0)) {
606 /* means no previous address for interface */
608 Perror("ioctl (SIOCDIFADDR)");
612 if (afp
->af_addreq
== NULL
|| afp
->af_aifaddr
== 0) {
613 warnx("interface %s cannot change %s addresses!",
618 if (newaddr
&& (setaddr
|| setmask
)) {
619 strncpy(afp
->af_addreq
, name
, sizeof ifr
.ifr_name
);
620 if (ioctl(s
, afp
->af_aifaddr
, afp
->af_addreq
) < 0)
621 Perror("ioctl (SIOCAIFADDR)");
630 setifaddr(const char *addr
, int param
, int s
, const struct afswtch
*afp
)
632 if (afp
->af_getaddr
== NULL
)
635 * Delay the ioctl to set the interface addr until flags are all set.
636 * The address interpretation may depend on the flags,
637 * and the flags may change when the address is set.
640 if (doalias
== 0 && afp
->af_af
!= AF_LINK
)
642 afp
->af_getaddr(addr
, (doalias
>= 0 ? ADDR
: RIDADDR
));
646 settunnel(const char *src
, const char *dst
, int s
, const struct afswtch
*afp
)
648 struct addrinfo
*srcres
, *dstres
;
651 if (afp
->af_settunnel
== NULL
) {
652 warn("address family %s does not support tunnel setup",
657 if ((ecode
= getaddrinfo(src
, NULL
, NULL
, &srcres
)) != 0)
658 errx(1, "error in parsing address string: %s",
659 gai_strerror(ecode
));
661 if ((ecode
= getaddrinfo(dst
, NULL
, NULL
, &dstres
)) != 0)
662 errx(1, "error in parsing address string: %s",
663 gai_strerror(ecode
));
665 if (srcres
->ai_addr
->sa_family
!= dstres
->ai_addr
->sa_family
)
667 "source and destination address families do not match");
669 afp
->af_settunnel(s
, srcres
, dstres
);
671 freeaddrinfo(srcres
);
672 freeaddrinfo(dstres
);
677 deletetunnel(const char *vname
, int param
, int s
, const struct afswtch
*afp
)
680 if (ioctl(s
, SIOCDIFPHYADDR
, &ifr
) < 0)
681 err(1, "SIOCDIFPHYADDR");
685 setifnetmask(const char *addr
, int dummy __unused
, int s
,
686 const struct afswtch
*afp
)
688 if (afp
->af_getaddr
!= NULL
) {
690 afp
->af_getaddr(addr
, MASK
);
695 setifbroadaddr(const char *addr
, int dummy __unused
, int s
,
696 const struct afswtch
*afp
)
698 if (afp
->af_getaddr
!= NULL
)
699 afp
->af_getaddr(addr
, DSTADDR
);
703 notealias(const char *addr
, int param
, int s
, const struct afswtch
*afp
)
705 #define rqtosa(x) (&(((struct ifreq *)(afp->x))->ifr_addr))
706 if (setaddr
&& doalias
== 0 && param
< 0)
707 if (afp
->af_addreq
!= NULL
&& afp
->af_ridreq
!= NULL
)
708 bcopy((caddr_t
)rqtosa(af_addreq
),
709 (caddr_t
)rqtosa(af_ridreq
),
710 rqtosa(af_addreq
)->sa_len
);
722 setifdstaddr(const char *addr
, int param __unused
, int s
,
723 const struct afswtch
*afp
)
725 if (afp
->af_getaddr
!= NULL
)
726 afp
->af_getaddr(addr
, DSTADDR
);
730 * Note: doing an SIOCIGIFFLAGS scribbles on the union portion
731 * of the ifreq structure, which may confuse other parts of ifconfig.
732 * Make a private copy so we can avoid that.
735 setifflags(const char *vname
, int value
, int s
, const struct afswtch
*afp
)
739 bcopy((char *)&ifr
, (char *)&my_ifr
, sizeof(struct ifreq
));
741 if (ioctl(s
, SIOCGIFFLAGS
, (caddr_t
)&my_ifr
) < 0) {
742 Perror("ioctl (SIOCGIFFLAGS)");
745 strncpy(my_ifr
.ifr_name
, name
, sizeof (my_ifr
.ifr_name
));
746 flags
= (my_ifr
.ifr_flags
& 0xffff) | (my_ifr
.ifr_flagshigh
<< 16);
753 my_ifr
.ifr_flags
= flags
& 0xffff;
754 my_ifr
.ifr_flagshigh
= flags
>> 16;
755 if (ioctl(s
, SIOCSIFFLAGS
, (caddr_t
)&my_ifr
) < 0)
760 setifcap(const char *vname
, int value
, int s
, const struct afswtch
*afp
)
763 if (ioctl(s
, SIOCGIFCAP
, (caddr_t
)&ifr
) < 0) {
764 Perror("ioctl (SIOCGIFCAP)");
767 flags
= ifr
.ifr_curcap
;
773 ifr
.ifr_reqcap
= flags
;
774 if (ioctl(s
, SIOCSIFCAP
, (caddr_t
)&ifr
) < 0)
779 setifmetric(const char *val
, int dummy __unused
, int s
,
780 const struct afswtch
*afp
)
782 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
783 ifr
.ifr_metric
= atoi(val
);
784 if (ioctl(s
, SIOCSIFMETRIC
, (caddr_t
)&ifr
) < 0)
785 warn("ioctl (set metric)");
789 setifmtu(const char *val
, int dummy __unused
, int s
,
790 const struct afswtch
*afp
)
792 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
793 ifr
.ifr_mtu
= atoi(val
);
794 if (ioctl(s
, SIOCSIFMTU
, (caddr_t
)&ifr
) < 0)
795 warn("ioctl (set mtu)");
799 setiftsolen(const char *val
, int dummy __unused
, int s
,
800 const struct afswtch
*afp
)
802 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
803 ifr
.ifr_tsolen
= atoi(val
);
804 if (ioctl(s
, SIOCSIFTSOLEN
, (caddr_t
)&ifr
) < 0)
805 warn("ioctl (set tsolen)");
809 setifname(const char *val
, int dummy __unused
, int s
,
810 const struct afswtch
*afp
)
814 newname
= strdup(val
);
815 if (newname
== NULL
) {
816 warn("no memory to set ifname");
819 ifr
.ifr_data
= newname
;
820 if (ioctl(s
, SIOCSIFNAME
, (caddr_t
)&ifr
) < 0) {
821 warn("ioctl (set name)");
825 strlcpy(name
, newname
, sizeof(name
));
829 * Even if we just created the interface, we don't need to print
830 * its name because we just nailed it down separately.
836 setifpollcpu(const char *val
, int dummy __unused
, int s
,
837 const struct afswtch
*afp
)
839 warnx("pollcpu is deprecated, use polling or npolling instead");
840 setifflags("npolling", IFF_NPOLLING
, s
, afp
);
844 * Expand the compacted form of addresses as returned via the
845 * configuration read via sysctl().
848 rt_xaddrs(caddr_t cp
, caddr_t cplim
, struct rt_addrinfo
*rtinfo
)
853 memset(rtinfo
->rti_info
, 0, sizeof(rtinfo
->rti_info
));
854 for (i
= 0; (i
< RTAX_MAX
) && (cp
< cplim
); i
++) {
855 if ((rtinfo
->rti_addrs
& (1 << i
)) == 0)
857 rtinfo
->rti_info
[i
] = sa
= (struct sockaddr
*)cp
;
863 "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6SMART\7RUNNING" \
864 "\10NOARP\11PROMISC\12ALLMULTI\14SIMPLEX\15LINK0\16LINK1\17LINK2" \
865 "\20MULTICAST\22PPROMISC\23MONITOR\24STATICARP\25NPOLLING"
868 "\020\1RXCSUM\2TXCSUM\3NETCONS\4VLAN_MTU\5VLAN_HWTAGGING\6JUMBO_MTU\7RSS" \
869 "\10VLAN_HWCSUM\11TSO"
872 * Print the status of the interface. If an address family was
873 * specified, show only it; otherwise, show them all.
876 status(const struct afswtch
*afp
, int addrcount
, struct sockaddr_dl
*sdl
,
877 struct if_msghdr
*ifm
, struct ifa_msghdr
*ifam
)
879 struct rt_addrinfo info
;
885 afp
= af_getbyname("inet");
889 ifr
.ifr_addr
.sa_family
= afp
->af_af
== AF_LINK
? AF_INET
: afp
->af_af
;
890 strncpy(ifr
.ifr_name
, name
, sizeof(ifr
.ifr_name
));
892 s
= socket(ifr
.ifr_addr
.sa_family
, SOCK_DGRAM
, 0);
894 err(1, "socket(family %u,SOCK_DGRAM)", ifr
.ifr_addr
.sa_family
);
896 printf("%s: ", name
);
897 printb("flags", flags
, IFFBITS
);
898 if (ifm
->ifm_data
.ifi_metric
)
899 printf(" metric %ld", ifm
->ifm_data
.ifi_metric
);
900 if (ifm
->ifm_data
.ifi_mtu
)
901 printf(" mtu %ld", ifm
->ifm_data
.ifi_mtu
);
904 if (ioctl(s
, SIOCGIFCAP
, (caddr_t
)&ifr
) == 0) {
905 if (ifr
.ifr_curcap
!= 0) {
906 printb("\toptions", ifr
.ifr_curcap
, IFCAPBITS
);
909 if (supmedia
&& ifr
.ifr_reqcap
!= 0) {
910 printb("\tcapabilities", ifr
.ifr_reqcap
, IFCAPBITS
);
912 if (ifr
.ifr_reqcap
& IFCAP_TSO
) {
913 if (ioctl(s
, SIOCGIFTSOLEN
,
914 (caddr_t
)&ifr
) == 0) {
915 printf("\ttsolen %d", ifr
.ifr_tsolen
);
924 while (addrcount
> 0) {
925 info
.rti_addrs
= ifam
->ifam_addrs
;
926 /* Expand the compacted addresses */
927 rt_xaddrs((char *)(ifam
+ 1), ifam
->ifam_msglen
+ (char *)ifam
,
931 const struct afswtch
*p
;
932 p
= af_getbyfamily(info
.rti_info
[RTAX_IFA
]->sa_family
);
933 if (p
!= NULL
&& p
->af_status
!= NULL
)
934 p
->af_status(s
, &info
);
935 } else if (afp
->af_af
== info
.rti_info
[RTAX_IFA
]->sa_family
)
936 afp
->af_status(s
, &info
);
938 ifam
= (struct ifa_msghdr
*)((char *)ifam
+ ifam
->ifam_msglen
);
940 if (allfamilies
|| afp
->af_af
== AF_LINK
) {
941 const struct afswtch
*lafp
;
944 * Hack; the link level address is received separately
945 * from the routing information so any address is not
946 * handled above. Cobble together an entry and invoke
947 * the status method specially.
949 lafp
= af_getbyname("lladdr");
951 info
.rti_info
[RTAX_IFA
] = (struct sockaddr
*)sdl
;
952 lafp
->af_status(s
, &info
);
957 else if (afp
->af_other_status
!= NULL
)
958 afp
->af_other_status(s
);
960 strncpy(ifs
.ifs_name
, name
, sizeof ifs
.ifs_name
);
961 if (ioctl(s
, SIOCGIFSTATUS
, &ifs
) == 0)
962 printf("%s", ifs
.ascii
);
971 af_all_tunnel_status(s
);
975 Perror(const char *cmd
)
980 errx(1, "%s: no such interface", cmd
);
984 errx(1, "%s: permission denied", cmd
);
993 * Print a value a la the %b format of the kernel's printf
996 printb(const char *s
, unsigned v
, const char *bits
)
1001 if (bits
&& *bits
== 8)
1002 printf("%s=%o", s
, v
);
1004 printf("%s=%x", s
, v
);
1008 while ((i
= *bits
++) != '\0') {
1009 if (v
& (1 << (i
-1))) {
1013 for (; (c
= *bits
) > 32; bits
++)
1016 for (; *bits
> 32; bits
++)
1024 ifmaybeload(const char *name
)
1026 #define MOD_PREFIX_LEN 3 /* "if_" */
1027 struct module_stat mstat
;
1029 char ifkind
[IFNAMSIZ
+ MOD_PREFIX_LEN
], ifname
[IFNAMSIZ
], *dp
;
1032 /* trim the interface number off the end */
1033 strlcpy(ifname
, name
, sizeof(ifname
));
1034 for (dp
= ifname
; *dp
!= 0; dp
++)
1040 /* turn interface and unit into module name */
1041 strlcpy(ifkind
, "if_", sizeof(ifkind
));
1042 strlcat(ifkind
, ifname
, sizeof(ifkind
));
1044 /* scan files in kernel */
1045 mstat
.version
= sizeof(struct module_stat
);
1046 for (fileid
= kldnext(0); fileid
> 0; fileid
= kldnext(fileid
)) {
1047 /* scan modules in file */
1048 for (modid
= kldfirstmod(fileid
); modid
> 0;
1049 modid
= modfnext(modid
)) {
1050 if (modstat(modid
, &mstat
) < 0)
1052 /* strip bus name if present */
1053 if ((cp
= strchr(mstat
.name
, '/')) != NULL
) {
1058 /* already loaded? */
1059 if (strcmp(ifname
, cp
) == 0 ||
1060 strcmp(ifkind
, cp
) == 0)
1065 /* not present, we should try to load it */
1069 static struct cmd basic_cmds
[] = {
1070 DEF_CMD("up", IFF_UP
, setifflags
),
1071 DEF_CMD("down", -IFF_UP
, setifflags
),
1072 DEF_CMD("arp", -IFF_NOARP
, setifflags
),
1073 DEF_CMD("-arp", IFF_NOARP
, setifflags
),
1074 DEF_CMD("debug", IFF_DEBUG
, setifflags
),
1075 DEF_CMD("-debug", -IFF_DEBUG
, setifflags
),
1076 DEF_CMD("promisc", IFF_PPROMISC
, setifflags
),
1077 DEF_CMD("-promisc", -IFF_PPROMISC
, setifflags
),
1078 DEF_CMD("add", IFF_UP
, notealias
),
1079 DEF_CMD("alias", IFF_UP
, notealias
),
1080 DEF_CMD("-alias", -IFF_UP
, notealias
),
1081 DEF_CMD("delete", -IFF_UP
, notealias
),
1082 DEF_CMD("remove", -IFF_UP
, notealias
),
1084 #define EN_SWABIPS 0x1000
1085 DEF_CMD("swabips", EN_SWABIPS
, setifflags
),
1086 DEF_CMD("-swabips", -EN_SWABIPS
, setifflags
),
1088 DEF_CMD_ARG("netmask", setifnetmask
),
1089 DEF_CMD_ARG("metric", setifmetric
),
1090 DEF_CMD_ARG("broadcast", setifbroadaddr
),
1091 DEF_CMD_ARG2("tunnel", settunnel
),
1092 DEF_CMD("-tunnel", 0, deletetunnel
),
1093 DEF_CMD("deletetunnel", 0, deletetunnel
),
1094 DEF_CMD("link0", IFF_LINK0
, setifflags
),
1095 DEF_CMD("-link0", -IFF_LINK0
, setifflags
),
1096 DEF_CMD("link1", IFF_LINK1
, setifflags
),
1097 DEF_CMD("-link1", -IFF_LINK1
, setifflags
),
1098 DEF_CMD("link2", IFF_LINK2
, setifflags
),
1099 DEF_CMD("-link2", -IFF_LINK2
, setifflags
),
1100 DEF_CMD("monitor", IFF_MONITOR
, setifflags
),
1101 DEF_CMD("-monitor", -IFF_MONITOR
, setifflags
),
1102 DEF_CMD("staticarp", IFF_STATICARP
, setifflags
),
1103 DEF_CMD("-staticarp", -IFF_STATICARP
, setifflags
),
1104 DEF_CMD("polling", IFF_NPOLLING
, setifflags
),
1105 DEF_CMD("-polling", -IFF_NPOLLING
, setifflags
),
1106 DEF_CMD("npolling", IFF_NPOLLING
, setifflags
),
1107 DEF_CMD("-npolling", -IFF_NPOLLING
, setifflags
),
1108 DEF_CMD("rxcsum", IFCAP_RXCSUM
, setifcap
),
1109 DEF_CMD("-rxcsum", -IFCAP_RXCSUM
, setifcap
),
1110 DEF_CMD("txcsum", IFCAP_TXCSUM
, setifcap
),
1111 DEF_CMD("-txcsum", -IFCAP_TXCSUM
, setifcap
),
1112 DEF_CMD("netcons", IFCAP_NETCONS
, setifcap
),
1113 DEF_CMD("-netcons", -IFCAP_NETCONS
, setifcap
),
1114 DEF_CMD("rss", IFCAP_RSS
, setifcap
),
1115 DEF_CMD("-rss", -IFCAP_RSS
, setifcap
),
1116 DEF_CMD("tso", IFCAP_TSO
, setifcap
),
1117 DEF_CMD("-tso", -IFCAP_TSO
, setifcap
),
1118 DEF_CMD("normal", -IFF_LINK0
, setifflags
),
1119 DEF_CMD("compress", IFF_LINK0
, setifflags
),
1120 DEF_CMD("noicmp", IFF_LINK1
, setifflags
),
1121 DEF_CMD_ARG("mtu", setifmtu
),
1122 DEF_CMD_ARG("name", setifname
),
1123 DEF_CMD_ARG("pollcpu", setifpollcpu
),
1124 DEF_CMD_ARG("tsolen", setiftsolen
)
1127 static __constructor(101) void
1130 #define N(a) (sizeof(a) / sizeof(a[0]))
1133 for (i
= 0; i
< N(basic_cmds
); i
++)
1134 cmd_register(&basic_cmds
[i
]);