Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Sep 2009 20:20:03 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-net@FreeBSD.org
Subject:   Re: kern/137164: commit references a PR
Message-ID:  <200909122020.n8CKK3nO009806@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/137164; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/137164: commit references a PR
Date: Sat, 12 Sep 2009 20:18:37 +0000 (UTC)

 Author: bms
 Date: Sat Sep 12 20:18:23 2009
 New Revision: 197135
 URL: http://svn.freebsd.org/changeset/base/197135
 
 Log:
   Don't allow joins w/o source on an existing group.
   This is almost always pilot error.
   
   We don't need to check for group filter UNDEFINED state at t1,
   because we only ever allocate filters with their groups, so we
   unconditionally reject such calls with EINVAL.
   Trying to change the active filter mode w/o going through IP_MSFILTER
   is also disallowed.
   
   Deals with the case described in PR 137164 upfront, cumulative
   with the fix in svn rev 197132 which only calls imo_match_source()
   if the source address family was not unspecified.
   
   PR:		137164
   MFC after:	5 days
 
 Modified:
   head/sys/netinet/in_mcast.c
 
 Modified: head/sys/netinet/in_mcast.c
 ==============================================================================
 --- head/sys/netinet/in_mcast.c	Sat Sep 12 20:03:45 2009	(r197134)
 +++ head/sys/netinet/in_mcast.c	Sat Sep 12 20:18:23 2009	(r197135)
 @@ -1982,15 +1982,18 @@ inp_join_group(struct inpcb *inp, struct
  			}
  		} else {
  			/*
 -			 * MCAST_JOIN_GROUP on an existing inclusive
 -			 * membership is an error; if you want to change
 -			 * filter mode, you must use the userland API
 -			 * setsourcefilter().
 +			 * MCAST_JOIN_GROUP alone, on any existing membership,
 +			 * is rejected, to stop the same inpcb tying up
 +			 * multiple refs to the in_multi.
 +			 * On an existing inclusive membership, this is also
 +			 * an error; if you want to change filter mode,
 +			 * you must use the userland API setsourcefilter().
 +			 * XXX We don't reject this for imf in UNDEFINED
 +			 * state at t1, because allocation of a filter
 +			 * is atomic with allocation of a membership.
  			 */
 -			if (imf->imf_st[1] == MCAST_INCLUDE) {
 -				error = EINVAL;
 -				goto out_inp_locked;
 -			}
 +			error = EINVAL;
 +			goto out_inp_locked;
  		}
  	}
  
 @@ -2025,6 +2028,9 @@ inp_join_group(struct inpcb *inp, struct
  	 * membership of the group. The in_multi may not have
  	 * been allocated yet if this is a new membership, however,
  	 * the in_mfilter slot will be allocated and must be initialized.
 +	 *
 +	 * Note: Grafting of exclusive mode filters doesn't happen
 +	 * in this path.
  	 */
  	if (ssa->ss.ss_family != AF_UNSPEC) {
  		/* Membership starts in IN mode */
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909122020.n8CKK3nO009806>