Commit 26e811cd authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'seccomp-v4.14-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull seccomp fix from Kees Cook:
 "Fix refcounting bug in CRIU interface, noticed by Chris Salls (Oleg &
  Tycho)"

* tag 'seccomp-v4.14-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
  seccomp: fix the usage of get/put_seccomp_filter() in seccomp_get_filter()
parents 9cd6681c 66a733ea
...@@ -473,14 +473,19 @@ static long seccomp_attach_filter(unsigned int flags, ...@@ -473,14 +473,19 @@ static long seccomp_attach_filter(unsigned int flags,
return 0; return 0;
} }
void __get_seccomp_filter(struct seccomp_filter *filter)
{
/* Reference count is bounded by the number of total processes. */
refcount_inc(&filter->usage);
}
/* get_seccomp_filter - increments the reference count of the filter on @tsk */ /* get_seccomp_filter - increments the reference count of the filter on @tsk */
void get_seccomp_filter(struct task_struct *tsk) void get_seccomp_filter(struct task_struct *tsk)
{ {
struct seccomp_filter *orig = tsk->seccomp.filter; struct seccomp_filter *orig = tsk->seccomp.filter;
if (!orig) if (!orig)
return; return;
/* Reference count is bounded by the number of total processes. */ __get_seccomp_filter(orig);
refcount_inc(&orig->usage);
} }
static inline void seccomp_filter_free(struct seccomp_filter *filter) static inline void seccomp_filter_free(struct seccomp_filter *filter)
...@@ -491,10 +496,8 @@ static inline void seccomp_filter_free(struct seccomp_filter *filter) ...@@ -491,10 +496,8 @@ static inline void seccomp_filter_free(struct seccomp_filter *filter)
} }
} }
/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */ static void __put_seccomp_filter(struct seccomp_filter *orig)
void put_seccomp_filter(struct task_struct *tsk)
{ {
struct seccomp_filter *orig = tsk->seccomp.filter;
/* Clean up single-reference branches iteratively. */ /* Clean up single-reference branches iteratively. */
while (orig && refcount_dec_and_test(&orig->usage)) { while (orig && refcount_dec_and_test(&orig->usage)) {
struct seccomp_filter *freeme = orig; struct seccomp_filter *freeme = orig;
...@@ -503,6 +506,12 @@ void put_seccomp_filter(struct task_struct *tsk) ...@@ -503,6 +506,12 @@ void put_seccomp_filter(struct task_struct *tsk)
} }
} }
/* put_seccomp_filter - decrements the ref count of tsk->seccomp.filter */
void put_seccomp_filter(struct task_struct *tsk)
{
__put_seccomp_filter(tsk->seccomp.filter);
}
static void seccomp_init_siginfo(siginfo_t *info, int syscall, int reason) static void seccomp_init_siginfo(siginfo_t *info, int syscall, int reason)
{ {
memset(info, 0, sizeof(*info)); memset(info, 0, sizeof(*info));
...@@ -1025,13 +1034,13 @@ long seccomp_get_filter(struct task_struct *task, unsigned long filter_off, ...@@ -1025,13 +1034,13 @@ long seccomp_get_filter(struct task_struct *task, unsigned long filter_off,
if (!data) if (!data)
goto out; goto out;
get_seccomp_filter(task); __get_seccomp_filter(filter);
spin_unlock_irq(&task->sighand->siglock); spin_unlock_irq(&task->sighand->siglock);
if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog))) if (copy_to_user(data, fprog->filter, bpf_classic_proglen(fprog)))
ret = -EFAULT; ret = -EFAULT;
put_seccomp_filter(task); __put_seccomp_filter(filter);
return ret; return ret;
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment