Deleted Added
full compact
mac_seeotheruids.c (166830) mac_seeotheruids.c (166905)
1/*-
1/*-
2 * Copyright (c) 1999-2002 Robert N. M. Watson
2 * Copyright (c) 1999-2002, 2007 Robert N. M. Watson
3 * Copyright (c) 2001-2002 Networks Associates Technology, Inc.
4 * All rights reserved.
5 *
6 * This software was developed by Robert Watson for the TrustedBSD Project.
7 *
8 * This software was developed for the FreeBSD Project in part by Network
9 * Associates Laboratories, the Security Research Division of Network
10 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"),

--- 15 unchanged lines hidden (view full) ---

26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
3 * Copyright (c) 2001-2002 Networks Associates Technology, Inc.
4 * All rights reserved.
5 *
6 * This software was developed by Robert Watson for the TrustedBSD Project.
7 *
8 * This software was developed for the FreeBSD Project in part by Network
9 * Associates Laboratories, the Security Research Division of Network
10 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"),

--- 15 unchanged lines hidden (view full) ---

26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $FreeBSD: head/sys/security/mac_seeotheruids/mac_seeotheruids.c 166830 2007-02-19 13:25:17Z rwatson $
34 * $FreeBSD: head/sys/security/mac_seeotheruids/mac_seeotheruids.c 166905 2007-02-23 14:39:04Z rwatson $
35 */
36
37/*
38 * Developed by the TrustedBSD Project.
39 * Prevent processes owned by a particular uid from seeing various transient
40 * kernel objects associated with other uids.
41 */
42
35 */
36
37/*
38 * Developed by the TrustedBSD Project.
39 * Prevent processes owned by a particular uid from seeing various transient
40 * kernel objects associated with other uids.
41 */
42
43#include <sys/types.h>
44#include <sys/param.h>
43#include <sys/param.h>
45#include <sys/conf.h>
46#include <sys/kernel.h>
44#include <sys/kernel.h>
47#include <sys/mount.h>
45#include <sys/module.h>
48#include <sys/priv.h>
49#include <sys/proc.h>
50#include <sys/systm.h>
46#include <sys/priv.h>
47#include <sys/proc.h>
48#include <sys/systm.h>
51#include <sys/sysproto.h>
52#include <sys/sysent.h>
53#include <sys/vnode.h>
54#include <sys/file.h>
55#include <sys/socket.h>
56#include <sys/socketvar.h>
57#include <sys/sysctl.h>
58
49#include <sys/socketvar.h>
50#include <sys/sysctl.h>
51
59#include <net/bpfdesc.h>
60#include <net/if.h>
61#include <net/if_types.h>
62#include <net/if_var.h>
63
64#include <vm/vm.h>
65
66#include <security/mac/mac_policy.h>
67
68SYSCTL_DECL(_security_mac);
69
70SYSCTL_NODE(_security_mac, OID_AUTO, seeotheruids, CTLFLAG_RW, 0,
71 "TrustedBSD mac_seeotheruids policy controls");
72
73static int mac_seeotheruids_enabled = 1;

--- 111 unchanged lines hidden ---
52#include <security/mac/mac_policy.h>
53
54SYSCTL_DECL(_security_mac);
55
56SYSCTL_NODE(_security_mac, OID_AUTO, seeotheruids, CTLFLAG_RW, 0,
57 "TrustedBSD mac_seeotheruids policy controls");
58
59static int mac_seeotheruids_enabled = 1;

--- 111 unchanged lines hidden ---