Commit 986b9eac authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Linus Torvalds

kernel/sys.c: fix prototype of prctl_get_tid_address()

tid_addr is not a "pointer to (pointer to int in userspace)"; it is in
fact a "pointer to (pointer to int in userspace) in userspace".  So
sparse rightfully complains about passing a kernel pointer to
put_user().
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 23224e45
...@@ -2238,12 +2238,12 @@ static int prctl_set_mm(int opt, unsigned long addr, ...@@ -2238,12 +2238,12 @@ static int prctl_set_mm(int opt, unsigned long addr,
} }
#ifdef CONFIG_CHECKPOINT_RESTORE #ifdef CONFIG_CHECKPOINT_RESTORE
static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr) static int prctl_get_tid_address(struct task_struct *me, int __user * __user *tid_addr)
{ {
return put_user(me->clear_child_tid, tid_addr); return put_user(me->clear_child_tid, tid_addr);
} }
#else #else
static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr) static int prctl_get_tid_address(struct task_struct *me, int __user * __user *tid_addr)
{ {
return -EINVAL; return -EINVAL;
} }
...@@ -2427,7 +2427,7 @@ SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3, ...@@ -2427,7 +2427,7 @@ SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
error = prctl_set_mm(arg2, arg3, arg4, arg5); error = prctl_set_mm(arg2, arg3, arg4, arg5);
break; break;
case PR_GET_TID_ADDRESS: case PR_GET_TID_ADDRESS:
error = prctl_get_tid_address(me, (int __user **)arg2); error = prctl_get_tid_address(me, (int __user * __user *)arg2);
break; break;
case PR_SET_CHILD_SUBREAPER: case PR_SET_CHILD_SUBREAPER:
me->signal->is_child_subreaper = !!arg2; me->signal->is_child_subreaper = !!arg2;
......
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