svn commit: r353560 - stable/12/sys/netinet6

Mark Johnston markj at FreeBSD.org
Tue Oct 15 14:29:30 UTC 2019


Author: markj
Date: Tue Oct 15 14:29:30 2019
New Revision: 353560
URL: https://svnweb.freebsd.org/changeset/base/353560

Log:
  Revert r353552 for now.
  
  ip6_ctloutput() is missing some requisite changes.
  
  Reported by:	Jenkins

Modified:
  stable/12/sys/netinet6/ip6_output.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/netinet6/ip6_output.c
==============================================================================
--- stable/12/sys/netinet6/ip6_output.c	Tue Oct 15 14:29:18 2019	(r353559)
+++ stable/12/sys/netinet6/ip6_output.c	Tue Oct 15 14:29:30 2019	(r353560)
@@ -1717,24 +1717,21 @@ do {									\
 #endif
 
 				case IPV6_V6ONLY:
-					INP_WLOCK(inp);
+					/*
+					 * make setsockopt(IPV6_V6ONLY)
+					 * available only prior to bind(2).
+					 * see ipng mailing list, Jun 22 2001.
+					 */
 					if (in6p->inp_lport ||
 					    !IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {
-						/*
-						 * The socket is already bound.
-						 */
-						INP_WUNLOCK(inp);
 						error = EINVAL;
 						break;
 					}
-					if (optval) {
-						inp->inp_flags |= IN6P_IPV6_V6ONLY;
+					OPTSET(IN6P_IPV6_V6ONLY);
+					if (optval)
 						in6p->inp_vflag &= ~INP_IPV4;
-					} else {
-						inp->inp_flags &= ~IN6P_IPV6_V6ONLY;
+					else
 						in6p->inp_vflag |= INP_IPV4;
-					}
-					INP_WUNLOCK(inp);
 					break;
 				case IPV6_RECVTCLASS:
 					/* cannot mix with RFC2292 XXX */


More information about the svn-src-stable-12 mailing list