lmkd: grant access to /proc/lowmemorykiller
lmkd needs to read /proc/lowmemorykiller to send statslog events in response to applications being killed. Bug: 130017100 Change-Id: I929d5a372e1b2f63b7b5ed421f1898ebddaec01c
This commit is contained in:
parent
2798b5fc93
commit
3cfad10c04
4 changed files with 6 additions and 0 deletions
|
@ -1379,6 +1379,7 @@
|
|||
( proc
|
||||
proc_fs_verity
|
||||
proc_keys
|
||||
proc_lowmemorykiller
|
||||
proc_pressure_cpu
|
||||
proc_pressure_io
|
||||
proc_pressure_mem
|
||||
|
|
|
@ -13,6 +13,7 @@ genfscon proc /iomem u:object_r:proc_iomem:s0
|
|||
genfscon proc /keys u:object_r:proc_keys:s0
|
||||
genfscon proc /kmsg u:object_r:proc_kmsg:s0
|
||||
genfscon proc /loadavg u:object_r:proc_loadavg:s0
|
||||
genfscon proc /lowmemorykiller u:object_r:proc_lowmemorykiller:s0
|
||||
genfscon proc /meminfo u:object_r:proc_meminfo:s0
|
||||
genfscon proc /misc u:object_r:proc_misc:s0
|
||||
genfscon proc /modules u:object_r:proc_modules:s0
|
||||
|
|
|
@ -32,6 +32,7 @@ type proc_iomem, fs_type, proc_type;
|
|||
type proc_keys, fs_type, proc_type;
|
||||
type proc_kmsg, fs_type, proc_type;
|
||||
type proc_loadavg, fs_type, proc_type;
|
||||
type proc_lowmemorykiller, fs_type, proc_type;
|
||||
type proc_max_map_count, fs_type, proc_type;
|
||||
type proc_meminfo, fs_type, proc_type;
|
||||
type proc_misc, fs_type, proc_type;
|
||||
|
|
|
@ -47,6 +47,9 @@ allow lmkd domain:file { open read };
|
|||
# reboot because orderly shutdown may not be possible.
|
||||
allow lmkd proc_sysrq:file rw_file_perms;
|
||||
|
||||
# Read /proc/lowmemorykiller
|
||||
allow lmkd proc_lowmemorykiller:file r_file_perms;
|
||||
|
||||
# Read /proc/meminfo
|
||||
allow lmkd proc_meminfo:file r_file_perms;
|
||||
|
||||
|
|
Loading…
Reference in a new issue