binder: use group leader instead of open thread
The binder allocator assumes that the thread that called binder_open will never die for the lifetime of that proc. That thread is normally the group_leader, however it may not be. Use the group_leader instead of current. Signed-off-by: Todd Kjos <tkjos@google.com> Cc: stable <stable@vger.kernel.org> # 4.4+ Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a2b18708ee
commit
c4ea41ba19
@ -3460,8 +3460,8 @@ static int binder_open(struct inode *nodp, struct file *filp)
|
|||||||
proc = kzalloc(sizeof(*proc), GFP_KERNEL);
|
proc = kzalloc(sizeof(*proc), GFP_KERNEL);
|
||||||
if (proc == NULL)
|
if (proc == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
get_task_struct(current);
|
get_task_struct(current->group_leader);
|
||||||
proc->tsk = current;
|
proc->tsk = current->group_leader;
|
||||||
INIT_LIST_HEAD(&proc->todo);
|
INIT_LIST_HEAD(&proc->todo);
|
||||||
init_waitqueue_head(&proc->wait);
|
init_waitqueue_head(&proc->wait);
|
||||||
proc->default_priority = task_nice(current);
|
proc->default_priority = task_nice(current);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user