Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Oct 2017 09:02:36 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r324353 - head/sys/kern
Message-ID:  <201710060902.v9692aMa063731@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Fri Oct  6 09:02:36 2017
New Revision: 324353
URL: https://svnweb.freebsd.org/changeset/base/324353

Log:
  vfs_export_lookup: Fix r324054
  
  When using the default address list nam is still valid, the code in
  r324054 assumed that is was NULL.
  
  Reported by:	Guy Yur <guyyur@gmail.com>
  Tested by:	Guy Yur <guyyur@gmail.com>

Modified:
  head/sys/kern/vfs_export.c

Modified: head/sys/kern/vfs_export.c
==============================================================================
--- head/sys/kern/vfs_export.c	Fri Oct  6 08:49:15 2017	(r324352)
+++ head/sys/kern/vfs_export.c	Fri Oct  6 09:02:36 2017	(r324353)
@@ -459,34 +459,33 @@ vfs_export_lookup(struct mount *mp, struct sockaddr *n
 		return (NULL);
 
 	/*
-	 * If no address is provided, use the default if it exists.
+	 * Lookup in the export list
 	 */
-	if (nam == NULL) {
-		if ((mp->mnt_flag & MNT_DEFEXPORTED) != 0)
-			return (&nep->ne_defexported);
-		return (NULL);
+	if (nam != NULL) {
+		saddr = nam;
+		rnh = NULL;
+		switch (saddr->sa_family) {
+		case AF_INET:
+			rnh = nep->ne4;
+			break;
+		case AF_INET6:
+			rnh = nep->ne6;
+			break;
+		}
+		if (rnh != NULL) {
+			RADIX_NODE_HEAD_RLOCK(rnh);
+			np = (struct netcred *) (*rnh->rnh_matchaddr)(saddr, &rnh->rh);
+			RADIX_NODE_HEAD_RUNLOCK(rnh);
+			if (np != NULL && (np->netc_rnodes->rn_flags & RNF_ROOT) != 0)
+				return (NULL);
+		}
 	}
 
 	/*
-	 * Lookup in the export list
+	 * If no address match, use the default if it exists.
 	 */
-	saddr = nam;
-	rnh = NULL;
-	switch (saddr->sa_family) {
-	case AF_INET:
-		rnh = nep->ne4;
-		break;
-	case AF_INET6:
-		rnh = nep->ne6;
-		break;
-	}
-	if (rnh != NULL) {
-		RADIX_NODE_HEAD_RLOCK(rnh);
-		np = (struct netcred *) (*rnh->rnh_matchaddr)(saddr, &rnh->rh);
-		RADIX_NODE_HEAD_RUNLOCK(rnh);
-		if (np != NULL && (np->netc_rnodes->rn_flags & RNF_ROOT) != 0)
-			return (NULL);
-	}
+	if (np == NULL && (mp->mnt_flag & MNT_DEFEXPORTED) != 0)
+		return (&nep->ne_defexported);
 
 	return (np);
 }



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