From owner-svn-src-all@FreeBSD.ORG Fri Oct 17 08:58:34 2008 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 391251065678; Fri, 17 Oct 2008 08:58:34 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 28EF98FC14; Fri, 17 Oct 2008 08:58:34 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id m9H8wY3w083302; Fri, 17 Oct 2008 08:58:34 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id m9H8wYCQ083301; Fri, 17 Oct 2008 08:58:34 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200810170858.m9H8wYCQ083301@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Fri, 17 Oct 2008 08:58:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r183970 - head/sys/security/mac_partition X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Oct 2008 08:58:34 -0000 Author: bz Date: Fri Oct 17 08:58:33 2008 New Revision: 183970 URL: http://svn.freebsd.org/changeset/base/183970 Log: Use the label from the socket credential rather than the solabel which was not set by the mac_partition policy. Spotted by: rwatson Reviewed by: rwatson MFC after: 3 days Modified: head/sys/security/mac_partition/mac_partition.c Modified: head/sys/security/mac_partition/mac_partition.c ============================================================================== --- head/sys/security/mac_partition/mac_partition.c Fri Oct 17 08:30:20 2008 (r183969) +++ head/sys/security/mac_partition/mac_partition.c Fri Oct 17 08:58:33 2008 (r183970) @@ -51,6 +51,7 @@ #include #include #include +#include #include #include @@ -248,7 +249,7 @@ partition_socket_check_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); }