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
);
174 rt_xaddrs(caddr_t cp
, caddr_t cplim
, struct rt_addrinfo
*rtinfo
)
179 memset(rtinfo
->rti_info
, 0, sizeof(rtinfo
->rti_info
));
180 for (i
= 0; (i
< RTAX_MAX
) && (cp
< cplim
); i
++) {
181 if ((rtinfo
->rti_addrs
& (1 << i
)) == 0)
183 rtinfo
->rti_info
[i
] = sa
= (struct sockaddr
*)cp
;
190 * Grunge for new-style sysctl() decoding.. :-(
191 * Apologies to the world for committing gross things like this in 1996..
193 struct if_msghdr
*ifm
;
194 struct ifa_msghdr
*ifam
;
195 struct sockaddr_dl
*sdl
;
196 struct rt_addrinfo info
;
197 char *buf
, *lim
, *next
;
201 main(int argc
, char **argv
)
204 struct afswtch
*rafp
= NULL
;
211 "usage: gifconfig interface [af] [physsrc physdst]\n");
212 #ifdef SIOCDIFPHYADDR
214 " gifconfig interface delete\n");
221 strncpy(name
, *argv
, sizeof(name
));
222 strncpy(ifr
.ifr_name
, name
, sizeof(ifr
.ifr_name
));
225 for (afp
= rafp
= afs
; rafp
->af_name
; rafp
++)
226 if (strcmp(rafp
->af_name
, *argv
) == 0) {
227 afp
= rafp
; argc
--; argv
++;
231 af
= ifr
.ifr_addr
.sa_family
= rafp
->af_af
;
237 mib
[3] = 0; /* address family */
238 mib
[4] = NET_RT_IFLIST
;
241 /* if particular family specified, only ask about it */
246 if (sysctl(mib
, 6, NULL
, &needed
, NULL
, 0) < 0)
247 errx(1, "iflist-sysctl-estimate");
248 if ((buf
= malloc(needed
)) == NULL
)
250 if (sysctl(mib
, 6, buf
, &needed
, NULL
, 0) < 0)
251 errx(1, "actual retrieval of interface table");
255 if (strcmp(name
, "-a") == 0)
256 all
= 1; /* All interfaces */
257 else if (strcmp(name
, "-au") == 0)
258 all
= 2; /* All IFF_UPinterfaces */
259 else if (strcmp(name
, "-ad") == 0)
260 all
= 3; /* All !IFF_UP interfaces */
262 for (next
= buf
; next
< lim
; next
+= ifm
->ifm_msglen
) {
264 ifm
= (struct if_msghdr
*)next
;
266 /* XXX: Swallow up leftover NEWADDR messages */
267 if (ifm
->ifm_type
== RTM_NEWADDR
)
270 if (ifm
->ifm_type
== RTM_IFINFO
) {
271 sdl
= (struct sockaddr_dl
*)(ifm
+ 1);
272 flags
= ifm
->ifm_flags
;
274 errx(1, "out of sync parsing NET_RT_IFLIST");
280 if (strlen(name
) != sdl
->sdl_nlen
)
281 continue; /* not same len */
282 if (strncmp(name
, sdl
->sdl_data
, sdl
->sdl_nlen
) != 0)
283 continue; /* not same name */
286 break; /* always do it */
288 if ((flags
& IFF_UP
) == 0)
289 continue; /* not up */
293 continue; /* not down */
298 * Let's just do it for gif only
300 if (sdl
->sdl_type
!= IFT_GIF
) {
304 fprintf(stderr
, "gifconfig: %s is not gif.\n",
310 strncpy(name
, sdl
->sdl_data
, sdl
->sdl_nlen
);
311 name
[sdl
->sdl_nlen
] = '\0';
314 if ((s
= socket(af
, SOCK_DGRAM
, 0)) < 0) {
315 perror("gifconfig: socket");
319 ifconfig(argc
,argv
,af
,rafp
);
324 all
= -1; /* flag it as 'done' */
331 errx(1, "interface %s does not exist", name
);
339 ifconfig(int argc
, char **argv
, int af
, struct afswtch
*rafp
)
344 strncpy(ifr
.ifr_name
, name
, sizeof ifr
.ifr_name
);
346 strncpy(in6_ifr
.ifr_name
, name
, sizeof in6_ifr
.ifr_name
);
349 if (ioctl(s
, SIOCGIFMETRIC
, (caddr_t
)&ifr
) < 0)
350 perror("ioctl (SIOCGIFMETRIC)");
352 metric
= ifr
.ifr_metric
;
354 #if defined(SIOCGIFMTU) && !defined(__OpenBSD__)
355 if (ioctl(s
, SIOCGIFMTU
, (caddr_t
)&ifr
) < 0)
356 perror("ioctl (SIOCGIFMTU)");
371 for (p
= cmds
; p
->c_name
; p
++)
372 if (strcmp(*argv
, p
->c_name
) == 0)
374 if (p
->c_name
== NULL
&& setpsrc
)
375 p
++; /* got src, do dst */
377 if (p
->c_parameter
== NEXTARG
) {
379 errx(1, "'%s' requires argument",
381 (*p
->c_func
)(argv
[1], 0);
384 (*p
->c_func
)(*argv
, p
->c_parameter
);
389 strncpy(rafp
->af_addreq
, name
, sizeof ifr
.ifr_name
);
390 if (ioctl(s
, rafp
->af_pifaddr
, rafp
->af_addreq
) < 0)
391 Perror("ioctl (SIOCSIFPHYADDR)");
394 errx(1, "destination is not specified");
403 setifpsrc(char *addr
, int param
)
405 param
= 0; /*fool gcc*/
406 (*afp
->af_getaddr
)(addr
, PSRC
);
412 setifpdst(char *addr
, int param
)
414 param
= 0; /*fool gcc*/
415 (*afp
->af_getaddr
)(addr
, PDST
);
420 setifflags(char *vname
, int value
)
422 if (ioctl(s
, SIOCGIFFLAGS
, (caddr_t
)&ifr
) < 0) {
423 Perror("ioctl (SIOCGIFFLAGS)");
426 strncpy(ifr
.ifr_name
, name
, sizeof (ifr
.ifr_name
));
427 flags
= (ifr
.ifr_flags
& 0xffff) | (ifr
.ifr_flagshigh
<< 16);
434 ifr
.ifr_flags
= flags
& 0xffff;
435 ifr
.ifr_flagshigh
= flags
>> 16;
436 if (ioctl(s
, SIOCSIFFLAGS
, (caddr_t
)&ifr
) < 0)
440 #ifdef SIOCDIFPHYADDR
443 delifaddrs(char *vname
, int param
)
445 param
= 0; /* fool gcc */
446 vname
= NULL
; /* ditto */
448 if (ioctl(s
, SIOCDIFPHYADDR
, (caddr_t
)&ifr
) < 0)
449 err(1, "ioctl(SIOCDIFPHYADDR)");
454 "\020\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5POINTOPOINT\6NOTRAILERS\7RUNNING\10NOARP\
455 \11PROMISC\12ALLMULTI\13OACTIVE\14SIMPLEX\15LINK0\16LINK1\17LINK2\20MULTICAST"
458 * Print the status of the interface. If an address family was
459 * specified, show it and it only; otherwise, show them all.
464 struct afswtch
*p
= NULL
;
466 struct if_msghdr
*myifm
;
468 printf("%s: ", name
);
469 printb("flags", flags
, IFFBITS
);
471 printf(" metric %d", metric
);
473 printf(" mtu %d", mtu
);
477 * XXX: Sigh. This is bad, I know. At this point, we may have
478 * *zero* RTM_NEWADDR's, so we have to "feel the water" before
479 * incrementing the loop. One day, I might feel inspired enough
480 * to get the top level loop to pass a count down here so we
481 * dont have to mess with this. -Peter
487 mynext
= next
+ ifm
->ifm_msglen
;
492 myifm
= (struct if_msghdr
*)mynext
;
494 if (myifm
->ifm_type
!= RTM_NEWADDR
)
499 ifm
= (struct if_msghdr
*)next
;
501 ifam
= (struct ifa_msghdr
*)myifm
;
502 info
.rti_addrs
= ifam
->ifam_addrs
;
504 /* Expand the compacted addresses */
505 rt_xaddrs((char *)(ifam
+ 1), ifam
->ifam_msglen
+ (char *)ifam
,
509 if (afp
->af_af
== info
.rti_info
[RTAX_IFA
]->sa_family
&&
510 afp
->af_status
!= ether_status
) {
512 if (p
->af_status
!= ether_status
)
515 } else for (p
= afs
; p
->af_name
; p
++) {
516 if (p
->af_af
== info
.rti_info
[RTAX_IFA
]->sa_family
&&
517 p
->af_status
!= ether_status
)
521 if (afp
== NULL
|| afp
->af_status
== ether_status
)
523 else if (afp
&& !p
) {
524 warnx("%s has no %s IFA address!", name
, afp
->af_name
);
531 phys_status(int force
)
535 int flags
= NI_NUMERICHOST
;
537 #ifndef SIOCGLIFPHYADDR
538 u_long srccmd
, dstcmd
;
544 force
= 0; /*fool gcc*/
546 psrcaddr
[0] = pdstaddr
[0] = '\0';
549 s6
= socket(AF_INET6
, SOCK_DGRAM
, 0);
552 srccmd
= SIOCGIFPSRCADDR
;
553 dstcmd
= SIOCGIFPDSTADDR
;
556 srccmd
= SIOCGIFPSRCADDR_IN6
;
557 dstcmd
= SIOCGIFPDSTADDR_IN6
;
558 ifrp
= (struct ifreq
*)&in6_ifr
;
562 srccmd
= SIOCGIFPSRCADDR
;
563 dstcmd
= SIOCGIFPDSTADDR
;
566 if (0 <= ioctl(s
, srccmd
, (caddr_t
)ifrp
)) {
568 if (ifrp
->ifr_addr
.sa_family
== AF_INET6
)
575 if (getnameinfo(&ifrp
->ifr_addr
, ifrp
->ifr_addr
.sa_len
,
576 psrcaddr
, sizeof(psrcaddr
), 0, 0, flags
) != 0)
579 if (0 <= ioctl(s
, dstcmd
, (caddr_t
)ifrp
)) {
580 if (getnameinfo(&ifrp
->ifr_addr
, ifrp
->ifr_addr
.sa_len
,
581 pdstaddr
, sizeof(pdstaddr
), 0, 0, flags
) != 0)
584 printf("\tphysical address %s %s --> %s\n", af
, psrcaddr
, pdstaddr
);
586 struct if_laddrreq iflr
;
588 force
= 0; /*fool gcc*/
590 psrcaddr
[0] = pdstaddr
[0] = '\0';
592 memset(&iflr
, 0, sizeof(iflr
));
593 memcpy(iflr
.iflr_name
, ifr
.ifr_name
, sizeof(iflr
.iflr_name
));
595 if (0 <= ioctl(s
, SIOCGLIFPHYADDR
, (caddr_t
)&iflr
)) {
596 switch (iflr
.addr
.ss_family
) {
606 if (getnameinfo((struct sockaddr
*)&iflr
.addr
, iflr
.addr
.ss_len
,
607 psrcaddr
, sizeof(psrcaddr
), 0, 0, flags
) != 0)
609 if (getnameinfo((struct sockaddr
*)&iflr
.dstaddr
,
610 iflr
.dstaddr
.ss_len
, pdstaddr
, sizeof(pdstaddr
), 0, 0,
614 printf("\tphysical address %s %s --> %s\n", af
, psrcaddr
, pdstaddr
);
621 struct sockaddr_in
*sin
, null_sin
;
626 memset(&null_sin
, 0, sizeof(null_sin
));
628 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_IFA
];
629 if (!sin
|| sin
->sin_family
!= AF_INET
) {
632 /* warnx("%s has no AF_INET IFA address!", name); */
635 printf("\tinet %s ", inet_ntoa(sin
->sin_addr
));
637 if (flags
& IFF_POINTOPOINT
) {
638 /* note RTAX_BRD overlap with IFF_BROADCAST */
639 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_BRD
];
642 printf("--> %s ", inet_ntoa(sin
->sin_addr
));
645 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_NETMASK
];
648 printf("netmask 0x%x ", (u_int32_t
)ntohl(sin
->sin_addr
.s_addr
));
650 if (flags
& IFF_BROADCAST
) {
651 /* note RTAX_BRD overlap with IFF_POINTOPOINT */
652 sin
= (struct sockaddr_in
*)info
.rti_info
[RTAX_BRD
];
653 if (sin
&& sin
->sin_addr
.s_addr
!= 0)
654 printf("broadcast %s", inet_ntoa(sin
->sin_addr
));
661 in6_status(int force
)
663 struct sockaddr_in6
*sin
, null_sin
;
664 char hostname
[NI_MAXHOST
];
665 int niflags
= NI_NUMERICHOST
;
667 memset(&null_sin
, 0, sizeof(null_sin
));
668 #ifdef NI_WITHSCOPEID
669 niflags
|= NI_WITHSCOPEID
;
672 sin
= (struct sockaddr_in6
*)info
.rti_info
[RTAX_IFA
];
673 if (!sin
|| sin
->sin6_family
!= AF_INET6
) {
676 /* warnx("%s has no AF_INET6 IFA address!", name); */
680 if (IN6_IS_ADDR_LINKLOCAL(&sin
->sin6_addr
)) {
682 ntohs(*(u_int16_t
*)&sin
->sin6_addr
.s6_addr
[2]);
683 sin
->sin6_addr
.s6_addr
[2] = 0;
684 sin
->sin6_addr
.s6_addr
[3] = 0;
687 getnameinfo((struct sockaddr
*)sin
, sin
->sin6_len
,
688 hostname
, sizeof(hostname
), 0, 0, niflags
);
689 printf("\tinet6 %s ", hostname
);
691 if (flags
& IFF_POINTOPOINT
) {
692 /* note RTAX_BRD overlap with IFF_BROADCAST */
693 sin
= (struct sockaddr_in6
*)info
.rti_info
[RTAX_BRD
];
695 * some of ther interfaces do not have valid destination
698 if (sin
->sin6_family
== AF_INET6
) {
700 if (IN6_IS_ADDR_LINKLOCAL(&sin
->sin6_addr
)) {
702 ntohs(*(u_int16_t
*)&sin
->sin6_addr
.s6_addr
[2]);
703 sin
->sin6_addr
.s6_addr
[2] = 0;
704 sin
->sin6_addr
.s6_addr
[3] = 0;
707 getnameinfo((struct sockaddr
*)sin
, sin
->sin6_len
,
708 hostname
, sizeof(hostname
), 0, 0, niflags
);
709 printf("--> %s ", hostname
);
713 sin
= (struct sockaddr_in6
*)info
.rti_info
[RTAX_NETMASK
];
716 printf(" prefixlen %d ", prefix(&sin
->sin6_addr
,
717 sizeof(struct in6_addr
)));
725 ether_status(int dummy
)
730 dummy
= 0; /*fool gcc*/
732 cp
= (char *)LLADDR(sdl
);
733 if ((n
= sdl
->sdl_alen
) > 0) {
734 if (sdl
->sdl_type
== IFT_ETHER
)
737 printf ("\tlladdr ");
739 printf("%02x%c",*cp
++ & 0xff, n
>0? ':' : ' ');
750 errx(1, "%s: no such interface", cmd
);
754 errx(1, "%s: permission denied", cmd
);
762 #define SIN(x) ((struct sockaddr_in *) &(x))
763 struct sockaddr_in
*sintab
[] = {
764 SIN(addreq
.ifra_addr
), SIN(addreq
.ifra_dstaddr
)};
767 in_getaddr(char *s
, int which
)
769 struct sockaddr_in
*sin
= sintab
[which
];
773 sin
->sin_len
= sizeof(*sin
);
774 sin
->sin_family
= AF_INET
;
776 if (inet_aton(s
, &sin
->sin_addr
))
778 else if ((hp
= gethostbyname(s
)) != NULL
)
779 bcopy(hp
->h_addr
, (char *)&sin
->sin_addr
, hp
->h_length
);
780 else if ((np
= getnetbyname(s
)) != NULL
)
781 sin
->sin_addr
= inet_makeaddr(np
->n_net
, INADDR_ANY
);
783 errx(1, "%s: bad value", s
);
787 #define SIN6(x) ((struct sockaddr_in6 *) &(x))
788 struct sockaddr_in6
*sin6tab
[] = {
789 SIN6(in6_addreq
.ifra_addr
), SIN6(in6_addreq
.ifra_dstaddr
)};
792 in6_getaddr(char *s
, int which
)
794 struct sockaddr_in6
*sin
= sin6tab
[which
];
796 sin
->sin6_len
= sizeof(*sin
);
797 sin
->sin6_family
= AF_INET6
;
799 if (inet_pton(AF_INET6
, s
, &sin
->sin6_addr
) != 1)
800 errx(1, "%s: bad value", s
);
804 in6_getprefix(char *plen
, int which
)
806 struct sockaddr_in6
*sin
= sin6tab
[which
];
808 int len
= atoi(plen
);
810 if ((len
< 0) || (len
> 128))
811 errx(1, "%s: bad value", plen
);
812 sin
->sin6_len
= sizeof(*sin
);
813 sin
->sin6_family
= AF_INET6
;
814 if ((len
== 0) || (len
== 128)) {
815 memset(&sin
->sin6_addr
, -1, sizeof(struct in6_addr
));
818 for (cp
= (u_char
*)&sin
->sin6_addr
; len
> 7; len
-= 8)
820 *cp
= (-1) << (8 - len
);
825 * Print a value a la the %b format of the kernel's printf
828 printb(char *s
, unsigned int v
, char *bits
)
833 if (bits
&& *bits
== 8)
834 printf("%s=%o", s
, v
& 0xffff);
836 printf("%s=%x", s
, v
& 0xffff);
840 while ((i
= *bits
++) != 0) {
841 if ((v
& (1 << (i
-1))) != 0) {
845 for (; (c
= *bits
) > 32; bits
++)
848 for (; *bits
> 32; bits
++)
857 prefix(void *val
, int size
)
859 u_char
*name
= (u_char
*)val
;
860 int byte
, bit
, plen
= 0;
862 for (byte
= 0; byte
< size
; byte
++, plen
+= 8)
863 if (name
[byte
] != 0xff)
867 for (bit
= 7; bit
!= 0; bit
--, plen
++)
868 if (!(name
[byte
] & (1 << bit
)))
870 for (; bit
!= 0; bit
--)
871 if (name
[byte
] & (1 << bit
))
874 for (; byte
< size
; byte
++)