2 * Copyright (C) 1998 WIDE Project.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the project nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * Copyright (c) 1989 Stephen Deering
32 * Copyright (c) 1992, 1993
33 * The Regents of the University of California. All rights reserved.
35 * This code is derived from software contributed to Berkeley by
36 * Stephen Deering of Stanford University.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)mroute.c 8.2 (Berkeley) 4/28/95
67 * $FreeBSD: src/usr.bin/netstat/mroute6.c,v 1.1.2.9 2002/07/09 04:05:20 suz Exp $
68 * $DragonFly: src/usr.bin/netstat/mroute6.c,v 1.3 2005/08/04 17:31:23 drhodus Exp $
72 #include <sys/param.h>
73 #include <sys/queue.h>
74 #include <sys/socket.h>
75 #include <sys/socketvar.h>
76 #include <sys/protosw.h>
79 #include <net/if_var.h>
80 #include <net/route.h>
82 #include <netinet/in.h>
87 #include <netinet6/ip6_mroute.h>
92 #define WID_ORG (Wflag ? 39 : (numeric_addr ? 29 : 18)) /* width of origin column */
93 #define WID_GRP (Wflag ? 18 : (numeric_addr ? 16 : 18)) /* width of group column */
96 mroute6pr(u_long mfcaddr
, u_long mifaddr
)
98 struct mf6c
*mf6ctable
[MF6CTBLSIZ
], *mfcp
;
99 struct mif6 mif6table
[MAXMIFS
];
101 struct rtdetq rte
, *rtep
;
106 int saved_numeric_addr
;
110 if (mfcaddr
== 0 || mifaddr
== 0) {
111 printf("No IPv6 multicast routing compiled into this"
116 saved_numeric_addr
= numeric_addr
;
119 kread(mifaddr
, (char *)&mif6table
, sizeof(mif6table
));
121 for (mifi
= 0, mifp
= mif6table
; mifi
< MAXMIFS
; ++mifi
, ++mifp
) {
123 char ifname
[IFNAMSIZ
];
125 if (mifp
->m6_ifp
== NULL
)
128 kread((u_long
)mifp
->m6_ifp
, (char *)&ifnet
, sizeof(ifnet
));
130 if (!banner_printed
) {
131 printf("\nIPv6 Multicast Interface Table\n"
133 "Pkts-In Pkts-Out\n");
138 mifi
, mifp
->m6_rate_limit
);
139 printf(" %5s", (mifp
->m6_flags
& MIFF_REGISTER
) ?
140 "reg0" : if_indextoname(ifnet
.if_index
, ifname
));
142 printf(" %9llu %9llu\n", (unsigned long long)mifp
->m6_pkt_in
,
143 (unsigned long long)mifp
->m6_pkt_out
);
146 printf("\nIPv6 Multicast Interface Table is empty\n");
148 kread(mfcaddr
, (char *)&mf6ctable
, sizeof(mf6ctable
));
150 for (i
= 0; i
< MF6CTBLSIZ
; ++i
) {
153 kread((u_long
)mfcp
, (char *)&mfc
, sizeof(mfc
));
154 if (!banner_printed
) {
155 printf ("\nIPv6 Multicast Forwarding Cache\n");
156 printf(" %-*.*s %-*.*s %s",
157 WID_ORG
, WID_ORG
, "Origin",
158 WID_GRP
, WID_GRP
, "Group",
159 " Packets Waits In-Mif Out-Mifs\n");
163 printf(" %-*.*s", WID_ORG
, WID_ORG
,
164 routename6(&mfc
.mf6c_origin
));
165 printf(" %-*.*s", WID_GRP
, WID_GRP
,
166 routename6(&mfc
.mf6c_mcastgrp
));
167 printf(" %9llu", (unsigned long long)mfc
.mf6c_pkt_cnt
);
169 for (waitings
= 0, rtep
= mfc
.mf6c_stall
; rtep
; ) {
171 kread((u_long
)rtep
, (char *)&rte
, sizeof(rte
));
174 printf(" %3ld", waitings
);
176 if (mfc
.mf6c_parent
== MF6C_INCOMPLETE_PARENT
)
179 printf(" %3d ", mfc
.mf6c_parent
);
180 for (mifi
= 0; mifi
<= maxmif
; mifi
++) {
181 if (IF_ISSET(mifi
, &mfc
.mf6c_ifset
))
186 mfcp
= mfc
.mf6c_next
;
190 printf("\nIPv6 Multicast Routing Table is empty\n");
193 numeric_addr
= saved_numeric_addr
;
197 mrt6_stats(u_long mstaddr
)
199 struct mrt6stat mrtstat
;
202 printf("No IPv6 multicast routing compiled into this"
207 kread(mstaddr
, (char *)&mrtstat
, sizeof(mrtstat
));
208 printf("IPv6 multicast forwarding:\n");
210 #define p(f, m) if (mrtstat.f || sflag <= 1) \
211 printf(m, (unsigned long long)mrtstat.f, plural(mrtstat.f))
212 #define p2(f, m) if (mrtstat.f || sflag <= 1) \
213 printf(m, (unsigned long long)mrtstat.f, plurales(mrtstat.f))
215 p(mrt6s_mfc_lookups
, "\t%llu multicast forwarding cache lookup%s\n");
216 p2(mrt6s_mfc_misses
, "\t%llu multicast forwarding cache miss%s\n");
217 p(mrt6s_upcalls
, "\t%llu upcall%s to mrouted\n");
218 p(mrt6s_upq_ovflw
, "\t%llu upcall queue overflow%s\n");
219 p(mrt6s_upq_sockfull
,
220 "\t%llu upcall%s dropped due to full socket buffer\n");
221 p(mrt6s_cache_cleanups
, "\t%llu cache cleanup%s\n");
222 p(mrt6s_no_route
, "\t%llu datagram%s with no route for origin\n");
223 p(mrt6s_bad_tunnel
, "\t%llu datagram%s arrived with bad tunneling\n");
224 p(mrt6s_cant_tunnel
, "\t%llu datagram%s could not be tunneled\n");
225 p(mrt6s_wrong_if
, "\t%llu datagram%s arrived on wrong interface\n");
226 p(mrt6s_drop_sel
, "\t%llu datagram%s selectively dropped\n");
228 "\t%llu datagram%s dropped due to queue overflow\n");
229 p(mrt6s_pkt2large
, "\t%llu datagram%s dropped for being too large\n");