Skip to content

Commit

Permalink
seccomp: extract check/assign mode helpers
Browse files Browse the repository at this point in the history
To support splitting mode 1 from mode 2, extract the mode checking and
assignment logic into common functions.

Signed-off-by: Kees Cook <[email protected]>
Reviewed-by: Oleg Nesterov <[email protected]>
Reviewed-by: Andy Lutomirski <[email protected]>
  • Loading branch information
kees committed Jul 18, 2014
1 parent d78ab02 commit 1f41b45
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions kernel/seccomp.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,23 @@ static u32 seccomp_run_filters(int syscall)
}
return ret;
}
#endif /* CONFIG_SECCOMP_FILTER */

static inline bool seccomp_may_assign_mode(unsigned long seccomp_mode)
{
if (current->seccomp.mode && current->seccomp.mode != seccomp_mode)
return false;

return true;
}

static inline void seccomp_assign_mode(unsigned long seccomp_mode)
{
current->seccomp.mode = seccomp_mode;
set_tsk_thread_flag(current, TIF_SECCOMP);
}

#ifdef CONFIG_SECCOMP_FILTER
/**
* seccomp_attach_filter: Attaches a seccomp filter to current.
* @fprog: BPF program to install
Expand Down Expand Up @@ -490,8 +506,7 @@ static long seccomp_set_mode(unsigned long seccomp_mode, char __user *filter)
{
long ret = -EINVAL;

if (current->seccomp.mode &&
current->seccomp.mode != seccomp_mode)
if (!seccomp_may_assign_mode(seccomp_mode))
goto out;

switch (seccomp_mode) {
Expand All @@ -512,8 +527,7 @@ static long seccomp_set_mode(unsigned long seccomp_mode, char __user *filter)
goto out;
}

current->seccomp.mode = seccomp_mode;
set_thread_flag(TIF_SECCOMP);
seccomp_assign_mode(seccomp_mode);
out:
return ret;
}
Expand Down

0 comments on commit 1f41b45

Please sign in to comment.