2 * $OpenBSD: show.c,v 1.26 2003/08/26 08:33:12 itojun Exp $
3 * $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $
6 * Copyright (c) 1983, 1988, 1993
7 * The Regents of the University of California. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/param.h>
35 #include <sys/protosw.h>
36 #include <sys/socket.h>
40 #include <net/if_dl.h>
41 #include <net/if_types.h>
42 #include <net/route.h>
43 #include <netinet/in.h>
44 #include <arpa/inet.h>
46 #include <sys/sysctl.h>
59 * Definitions for showing gateway flags.
65 static const struct bits bits
[] = {
70 { RTF_BLACKHOLE
, 'B' },
72 { RTF_MODIFIED
, 'M' },
73 { RTF_DONE
, 'd' }, /* Completed -- for routing messages only */
75 { RTF_XRESOLVE
, 'X' },
84 static void p_rtentry(struct rt_msghdr
*);
85 static int p_sockaddr(struct sockaddr
*, int, int);
86 static void p_flags(int, const char *);
87 static void pr_rthdr(void);
88 static void pr_family(int);
91 * Print routing tables.
94 show(int argc
, char *argv
[])
96 struct rt_msghdr
*rtm
;
97 char *buf
= NULL
, *next
, *lim
= NULL
;
105 if (argc
== 2 && **argv
== '-') {
106 switch (keyword(*argv
+ 1)) {
131 mib
[4] = NET_RT_DUMP
;
139 if (sysctl(mib
, miblen
, NULL
, &needed
, NULL
, 0) < 0) {
140 perror("route-sysctl-estimate");
144 if ((buf
= malloc(needed
)) == NULL
) {
145 printf("out of space\n");
148 if (sysctl(mib
, miblen
, buf
, &needed
, NULL
, 0) < 0) {
149 perror("sysctl of routing table");
155 printf("Routing tables\n");
158 for (next
= buf
; next
< lim
; next
+= rtm
->rtm_msglen
) {
159 rtm
= (struct rt_msghdr
*)next
;
160 sa
= (struct sockaddr
*)(rtm
+ 1);
161 if (af
!= 0 && sa
->sa_family
!= af
)
169 /* column widths; each followed by one space */
170 #define WID_DST (nflag ? 20 : 32) /* destination column width */
171 #define WID_GW (nflag ? 20 : 32) /* gateway column width */
174 * Print header for routing table columns.
179 printf("%-*.*s %-*.*s %-6.6s\n",
180 WID_DST
, WID_DST
, "Destination",
181 WID_GW
, WID_GW
, "Gateway",
186 * Print a routing table entry.
189 p_rtentry(struct rt_msghdr
*rtm
)
191 struct sockaddr
*sa
= (struct sockaddr
*)(rtm
+ 1);
193 static int masks_done
, banner_printed
;
196 int af
= 0, interesting
= RTF_UP
| RTF_GATEWAY
| RTF_HOST
;
200 /* for the moment, netmasks are skipped over */
201 if (!banner_printed
) {
202 printf("Netmasks:\n");
205 if (masks_done
== 0) {
206 if (rtm
->rtm_addrs
!= RTA_DST
) {
220 * Print the information. If wflag is set p_sockaddr() can return
221 * a wider width then specified and we try to fit the second
222 * address in any remaining space so the flags still lines up.
224 if (rtm
->rtm_addrs
== RTA_DST
) {
225 p_sockaddr(sa
, 0, WID_DST
+ WID_GW
+ 2);
227 width
= p_sockaddr(sa
, rtm
->rtm_flags
, WID_DST
);
228 sa
= (struct sockaddr
*)(RT_ROUNDUP(sa
->sa_len
) + (char *)sa
);
229 p_sockaddr(sa
, 0, WID_GW
+ WID_DST
- width
);
231 p_flags(rtm
->rtm_flags
& interesting
, "%-6.6s ");
236 * Print address family header before a section of the routing table.
249 afname
= "Internet6";
260 printf("\n%s:\n", afname
);
262 printf("\nProtocol Family %d:\n", af
);
266 p_sockaddr(struct sockaddr
*sa
, int flags
, int width
)
271 int len
= sizeof(workbuf
);
274 switch(sa
->sa_family
) {
278 struct sockaddr_dl
*sdl
= (struct sockaddr_dl
*)sa
;
280 if (sdl
->sdl_nlen
== 0 && sdl
->sdl_alen
== 0 &&
281 sdl
->sdl_slen
== 0) {
282 snprintf(workbuf
, sizeof(workbuf
),
283 "link#%d", sdl
->sdl_index
);
285 switch (sdl
->sdl_type
) {
291 u_char
*lla
= (u_char
*)sdl
->sdl_data
+
295 for (i
= 0; i
< sdl
->sdl_alen
; i
++, lla
++) {
296 snprintf(cp
, len
, "%s%02x",
301 break; /* overflow */
317 struct sockaddr_in
*in
= (struct sockaddr_in
*)sa
;
319 if (in
->sin_addr
.s_addr
== 0) {
320 /* cp points to workbuf */
321 strncpy(cp
, "default", len
);
323 cp
= (flags
& RTF_HOST
) ? routename(sa
) : netname(sa
);
330 struct sockaddr_in6
*in6
= (struct sockaddr_in6
*)sa
;
332 if (IN6_IS_ADDR_UNSPECIFIED(&in6
->sin6_addr
)) {
333 /* cp points to workbuf */
334 strncpy(cp
, "default", len
);
336 cp
= ((flags
& RTF_HOST
) ? routename(sa
)
339 /* make sure numeric address is not truncated */
340 if (strchr(cp
, ':') != NULL
&&
341 (width
< 0 || strlen(cp
) > (size_t)width
))
349 u_char
*s
= (u_char
*)sa
->sa_data
, *slim
;
351 slim
= sa
->sa_len
+ (u_char
*) sa
;
352 cplim
= cp
+ sizeof(workbuf
) - 6;
353 snprintf(cp
, len
, "(%d)", sa
->sa_family
);
358 break; /* overflow */
360 while (s
< slim
&& cp
< cplim
) {
361 snprintf(cp
, len
, " %02x", *s
++);
365 break; /* overflow */
367 snprintf(cp
, len
, "%02x", *s
++);
371 break; /* overflow */
378 count
= printf("%s ", cp
);
381 count
= printf("%-*s ", width
, cp
);
383 count
= printf("%-*.*s ", width
, width
, cp
);
389 p_flags(int f
, const char *format
)
391 char name
[33], *flags
;
392 const struct bits
*p
= bits
;
394 for (flags
= name
; p
->b_mask
&& flags
< &name
[sizeof(name
) - 2]; p
++) {
399 printf(format
, name
);