seccomp: swap hard-coded zeros to defined name
authorKees Cook <keescook@chromium.org>
Mon, 15 Jun 2015 22:29:16 +0000 (15:29 -0700)
committerKees Cook <keescook@chromium.org>
Wed, 15 Jul 2015 18:52:54 +0000 (11:52 -0700)
For clarity, if CONFIG_SECCOMP isn't defined, seccomp_mode() is returning
"disabled". This makes that more clear, along with another 0-use, and
results in no operational change.

Signed-off-by: Kees Cook <keescook@chromium.org>
include/linux/seccomp.h
kernel/seccomp.c

index a19ddac..f426503 100644 (file)
@@ -78,7 +78,7 @@ static inline long prctl_set_seccomp(unsigned long arg2, char __user *arg3)
 
 static inline int seccomp_mode(struct seccomp *s)
 {
-       return 0;
+       return SECCOMP_MODE_DISABLED;
 }
 #endif /* CONFIG_SECCOMP */
 
index 645e42d..383bd6c 100644 (file)
@@ -594,7 +594,7 @@ void secure_computing_strict(int this_syscall)
            unlikely(current->ptrace & PT_SUSPEND_SECCOMP))
                return;
 
-       if (mode == 0)
+       if (mode == SECCOMP_MODE_DISABLED)
                return;
        else if (mode == SECCOMP_MODE_STRICT)
                __secure_computing_strict(this_syscall);