1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 2007-2009 Bruce Simpson.
5 * Copyright (c) 2005 Robert N. M. Watson.
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. The name of the author may not be used to endorse or promote
17 * products derived from this software without specific prior written
18 * permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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 /*
34 * IPv4 multicast socket, group, and socket option processing module.
35 */
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/lock.h>
41 #include <sys/malloc.h>
42 #include <sys/mbuf.h>
43 #include <sys/protosw.h>
44 #include <sys/socket.h>
45 #include <sys/socketvar.h>
46 #include <sys/protosw.h>
47 #include <sys/sysctl.h>
48 #include <sys/ktr.h>
49 #include <sys/taskqueue.h>
50 #include <sys/tree.h>
51
52 #include <net/if.h>
53 #include <net/if_var.h>
54 #include <net/if_dl.h>
55 #include <net/route.h>
56 #include <net/route/nhop.h>
57 #include <net/vnet.h>
58
59 #include <net/ethernet.h>
60
61 #include <netinet/in.h>
62 #include <netinet/in_systm.h>
63 #include <netinet/in_fib.h>
64 #include <netinet/in_pcb.h>
65 #include <netinet/in_var.h>
66 #include <net/if_private.h>
67 #include <netinet/ip_var.h>
68 #include <netinet/igmp_var.h>
69 #include <netinet/ip_mroute.h>
70
71 #ifndef KTR_IGMPV3
72 #define KTR_IGMPV3 KTR_INET
73 #endif
74
75 #ifndef __SOCKUNION_DECLARED
76 union sockunion {
77 struct sockaddr_storage ss;
78 struct sockaddr sa;
79 struct sockaddr_dl sdl;
80 struct sockaddr_in sin;
81 };
82 typedef union sockunion sockunion_t;
83 #define __SOCKUNION_DECLARED
84 #endif /* __SOCKUNION_DECLARED */
85
86 static MALLOC_DEFINE(M_INMFILTER, "in_mfilter",
87 "IPv4 multicast PCB-layer source filter");
88 static MALLOC_DEFINE(M_IPMADDR, "in_multi", "IPv4 multicast group");
89 static MALLOC_DEFINE(M_IPMOPTS, "ip_moptions", "IPv4 multicast options");
90 static MALLOC_DEFINE(M_IPMSOURCE, "ip_msource",
91 "IPv4 multicast IGMP-layer source filter");
92
93 /*
94 * Locking:
95 *
96 * - Lock order is: IN_MULTI_LOCK, INP_WLOCK, IN_MULTI_LIST_LOCK, IGMP_LOCK,
97 * IF_ADDR_LOCK.
98 * - The IF_ADDR_LOCK is implicitly taken by inm_lookup() earlier, however
99 * it can be taken by code in net/if.c also.
100 * - ip_moptions and in_mfilter are covered by the INP_WLOCK.
101 *
102 * struct in_multi is covered by IN_MULTI_LIST_LOCK. There isn't strictly
103 * any need for in_multi itself to be virtualized -- it is bound to an ifp
104 * anyway no matter what happens.
105 */
106 struct mtx in_multi_list_mtx;
107 MTX_SYSINIT(in_multi_mtx, &in_multi_list_mtx, "in_multi_list_mtx", MTX_DEF);
108
109 struct mtx in_multi_free_mtx;
110 MTX_SYSINIT(in_multi_free_mtx, &in_multi_free_mtx, "in_multi_free_mtx", MTX_DEF);
111
112 struct sx in_multi_sx;
113 SX_SYSINIT(in_multi_sx, &in_multi_sx, "in_multi_sx");
114
115 /*
116 * Functions with non-static linkage defined in this file should be
117 * declared in in_var.h:
118 * imo_multi_filter()
119 * in_joingroup()
120 * in_joingroup_locked()
121 * in_leavegroup()
122 * in_leavegroup_locked()
123 * and ip_var.h:
124 * inp_freemoptions()
125 * inp_getmoptions()
126 * inp_setmoptions()
127 */
128 static void imf_commit(struct in_mfilter *);
129 static int imf_get_source(struct in_mfilter *imf,
130 const struct sockaddr_in *psin,
131 struct in_msource **);
132 static struct in_msource *
133 imf_graft(struct in_mfilter *, const uint8_t,
134 const struct sockaddr_in *);
135 static void imf_leave(struct in_mfilter *);
136 static int imf_prune(struct in_mfilter *, const struct sockaddr_in *);
137 static void imf_purge(struct in_mfilter *);
138 static void imf_rollback(struct in_mfilter *);
139 static void imf_reap(struct in_mfilter *);
140 static struct in_mfilter *
141 imo_match_group(const struct ip_moptions *,
142 const struct ifnet *, const struct sockaddr *);
143 static struct in_msource *
144 imo_match_source(struct in_mfilter *, const struct sockaddr *);
145 static void ims_merge(struct ip_msource *ims,
146 const struct in_msource *lims, const int rollback);
147 static int in_getmulti(struct ifnet *, const struct in_addr *,
148 struct in_multi **);
149 static int inm_get_source(struct in_multi *inm, const in_addr_t haddr,
150 const int noalloc, struct ip_msource **pims);
151 #ifdef KTR
152 static int inm_is_ifp_detached(const struct in_multi *);
153 #endif
154 static int inm_merge(struct in_multi *, /*const*/ struct in_mfilter *);
155 static void inm_purge(struct in_multi *);
156 static void inm_reap(struct in_multi *);
157 static void inm_release(struct in_multi *);
158 static struct ip_moptions *
159 inp_findmoptions(struct inpcb *);
160 static int inp_get_source_filters(struct inpcb *, struct sockopt *);
161 static int inp_block_unblock_source(struct inpcb *, struct sockopt *);
162 static int inp_set_multicast_if(struct inpcb *, struct sockopt *);
163 static int inp_set_source_filters(struct inpcb *, struct sockopt *);
164 static int sysctl_ip_mcast_filters(SYSCTL_HANDLER_ARGS);
165
166 static SYSCTL_NODE(_net_inet_ip, OID_AUTO, mcast,
167 CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
168 "IPv4 multicast");
169
170 static u_long in_mcast_maxgrpsrc = IP_MAX_GROUP_SRC_FILTER;
171 SYSCTL_ULONG(_net_inet_ip_mcast, OID_AUTO, maxgrpsrc,
172 CTLFLAG_RWTUN, &in_mcast_maxgrpsrc, 0,
173 "Max source filters per group");
174
175 static u_long in_mcast_maxsocksrc = IP_MAX_SOCK_SRC_FILTER;
176 SYSCTL_ULONG(_net_inet_ip_mcast, OID_AUTO, maxsocksrc,
177 CTLFLAG_RWTUN, &in_mcast_maxsocksrc, 0,
178 "Max source filters per socket");
179
180 int in_mcast_loop = IP_DEFAULT_MULTICAST_LOOP;
181 SYSCTL_INT(_net_inet_ip_mcast, OID_AUTO, loop, CTLFLAG_RWTUN,
182 &in_mcast_loop, 0, "Loopback multicast datagrams by default");
183
184 static SYSCTL_NODE(_net_inet_ip_mcast, OID_AUTO, filters,
185 CTLFLAG_RD | CTLFLAG_MPSAFE, sysctl_ip_mcast_filters,
186 "Per-interface stack-wide source filters");
187
188 #ifdef KTR
189 /*
190 * Inline function which wraps assertions for a valid ifp.
191 * The ifnet layer will set the ifma's ifp pointer to NULL if the ifp
192 * is detached.
193 */
194 static int __inline
inm_is_ifp_detached(const struct in_multi * inm)195 inm_is_ifp_detached(const struct in_multi *inm)
196 {
197 struct ifnet *ifp;
198
199 KASSERT(inm->inm_ifma != NULL, ("%s: no ifma", __func__));
200 ifp = inm->inm_ifma->ifma_ifp;
201 if (ifp != NULL) {
202 /*
203 * Sanity check that netinet's notion of ifp is the
204 * same as net's.
205 */
206 KASSERT(inm->inm_ifp == ifp, ("%s: bad ifp", __func__));
207 }
208
209 return (ifp == NULL);
210 }
211 #endif
212
213 /*
214 * Interface detach can happen in a taskqueue thread context, so we must use a
215 * dedicated thread to avoid deadlocks when draining inm_release tasks.
216 */
217 TASKQUEUE_DEFINE_THREAD(inm_free);
218 static struct in_multi_head inm_free_list = SLIST_HEAD_INITIALIZER();
219 static void inm_release_task(void *arg __unused, int pending __unused);
220 static struct task inm_free_task = TASK_INITIALIZER(0, inm_release_task, NULL);
221
222 void
inm_release_wait(void * arg __unused)223 inm_release_wait(void *arg __unused)
224 {
225
226 /*
227 * Make sure all pending multicast addresses are freed before
228 * the VNET or network device is destroyed:
229 */
230 taskqueue_drain(taskqueue_inm_free, &inm_free_task);
231 }
232 #ifdef VIMAGE
233 /* XXX-BZ FIXME, see D24914. */
234 VNET_SYSUNINIT(inm_release_wait, SI_SUB_PROTO_DOMAIN, SI_ORDER_FIRST, inm_release_wait, NULL);
235 #endif
236
237 void
inm_release_list_deferred(struct in_multi_head * inmh)238 inm_release_list_deferred(struct in_multi_head *inmh)
239 {
240
241 if (SLIST_EMPTY(inmh))
242 return;
243 mtx_lock(&in_multi_free_mtx);
244 SLIST_CONCAT(&inm_free_list, inmh, in_multi, inm_nrele);
245 mtx_unlock(&in_multi_free_mtx);
246 taskqueue_enqueue(taskqueue_inm_free, &inm_free_task);
247 }
248
249 void
inm_disconnect(struct in_multi * inm)250 inm_disconnect(struct in_multi *inm)
251 {
252 struct ifnet *ifp;
253 struct ifmultiaddr *ifma, *ll_ifma;
254
255 ifp = inm->inm_ifp;
256 IF_ADDR_WLOCK_ASSERT(ifp);
257 ifma = inm->inm_ifma;
258
259 if_ref(ifp);
260 if (ifma->ifma_flags & IFMA_F_ENQUEUED) {
261 CK_STAILQ_REMOVE(&ifp->if_multiaddrs, ifma, ifmultiaddr, ifma_link);
262 ifma->ifma_flags &= ~IFMA_F_ENQUEUED;
263 }
264 MCDPRINTF("removed ifma: %p from %s\n", ifma, ifp->if_xname);
265 if ((ll_ifma = ifma->ifma_llifma) != NULL) {
266 MPASS(ifma != ll_ifma);
267 ifma->ifma_llifma = NULL;
268 MPASS(ll_ifma->ifma_llifma == NULL);
269 MPASS(ll_ifma->ifma_ifp == ifp);
270 if (--ll_ifma->ifma_refcount == 0) {
271 if (ll_ifma->ifma_flags & IFMA_F_ENQUEUED) {
272 CK_STAILQ_REMOVE(&ifp->if_multiaddrs, ll_ifma, ifmultiaddr, ifma_link);
273 ll_ifma->ifma_flags &= ~IFMA_F_ENQUEUED;
274 }
275 MCDPRINTF("removed ll_ifma: %p from %s\n", ll_ifma, ifp->if_xname);
276 if_freemulti(ll_ifma);
277 }
278 }
279 }
280
281 void
inm_release_deferred(struct in_multi * inm)282 inm_release_deferred(struct in_multi *inm)
283 {
284 struct in_multi_head tmp;
285
286 IN_MULTI_LIST_LOCK_ASSERT();
287 MPASS(inm->inm_refcount > 0);
288 if (--inm->inm_refcount == 0) {
289 SLIST_INIT(&tmp);
290 inm_disconnect(inm);
291 inm->inm_ifma->ifma_protospec = NULL;
292 SLIST_INSERT_HEAD(&tmp, inm, inm_nrele);
293 inm_release_list_deferred(&tmp);
294 }
295 }
296
297 static void
inm_release_task(void * arg __unused,int pending __unused)298 inm_release_task(void *arg __unused, int pending __unused)
299 {
300 struct in_multi_head inm_free_tmp;
301 struct in_multi *inm, *tinm;
302
303 SLIST_INIT(&inm_free_tmp);
304 mtx_lock(&in_multi_free_mtx);
305 SLIST_CONCAT(&inm_free_tmp, &inm_free_list, in_multi, inm_nrele);
306 mtx_unlock(&in_multi_free_mtx);
307 IN_MULTI_LOCK();
308 SLIST_FOREACH_SAFE(inm, &inm_free_tmp, inm_nrele, tinm) {
309 SLIST_REMOVE_HEAD(&inm_free_tmp, inm_nrele);
310 MPASS(inm);
311 inm_release(inm);
312 }
313 IN_MULTI_UNLOCK();
314 }
315
316 /*
317 * Initialize an in_mfilter structure to a known state at t0, t1
318 * with an empty source filter list.
319 */
320 static __inline void
imf_init(struct in_mfilter * imf,const int st0,const int st1)321 imf_init(struct in_mfilter *imf, const int st0, const int st1)
322 {
323 memset(imf, 0, sizeof(struct in_mfilter));
324 RB_INIT(&imf->imf_sources);
325 imf->imf_st[0] = st0;
326 imf->imf_st[1] = st1;
327 }
328
329 struct in_mfilter *
ip_mfilter_alloc(const int mflags,const int st0,const int st1)330 ip_mfilter_alloc(const int mflags, const int st0, const int st1)
331 {
332 struct in_mfilter *imf;
333
334 imf = malloc(sizeof(*imf), M_INMFILTER, mflags);
335 if (imf != NULL)
336 imf_init(imf, st0, st1);
337
338 return (imf);
339 }
340
341 void
ip_mfilter_free(struct in_mfilter * imf)342 ip_mfilter_free(struct in_mfilter *imf)
343 {
344
345 imf_purge(imf);
346 free(imf, M_INMFILTER);
347 }
348
349 /*
350 * Function for looking up an in_multi record for an IPv4 multicast address
351 * on a given interface. ifp must be valid. If no record found, return NULL.
352 * The IN_MULTI_LIST_LOCK and IF_ADDR_LOCK on ifp must be held.
353 */
354 struct in_multi *
inm_lookup_locked(struct ifnet * ifp,const struct in_addr ina)355 inm_lookup_locked(struct ifnet *ifp, const struct in_addr ina)
356 {
357 struct ifmultiaddr *ifma;
358 struct in_multi *inm;
359
360 IN_MULTI_LIST_LOCK_ASSERT();
361 IF_ADDR_LOCK_ASSERT(ifp);
362
363 CK_STAILQ_FOREACH(ifma, &((ifp)->if_multiaddrs), ifma_link) {
364 inm = inm_ifmultiaddr_get_inm(ifma);
365 if (inm == NULL)
366 continue;
367 if (inm->inm_addr.s_addr == ina.s_addr)
368 return (inm);
369 }
370 return (NULL);
371 }
372
373 /*
374 * Wrapper for inm_lookup_locked().
375 * The IF_ADDR_LOCK will be taken on ifp and released on return.
376 */
377 struct in_multi *
inm_lookup(struct ifnet * ifp,const struct in_addr ina)378 inm_lookup(struct ifnet *ifp, const struct in_addr ina)
379 {
380 struct epoch_tracker et;
381 struct in_multi *inm;
382
383 IN_MULTI_LIST_LOCK_ASSERT();
384 NET_EPOCH_ENTER(et);
385
386 inm = inm_lookup_locked(ifp, ina);
387 NET_EPOCH_EXIT(et);
388
389 return (inm);
390 }
391
392 /*
393 * Find an IPv4 multicast group entry for this ip_moptions instance
394 * which matches the specified group, and optionally an interface.
395 * Return its index into the array, or -1 if not found.
396 */
397 static struct in_mfilter *
imo_match_group(const struct ip_moptions * imo,const struct ifnet * ifp,const struct sockaddr * group)398 imo_match_group(const struct ip_moptions *imo, const struct ifnet *ifp,
399 const struct sockaddr *group)
400 {
401 const struct sockaddr_in *gsin;
402 struct in_mfilter *imf;
403 struct in_multi *inm;
404
405 gsin = (const struct sockaddr_in *)group;
406
407 IP_MFILTER_FOREACH(imf, &imo->imo_head) {
408 inm = imf->imf_inm;
409 if (inm == NULL)
410 continue;
411 if ((ifp == NULL || (inm->inm_ifp == ifp)) &&
412 in_hosteq(inm->inm_addr, gsin->sin_addr)) {
413 break;
414 }
415 }
416 return (imf);
417 }
418
419 /*
420 * Find an IPv4 multicast source entry for this imo which matches
421 * the given group index for this socket, and source address.
422 *
423 * NOTE: This does not check if the entry is in-mode, merely if
424 * it exists, which may not be the desired behaviour.
425 */
426 static struct in_msource *
imo_match_source(struct in_mfilter * imf,const struct sockaddr * src)427 imo_match_source(struct in_mfilter *imf, const struct sockaddr *src)
428 {
429 struct ip_msource find;
430 struct ip_msource *ims;
431 const sockunion_t *psa;
432
433 KASSERT(src->sa_family == AF_INET, ("%s: !AF_INET", __func__));
434
435 /* Source trees are keyed in host byte order. */
436 psa = (const sockunion_t *)src;
437 find.ims_haddr = ntohl(psa->sin.sin_addr.s_addr);
438 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
439
440 return ((struct in_msource *)ims);
441 }
442
443 /*
444 * Perform filtering for multicast datagrams on a socket by group and source.
445 *
446 * Returns 0 if a datagram should be allowed through, or various error codes
447 * if the socket was not a member of the group, or the source was muted, etc.
448 */
449 int
imo_multi_filter(const struct ip_moptions * imo,const struct ifnet * ifp,const struct sockaddr * group,const struct sockaddr * src)450 imo_multi_filter(const struct ip_moptions *imo, const struct ifnet *ifp,
451 const struct sockaddr *group, const struct sockaddr *src)
452 {
453 struct in_mfilter *imf;
454 struct in_msource *ims;
455 int mode;
456
457 KASSERT(ifp != NULL, ("%s: null ifp", __func__));
458
459 imf = imo_match_group(imo, ifp, group);
460 if (imf == NULL)
461 return (MCAST_NOTGMEMBER);
462
463 /*
464 * Check if the source was included in an (S,G) join.
465 * Allow reception on exclusive memberships by default,
466 * reject reception on inclusive memberships by default.
467 * Exclude source only if an in-mode exclude filter exists.
468 * Include source only if an in-mode include filter exists.
469 * NOTE: We are comparing group state here at IGMP t1 (now)
470 * with socket-layer t0 (since last downcall).
471 */
472 mode = imf->imf_st[1];
473 ims = imo_match_source(imf, src);
474
475 if ((ims == NULL && mode == MCAST_INCLUDE) ||
476 (ims != NULL && ims->imsl_st[0] == MCAST_EXCLUDE))
477 return (MCAST_NOTSMEMBER);
478
479 return (MCAST_PASS);
480 }
481
482 /*
483 * Find and return a reference to an in_multi record for (ifp, group),
484 * and bump its reference count.
485 * If one does not exist, try to allocate it, and update link-layer multicast
486 * filters on ifp to listen for group.
487 * Assumes the IN_MULTI lock is held across the call.
488 * Return 0 if successful, otherwise return an appropriate error code.
489 */
490 static int
in_getmulti(struct ifnet * ifp,const struct in_addr * group,struct in_multi ** pinm)491 in_getmulti(struct ifnet *ifp, const struct in_addr *group,
492 struct in_multi **pinm)
493 {
494 struct sockaddr_in gsin;
495 struct ifmultiaddr *ifma;
496 struct in_ifinfo *ii;
497 struct in_multi *inm;
498 int error;
499
500 IN_MULTI_LOCK_ASSERT();
501
502 ii = (struct in_ifinfo *)ifp->if_inet;
503 IN_MULTI_LIST_LOCK();
504 inm = inm_lookup(ifp, *group);
505 if (inm != NULL) {
506 /*
507 * If we already joined this group, just bump the
508 * refcount and return it.
509 */
510 KASSERT(inm->inm_refcount >= 1,
511 ("%s: bad refcount %d", __func__, inm->inm_refcount));
512 inm_acquire_locked(inm);
513 *pinm = inm;
514 }
515 IN_MULTI_LIST_UNLOCK();
516 if (inm != NULL)
517 return (0);
518
519 memset(&gsin, 0, sizeof(gsin));
520 gsin.sin_family = AF_INET;
521 gsin.sin_len = sizeof(struct sockaddr_in);
522 gsin.sin_addr = *group;
523
524 /*
525 * Check if a link-layer group is already associated
526 * with this network-layer group on the given ifnet.
527 */
528 error = if_addmulti(ifp, (struct sockaddr *)&gsin, &ifma);
529 if (error != 0)
530 return (error);
531
532 /* XXX ifma_protospec must be covered by IF_ADDR_LOCK */
533 IN_MULTI_LIST_LOCK();
534 IF_ADDR_WLOCK(ifp);
535
536 /*
537 * If something other than netinet is occupying the link-layer
538 * group, print a meaningful error message and back out of
539 * the allocation.
540 * Otherwise, bump the refcount on the existing network-layer
541 * group association and return it.
542 */
543 if (ifma->ifma_protospec != NULL) {
544 inm = (struct in_multi *)ifma->ifma_protospec;
545 #ifdef INVARIANTS
546 KASSERT(ifma->ifma_addr != NULL, ("%s: no ifma_addr",
547 __func__));
548 KASSERT(ifma->ifma_addr->sa_family == AF_INET,
549 ("%s: ifma not AF_INET", __func__));
550 KASSERT(inm != NULL, ("%s: no ifma_protospec", __func__));
551 if (inm->inm_ifma != ifma || inm->inm_ifp != ifp ||
552 !in_hosteq(inm->inm_addr, *group)) {
553 char addrbuf[INET_ADDRSTRLEN];
554
555 panic("%s: ifma %p is inconsistent with %p (%s)",
556 __func__, ifma, inm, inet_ntoa_r(*group, addrbuf));
557 }
558 #endif
559 inm_acquire_locked(inm);
560 *pinm = inm;
561 goto out_locked;
562 }
563
564 IF_ADDR_WLOCK_ASSERT(ifp);
565
566 /*
567 * A new in_multi record is needed; allocate and initialize it.
568 * We DO NOT perform an IGMP join as the in_ layer may need to
569 * push an initial source list down to IGMP to support SSM.
570 *
571 * The initial source filter state is INCLUDE, {} as per the RFC.
572 */
573 inm = malloc(sizeof(*inm), M_IPMADDR, M_NOWAIT | M_ZERO);
574 if (inm == NULL) {
575 IF_ADDR_WUNLOCK(ifp);
576 IN_MULTI_LIST_UNLOCK();
577 if_delmulti_ifma(ifma);
578 return (ENOMEM);
579 }
580 inm->inm_addr = *group;
581 inm->inm_ifp = ifp;
582 inm->inm_igi = ii->ii_igmp;
583 inm->inm_ifma = ifma;
584 inm->inm_refcount = 1;
585 inm->inm_state = IGMP_NOT_MEMBER;
586 mbufq_init(&inm->inm_scq, IGMP_MAX_STATE_CHANGES);
587 inm->inm_st[0].iss_fmode = MCAST_UNDEFINED;
588 inm->inm_st[1].iss_fmode = MCAST_UNDEFINED;
589 RB_INIT(&inm->inm_srcs);
590
591 ifma->ifma_protospec = inm;
592
593 *pinm = inm;
594 out_locked:
595 IF_ADDR_WUNLOCK(ifp);
596 IN_MULTI_LIST_UNLOCK();
597 return (0);
598 }
599
600 /*
601 * Drop a reference to an in_multi record.
602 *
603 * If the refcount drops to 0, free the in_multi record and
604 * delete the underlying link-layer membership.
605 */
606 static void
inm_release(struct in_multi * inm)607 inm_release(struct in_multi *inm)
608 {
609 struct ifmultiaddr *ifma;
610 struct ifnet *ifp;
611
612 CTR2(KTR_IGMPV3, "%s: refcount is %d", __func__, inm->inm_refcount);
613 MPASS(inm->inm_refcount == 0);
614 CTR2(KTR_IGMPV3, "%s: freeing inm %p", __func__, inm);
615
616 ifma = inm->inm_ifma;
617 ifp = inm->inm_ifp;
618
619 /* XXX this access is not covered by IF_ADDR_LOCK */
620 CTR2(KTR_IGMPV3, "%s: purging ifma %p", __func__, ifma);
621 if (ifp != NULL) {
622 CURVNET_SET(ifp->if_vnet);
623 inm_purge(inm);
624 free(inm, M_IPMADDR);
625 if_delmulti_ifma_flags(ifma, 1);
626 CURVNET_RESTORE();
627 if_rele(ifp);
628 } else {
629 inm_purge(inm);
630 free(inm, M_IPMADDR);
631 if_delmulti_ifma_flags(ifma, 1);
632 }
633 }
634
635 /*
636 * Clear recorded source entries for a group.
637 * Used by the IGMP code. Caller must hold the IN_MULTI lock.
638 * FIXME: Should reap.
639 */
640 void
inm_clear_recorded(struct in_multi * inm)641 inm_clear_recorded(struct in_multi *inm)
642 {
643 struct ip_msource *ims;
644
645 IN_MULTI_LIST_LOCK_ASSERT();
646
647 RB_FOREACH(ims, ip_msource_tree, &inm->inm_srcs) {
648 if (ims->ims_stp) {
649 ims->ims_stp = 0;
650 --inm->inm_st[1].iss_rec;
651 }
652 }
653 KASSERT(inm->inm_st[1].iss_rec == 0,
654 ("%s: iss_rec %d not 0", __func__, inm->inm_st[1].iss_rec));
655 }
656
657 /*
658 * Record a source as pending for a Source-Group IGMPv3 query.
659 * This lives here as it modifies the shared tree.
660 *
661 * inm is the group descriptor.
662 * naddr is the address of the source to record in network-byte order.
663 *
664 * If the net.inet.igmp.sgalloc sysctl is non-zero, we will
665 * lazy-allocate a source node in response to an SG query.
666 * Otherwise, no allocation is performed. This saves some memory
667 * with the trade-off that the source will not be reported to the
668 * router if joined in the window between the query response and
669 * the group actually being joined on the local host.
670 *
671 * VIMAGE: XXX: Currently the igmp_sgalloc feature has been removed.
672 * This turns off the allocation of a recorded source entry if
673 * the group has not been joined.
674 *
675 * Return 0 if the source didn't exist or was already marked as recorded.
676 * Return 1 if the source was marked as recorded by this function.
677 * Return <0 if any error occurred (negated errno code).
678 */
679 int
inm_record_source(struct in_multi * inm,const in_addr_t naddr)680 inm_record_source(struct in_multi *inm, const in_addr_t naddr)
681 {
682 struct ip_msource find;
683 struct ip_msource *ims, *nims;
684
685 IN_MULTI_LIST_LOCK_ASSERT();
686
687 find.ims_haddr = ntohl(naddr);
688 ims = RB_FIND(ip_msource_tree, &inm->inm_srcs, &find);
689 if (ims && ims->ims_stp)
690 return (0);
691 if (ims == NULL) {
692 if (inm->inm_nsrc == in_mcast_maxgrpsrc)
693 return (-ENOSPC);
694 nims = malloc(sizeof(struct ip_msource), M_IPMSOURCE,
695 M_NOWAIT | M_ZERO);
696 if (nims == NULL)
697 return (-ENOMEM);
698 nims->ims_haddr = find.ims_haddr;
699 RB_INSERT(ip_msource_tree, &inm->inm_srcs, nims);
700 ++inm->inm_nsrc;
701 ims = nims;
702 }
703
704 /*
705 * Mark the source as recorded and update the recorded
706 * source count.
707 */
708 ++ims->ims_stp;
709 ++inm->inm_st[1].iss_rec;
710
711 return (1);
712 }
713
714 /*
715 * Return a pointer to an in_msource owned by an in_mfilter,
716 * given its source address.
717 * Lazy-allocate if needed. If this is a new entry its filter state is
718 * undefined at t0.
719 *
720 * imf is the filter set being modified.
721 * haddr is the source address in *host* byte-order.
722 *
723 * SMPng: May be called with locks held; malloc must not block.
724 */
725 static int
imf_get_source(struct in_mfilter * imf,const struct sockaddr_in * psin,struct in_msource ** plims)726 imf_get_source(struct in_mfilter *imf, const struct sockaddr_in *psin,
727 struct in_msource **plims)
728 {
729 struct ip_msource find;
730 struct ip_msource *ims, *nims;
731 struct in_msource *lims;
732 int error;
733
734 error = 0;
735 ims = NULL;
736 lims = NULL;
737
738 /* key is host byte order */
739 find.ims_haddr = ntohl(psin->sin_addr.s_addr);
740 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
741 lims = (struct in_msource *)ims;
742 if (lims == NULL) {
743 if (imf->imf_nsrc == in_mcast_maxsocksrc)
744 return (ENOSPC);
745 nims = malloc(sizeof(struct in_msource), M_INMFILTER,
746 M_NOWAIT | M_ZERO);
747 if (nims == NULL)
748 return (ENOMEM);
749 lims = (struct in_msource *)nims;
750 lims->ims_haddr = find.ims_haddr;
751 lims->imsl_st[0] = MCAST_UNDEFINED;
752 RB_INSERT(ip_msource_tree, &imf->imf_sources, nims);
753 ++imf->imf_nsrc;
754 }
755
756 *plims = lims;
757
758 return (error);
759 }
760
761 /*
762 * Graft a source entry into an existing socket-layer filter set,
763 * maintaining any required invariants and checking allocations.
764 *
765 * The source is marked as being in the new filter mode at t1.
766 *
767 * Return the pointer to the new node, otherwise return NULL.
768 */
769 static struct in_msource *
imf_graft(struct in_mfilter * imf,const uint8_t st1,const struct sockaddr_in * psin)770 imf_graft(struct in_mfilter *imf, const uint8_t st1,
771 const struct sockaddr_in *psin)
772 {
773 struct ip_msource *nims;
774 struct in_msource *lims;
775
776 nims = malloc(sizeof(struct in_msource), M_INMFILTER,
777 M_NOWAIT | M_ZERO);
778 if (nims == NULL)
779 return (NULL);
780 lims = (struct in_msource *)nims;
781 lims->ims_haddr = ntohl(psin->sin_addr.s_addr);
782 lims->imsl_st[0] = MCAST_UNDEFINED;
783 lims->imsl_st[1] = st1;
784 RB_INSERT(ip_msource_tree, &imf->imf_sources, nims);
785 ++imf->imf_nsrc;
786
787 return (lims);
788 }
789
790 /*
791 * Prune a source entry from an existing socket-layer filter set,
792 * maintaining any required invariants and checking allocations.
793 *
794 * The source is marked as being left at t1, it is not freed.
795 *
796 * Return 0 if no error occurred, otherwise return an errno value.
797 */
798 static int
imf_prune(struct in_mfilter * imf,const struct sockaddr_in * psin)799 imf_prune(struct in_mfilter *imf, const struct sockaddr_in *psin)
800 {
801 struct ip_msource find;
802 struct ip_msource *ims;
803 struct in_msource *lims;
804
805 /* key is host byte order */
806 find.ims_haddr = ntohl(psin->sin_addr.s_addr);
807 ims = RB_FIND(ip_msource_tree, &imf->imf_sources, &find);
808 if (ims == NULL)
809 return (ENOENT);
810 lims = (struct in_msource *)ims;
811 lims->imsl_st[1] = MCAST_UNDEFINED;
812 return (0);
813 }
814
815 /*
816 * Revert socket-layer filter set deltas at t1 to t0 state.
817 */
818 static void
imf_rollback(struct in_mfilter * imf)819 imf_rollback(struct in_mfilter *imf)
820 {
821 struct ip_msource *ims, *tims;
822 struct in_msource *lims;
823
824 RB_FOREACH_SAFE(ims, ip_msource_tree, &imf->imf_sources, tims) {
825 lims = (struct in_msource *)ims;
826 if (lims->imsl_st[0] == lims->imsl_st[1]) {
827 /* no change at t1 */
828 continue;
829 } else if (lims->imsl_st[0] != MCAST_UNDEFINED) {
830 /* revert change to existing source at t1 */
831 lims->imsl_st[1] = lims->imsl_st[0];
832 } else {
833 /* revert source added t1 */
834 CTR2(KTR_IGMPV3, "%s: free ims %p", __func__, ims);
835 RB_REMOVE(ip_msource_tree, &imf->imf_sources, ims);
836 free(ims, M_INMFILTER);
837 imf->imf_nsrc--;
838 }
839 }
840 imf->imf_st[1] = imf->imf_st[0];
841 }
842
843 /*
844 * Mark socket-layer filter set as INCLUDE {} at t1.
845 */
846 static void
imf_leave(struct in_mfilter * imf)847 imf_leave(struct in_mfilter *imf)
848 {
849 struct ip_msource *ims;
850 struct in_msource *lims;
851
852 RB_FOREACH(ims, ip_msource_tree, &imf->imf_sources) {
853 lims = (struct in_msource *)ims;
854 lims->imsl_st[1] = MCAST_UNDEFINED;
855 }
856 imf->imf_st[1] = MCAST_INCLUDE;
857 }
858
859 /*
860 * Mark socket-layer filter set deltas as committed.
861 */
862 static void
imf_commit(struct in_mfilter * imf)863 imf_commit(struct in_mfilter *imf)
864 {
865 struct ip_msource *ims;
866 struct in_msource *lims;
867
868 RB_FOREACH(ims, ip_msource_tree, &imf->imf_sources) {
869 lims = (struct in_msource *)ims;
870 lims->imsl_st[0] = lims->imsl_st[1];
871 }
872 imf->imf_st[0] = imf->imf_st[1];
873 }
874
875 /*
876 * Reap unreferenced sources from socket-layer filter set.
877 */
878 static void
imf_reap(struct in_mfilter * imf)879 imf_reap(struct in_mfilter *imf)
880 {
881 struct ip_msource *ims, *tims;
882 struct in_msource *lims;
883
884 RB_FOREACH_SAFE(ims, ip_msource_tree, &imf->imf_sources, tims) {
885 lims = (struct in_msource *)ims;
886 if ((lims->imsl_st[0] == MCAST_UNDEFINED) &&
887 (lims->imsl_st[1] == MCAST_UNDEFINED)) {
888 CTR2(KTR_IGMPV3, "%s: free lims %p", __func__, ims);
889 RB_REMOVE(ip_msource_tree, &imf->imf_sources, ims);
890 free(ims, M_INMFILTER);
891 imf->imf_nsrc--;
892 }
893 }
894 }
895
896 /*
897 * Purge socket-layer filter set.
898 */
899 static void
imf_purge(struct in_mfilter * imf)900 imf_purge(struct in_mfilter *imf)
901 {
902 struct ip_msource *ims, *tims;
903
904 RB_FOREACH_SAFE(ims, ip_msource_tree, &imf->imf_sources, tims) {
905 CTR2(KTR_IGMPV3, "%s: free ims %p", __func__, ims);
906 RB_REMOVE(ip_msource_tree, &imf->imf_sources, ims);
907 free(ims, M_INMFILTER);
908 imf->imf_nsrc--;
909 }
910 imf->imf_st[0] = imf->imf_st[1] = MCAST_UNDEFINED;
911 KASSERT(RB_EMPTY(&imf->imf_sources),
912 ("%s: imf_sources not empty", __func__));
913 }
914
915 /*
916 * Look up a source filter entry for a multicast group.
917 *
918 * inm is the group descriptor to work with.
919 * haddr is the host-byte-order IPv4 address to look up.
920 * noalloc may be non-zero to suppress allocation of sources.
921 * *pims will be set to the address of the retrieved or allocated source.
922 *
923 * SMPng: NOTE: may be called with locks held.
924 * Return 0 if successful, otherwise return a non-zero error code.
925 */
926 static int
inm_get_source(struct in_multi * inm,const in_addr_t haddr,const int noalloc,struct ip_msource ** pims)927 inm_get_source(struct in_multi *inm, const in_addr_t haddr,
928 const int noalloc, struct ip_msource **pims)
929 {
930 struct ip_msource find;
931 struct ip_msource *ims, *nims;
932
933 find.ims_haddr = haddr;
934 ims = RB_FIND(ip_msource_tree, &inm->inm_srcs, &find);
935 if (ims == NULL && !noalloc) {
936 if (inm->inm_nsrc == in_mcast_maxgrpsrc)
937 return (ENOSPC);
938 nims = malloc(sizeof(struct ip_msource), M_IPMSOURCE,
939 M_NOWAIT | M_ZERO);
940 if (nims == NULL)
941 return (ENOMEM);
942 nims->ims_haddr = haddr;
943 RB_INSERT(ip_msource_tree, &inm->inm_srcs, nims);
944 ++inm->inm_nsrc;
945 ims = nims;
946 #ifdef KTR
947 CTR3(KTR_IGMPV3, "%s: allocated 0x%08x as %p", __func__,
948 haddr, ims);
949 #endif
950 }
951
952 *pims = ims;
953 return (0);
954 }
955
956 /*
957 * Merge socket-layer source into IGMP-layer source.
958 * If rollback is non-zero, perform the inverse of the merge.
959 */
960 static void
ims_merge(struct ip_msource * ims,const struct in_msource * lims,const int rollback)961 ims_merge(struct ip_msource *ims, const struct in_msource *lims,
962 const int rollback)
963 {
964 int n = rollback ? -1 : 1;
965
966 if (lims->imsl_st[0] == MCAST_EXCLUDE) {
967 CTR3(KTR_IGMPV3, "%s: t1 ex -= %d on 0x%08x",
968 __func__, n, ims->ims_haddr);
969 ims->ims_st[1].ex -= n;
970 } else if (lims->imsl_st[0] == MCAST_INCLUDE) {
971 CTR3(KTR_IGMPV3, "%s: t1 in -= %d on 0x%08x",
972 __func__, n, ims->ims_haddr);
973 ims->ims_st[1].in -= n;
974 }
975
976 if (lims->imsl_st[1] == MCAST_EXCLUDE) {
977 CTR3(KTR_IGMPV3, "%s: t1 ex += %d on 0x%08x",
978 __func__, n, ims->ims_haddr);
979 ims->ims_st[1].ex += n;
980 } else if (lims->imsl_st[1] == MCAST_INCLUDE) {
981 CTR3(KTR_IGMPV3, "%s: t1 in += %d on 0x%08x",
982 __func__, n, ims->ims_haddr);
983 ims->ims_st[1].in += n;
984 }
985 }
986
987 /*
988 * Atomically update the global in_multi state, when a membership's
989 * filter list is being updated in any way.
990 *
991 * imf is the per-inpcb-membership group filter pointer.
992 * A fake imf may be passed for in-kernel consumers.
993 *
994 * XXX This is a candidate for a set-symmetric-difference style loop
995 * which would eliminate the repeated lookup from root of ims nodes,
996 * as they share the same key space.
997 *
998 * If any error occurred this function will back out of refcounts
999 * and return a non-zero value.
1000 */
1001 static int
inm_merge(struct in_multi * inm,struct in_mfilter * imf)1002 inm_merge(struct in_multi *inm, /*const*/ struct in_mfilter *imf)
1003 {
1004 struct ip_msource *ims, *nims;
1005 struct in_msource *lims;
1006 int schanged, error;
1007 int nsrc0, nsrc1;
1008
1009 schanged = 0;
1010 error = 0;
1011 nsrc1 = nsrc0 = 0;
1012 IN_MULTI_LIST_LOCK_ASSERT();
1013
1014 /*
1015 * Update the source filters first, as this may fail.
1016 * Maintain count of in-mode filters at t0, t1. These are
1017 * used to work out if we transition into ASM mode or not.
1018 * Maintain a count of source filters whose state was
1019 * actually modified by this operation.
1020 */
1021 nims = NULL;
1022 RB_FOREACH(ims, ip_msource_tree, &imf->imf_sources) {
1023 lims = (struct in_msource *)ims;
1024 if (lims->imsl_st[0] == imf->imf_st[0]) nsrc0++;
1025 if (lims->imsl_st[1] == imf->imf_st[1]) nsrc1++;
1026 if (lims->imsl_st[0] == lims->imsl_st[1]) continue;
1027 error = inm_get_source(inm, lims->ims_haddr, 0, &nims);
1028 ++schanged;
1029 if (error)
1030 break;
1031 ims_merge(nims, lims, 0);
1032 }
1033 if (error) {
1034 struct ip_msource *bims;
1035
1036 RB_FOREACH_REVERSE_FROM(ims, ip_msource_tree, nims) {
1037 lims = (struct in_msource *)ims;
1038 if (lims->imsl_st[0] == lims->imsl_st[1])
1039 continue;
1040 (void)inm_get_source(inm, lims->ims_haddr, 1, &bims);
1041 if (bims == NULL)
1042 continue;
1043 ims_merge(bims, lims, 1);
1044 }
1045 goto out_reap;
1046 }
1047
1048 CTR3(KTR_IGMPV3, "%s: imf filters in-mode: %d at t0, %d at t1",
1049 __func__, nsrc0, nsrc1);
1050
1051 /* Handle transition between INCLUDE {n} and INCLUDE {} on socket. */
1052 if (imf->imf_st[0] == imf->imf_st[1] &&
1053 imf->imf_st[1] == MCAST_INCLUDE) {
1054 if (nsrc1 == 0) {
1055 CTR1(KTR_IGMPV3, "%s: --in on inm at t1", __func__);
1056 --inm->inm_st[1].iss_in;
1057 }
1058 }
1059
1060 /* Handle filter mode transition on socket. */
1061 if (imf->imf_st[0] != imf->imf_st[1]) {
1062 CTR3(KTR_IGMPV3, "%s: imf transition %d to %d",
1063 __func__, imf->imf_st[0], imf->imf_st[1]);
1064
1065 if (imf->imf_st[0] == MCAST_EXCLUDE) {
1066 CTR1(KTR_IGMPV3, "%s: --ex on inm at t1", __func__);
1067 --inm->inm_st[1].iss_ex;
1068 } else if (imf->imf_st[0] == MCAST_INCLUDE) {
1069 CTR1(KTR_IGMPV3, "%s: --in on inm at t1", __func__);
1070 --inm->inm_st[1].iss_in;
1071 }
1072
1073 if (imf->imf_st[1] == MCAST_EXCLUDE) {
1074 CTR1(KTR_IGMPV3, "%s: ex++ on inm at t1", __func__);
1075 inm->inm_st[1].iss_ex++;
1076 } else if (imf->imf_st[1] == MCAST_INCLUDE && nsrc1 > 0) {
1077 CTR1(KTR_IGMPV3, "%s: in++ on inm at t1", __func__);
1078 inm->inm_st[1].iss_in++;
1079 }
1080 }
1081
1082 /*
1083 * Track inm filter state in terms of listener counts.
1084 * If there are any exclusive listeners, stack-wide
1085 * membership is exclusive.
1086 * Otherwise, if only inclusive listeners, stack-wide is inclusive.
1087 * If no listeners remain, state is undefined at t1,
1088 * and the IGMP lifecycle for this group should finish.
1089 */
1090 if (inm->inm_st[1].iss_ex > 0) {
1091 CTR1(KTR_IGMPV3, "%s: transition to EX", __func__);
1092 inm->inm_st[1].iss_fmode = MCAST_EXCLUDE;
1093 } else if (inm->inm_st[1].iss_in > 0) {
1094 CTR1(KTR_IGMPV3, "%s: transition to IN", __func__);
1095 inm->inm_st[1].iss_fmode = MCAST_INCLUDE;
1096 } else {
1097 CTR1(KTR_IGMPV3, "%s: transition to UNDEF", __func__);
1098 inm->inm_st[1].iss_fmode = MCAST_UNDEFINED;
1099 }
1100
1101 /* Decrement ASM listener count on transition out of ASM mode. */
1102 if (imf->imf_st[0] == MCAST_EXCLUDE && nsrc0 == 0) {
1103 if ((imf->imf_st[1] != MCAST_EXCLUDE) ||
1104 (imf->imf_st[1] == MCAST_EXCLUDE && nsrc1 > 0)) {
1105 CTR1(KTR_IGMPV3, "%s: --asm on inm at t1", __func__);
1106 --inm->inm_st[1].iss_asm;
1107 }
1108 }
1109
1110 /* Increment ASM listener count on transition to ASM mode. */
1111 if (imf->imf_st[1] == MCAST_EXCLUDE && nsrc1 == 0) {
1112 CTR1(KTR_IGMPV3, "%s: asm++ on inm at t1", __func__);
1113 inm->inm_st[1].iss_asm++;
1114 }
1115
1116 CTR3(KTR_IGMPV3, "%s: merged imf %p to inm %p", __func__, imf, inm);
1117 inm_print(inm);
1118
1119 out_reap:
1120 if (schanged > 0) {
1121 CTR1(KTR_IGMPV3, "%s: sources changed; reaping", __func__);
1122 inm_reap(inm);
1123 }
1124 return (error);
1125 }
1126
1127 /*
1128 * Mark an in_multi's filter set deltas as committed.
1129 * Called by IGMP after a state change has been enqueued.
1130 */
1131 void
inm_commit(struct in_multi * inm)1132 inm_commit(struct in_multi *inm)
1133 {
1134 struct ip_msource *ims;
1135
1136 CTR2(KTR_IGMPV3, "%s: commit inm %p", __func__, inm);
1137 CTR1(KTR_IGMPV3, "%s: pre commit:", __func__);
1138 inm_print(inm);
1139
1140 RB_FOREACH(ims, ip_msource_tree, &inm->inm_srcs) {
1141 ims->ims_st[0] = ims->ims_st[1];
1142 }
1143 inm->inm_st[0] = inm->inm_st[1];
1144 }
1145
1146 /*
1147 * Reap unreferenced nodes from an in_multi's filter set.
1148 */
1149 static void
inm_reap(struct in_multi * inm)1150 inm_reap(struct in_multi *inm)
1151 {
1152 struct ip_msource *ims, *tims;
1153
1154 RB_FOREACH_SAFE(ims, ip_msource_tree, &inm->inm_srcs, tims) {
1155 if (ims->ims_st[0].ex > 0 || ims->ims_st[0].in > 0 ||
1156 ims->ims_st[1].ex > 0 || ims->ims_st[1].in > 0 ||
1157 ims->ims_stp != 0)
1158 continue;
1159 CTR2(KTR_IGMPV3, "%s: free ims %p", __func__, ims);
1160 RB_REMOVE(ip_msource_tree, &inm->inm_srcs, ims);
1161 free(ims, M_IPMSOURCE);
1162 inm->inm_nsrc--;
1163 }
1164 }
1165
1166 /*
1167 * Purge all source nodes from an in_multi's filter set.
1168 */
1169 static void
inm_purge(struct in_multi * inm)1170 inm_purge(struct in_multi *inm)
1171 {
1172 struct ip_msource *ims, *tims;
1173
1174 RB_FOREACH_SAFE(ims, ip_msource_tree, &inm->inm_srcs, tims) {
1175 CTR2(KTR_IGMPV3, "%s: free ims %p", __func__, ims);
1176 RB_REMOVE(ip_msource_tree, &inm->inm_srcs, ims);
1177 free(ims, M_IPMSOURCE);
1178 inm->inm_nsrc--;
1179 }
1180 mbufq_drain(&inm->inm_scq);
1181 }
1182
1183 /*
1184 * Join a multicast group; unlocked entry point.
1185 *
1186 * SMPng: XXX: in_joingroup() is called from in_control(). Fortunately,
1187 * ifp is unlikely to have been detached at this point, so we assume
1188 * it's OK to recurse.
1189 */
1190 int
in_joingroup(struct ifnet * ifp,const struct in_addr * gina,struct in_mfilter * imf,struct in_multi ** pinm)1191 in_joingroup(struct ifnet *ifp, const struct in_addr *gina,
1192 /*const*/ struct in_mfilter *imf, struct in_multi **pinm)
1193 {
1194 int error;
1195
1196 IN_MULTI_LOCK();
1197 error = in_joingroup_locked(ifp, gina, imf, pinm);
1198 IN_MULTI_UNLOCK();
1199
1200 return (error);
1201 }
1202
1203 /*
1204 * Join a multicast group; real entry point.
1205 *
1206 * Only preserves atomicity at inm level.
1207 * NOTE: imf argument cannot be const due to sys/tree.h limitations.
1208 *
1209 * If the IGMP downcall fails, the group is not joined, and an error
1210 * code is returned.
1211 */
1212 int
in_joingroup_locked(struct ifnet * ifp,const struct in_addr * gina,struct in_mfilter * imf,struct in_multi ** pinm)1213 in_joingroup_locked(struct ifnet *ifp, const struct in_addr *gina,
1214 /*const*/ struct in_mfilter *imf, struct in_multi **pinm)
1215 {
1216 struct in_mfilter timf;
1217 struct in_multi *inm;
1218 int error;
1219
1220 IN_MULTI_LOCK_ASSERT();
1221 IN_MULTI_LIST_UNLOCK_ASSERT();
1222
1223 CTR4(KTR_IGMPV3, "%s: join 0x%08x on %p(%s))", __func__,
1224 ntohl(gina->s_addr), ifp, ifp->if_xname);
1225
1226 error = 0;
1227 inm = NULL;
1228
1229 /*
1230 * If no imf was specified (i.e. kernel consumer),
1231 * fake one up and assume it is an ASM join.
1232 */
1233 if (imf == NULL) {
1234 imf_init(&timf, MCAST_UNDEFINED, MCAST_EXCLUDE);
1235 imf = &timf;
1236 }
1237
1238 error = in_getmulti(ifp, gina, &inm);
1239 if (error) {
1240 CTR1(KTR_IGMPV3, "%s: in_getmulti() failure", __func__);
1241 return (error);
1242 }
1243 IN_MULTI_LIST_LOCK();
1244 CTR1(KTR_IGMPV3, "%s: merge inm state", __func__);
1245 error = inm_merge(inm, imf);
1246 if (error) {
1247 CTR1(KTR_IGMPV3, "%s: failed to merge inm state", __func__);
1248 goto out_inm_release;
1249 }
1250
1251 CTR1(KTR_IGMPV3, "%s: doing igmp downcall", __func__);
1252 error = igmp_change_state(inm);
1253 if (error) {
1254 CTR1(KTR_IGMPV3, "%s: failed to update source", __func__);
1255 goto out_inm_release;
1256 }
1257
1258 out_inm_release:
1259 if (error) {
1260 CTR2(KTR_IGMPV3, "%s: dropping ref on %p", __func__, inm);
1261 IF_ADDR_WLOCK(ifp);
1262 inm_release_deferred(inm);
1263 IF_ADDR_WUNLOCK(ifp);
1264 } else {
1265 *pinm = inm;
1266 }
1267 IN_MULTI_LIST_UNLOCK();
1268
1269 return (error);
1270 }
1271
1272 /*
1273 * Leave a multicast group; unlocked entry point.
1274 */
1275 int
in_leavegroup(struct in_multi * inm,struct in_mfilter * imf)1276 in_leavegroup(struct in_multi *inm, /*const*/ struct in_mfilter *imf)
1277 {
1278 int error;
1279
1280 IN_MULTI_LOCK();
1281 error = in_leavegroup_locked(inm, imf);
1282 IN_MULTI_UNLOCK();
1283
1284 return (error);
1285 }
1286
1287 /*
1288 * Leave a multicast group; real entry point.
1289 * All source filters will be expunged.
1290 *
1291 * Only preserves atomicity at inm level.
1292 *
1293 * Holding the write lock for the INP which contains imf
1294 * is highly advisable. We can't assert for it as imf does not
1295 * contain a back-pointer to the owning inp.
1296 *
1297 * Note: This is not the same as inm_release(*) as this function also
1298 * makes a state change downcall into IGMP.
1299 */
1300 int
in_leavegroup_locked(struct in_multi * inm,struct in_mfilter * imf)1301 in_leavegroup_locked(struct in_multi *inm, /*const*/ struct in_mfilter *imf)
1302 {
1303 struct in_mfilter timf;
1304 int error;
1305
1306 IN_MULTI_LOCK_ASSERT();
1307 IN_MULTI_LIST_UNLOCK_ASSERT();
1308
1309 error = 0;
1310
1311 CTR5(KTR_IGMPV3, "%s: leave inm %p, 0x%08x/%s, imf %p", __func__,
1312 inm, ntohl(inm->inm_addr.s_addr),
1313 (inm_is_ifp_detached(inm) ? "null" : inm->inm_ifp->if_xname),
1314 imf);
1315
1316 /*
1317 * If no imf was specified (i.e. kernel consumer),
1318 * fake one up and assume it is an ASM join.
1319 */
1320 if (imf == NULL) {
1321 imf_init(&timf, MCAST_EXCLUDE, MCAST_UNDEFINED);
1322 imf = &timf;
1323 }
1324
1325 /*
1326 * Begin state merge transaction at IGMP layer.
1327 *
1328 * As this particular invocation should not cause any memory
1329 * to be allocated, and there is no opportunity to roll back
1330 * the transaction, it MUST NOT fail.
1331 */
1332 CTR1(KTR_IGMPV3, "%s: merge inm state", __func__);
1333 IN_MULTI_LIST_LOCK();
1334 error = inm_merge(inm, imf);
1335 KASSERT(error == 0, ("%s: failed to merge inm state", __func__));
1336
1337 CTR1(KTR_IGMPV3, "%s: doing igmp downcall", __func__);
1338 CURVNET_SET(inm->inm_ifp->if_vnet);
1339 error = igmp_change_state(inm);
1340 IF_ADDR_WLOCK(inm->inm_ifp);
1341 inm_release_deferred(inm);
1342 IF_ADDR_WUNLOCK(inm->inm_ifp);
1343 IN_MULTI_LIST_UNLOCK();
1344 CURVNET_RESTORE();
1345 if (error)
1346 CTR1(KTR_IGMPV3, "%s: failed igmp downcall", __func__);
1347
1348 CTR2(KTR_IGMPV3, "%s: dropping ref on %p", __func__, inm);
1349
1350 return (error);
1351 }
1352
1353 /*#ifndef BURN_BRIDGES*/
1354
1355 /*
1356 * Block or unblock an ASM multicast source on an inpcb.
1357 * This implements the delta-based API described in RFC 3678.
1358 *
1359 * The delta-based API applies only to exclusive-mode memberships.
1360 * An IGMP downcall will be performed.
1361 *
1362 * Return 0 if successful, otherwise return an appropriate error code.
1363 */
1364 static int
inp_block_unblock_source(struct inpcb * inp,struct sockopt * sopt)1365 inp_block_unblock_source(struct inpcb *inp, struct sockopt *sopt)
1366 {
1367 struct epoch_tracker et;
1368 struct group_source_req gsr;
1369 sockunion_t *gsa, *ssa;
1370 struct ifnet *ifp;
1371 struct in_mfilter *imf;
1372 struct ip_moptions *imo;
1373 struct in_msource *ims;
1374 struct in_multi *inm;
1375 uint16_t fmode;
1376 int error, doblock;
1377
1378 ifp = NULL;
1379 error = 0;
1380 doblock = 0;
1381
1382 memset(&gsr, 0, sizeof(struct group_source_req));
1383 gsa = (sockunion_t *)&gsr.gsr_group;
1384 ssa = (sockunion_t *)&gsr.gsr_source;
1385
1386 switch (sopt->sopt_name) {
1387 case IP_BLOCK_SOURCE:
1388 case IP_UNBLOCK_SOURCE: {
1389 struct ip_mreq_source mreqs;
1390
1391 error = sooptcopyin(sopt, &mreqs,
1392 sizeof(struct ip_mreq_source),
1393 sizeof(struct ip_mreq_source));
1394 if (error)
1395 return (error);
1396
1397 gsa->sin.sin_family = AF_INET;
1398 gsa->sin.sin_len = sizeof(struct sockaddr_in);
1399 gsa->sin.sin_addr = mreqs.imr_multiaddr;
1400
1401 ssa->sin.sin_family = AF_INET;
1402 ssa->sin.sin_len = sizeof(struct sockaddr_in);
1403 ssa->sin.sin_addr = mreqs.imr_sourceaddr;
1404
1405 if (!in_nullhost(mreqs.imr_interface)) {
1406 NET_EPOCH_ENTER(et);
1407 INADDR_TO_IFP(mreqs.imr_interface, ifp);
1408 /* XXXGL: ifref? */
1409 NET_EPOCH_EXIT(et);
1410 }
1411 if (sopt->sopt_name == IP_BLOCK_SOURCE)
1412 doblock = 1;
1413
1414 CTR3(KTR_IGMPV3, "%s: imr_interface = 0x%08x, ifp = %p",
1415 __func__, ntohl(mreqs.imr_interface.s_addr), ifp);
1416 break;
1417 }
1418
1419 case MCAST_BLOCK_SOURCE:
1420 case MCAST_UNBLOCK_SOURCE:
1421 error = sooptcopyin(sopt, &gsr,
1422 sizeof(struct group_source_req),
1423 sizeof(struct group_source_req));
1424 if (error)
1425 return (error);
1426
1427 if (gsa->sin.sin_family != AF_INET ||
1428 gsa->sin.sin_len != sizeof(struct sockaddr_in))
1429 return (EINVAL);
1430
1431 if (ssa->sin.sin_family != AF_INET ||
1432 ssa->sin.sin_len != sizeof(struct sockaddr_in))
1433 return (EINVAL);
1434
1435 NET_EPOCH_ENTER(et);
1436 ifp = ifnet_byindex(gsr.gsr_interface);
1437 NET_EPOCH_EXIT(et);
1438 if (ifp == NULL)
1439 return (EADDRNOTAVAIL);
1440
1441 if (sopt->sopt_name == MCAST_BLOCK_SOURCE)
1442 doblock = 1;
1443 break;
1444
1445 default:
1446 CTR2(KTR_IGMPV3, "%s: unknown sopt_name %d",
1447 __func__, sopt->sopt_name);
1448 return (EOPNOTSUPP);
1449 break;
1450 }
1451
1452 if (!IN_MULTICAST(ntohl(gsa->sin.sin_addr.s_addr)))
1453 return (EINVAL);
1454
1455 IN_MULTI_LOCK();
1456
1457 /*
1458 * Check if we are actually a member of this group.
1459 */
1460 imo = inp_findmoptions(inp);
1461 imf = imo_match_group(imo, ifp, &gsa->sa);
1462 if (imf == NULL) {
1463 error = EADDRNOTAVAIL;
1464 goto out_inp_locked;
1465 }
1466 inm = imf->imf_inm;
1467
1468 /*
1469 * Attempting to use the delta-based API on an
1470 * non exclusive-mode membership is an error.
1471 */
1472 fmode = imf->imf_st[0];
1473 if (fmode != MCAST_EXCLUDE) {
1474 error = EINVAL;
1475 goto out_inp_locked;
1476 }
1477
1478 /*
1479 * Deal with error cases up-front:
1480 * Asked to block, but already blocked; or
1481 * Asked to unblock, but nothing to unblock.
1482 * If adding a new block entry, allocate it.
1483 */
1484 ims = imo_match_source(imf, &ssa->sa);
1485 if ((ims != NULL && doblock) || (ims == NULL && !doblock)) {
1486 CTR3(KTR_IGMPV3, "%s: source 0x%08x %spresent", __func__,
1487 ntohl(ssa->sin.sin_addr.s_addr), doblock ? "" : "not ");
1488 error = EADDRNOTAVAIL;
1489 goto out_inp_locked;
1490 }
1491
1492 INP_WLOCK_ASSERT(inp);
1493
1494 /*
1495 * Begin state merge transaction at socket layer.
1496 */
1497 if (doblock) {
1498 CTR2(KTR_IGMPV3, "%s: %s source", __func__, "block");
1499 ims = imf_graft(imf, fmode, &ssa->sin);
1500 if (ims == NULL)
1501 error = ENOMEM;
1502 } else {
1503 CTR2(KTR_IGMPV3, "%s: %s source", __func__, "allow");
1504 error = imf_prune(imf, &ssa->sin);
1505 }
1506
1507 if (error) {
1508 CTR1(KTR_IGMPV3, "%s: merge imf state failed", __func__);
1509 goto out_imf_rollback;
1510 }
1511
1512 /*
1513 * Begin state merge transaction at IGMP layer.
1514 */
1515 CTR1(KTR_IGMPV3, "%s: merge inm state", __func__);
1516 IN_MULTI_LIST_LOCK();
1517 error = inm_merge(inm, imf);
1518 if (error) {
1519 CTR1(KTR_IGMPV3, "%s: failed to merge inm state", __func__);
1520 IN_MULTI_LIST_UNLOCK();
1521 goto out_imf_rollback;
1522 }
1523
1524 CTR1(KTR_IGMPV3, "%s: doing igmp downcall", __func__);
1525 error = igmp_change_state(inm);
1526 IN_MULTI_LIST_UNLOCK();
1527 if (error)
1528 CTR1(KTR_IGMPV3, "%s: failed igmp downcall", __func__);
1529
1530 out_imf_rollback:
1531 if (error)
1532 imf_rollback(imf);
1533 else
1534 imf_commit(imf);
1535
1536 imf_reap(imf);
1537
1538 out_inp_locked:
1539 INP_WUNLOCK(inp);
1540 IN_MULTI_UNLOCK();
1541 return (error);
1542 }
1543
1544 /*
1545 * Given an inpcb, return its multicast options structure pointer. Accepts
1546 * an unlocked inpcb pointer, but will return it locked. May sleep.
1547 *
1548 * SMPng: NOTE: Returns with the INP write lock held.
1549 */
1550 static struct ip_moptions *
inp_findmoptions(struct inpcb * inp)1551 inp_findmoptions(struct inpcb *inp)
1552 {
1553 struct ip_moptions *imo;
1554
1555 INP_WLOCK(inp);
1556 if (inp->inp_moptions != NULL)
1557 return (inp->inp_moptions);
1558
1559 INP_WUNLOCK(inp);
1560
1561 imo = malloc(sizeof(*imo), M_IPMOPTS, M_WAITOK);
1562
1563 imo->imo_multicast_ifp = NULL;
1564 imo->imo_multicast_addr.s_addr = INADDR_ANY;
1565 imo->imo_multicast_vif = -1;
1566 imo->imo_multicast_ttl = IP_DEFAULT_MULTICAST_TTL;
1567 imo->imo_multicast_loop = in_mcast_loop;
1568 STAILQ_INIT(&imo->imo_head);
1569
1570 INP_WLOCK(inp);
1571 if (inp->inp_moptions != NULL) {
1572 free(imo, M_IPMOPTS);
1573 return (inp->inp_moptions);
1574 }
1575 inp->inp_moptions = imo;
1576 return (imo);
1577 }
1578
1579 void
inp_freemoptions(struct ip_moptions * imo)1580 inp_freemoptions(struct ip_moptions *imo)
1581 {
1582 struct in_mfilter *imf;
1583 struct in_multi *inm;
1584 struct ifnet *ifp;
1585
1586 if (imo == NULL)
1587 return;
1588
1589 while ((imf = ip_mfilter_first(&imo->imo_head)) != NULL) {
1590 ip_mfilter_remove(&imo->imo_head, imf);
1591
1592 imf_leave(imf);
1593 if ((inm = imf->imf_inm) != NULL) {
1594 if ((ifp = inm->inm_ifp) != NULL) {
1595 CURVNET_SET(ifp->if_vnet);
1596 (void)in_leavegroup(inm, imf);
1597 CURVNET_RESTORE();
1598 } else {
1599 (void)in_leavegroup(inm, imf);
1600 }
1601 }
1602 ip_mfilter_free(imf);
1603 }
1604 free(imo, M_IPMOPTS);
1605 }
1606
1607 /*
1608 * Atomically get source filters on a socket for an IPv4 multicast group.
1609 * Called with INP lock held; returns with lock released.
1610 */
1611 static int
inp_get_source_filters(struct inpcb * inp,struct sockopt * sopt)1612 inp_get_source_filters(struct inpcb *inp, struct sockopt *sopt)
1613 {
1614 struct epoch_tracker et;
1615 struct __msfilterreq msfr;
1616 sockunion_t *gsa;
1617 struct ifnet *ifp;
1618 struct ip_moptions *imo;
1619 struct in_mfilter *imf;
1620 struct ip_msource *ims;
1621 struct in_msource *lims;
1622 struct sockaddr_in *psin;
1623 struct sockaddr_storage *ptss;
1624 struct sockaddr_storage *tss;
1625 int error;
1626 size_t nsrcs, ncsrcs;
1627
1628 INP_WLOCK_ASSERT(inp);
1629
1630 imo = inp->inp_moptions;
1631 KASSERT(imo != NULL, ("%s: null ip_moptions", __func__));
1632
1633 INP_WUNLOCK(inp);
1634
1635 error = sooptcopyin(sopt, &msfr, sizeof(struct __msfilterreq),
1636 sizeof(struct __msfilterreq));
1637 if (error)
1638 return (error);
1639
1640 NET_EPOCH_ENTER(et);
1641 ifp = ifnet_byindex(msfr.msfr_ifindex);
1642 NET_EPOCH_EXIT(et); /* XXXGL: unsafe ifnet pointer left */
1643 if (ifp == NULL)
1644 return (EINVAL);
1645
1646 INP_WLOCK(inp);
1647
1648 /*
1649 * Lookup group on the socket.
1650 */
1651 gsa = (sockunion_t *)&msfr.msfr_group;
1652 imf = imo_match_group(imo, ifp, &gsa->sa);
1653 if (imf == NULL) {
1654 INP_WUNLOCK(inp);
1655 return (EADDRNOTAVAIL);
1656 }
1657
1658 /*
1659 * Ignore memberships which are in limbo.
1660 */
1661 if (imf->imf_st[1] == MCAST_UNDEFINED) {
1662 INP_WUNLOCK(inp);
1663 return (EAGAIN);
1664 }
1665 msfr.msfr_fmode = imf->imf_st[1];
1666
1667 /*
1668 * If the user specified a buffer, copy out the source filter
1669 * entries to userland gracefully.
1670 * We only copy out the number of entries which userland
1671 * has asked for, but we always tell userland how big the
1672 * buffer really needs to be.
1673 */
1674 if (msfr.msfr_nsrcs > in_mcast_maxsocksrc)
1675 msfr.msfr_nsrcs = in_mcast_maxsocksrc;
1676 tss = NULL;
1677 if (msfr.msfr_srcs != NULL && msfr.msfr_nsrcs > 0) {
1678 tss = malloc(sizeof(struct sockaddr_storage) * msfr.msfr_nsrcs,
1679 M_TEMP, M_NOWAIT | M_ZERO);
1680 if (tss == NULL) {
1681 INP_WUNLOCK(inp);
1682 return (ENOBUFS);
1683 }
1684 }
1685
1686 /*
1687 * Count number of sources in-mode at t0.
1688 * If buffer space exists and remains, copy out source entries.
1689 */
1690 nsrcs = msfr.msfr_nsrcs;
1691 ncsrcs = 0;
1692 ptss = tss;
1693 RB_FOREACH(ims, ip_msource_tree, &imf->imf_sources) {
1694 lims = (struct in_msource *)ims;
1695 if (lims->imsl_st[0] == MCAST_UNDEFINED ||
1696 lims->imsl_st[0] != imf->imf_st[0])
1697 continue;
1698 ++ncsrcs;
1699 if (tss != NULL && nsrcs > 0) {
1700 psin = (struct sockaddr_in *)ptss;
1701 psin->sin_family = AF_INET;
1702 psin->sin_len = sizeof(struct sockaddr_in);
1703 psin->sin_addr.s_addr = htonl(lims->ims_haddr);
1704 psin->sin_port = 0;
1705 ++ptss;
1706 --nsrcs;
1707 }
1708 }
1709
1710 INP_WUNLOCK(inp);
1711
1712 if (tss != NULL) {
1713 error = copyout(tss, msfr.msfr_srcs,
1714 sizeof(struct sockaddr_storage) * msfr.msfr_nsrcs);
1715 free(tss, M_TEMP);
1716 if (error)
1717 return (error);
1718 }
1719
1720 msfr.msfr_nsrcs = ncsrcs;
1721 error = sooptcopyout(sopt, &msfr, sizeof(struct __msfilterreq));
1722
1723 return (error);
1724 }
1725
1726 /*
1727 * Return the IP multicast options in response to user getsockopt().
1728 */
1729 int
inp_getmoptions(struct inpcb * inp,struct sockopt * sopt)1730 inp_getmoptions(struct inpcb *inp, struct sockopt *sopt)
1731 {
1732 struct ip_mreqn mreqn;
1733 struct ip_moptions *imo;
1734 struct ifnet *ifp;
1735 struct in_ifaddr *ia;
1736 int error, optval;
1737 u_char coptval;
1738
1739 INP_WLOCK(inp);
1740 imo = inp->inp_moptions;
1741 /* If socket is neither of type SOCK_RAW or SOCK_DGRAM reject it. */
1742 if (inp->inp_socket->so_proto->pr_type != SOCK_RAW &&
1743 inp->inp_socket->so_proto->pr_type != SOCK_DGRAM) {
1744 INP_WUNLOCK(inp);
1745 return (EOPNOTSUPP);
1746 }
1747
1748 error = 0;
1749 switch (sopt->sopt_name) {
1750 case IP_MULTICAST_VIF:
1751 if (imo != NULL)
1752 optval = imo->imo_multicast_vif;
1753 else
1754 optval = -1;
1755 INP_WUNLOCK(inp);
1756 error = sooptcopyout(sopt, &optval, sizeof(int));
1757 break;
1758
1759 case IP_MULTICAST_IF:
1760 memset(&mreqn, 0, sizeof(struct ip_mreqn));
1761 if (imo != NULL) {
1762 ifp = imo->imo_multicast_ifp;
1763 if (!in_nullhost(imo->imo_multicast_addr)) {
1764 mreqn.imr_address = imo->imo_multicast_addr;
1765 } else if (ifp != NULL) {
1766 struct epoch_tracker et;
1767
1768 mreqn.imr_ifindex = ifp->if_index;
1769 NET_EPOCH_ENTER(et);
1770 ia = in_ifprimaryaddr(ifp);
1771 if (ia != NULL)
1772 mreqn.imr_address =
1773 IA_SIN(ia)->sin_addr;
1774 NET_EPOCH_EXIT(et);
1775 }
1776 }
1777 INP_WUNLOCK(inp);
1778 if (sopt->sopt_valsize == sizeof(struct ip_mreqn)) {
1779 error = sooptcopyout(sopt, &mreqn,
1780 sizeof(struct ip_mreqn));
1781 } else {
1782 error = sooptcopyout(sopt, &mreqn.imr_address,
1783 sizeof(struct in_addr));
1784 }
1785 break;
1786
1787 case IP_MULTICAST_TTL:
1788 if (imo == NULL)
1789 optval = coptval = IP_DEFAULT_MULTICAST_TTL;
1790 else
1791 optval = coptval = imo->imo_multicast_ttl;
1792 INP_WUNLOCK(inp);
1793 if (sopt->sopt_valsize == sizeof(u_char))
1794 error = sooptcopyout(sopt, &coptval, sizeof(u_char));
1795 else
1796 error = sooptcopyout(sopt, &optval, sizeof(int));
1797 break;
1798
1799 case IP_MULTICAST_LOOP:
1800 if (imo == NULL)
1801 optval = coptval = IP_DEFAULT_MULTICAST_LOOP;
1802 else
1803 optval = coptval = imo->imo_multicast_loop;
1804 INP_WUNLOCK(inp);
1805 if (sopt->sopt_valsize == sizeof(u_char))
1806 error = sooptcopyout(sopt, &coptval, sizeof(u_char));
1807 else
1808 error = sooptcopyout(sopt, &optval, sizeof(int));
1809 break;
1810
1811 case IP_MSFILTER:
1812 if (imo == NULL) {
1813 error = EADDRNOTAVAIL;
1814 INP_WUNLOCK(inp);
1815 } else {
1816 error = inp_get_source_filters(inp, sopt);
1817 }
1818 break;
1819
1820 default:
1821 INP_WUNLOCK(inp);
1822 error = ENOPROTOOPT;
1823 break;
1824 }
1825
1826 INP_UNLOCK_ASSERT(inp);
1827
1828 return (error);
1829 }
1830
1831 /*
1832 * Look up the ifnet to join a multicast group membership via legacy
1833 * IP_ADD_MEMBERSHIP or via more modern MCAST_JOIN_GROUP.
1834 *
1835 * If the interface index was specified explicitly, just use it. If the
1836 * address was specified (legacy), try to find matching interface. Else
1837 * (index == 0 && no address) do a route lookup. If that fails for a modern
1838 * MCAST_JOIN_GROUP return failure, for legacy IP_ADD_MEMBERSHIP find first
1839 * multicast capable interface.
1840 */
1841 static struct ifnet *
inp_lookup_mcast_ifp(const struct inpcb * inp,const struct in_addr maddr,const struct in_addr * ina,const u_int index)1842 inp_lookup_mcast_ifp(const struct inpcb *inp, const struct in_addr maddr,
1843 const struct in_addr *ina, const u_int index)
1844 {
1845 struct ifnet *ifp;
1846 struct nhop_object *nh;
1847
1848 NET_EPOCH_ASSERT();
1849
1850 if (index != 0)
1851 return (ifnet_byindex_ref(index));
1852
1853 if (ina != NULL && !in_nullhost(*ina)) {
1854 INADDR_TO_IFP(*ina, ifp);
1855 if (ifp != NULL)
1856 if_ref(ifp);
1857 return (ifp);
1858 }
1859
1860 nh = fib4_lookup(inp->inp_inc.inc_fibnum, maddr, 0, NHR_NONE, 0);
1861 if (nh != NULL) {
1862 ifp = nh->nh_ifp;
1863 if_ref(ifp);
1864 return (ifp);
1865 }
1866
1867 if (ina != NULL) {
1868 struct in_ifaddr *ia;
1869
1870 CK_STAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) {
1871 if (!(ia->ia_ifp->if_flags & IFF_LOOPBACK) &&
1872 (ia->ia_ifp->if_flags & IFF_MULTICAST)) {
1873 ifp = ia->ia_ifp;
1874 if_ref(ifp);
1875 return (ifp);
1876 }
1877 }
1878 }
1879
1880 return (NULL);
1881 }
1882
1883 /*
1884 * Join an IPv4 multicast group, possibly with a source.
1885 */
1886 int
inp_join_group(struct inpcb * inp,struct sockopt * sopt)1887 inp_join_group(struct inpcb *inp, struct sockopt *sopt)
1888 {
1889 struct group_source_req gsr;
1890 sockunion_t *gsa, *ssa;
1891 struct ifnet *ifp;
1892 struct in_mfilter *imf;
1893 struct ip_moptions *imo;
1894 struct in_multi *inm;
1895 struct in_msource *lims;
1896 struct epoch_tracker et;
1897 int error, is_new;
1898
1899 ifp = NULL;
1900 lims = NULL;
1901 error = 0;
1902
1903 memset(&gsr, 0, sizeof(struct group_source_req));
1904 gsa = (sockunion_t *)&gsr.gsr_group;
1905 gsa->ss.ss_family = AF_UNSPEC;
1906 ssa = (sockunion_t *)&gsr.gsr_source;
1907 ssa->ss.ss_family = AF_UNSPEC;
1908
1909 switch (sopt->sopt_name) {
1910 case IP_ADD_MEMBERSHIP: {
1911 struct ip_mreqn mreqn;
1912 bool mreq;
1913
1914 mreq = (sopt->sopt_valsize != sizeof(struct ip_mreqn));
1915
1916 error = sooptcopyin(sopt, &mreqn,
1917 mreq ? sizeof(struct ip_mreq) : sizeof(struct ip_mreqn),
1918 mreq ? sizeof(struct ip_mreq) : sizeof(struct ip_mreqn));
1919 if (error)
1920 return (error);
1921
1922 gsa->sin.sin_family = AF_INET;
1923 gsa->sin.sin_len = sizeof(struct sockaddr_in);
1924 gsa->sin.sin_addr = mreqn.imr_multiaddr;
1925 if (!IN_MULTICAST(ntohl(gsa->sin.sin_addr.s_addr)))
1926 return (EINVAL);
1927
1928 NET_EPOCH_ENTER(et);
1929 ifp = inp_lookup_mcast_ifp(inp, mreqn.imr_multiaddr,
1930 mreq ? &mreqn.imr_address : NULL,
1931 mreq ? 0 : mreqn.imr_ifindex);
1932 NET_EPOCH_EXIT(et);
1933 break;
1934 }
1935 case IP_ADD_SOURCE_MEMBERSHIP: {
1936 struct ip_mreq_source mreqs;
1937
1938 error = sooptcopyin(sopt, &mreqs, sizeof(struct ip_mreq_source),
1939 sizeof(struct ip_mreq_source));
1940 if (error)
1941 return (error);
1942
1943 gsa->sin.sin_family = ssa->sin.sin_family = AF_INET;
1944 gsa->sin.sin_len = ssa->sin.sin_len =
1945 sizeof(struct sockaddr_in);
1946
1947 gsa->sin.sin_addr = mreqs.imr_multiaddr;
1948 if (!IN_MULTICAST(ntohl(gsa->sin.sin_addr.s_addr)))
1949 return (EINVAL);
1950
1951 ssa->sin.sin_addr = mreqs.imr_sourceaddr;
1952
1953 NET_EPOCH_ENTER(et);
1954 ifp = inp_lookup_mcast_ifp(inp, mreqs.imr_multiaddr,
1955 &mreqs.imr_interface, 0);
1956 NET_EPOCH_EXIT(et);
1957 CTR3(KTR_IGMPV3, "%s: imr_interface = 0x%08x, ifp = %p",
1958 __func__, ntohl(mreqs.imr_interface.s_addr), ifp);
1959 break;
1960 }
1961
1962 case MCAST_JOIN_GROUP:
1963 case MCAST_JOIN_SOURCE_GROUP:
1964 if (sopt->sopt_name == MCAST_JOIN_GROUP) {
1965 error = sooptcopyin(sopt, &gsr,
1966 sizeof(struct group_req),
1967 sizeof(struct group_req));
1968 } else if (sopt->sopt_name == MCAST_JOIN_SOURCE_GROUP) {
1969 error = sooptcopyin(sopt, &gsr,
1970 sizeof(struct group_source_req),
1971 sizeof(struct group_source_req));
1972 }
1973 if (error)
1974 return (error);
1975
1976 if (gsa->sin.sin_family != AF_INET ||
1977 gsa->sin.sin_len != sizeof(struct sockaddr_in))
1978 return (EINVAL);
1979
1980 /*
1981 * Overwrite the port field if present, as the sockaddr
1982 * being copied in may be matched with a binary comparison.
1983 */
1984 gsa->sin.sin_port = 0;
1985 if (sopt->sopt_name == MCAST_JOIN_SOURCE_GROUP) {
1986 if (ssa->sin.sin_family != AF_INET ||
1987 ssa->sin.sin_len != sizeof(struct sockaddr_in))
1988 return (EINVAL);
1989 ssa->sin.sin_port = 0;
1990 }
1991
1992 if (!IN_MULTICAST(ntohl(gsa->sin.sin_addr.s_addr)))
1993 return (EINVAL);
1994
1995 NET_EPOCH_ENTER(et);
1996 ifp = inp_lookup_mcast_ifp(inp, gsa->sin.sin_addr, NULL,
1997 gsr.gsr_interface);
1998 NET_EPOCH_EXIT(et);
1999 if (ifp == NULL)
2000 return (EADDRNOTAVAIL);
2001 break;
2002
2003 default:
2004 CTR2(KTR_IGMPV3, "%s: unknown sopt_name %d",
2005 __func__, sopt->sopt_name);
2006 return (EOPNOTSUPP);
2007 break;
2008 }
2009
2010 if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
2011 if (ifp != NULL)
2012 if_rele(ifp);
2013 return (EADDRNOTAVAIL);
2014 }
2015
2016 IN_MULTI_LOCK();
2017
2018 /*
2019 * Find the membership in the membership list.
2020 */
2021 imo = inp_findmoptions(inp);
2022 imf = imo_match_group(imo, ifp, &gsa->sa);
2023 if (imf == NULL) {
2024 is_new = 1;
2025 inm = NULL;
2026
2027 if (ip_mfilter_count(&imo->imo_head) >= IP_MAX_MEMBERSHIPS) {
2028 error = ENOMEM;
2029 goto out_inp_locked;
2030 }
2031 } else {
2032 is_new = 0;
2033 inm = imf->imf_inm;
2034
2035 if (ssa->ss.ss_family != AF_UNSPEC) {
2036 /*
2037 * MCAST_JOIN_SOURCE_GROUP on an exclusive membership
2038 * is an error. On an existing inclusive membership,
2039 * it just adds the source to the filter list.
2040 */
2041 if (imf->imf_st[1] != MCAST_INCLUDE) {
2042 error = EINVAL;
2043 goto out_inp_locked;
2044 }
2045 /*
2046 * Throw out duplicates.
2047 *
2048 * XXX FIXME: This makes a naive assumption that
2049 * even if entries exist for *ssa in this imf,
2050 * they will be rejected as dupes, even if they
2051 * are not valid in the current mode (in-mode).
2052 *
2053 * in_msource is transactioned just as for anything
2054 * else in SSM -- but note naive use of inm_graft()
2055 * below for allocating new filter entries.
2056 *
2057 * This is only an issue if someone mixes the
2058 * full-state SSM API with the delta-based API,
2059 * which is discouraged in the relevant RFCs.
2060 */
2061 lims = imo_match_source(imf, &ssa->sa);
2062 if (lims != NULL /*&&
2063 lims->imsl_st[1] == MCAST_INCLUDE*/) {
2064 error = EADDRNOTAVAIL;
2065 goto out_inp_locked;
2066 }
2067 } else {
2068 /*
2069 * MCAST_JOIN_GROUP on an existing exclusive
2070 * membership is an error; return EADDRINUSE
2071 * to preserve 4.4BSD API idempotence, and
2072 * avoid tedious detour to code below.
2073 * NOTE: This is bending RFC 3678 a bit.
2074 *
2075 * On an existing inclusive membership, this is also
2076 * an error; if you want to change filter mode,
2077 * you must use the userland API setsourcefilter().
2078 * XXX We don't reject this for imf in UNDEFINED
2079 * state at t1, because allocation of a filter
2080 * is atomic with allocation of a membership.
2081 */
2082 error = EINVAL;
2083 if (imf->imf_st[1] == MCAST_EXCLUDE)
2084 error = EADDRINUSE;
2085 goto out_inp_locked;
2086 }
2087 }
2088
2089 /*
2090 * Begin state merge transaction at socket layer.
2091 */
2092 INP_WLOCK_ASSERT(inp);
2093
2094 /*
2095 * Graft new source into filter list for this inpcb's
2096 * membership of the group. The in_multi may not have
2097 * been allocated yet if this is a new membership, however,
2098 * the in_mfilter slot will be allocated and must be initialized.
2099 *
2100 * Note: Grafting of exclusive mode filters doesn't happen
2101 * in this path.
2102 * XXX: Should check for non-NULL lims (node exists but may
2103 * not be in-mode) for interop with full-state API.
2104 */
2105 if (ssa->ss.ss_family != AF_UNSPEC) {
2106 /* Membership starts in IN mode */
2107 if (is_new) {
2108 CTR1(KTR_IGMPV3, "%s: new join w/source", __func__);
2109 imf = ip_mfilter_alloc(M_NOWAIT, MCAST_UNDEFINED, MCAST_INCLUDE);
2110 if (imf == NULL) {
2111 error = ENOMEM;
2112 goto out_inp_locked;
2113 }
2114 } else {
2115 CTR2(KTR_IGMPV3, "%s: %s source", __func__, "allow");
2116 }
2117 lims = imf_graft(imf, MCAST_INCLUDE, &ssa->sin);
2118 if (lims == NULL) {
2119 CTR1(KTR_IGMPV3, "%s: merge imf state failed",
2120 __func__);
2121 error = ENOMEM;
2122 goto out_inp_locked;
2123 }
2124 } else {
2125 /* No address specified; Membership starts in EX mode */
2126 if (is_new) {
2127 CTR1(KTR_IGMPV3, "%s: new join w/o source", __func__);
2128 imf = ip_mfilter_alloc(M_NOWAIT, MCAST_UNDEFINED, MCAST_EXCLUDE);
2129 if (imf == NULL) {
2130 error = ENOMEM;
2131 goto out_inp_locked;
2132 }
2133 }
2134 }
2135
2136 /*
2137 * Begin state merge transaction at IGMP layer.
2138 */
2139 if (is_new) {
2140 in_pcbref(inp);
2141 INP_WUNLOCK(inp);
2142
2143 error = in_joingroup_locked(ifp, &gsa->sin.sin_addr, imf,
2144 &imf->imf_inm);
2145
2146 INP_WLOCK(inp);
2147 if (in_pcbrele_wlocked(inp)) {
2148 error = ENXIO;
2149 goto out_inp_unlocked;
2150 }
2151 if (error) {
2152 CTR1(KTR_IGMPV3, "%s: in_joingroup_locked failed",
2153 __func__);
2154 goto out_inp_locked;
2155 }
2156 /*
2157 * NOTE: Refcount from in_joingroup_locked()
2158 * is protecting membership.
2159 */
2160 ip_mfilter_insert(&imo->imo_head, imf);
2161 } else {
2162 CTR1(KTR_IGMPV3, "%s: merge inm state", __func__);
2163 IN_MULTI_LIST_LOCK();
2164 error = inm_merge(inm, imf);
2165 if (error) {
2166 CTR1(KTR_IGMPV3, "%s: failed to merge inm state",
2167 __func__);
2168 IN_MULTI_LIST_UNLOCK();
2169 imf_rollback(imf);
2170 imf_reap(imf);
2171 goto out_inp_locked;
2172 }
2173 CTR1(KTR_IGMPV3, "%s: doing igmp downcall", __func__);
2174 error = igmp_change_state(inm);
2175 IN_MULTI_LIST_UNLOCK();
2176 if (error) {
2177 CTR1(KTR_IGMPV3, "%s: failed igmp downcall",
2178 __func__);
2179 imf_rollback(imf);
2180 imf_reap(imf);
2181 goto out_inp_locked;
2182 }
2183 }
2184
2185 imf_commit(imf);
2186 imf = NULL;
2187
2188 out_inp_locked:
2189 INP_WUNLOCK(inp);
2190 out_inp_unlocked:
2191 IN_MULTI_UNLOCK();
2192
2193 if (is_new && imf) {
2194 if (imf->imf_inm != NULL) {
2195 IN_MULTI_LIST_LOCK();
2196 IF_ADDR_WLOCK(ifp);
2197 inm_release_deferred(imf->imf_inm);
2198 IF_ADDR_WUNLOCK(ifp);
2199 IN_MULTI_LIST_UNLOCK();
2200 }
2201 ip_mfilter_free(imf);
2202 }
2203 if_rele(ifp);
2204 return (error);
2205 }
2206
2207 /*
2208 * Leave an IPv4 multicast group on an inpcb, possibly with a source.
2209 */
2210 int
inp_leave_group(struct inpcb * inp,struct sockopt * sopt)2211 inp_leave_group(struct inpcb *inp, struct sockopt *sopt)
2212 {
2213 struct epoch_tracker et;
2214 struct group_source_req gsr;
2215 struct ip_mreq_source mreqs;
2216 sockunion_t *gsa, *ssa;
2217 struct ifnet *ifp;
2218 struct in_mfilter *imf;
2219 struct ip_moptions *imo;
2220 struct in_msource *ims;
2221 struct in_multi *inm;
2222 int error;
2223 bool is_final;
2224
2225 ifp = NULL;
2226 error = 0;
2227 is_final = true;
2228
2229 memset(&gsr, 0, sizeof(struct group_source_req));
2230 gsa = (sockunion_t *)&gsr.gsr_group;
2231 gsa->ss.ss_family = AF_UNSPEC;
2232 ssa = (sockunion_t *)&gsr.gsr_source;
2233 ssa->ss.ss_family = AF_UNSPEC;
2234
2235 switch (sopt->sopt_name) {
2236 case IP_DROP_MEMBERSHIP:
2237 case IP_DROP_SOURCE_MEMBERSHIP:
2238 if (sopt->sopt_name == IP_DROP_MEMBERSHIP) {
2239 error = sooptcopyin(sopt, &mreqs,
2240 sizeof(struct ip_mreq),
2241 sizeof(struct ip_mreq));
2242 /*
2243 * Swap interface and sourceaddr arguments,
2244 * as ip_mreq and ip_mreq_source are laid
2245 * out differently.
2246 */
2247 mreqs.imr_interface = mreqs.imr_sourceaddr;
2248 mreqs.imr_sourceaddr.s_addr = INADDR_ANY;
2249 } else if (sopt->sopt_name == IP_DROP_SOURCE_MEMBERSHIP) {
2250 error = sooptcopyin(sopt, &mreqs,
2251 sizeof(struct ip_mreq_source),
2252 sizeof(struct ip_mreq_source));
2253 }
2254 if (error)
2255 return (error);
2256
2257 gsa->sin.sin_family = AF_INET;
2258 gsa->sin.sin_len = sizeof(struct sockaddr_in);
2259 gsa->sin.sin_addr = mreqs.imr_multiaddr;
2260
2261 if (sopt->sopt_name == IP_DROP_SOURCE_MEMBERSHIP) {
2262 ssa->sin.sin_family = AF_INET;
2263 ssa->sin.sin_len = sizeof(struct sockaddr_in);
2264 ssa->sin.sin_addr = mreqs.imr_sourceaddr;
2265 }
2266
2267 /*
2268 * Attempt to look up hinted ifp from interface address.
2269 * Fallthrough with null ifp iff lookup fails, to
2270 * preserve 4.4BSD mcast API idempotence.
2271 * XXX NOTE WELL: The RFC 3678 API is preferred because
2272 * using an IPv4 address as a key is racy.
2273 */
2274 if (!in_nullhost(mreqs.imr_interface)) {
2275 NET_EPOCH_ENTER(et);
2276 INADDR_TO_IFP(mreqs.imr_interface, ifp);
2277 /* XXXGL ifref? */
2278 NET_EPOCH_EXIT(et);
2279 }
2280 CTR3(KTR_IGMPV3, "%s: imr_interface = 0x%08x, ifp = %p",
2281 __func__, ntohl(mreqs.imr_interface.s_addr), ifp);
2282
2283 break;
2284
2285 case MCAST_LEAVE_GROUP:
2286 case MCAST_LEAVE_SOURCE_GROUP:
2287 if (sopt->sopt_name == MCAST_LEAVE_GROUP) {
2288 error = sooptcopyin(sopt, &gsr,
2289 sizeof(struct group_req),
2290 sizeof(struct group_req));
2291 } else if (sopt->sopt_name == MCAST_LEAVE_SOURCE_GROUP) {
2292 error = sooptcopyin(sopt, &gsr,
2293 sizeof(struct group_source_req),
2294 sizeof(struct group_source_req));
2295 }
2296 if (error)
2297 return (error);
2298
2299 if (gsa->sin.sin_family != AF_INET ||
2300 gsa->sin.sin_len != sizeof(struct sockaddr_in))
2301 return (EINVAL);
2302
2303 if (sopt->sopt_name == MCAST_LEAVE_SOURCE_GROUP) {
2304 if (ssa->sin.sin_family != AF_INET ||
2305 ssa->sin.sin_len != sizeof(struct sockaddr_in))
2306 return (EINVAL);
2307 }
2308
2309 NET_EPOCH_ENTER(et);
2310 ifp = ifnet_byindex(gsr.gsr_interface);
2311 NET_EPOCH_EXIT(et); /* XXXGL: unsafe ifp */
2312 if (ifp == NULL)
2313 return (EADDRNOTAVAIL);
2314 break;
2315
2316 default:
2317 CTR2(KTR_IGMPV3, "%s: unknown sopt_name %d",
2318 __func__, sopt->sopt_name);
2319 return (EOPNOTSUPP);
2320 break;
2321 }
2322
2323 if (!IN_MULTICAST(ntohl(gsa->sin.sin_addr.s_addr)))
2324 return (EINVAL);
2325
2326 IN_MULTI_LOCK();
2327
2328 /*
2329 * Find the membership in the membership list.
2330 */
2331 imo = inp_findmoptions(inp);
2332 imf = imo_match_group(imo, ifp, &gsa->sa);
2333 if (imf == NULL) {
2334 error = EADDRNOTAVAIL;
2335 goto out_inp_locked;
2336 }
2337 inm = imf->imf_inm;
2338
2339 if (ssa->ss.ss_family != AF_UNSPEC)
2340 is_final = false;
2341
2342 /*
2343 * Begin state merge transaction at socket layer.
2344 */
2345 INP_WLOCK_ASSERT(inp);
2346
2347 /*
2348 * If we were instructed only to leave a given source, do so.
2349 * MCAST_LEAVE_SOURCE_GROUP is only valid for inclusive memberships.
2350 */
2351 if (is_final) {
2352 ip_mfilter_remove(&imo->imo_head, imf);
2353 imf_leave(imf);
2354
2355 /*
2356 * Give up the multicast address record to which
2357 * the membership points.
2358 */
2359 (void) in_leavegroup_locked(imf->imf_inm, imf);
2360 } else {
2361 if (imf->imf_st[0] == MCAST_EXCLUDE) {
2362 error = EADDRNOTAVAIL;
2363 goto out_inp_locked;
2364 }
2365 ims = imo_match_source(imf, &ssa->sa);
2366 if (ims == NULL) {
2367 CTR3(KTR_IGMPV3, "%s: source 0x%08x %spresent",
2368 __func__, ntohl(ssa->sin.sin_addr.s_addr), "not ");
2369 error = EADDRNOTAVAIL;
2370 goto out_inp_locked;
2371 }
2372 CTR2(KTR_IGMPV3, "%s: %s source", __func__, "block");
2373 error = imf_prune(imf, &ssa->sin);
2374 if (error) {
2375 CTR1(KTR_IGMPV3, "%s: merge imf state failed",
2376 __func__);
2377 goto out_inp_locked;
2378 }
2379 }
2380
2381 /*
2382 * Begin state merge transaction at IGMP layer.
2383 */
2384 if (!is_final) {
2385 CTR1(KTR_IGMPV3, "%s: merge inm state", __func__);
2386 IN_MULTI_LIST_LOCK();
2387 error = inm_merge(inm, imf);
2388 if (error) {
2389 CTR1(KTR_IGMPV3, "%s: failed to merge inm state",
2390 __func__);
2391 IN_MULTI_LIST_UNLOCK();
2392 imf_rollback(imf);
2393 imf_reap(imf);
2394 goto out_inp_locked;
2395 }
2396
2397 CTR1(KTR_IGMPV3, "%s: doing igmp downcall", __func__);
2398 error = igmp_change_state(inm);
2399 IN_MULTI_LIST_UNLOCK();
2400 if (error) {
2401 CTR1(KTR_IGMPV3, "%s: failed igmp downcall",
2402 __func__);
2403 imf_rollback(imf);
2404 imf_reap(imf);
2405 goto out_inp_locked;
2406 }
2407 }
2408 imf_commit(imf);
2409 imf_reap(imf);
2410
2411 out_inp_locked:
2412 INP_WUNLOCK(inp);
2413
2414 if (is_final && imf)
2415 ip_mfilter_free(imf);
2416
2417 IN_MULTI_UNLOCK();
2418 return (error);
2419 }
2420
2421 /*
2422 * Select the interface for transmitting IPv4 multicast datagrams.
2423 *
2424 * Either an instance of struct in_addr or an instance of struct ip_mreqn
2425 * may be passed to this socket option. An address of INADDR_ANY or an
2426 * interface index of 0 is used to remove a previous selection.
2427 * When no interface is selected, one is chosen for every send.
2428 */
2429 static int
inp_set_multicast_if(struct inpcb * inp,struct sockopt * sopt)2430 inp_set_multicast_if(struct inpcb *inp, struct sockopt *sopt)
2431 {
2432 struct in_addr addr;
2433 struct ip_mreqn mreqn;
2434 struct ifnet *ifp;
2435 struct ip_moptions *imo;
2436 int error;
2437
2438 if (sopt->sopt_valsize == sizeof(struct ip_mreqn)) {
2439 /*
2440 * An interface index was specified using the
2441 * Linux-derived ip_mreqn structure.
2442 */
2443 error = sooptcopyin(sopt, &mreqn, sizeof(struct ip_mreqn),
2444 sizeof(struct ip_mreqn));
2445 if (error)
2446 return (error);
2447
2448 if (mreqn.imr_ifindex < 0)
2449 return (EINVAL);
2450
2451 if (mreqn.imr_ifindex == 0) {
2452 ifp = NULL;
2453 } else {
2454 struct epoch_tracker et;
2455
2456 NET_EPOCH_ENTER(et);
2457 ifp = ifnet_byindex(mreqn.imr_ifindex);
2458 NET_EPOCH_EXIT(et); /* XXXGL: unsafe ifp */
2459 if (ifp == NULL)
2460 return (EADDRNOTAVAIL);
2461 }
2462 } else {
2463 /*
2464 * An interface was specified by IPv4 address.
2465 * This is the traditional BSD usage.
2466 */
2467 error = sooptcopyin(sopt, &addr, sizeof(struct in_addr),
2468 sizeof(struct in_addr));
2469 if (error)
2470 return (error);
2471 if (in_nullhost(addr)) {
2472 ifp = NULL;
2473 } else {
2474 struct epoch_tracker et;
2475
2476 NET_EPOCH_ENTER(et);
2477 INADDR_TO_IFP(addr, ifp);
2478 /* XXXGL ifref? */
2479 NET_EPOCH_EXIT(et);
2480 if (ifp == NULL)
2481 return (EADDRNOTAVAIL);
2482 }
2483 CTR3(KTR_IGMPV3, "%s: ifp = %p, addr = 0x%08x", __func__, ifp,
2484 ntohl(addr.s_addr));
2485 }
2486
2487 /* Reject interfaces which do not support multicast. */
2488 if (ifp != NULL && (ifp->if_flags & IFF_MULTICAST) == 0)
2489 return (EOPNOTSUPP);
2490
2491 imo = inp_findmoptions(inp);
2492 imo->imo_multicast_ifp = ifp;
2493 imo->imo_multicast_addr.s_addr = INADDR_ANY;
2494 INP_WUNLOCK(inp);
2495
2496 return (0);
2497 }
2498
2499 /*
2500 * Atomically set source filters on a socket for an IPv4 multicast group.
2501 */
2502 static int
inp_set_source_filters(struct inpcb * inp,struct sockopt * sopt)2503 inp_set_source_filters(struct inpcb *inp, struct sockopt *sopt)
2504 {
2505 struct epoch_tracker et;
2506 struct __msfilterreq msfr;
2507 struct sockaddr_storage *kss;
2508 sockunion_t *gsa;
2509 struct ifnet *ifp;
2510 struct in_mfilter *imf;
2511 struct ip_moptions *imo;
2512 struct in_multi *inm;
2513 int error;
2514
2515 error = sooptcopyin(sopt, &msfr, sizeof(struct __msfilterreq),
2516 sizeof(struct __msfilterreq));
2517 if (error)
2518 return (error);
2519
2520 if ((msfr.msfr_fmode != MCAST_EXCLUDE &&
2521 msfr.msfr_fmode != MCAST_INCLUDE))
2522 return (EINVAL);
2523
2524 if (msfr.msfr_group.ss_family != AF_INET ||
2525 msfr.msfr_group.ss_len != sizeof(struct sockaddr_in))
2526 return (EINVAL);
2527
2528 gsa = (sockunion_t *)&msfr.msfr_group;
2529 if (!IN_MULTICAST(ntohl(gsa->sin.sin_addr.s_addr)))
2530 return (EINVAL);
2531
2532 if (msfr.msfr_nsrcs > in_mcast_maxsocksrc)
2533 return (ENOBUFS);
2534 kss = mallocarray(msfr.msfr_nsrcs, sizeof(struct sockaddr_storage),
2535 M_TEMP, M_WAITOK);
2536 error = copyin(msfr.msfr_srcs, kss,
2537 sizeof(struct sockaddr_storage) * msfr.msfr_nsrcs);
2538 if (error)
2539 goto out_inp_unlocked;
2540
2541 gsa->sin.sin_port = 0; /* ignore port */
2542
2543 NET_EPOCH_ENTER(et);
2544 ifp = ifnet_byindex(msfr.msfr_ifindex);
2545 NET_EPOCH_EXIT(et); /* XXXGL: unsafe ifp */
2546 if (ifp == NULL) {
2547 error = EADDRNOTAVAIL;
2548 goto out_inp_unlocked;
2549 }
2550
2551 IN_MULTI_LOCK();
2552
2553 /*
2554 * Take the INP write lock.
2555 * Check if this socket is a member of this group.
2556 */
2557 imo = inp_findmoptions(inp);
2558 imf = imo_match_group(imo, ifp, &gsa->sa);
2559 if (imf == NULL) {
2560 error = EADDRNOTAVAIL;
2561 goto out_inp_locked;
2562 }
2563 inm = imf->imf_inm;
2564
2565 /*
2566 * Begin state merge transaction at socket layer.
2567 */
2568 INP_WLOCK_ASSERT(inp);
2569
2570 imf->imf_st[1] = msfr.msfr_fmode;
2571
2572 /*
2573 * Apply any new source filters, if present.
2574 * Make a copy of the user-space source vector so
2575 * that we may copy them with a single copyin. This
2576 * allows us to deal with page faults up-front.
2577 */
2578 if (msfr.msfr_nsrcs > 0) {
2579 struct in_msource *lims;
2580 struct sockaddr_in *psin;
2581 struct sockaddr_storage *pkss;
2582 int i;
2583
2584 /*
2585 * Mark all source filters as UNDEFINED at t1.
2586 * Restore new group filter mode, as imf_leave()
2587 * will set it to INCLUDE.
2588 */
2589 imf_leave(imf);
2590 imf->imf_st[1] = msfr.msfr_fmode;
2591
2592 /*
2593 * Update socket layer filters at t1, lazy-allocating
2594 * new entries. This saves a bunch of memory at the
2595 * cost of one RB_FIND() per source entry; duplicate
2596 * entries in the msfr_nsrcs vector are ignored.
2597 * If we encounter an error, rollback transaction.
2598 *
2599 * XXX This too could be replaced with a set-symmetric
2600 * difference like loop to avoid walking from root
2601 * every time, as the key space is common.
2602 */
2603 for (i = 0, pkss = kss; i < msfr.msfr_nsrcs; i++, pkss++) {
2604 psin = (struct sockaddr_in *)pkss;
2605 if (psin->sin_family != AF_INET) {
2606 error = EAFNOSUPPORT;
2607 break;
2608 }
2609 if (psin->sin_len != sizeof(struct sockaddr_in)) {
2610 error = EINVAL;
2611 break;
2612 }
2613 error = imf_get_source(imf, psin, &lims);
2614 if (error)
2615 break;
2616 lims->imsl_st[1] = imf->imf_st[1];
2617 }
2618 }
2619
2620 if (error)
2621 goto out_imf_rollback;
2622
2623 INP_WLOCK_ASSERT(inp);
2624
2625 /*
2626 * Begin state merge transaction at IGMP layer.
2627 */
2628 CTR1(KTR_IGMPV3, "%s: merge inm state", __func__);
2629 IN_MULTI_LIST_LOCK();
2630 error = inm_merge(inm, imf);
2631 if (error) {
2632 CTR1(KTR_IGMPV3, "%s: failed to merge inm state", __func__);
2633 IN_MULTI_LIST_UNLOCK();
2634 goto out_imf_rollback;
2635 }
2636
2637 CTR1(KTR_IGMPV3, "%s: doing igmp downcall", __func__);
2638 error = igmp_change_state(inm);
2639 IN_MULTI_LIST_UNLOCK();
2640 if (error)
2641 CTR1(KTR_IGMPV3, "%s: failed igmp downcall", __func__);
2642
2643 out_imf_rollback:
2644 if (error)
2645 imf_rollback(imf);
2646 else
2647 imf_commit(imf);
2648
2649 imf_reap(imf);
2650
2651 out_inp_locked:
2652 INP_WUNLOCK(inp);
2653 IN_MULTI_UNLOCK();
2654 out_inp_unlocked:
2655 free(kss, M_TEMP);
2656 return (error);
2657 }
2658
2659 /*
2660 * Set the IP multicast options in response to user setsockopt().
2661 *
2662 * Many of the socket options handled in this function duplicate the
2663 * functionality of socket options in the regular unicast API. However,
2664 * it is not possible to merge the duplicate code, because the idempotence
2665 * of the IPv4 multicast part of the BSD Sockets API must be preserved;
2666 * the effects of these options must be treated as separate and distinct.
2667 *
2668 * SMPng: XXX: Unlocked read of inp_socket believed OK.
2669 * FUTURE: The IP_MULTICAST_VIF option may be eliminated if MROUTING
2670 * is refactored to no longer use vifs.
2671 */
2672 int
inp_setmoptions(struct inpcb * inp,struct sockopt * sopt)2673 inp_setmoptions(struct inpcb *inp, struct sockopt *sopt)
2674 {
2675 struct ip_moptions *imo;
2676 int error;
2677
2678 error = 0;
2679
2680 /* If socket is neither of type SOCK_RAW or SOCK_DGRAM, reject it. */
2681 if (inp->inp_socket->so_proto->pr_type != SOCK_RAW &&
2682 inp->inp_socket->so_proto->pr_type != SOCK_DGRAM)
2683 return (EOPNOTSUPP);
2684
2685 switch (sopt->sopt_name) {
2686 case IP_MULTICAST_VIF: {
2687 int vifi;
2688 /*
2689 * Select a multicast VIF for transmission.
2690 * Only useful if multicast forwarding is active.
2691 */
2692 if (legal_vif_num == NULL) {
2693 error = EOPNOTSUPP;
2694 break;
2695 }
2696 error = sooptcopyin(sopt, &vifi, sizeof(int), sizeof(int));
2697 if (error)
2698 break;
2699 if (!legal_vif_num(inp->inp_socket->so_fibnum, vifi) &&
2700 vifi != -1) {
2701 error = EINVAL;
2702 break;
2703 }
2704 imo = inp_findmoptions(inp);
2705 imo->imo_multicast_vif = vifi;
2706 INP_WUNLOCK(inp);
2707 break;
2708 }
2709
2710 case IP_MULTICAST_IF:
2711 error = inp_set_multicast_if(inp, sopt);
2712 break;
2713
2714 case IP_MULTICAST_TTL: {
2715 u_char ttl;
2716
2717 /*
2718 * Set the IP time-to-live for outgoing multicast packets.
2719 * The original multicast API required a char argument,
2720 * which is inconsistent with the rest of the socket API.
2721 * We allow either a char or an int.
2722 */
2723 if (sopt->sopt_valsize == sizeof(u_char)) {
2724 error = sooptcopyin(sopt, &ttl, sizeof(u_char),
2725 sizeof(u_char));
2726 if (error)
2727 break;
2728 } else {
2729 u_int ittl;
2730
2731 error = sooptcopyin(sopt, &ittl, sizeof(u_int),
2732 sizeof(u_int));
2733 if (error)
2734 break;
2735 if (ittl > 255) {
2736 error = EINVAL;
2737 break;
2738 }
2739 ttl = (u_char)ittl;
2740 }
2741 imo = inp_findmoptions(inp);
2742 imo->imo_multicast_ttl = ttl;
2743 INP_WUNLOCK(inp);
2744 break;
2745 }
2746
2747 case IP_MULTICAST_LOOP: {
2748 u_char loop;
2749
2750 /*
2751 * Set the loopback flag for outgoing multicast packets.
2752 * Must be zero or one. The original multicast API required a
2753 * char argument, which is inconsistent with the rest
2754 * of the socket API. We allow either a char or an int.
2755 */
2756 if (sopt->sopt_valsize == sizeof(u_char)) {
2757 error = sooptcopyin(sopt, &loop, sizeof(u_char),
2758 sizeof(u_char));
2759 if (error)
2760 break;
2761 } else {
2762 u_int iloop;
2763
2764 error = sooptcopyin(sopt, &iloop, sizeof(u_int),
2765 sizeof(u_int));
2766 if (error)
2767 break;
2768 loop = (u_char)iloop;
2769 }
2770 imo = inp_findmoptions(inp);
2771 imo->imo_multicast_loop = !!loop;
2772 INP_WUNLOCK(inp);
2773 break;
2774 }
2775
2776 case IP_ADD_MEMBERSHIP:
2777 case IP_ADD_SOURCE_MEMBERSHIP:
2778 case MCAST_JOIN_GROUP:
2779 case MCAST_JOIN_SOURCE_GROUP:
2780 error = inp_join_group(inp, sopt);
2781 break;
2782
2783 case IP_DROP_MEMBERSHIP:
2784 case IP_DROP_SOURCE_MEMBERSHIP:
2785 case MCAST_LEAVE_GROUP:
2786 case MCAST_LEAVE_SOURCE_GROUP:
2787 error = inp_leave_group(inp, sopt);
2788 break;
2789
2790 case IP_BLOCK_SOURCE:
2791 case IP_UNBLOCK_SOURCE:
2792 case MCAST_BLOCK_SOURCE:
2793 case MCAST_UNBLOCK_SOURCE:
2794 error = inp_block_unblock_source(inp, sopt);
2795 break;
2796
2797 case IP_MSFILTER:
2798 error = inp_set_source_filters(inp, sopt);
2799 break;
2800
2801 default:
2802 error = EOPNOTSUPP;
2803 break;
2804 }
2805
2806 INP_UNLOCK_ASSERT(inp);
2807
2808 return (error);
2809 }
2810
2811 /*
2812 * Expose IGMP's multicast filter mode and source list(s) to userland,
2813 * keyed by (ifindex, group).
2814 * The filter mode is written out as a uint32_t, followed by
2815 * 0..n of struct in_addr.
2816 * For use by ifmcstat(8).
2817 * SMPng: NOTE: unlocked read of ifindex space.
2818 */
2819 static int
sysctl_ip_mcast_filters(SYSCTL_HANDLER_ARGS)2820 sysctl_ip_mcast_filters(SYSCTL_HANDLER_ARGS)
2821 {
2822 struct in_addr src, group;
2823 struct epoch_tracker et;
2824 struct ifnet *ifp;
2825 struct ifmultiaddr *ifma;
2826 struct in_multi *inm;
2827 struct ip_msource *ims;
2828 int *name;
2829 int retval;
2830 u_int namelen;
2831 uint32_t fmode, ifindex;
2832
2833 name = (int *)arg1;
2834 namelen = arg2;
2835
2836 if (req->newptr != NULL)
2837 return (EPERM);
2838
2839 if (namelen != 2)
2840 return (EINVAL);
2841
2842 group.s_addr = name[1];
2843 if (!IN_MULTICAST(ntohl(group.s_addr))) {
2844 CTR2(KTR_IGMPV3, "%s: group 0x%08x is not multicast",
2845 __func__, ntohl(group.s_addr));
2846 return (EINVAL);
2847 }
2848
2849 retval = sysctl_wire_old_buffer(req,
2850 sizeof(uint32_t) + (in_mcast_maxgrpsrc * sizeof(struct in_addr)));
2851 if (retval)
2852 return (retval);
2853
2854 ifindex = name[0];
2855 NET_EPOCH_ENTER(et);
2856 ifp = ifnet_byindex(ifindex);
2857 if (ifp == NULL) {
2858 NET_EPOCH_EXIT(et);
2859 CTR2(KTR_IGMPV3, "%s: no ifp for ifindex %u",
2860 __func__, ifindex);
2861 return (ENOENT);
2862 }
2863
2864 IN_MULTI_LIST_LOCK();
2865
2866 CK_STAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
2867 inm = inm_ifmultiaddr_get_inm(ifma);
2868 if (inm == NULL)
2869 continue;
2870 if (!in_hosteq(inm->inm_addr, group))
2871 continue;
2872 fmode = inm->inm_st[1].iss_fmode;
2873 retval = SYSCTL_OUT(req, &fmode, sizeof(uint32_t));
2874 if (retval != 0)
2875 break;
2876 RB_FOREACH(ims, ip_msource_tree, &inm->inm_srcs) {
2877 CTR2(KTR_IGMPV3, "%s: visit node 0x%08x", __func__,
2878 ims->ims_haddr);
2879 /*
2880 * Only copy-out sources which are in-mode.
2881 */
2882 if (fmode != ims_get_mode(inm, ims, 1)) {
2883 CTR1(KTR_IGMPV3, "%s: skip non-in-mode",
2884 __func__);
2885 continue;
2886 }
2887 src.s_addr = htonl(ims->ims_haddr);
2888 retval = SYSCTL_OUT(req, &src, sizeof(struct in_addr));
2889 if (retval != 0)
2890 break;
2891 }
2892 }
2893
2894 IN_MULTI_LIST_UNLOCK();
2895 NET_EPOCH_EXIT(et);
2896
2897 return (retval);
2898 }
2899
2900 #if defined(KTR) && (KTR_COMPILE & KTR_IGMPV3)
2901
2902 static const char *inm_modestrs[] = {
2903 [MCAST_UNDEFINED] = "un",
2904 [MCAST_INCLUDE] = "in",
2905 [MCAST_EXCLUDE] = "ex",
2906 };
2907 _Static_assert(MCAST_UNDEFINED == 0 &&
2908 MCAST_EXCLUDE + 1 == nitems(inm_modestrs),
2909 "inm_modestrs: no longer matches #defines");
2910
2911 static const char *
inm_mode_str(const int mode)2912 inm_mode_str(const int mode)
2913 {
2914
2915 if (mode >= MCAST_UNDEFINED && mode <= MCAST_EXCLUDE)
2916 return (inm_modestrs[mode]);
2917 return ("??");
2918 }
2919
2920 static const char *inm_statestrs[] = {
2921 [IGMP_NOT_MEMBER] = "not-member",
2922 [IGMP_SILENT_MEMBER] = "silent",
2923 [IGMP_REPORTING_MEMBER] = "reporting",
2924 [IGMP_IDLE_MEMBER] = "idle",
2925 [IGMP_LAZY_MEMBER] = "lazy",
2926 [IGMP_SLEEPING_MEMBER] = "sleeping",
2927 [IGMP_AWAKENING_MEMBER] = "awakening",
2928 [IGMP_G_QUERY_PENDING_MEMBER] = "query-pending",
2929 [IGMP_SG_QUERY_PENDING_MEMBER] = "sg-query-pending",
2930 [IGMP_LEAVING_MEMBER] = "leaving",
2931 };
2932 _Static_assert(IGMP_NOT_MEMBER == 0 &&
2933 IGMP_LEAVING_MEMBER + 1 == nitems(inm_statestrs),
2934 "inm_statetrs: no longer matches #defines");
2935
2936 static const char *
inm_state_str(const int state)2937 inm_state_str(const int state)
2938 {
2939
2940 if (state >= IGMP_NOT_MEMBER && state <= IGMP_LEAVING_MEMBER)
2941 return (inm_statestrs[state]);
2942 return ("??");
2943 }
2944
2945 /*
2946 * Dump an in_multi structure to the console.
2947 */
2948 void
inm_print(const struct in_multi * inm)2949 inm_print(const struct in_multi *inm)
2950 {
2951 int t;
2952 char addrbuf[INET_ADDRSTRLEN];
2953
2954 if ((ktr_mask & KTR_IGMPV3) == 0)
2955 return;
2956
2957 printf("%s: --- begin inm %p ---\n", __func__, inm);
2958 printf("addr %s ifp %p(%s) ifma %p\n",
2959 inet_ntoa_r(inm->inm_addr, addrbuf),
2960 inm->inm_ifp,
2961 inm->inm_ifp->if_xname,
2962 inm->inm_ifma);
2963 printf("timer %u state %s refcount %u scq.len %u\n",
2964 inm->inm_timer,
2965 inm_state_str(inm->inm_state),
2966 inm->inm_refcount,
2967 inm->inm_scq.mq_len);
2968 printf("igi %p nsrc %lu sctimer %u scrv %u\n",
2969 inm->inm_igi,
2970 inm->inm_nsrc,
2971 inm->inm_sctimer,
2972 inm->inm_scrv);
2973 for (t = 0; t < 2; t++) {
2974 printf("t%d: fmode %s asm %u ex %u in %u rec %u\n", t,
2975 inm_mode_str(inm->inm_st[t].iss_fmode),
2976 inm->inm_st[t].iss_asm,
2977 inm->inm_st[t].iss_ex,
2978 inm->inm_st[t].iss_in,
2979 inm->inm_st[t].iss_rec);
2980 }
2981 printf("%s: --- end inm %p ---\n", __func__, inm);
2982 }
2983
2984 #else /* !KTR || !(KTR_COMPILE & KTR_IGMPV3) */
2985
2986 void
inm_print(const struct in_multi * inm)2987 inm_print(const struct in_multi *inm)
2988 {
2989
2990 }
2991
2992 #endif /* KTR && (KTR_COMPILE & KTR_IGMPV3) */
2993
2994 RB_GENERATE(ip_msource_tree, ip_msource, ims_link, ip_msource_cmp);
2995