]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/ifmcstat/ifmcstat.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / ifmcstat / ifmcstat.c
1 /*      $KAME: ifmcstat.c,v 1.48 2006/11/15 05:13:59 itojun Exp $       */
2
3 /*
4  * Copyright (c) 2007-2009 Bruce Simpson.
5  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6  * All rights reserved.
7  * 
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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 project 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.
19  * 
20  * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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
30  * SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include <sys/types.h>
37 #include <sys/param.h>
38 #include <sys/sysctl.h>
39 #include <sys/socket.h>
40 #include <sys/queue.h>
41 #include <sys/tree.h>
42
43 #include <net/if.h>
44 #include <net/if_var.h>
45 #include <net/if_types.h>
46 #include <net/if_dl.h>
47 #include <net/route.h>
48
49 #include <netinet/in.h>
50 #include <netinet/in_var.h>
51 #include <netinet/in_systm.h>
52 #include <netinet/ip.h>
53 #include <netinet/igmp.h>
54 #define KERNEL
55 # include <netinet/if_ether.h>
56 #undef KERNEL
57 #define _KERNEL
58 #define SYSCTL_DECL(x)
59 # include <netinet/igmp_var.h>
60 #undef SYSCTL_DECL
61 #undef _KERNEL
62
63 #ifdef INET6
64 #include <netinet/icmp6.h>
65 #define _KERNEL
66 # include <netinet6/mld6_var.h>
67 #undef _KERNEL
68 #endif /* INET6 */
69
70 #include <arpa/inet.h>
71 #include <netdb.h>
72
73 #include <stddef.h>
74 #include <stdarg.h>
75 #include <stdint.h>
76 #include <stdio.h>
77 #include <stdlib.h>
78 #include <string.h>
79
80 #include <ctype.h>
81 #include <err.h>
82 #include <errno.h>
83 #include <fcntl.h>
84 #include <kvm.h>
85 #include <limits.h>
86 #include <ifaddrs.h>
87 #include <nlist.h>
88 #include <sysexits.h>
89 #include <unistd.h>
90
91 /* XXX: This file currently assumes INET and KVM support in the base system. */
92 #ifndef INET
93 #define INET
94 #endif
95
96 extern void     printb(const char *, unsigned int, const char *);
97
98 union sockunion {
99         struct sockaddr_storage ss;
100         struct sockaddr         sa;
101         struct sockaddr_dl      sdl;
102 #ifdef INET
103         struct sockaddr_in      sin;
104 #endif
105 #ifdef INET6
106         struct sockaddr_in6     sin6;
107 #endif
108 };
109 typedef union sockunion sockunion_t;
110
111 uint32_t        ifindex = 0;
112 int             af = AF_UNSPEC;
113 #ifdef WITH_KVM
114 int             Kflag = 0;
115 #endif
116 int             vflag = 0;
117
118 #define sa_equal(a1, a2)        \
119         (bcmp((a1), (a2), ((a1))->sa_len) == 0)
120
121 #define sa_dl_equal(a1, a2)     \
122         ((((struct sockaddr_dl *)(a1))->sdl_len ==                      \
123          ((struct sockaddr_dl *)(a2))->sdl_len) &&                      \
124          (bcmp(LLADDR((struct sockaddr_dl *)(a1)),                      \
125                LLADDR((struct sockaddr_dl *)(a2)),                      \
126                ((struct sockaddr_dl *)(a1))->sdl_alen) == 0))
127
128 /*
129  * Most of the code in this utility is to support the use of KVM for
130  * post-mortem debugging of the multicast code.
131  */
132 #ifdef WITH_KVM
133
134 #ifdef INET
135 static void             if_addrlist(struct ifaddr *);
136 static struct in_multi *
137                         in_multientry(struct in_multi *);
138 #endif /* INET */
139
140 #ifdef INET6
141 static void             if6_addrlist(struct ifaddr *);
142 static struct in6_multi *
143                         in6_multientry(struct in6_multi *);
144 #endif /* INET6 */
145
146 static void             kread(u_long, void *, int);
147 static void             ll_addrlist(struct ifaddr *);
148
149 static int              ifmcstat_kvm(const char *kernel, const char *core);
150
151 #define KREAD(addr, buf, type) \
152         kread((u_long)addr, (void *)buf, sizeof(type))
153
154 kvm_t   *kvmd;
155 struct  nlist nl[] = {
156         { "_ifnet", 0, 0, 0, 0, },
157         { "", 0, 0, 0, 0, },
158 };
159 #define N_IFNET 0
160
161 #endif /* WITH_KVM */
162
163 static int              ifmcstat_getifmaddrs(void);
164 #ifdef INET
165 static void             in_ifinfo(struct igmp_ifinfo *);
166 static const char *     inm_mode(u_int mode);
167 #endif
168 #ifdef INET6
169 static void             in6_ifinfo(struct mld_ifinfo *);
170 static const char *     inet6_n2a(struct in6_addr *);
171 #endif
172 int                     main(int, char **);
173
174 static void
175 usage()
176 {
177
178         fprintf(stderr,
179             "usage: ifmcstat [-i interface] [-f address family]"
180             " [-v]"
181 #ifdef WITH_KVM
182             " [-K] [-M core] [-N system]"
183 #endif
184             "\n");
185         exit(EX_USAGE);
186 }
187
188 static const char *options = "i:f:vM:N:"
189 #ifdef WITH_KVM
190         "K"
191 #endif
192         ;
193
194 int
195 main(int argc, char **argv)
196 {
197         int c, error;
198 #ifdef WITH_KVM
199         const char *kernel = NULL;
200         const char *core = NULL;
201 #endif
202
203         while ((c = getopt(argc, argv, options)) != -1) {
204                 switch (c) {
205                 case 'i':
206                         if ((ifindex = if_nametoindex(optarg)) == 0) {
207                                 fprintf(stderr, "%s: unknown interface\n",
208                                     optarg);
209                                 exit(EX_NOHOST);
210                         }
211                         break;
212
213                 case 'f':
214 #ifdef INET
215                         if (strcmp(optarg, "inet") == 0) {
216                                 af = AF_INET;
217                                 break;
218                         }
219 #endif
220 #ifdef INET6
221                         if (strcmp(optarg, "inet6") == 0) {
222                                 af = AF_INET6;
223                                 break;
224                         }
225 #endif
226                         if (strcmp(optarg, "link") == 0) {
227                                 af = AF_LINK;
228                                 break;
229                         }
230                         fprintf(stderr, "%s: unknown address family\n", optarg);
231                         exit(EX_USAGE);
232                         /*NOTREACHED*/
233                         break;
234
235 #ifdef WITH_KVM
236                 case 'K':
237                         ++Kflag;
238                         break;
239 #endif
240
241                 case 'v':
242                         ++vflag;
243                         break;
244
245 #ifdef WITH_KVM
246                 case 'M':
247                         core = strdup(optarg);
248                         break;
249
250                 case 'N':
251                         kernel = strdup(optarg);
252                         break;
253 #endif
254
255                 default:
256                         usage();
257                         break;
258                         /*NOTREACHED*/
259                 }
260         }
261
262         if (af == AF_LINK && vflag)
263                 usage();
264
265 #ifdef WITH_KVM
266         if (Kflag)
267                 error = ifmcstat_kvm(kernel, core);
268         /*
269          * If KVM failed, and user did not explicitly specify a core file,
270          * or force KVM backend to be disabled, try the sysctl backend.
271          */
272         if (!Kflag || (error != 0 && (core == NULL && kernel == NULL)))
273 #endif
274         error = ifmcstat_getifmaddrs();
275         if (error != 0)
276                 exit(EX_OSERR);
277
278         exit(EX_OK);
279         /*NOTREACHED*/
280 }
281
282 #ifdef INET
283
284 static void
285 in_ifinfo(struct igmp_ifinfo *igi)
286 {
287
288         printf("\t");
289         switch (igi->igi_version) {
290         case IGMP_VERSION_1:
291         case IGMP_VERSION_2:
292         case IGMP_VERSION_3:
293                 printf("igmpv%d", igi->igi_version);
294                 break;
295         default:
296                 printf("igmpv?(%d)", igi->igi_version);
297                 break;
298         }
299         if (igi->igi_flags)
300                 printb(" flags", igi->igi_flags, "\020\1SILENT\2LOOPBACK");
301         if (igi->igi_version == IGMP_VERSION_3) {
302                 printf(" rv %u qi %u qri %u uri %u",
303                     igi->igi_rv, igi->igi_qi, igi->igi_qri, igi->igi_uri);
304         }
305         if (vflag >= 2) {
306                 printf(" v1timer %u v2timer %u v3timer %u",
307                     igi->igi_v1_timer, igi->igi_v2_timer, igi->igi_v3_timer);
308         }
309         printf("\n");
310 }
311
312 static const char *inm_modes[] = {
313         "undefined",
314         "include",
315         "exclude",
316 };
317
318 static const char *
319 inm_mode(u_int mode)
320 {
321
322         if (mode >= MCAST_UNDEFINED && mode <= MCAST_EXCLUDE)
323                 return (inm_modes[mode]);
324         return (NULL);
325 }
326
327 #endif /* INET */
328
329 #ifdef WITH_KVM
330
331 static int
332 ifmcstat_kvm(const char *kernel, const char *core)
333 {
334         char    buf[_POSIX2_LINE_MAX], ifname[IFNAMSIZ];
335         struct  ifnet   *ifp, *nifp, ifnet;
336
337         if ((kvmd = kvm_openfiles(kernel, core, NULL, O_RDONLY, buf)) ==
338             NULL) {
339                 perror("kvm_openfiles");
340                 return (-1);
341         }
342         if (kvm_nlist(kvmd, nl) < 0) {
343                 perror("kvm_nlist");
344                 return (-1);
345         }
346         if (nl[N_IFNET].n_value == 0) {
347                 printf("symbol %s not found\n", nl[N_IFNET].n_name);
348                 return (-1);
349         }
350         KREAD(nl[N_IFNET].n_value, &ifp, struct ifnet *);
351         while (ifp) {
352                 KREAD(ifp, &ifnet, struct ifnet);
353                 nifp = ifnet.if_link.tqe_next;
354                 if (ifindex && ifindex != ifnet.if_index)
355                         goto next;
356         
357                 printf("%s:\n", if_indextoname(ifnet.if_index, ifname));
358 #ifdef INET
359                 if_addrlist(TAILQ_FIRST(&ifnet.if_addrhead));
360 #endif
361 #ifdef INET6
362                 if6_addrlist(TAILQ_FIRST(&ifnet.if_addrhead));
363 #endif
364                 if (vflag)
365                         ll_addrlist(TAILQ_FIRST(&ifnet.if_addrhead));
366         next:
367                 ifp = nifp;
368         }
369
370         return (0);
371 }
372
373 static void
374 kread(u_long addr, void *buf, int len)
375 {
376
377         if (kvm_read(kvmd, addr, buf, len) != len) {
378                 perror("kvm_read");
379                 exit(EX_OSERR);
380         }
381 }
382
383 static void
384 ll_addrlist(struct ifaddr *ifap)
385 {
386         char addrbuf[NI_MAXHOST];
387         struct ifaddr ifa;
388         struct sockaddr sa;
389         struct sockaddr_dl sdl;
390         struct ifaddr *ifap0;
391
392         if (af && af != AF_LINK)
393                 return;
394
395         ifap0 = ifap;
396         while (ifap) {
397                 KREAD(ifap, &ifa, struct ifaddr);
398                 if (ifa.ifa_addr == NULL)
399                         goto nextifap;
400                 KREAD(ifa.ifa_addr, &sa, struct sockaddr);
401                 if (sa.sa_family != PF_LINK)
402                         goto nextifap;
403                 KREAD(ifa.ifa_addr, &sdl, struct sockaddr_dl);
404                 if (sdl.sdl_alen == 0)
405                         goto nextifap;
406                 addrbuf[0] = '\0';
407                 getnameinfo((struct sockaddr *)&sdl, sdl.sdl_len,
408                     addrbuf, sizeof(addrbuf), NULL, 0, NI_NUMERICHOST);
409                 printf("\tlink %s\n", addrbuf);
410         nextifap:
411                 ifap = ifa.ifa_link.tqe_next;
412         }
413         if (ifap0) {
414                 struct ifnet ifnet;
415                 struct ifmultiaddr ifm, *ifmp = 0;
416
417                 KREAD(ifap0, &ifa, struct ifaddr);
418                 KREAD(ifa.ifa_ifp, &ifnet, struct ifnet);
419                 if (TAILQ_FIRST(&ifnet.if_multiaddrs))
420                         ifmp = TAILQ_FIRST(&ifnet.if_multiaddrs);
421                 while (ifmp) {
422                         KREAD(ifmp, &ifm, struct ifmultiaddr);
423                         if (ifm.ifma_addr == NULL)
424                                 goto nextmulti;
425                         KREAD(ifm.ifma_addr, &sa, struct sockaddr);
426                         if (sa.sa_family != AF_LINK)
427                                 goto nextmulti;
428                         KREAD(ifm.ifma_addr, &sdl, struct sockaddr_dl);
429                         addrbuf[0] = '\0';
430                         getnameinfo((struct sockaddr *)&sdl,
431                             sdl.sdl_len, addrbuf, sizeof(addrbuf),
432                             NULL, 0, NI_NUMERICHOST);
433                         printf("\t\tgroup %s refcnt %d\n",
434                             addrbuf, ifm.ifma_refcount);
435                 nextmulti:
436                         ifmp = TAILQ_NEXT(&ifm, ifma_link);
437                 }
438         }
439 }
440
441 #ifdef INET6
442
443 static void
444 if6_addrlist(struct ifaddr *ifap)
445 {
446         struct ifnet ifnet;
447         struct ifaddr ifa;
448         struct sockaddr sa;
449         struct in6_ifaddr if6a;
450         struct ifaddr *ifap0;
451
452         if (af && af != AF_INET6)
453                 return;
454         ifap0 = ifap;
455         while (ifap) {
456                 KREAD(ifap, &ifa, struct ifaddr);
457                 if (ifa.ifa_addr == NULL)
458                         goto nextifap;
459                 KREAD(ifa.ifa_addr, &sa, struct sockaddr);
460                 if (sa.sa_family != PF_INET6)
461                         goto nextifap;
462                 KREAD(ifap, &if6a, struct in6_ifaddr);
463                 printf("\tinet6 %s\n", inet6_n2a(&if6a.ia_addr.sin6_addr));
464                 /*
465                  * Print per-link MLD information, if available.
466                  */
467                 if (ifa.ifa_ifp != NULL) {
468                         struct in6_ifextra ie;
469                         struct mld_ifinfo mli;
470
471                         KREAD(ifa.ifa_ifp, &ifnet, struct ifnet);
472                         KREAD(ifnet.if_afdata[AF_INET6], &ie,
473                             struct in6_ifextra);
474                         if (ie.mld_ifinfo != NULL) {
475                                 KREAD(ie.mld_ifinfo, &mli, struct mld_ifinfo);
476                                 in6_ifinfo(&mli);
477                         }
478                 }
479         nextifap:
480                 ifap = ifa.ifa_link.tqe_next;
481         }
482         if (ifap0) {
483                 struct ifnet ifnet;
484                 struct ifmultiaddr ifm, *ifmp = 0;
485                 struct sockaddr_dl sdl;
486
487                 KREAD(ifap0, &ifa, struct ifaddr);
488                 KREAD(ifa.ifa_ifp, &ifnet, struct ifnet);
489                 if (TAILQ_FIRST(&ifnet.if_multiaddrs))
490                         ifmp = TAILQ_FIRST(&ifnet.if_multiaddrs);
491                 while (ifmp) {
492                         KREAD(ifmp, &ifm, struct ifmultiaddr);
493                         if (ifm.ifma_addr == NULL)
494                                 goto nextmulti;
495                         KREAD(ifm.ifma_addr, &sa, struct sockaddr);
496                         if (sa.sa_family != AF_INET6)
497                                 goto nextmulti;
498                         (void)in6_multientry((struct in6_multi *)
499                                              ifm.ifma_protospec);
500                         if (ifm.ifma_lladdr == 0)
501                                 goto nextmulti;
502                         KREAD(ifm.ifma_lladdr, &sdl, struct sockaddr_dl);
503                         printf("\t\t\tmcast-macaddr %s refcnt %d\n",
504                                ether_ntoa((struct ether_addr *)LLADDR(&sdl)),
505                                ifm.ifma_refcount);
506                     nextmulti:
507                         ifmp = TAILQ_NEXT(&ifm, ifma_link);
508                 }
509         }
510 }
511
512 static struct in6_multi *
513 in6_multientry(struct in6_multi *mc)
514 {
515         struct in6_multi multi;
516
517         KREAD(mc, &multi, struct in6_multi);
518         printf("\t\tgroup %s", inet6_n2a(&multi.in6m_addr));
519         printf(" refcnt %u\n", multi.in6m_refcount);
520
521         return (multi.in6m_entry.le_next);
522 }
523
524 #endif /* INET6 */
525
526 #ifdef INET
527
528 static void
529 if_addrlist(struct ifaddr *ifap)
530 {
531         struct ifaddr ifa;
532         struct ifnet ifnet;
533         struct sockaddr sa;
534         struct in_ifaddr ia;
535         struct ifaddr *ifap0;
536
537         if (af && af != AF_INET)
538                 return;
539         ifap0 = ifap;
540         while (ifap) {
541                 KREAD(ifap, &ifa, struct ifaddr);
542                 if (ifa.ifa_addr == NULL)
543                         goto nextifap;
544                 KREAD(ifa.ifa_addr, &sa, struct sockaddr);
545                 if (sa.sa_family != PF_INET)
546                         goto nextifap;
547                 KREAD(ifap, &ia, struct in_ifaddr);
548                 printf("\tinet %s\n", inet_ntoa(ia.ia_addr.sin_addr));
549                 /*
550                  * Print per-link IGMP information, if available.
551                  */
552                 if (ifa.ifa_ifp != NULL) {
553                         struct in_ifinfo ii;
554                         struct igmp_ifinfo igi;
555
556                         KREAD(ifa.ifa_ifp, &ifnet, struct ifnet);
557                         KREAD(ifnet.if_afdata[AF_INET], &ii, struct in_ifinfo);
558                         if (ii.ii_igmp != NULL) {
559                                 KREAD(ii.ii_igmp, &igi, struct igmp_ifinfo);
560                                 in_ifinfo(&igi);
561                         }
562                 }
563         nextifap:
564                 ifap = ifa.ifa_link.tqe_next;
565         }
566         if (ifap0) {
567                 struct ifmultiaddr ifm, *ifmp = 0;
568                 struct sockaddr_dl sdl;
569
570                 KREAD(ifap0, &ifa, struct ifaddr);
571                 KREAD(ifa.ifa_ifp, &ifnet, struct ifnet);
572                 if (TAILQ_FIRST(&ifnet.if_multiaddrs))
573                         ifmp = TAILQ_FIRST(&ifnet.if_multiaddrs);
574                 while (ifmp) {
575                         KREAD(ifmp, &ifm, struct ifmultiaddr);
576                         if (ifm.ifma_addr == NULL)
577                                 goto nextmulti;
578                         KREAD(ifm.ifma_addr, &sa, struct sockaddr);
579                         if (sa.sa_family != AF_INET)
580                                 goto nextmulti;
581                         (void)in_multientry((struct in_multi *)
582                                             ifm.ifma_protospec);
583                         if (ifm.ifma_lladdr == 0)
584                                 goto nextmulti;
585                         KREAD(ifm.ifma_lladdr, &sdl, struct sockaddr_dl);
586                         printf("\t\t\tmcast-macaddr %s refcnt %d\n",
587                                ether_ntoa((struct ether_addr *)LLADDR(&sdl)),
588                                ifm.ifma_refcount);
589                     nextmulti:
590                         ifmp = TAILQ_NEXT(&ifm, ifma_link);
591                 }
592         }
593 }
594
595 static const char *inm_states[] = {
596         "not-member",
597         "silent",
598         "idle",
599         "lazy",
600         "sleeping",
601         "awakening",
602         "query-pending",
603         "sg-query-pending",
604         "leaving"
605 };
606
607 static const char *
608 inm_state(u_int state)
609 {
610
611         if (state >= IGMP_NOT_MEMBER && state <= IGMP_LEAVING_MEMBER)
612                 return (inm_states[state]);
613         return (NULL);
614 }
615
616 #if 0
617 static struct ip_msource *
618 ims_min_kvm(struct in_multi *pinm)
619 {
620         struct ip_msource ims0;
621         struct ip_msource *tmp, *parent;
622
623         parent = NULL;
624         tmp = RB_ROOT(&pinm->inm_srcs);
625         while (tmp) {
626                 parent = tmp;
627                 KREAD(tmp, &ims0, struct ip_msource);
628                 tmp = RB_LEFT(&ims0, ims_link);
629         }
630         return (parent); /* kva */
631 }
632
633 /* XXX This routine is buggy. See RB_NEXT in sys/tree.h. */
634 static struct ip_msource *
635 ims_next_kvm(struct ip_msource *ims)
636 {
637         struct ip_msource ims0, ims1;
638         struct ip_msource *tmp;
639
640         KREAD(ims, &ims0, struct ip_msource);
641         if (RB_RIGHT(&ims0, ims_link)) {
642                 ims = RB_RIGHT(&ims0, ims_link);
643                 KREAD(ims, &ims1, struct ip_msource);
644                 while ((tmp = RB_LEFT(&ims1, ims_link))) {
645                         KREAD(tmp, &ims0, struct ip_msource);
646                         ims = RB_LEFT(&ims0, ims_link);
647                 }
648         } else {
649                 tmp = RB_PARENT(&ims0, ims_link);
650                 if (tmp) {
651                         KREAD(tmp, &ims1, struct ip_msource);
652                         if (ims == RB_LEFT(&ims1, ims_link))
653                                 ims = tmp;
654                 } else {
655                         while ((tmp = RB_PARENT(&ims0, ims_link))) {
656                                 KREAD(tmp, &ims1, struct ip_msource);
657                                 if (ims == RB_RIGHT(&ims1, ims_link)) {
658                                         ims = tmp;
659                                         KREAD(ims, &ims0, struct ip_msource);
660                                 } else
661                                         break;
662                         }
663                         ims = RB_PARENT(&ims0, ims_link);
664                 }
665         }
666         return (ims); /* kva */
667 }
668
669 static void
670 inm_print_sources_kvm(struct in_multi *pinm)
671 {
672         struct ip_msource ims0;
673         struct ip_msource *ims;
674         struct in_addr src;
675         int cnt;
676         uint8_t fmode;
677
678         cnt = 0;
679         fmode = pinm->inm_st[1].iss_fmode;
680         if (fmode == MCAST_UNDEFINED)
681                 return;
682         for (ims = ims_min_kvm(pinm); ims != NULL; ims = ims_next_kvm(ims)) {
683                 if (cnt == 0)
684                         printf(" srcs ");
685                 KREAD(ims, &ims0, struct ip_msource);
686                 /* Only print sources in-mode at t1. */
687                 if (fmode != ims_get_mode(pinm, ims, 1))
688                         continue;
689                 src.s_addr = htonl(ims0.ims_haddr);
690                 printf("%s%s", (cnt++ == 0 ? "" : ","), inet_ntoa(src));
691         }
692 }
693 #endif
694
695 static struct in_multi *
696 in_multientry(struct in_multi *pinm)
697 {
698         struct in_multi inm;
699         const char *state, *mode;
700
701         KREAD(pinm, &inm, struct in_multi);
702         printf("\t\tgroup %s", inet_ntoa(inm.inm_addr));
703         printf(" refcnt %u", inm.inm_refcount);
704
705         state = inm_state(inm.inm_state);
706         if (state)
707                 printf(" state %s", state);
708         else
709                 printf(" state (%d)", inm.inm_state);
710
711         mode = inm_mode(inm.inm_st[1].iss_fmode);
712         if (mode)
713                 printf(" mode %s", mode);
714         else
715                 printf(" mode (%d)", inm.inm_st[1].iss_fmode);
716
717         if (vflag >= 2) {
718                 printf(" asm %u ex %u in %u rec %u",
719                     (u_int)inm.inm_st[1].iss_asm,
720                     (u_int)inm.inm_st[1].iss_ex,
721                     (u_int)inm.inm_st[1].iss_in,
722                     (u_int)inm.inm_st[1].iss_rec);
723         }
724
725 #if 0
726         /* Buggy. */
727         if (vflag)
728                 inm_print_sources_kvm(&inm);
729 #endif
730
731         printf("\n");
732         return (NULL);
733 }
734
735 #endif /* INET */
736
737 #endif /* WITH_KVM */
738
739 #ifdef INET6
740
741 static void
742 in6_ifinfo(struct mld_ifinfo *mli)
743 {
744
745         printf("\t");
746         switch (mli->mli_version) {
747         case MLD_VERSION_1:
748         case MLD_VERSION_2:
749                 printf("mldv%d", mli->mli_version);
750                 break;
751         default:
752                 printf("mldv?(%d)", mli->mli_version);
753                 break;
754         }
755         if (mli->mli_flags)
756                 printb(" flags", mli->mli_flags, "\020\1SILENT\2USEALLOW");
757         if (mli->mli_version == MLD_VERSION_2) {
758                 printf(" rv %u qi %u qri %u uri %u",
759                     mli->mli_rv, mli->mli_qi, mli->mli_qri, mli->mli_uri);
760         }
761         if (vflag >= 2) {
762                 printf(" v1timer %u v2timer %u", mli->mli_v1_timer,
763                    mli->mli_v2_timer);
764         }
765         printf("\n");
766 }
767
768 static const char *
769 inet6_n2a(struct in6_addr *p)
770 {
771         static char buf[NI_MAXHOST];
772         struct sockaddr_in6 sin6;
773         u_int32_t scopeid;
774         const int niflags = NI_NUMERICHOST;
775
776         memset(&sin6, 0, sizeof(sin6));
777         sin6.sin6_family = AF_INET6;
778         sin6.sin6_len = sizeof(struct sockaddr_in6);
779         sin6.sin6_addr = *p;
780         if (IN6_IS_ADDR_LINKLOCAL(p) || IN6_IS_ADDR_MC_LINKLOCAL(p) ||
781             IN6_IS_ADDR_MC_NODELOCAL(p)) {
782                 scopeid = ntohs(*(u_int16_t *)&sin6.sin6_addr.s6_addr[2]);
783                 if (scopeid) {
784                         sin6.sin6_scope_id = scopeid;
785                         sin6.sin6_addr.s6_addr[2] = 0;
786                         sin6.sin6_addr.s6_addr[3] = 0;
787                 }
788         }
789         if (getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len,
790             buf, sizeof(buf), NULL, 0, niflags) == 0) {
791                 return (buf);
792         } else {
793                 return ("(invalid)");
794         }
795 }
796 #endif /* INET6 */
797
798 #ifdef INET
799 /*
800  * Retrieve per-group source filter mode and lists via sysctl.
801  */
802 static void
803 inm_print_sources_sysctl(uint32_t ifindex, struct in_addr gina)
804 {
805 #define MAX_SYSCTL_TRY  5
806         int mib[7];
807         int ntry = 0;
808         size_t mibsize;
809         size_t len;
810         size_t needed;
811         size_t cnt;
812         int i;
813         char *buf;
814         struct in_addr *pina;
815         uint32_t *p;
816         uint32_t fmode;
817         const char *modestr;
818
819         mibsize = sizeof(mib) / sizeof(mib[0]);
820         if (sysctlnametomib("net.inet.ip.mcast.filters", mib, &mibsize) == -1) {
821                 perror("sysctlnametomib");
822                 return;
823         }
824
825         needed = 0;
826         mib[5] = ifindex;
827         mib[6] = gina.s_addr;   /* 32 bits wide */
828         mibsize = sizeof(mib) / sizeof(mib[0]);
829         do {
830                 if (sysctl(mib, mibsize, NULL, &needed, NULL, 0) == -1) {
831                         perror("sysctl net.inet.ip.mcast.filters");
832                         return;
833                 }
834                 if ((buf = malloc(needed)) == NULL) {
835                         perror("malloc");
836                         return;
837                 }
838                 if (sysctl(mib, mibsize, buf, &needed, NULL, 0) == -1) {
839                         if (errno != ENOMEM || ++ntry >= MAX_SYSCTL_TRY) {
840                                 perror("sysctl");
841                                 goto out_free;
842                         }
843                         free(buf);
844                         buf = NULL;
845                 } 
846         } while (buf == NULL);
847
848         len = needed;
849         if (len < sizeof(uint32_t)) {
850                 perror("sysctl");
851                 goto out_free;
852         }
853
854         p = (uint32_t *)buf;
855         fmode = *p++;
856         len -= sizeof(uint32_t);
857
858         modestr = inm_mode(fmode);
859         if (modestr)
860                 printf(" mode %s", modestr);
861         else
862                 printf(" mode (%u)", fmode);
863
864         if (vflag == 0)
865                 goto out_free;
866
867         cnt = len / sizeof(struct in_addr);
868         pina = (struct in_addr *)p;
869
870         for (i = 0; i < cnt; i++) {
871                 if (i == 0)
872                         printf(" srcs ");
873                 fprintf(stdout, "%s%s", (i == 0 ? "" : ","),
874                     inet_ntoa(*pina++));
875                 len -= sizeof(struct in_addr);
876         }
877         if (len > 0) {
878                 fprintf(stderr, "warning: %u trailing bytes from %s\n",
879                     (unsigned int)len, "net.inet.ip.mcast.filters");
880         }
881
882 out_free:
883         free(buf);
884 #undef  MAX_SYSCTL_TRY
885 }
886
887 #endif /* INET */
888
889 #ifdef INET6
890 /*
891  * Retrieve MLD per-group source filter mode and lists via sysctl.
892  *
893  * Note: The 128-bit IPv6 group addres needs to be segmented into
894  * 32-bit pieces for marshaling to sysctl. So the MIB name ends
895  * up looking like this:
896  *  a.b.c.d.e.ifindex.g[0].g[1].g[2].g[3]
897  * Assumes that pgroup originated from the kernel, so its components
898  * are already in network-byte order.
899  */
900 static void
901 in6m_print_sources_sysctl(uint32_t ifindex, struct in6_addr *pgroup)
902 {
903 #define MAX_SYSCTL_TRY  5
904         char addrbuf[INET6_ADDRSTRLEN];
905         int mib[10];
906         int ntry = 0;
907         int *pi;
908         size_t mibsize;
909         size_t len;
910         size_t needed;
911         size_t cnt;
912         int i;
913         char *buf;
914         struct in6_addr *pina;
915         uint32_t *p;
916         uint32_t fmode;
917         const char *modestr;
918
919         mibsize = sizeof(mib) / sizeof(mib[0]);
920         if (sysctlnametomib("net.inet6.ip6.mcast.filters", mib,
921             &mibsize) == -1) {
922                 perror("sysctlnametomib");
923                 return;
924         }
925
926         needed = 0;
927         mib[5] = ifindex;
928         pi = (int *)pgroup;
929         for (i = 0; i < 4; i++)
930                 mib[6 + i] = *pi++;
931
932         mibsize = sizeof(mib) / sizeof(mib[0]);
933         do {
934                 if (sysctl(mib, mibsize, NULL, &needed, NULL, 0) == -1) {
935                         perror("sysctl net.inet6.ip6.mcast.filters");
936                         return;
937                 }
938                 if ((buf = malloc(needed)) == NULL) {
939                         perror("malloc");
940                         return;
941                 }
942                 if (sysctl(mib, mibsize, buf, &needed, NULL, 0) == -1) {
943                         if (errno != ENOMEM || ++ntry >= MAX_SYSCTL_TRY) {
944                                 perror("sysctl");
945                                 goto out_free;
946                         }
947                         free(buf);
948                         buf = NULL;
949                 } 
950         } while (buf == NULL);
951
952         len = needed;
953         if (len < sizeof(uint32_t)) {
954                 perror("sysctl");
955                 goto out_free;
956         }
957
958         p = (uint32_t *)buf;
959         fmode = *p++;
960         len -= sizeof(uint32_t);
961
962         modestr = inm_mode(fmode);
963         if (modestr)
964                 printf(" mode %s", modestr);
965         else
966                 printf(" mode (%u)", fmode);
967
968         if (vflag == 0)
969                 goto out_free;
970
971         cnt = len / sizeof(struct in6_addr);
972         pina = (struct in6_addr *)p;
973
974         for (i = 0; i < cnt; i++) {
975                 if (i == 0)
976                         printf(" srcs ");
977                 inet_ntop(AF_INET6, (const char *)pina++, addrbuf,
978                     INET6_ADDRSTRLEN);
979                 fprintf(stdout, "%s%s", (i == 0 ? "" : ","), addrbuf);
980                 len -= sizeof(struct in6_addr);
981         }
982         if (len > 0) {
983                 fprintf(stderr, "warning: %u trailing bytes from %s\n",
984                     (unsigned int)len, "net.inet6.ip6.mcast.filters");
985         }
986
987 out_free:
988         free(buf);
989 #undef  MAX_SYSCTL_TRY
990 }
991 #endif /* INET6 */
992
993 static int
994 ifmcstat_getifmaddrs(void)
995 {
996         char                     thisifname[IFNAMSIZ];
997         char                     addrbuf[NI_MAXHOST];
998         struct ifaddrs          *ifap, *ifa;
999         struct ifmaddrs         *ifmap, *ifma;
1000         sockunion_t              lastifasa;
1001         sockunion_t             *psa, *pgsa, *pllsa, *pifasa;
1002         char                    *pcolon;
1003         char                    *pafname;
1004         uint32_t                 lastifindex, thisifindex;
1005         int                      error;
1006
1007         error = 0;
1008         ifap = NULL;
1009         ifmap = NULL;
1010         lastifindex = 0;
1011         thisifindex = 0;
1012         lastifasa.ss.ss_family = AF_UNSPEC;
1013
1014         if (getifaddrs(&ifap) != 0) {
1015                 warn("getifmaddrs");
1016                 return (-1);
1017         }
1018
1019         if (getifmaddrs(&ifmap) != 0) {
1020                 warn("getifmaddrs");
1021                 error = -1;
1022                 goto out;
1023         }
1024
1025         for (ifma = ifmap; ifma; ifma = ifma->ifma_next) {
1026                 error = 0;
1027                 if (ifma->ifma_name == NULL || ifma->ifma_addr == NULL)
1028                         continue;
1029
1030                 psa = (sockunion_t *)ifma->ifma_name;
1031                 if (psa->sa.sa_family != AF_LINK) {
1032                         fprintf(stderr,
1033                             "WARNING: Kernel returned invalid data.\n");
1034                         error = -1;
1035                         break;
1036                 }
1037
1038                 /* Filter on interface name. */
1039                 thisifindex = psa->sdl.sdl_index;
1040                 if (ifindex != 0 && thisifindex != ifindex)
1041                         continue;
1042
1043                 /* Filter on address family. */
1044                 pgsa = (sockunion_t *)ifma->ifma_addr;
1045                 if (af != 0 && pgsa->sa.sa_family != af)
1046                         continue;
1047
1048                 strlcpy(thisifname, link_ntoa(&psa->sdl), IFNAMSIZ);
1049                 pcolon = strchr(thisifname, ':');
1050                 if (pcolon)
1051                         *pcolon = '\0';
1052
1053                 /* Only print the banner for the first ifmaddrs entry. */
1054                 if (lastifindex == 0 || lastifindex != thisifindex) {
1055                         lastifindex = thisifindex;
1056                         fprintf(stdout, "%s:\n", thisifname);
1057                 }
1058
1059                 /*
1060                  * Currently, multicast joins only take place on the
1061                  * primary IPv4 address, and only on the link-local IPv6
1062                  * address, as per IGMPv2/3 and MLDv1/2 semantics.
1063                  * Therefore, we only look up the primary address on
1064                  * the first pass.
1065                  */
1066                 pifasa = NULL;
1067                 for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
1068                         if ((strcmp(ifa->ifa_name, thisifname) != 0) ||
1069                             (ifa->ifa_addr == NULL) ||
1070                             (ifa->ifa_addr->sa_family != pgsa->sa.sa_family))
1071                                 continue;
1072                         /*
1073                          * For AF_INET6 only the link-local address should
1074                          * be returned. If built without IPv6 support,
1075                          * skip this address entirely.
1076                          */
1077                         pifasa = (sockunion_t *)ifa->ifa_addr;
1078                         if (pifasa->sa.sa_family == AF_INET6
1079 #ifdef INET6
1080                             && !IN6_IS_ADDR_LINKLOCAL(&pifasa->sin6.sin6_addr)
1081 #endif
1082                         ) {
1083                                 pifasa = NULL;
1084                                 continue;
1085                         }
1086                         break;
1087                 }
1088                 if (pifasa == NULL)
1089                         continue;       /* primary address not found */
1090
1091                 if (!vflag && pifasa->sa.sa_family == AF_LINK)
1092                         continue;
1093
1094                 /* Parse and print primary address, if not already printed. */
1095                 if (lastifasa.ss.ss_family == AF_UNSPEC ||
1096                     ((lastifasa.ss.ss_family == AF_LINK &&
1097                       !sa_dl_equal(&lastifasa.sa, &pifasa->sa)) ||
1098                      !sa_equal(&lastifasa.sa, &pifasa->sa))) {
1099
1100                         switch (pifasa->sa.sa_family) {
1101                         case AF_INET:
1102                                 pafname = "inet";
1103                                 break;
1104                         case AF_INET6:
1105                                 pafname = "inet6";
1106                                 break;
1107                         case AF_LINK:
1108                                 pafname = "link";
1109                                 break;
1110                         default:
1111                                 pafname = "unknown";
1112                                 break;
1113                         }
1114
1115                         switch (pifasa->sa.sa_family) {
1116                         case AF_INET6:
1117 #ifdef INET6
1118                         {
1119                                 const char *p =
1120                                     inet6_n2a(&pifasa->sin6.sin6_addr);
1121                                 strlcpy(addrbuf, p, sizeof(addrbuf));
1122                                 break;
1123                         }
1124 #else
1125                         /* FALLTHROUGH */
1126 #endif
1127                         case AF_INET:
1128                         case AF_LINK:
1129                                 error = getnameinfo(&pifasa->sa,
1130                                     pifasa->sa.sa_len,
1131                                     addrbuf, sizeof(addrbuf), NULL, 0,
1132                                     NI_NUMERICHOST);
1133                                 if (error)
1134                                         perror("getnameinfo");
1135                                 break;
1136                         default:
1137                                 addrbuf[0] = '\0';
1138                                 break;
1139                         }
1140
1141                         fprintf(stdout, "\t%s %s\n", pafname, addrbuf);
1142 #ifdef INET
1143                         /*
1144                          * Print per-link IGMP information, if available.
1145                          */
1146                         if (pifasa->sa.sa_family == AF_INET) {
1147                                 struct igmp_ifinfo igi;
1148                                 size_t mibsize, len;
1149                                 int mib[5];
1150
1151                                 mibsize = sizeof(mib) / sizeof(mib[0]);
1152                                 if (sysctlnametomib("net.inet.igmp.ifinfo",
1153                                     mib, &mibsize) == -1) {
1154                                         perror("sysctlnametomib");
1155                                         goto next_ifnet;
1156                                 }
1157                                 mib[mibsize] = thisifindex;
1158                                 len = sizeof(struct igmp_ifinfo);
1159                                 if (sysctl(mib, mibsize + 1, &igi, &len, NULL,
1160                                     0) == -1) {
1161                                         perror("sysctl net.inet.igmp.ifinfo");
1162                                         goto next_ifnet;
1163                                 }
1164                                 in_ifinfo(&igi);
1165                         }
1166 #endif /* INET */
1167 #ifdef INET6
1168                         /*
1169                          * Print per-link MLD information, if available.
1170                          */
1171                         if (pifasa->sa.sa_family == AF_INET6) {
1172                                 struct mld_ifinfo mli;
1173                                 size_t mibsize, len;
1174                                 int mib[5];
1175
1176                                 mibsize = sizeof(mib) / sizeof(mib[0]);
1177                                 if (sysctlnametomib("net.inet6.mld.ifinfo",
1178                                     mib, &mibsize) == -1) {
1179                                         perror("sysctlnametomib");
1180                                         goto next_ifnet;
1181                                 }
1182                                 mib[mibsize] = thisifindex;
1183                                 len = sizeof(struct mld_ifinfo);
1184                                 if (sysctl(mib, mibsize + 1, &mli, &len, NULL,
1185                                     0) == -1) {
1186                                         perror("sysctl net.inet6.mld.ifinfo");
1187                                         goto next_ifnet;
1188                                 }
1189                                 in6_ifinfo(&mli);
1190                         }
1191 #endif /* INET6 */
1192 #if defined(INET) || defined(INET6)
1193 next_ifnet:
1194 #endif
1195                         lastifasa = *pifasa;
1196                 }
1197
1198                 /* Print this group address. */
1199 #ifdef INET6
1200                 if (pgsa->sa.sa_family == AF_INET6) {
1201                         const char *p = inet6_n2a(&pgsa->sin6.sin6_addr);
1202                         strlcpy(addrbuf, p, sizeof(addrbuf));
1203                 } else
1204 #endif
1205                 {
1206                         error = getnameinfo(&pgsa->sa, pgsa->sa.sa_len,
1207                             addrbuf, sizeof(addrbuf), NULL, 0, NI_NUMERICHOST);
1208                         if (error)
1209                                 perror("getnameinfo");
1210                 }
1211
1212                 fprintf(stdout, "\t\tgroup %s", addrbuf);
1213 #ifdef INET
1214                 if (pgsa->sa.sa_family == AF_INET) {
1215                         inm_print_sources_sysctl(thisifindex,
1216                             pgsa->sin.sin_addr);
1217                 }
1218 #endif
1219 #ifdef INET6
1220                 if (pgsa->sa.sa_family == AF_INET6) {
1221                         in6m_print_sources_sysctl(thisifindex,
1222                             &pgsa->sin6.sin6_addr);
1223                 }
1224 #endif
1225                 fprintf(stdout, "\n");
1226
1227                 /* Link-layer mapping, if present. */
1228                 pllsa = (sockunion_t *)ifma->ifma_lladdr;
1229                 if (pllsa != NULL) {
1230                         error = getnameinfo(&pllsa->sa, pllsa->sa.sa_len,
1231                             addrbuf, sizeof(addrbuf), NULL, 0, NI_NUMERICHOST);
1232                         fprintf(stdout, "\t\t\tmcast-macaddr %s\n", addrbuf);
1233                 }
1234         }
1235 out:
1236         if (ifmap != NULL)
1237                 freeifmaddrs(ifmap);
1238         if (ifap != NULL)
1239                 freeifaddrs(ifap);
1240
1241         return (error);
1242 }