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