summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_shutdown.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2002-10-27 07:03:29 +0000
committerrwatson <rwatson@FreeBSD.org>2002-10-27 07:03:29 +0000
commitbe98961ae9a436687b5316053ddc75281a568984 (patch)
tree68db4a6fce87a1271d7012e61fc2ce77d4d94f2d /sys/kern/kern_shutdown.c
parent8cd9e638192b755dfb25a68d8cef5abe0c9e00be (diff)
downloadFreeBSD-src-be98961ae9a436687b5316053ddc75281a568984.zip
FreeBSD-src-be98961ae9a436687b5316053ddc75281a568984.tar.gz
Hook up mac_check_system_reboot(), a MAC Framework entry point that
permits MAC modules to augment system security decisions regarding the reboot() system call, if MAC is compiled into the kernel. Approved by: re Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'sys/kern/kern_shutdown.c')
-rw-r--r--sys/kern/kern_shutdown.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/sys/kern/kern_shutdown.c b/sys/kern/kern_shutdown.c
index 16eaae6..c89c8fd 100644
--- a/sys/kern/kern_shutdown.c
+++ b/sys/kern/kern_shutdown.c
@@ -43,6 +43,7 @@
#include "opt_ddb_trace.h"
#include "opt_ddb_unattended.h"
#include "opt_hw_wdog.h"
+#include "opt_mac.h"
#include "opt_panic.h"
#include "opt_show_busybufs.h"
@@ -56,6 +57,7 @@
#include <sys/eventhandler.h>
#include <sys/kernel.h>
#include <sys/kthread.h>
+#include <sys/mac.h>
#include <sys/malloc.h>
#include <sys/mount.h>
#include <sys/proc.h>
@@ -159,10 +161,17 @@ reboot(struct thread *td, struct reboot_args *uap)
{
int error;
- mtx_lock(&Giant);
- if ((error = suser(td)) == 0)
+ error = 0;
+#ifdef MAC
+ error = mac_check_system_reboot(td->td_ucred, uap->opt);
+#endif
+ if (error == 0)
+ error = suser(td);
+ if (error == 0) {
+ mtx_lock(&Giant);
boot(uap->opt);
- mtx_unlock(&Giant);
+ mtx_unlock(&Giant);
+ }
return (error);
}
OpenPOWER on IntegriCloud