1 /* $FreeBSD: src/usr.sbin/gifconfig/gifconfig.c,v 1.2.2.4 2002/08/30 14:23:39 sobomax Exp $ */
2 /* $KAME: gifconfig.c,v 1.14 2001/01/01 04:04:56 jinmei Exp $ */
5 * Copyright (c) 1983, 1993
6 * The Regents of the University of California. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * gifconfig, derived from ifconfig
36 * @(#) Copyright (c) 1983, 1993\n\
37 * The Regents of the University of California. All rights reserved.\n
39 * @(#)ifconfig.c 8.2 (Berkeley) 2/16/94
43 * 951109 - Andrew@pubnix.net - Changed to iterative buffer growing mechanism
44 * for ifconfig -a so all interfaces are queried.
46 * 960101 - peter@freebsd.org - Blow away the SIOCGIFCONF code and use
47 * sysctl() to get the structured interface conf
48 * and parse the messages in there. REALLY UGLY!
51 #include <sys/param.h>
52 #include <sys/socket.h>
53 #include <sys/ioctl.h>
54 #include <sys/sysctl.h>
57 #if defined(__DragonFly__)
58 #include <net/if_var.h>
59 #endif /* __DragonFly__ */
60 #include <net/if_dl.h>
61 #include <net/if_types.h>
62 #include <net/route.h>
63 #include <netinet/in.h>
64 #include <netinet/in_var.h>
65 #include <arpa/inet.h>
68 #include <sys/protosw.h>
82 struct ifaliasreq addreq
;
84 struct in6_ifreq in6_ifr
;
85 struct in6_aliasreq in6_addreq
;
98 char ntop_buf
[INET6_ADDRSTRLEN
]; /*inet_ntop()*/
101 void setifpsrc(char *, int);
102 void setifpdst(char *, int);
103 void setifflags(char *, int);
104 #ifdef SIOCDIFPHYADDR
105 void delifaddrs(char *, int);
108 #define NEXTARG 0xffffff
112 int c_parameter
; /* NEXTARG means next argv */
113 void (*c_func
)(char *, int);
115 { "up", IFF_UP
, setifflags
} ,
116 { "down", -IFF_UP
, setifflags
},
117 #ifdef SIOCDIFPHYADDR
118 { "delete", 0, delifaddrs
},
125 * XNS support liberally adapted from code written at the University of
126 * Maryland principally by James O'Toole and Chris Torek.
129 void phys_status(int);
132 void in6_status(int);
134 void ether_status(int);
136 void in_getaddr(char *, int);
138 void in6_getaddr(char *, int);
139 void in6_getprefix(char *, int);
141 void printb(char *, unsigned int, char *);
142 int prefix(void *, int);
144 char ntop_buf
[INET6_ADDRSTRLEN
];
146 /* Known address families */
150 void (*af_status
)(int);
151 void (*af_getaddr
)(char *, int);
152 void (*af_getprefix
)(char *, int);
157 #define C(x) ((caddr_t) &x)
158 { "inet", AF_INET
, in_status
, in_getaddr
, 0,
159 SIOCSIFPHYADDR
, C(addreq
), C(ifr
) },
161 { "inet6", AF_INET6
, in6_status
, in6_getaddr
, in6_getprefix
,
162 SIOCSIFPHYADDR_IN6
, C(in6_addreq
), C(in6_ifr
) },
164 { "ether", AF_INET
, ether_status
, NULL
, NULL
}, /* XXX not real!! */
168 struct afswtch
*afp
= NULL
; /*the address family being set or asked about*/
170 void rt_xaddrs(caddr_t
, caddr_t
, struct rt_addrinfo
*);
171 int ifconfig(int argc
, char *argv
[], int af
, struct afswtch
*rafp
);
176 * Expand the compacted form of addresses as returned via the
177 * configuration read via sysctl().
181 ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
182 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
185 rt_xaddrs(caddr_t cp
, caddr_t cplim
, struct rt_addrinfo
*rtinfo
)
190 memset(rtinfo
->rti_info
, 0, sizeof(rtinfo
->rti_info
));
191 for (i
= 0; (i
< RTAX_MAX
) && (cp
< cplim
); i
++) {
192 if ((rtinfo
->rti_addrs
& (1 << i
)) == 0)
194 rtinfo
->rti_info
[i
] = sa
= (struct sockaddr
*)cp
;
201 * Grunge for new-style sysctl() decoding.. :-(
202 * Apologies to the world for committing gross things like this in 1996..
204 struct if_msghdr
*ifm
;
205 struct ifa_msghdr
*ifam
;
206 struct sockaddr_dl
*sdl
;
207 struct rt_addrinfo info
;
208 char *buf
, *lim
, *next
;
212 main(int argc
, char **argv
)
215 struct afswtch
*rafp
= NULL
;
222 "usage: gifconfig interface [af] [physsrc physdst]\n");
223 #ifdef SIOCDIFPHYADDR
225 " gifconfig interface delete\n");
232 strncpy(name
, *argv
, sizeof(name
));
233 strncpy(ifr
.ifr_name
, name
, sizeof(ifr
.ifr_name
));
236 for (afp
= rafp
= afs
; rafp
->af_name
; rafp
++)
237 if (strcmp(rafp
->af_name
, *argv
) == 0) {
238 afp
= rafp
; argc
--; argv
++;
242 af
= ifr
.ifr_addr
.sa_family
= rafp
->af_af
;
248 mib
[3] = 0; /* address family */
249 mib
[4] = NET_RT_IFLIST
;
252 /* if particular family specified, only ask about it */
257 if (sysctl(mib
, 6, NULL
, &needed
, NULL
, 0) < 0)
258 errx(1, "iflist-sysctl-estimate");
259 if ((buf
= malloc(needed
)) == NULL
)
261 if (sysctl(mib
, 6, buf
, &needed
, NULL
, 0) < 0)
262 errx(1, "actual retrieval of interface table");
266 if (strcmp(name
, "-a") == 0)
267 all
= 1; /* All interfaces */
268 else if (strcmp(name
, "-au") == 0)
269 all
= 2; /* All IFF_UPinterfaces */
270 else if (strcmp(name
, "-ad") == 0)
271 all
= 3; /* All !IFF_UP interfaces */
273 for (next
= buf
; next
< lim
; next
+= ifm
->ifm_msglen
) {
275 ifm
= (struct if_msghdr
*)next
;
277 /* XXX: Swallow up leftover NEWADDR messages */
278 if (ifm
->ifm_type
== RTM_NEWADDR
)
281 if (ifm
->ifm_type
== RTM_IFINFO
) {
282 sdl
= (struct sockaddr_dl
*)(ifm
+ 1);
283 flags
= ifm
->ifm_flags
;
285 errx(1, "out of sync parsing NET_RT_IFLIST");
291 if (strlen(name
) != sdl
->sdl_nlen
)
292 continue; /* not same len */
293 if (strncmp(name
, sdl
->sdl_data
, sdl
->sdl_nlen
) != 0)
294 continue; /* not same name */
297 break; /* always do it */
299 if ((flags
& IFF_UP
) == 0)
300 continue; /* not up */
304 continue; /* not down */
309 * Let's just do it for gif only
311 if (sdl
->sdl_type
!= IFT_GIF
) {
315 fprintf(stderr
, "gifconfig: %s is not gif.\n",
321 strncpy(name
, sdl
->sdl_data
, sdl
->sdl_nlen
);
322 name
[sdl
->sdl_nlen
] = '\0';
325 if ((s
= socket(af
, SOCK_DGRAM
, 0)) < 0) {
326 perror("gifconfig: socket");
330 ifconfig(argc
,argv
,af
,rafp
);
335 all
= -1; /* flag it as 'done' */
342 errx(1, "interface %s does not exist", name
);
350 ifconfig(int argc
, char **argv
, int af
, struct afswtch
*rafp
)
355 strncpy(ifr
.ifr_name
, name
, sizeof ifr
.ifr_name
);
357 strncpy(in6_ifr
.ifr_name
, name
, sizeof in6_ifr
.ifr_name
);
360 if (ioctl(s
, SIOCGIFMETRIC
, (caddr_t
)&ifr
) < 0)
361 perror("ioctl (SIOCGIFMETRIC)");
363 metric
= ifr
.ifr_metric
;
365 #if defined(SIOCGIFMTU) && !defined(__OpenBSD__)
366 if (ioctl(s
, SIOCGIFMTU
, (caddr_t
)&ifr
) < 0)
367 perror("ioctl (SIOCGIFMTU)");
382 for (p
= cmds
; p
->c_name
; p
++)
383 if (strcmp(*argv
, p
->c_name
) == 0)
385 if (p
->c_name
== NULL
&& setpsrc
)
386 p
++; /* got src, do dst */
388 if (p
->c_parameter
== NEXTARG
) {
390 errx(1, "'%s' requires argument",
392 (*p
->c_func
)(argv
[1], 0);
395 (*p
->c_func
)(*argv
, p
->c_parameter
);
400 strncpy(rafp
->af_addreq
, name
, sizeof ifr
.ifr_name
);
401 if (ioctl(s
, rafp
->af_pifaddr
, rafp
->af_addreq
) < 0)
402 Perror("ioctl (SIOCSIFPHYADDR)");
405 errx(1, "destination is not specified");
414 setifpsrc(char *addr
, int param
)
416 param
= 0; /*fool gcc*/
417 (*afp
->af_getaddr
)(addr
, PSRC
);
423 setifpdst(char *addr
, int param
)
425 param
= 0; /*fool gcc*/
426 (*afp
->af_getaddr
)(addr
, PDST
);
431 setifflags(char *vname
, int value
)
433 if (ioctl(s
, SIOCGIFFLAGS
, (caddr_t
)&ifr
) < 0) {
434 Perror("ioctl (SIOCGIFFLAGS)");
437 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
438 flags
= (ifr
.ifr_flags
& 0xffff) | (ifr
.ifr_flagshigh
<< 16);
445 ifr
.ifr_flags
= flags
& 0xffff;
446 ifr
.ifr_flagshigh
= flags
>> 16;
447 if (ioctl(s
, SIOCSIFFLAGS
, (caddr_t
)&ifr
) < 0)
451 #ifdef SIOCDIFPHYADDR
454 delifaddrs(char *vname
, int param
)
456 param
= 0; /* fool gcc */
457 vname
= NULL
; /* ditto */
459 if (ioctl(s
, SIOCDIFPHYADDR
, (caddr_t
)&ifr
) < 0)
460 err(1, "ioctl(SIOCDIFPHYADDR)");
465 "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6NOTRAILERS\7RUNNING\10NOARP\
466 \11PROMISC\12ALLMULTI\13OACTIVE\14SIMPLEX\15LINK0\16LINK1\17LINK2\20MULTICAST"
469 * Print the status of the interface. If an address family was
470 * specified, show it and it only; otherwise, show them all.
475 struct afswtch
*p
= NULL
;
477 struct if_msghdr
*myifm
;
479 printf("%s: ", name
);
480 printb("flags", flags
, IFFBITS
);
482 printf(" metric %d", metric
);
484 printf(" mtu %d", mtu
);
488 * XXX: Sigh. This is bad, I know. At this point, we may have
489 * *zero* RTM_NEWADDR's, so we have to "feel the water" before
490 * incrementing the loop. One day, I might feel inspired enough
491 * to get the top level loop to pass a count down here so we
492 * dont have to mess with this. -Peter
498 mynext
= next
+ ifm
->ifm_msglen
;
503 myifm
= (struct if_msghdr
*)mynext
;
505 if (myifm
->ifm_type
!= RTM_NEWADDR
)
510 ifm
= (struct if_msghdr
*)next
;
512 ifam
= (struct ifa_msghdr
*)myifm
;
513 info
.rti_addrs
= ifam
->ifam_addrs
;
515 /* Expand the compacted addresses */
516 rt_xaddrs((char *)(ifam
+ 1), ifam
->ifam_msglen
+ (char *)ifam
,
520 if (afp
->af_af
== info
.rti_info
[RTAX_IFA
]->sa_family
&&
521 afp
->af_status
!= ether_status
) {
523 if (p
->af_status
!= ether_status
)
526 } else for (p
= afs
; p
->af_name
; p
++) {
527 if (p
->af_af
== info
.rti_info
[RTAX_IFA
]->sa_family
&&
528 p
->af_status
!= ether_status
)
532 if (afp
== NULL
|| afp
->af_status
== ether_status
)
534 else if (afp
&& !p
) {
535 warnx("%s has no %s IFA address!", name
, afp
->af_name
);
542 phys_status(int force
)
546 int flags
= NI_NUMERICHOST
;
548 #ifndef SIOCGLIFPHYADDR
549 u_long srccmd
, dstcmd
;
555 force
= 0; /*fool gcc*/
557 psrcaddr
[0] = pdstaddr
[0] = '\0';
560 s6
= socket(AF_INET6
, SOCK_DGRAM
, 0);
563 srccmd
= SIOCGIFPSRCADDR
;
564 dstcmd
= SIOCGIFPDSTADDR
;
567 srccmd
= SIOCGIFPSRCADDR_IN6
;
568 dstcmd
= SIOCGIFPDSTADDR_IN6
;
569 ifrp
= (struct ifreq
*)&in6_ifr
;
573 srccmd
= SIOCGIFPSRCADDR
;
574 dstcmd
= SIOCGIFPDSTADDR
;
577 if (0 <= ioctl(s
, srccmd
, (caddr_t
)ifrp
)) {
579 if (ifrp
->ifr_addr
.sa_family
== AF_INET6
)
586 if (getnameinfo(&ifrp
->ifr_addr
, ifrp
->ifr_addr
.sa_len
,
587 psrcaddr
, sizeof(psrcaddr
), 0, 0, flags
) != 0)
590 if (0 <= ioctl(s
, dstcmd
, (caddr_t
)ifrp
)) {
591 if (getnameinfo(&ifrp
->ifr_addr
, ifrp
->ifr_addr
.sa_len
,
592 pdstaddr
, sizeof(pdstaddr
), 0, 0, flags
) != 0)
595 printf("\tphysical address %s %s --> %s\n", af
, psrcaddr
, pdstaddr
);
597 struct if_laddrreq iflr
;
599 force
= 0; /*fool gcc*/
601 psrcaddr
[0] = pdstaddr
[0] = '\0';
603 memset(&iflr
, 0, sizeof(iflr
));
604 memcpy(iflr
.iflr_name
, ifr
.ifr_name
, sizeof(iflr
.iflr_name
));
606 if (0 <= ioctl(s
, SIOCGLIFPHYADDR
, (caddr_t
)&iflr
)) {
607 switch (iflr
.addr
.ss_family
) {
617 if (getnameinfo((struct sockaddr
*)&iflr
.addr
, iflr
.addr
.ss_len
,
618 psrcaddr
, sizeof(psrcaddr
), 0, 0, flags
) != 0)
620 if (getnameinfo((struct sockaddr
*)&iflr
.dstaddr
,
621 iflr
.dstaddr
.ss_len
, pdstaddr
, sizeof(pdstaddr
), 0, 0,
625 printf("\tphysical address %s %s --> %s\n", af
, psrcaddr
, pdstaddr
);
632 struct sockaddr_in
*sin
, null_sin
;
637 memset(&null_sin
, 0, sizeof(null_sin
));
639 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_IFA
];
640 if (!sin
|| sin
->sin_family
!= AF_INET
) {
643 /* warnx("%s has no AF_INET IFA address!", name); */
646 printf("\tinet %s ", inet_ntoa(sin
->sin_addr
));
648 if (flags
& IFF_POINTOPOINT
) {
649 /* note RTAX_BRD overlap with IFF_BROADCAST */
650 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_BRD
];
653 printf("--> %s ", inet_ntoa(sin
->sin_addr
));
656 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_NETMASK
];
659 printf("netmask 0x%x ", (u_int32_t
)ntohl(sin
->sin_addr
.s_addr
));
661 if (flags
& IFF_BROADCAST
) {
662 /* note RTAX_BRD overlap with IFF_POINTOPOINT */
663 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_BRD
];
664 if (sin
&& sin
->sin_addr
.s_addr
!= 0)
665 printf("broadcast %s", inet_ntoa(sin
->sin_addr
));
672 in6_status(int force
)
674 struct sockaddr_in6
*sin
, null_sin
;
675 char hostname
[NI_MAXHOST
];
676 int niflags
= NI_NUMERICHOST
;
678 memset(&null_sin
, 0, sizeof(null_sin
));
679 #ifdef NI_WITHSCOPEID
680 niflags
|= NI_WITHSCOPEID
;
683 sin
= (struct sockaddr_in6
*)info
.rti_info
[RTAX_IFA
];
684 if (!sin
|| sin
->sin6_family
!= AF_INET6
) {
687 /* warnx("%s has no AF_INET6 IFA address!", name); */
691 if (IN6_IS_ADDR_LINKLOCAL(&sin
->sin6_addr
)) {
693 ntohs(*(u_int16_t
*)&sin
->sin6_addr
.s6_addr
[2]);
694 sin
->sin6_addr
.s6_addr
[2] = 0;
695 sin
->sin6_addr
.s6_addr
[3] = 0;
698 getnameinfo((struct sockaddr
*)sin
, sin
->sin6_len
,
699 hostname
, sizeof(hostname
), 0, 0, niflags
);
700 printf("\tinet6 %s ", hostname
);
702 if (flags
& IFF_POINTOPOINT
) {
703 /* note RTAX_BRD overlap with IFF_BROADCAST */
704 sin
= (struct sockaddr_in6
*)info
.rti_info
[RTAX_BRD
];
706 * some of ther interfaces do not have valid destination
709 if (sin
->sin6_family
== AF_INET6
) {
711 if (IN6_IS_ADDR_LINKLOCAL(&sin
->sin6_addr
)) {
713 ntohs(*(u_int16_t
*)&sin
->sin6_addr
.s6_addr
[2]);
714 sin
->sin6_addr
.s6_addr
[2] = 0;
715 sin
->sin6_addr
.s6_addr
[3] = 0;
718 getnameinfo((struct sockaddr
*)sin
, sin
->sin6_len
,
719 hostname
, sizeof(hostname
), 0, 0, niflags
);
720 printf("--> %s ", hostname
);
724 sin
= (struct sockaddr_in6
*)info
.rti_info
[RTAX_NETMASK
];
727 printf(" prefixlen %d ", prefix(&sin
->sin6_addr
,
728 sizeof(struct in6_addr
)));
736 ether_status(int dummy
)
741 dummy
= 0; /*fool gcc*/
743 cp
= (char *)LLADDR(sdl
);
744 if ((n
= sdl
->sdl_alen
) > 0) {
745 if (sdl
->sdl_type
== IFT_ETHER
)
748 printf ("\tlladdr ");
750 printf("%02x%c",*cp
++ & 0xff, n
>0? ':' : ' ');
761 errx(1, "%s: no such interface", cmd
);
765 errx(1, "%s: permission denied", cmd
);
773 #define SIN(x) ((struct sockaddr_in *) &(x))
774 struct sockaddr_in
*sintab
[] = {
775 SIN(addreq
.ifra_addr
), SIN(addreq
.ifra_dstaddr
)};
778 in_getaddr(char *s
, int which
)
780 struct sockaddr_in
*sin
= sintab
[which
];
784 sin
->sin_len
= sizeof(*sin
);
785 sin
->sin_family
= AF_INET
;
787 if (inet_aton(s
, &sin
->sin_addr
))
789 else if ((hp
= gethostbyname(s
)) != NULL
)
790 bcopy(hp
->h_addr
, (char *)&sin
->sin_addr
, hp
->h_length
);
791 else if ((np
= getnetbyname(s
)) != NULL
)
792 sin
->sin_addr
= inet_makeaddr(np
->n_net
, INADDR_ANY
);
794 errx(1, "%s: bad value", s
);
798 #define SIN6(x) ((struct sockaddr_in6 *) &(x))
799 struct sockaddr_in6
*sin6tab
[] = {
800 SIN6(in6_addreq
.ifra_addr
), SIN6(in6_addreq
.ifra_dstaddr
)};
803 in6_getaddr(char *s
, int which
)
805 struct sockaddr_in6
*sin
= sin6tab
[which
];
807 sin
->sin6_len
= sizeof(*sin
);
808 sin
->sin6_family
= AF_INET6
;
810 if (inet_pton(AF_INET6
, s
, &sin
->sin6_addr
) != 1)
811 errx(1, "%s: bad value", s
);
815 in6_getprefix(char *plen
, int which
)
817 struct sockaddr_in6
*sin
= sin6tab
[which
];
819 int len
= atoi(plen
);
821 if ((len
< 0) || (len
> 128))
822 errx(1, "%s: bad value", plen
);
823 sin
->sin6_len
= sizeof(*sin
);
824 sin
->sin6_family
= AF_INET6
;
825 if ((len
== 0) || (len
== 128)) {
826 memset(&sin
->sin6_addr
, -1, sizeof(struct in6_addr
));
829 for (cp
= (u_char
*)&sin
->sin6_addr
; len
> 7; len
-= 8)
831 *cp
= (-1) << (8 - len
);
836 * Print a value a la the %b format of the kernel's printf
839 printb(char *s
, unsigned int v
, char *bits
)
844 if (bits
&& *bits
== 8)
845 printf("%s=%o", s
, v
& 0xffff);
847 printf("%s=%x", s
, v
& 0xffff);
851 while ((i
= *bits
++) != 0) {
852 if ((v
& (1 << (i
-1))) != 0) {
856 for (; (c
= *bits
) > 32; bits
++)
859 for (; *bits
> 32; bits
++)
868 prefix(void *val
, int size
)
870 u_char
*name
= (u_char
*)val
;
871 int byte
, bit
, plen
= 0;
873 for (byte
= 0; byte
< size
; byte
++, plen
+= 8)
874 if (name
[byte
] != 0xff)
878 for (bit
= 7; bit
!= 0; bit
--, plen
++)
879 if (!(name
[byte
] & (1 << bit
)))
881 for (; bit
!= 0; bit
--)
882 if (name
[byte
] & (1 << bit
))
885 for (; byte
< size
; byte
++)