mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
ANDROID: proc: smaps: Allow smaps access for CAP_SYS_RESOURCE
Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
@@ -1007,7 +1007,8 @@ struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
|
||||
|
||||
mm = get_task_mm(task);
|
||||
if (mm && mm != current->mm &&
|
||||
!ptrace_may_access(task, mode)) {
|
||||
!ptrace_may_access(task, mode) &&
|
||||
!capable(CAP_SYS_RESOURCE)) {
|
||||
mmput(mm);
|
||||
mm = ERR_PTR(-EACCES);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user