1a93c2382SBruce M Simpson /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
31de7b4b8SPedro F. Giffuni *
44ab13459SBruce M Simpson * Copyright (c) 2007-2009 Bruce Simpson.
5a93c2382SBruce M Simpson * Copyright (c) 2000 Wilbert De Graaf.
6a93c2382SBruce M Simpson * All rights reserved.
7fc3cc3f5SBill Fenner *
8a93c2382SBruce M Simpson * Redistribution and use in source and binary forms, with or without
9a93c2382SBruce M Simpson * modification, are permitted provided that the following conditions
10a93c2382SBruce M Simpson * are met:
11a93c2382SBruce M Simpson * 1. Redistributions of source code must retain the above copyright
12a93c2382SBruce M Simpson * notice, this list of conditions and the following disclaimer.
13a93c2382SBruce M Simpson * 2. Redistributions in binary form must reproduce the above copyright
14a93c2382SBruce M Simpson * notice, this list of conditions and the following disclaimer in the
15a93c2382SBruce M Simpson * documentation and/or other materials provided with the distribution.
16a93c2382SBruce M Simpson *
17a93c2382SBruce M Simpson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18a93c2382SBruce M Simpson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19a93c2382SBruce M Simpson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20a93c2382SBruce M Simpson * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21a93c2382SBruce M Simpson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22a93c2382SBruce M Simpson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23a93c2382SBruce M Simpson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24a93c2382SBruce M Simpson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25a93c2382SBruce M Simpson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26a93c2382SBruce M Simpson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27a93c2382SBruce M Simpson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28a93c2382SBruce M Simpson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29a93c2382SBruce M Simpson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30a93c2382SBruce M Simpson * SUCH DAMAGE.
31a93c2382SBruce M Simpson */
32a93c2382SBruce M Simpson
33a93c2382SBruce M Simpson /*
347369700eSBruce M Simpson * Diagnostic and test utility for multicast sockets.
357369700eSBruce M Simpson * XXX: This file currently assumes INET support in the base system.
367369700eSBruce M Simpson * TODO: Support embedded KAME Scope ID in IPv6 group addresses.
377369700eSBruce M Simpson * TODO: Use IPv4 link-local address when source address selection
387369700eSBruce M Simpson * is implemented; use MCAST_JOIN_SOURCE for IPv4.
39fc3cc3f5SBill Fenner */
40fc3cc3f5SBill Fenner
41fc3cc3f5SBill Fenner #include <sys/types.h>
427369700eSBruce M Simpson #include <sys/param.h>
43a93c2382SBruce M Simpson #include <sys/errno.h>
44fc3cc3f5SBill Fenner #include <sys/socket.h>
45cf20f871SBill Fenner #include <sys/time.h>
46a93c2382SBruce M Simpson #include <sys/ioctl.h>
47a93c2382SBruce M Simpson
48fc3cc3f5SBill Fenner #include <net/if.h>
494a71a2e7SJulian Elischer #include <net/if_dl.h>
50a93c2382SBruce M Simpson #include <net/ethernet.h>
517369700eSBruce M Simpson #ifdef INET
52fc3cc3f5SBill Fenner #include <netinet/in.h>
537369700eSBruce M Simpson #include <netinet/in_systm.h>
547369700eSBruce M Simpson #include <netinet/ip.h>
557369700eSBruce M Simpson #include <netinet/ip_var.h>
567369700eSBruce M Simpson #endif
577369700eSBruce M Simpson #ifdef INET6
587369700eSBruce M Simpson #include <netinet/in.h>
597369700eSBruce M Simpson #include <netinet/ip6.h>
607369700eSBruce M Simpson #endif
61fc3cc3f5SBill Fenner
627369700eSBruce M Simpson #include <assert.h>
63a93c2382SBruce M Simpson #include <stdlib.h>
64a93c2382SBruce M Simpson #include <stdio.h>
65a93c2382SBruce M Simpson #include <string.h>
66a93c2382SBruce M Simpson #include <ctype.h>
677369700eSBruce M Simpson #include <errno.h>
68a93c2382SBruce M Simpson #include <err.h>
69a93c2382SBruce M Simpson #include <unistd.h>
70a93c2382SBruce M Simpson
717369700eSBruce M Simpson #include <arpa/inet.h>
727369700eSBruce M Simpson #include <netdb.h>
737369700eSBruce M Simpson #include <ifaddrs.h>
747369700eSBruce M Simpson
757369700eSBruce M Simpson union sockunion {
767369700eSBruce M Simpson struct sockaddr_storage ss;
777369700eSBruce M Simpson struct sockaddr sa;
787369700eSBruce M Simpson struct sockaddr_dl sdl;
797369700eSBruce M Simpson #ifdef INET
807369700eSBruce M Simpson struct sockaddr_in sin;
817369700eSBruce M Simpson #endif
827369700eSBruce M Simpson #ifdef INET6
837369700eSBruce M Simpson struct sockaddr_in6 sin6;
847369700eSBruce M Simpson #endif
857369700eSBruce M Simpson };
867369700eSBruce M Simpson typedef union sockunion sockunion_t;
877369700eSBruce M Simpson
887369700eSBruce M Simpson union mrequnion {
897369700eSBruce M Simpson #ifdef INET
907369700eSBruce M Simpson struct ip_mreq mr;
917369700eSBruce M Simpson struct ip_mreq_source mrs;
927369700eSBruce M Simpson #endif
937369700eSBruce M Simpson #ifdef INET6
947369700eSBruce M Simpson struct ipv6_mreq mr6;
957369700eSBruce M Simpson struct group_source_req gr;
967369700eSBruce M Simpson #endif
977369700eSBruce M Simpson };
987369700eSBruce M Simpson typedef union mrequnion mrequnion_t;
99a93c2382SBruce M Simpson
100a93c2382SBruce M Simpson #define MAX_ADDRS 20
101a93c2382SBruce M Simpson #define STR_SIZE 20
102a93c2382SBruce M Simpson #define LINE_LENGTH 80
103a93c2382SBruce M Simpson
1047369700eSBruce M Simpson #ifdef INET
1057369700eSBruce M Simpson static int __ifindex_to_primary_ip(const uint32_t, struct in_addr *);
1067369700eSBruce M Simpson #endif
1077369700eSBruce M Simpson static uint32_t parse_cmd_args(sockunion_t *, sockunion_t *,
1087369700eSBruce M Simpson const char *, const char *, const char *);
1097369700eSBruce M Simpson static void process_file(char *, int, int);
1107369700eSBruce M Simpson static void process_cmd(char*, int, int, FILE *);
1117369700eSBruce M Simpson static int su_cmp(const void *, const void *);
1127369700eSBruce M Simpson static void usage(void);
1137369700eSBruce M Simpson
1147369700eSBruce M Simpson /*
1157369700eSBruce M Simpson * Ordering predicate for qsort().
1167369700eSBruce M Simpson */
1174ab13459SBruce M Simpson static int
su_cmp(const void * a,const void * b)1187369700eSBruce M Simpson su_cmp(const void *a, const void *b)
1194ab13459SBruce M Simpson {
1207369700eSBruce M Simpson const sockunion_t *sua = (const sockunion_t *)a;
1217369700eSBruce M Simpson const sockunion_t *sub = (const sockunion_t *)b;
1227369700eSBruce M Simpson
1237369700eSBruce M Simpson assert(sua->sa.sa_family == sub->sa.sa_family);
1247369700eSBruce M Simpson
1257369700eSBruce M Simpson switch (sua->sa.sa_family) {
1267369700eSBruce M Simpson #ifdef INET
1277369700eSBruce M Simpson case AF_INET:
1287369700eSBruce M Simpson return ((int)(sua->sin.sin_addr.s_addr -
1297369700eSBruce M Simpson sub->sin.sin_addr.s_addr));
1307369700eSBruce M Simpson break;
1317369700eSBruce M Simpson #endif
1327369700eSBruce M Simpson #ifdef INET6
1337369700eSBruce M Simpson case AF_INET6:
1347369700eSBruce M Simpson return (memcmp(&sua->sin6.sin6_addr, &sub->sin6.sin6_addr,
1357369700eSBruce M Simpson sizeof(struct in6_addr)));
1367369700eSBruce M Simpson break;
1377369700eSBruce M Simpson #endif
1387369700eSBruce M Simpson default:
1397369700eSBruce M Simpson break;
1404ab13459SBruce M Simpson }
1414ab13459SBruce M Simpson
1427369700eSBruce M Simpson assert(sua->sa.sa_len == sub->sa.sa_len);
1437369700eSBruce M Simpson return (memcmp(sua, sub, sua->sa.sa_len));
1447369700eSBruce M Simpson }
1457369700eSBruce M Simpson
1467369700eSBruce M Simpson #ifdef INET
1477369700eSBruce M Simpson /*
1487369700eSBruce M Simpson * Internal: Map an interface index to primary IPv4 address.
1497369700eSBruce M Simpson * This is somewhat inefficient. This is a useful enough operation
1507369700eSBruce M Simpson * that it probably belongs in the C library.
1517369700eSBruce M Simpson * Return zero if found, -1 on error, 1 on not found.
1527369700eSBruce M Simpson */
1537369700eSBruce M Simpson static int
__ifindex_to_primary_ip(const uint32_t ifindex,struct in_addr * pina)1547369700eSBruce M Simpson __ifindex_to_primary_ip(const uint32_t ifindex, struct in_addr *pina)
1557369700eSBruce M Simpson {
1567369700eSBruce M Simpson char ifname[IFNAMSIZ];
1577369700eSBruce M Simpson struct ifaddrs *ifa;
1587369700eSBruce M Simpson struct ifaddrs *ifaddrs;
1597369700eSBruce M Simpson sockunion_t *psu;
1607369700eSBruce M Simpson int retval;
1617369700eSBruce M Simpson
1627369700eSBruce M Simpson assert(ifindex != 0);
1637369700eSBruce M Simpson
1647369700eSBruce M Simpson retval = -1;
1657369700eSBruce M Simpson if (if_indextoname(ifindex, ifname) == NULL)
1667369700eSBruce M Simpson return (retval);
1677369700eSBruce M Simpson if (getifaddrs(&ifaddrs) < 0)
1687369700eSBruce M Simpson return (retval);
1697369700eSBruce M Simpson
1707369700eSBruce M Simpson /*
1717369700eSBruce M Simpson * Find the ifaddr entry corresponding to the interface name,
1727369700eSBruce M Simpson * and return the first matching IPv4 address.
1737369700eSBruce M Simpson */
1747369700eSBruce M Simpson retval = 1;
1757369700eSBruce M Simpson for (ifa = ifaddrs; ifa != NULL; ifa = ifa->ifa_next) {
1767369700eSBruce M Simpson if (strcmp(ifa->ifa_name, ifname) != 0)
1777369700eSBruce M Simpson continue;
1787369700eSBruce M Simpson psu = (sockunion_t *)ifa->ifa_addr;
1797369700eSBruce M Simpson if (psu && psu->sa.sa_family == AF_INET) {
1807369700eSBruce M Simpson retval = 0;
1817369700eSBruce M Simpson memcpy(pina, &psu->sin.sin_addr,
1827369700eSBruce M Simpson sizeof(struct in_addr));
1837369700eSBruce M Simpson break;
1847369700eSBruce M Simpson }
1857369700eSBruce M Simpson }
1867369700eSBruce M Simpson
1877369700eSBruce M Simpson if (retval != 0)
1887369700eSBruce M Simpson errno = EADDRNOTAVAIL; /* XXX */
1897369700eSBruce M Simpson
1907369700eSBruce M Simpson freeifaddrs(ifaddrs);
1917369700eSBruce M Simpson return (retval);
1927369700eSBruce M Simpson }
1937369700eSBruce M Simpson #endif /* INET */
1947369700eSBruce M Simpson
195a93c2382SBruce M Simpson int
main(int argc,char ** argv)196a93c2382SBruce M Simpson main(int argc, char **argv)
197a93c2382SBruce M Simpson {
198a93c2382SBruce M Simpson char line[LINE_LENGTH];
199a93c2382SBruce M Simpson char *p;
2007369700eSBruce M Simpson int i, s, s6;
201a93c2382SBruce M Simpson
2027369700eSBruce M Simpson s = -1;
2037369700eSBruce M Simpson s6 = -1;
2047369700eSBruce M Simpson #ifdef INET
205a93c2382SBruce M Simpson s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
206a5752d55SKevin Lo if (s == -1 && errno != EAFNOSUPPORT)
2077369700eSBruce M Simpson err(1, "can't open IPv4 socket");
2087369700eSBruce M Simpson #endif
2097369700eSBruce M Simpson #ifdef INET6
2107369700eSBruce M Simpson s6 = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
211a5752d55SKevin Lo if (s6 == -1 && errno != EAFNOSUPPORT)
2127369700eSBruce M Simpson err(1, "can't open IPv6 socket");
2137369700eSBruce M Simpson #endif
2140b6d7bb4SJohn Baldwin if (s == -1 && s6 == -1)
2150b6d7bb4SJohn Baldwin errc(1, EPROTONOSUPPORT, "can't open socket");
216fc3cc3f5SBill Fenner
217a93c2382SBruce M Simpson if (argc < 2) {
218a93c2382SBruce M Simpson if (isatty(STDIN_FILENO)) {
219a93c2382SBruce M Simpson printf("multicast membership test program; "
220a93c2382SBruce M Simpson "enter ? for list of commands\n");
221a93c2382SBruce M Simpson }
222a93c2382SBruce M Simpson do {
223a93c2382SBruce M Simpson if (fgets(line, sizeof(line), stdin) != NULL) {
224a93c2382SBruce M Simpson if (line[0] != 'f')
2257369700eSBruce M Simpson process_cmd(line, s, s6, stdin);
226a93c2382SBruce M Simpson else {
227a93c2382SBruce M Simpson /* Get the filename */
228a93c2382SBruce M Simpson for (i = 1; isblank(line[i]); i++);
229a93c2382SBruce M Simpson if ((p = (char*)strchr(line, '\n'))
230a93c2382SBruce M Simpson != NULL)
231a93c2382SBruce M Simpson *p = '\0';
2327369700eSBruce M Simpson process_file(&line[i], s, s6);
233a93c2382SBruce M Simpson }
234a93c2382SBruce M Simpson }
235a93c2382SBruce M Simpson } while (!feof(stdin));
236a93c2382SBruce M Simpson } else {
237a93c2382SBruce M Simpson for (i = 1; i < argc; i++) {
2387369700eSBruce M Simpson process_file(argv[i], s, s6);
239a93c2382SBruce M Simpson }
240a93c2382SBruce M Simpson }
241fc3cc3f5SBill Fenner
2427369700eSBruce M Simpson if (s != -1)
2437369700eSBruce M Simpson close(s);
2447369700eSBruce M Simpson if (s6 != -1)
2457369700eSBruce M Simpson close(s6);
2467369700eSBruce M Simpson
247a93c2382SBruce M Simpson exit (0);
248a93c2382SBruce M Simpson }
249a93c2382SBruce M Simpson
250a93c2382SBruce M Simpson static void
process_file(char * fname,int s,int s6)2517369700eSBruce M Simpson process_file(char *fname, int s, int s6)
252fc3cc3f5SBill Fenner {
253a93c2382SBruce M Simpson char line[80];
254a93c2382SBruce M Simpson FILE *fp;
255a93c2382SBruce M Simpson char *lineptr;
256a93c2382SBruce M Simpson
257a93c2382SBruce M Simpson fp = fopen(fname, "r");
258a93c2382SBruce M Simpson if (fp == NULL) {
259a93c2382SBruce M Simpson warn("fopen");
260a93c2382SBruce M Simpson return;
261a93c2382SBruce M Simpson }
262a93c2382SBruce M Simpson
263a93c2382SBruce M Simpson /* Skip comments and empty lines. */
264a93c2382SBruce M Simpson while (fgets(line, sizeof(line), fp) != NULL) {
265fc3cc3f5SBill Fenner lineptr = line;
266a93c2382SBruce M Simpson while (isblank(*lineptr))
267a93c2382SBruce M Simpson lineptr++;
268a93c2382SBruce M Simpson if (*lineptr != '#' && *lineptr != '\n')
2697369700eSBruce M Simpson process_cmd(lineptr, s, s6, fp);
270a93c2382SBruce M Simpson }
271a93c2382SBruce M Simpson
272a93c2382SBruce M Simpson fclose(fp);
273a93c2382SBruce M Simpson }
274a93c2382SBruce M Simpson
2757369700eSBruce M Simpson /*
2767369700eSBruce M Simpson * Parse join/leave/allow/block arguments, given:
2777369700eSBruce M Simpson * str1: group (as AF_INET or AF_INET6 printable)
2787369700eSBruce M Simpson * str2: ifname
2797369700eSBruce M Simpson * str3: optional source address (may be NULL).
2807369700eSBruce M Simpson * This argument must have the same parsed address family as str1.
2817369700eSBruce M Simpson * Return the ifindex of ifname, or 0 if any parse element failed.
2827369700eSBruce M Simpson */
2837369700eSBruce M Simpson static uint32_t
parse_cmd_args(sockunion_t * psu,sockunion_t * psu2,const char * str1,const char * str2,const char * str3)2847369700eSBruce M Simpson parse_cmd_args(sockunion_t *psu, sockunion_t *psu2,
2857369700eSBruce M Simpson const char *str1, const char *str2, const char *str3)
2867369700eSBruce M Simpson {
2877369700eSBruce M Simpson struct addrinfo hints;
2887369700eSBruce M Simpson struct addrinfo *res;
2897369700eSBruce M Simpson uint32_t ifindex;
2907369700eSBruce M Simpson int af, error;
2917369700eSBruce M Simpson
2927369700eSBruce M Simpson assert(psu != NULL);
2937369700eSBruce M Simpson assert(str1 != NULL);
2947369700eSBruce M Simpson assert(str2 != NULL);
2957369700eSBruce M Simpson
2967369700eSBruce M Simpson af = AF_UNSPEC;
2977369700eSBruce M Simpson
2987369700eSBruce M Simpson ifindex = if_nametoindex(str2);
2997369700eSBruce M Simpson if (ifindex == 0)
3007369700eSBruce M Simpson return (0);
3017369700eSBruce M Simpson
3027369700eSBruce M Simpson memset(&hints, 0, sizeof(struct addrinfo));
3037369700eSBruce M Simpson hints.ai_flags = AI_NUMERICHOST;
3047369700eSBruce M Simpson hints.ai_family = PF_UNSPEC;
3057369700eSBruce M Simpson hints.ai_socktype = SOCK_DGRAM;
3067369700eSBruce M Simpson
3077369700eSBruce M Simpson memset(psu, 0, sizeof(sockunion_t));
3087369700eSBruce M Simpson psu->sa.sa_family = AF_UNSPEC;
3097369700eSBruce M Simpson
3107369700eSBruce M Simpson error = getaddrinfo(str1, "0", &hints, &res);
3117369700eSBruce M Simpson if (error) {
3127369700eSBruce M Simpson warnx("getaddrinfo: %s", gai_strerror(error));
3137369700eSBruce M Simpson return (0);
3147369700eSBruce M Simpson }
3157369700eSBruce M Simpson assert(res != NULL);
3167369700eSBruce M Simpson af = res->ai_family;
3177369700eSBruce M Simpson memcpy(psu, res->ai_addr, res->ai_addrlen);
3187369700eSBruce M Simpson freeaddrinfo(res);
3197369700eSBruce M Simpson
3207369700eSBruce M Simpson /* sscanf() may pass the empty string. */
3217369700eSBruce M Simpson if (psu2 != NULL && str3 != NULL && *str3 != '\0') {
3227369700eSBruce M Simpson memset(psu2, 0, sizeof(sockunion_t));
3237369700eSBruce M Simpson psu2->sa.sa_family = AF_UNSPEC;
3247369700eSBruce M Simpson
3257369700eSBruce M Simpson /* look for following address family; str3 is *optional*. */
3267369700eSBruce M Simpson hints.ai_family = af;
3277369700eSBruce M Simpson error = getaddrinfo(str3, "0", &hints, &res);
3287369700eSBruce M Simpson if (error) {
3297369700eSBruce M Simpson warnx("getaddrinfo: %s", gai_strerror(error));
3307369700eSBruce M Simpson ifindex = 0;
3317369700eSBruce M Simpson } else {
3327369700eSBruce M Simpson if (af != res->ai_family) {
3337369700eSBruce M Simpson errno = EINVAL; /* XXX */
3347369700eSBruce M Simpson ifindex = 0;
3357369700eSBruce M Simpson }
3367369700eSBruce M Simpson memcpy(psu2, res->ai_addr, res->ai_addrlen);
3377369700eSBruce M Simpson freeaddrinfo(res);
3387369700eSBruce M Simpson }
3397369700eSBruce M Simpson }
3407369700eSBruce M Simpson
3417369700eSBruce M Simpson return (ifindex);
3427369700eSBruce M Simpson }
3437369700eSBruce M Simpson
3447369700eSBruce M Simpson static __inline int
af2sock(const int af,int s,int s6)3457369700eSBruce M Simpson af2sock(const int af, int s, int s6)
3467369700eSBruce M Simpson {
3477369700eSBruce M Simpson
3487369700eSBruce M Simpson #ifdef INET
3497369700eSBruce M Simpson if (af == AF_INET)
3507369700eSBruce M Simpson return (s);
3517369700eSBruce M Simpson #endif
3527369700eSBruce M Simpson #ifdef INET6
3537369700eSBruce M Simpson if (af == AF_INET6)
3547369700eSBruce M Simpson return (s6);
3557369700eSBruce M Simpson #endif
3567369700eSBruce M Simpson return (-1);
3577369700eSBruce M Simpson }
3587369700eSBruce M Simpson
3597369700eSBruce M Simpson static __inline int
af2socklen(const int af)3607369700eSBruce M Simpson af2socklen(const int af)
3617369700eSBruce M Simpson {
3627369700eSBruce M Simpson
3637369700eSBruce M Simpson #ifdef INET
3647369700eSBruce M Simpson if (af == AF_INET)
3657369700eSBruce M Simpson return (sizeof(struct sockaddr_in));
3667369700eSBruce M Simpson #endif
3677369700eSBruce M Simpson #ifdef INET6
3687369700eSBruce M Simpson if (af == AF_INET6)
3697369700eSBruce M Simpson return (sizeof(struct sockaddr_in6));
3707369700eSBruce M Simpson #endif
3717369700eSBruce M Simpson return (-1);
3727369700eSBruce M Simpson }
3737369700eSBruce M Simpson
374a93c2382SBruce M Simpson static void
process_cmd(char * cmd,int s,int s6,FILE * fp __unused)3750b6d7bb4SJohn Baldwin process_cmd(char *cmd, int s, int s6, FILE *fp __unused)
376fc3cc3f5SBill Fenner {
377a93c2382SBruce M Simpson char str1[STR_SIZE];
378a93c2382SBruce M Simpson char str2[STR_SIZE];
379a93c2382SBruce M Simpson char str3[STR_SIZE];
3807369700eSBruce M Simpson mrequnion_t mr;
3817369700eSBruce M Simpson sockunion_t su, su2;
382a93c2382SBruce M Simpson struct ifreq ifr;
383a93c2382SBruce M Simpson char *line;
3847369700eSBruce M Simpson char *toptname;
3857369700eSBruce M Simpson void *optval;
3867369700eSBruce M Simpson uint32_t fmode, ifindex;
3877369700eSBruce M Simpson socklen_t optlen;
388d67c790dSEitan Adler size_t j;
3897369700eSBruce M Simpson int af, error, f, flags, i, level, n, optname;
3907369700eSBruce M Simpson
3917369700eSBruce M Simpson af = AF_UNSPEC;
3927369700eSBruce M Simpson su.sa.sa_family = AF_UNSPEC;
3937369700eSBruce M Simpson su2.sa.sa_family = AF_UNSPEC;
394a93c2382SBruce M Simpson
395a93c2382SBruce M Simpson line = cmd;
396a93c2382SBruce M Simpson while (isblank(*++line))
397a93c2382SBruce M Simpson ; /* Skip whitespace. */
398a93c2382SBruce M Simpson
3992b5554feSPedro F. Giffuni n = 0;
400a93c2382SBruce M Simpson switch (*cmd) {
401fc3cc3f5SBill Fenner case '?':
402a93c2382SBruce M Simpson usage();
403a93c2382SBruce M Simpson break;
404a93c2382SBruce M Simpson
405a93c2382SBruce M Simpson case 'q':
406a93c2382SBruce M Simpson close(s);
407a93c2382SBruce M Simpson exit(0);
408a93c2382SBruce M Simpson
409a93c2382SBruce M Simpson case 's':
410a93c2382SBruce M Simpson if ((sscanf(line, "%d", &n) != 1) || (n < 1)) {
411a93c2382SBruce M Simpson printf("-1\n");
412fc3cc3f5SBill Fenner break;
413fc3cc3f5SBill Fenner }
414a93c2382SBruce M Simpson sleep(n);
415a93c2382SBruce M Simpson printf("ok\n");
416a93c2382SBruce M Simpson break;
417fc3cc3f5SBill Fenner
418fc3cc3f5SBill Fenner case 'j':
419fc3cc3f5SBill Fenner case 'l':
4204ab13459SBruce M Simpson str3[0] = '\0';
4217369700eSBruce M Simpson toptname = "";
4224ab13459SBruce M Simpson sscanf(line, "%s %s %s", str1, str2, str3);
4237369700eSBruce M Simpson ifindex = parse_cmd_args(&su, &su2, str1, str2, str3);
4247369700eSBruce M Simpson if (ifindex == 0) {
4254ab13459SBruce M Simpson printf("-1\n");
4264ab13459SBruce M Simpson break;
4274ab13459SBruce M Simpson }
4287369700eSBruce M Simpson af = su.sa.sa_family;
4297369700eSBruce M Simpson #ifdef INET
4307369700eSBruce M Simpson if (af == AF_INET) {
4317369700eSBruce M Simpson struct in_addr ina;
4327369700eSBruce M Simpson
4337369700eSBruce M Simpson error = __ifindex_to_primary_ip(ifindex, &ina);
4347369700eSBruce M Simpson if (error != 0) {
4357369700eSBruce M Simpson warn("primary_ip_lookup %s", str2);
4367369700eSBruce M Simpson printf("-1\n");
4377369700eSBruce M Simpson break;
4387369700eSBruce M Simpson }
4397369700eSBruce M Simpson level = IPPROTO_IP;
4407369700eSBruce M Simpson
4417369700eSBruce M Simpson if (su2.sa.sa_family != AF_UNSPEC) {
4427369700eSBruce M Simpson mr.mrs.imr_multiaddr = su.sin.sin_addr;
4437369700eSBruce M Simpson mr.mrs.imr_sourceaddr = su2.sin.sin_addr;
4447369700eSBruce M Simpson mr.mrs.imr_interface = ina;
4457369700eSBruce M Simpson optname = (*cmd == 'j') ?
4467369700eSBruce M Simpson IP_ADD_SOURCE_MEMBERSHIP :
4474ab13459SBruce M Simpson IP_DROP_SOURCE_MEMBERSHIP;
4487369700eSBruce M Simpson toptname = (*cmd == 'j') ?
4494ab13459SBruce M Simpson "IP_ADD_SOURCE_MEMBERSHIP" :
4507369700eSBruce M Simpson "IP_DROP_SOURCE_MEMBERSHIP";
4517369700eSBruce M Simpson optval = (void *)&mr.mrs;
4527369700eSBruce M Simpson optlen = sizeof(mr.mrs);
4534ab13459SBruce M Simpson } else {
4547369700eSBruce M Simpson mr.mr.imr_multiaddr = su.sin.sin_addr;
4557369700eSBruce M Simpson mr.mr.imr_interface = ina;
4567369700eSBruce M Simpson optname = (*cmd == 'j') ?
4577369700eSBruce M Simpson IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP;
4587369700eSBruce M Simpson toptname = (*cmd == 'j') ?
4597369700eSBruce M Simpson "IP_ADD_MEMBERSHIP" : "IP_DROP_MEMBERSHIP";
4607369700eSBruce M Simpson optval = (void *)&mr.mr;
4617369700eSBruce M Simpson optlen = sizeof(mr.mr);
4624ab13459SBruce M Simpson }
4630b6d7bb4SJohn Baldwin if (s < 0) {
4640b6d7bb4SJohn Baldwin warnc(EPROTONOSUPPORT, "setsockopt %s",
4650b6d7bb4SJohn Baldwin toptname);
4660b6d7bb4SJohn Baldwin } else if (setsockopt(s, level, optname, optval,
4677369700eSBruce M Simpson optlen) == 0) {
4687369700eSBruce M Simpson printf("ok\n");
4697369700eSBruce M Simpson break;
4704ab13459SBruce M Simpson } else {
4717369700eSBruce M Simpson warn("setsockopt %s", toptname);
4727369700eSBruce M Simpson }
4737369700eSBruce M Simpson }
4747369700eSBruce M Simpson #ifdef INET6
4757369700eSBruce M Simpson else
4767369700eSBruce M Simpson #endif /* INET with INET6 */
4777369700eSBruce M Simpson #endif /* INET */
4787369700eSBruce M Simpson #ifdef INET6
4797369700eSBruce M Simpson if (af == AF_INET6) {
4807369700eSBruce M Simpson level = IPPROTO_IPV6;
4817369700eSBruce M Simpson if (su2.sa.sa_family != AF_UNSPEC) {
4827369700eSBruce M Simpson mr.gr.gsr_interface = ifindex;
4837369700eSBruce M Simpson mr.gr.gsr_group = su.ss;
4847369700eSBruce M Simpson mr.gr.gsr_source = su2.ss;
4857369700eSBruce M Simpson optname = (*cmd == 'j') ?
4867369700eSBruce M Simpson MCAST_JOIN_SOURCE_GROUP:
4877369700eSBruce M Simpson MCAST_LEAVE_SOURCE_GROUP;
4887369700eSBruce M Simpson toptname = (*cmd == 'j') ?
4897369700eSBruce M Simpson "MCAST_JOIN_SOURCE_GROUP":
4907369700eSBruce M Simpson "MCAST_LEAVE_SOURCE_GROUP";
4917369700eSBruce M Simpson optval = (void *)&mr.gr;
4927369700eSBruce M Simpson optlen = sizeof(mr.gr);
4937369700eSBruce M Simpson } else {
4947369700eSBruce M Simpson mr.mr6.ipv6mr_multiaddr = su.sin6.sin6_addr;
4957369700eSBruce M Simpson mr.mr6.ipv6mr_interface = ifindex;
4967369700eSBruce M Simpson optname = (*cmd == 'j') ?
4977369700eSBruce M Simpson IPV6_JOIN_GROUP :
4987369700eSBruce M Simpson IPV6_LEAVE_GROUP;
4997369700eSBruce M Simpson toptname = (*cmd == 'j') ?
5007369700eSBruce M Simpson "IPV6_JOIN_GROUP" :
5017369700eSBruce M Simpson "IPV6_LEAVE_GROUP";
5027369700eSBruce M Simpson optval = (void *)&mr.mr6;
5037369700eSBruce M Simpson optlen = sizeof(mr.mr6);
5047369700eSBruce M Simpson }
5050b6d7bb4SJohn Baldwin if (s6 < 0) {
5060b6d7bb4SJohn Baldwin warnc(EPROTONOSUPPORT, "setsockopt %s",
5070b6d7bb4SJohn Baldwin toptname);
5080b6d7bb4SJohn Baldwin } else if (setsockopt(s6, level, optname, optval,
5097369700eSBruce M Simpson optlen) == 0) {
5107369700eSBruce M Simpson printf("ok\n");
5117369700eSBruce M Simpson break;
5127369700eSBruce M Simpson } else {
5137369700eSBruce M Simpson warn("setsockopt %s", toptname);
5147369700eSBruce M Simpson }
5157369700eSBruce M Simpson }
5167369700eSBruce M Simpson #endif /* INET6 */
5177369700eSBruce M Simpson /* FALLTHROUGH */
5187369700eSBruce M Simpson printf("-1\n");
5197369700eSBruce M Simpson break;
5207369700eSBruce M Simpson
5217369700eSBruce M Simpson /*
5227369700eSBruce M Simpson * Set the socket to include or exclude filter mode, and
5237369700eSBruce M Simpson * add some sources to the filterlist, using the full-state API.
5247369700eSBruce M Simpson */
5257369700eSBruce M Simpson case 'i':
5267369700eSBruce M Simpson case 'e': {
5277369700eSBruce M Simpson sockunion_t sources[MAX_ADDRS];
5287369700eSBruce M Simpson struct addrinfo hints;
5297369700eSBruce M Simpson struct addrinfo *res;
5307369700eSBruce M Simpson char *cp;
5317369700eSBruce M Simpson int af1;
5327369700eSBruce M Simpson
5337369700eSBruce M Simpson n = 0;
5347369700eSBruce M Simpson fmode = (*cmd == 'i') ? MCAST_INCLUDE : MCAST_EXCLUDE;
5357369700eSBruce M Simpson if ((sscanf(line, "%s %s %d", str1, str2, &n)) != 3) {
536a93c2382SBruce M Simpson printf("-1\n");
537fc3cc3f5SBill Fenner break;
538fc3cc3f5SBill Fenner }
5397369700eSBruce M Simpson
5407369700eSBruce M Simpson ifindex = parse_cmd_args(&su, NULL, str1, str2, NULL);
5417369700eSBruce M Simpson if (ifindex == 0 || n < 0 || n > MAX_ADDRS) {
5427369700eSBruce M Simpson printf("-1\n");
543fc3cc3f5SBill Fenner break;
5447369700eSBruce M Simpson }
5457369700eSBruce M Simpson af = su.sa.sa_family;
5460b6d7bb4SJohn Baldwin if (af2sock(af, s, s6) == -1) {
5470b6d7bb4SJohn Baldwin warnc(EPROTONOSUPPORT, "setsourcefilter");
5480b6d7bb4SJohn Baldwin break;
5490b6d7bb4SJohn Baldwin }
5507369700eSBruce M Simpson
5517369700eSBruce M Simpson memset(&hints, 0, sizeof(struct addrinfo));
5527369700eSBruce M Simpson hints.ai_flags = AI_NUMERICHOST;
5537369700eSBruce M Simpson hints.ai_family = af;
5547369700eSBruce M Simpson hints.ai_socktype = SOCK_DGRAM;
5557369700eSBruce M Simpson
5567369700eSBruce M Simpson for (i = 0; i < n; i++) {
5577369700eSBruce M Simpson sockunion_t *psu = (sockunion_t *)&sources[i];
5587369700eSBruce M Simpson /*
5597369700eSBruce M Simpson * Trim trailing whitespace, as getaddrinfo()
5607369700eSBruce M Simpson * can't cope with it.
5617369700eSBruce M Simpson */
5627369700eSBruce M Simpson fgets(str1, sizeof(str1), fp);
5637369700eSBruce M Simpson cp = strchr(str1, '\n');
5647369700eSBruce M Simpson if (cp != NULL)
5657369700eSBruce M Simpson *cp = '\0';
5667369700eSBruce M Simpson
5677369700eSBruce M Simpson res = NULL;
5687369700eSBruce M Simpson error = getaddrinfo(str1, "0", &hints, &res);
5697369700eSBruce M Simpson if (error)
5707369700eSBruce M Simpson break;
5717369700eSBruce M Simpson assert(res != NULL);
5727369700eSBruce M Simpson
5737369700eSBruce M Simpson memset(psu, 0, sizeof(sockunion_t));
5747369700eSBruce M Simpson af1 = res->ai_family;
5757369700eSBruce M Simpson if (af1 == af)
5767369700eSBruce M Simpson memcpy(psu, res->ai_addr, res->ai_addrlen);
5777369700eSBruce M Simpson freeaddrinfo(res);
5787369700eSBruce M Simpson if (af1 != af)
5797369700eSBruce M Simpson break;
5807369700eSBruce M Simpson }
5817369700eSBruce M Simpson if (i < n) {
5827369700eSBruce M Simpson if (error)
5837369700eSBruce M Simpson warnx("getaddrinfo: %s", gai_strerror(error));
5847369700eSBruce M Simpson printf("-1\n");
5857369700eSBruce M Simpson break;
5867369700eSBruce M Simpson }
5877369700eSBruce M Simpson if (setsourcefilter(af2sock(af, s, s6), ifindex,
5887369700eSBruce M Simpson &su.sa, su.sa.sa_len, fmode, n, &sources[0].ss) != 0)
5897369700eSBruce M Simpson warn("setsourcefilter");
5907369700eSBruce M Simpson else
5917369700eSBruce M Simpson printf("ok\n");
5927369700eSBruce M Simpson } break;
5937369700eSBruce M Simpson
5947369700eSBruce M Simpson /*
5957369700eSBruce M Simpson * Allow or block traffic from a source, using the
5967369700eSBruce M Simpson * delta based api.
5977369700eSBruce M Simpson */
5987369700eSBruce M Simpson case 't':
5997369700eSBruce M Simpson case 'b': {
6007369700eSBruce M Simpson str3[0] = '\0';
6017369700eSBruce M Simpson toptname = "";
6027369700eSBruce M Simpson sscanf(line, "%s %s %s", str1, str2, str3);
6037369700eSBruce M Simpson ifindex = parse_cmd_args(&su, &su2, str1, str2, str3);
6047369700eSBruce M Simpson if (ifindex == 0 || su2.sa.sa_family == AF_UNSPEC) {
6057369700eSBruce M Simpson printf("-1\n");
6067369700eSBruce M Simpson break;
6077369700eSBruce M Simpson }
6087369700eSBruce M Simpson af = su.sa.sa_family;
6090b6d7bb4SJohn Baldwin if (af2sock(af, s, s6) == -1) {
6100b6d7bb4SJohn Baldwin warnc(EPROTONOSUPPORT, "getsourcefilter");
6110b6d7bb4SJohn Baldwin break;
6120b6d7bb4SJohn Baldwin }
6137369700eSBruce M Simpson
6147369700eSBruce M Simpson /* First determine our current filter mode. */
6157369700eSBruce M Simpson if (getsourcefilter(af2sock(af, s, s6), ifindex,
6167369700eSBruce M Simpson &su.sa, su.sa.sa_len, &fmode, &n, NULL) != 0) {
6177369700eSBruce M Simpson warn("getsourcefilter");
6187369700eSBruce M Simpson break;
6197369700eSBruce M Simpson }
6207369700eSBruce M Simpson #ifdef INET
6217369700eSBruce M Simpson if (af == AF_INET) {
6227369700eSBruce M Simpson struct in_addr ina;
6237369700eSBruce M Simpson
6247369700eSBruce M Simpson error = __ifindex_to_primary_ip(ifindex, &ina);
6257369700eSBruce M Simpson if (error != 0) {
6267369700eSBruce M Simpson warn("primary_ip_lookup %s", str2);
6277369700eSBruce M Simpson printf("-1\n");
6287369700eSBruce M Simpson break;
6297369700eSBruce M Simpson }
6307369700eSBruce M Simpson level = IPPROTO_IP;
6317369700eSBruce M Simpson optval = (void *)&mr.mrs;
6327369700eSBruce M Simpson optlen = sizeof(mr.mrs);
6337369700eSBruce M Simpson mr.mrs.imr_multiaddr = su.sin.sin_addr;
6347369700eSBruce M Simpson mr.mrs.imr_sourceaddr = su2.sin.sin_addr;
6357369700eSBruce M Simpson mr.mrs.imr_interface = ina;
6367369700eSBruce M Simpson if (fmode == MCAST_EXCLUDE) {
6377369700eSBruce M Simpson /* Any-source mode socket membership. */
6387369700eSBruce M Simpson optname = (*cmd == 't') ?
6397369700eSBruce M Simpson IP_UNBLOCK_SOURCE :
6407369700eSBruce M Simpson IP_BLOCK_SOURCE;
6417369700eSBruce M Simpson toptname = (*cmd == 't') ?
6427369700eSBruce M Simpson "IP_UNBLOCK_SOURCE" :
6437369700eSBruce M Simpson "IP_BLOCK_SOURCE";
6447369700eSBruce M Simpson } else {
6457369700eSBruce M Simpson /* Source-specific mode socket membership. */
6467369700eSBruce M Simpson optname = (*cmd == 't') ?
6477369700eSBruce M Simpson IP_ADD_SOURCE_MEMBERSHIP :
6487369700eSBruce M Simpson IP_DROP_SOURCE_MEMBERSHIP;
6497369700eSBruce M Simpson toptname = (*cmd == 't') ?
6507369700eSBruce M Simpson "IP_ADD_SOURCE_MEMBERSHIP" :
6517369700eSBruce M Simpson "IP_DROP_SOURCE_MEMBERSHIP";
6527369700eSBruce M Simpson }
6537369700eSBruce M Simpson if (setsockopt(s, level, optname, optval,
6547369700eSBruce M Simpson optlen) == 0) {
6557369700eSBruce M Simpson printf("ok\n");
6567369700eSBruce M Simpson break;
6577369700eSBruce M Simpson } else {
6587369700eSBruce M Simpson warn("setsockopt %s", toptname);
6597369700eSBruce M Simpson }
6607369700eSBruce M Simpson }
6617369700eSBruce M Simpson #ifdef INET6
6627369700eSBruce M Simpson else
6637369700eSBruce M Simpson #endif /* INET with INET6 */
6647369700eSBruce M Simpson #endif /* INET */
6657369700eSBruce M Simpson #ifdef INET6
6667369700eSBruce M Simpson if (af == AF_INET6) {
6677369700eSBruce M Simpson level = IPPROTO_IPV6;
6687369700eSBruce M Simpson mr.gr.gsr_interface = ifindex;
6697369700eSBruce M Simpson mr.gr.gsr_group = su.ss;
6707369700eSBruce M Simpson mr.gr.gsr_source = su2.ss;
6717369700eSBruce M Simpson if (fmode == MCAST_EXCLUDE) {
6727369700eSBruce M Simpson /* Any-source mode socket membership. */
6737369700eSBruce M Simpson optname = (*cmd == 't') ?
6747369700eSBruce M Simpson MCAST_UNBLOCK_SOURCE :
6757369700eSBruce M Simpson MCAST_BLOCK_SOURCE;
6767369700eSBruce M Simpson toptname = (*cmd == 't') ?
6777369700eSBruce M Simpson "MCAST_UNBLOCK_SOURCE" :
6787369700eSBruce M Simpson "MCAST_BLOCK_SOURCE";
6797369700eSBruce M Simpson } else {
6807369700eSBruce M Simpson /* Source-specific mode socket membership. */
6817369700eSBruce M Simpson optname = (*cmd == 't') ?
6827369700eSBruce M Simpson MCAST_JOIN_SOURCE_GROUP :
6837369700eSBruce M Simpson MCAST_LEAVE_SOURCE_GROUP;
6847369700eSBruce M Simpson toptname = (*cmd == 't') ?
6857369700eSBruce M Simpson "MCAST_JOIN_SOURCE_GROUP":
6867369700eSBruce M Simpson "MCAST_LEAVE_SOURCE_GROUP";
6877369700eSBruce M Simpson }
6887369700eSBruce M Simpson optval = (void *)&mr.gr;
6897369700eSBruce M Simpson optlen = sizeof(mr.gr);
6907369700eSBruce M Simpson if (setsockopt(s6, level, optname, optval,
6917369700eSBruce M Simpson optlen) == 0) {
6927369700eSBruce M Simpson printf("ok\n");
6937369700eSBruce M Simpson break;
6947369700eSBruce M Simpson } else {
6957369700eSBruce M Simpson warn("setsockopt %s", toptname);
6967369700eSBruce M Simpson }
6977369700eSBruce M Simpson }
6987369700eSBruce M Simpson #endif /* INET6 */
6997369700eSBruce M Simpson /* FALLTHROUGH */
7007369700eSBruce M Simpson printf("-1\n");
7017369700eSBruce M Simpson } break;
7027369700eSBruce M Simpson
7037369700eSBruce M Simpson case 'g': {
7047369700eSBruce M Simpson sockunion_t sources[MAX_ADDRS];
7057369700eSBruce M Simpson char addrbuf[NI_MAXHOST];
7067369700eSBruce M Simpson int nreqsrc, nsrc;
7077369700eSBruce M Simpson
7087369700eSBruce M Simpson if ((sscanf(line, "%s %s %d", str1, str2, &nreqsrc)) != 3) {
7097369700eSBruce M Simpson printf("-1\n");
7107369700eSBruce M Simpson break;
7117369700eSBruce M Simpson }
7127369700eSBruce M Simpson ifindex = parse_cmd_args(&su, NULL, str1, str2, NULL);
7137369700eSBruce M Simpson if (ifindex == 0 || (n < 0 || n > MAX_ADDRS)) {
7147369700eSBruce M Simpson printf("-1\n");
7157369700eSBruce M Simpson break;
7167369700eSBruce M Simpson }
7177369700eSBruce M Simpson
7187369700eSBruce M Simpson af = su.sa.sa_family;
7190b6d7bb4SJohn Baldwin if (af2sock(af, s, s6) == -1) {
7200b6d7bb4SJohn Baldwin warnc(EPROTONOSUPPORT, "getsourcefilter");
7210b6d7bb4SJohn Baldwin break;
7220b6d7bb4SJohn Baldwin }
7237369700eSBruce M Simpson nsrc = nreqsrc;
7247369700eSBruce M Simpson if (getsourcefilter(af2sock(af, s, s6), ifindex, &su.sa,
7257369700eSBruce M Simpson su.sa.sa_len, &fmode, &nsrc, &sources[0].ss) != 0) {
7267369700eSBruce M Simpson warn("getsourcefilter");
7277369700eSBruce M Simpson printf("-1\n");
7287369700eSBruce M Simpson break;
7297369700eSBruce M Simpson }
7307369700eSBruce M Simpson printf("%s\n", (fmode == MCAST_INCLUDE) ? "include" :
7317369700eSBruce M Simpson "exclude");
7327369700eSBruce M Simpson printf("%d\n", nsrc);
7337369700eSBruce M Simpson
7347369700eSBruce M Simpson nsrc = MIN(nreqsrc, nsrc);
7357369700eSBruce M Simpson fprintf(stderr, "hexdump of sources:\n");
7367369700eSBruce M Simpson uint8_t *bp = (uint8_t *)&sources[0];
737d67c790dSEitan Adler for (j = 0; j < (nsrc * sizeof(sources[0])); j++) {
738d67c790dSEitan Adler fprintf(stderr, "%02x", bp[j]);
7397369700eSBruce M Simpson }
7407369700eSBruce M Simpson fprintf(stderr, "\nend hexdump\n");
7417369700eSBruce M Simpson
7427369700eSBruce M Simpson qsort(sources, nsrc, af2socklen(af), su_cmp);
7437369700eSBruce M Simpson for (i = 0; i < nsrc; i++) {
7447369700eSBruce M Simpson sockunion_t *psu = (sockunion_t *)&sources[i];
7457369700eSBruce M Simpson addrbuf[0] = '\0';
7467369700eSBruce M Simpson error = getnameinfo(&psu->sa, psu->sa.sa_len,
7477369700eSBruce M Simpson addrbuf, sizeof(addrbuf), NULL, 0,
7487369700eSBruce M Simpson NI_NUMERICHOST);
7497369700eSBruce M Simpson if (error)
7507369700eSBruce M Simpson warnx("getnameinfo: %s", gai_strerror(error));
7517369700eSBruce M Simpson else
7527369700eSBruce M Simpson printf("%s\n", addrbuf);
7537369700eSBruce M Simpson }
7547369700eSBruce M Simpson printf("ok\n");
7557369700eSBruce M Simpson } break;
7567369700eSBruce M Simpson
7577369700eSBruce M Simpson /* link-layer stuff follows. */
758fc3cc3f5SBill Fenner
759fc3cc3f5SBill Fenner case 'a':
760a93c2382SBruce M Simpson case 'd': {
7614a71a2e7SJulian Elischer struct sockaddr_dl *dlp;
762a93c2382SBruce M Simpson struct ether_addr *ep;
763fc3cc3f5SBill Fenner
764a93c2382SBruce M Simpson memset(&ifr, 0, sizeof(struct ifreq));
7654a71a2e7SJulian Elischer dlp = (struct sockaddr_dl *)&ifr.ifr_addr;
7664a71a2e7SJulian Elischer dlp->sdl_len = sizeof(struct sockaddr_dl);
7674a71a2e7SJulian Elischer dlp->sdl_family = AF_LINK;
7684a71a2e7SJulian Elischer dlp->sdl_index = 0;
7694a71a2e7SJulian Elischer dlp->sdl_nlen = 0;
770a93c2382SBruce M Simpson dlp->sdl_alen = ETHER_ADDR_LEN;
7714a71a2e7SJulian Elischer dlp->sdl_slen = 0;
772a93c2382SBruce M Simpson if (sscanf(line, "%s %s", str1, str2) != 2) {
773a93c2382SBruce M Simpson warnc(EINVAL, "sscanf");
774a93c2382SBruce M Simpson break;
775a93c2382SBruce M Simpson }
776a93c2382SBruce M Simpson ep = ether_aton(str2);
777a93c2382SBruce M Simpson if (ep == NULL) {
778a93c2382SBruce M Simpson warnc(EINVAL, "ether_aton");
779a93c2382SBruce M Simpson break;
780a93c2382SBruce M Simpson }
781a93c2382SBruce M Simpson strlcpy(ifr.ifr_name, str1, IF_NAMESIZE);
782a93c2382SBruce M Simpson memcpy(LLADDR(dlp), ep, ETHER_ADDR_LEN);
783a93c2382SBruce M Simpson if (ioctl(s, (*cmd == 'a') ? SIOCADDMULTI : SIOCDELMULTI,
7847369700eSBruce M Simpson &ifr) == -1) {
785a93c2382SBruce M Simpson warn("ioctl SIOCADDMULTI/SIOCDELMULTI");
7867369700eSBruce M Simpson printf("-1\n");
7877369700eSBruce M Simpson } else
788a93c2382SBruce M Simpson printf("ok\n");
789fc3cc3f5SBill Fenner break;
790fc3cc3f5SBill Fenner }
791fc3cc3f5SBill Fenner
792fc3cc3f5SBill Fenner case 'm':
7937369700eSBruce M Simpson fprintf(stderr,
7947369700eSBruce M Simpson "warning: IFF_ALLMULTI cannot be set from userland "
795a93c2382SBruce M Simpson "in FreeBSD; command ignored.\n");
7967369700eSBruce M Simpson printf("-1\n");
797fc3cc3f5SBill Fenner break;
7984ab13459SBruce M Simpson
799fc3cc3f5SBill Fenner case 'p':
800a93c2382SBruce M Simpson if (sscanf(line, "%s %u", ifr.ifr_name, &f) != 2) {
801a93c2382SBruce M Simpson printf("-1\n");
802fc3cc3f5SBill Fenner break;
803fc3cc3f5SBill Fenner }
804a93c2382SBruce M Simpson if (ioctl(s, SIOCGIFFLAGS, &ifr) == -1) {
805a93c2382SBruce M Simpson warn("ioctl SIOCGIFFLAGS");
806fc3cc3f5SBill Fenner break;
807fc3cc3f5SBill Fenner }
808a93c2382SBruce M Simpson flags = (ifr.ifr_flags & 0xffff) | (ifr.ifr_flagshigh << 16);
809a93c2382SBruce M Simpson if (f == 0) {
8107369700eSBruce M Simpson flags &= ~IFF_PPROMISC;
811a93c2382SBruce M Simpson } else {
8127369700eSBruce M Simpson flags |= IFF_PPROMISC;
813a93c2382SBruce M Simpson }
814a93c2382SBruce M Simpson ifr.ifr_flags = flags & 0xffff;
815a93c2382SBruce M Simpson ifr.ifr_flagshigh = flags >> 16;
816a93c2382SBruce M Simpson if (ioctl(s, SIOCSIFFLAGS, &ifr) == -1)
817a93c2382SBruce M Simpson warn("ioctl SIOCGIFFLAGS");
818a93c2382SBruce M Simpson else
819a93c2382SBruce M Simpson printf( "changed to 0x%08x\n", flags );
820a93c2382SBruce M Simpson break;
821a93c2382SBruce M Simpson
822a93c2382SBruce M Simpson case '\n':
823a93c2382SBruce M Simpson break;
824fc3cc3f5SBill Fenner default:
825a93c2382SBruce M Simpson printf("invalid command\n");
826fc3cc3f5SBill Fenner break;
827fc3cc3f5SBill Fenner }
828fc3cc3f5SBill Fenner }
829a93c2382SBruce M Simpson
830a93c2382SBruce M Simpson static void
usage(void)831a93c2382SBruce M Simpson usage(void)
832a93c2382SBruce M Simpson {
833a93c2382SBruce M Simpson
8347369700eSBruce M Simpson printf("j mcast-addr ifname [src-addr] - join IP multicast group\n");
8357369700eSBruce M Simpson printf("l mcast-addr ifname [src-addr] - leave IP multicast group\n");
8367369700eSBruce M Simpson printf(
8377369700eSBruce M Simpson "i mcast-addr ifname n - set n include mode src filter\n");
8387369700eSBruce M Simpson printf(
8397369700eSBruce M Simpson "e mcast-addr ifname n - set n exclude mode src filter\n");
8407369700eSBruce M Simpson printf("t mcast-addr ifname src-addr - allow traffic from src\n");
8417369700eSBruce M Simpson printf("b mcast-addr ifname src-addr - block traffic from src\n");
8427369700eSBruce M Simpson printf("g mcast-addr ifname n - get and show n src filters\n");
8437369700eSBruce M Simpson printf("a ifname mac-addr - add link multicast filter\n");
8447369700eSBruce M Simpson printf("d ifname mac-addr - delete link multicast filter\n");
845a93c2382SBruce M Simpson printf("m ifname 1/0 - set/clear ether allmulti flag\n");
846a93c2382SBruce M Simpson printf("p ifname 1/0 - set/clear ether promisc flag\n");
847a93c2382SBruce M Simpson printf("f filename - read command(s) from file\n");
848a93c2382SBruce M Simpson printf("s seconds - sleep for some time\n");
849a93c2382SBruce M Simpson printf("q - quit\n");
850fc3cc3f5SBill Fenner }
8517369700eSBruce M Simpson
852