342362ae3e
kernel commit 2a4c22426955d4fc04069811997b7390c0fb858e (fs: switch order of CAP_DAC_OVERRIDE and CAP_DAC_READ_SEARCH checks) swapped the order of dac_override and dac_read_search checks. Domains that have dac_override will now generate spurious denials for dac_read_search unless they also have that permission. Since dac_override is a strict superset of dac_read_search, grant dac_read_search to all domains that already have dac_override to get rid of the denials. Bug: 114280985 Bug: crbug.com/877588 Test: Booted on a device running 4.14. Change-Id: I5c1c136b775cceeb7f170e139e8d4279e73267a4
52 lines
1.4 KiB
Text
52 lines
1.4 KiB
Text
# llkd Live LocK Daemon
|
|
typeattribute llkd coredomain;
|
|
|
|
init_daemon_domain(llkd)
|
|
|
|
get_prop(llkd, llkd_prop)
|
|
|
|
allow llkd self:global_capability_class_set kill;
|
|
userdebug_or_eng(`
|
|
allow llkd self:global_capability_class_set sys_ptrace;
|
|
allow llkd self:global_capability_class_set { dac_override dac_read_search };
|
|
')
|
|
|
|
# llkd optionally locks itself in memory, to prevent it from being
|
|
# swapped out and unable to discover a kernel in live-lock state.
|
|
allow llkd self:global_capability_class_set ipc_lock;
|
|
|
|
# Send kill signals to _anyone_ suffering from Live Lock
|
|
allow llkd domain:process sigkill;
|
|
|
|
# read stack to check for Live Lock
|
|
userdebug_or_eng(`
|
|
allow llkd {
|
|
domain
|
|
-kernel
|
|
-keystore
|
|
-init
|
|
-llkd
|
|
-ueventd
|
|
-vendor_init
|
|
}:process ptrace;
|
|
')
|
|
|
|
# live lock watchdog process allowed to look through /proc/
|
|
allow llkd domain:dir r_dir_perms;
|
|
allow llkd domain:file r_file_perms;
|
|
allow llkd domain:lnk_file read;
|
|
# Set /proc/sys/kernel/hung_task_*
|
|
allow llkd proc_hung_task:file rw_file_perms;
|
|
|
|
# live lock watchdog process allowed to dump process trace and
|
|
# reboot because orderly shutdown may not be possible.
|
|
allow llkd proc_sysrq:file w_file_perms;
|
|
allow llkd kmsg_device:chr_file w_file_perms;
|
|
|
|
### neverallow rules
|
|
|
|
neverallow { domain -init } llkd:process { dyntransition transition };
|
|
neverallow { domain userdebug_or_eng(`-crash_dump') } llkd:process ptrace;
|
|
|
|
# never honor LD_PRELOAD
|
|
neverallow * llkd:process noatsecure;
|