xref: /freebsd/usr.bin/netstat/mroute.c (revision b601c69bdbe8755d26570261d7fd4c02ee4eff74)
1 /*
2  * Copyright (c) 1989 Stephen Deering
3  * Copyright (c) 1992, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * Stephen Deering of Stanford University.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
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. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *	This product includes software developed by the University of
20  *	California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *	@(#)mroute.c	8.2 (Berkeley) 4/28/95
38  */
39 
40 #ifndef lint
41 static const char rcsid[] =
42   "$FreeBSD$";
43 #endif /* not lint */
44 
45 /*
46  * Print DVMRP multicast routing structures and statistics.
47  *
48  * MROUTING 1.0
49  */
50 
51 #include <sys/param.h>
52 #include <sys/queue.h>
53 #include <sys/socket.h>
54 #include <sys/socketvar.h>
55 #include <sys/protosw.h>
56 #include <sys/mbuf.h>
57 #include <sys/time.h>
58 
59 #include <net/if.h>
60 #include <netinet/in.h>
61 #include <netinet/igmp.h>
62 #include <net/route.h>
63 #include <netinet/ip_mroute.h>
64 
65 #include <stdio.h>
66 #include <stdlib.h>
67 #include "netstat.h"
68 
69 void
70 mroutepr(mfcaddr, vifaddr)
71 	u_long mfcaddr, vifaddr;
72 {
73 	struct mfc *mfctable[MFCTBLSIZ];
74 	struct vif viftable[MAXVIFS];
75 	struct mfc mfc, *m;
76 	register struct vif *v;
77 	register vifi_t vifi;
78 	register int i;
79 	register int banner_printed;
80 	register int saved_nflag;
81 	vifi_t maxvif = 0;
82 
83 	if (mfcaddr == 0 || vifaddr == 0) {
84 		printf("No IPv4 multicast routing compiled into this system.\n");
85 		return;
86 	}
87 
88 	saved_nflag = nflag;
89 	nflag = 1;
90 
91 	kread(vifaddr, (char *)&viftable, sizeof(viftable));
92 	banner_printed = 0;
93 	for (vifi = 0, v = viftable; vifi < MAXVIFS; ++vifi, ++v) {
94 		if (v->v_lcl_addr.s_addr == 0)
95 			continue;
96 
97 		maxvif = vifi;
98 		if (!banner_printed) {
99 			printf("\nVirtual Interface Table\n"
100 			       " Vif   Thresh   Rate   Local-Address   "
101 			       "Remote-Address    Pkts-In   Pkts-Out\n");
102 			banner_printed = 1;
103 		}
104 
105 		printf(" %2u    %6u   %4d   %-15.15s",
106 					/* opposite math of add_vif() */
107 		    vifi, v->v_threshold, v->v_rate_limit * 1000 / 1024,
108 		    routename(v->v_lcl_addr.s_addr));
109 		printf(" %-15.15s", (v->v_flags & VIFF_TUNNEL) ?
110 		    routename(v->v_rmt_addr.s_addr) : "");
111 
112 		printf(" %9lu  %9lu\n", v->v_pkt_in, v->v_pkt_out);
113 	}
114 	if (!banner_printed)
115 		printf("\nVirtual Interface Table is empty\n");
116 
117 	kread(mfcaddr, (char *)&mfctable, sizeof(mfctable));
118 	banner_printed = 0;
119 	for (i = 0; i < MFCTBLSIZ; ++i) {
120 		m = mfctable[i];
121 		while(m) {
122 			kread((u_long)m, (char *)&mfc, sizeof mfc);
123 
124 			if (!banner_printed) {
125 				printf("\nIPv4 Multicast Forwarding Cache\n"
126 				       " Origin          Group            "
127 				       " Packets In-Vif  Out-Vifs:Ttls\n");
128 				banner_printed = 1;
129 			}
130 
131 			printf(" %-15.15s", routename(mfc.mfc_origin.s_addr));
132 			printf(" %-15.15s", routename(mfc.mfc_mcastgrp.s_addr));
133 			printf(" %9lu", mfc.mfc_pkt_cnt);
134 			printf("  %3d   ", mfc.mfc_parent);
135 			for (vifi = 0; vifi <= maxvif; vifi++) {
136 				if (mfc.mfc_ttls[vifi] > 0)
137 					printf(" %u:%u", vifi,
138 					       mfc.mfc_ttls[vifi]);
139 			}
140 			printf("\n");
141 			m = mfc.mfc_next;
142 		}
143 	}
144 	if (!banner_printed)
145 		printf("\nMulticast Routing Table is empty\n");
146 
147 	printf("\n");
148 	nflag = saved_nflag;
149 }
150 
151 
152 void
153 mrt_stats(mstaddr)
154 	u_long mstaddr;
155 {
156 	struct mrtstat mrtstat;
157 
158 	if (mstaddr == 0) {
159 		printf("No IPv4 multicast routing compiled into this system.\n");
160 		return;
161 	}
162 
163 	kread(mstaddr, (char *)&mrtstat, sizeof(mrtstat));
164 	printf("IPv4 multicast forwarding:\n");
165 	printf(" %10lu multicast forwarding cache lookup%s\n",
166 	  mrtstat.mrts_mfc_lookups, plural(mrtstat.mrts_mfc_lookups));
167 	printf(" %10lu multicast forwarding cache miss%s\n",
168 	  mrtstat.mrts_mfc_misses, plurales(mrtstat.mrts_mfc_misses));
169 	printf(" %10lu upcall%s to mrouted\n",
170 	  mrtstat.mrts_upcalls, plural(mrtstat.mrts_upcalls));
171 	printf(" %10lu upcall queue overflow%s\n",
172 	  mrtstat.mrts_upq_ovflw, plural(mrtstat.mrts_upq_ovflw));
173 	printf(" %10lu upcall%s dropped due to full socket buffer\n",
174 	  mrtstat.mrts_upq_sockfull, plural(mrtstat.mrts_upq_sockfull));
175 	printf(" %10lu cache cleanup%s\n",
176 	  mrtstat.mrts_cache_cleanups, plural(mrtstat.mrts_cache_cleanups));
177 	printf(" %10lu datagram%s with no route for origin\n",
178 	  mrtstat.mrts_no_route, plural(mrtstat.mrts_no_route));
179 	printf(" %10lu datagram%s arrived with bad tunneling\n",
180 	  mrtstat.mrts_bad_tunnel, plural(mrtstat.mrts_bad_tunnel));
181 	printf(" %10lu datagram%s could not be tunneled\n",
182 	  mrtstat.mrts_cant_tunnel, plural(mrtstat.mrts_cant_tunnel));
183 	printf(" %10lu datagram%s arrived on wrong interface\n",
184 	  mrtstat.mrts_wrong_if, plural(mrtstat.mrts_wrong_if));
185 	printf(" %10lu datagram%s selectively dropped\n",
186 	  mrtstat.mrts_drop_sel, plural(mrtstat.mrts_drop_sel));
187 	printf(" %10lu datagram%s dropped due to queue overflow\n",
188 	  mrtstat.mrts_q_overflow, plural(mrtstat.mrts_q_overflow));
189 	printf(" %10lu datagram%s dropped for being too large\n",
190 	  mrtstat.mrts_pkt2large, plural(mrtstat.mrts_pkt2large));
191 }
192