]>
git.cameronkatri.com Git - apple_cmds.git/blob - network_cmds/route.tproj/route.c
2 * Copyright (c) 2008-2013 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1983, 1989, 1991, 1993
30 * The Regents of the University of California. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 #include <sys/cdefs.h>
64 __unused
static const char copyright
[] =
65 "@(#) Copyright (c) 1983, 1989, 1991, 1993\n\
66 The Regents of the University of California. All rights reserved.\n";
69 #include <sys/param.h>
71 #include <sys/socket.h>
72 #include <sys/ioctl.h>
73 #include <sys/sysctl.h>
74 #include <sys/types.h>
77 #include <net/route.h>
78 #include <net/if_dl.h>
79 #include <netinet/in.h>
80 #include <arpa/inet.h>
104 struct sockaddr_in sin
;
106 struct sockaddr_in6 sin6
;
108 struct sockaddr_dl sdl
;
109 struct sockaddr_storage ss
; /* added to avoid memory overrun */
110 } so_dst
, so_gate
, so_mask
, so_genmask
, so_ifa
, so_ifp
;
112 typedef union sockunion
*sup
;
113 int pid
, rtm_addrs
, uid
;
115 int forcehost
, forcenet
, doflush
, nflag
, af
, qflag
, tflag
, keyword();
116 int iflag
, verbose
, aflen
= sizeof (struct sockaddr_in
);
117 int locking
, lockrest
, debugonly
;
118 struct rt_metrics rt_metrics
;
120 unsigned int ifscope
;
122 static const char *route_strerror(int);
123 const char *routename(), *netname();
124 void flushroutes(), newroute(), monitor(), sockaddr(), sodump(), bprintf();
125 void print_getmsg(), print_rtmsg(), pmsg_common(), pmsg_addrs(), mask_addr();
126 int getaddr(), rtmsg(), x25_makemask();
128 extern char *iso_ntoa();
131 inet_makenetandmask(in_addr_t net
, struct sockaddr_in
*sin
,
132 struct sockaddr_in
*sin_mask
, in_addr_t bits
);
134 void usage
__P((const char *)) __dead2
;
141 warnx("bad keyword: %s", cp
);
142 (void) fprintf(stderr
,
143 "usage: route [-dnqtv] command [[modifiers] args]\n");
149 ((a) > 0 ? (1 + (((a) - 1) | (sizeof(uint32_t) - 1))) : sizeof(uint32_t))
150 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
162 while ((ch
= getopt(argc
, argv
, "nqdtv")) != -1)
189 s
= open(_PATH_DEVNULL
, O_WRONLY
, 0);
191 s
= socket(PF_ROUTE
, SOCK_RAW
, 0);
193 err(EX_OSERR
, "socket");
196 switch (keyword(*argv
)) {
204 newroute(argc
, argv
);
213 flushroutes(argc
, argv
);
222 * Purge all entries in the routing tables not
223 * associated with network interfaces.
226 flushroutes(argc
, argv
)
231 int mib
[6], rlen
, seqno
;
232 char *buf
, *next
, *lim
;
233 register struct rt_msghdr
*rtm
;
236 errx(EX_NOPERM
, "must be root to alter routing table");
238 shutdown(s
, 0); /* Don't want to read back our messages */
241 if (argc
== 2 && **argv
== '-')
242 switch (keyword(*argv
+ 1)) {
261 mib
[2] = 0; /* protocol */
262 mib
[3] = 0; /* wildcard address family */
263 mib
[4] = NET_RT_DUMP
;
264 mib
[5] = 0; /* no flags */
265 if (sysctl(mib
, 6, NULL
, &needed
, NULL
, 0) < 0)
266 err(EX_OSERR
, "route-sysctl-estimate");
267 if ((buf
= malloc(needed
)) == NULL
)
268 errx(EX_OSERR
, "malloc failed");
269 if (sysctl(mib
, 6, buf
, &needed
, NULL
, 0) < 0)
270 err(EX_OSERR
, "route-sysctl-get");
273 (void) printf("Examining routing table from sysctl\n");
275 for (next
= buf
; next
< lim
; next
+= rtm
->rtm_msglen
) {
276 rtm
= (struct rt_msghdr
*)next
;
278 print_rtmsg(rtm
, rtm
->rtm_msglen
);
279 if ((rtm
->rtm_flags
& RTF_GATEWAY
) == 0)
282 struct sockaddr
*sa
= (struct sockaddr
*)(rtm
+ 1);
284 if (sa
->sa_family
!= af
)
289 rtm
->rtm_type
= RTM_DELETE
;
290 rtm
->rtm_seq
= seqno
;
291 rlen
= write(s
, next
, rtm
->rtm_msglen
);
292 if (rlen
< (int)rtm
->rtm_msglen
) {
293 warn("write to routing socket");
294 (void) printf("got only %d for rlen\n", rlen
);
301 print_rtmsg(rtm
, rlen
);
303 struct sockaddr
*sa
= (struct sockaddr
*)(rtm
+ 1);
304 (void) printf("%-20.20s ", rtm
->rtm_flags
& RTF_HOST
?
305 routename(sa
) : netname(sa
));
306 sa
= (struct sockaddr
*)(ROUNDUP(sa
->sa_len
) + (char *)sa
);
307 (void) printf("%-20.20s ", routename(sa
));
308 (void) printf("done\n");
318 static char line
[MAXHOSTNAMELEN
+ 1];
320 static char domain
[MAXHOSTNAMELEN
+ 1];
321 static int first
= 1;
325 if (gethostname(domain
, MAXHOSTNAMELEN
) == 0 &&
326 (cp
= index(domain
, '.'))) {
327 domain
[MAXHOSTNAMELEN
] = '\0';
328 (void) memmove(domain
, cp
+ 1, strlen(cp
+ 1) + 1);
334 strlcpy(line
, "default", sizeof(line
));
335 else switch (sa
->sa_family
) {
339 in
= ((struct sockaddr_in
*)sa
)->sin_addr
;
342 if (in
.s_addr
== INADDR_ANY
|| sa
->sa_len
< 4)
344 if (cp
== 0 && !nflag
) {
345 hp
= gethostbyaddr((char *)&in
, sizeof (struct in_addr
),
348 if ((cp
= index(hp
->h_name
, '.')) &&
349 !strcmp(cp
+ 1, domain
))
355 strlcpy(line
, cp
, sizeof(line
));
357 /* XXX - why not inet_ntoa()? */
358 #define C(x) (unsigned)((x) & 0xff)
359 in
.s_addr
= ntohl(in
.s_addr
);
360 (void) snprintf(line
, sizeof(line
), "%u.%u.%u.%u", C(in
.s_addr
>> 24),
361 C(in
.s_addr
>> 16), C(in
.s_addr
>> 8), C(in
.s_addr
));
369 struct sockaddr_in6 sin6
; /* use static var for safety */
371 #ifdef NI_WITHSCOPEID
372 niflags
= NI_WITHSCOPEID
;
375 memset(&sin6
, 0, sizeof(sin6
));
376 memcpy(&sin6
, sa
, sa
->sa_len
);
377 sin6
.sin6_len
= sizeof(struct sockaddr_in6
);
378 sin6
.sin6_family
= AF_INET6
;
380 if (sa
->sa_len
== sizeof(struct sockaddr_in6
) &&
381 (IN6_IS_ADDR_LINKLOCAL(&sin6
.sin6_addr
) ||
382 IN6_IS_ADDR_MC_NODELOCAL(&sin6
.sin6_addr
) ||
383 IN6_IS_ADDR_MC_LINKLOCAL(&sin6
.sin6_addr
)) &&
384 sin6
.sin6_scope_id
== 0) {
386 ntohs(*(u_int16_t
*)&sin6
.sin6_addr
.s6_addr
[2]);
387 sin6
.sin6_addr
.s6_addr
[2] = 0;
388 sin6
.sin6_addr
.s6_addr
[3] = 0;
392 niflags
|= NI_NUMERICHOST
;
393 if (getnameinfo((struct sockaddr
*)&sin6
, sin6
.sin6_len
,
394 line
, sizeof(line
), NULL
, 0, niflags
) != 0)
395 strlcpy(line
, "invalid", sizeof(line
));
402 return (link_ntoa((struct sockaddr_dl
*)sa
));
405 { u_short
*s
= (u_short
*)sa
;
406 u_short
*slim
= s
+ ((sa
->sa_len
+ 1) >> 1);
407 char *cp
= line
+ snprintf(line
, sizeof(line
), "(%d)", sa
->sa_family
);
408 char *cpe
= line
+ sizeof(line
);
410 while (++s
< slim
&& cp
< cpe
) /* start with sa->sa_data */
411 cp
+= snprintf(cp
, cpe
- cp
, " %x", *s
);
419 * Return the name of the network whose address is given.
420 * The address is assumed to be that of a net, not a host.
427 static char line
[MAXHOSTNAMELEN
+ 1];
428 struct netent
*np
= NULL
;
429 register in_addr_t i
;
431 switch (sa
->sa_family
) {
435 in
= ((struct sockaddr_in
*)sa
)->sin_addr
;
437 i
= in
.s_addr
= ntohl(in
.s_addr
);
441 np
= getnetbyaddr(i
, AF_INET
);
445 #define C(x) (unsigned)((x) & 0xff)
447 strlcpy(line
, cp
, sizeof(line
));
448 else if ((in
.s_addr
& 0xffffff) == 0)
449 (void) sprintf(line
, "%u", C(in
.s_addr
>> 24));
450 else if ((in
.s_addr
& 0xffff) == 0)
451 (void) sprintf(line
, "%u.%u", C(in
.s_addr
>> 24),
453 else if ((in
.s_addr
& 0xff) == 0)
454 (void) sprintf(line
, "%u.%u.%u", C(in
.s_addr
>> 24),
455 C(in
.s_addr
>> 16), C(in
.s_addr
>> 8));
457 (void) sprintf(line
, "%u.%u.%u.%u", C(in
.s_addr
>> 24),
458 C(in
.s_addr
>> 16), C(in
.s_addr
>> 8),
466 struct sockaddr_in6 sin6
; /* use static var for safety */
468 #ifdef NI_WITHSCOPEID
469 niflags
= NI_WITHSCOPEID
;
472 memset(&sin6
, 0, sizeof(sin6
));
473 memcpy(&sin6
, sa
, sa
->sa_len
);
474 sin6
.sin6_len
= sizeof(struct sockaddr_in6
);
475 sin6
.sin6_family
= AF_INET6
;
477 if (sa
->sa_len
== sizeof(struct sockaddr_in6
) &&
478 (IN6_IS_ADDR_LINKLOCAL(&sin6
.sin6_addr
) ||
479 IN6_IS_ADDR_MC_NODELOCAL(&sin6
.sin6_addr
) ||
480 IN6_IS_ADDR_MC_LINKLOCAL(&sin6
.sin6_addr
)) &&
481 sin6
.sin6_scope_id
== 0) {
483 ntohs(*(u_int16_t
*)&sin6
.sin6_addr
.s6_addr
[2]);
484 sin6
.sin6_addr
.s6_addr
[2] = 0;
485 sin6
.sin6_addr
.s6_addr
[3] = 0;
489 niflags
|= NI_NUMERICHOST
;
490 if (getnameinfo((struct sockaddr
*)&sin6
, sin6
.sin6_len
,
491 line
, sizeof(line
), NULL
, 0, niflags
) != 0)
492 strlcpy(line
, "invalid", sizeof(line
));
499 return (link_ntoa((struct sockaddr_dl
*)sa
));
503 { u_short
*s
= (u_short
*)sa
->sa_data
;
504 u_short
*slim
= s
+ ((sa
->sa_len
+ 1)>>1);
505 char *cp
= line
+ snprintf(line
, sizeof(line
), "af %d:", sa
->sa_family
);
506 char *cpe
= line
+ sizeof(line
);
508 while (s
< slim
&& cp
< cpe
)
509 cp
+= snprintf(cp
, cpe
- cp
, " %x", *s
++);
517 route_strerror(int error
)
522 return "not in table";
524 return "entry in use";
526 return "routing table overflow";
528 return (strerror(error
));
533 set_metric(value
, key
)
538 u_int noval
, *valp
= &noval
;
541 #define caseof(x, y, z) case x: valp = (u_int *)&rt_metrics.z; flag = y; break
542 caseof(K_MTU
, RTV_MTU
, rmx_mtu
);
543 caseof(K_HOPCOUNT
, RTV_HOPCOUNT
, rmx_hopcount
);
544 caseof(K_EXPIRE
, RTV_EXPIRE
, rmx_expire
);
545 caseof(K_RECVPIPE
, RTV_RPIPE
, rmx_recvpipe
);
546 caseof(K_SENDPIPE
, RTV_SPIPE
, rmx_sendpipe
);
547 caseof(K_SSTHRESH
, RTV_SSTHRESH
, rmx_ssthresh
);
548 caseof(K_RTT
, RTV_RTT
, rmx_rtt
);
549 caseof(K_RTTVAR
, RTV_RTTVAR
, rmx_rttvar
);
552 if (lockrest
|| locking
)
553 rt_metrics
.rmx_locks
|= flag
;
562 register char **argv
;
564 char *cmd
, *dest
= "", *gateway
= "";
565 int ishost
= 0, ret
, attempts
, oerrno
, flags
= RTF_STATIC
;
567 struct hostent
*hp
= 0;
570 errx(EX_NOPERM
, "must be root to alter routing table");
574 shutdown(s
, 0); /* Don't want to read back our messages */
576 if (**(++argv
)== '-') {
577 switch (key
= keyword(1 + *argv
)) {
580 aflen
= sizeof(struct sockaddr_dl
);
584 aflen
= sizeof(struct sockaddr_in
);
589 aflen
= sizeof(struct sockaddr_in6
);
594 aflen
= sizeof(union sockunion
);
601 flags
&= ~RTF_STATIC
;
619 flags
|= RTF_BLACKHOLE
;
628 flags
|= RTF_CLONING
;
631 flags
|= RTF_XRESOLVE
;
639 (void) getaddr(RTA_IFA
, *++argv
, 0);
644 (void) getaddr(RTA_IFP
, *++argv
, 0);
649 (void) getaddr(RTA_GENMASK
, *++argv
, 0);
654 (void) getaddr(RTA_GATEWAY
, *++argv
, 0);
659 ishost
= getaddr(RTA_DST
, *++argv
, &hp
);
665 (void) getaddr(RTA_NETMASK
, *++argv
, 0);
673 if (prefixlen(*++argv
) == -1) {
691 set_metric(*++argv
, key
);
696 if ((ifscope
= if_nametoindex(*++argv
)) != 0)
697 flags
|= RTF_IFSCOPE
;
699 errx(1, "bad interface name");
705 if ((rtm_addrs
& RTA_DST
) == 0) {
707 ishost
= getaddr(RTA_DST
, *argv
, &hp
);
708 } else if ((rtm_addrs
& RTA_GATEWAY
) == 0) {
710 (void) getaddr(RTA_GATEWAY
, *argv
, &hp
);
712 (void) getaddr(RTA_NETMASK
, *argv
, 0);
719 if (af
== AF_INET6
) {
720 rtm_addrs
&= ~RTA_NETMASK
;
721 memset((void *)&so_mask
, 0, sizeof(so_mask
));
731 flags
|= RTF_GATEWAY
;
732 if (so_mask
.sin
.sin_family
== AF_INET
) {
733 // make sure the mask is contiguous
735 for (i
= 0; i
< 32; i
++)
736 if (((so_mask
.sin
.sin_addr
.s_addr
) & ntohl((1 << i
))) != 0)
739 if (((so_mask
.sin
.sin_addr
.s_addr
) & ntohl((1 << i
))) == 0)
740 errx(EX_NOHOST
, "invalid mask: %s", inet_ntoa(so_mask
.sin
.sin_addr
));
742 for (attempts
= 1; ; attempts
++) {
744 if ((ret
= rtmsg(*cmd
, flags
)) == 0)
746 if (errno
!= ENETUNREACH
&& errno
!= ESRCH
)
748 if (af
== AF_INET
&& *gateway
&& hp
&& hp
->h_addr_list
[1]) {
750 bcopy(hp
->h_addr_list
[0], &so_gate
.sin
.sin_addr
,
751 MIN(hp
->h_length
, sizeof(so_gate
.sin
.sin_addr
)));
758 (void) printf("%s %s %s", cmd
, ishost
? "host" : "net", dest
);
760 (void) printf(": gateway %s", gateway
);
761 if (attempts
> 1 && ret
== 0 && af
== AF_INET
)
762 (void) printf(" (%s)", inet_ntoa(so_gate
.sin
.sin_addr
));
767 (void)printf(": %s\n", route_strerror(oerrno
));
772 inet_makenetandmask(in_addr_t net
, struct sockaddr_in
*sin
,
773 struct sockaddr_in
*sin_mask
, in_addr_t bits
)
777 rtm_addrs
|= RTA_NETMASK
;
779 * MSB of net should be meaningful. 0/0 is exception.
782 while ((net
& 0xff000000) == 0)
786 * If no /xx was specified we must calculate the
789 if ((bits
== 0) && (net
!= 0)) {
792 for(i
= 0, j
= 0xff; i
< 4; i
++) {
798 /* i holds the first non zero bit */
802 mask
= 0xffffffff << (32 - bits
);
804 sin
->sin_addr
.s_addr
= htonl(net
);
805 sin_mask
->sin_addr
.s_addr
= htonl(mask
);
806 sin_mask
->sin_len
= sizeof(struct sockaddr_in
);
807 sin_mask
->sin_family
= AF_INET
;
812 * XXX the function may need more improvement...
815 inet6_makenetandmask(struct sockaddr_in6
*sin6
, const char *plen
)
820 if (IN6_IS_ADDR_UNSPECIFIED(&sin6
->sin6_addr
) &&
821 sin6
->sin6_scope_id
== 0) {
823 } else if ((sin6
->sin6_addr
.s6_addr
[0] & 0xe0) == 0x20) {
824 /* aggregatable global unicast - RFC2374 */
825 memset(&in6
, 0, sizeof(in6
));
826 if (!memcmp(&sin6
->sin6_addr
.s6_addr
[8],
832 if (plen
== NULL
|| strcmp(plen
, "128") == 0)
834 rtm_addrs
|= RTA_NETMASK
;
841 * Interpret an argument as a network address of some kind,
842 * returning 1 if a host address, 0 if a network address.
845 getaddr(which
, s
, hpp
)
848 struct hostent
**hpp
;
850 register sup su
= NULL
;
855 int afamily
; /* local copy of af so we can change it */
859 aflen
= sizeof(struct sockaddr_in
);
870 struct ifaddrs
*ifap
, *ifa
;
871 struct sockaddr_dl
*sdl
= NULL
;
873 if (getifaddrs(&ifap
))
874 err(1, "getifaddrs");
876 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
877 if (ifa
->ifa_addr
->sa_family
!= AF_LINK
)
880 if (strcmp(s
, ifa
->ifa_name
))
883 sdl
= (struct sockaddr_dl
*)ifa
->ifa_addr
;
885 /* If we found it, then use it */
888 * Copy is safe since we have a
889 * sockaddr_storage member in sockunion{}.
890 * Note that we need to copy before calling
893 memcpy(&su
->sdl
, sdl
, sdl
->sdl_len
);
914 usage("internal error");
917 su
->sa
.sa_len
= aflen
;
918 su
->sa
.sa_family
= afamily
; /* cases that don't want it have left already */
919 if (strcmp(s
, "default") == 0) {
921 * Default is net 0.0.0.0/0
926 /* bzero(su, sizeof(*su)); *//* for readability */
927 (void) getaddr(RTA_NETMASK
, s
, 0);
931 /* bzero(su, sizeof(*su)); *//* for readability */
941 struct addrinfo hints
, *res
;
945 if (which
== RTA_DST
&& (q
= strchr(s
, '/')) != NULL
)
947 memset(&hints
, 0, sizeof(hints
));
948 hints
.ai_family
= afamily
; /*AF_INET6*/
949 hints
.ai_flags
= AI_NUMERICHOST
;
950 hints
.ai_socktype
= SOCK_DGRAM
; /*dummy*/
951 ecode
= getaddrinfo(s
, NULL
, &hints
, &res
);
952 if (ecode
!= 0 || res
->ai_family
!= AF_INET6
||
953 res
->ai_addrlen
!= sizeof(su
->sin6
)) {
954 (void) fprintf(stderr
, "%s: %s\n", s
,
955 gai_strerror(ecode
));
958 memcpy(&su
->sin6
, res
->ai_addr
, sizeof(su
->sin6
));
960 if ((IN6_IS_ADDR_LINKLOCAL(&su
->sin6
.sin6_addr
) ||
961 IN6_IS_ADDR_MC_NODELOCAL(&su
->sin6
.sin6_addr
) ||
962 IN6_IS_ADDR_MC_LINKLOCAL(&su
->sin6
.sin6_addr
)) &&
963 su
->sin6
.sin6_scope_id
) {
964 *(u_int16_t
*)&su
->sin6
.sin6_addr
.s6_addr
[2] =
965 htons(su
->sin6
.sin6_scope_id
);
966 su
->sin6
.sin6_scope_id
= 0;
970 if (hints
.ai_flags
== AI_NUMERICHOST
) {
973 if (which
== RTA_DST
)
974 return (inet6_makenetandmask(&su
->sin6
, q
));
983 link_addr(s
, &su
->sdl
);
988 su
->sa
.sa_len
= sizeof(*su
);
989 sockaddr(s
, &su
->sa
);
1002 if (q
&& which
== RTA_DST
) {
1004 if ((val
= inet_network(s
)) != INADDR_NONE
) {
1005 inet_makenetandmask(
1006 val
, &su
->sin
, (struct sockaddr_in
*)&so_mask
,
1007 strtoul(q
+1, 0, 0));
1012 if ((which
!= RTA_DST
|| forcenet
== 0) &&
1013 inet_aton(s
, &su
->sin
.sin_addr
)) {
1014 val
= su
->sin
.sin_addr
.s_addr
;
1015 if (which
!= RTA_DST
|| forcehost
||
1016 inet_lnaof(su
->sin
.sin_addr
) != INADDR_ANY
)
1023 if (which
== RTA_DST
&& forcehost
== 0 &&
1024 ((val
= inet_network(s
)) != INADDR_NONE
||
1025 ((np
= getnetbyname(s
)) != NULL
&& (val
= np
->n_net
) != 0))) {
1027 inet_makenetandmask(val
, &su
->sin
, (struct sockaddr_in
*)&so_mask
, 0);
1030 hp
= gethostbyname(s
);
1033 su
->sin
.sin_family
= hp
->h_addrtype
;
1034 bcopy(hp
->h_addr
, (char *)&su
->sin
.sin_addr
,
1035 MIN(hp
->h_length
, sizeof(su
->sin
.sin_addr
)));
1038 errx(EX_NOHOST
, "bad address: %s", s
);
1045 int len
= atoi(s
), q
, r
;
1049 rtm_addrs
|= RTA_NETMASK
;
1054 p
= (char *)&so_mask
.sin6
.sin6_addr
;
1059 p
= (char *)&so_mask
.sin
.sin_addr
;
1062 (void) fprintf(stderr
, "prefixlen not supported in this af\n");
1067 if (len
< 0 || max
< len
) {
1068 (void) fprintf(stderr
, "%s: bad value\n", s
);
1074 so_mask
.sa
.sa_family
= af
;
1075 so_mask
.sa
.sa_len
= aflen
;
1076 memset((void *)p
, 0, max
/ 8);
1078 memset((void *)p
, 0xff, q
);
1080 *((u_char
*)p
+ q
) = (0xff00 >> r
) & 0xff;
1092 char *buf
, *lim
, *next
;
1093 register struct rt_msghdr
*rtm
;
1097 mib
[2] = 0; /* protocol */
1098 mib
[3] = 0; /* wildcard address family */
1099 mib
[4] = NET_RT_IFLIST
;
1100 mib
[5] = 0; /* no flags */
1101 if (sysctl(mib
, 6, NULL
, &needed
, NULL
, 0) < 0)
1102 err(EX_OSERR
, "route-sysctl-estimate");
1103 if ((buf
= malloc(needed
)) == NULL
)
1104 errx(EX_OSERR
, "malloc failed");
1105 if (sysctl(mib
, 6, buf
, &needed
, NULL
, 0) < 0)
1106 err(EX_OSERR
, "actual retrieval of interface table");
1108 for (next
= buf
; next
< lim
; next
+= rtm
->rtm_msglen
) {
1109 rtm
= (struct rt_msghdr
*)next
;
1110 print_rtmsg(rtm
, rtm
->rtm_msglen
);
1127 n
= read(s
, msg
, 2048);
1129 (void) printf("\ngot message of size %d on %s", n
, ctime(&now
));
1130 print_rtmsg((struct rt_msghdr
*)msg
, n
);
1135 struct rt_msghdr m_rtm
;
1145 register char *cp
= m_rtmsg
.m_space
;
1148 #define NEXTADDR(w, u) \
1149 if (rtm_addrs & (w)) {\
1150 l = ROUNDUP(u.sa.sa_len); bcopy((char *)&(u), cp, l); cp += l;\
1151 if (verbose) sodump(&(u),"u");\
1155 bzero((char *)&m_rtmsg
, sizeof(m_rtmsg
));
1158 else if (cmd
== 'c')
1160 else if (cmd
== 'g') {
1162 if (so_ifp
.sa
.sa_family
== 0) {
1163 so_ifp
.sa
.sa_family
= AF_LINK
;
1164 so_ifp
.sa
.sa_len
= sizeof(struct sockaddr_dl
);
1165 rtm_addrs
|= RTA_IFP
;
1169 #define rtm m_rtmsg.m_rtm
1171 rtm
.rtm_flags
= flags
;
1172 rtm
.rtm_version
= RTM_VERSION
;
1173 rtm
.rtm_seq
= ++seq
;
1174 rtm
.rtm_addrs
= rtm_addrs
;
1175 rtm
.rtm_rmx
= rt_metrics
;
1176 rtm
.rtm_inits
= rtm_inits
;
1177 rtm
.rtm_index
= ifscope
;
1179 if (rtm_addrs
& RTA_NETMASK
)
1181 NEXTADDR(RTA_DST
, so_dst
);
1182 NEXTADDR(RTA_GATEWAY
, so_gate
);
1183 NEXTADDR(RTA_NETMASK
, so_mask
);
1184 NEXTADDR(RTA_GENMASK
, so_genmask
);
1185 NEXTADDR(RTA_IFP
, so_ifp
);
1186 NEXTADDR(RTA_IFA
, so_ifa
);
1187 rtm
.rtm_msglen
= l
= cp
- (char *)&m_rtmsg
;
1189 print_rtmsg(&rtm
, l
);
1192 if ((rlen
= write(s
, (char *)&m_rtmsg
, l
)) < 0) {
1193 warnx("writing to routing socket: %s", route_strerror(errno
));
1196 if (cmd
== RTM_GET
) {
1198 l
= read(s
, (char *)&m_rtmsg
, sizeof(m_rtmsg
));
1199 } while (l
> 0 && (rtm
.rtm_seq
!= seq
|| rtm
.rtm_pid
!= pid
));
1201 warn("read from routing socket");
1203 print_getmsg(&rtm
, l
);
1212 int olen
= so_mask
.sa
.sa_len
;
1213 register char *cp1
= olen
+ (char *)&so_mask
, *cp2
;
1215 for (so_mask
.sa
.sa_len
= 0; cp1
> (char *)&so_mask
; )
1217 so_mask
.sa
.sa_len
= 1 + cp1
- (char *)&so_mask
;
1220 if ((rtm_addrs
& RTA_DST
) == 0)
1222 switch (so_dst
.sa
.sa_family
) {
1231 cp1
= so_mask
.sa
.sa_len
+ 1 + (char *)&so_dst
;
1232 cp2
= so_dst
.sa
.sa_len
+ 1 + (char *)&so_dst
;
1235 cp2
= so_mask
.sa
.sa_len
+ 1 + (char *)&so_mask
;
1236 while (cp1
> so_dst
.sa
.sa_data
)
1240 char *msgtypes
[] = {
1242 "RTM_ADD: Add Route",
1243 "RTM_DELETE: Delete Route",
1244 "RTM_CHANGE: Change Metrics or flags",
1245 "RTM_GET: Report Metrics",
1246 "RTM_LOSING: Kernel Suspects Partitioning",
1247 "RTM_REDIRECT: Told to use different route",
1248 "RTM_MISS: Lookup failed on this address",
1249 "RTM_LOCK: fix specified metrics",
1250 "RTM_OLDADD: caused by SIOCADDRT",
1251 "RTM_OLDDEL: caused by SIOCDELRT",
1252 "RTM_RESOLVE: Route created by cloning",
1253 "RTM_NEWADDR: address being added to iface",
1254 "RTM_DELADDR: address being removed from iface",
1255 "RTM_IFINFO: iface status change",
1256 "RTM_NEWMADDR: new multicast group membership on iface",
1257 "RTM_DELMADDR: multicast group membership removed from iface",
1261 char metricnames
[] =
1262 "\011pksent\010rttvar\7rtt\6ssthresh\5sendpipe\4recvpipe\3expire\2hopcount"
1265 "\1UP\2GATEWAY\3HOST\4REJECT\5DYNAMIC\6MODIFIED\7DONE\010DELCLONE"
1266 "\011CLONING\012XRESOLVE\013LLINFO\014STATIC\015BLACKHOLE\016b016"
1267 "\017PROTO2\020PROTO1\021PRCLONING\022WASCLONED\023PROTO3\024b024"
1268 "\025PINNED\026LOCAL\027BROADCAST\030MULTICAST\031IFSCOPE\032CONDEMNED"
1269 "\033IFREF\034PROXY\035ROUTER";
1271 "\1UP\2BROADCAST\3DEBUG\4LOOPBACK\5PTP\6b6\7RUNNING\010NOARP"
1272 "\011PPROMISC\012ALLMULTI\013OACTIVE\014SIMPLEX\015LINK0\016LINK1"
1273 "\017LINK2\020MULTICAST";
1275 "\1DST\2GATEWAY\3NETMASK\4GENMASK\5IFP\6IFA\7AUTHOR\010BRD";
1278 print_rtmsg(rtm
, msglen
)
1279 register struct rt_msghdr
*rtm
;
1282 struct if_msghdr
*ifm
;
1283 struct ifa_msghdr
*ifam
;
1285 struct ifma_msghdr
*ifmam
;
1290 if (rtm
->rtm_version
!= RTM_VERSION
) {
1291 (void) printf("routing message version %d not understood\n",
1295 (void)printf("%s: len %d, ", msgtypes
[rtm
->rtm_type
], rtm
->rtm_msglen
);
1296 switch (rtm
->rtm_type
) {
1298 ifm
= (struct if_msghdr
*)rtm
;
1299 (void) printf("if# %d, flags:", ifm
->ifm_index
);
1300 bprintf(stdout
, ifm
->ifm_flags
, ifnetflags
);
1301 pmsg_addrs((char *)(ifm
+ 1), ifm
->ifm_addrs
);
1305 ifam
= (struct ifa_msghdr
*)rtm
;
1306 (void) printf("metric %d, flags:", ifam
->ifam_metric
);
1307 bprintf(stdout
, ifam
->ifam_flags
, routeflags
);
1308 pmsg_addrs((char *)(ifam
+ 1), ifam
->ifam_addrs
);
1313 ifmam
= (struct ifma_msghdr
*)rtm
;
1314 pmsg_addrs((char *)(ifmam
+ 1), ifmam
->ifmam_addrs
);
1318 (void) printf("pid: %ld, seq %d, errno %d, ",
1319 (long)rtm
->rtm_pid
, rtm
->rtm_seq
, rtm
->rtm_errno
);
1320 if (rtm
->rtm_flags
& RTF_IFSCOPE
)
1321 (void) printf("ifscope %d, ", rtm
->rtm_index
);
1322 if (rtm
->rtm_flags
& RTF_IFREF
)
1323 (void) printf("ifref, ");
1324 (void) printf("flags:");
1325 bprintf(stdout
, rtm
->rtm_flags
, routeflags
);
1331 print_getmsg(rtm
, msglen
)
1332 register struct rt_msghdr
*rtm
;
1335 struct sockaddr
*dst
= NULL
, *gate
= NULL
, *mask
= NULL
;
1336 struct sockaddr_dl
*ifp
= NULL
;
1337 register struct sockaddr
*sa
;
1341 (void) printf(" route to: %s\n", routename(&so_dst
.sa
));
1342 if (rtm
->rtm_version
!= RTM_VERSION
) {
1343 warnx("routing message version %d not understood",
1347 if (rtm
->rtm_msglen
> msglen
) {
1348 warnx("message length mismatch, in packet %d, returned %d",
1349 rtm
->rtm_msglen
, msglen
);
1351 if (rtm
->rtm_errno
) {
1352 errno
= rtm
->rtm_errno
;
1353 warn("message indicates error %d", errno
);
1356 cp
= ((char *)(rtm
+ 1));
1358 for (i
= 1; i
; i
<<= 1)
1359 if (i
& rtm
->rtm_addrs
) {
1360 sa
= (struct sockaddr
*)cp
;
1372 if (sa
->sa_family
== AF_LINK
&&
1373 ((struct sockaddr_dl
*)sa
)->sdl_nlen
)
1374 ifp
= (struct sockaddr_dl
*)sa
;
1380 mask
->sa_family
= dst
->sa_family
; /* XXX */
1382 (void)printf("destination: %s\n", routename(dst
));
1384 int savenflag
= nflag
;
1387 (void)printf(" mask: %s\n", routename(mask
));
1390 if (gate
&& rtm
->rtm_flags
& RTF_GATEWAY
)
1391 (void)printf(" gateway: %s\n", routename(gate
));
1393 (void)printf(" interface: %.*s\n",
1394 ifp
->sdl_nlen
, ifp
->sdl_data
);
1395 (void)printf(" flags: ");
1396 bprintf(stdout
, rtm
->rtm_flags
, routeflags
);
1398 #define lock(f) ((rtm->rtm_rmx.rmx_locks & __CONCAT(RTV_,f)) ? 'L' : ' ')
1399 #define msec(u) (((u) + 500) / 1000) /* usec to msec */
1401 (void) printf("\n%s\n", "\
1402 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire");
1403 printf("%8u%c ", rtm
->rtm_rmx
.rmx_recvpipe
, lock(RPIPE
));
1404 printf("%8u%c ", rtm
->rtm_rmx
.rmx_sendpipe
, lock(SPIPE
));
1405 printf("%8u%c ", rtm
->rtm_rmx
.rmx_ssthresh
, lock(SSTHRESH
));
1406 printf("%8u%c ", msec(rtm
->rtm_rmx
.rmx_rtt
), lock(RTT
));
1407 printf("%8u%c ", msec(rtm
->rtm_rmx
.rmx_rttvar
), lock(RTTVAR
));
1408 printf("%8u%c ", rtm
->rtm_rmx
.rmx_hopcount
, lock(HOPCOUNT
));
1409 printf("%8u%c ", rtm
->rtm_rmx
.rmx_mtu
, lock(MTU
));
1410 if (rtm
->rtm_rmx
.rmx_expire
)
1411 rtm
->rtm_rmx
.rmx_expire
-= time(0);
1412 printf("%8d%c\n", rtm
->rtm_rmx
.rmx_expire
, lock(EXPIRE
));
1415 #define RTA_IGN (RTA_DST|RTA_GATEWAY|RTA_NETMASK|RTA_IFP|RTA_IFA|RTA_BRD)
1418 else if (rtm
->rtm_addrs
&~ RTA_IGN
) {
1419 (void) printf("sockaddrs: ");
1420 bprintf(stdout
, rtm
->rtm_addrs
, addrnames
);
1428 register struct rt_msghdr
*rtm
;
1430 (void) printf("\nlocks: ");
1431 bprintf(stdout
, rtm
->rtm_rmx
.rmx_locks
, metricnames
);
1432 (void) printf(" inits: ");
1433 bprintf(stdout
, rtm
->rtm_inits
, metricnames
);
1434 pmsg_addrs(((char *)(rtm
+ 1)), rtm
->rtm_addrs
);
1438 pmsg_addrs(cp
, addrs
)
1442 register struct sockaddr
*sa
;
1446 (void) putchar('\n');
1449 (void) printf("\nsockaddrs: ");
1450 bprintf(stdout
, addrs
, addrnames
);
1451 (void) putchar('\n');
1452 for (i
= 1; i
; i
<<= 1)
1454 sa
= (struct sockaddr
*)cp
;
1455 (void) printf(" %s", routename(sa
));
1458 (void) putchar('\n');
1459 (void) fflush(stdout
);
1473 while ((i
= *s
++) != 0) {
1474 if (b
& (1 << (i
-1))) {
1481 for (; (i
= *s
) > 32; s
++)
1488 (void) putc('>', fp
);
1495 register struct keytab
*kt
= keywords
;
1497 while (kt
->kt_cp
&& strcmp(kt
->kt_cp
, cp
))
1507 switch (su
->sa
.sa_family
) {
1509 (void) printf("%s: link %s; ",
1510 which
, link_ntoa(&su
->sdl
));
1513 (void) printf("%s: inet %s; ",
1514 which
, inet_ntoa(su
->sin
.sin_addr
));
1517 (void) fflush(stdout
);
1531 register char *addr
;
1532 register struct sockaddr
*sa
;
1534 register char *cp
= (char *)sa
;
1535 int size
= sa
->sa_len
;
1536 char *cplim
= cp
+ size
;
1537 register int byte
= 0, state
= VIRGIN
, new = 0 /* foil gcc */;
1542 if ((*addr
>= '0') && (*addr
<= '9')) {
1544 } else if ((*addr
>= 'a') && (*addr
<= 'f')) {
1545 new = *addr
- 'a' + 10;
1546 } else if ((*addr
>= 'A') && (*addr
<= 'F')) {
1547 new = *addr
- 'A' + 10;
1548 } else if (*addr
== 0)
1553 switch (state
/* | INPUT */) {
1554 case GOTTWO
| DIGIT
:
1555 *cp
++ = byte
; /*FALLTHROUGH*/
1556 case VIRGIN
| DIGIT
:
1557 state
= GOTONE
; byte
= new; continue;
1558 case GOTONE
| DIGIT
:
1559 state
= GOTTWO
; byte
= new + (byte
<< 4); continue;
1560 default: /* | DELIM */
1561 state
= VIRGIN
; *cp
++ = byte
; byte
= 0; continue;
1564 *cp
++ = byte
; /* FALLTHROUGH */
1569 } while (cp
< cplim
);
1570 sa
->sa_len
= cp
- (char *)sa
;