proc: smaps: Allow smaps access for CAP_SYS_RESOURCE
Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
parent
d5b7dffe62
commit
9d19f72b43
1 changed files with 2 additions and 1 deletions
|
@ -800,7 +800,8 @@ struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
|
||||||
|
|
||||||
mm = get_task_mm(task);
|
mm = get_task_mm(task);
|
||||||
if (mm && mm != current->mm &&
|
if (mm && mm != current->mm &&
|
||||||
!ptrace_may_access(task, mode)) {
|
!ptrace_may_access(task, mode) &&
|
||||||
|
!capable(CAP_SYS_RESOURCE)) {
|
||||||
mmput(mm);
|
mmput(mm);
|
||||||
mm = ERR_PTR(-EACCES);
|
mm = ERR_PTR(-EACCES);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue