summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_cap.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2001-11-02 15:22:32 +0000
committerrwatson <rwatson@FreeBSD.org>2001-11-02 15:22:32 +0000
commit6de51f4efde29514fc5e38bb21dbac54f3bbb965 (patch)
tree84564a6e3671795beec69e8887db211d9c820fd8 /sys/kern/kern_cap.c
parent25f3ce60105a1f164488faca541f53d4baeb8cdf (diff)
downloadFreeBSD-src-6de51f4efde29514fc5e38bb21dbac54f3bbb965.zip
FreeBSD-src-6de51f4efde29514fc5e38bb21dbac54f3bbb965.tar.gz
Merge from POSIX.1e Capabilities development tree:
o Reorder and synchronize #include's, including moving "opt_cap.h" to above system includes. o Introduce #ifdef'd kern.security.capabilities sysctl tree, including kern.security.capabilities.enabled, which defaults to 0. The rest of the file remains stubs for the time being. Obtained from: TrustedBSD Project
Diffstat (limited to 'sys/kern/kern_cap.c')
-rw-r--r--sys/kern/kern_cap.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/sys/kern/kern_cap.c b/sys/kern/kern_cap.c
index af0413a..13de616 100644
--- a/sys/kern/kern_cap.c
+++ b/sys/kern/kern_cap.c
@@ -38,20 +38,35 @@
* XXX: Currently just syscall stubs.
*/
+#include "opt_cap.h"
+
#include <sys/types.h>
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/sysent.h>
-#include <sys/capability.h>
#include <sys/acct.h>
+#include <sys/capability.h>
+#include <sys/extattr.h>
+#include <sys/jail.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
#include <sys/namei.h>
+#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/file.h>
#include <sys/sysctl.h>
-#include "opt_cap.h"
+#ifdef CAPABILITIES
+
+static int capabilities_enabled = 0;
+
+SYSCTL_NODE(_kern_security, OID_AUTO, capabilities, CTLFLAG_RW, 0,
+ "POSIX.1e Capabilities");
+SYSCTL_INT(_kern_security_capabilities, OID_AUTO, enabled, CTLFLAG_RW,
+ &capabilities_enabled, 0, "POSIX.1e Capabilities enabled");
+#endif
/*
* Syscall to allow a process to get it's currently capability set
OpenPOWER on IntegriCloud