svn commit: r244226 - head/sys/kern

Rick Macklem rmacklem at FreeBSD.org
Fri Dec 14 21:49:07 UTC 2012


Author: rmacklem
Date: Fri Dec 14 21:49:06 2012
New Revision: 244226
URL: http://svnweb.freebsd.org/changeset/base/244226

Log:
  The group list for a non-default export entry (a host/subnet one)
  was being copied from the wrong place. This patch fixes that.
  This could cause access failures for mapped users, when the group
  permissions were needed.
  
  PR:		147998
  Submitted by:	Christopher Key (cjk32 at cam.ac.uk)
  MFC after:	2 weeks

Modified:
  head/sys/kern/vfs_export.c

Modified: head/sys/kern/vfs_export.c
==============================================================================
--- head/sys/kern/vfs_export.c	Fri Dec 14 21:22:23 2012	(r244225)
+++ head/sys/kern/vfs_export.c	Fri Dec 14 21:49:06 2012	(r244226)
@@ -208,7 +208,7 @@ vfs_hang_addrlist(struct mount *mp, stru
 	np->netc_anon = crget();
 	np->netc_anon->cr_uid = argp->ex_anon.cr_uid;
 	crsetgroups(np->netc_anon, argp->ex_anon.cr_ngroups,
-	    np->netc_anon->cr_groups);
+	    argp->ex_anon.cr_groups);
 	np->netc_anon->cr_prison = &prison0;
 	prison_hold(np->netc_anon->cr_prison);
 	np->netc_numsecflavors = argp->ex_numsecflavors;


More information about the svn-src-head mailing list