svn commit: r184155 - in stable/7/sys: . security/mac_partition

Bjoern A. Zeeb bz at FreeBSD.org
Wed Oct 22 08:52:46 UTC 2008


Author: bz
Date: Wed Oct 22 08:52:45 2008
New Revision: 184155
URL: http://svn.freebsd.org/changeset/base/184155

Log:
  MFC: r183970
  
    Use the label from the socket credential rather than the
    solabel which was not set by the mac_partition policy.
  
  Approved by:	re (rwatson)

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/security/mac_partition/mac_partition.c

Modified: stable/7/sys/security/mac_partition/mac_partition.c
==============================================================================
--- stable/7/sys/security/mac_partition/mac_partition.c	Wed Oct 22 08:43:35 2008	(r184154)
+++ stable/7/sys/security/mac_partition/mac_partition.c	Wed Oct 22 08:52:45 2008	(r184155)
@@ -46,6 +46,7 @@
 #include <sys/priv.h>
 #include <sys/proc.h>
 #include <sys/sbuf.h>
+#include <sys/socketvar.h>
 #include <sys/systm.h>
 #include <sys/sysctl.h>
 
@@ -221,7 +222,7 @@ partition_check_socket_visible(struct uc
 {
 	int error;
 
-	error = label_on_label(cred->cr_label, solabel);
+	error = label_on_label(cred->cr_label, so->so_cred->cr_label);
 
 	return (error ? ENOENT : 0);
 }


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