2016-07-22 22:13:11 +02:00
|
|
|
# type_transition must be private policy the domain_trans rules could stay
|
|
|
|
# public, but conceptually should go with this
|
|
|
|
init_daemon_domain(logd)
|
2016-10-12 23:58:09 +02:00
|
|
|
|
|
|
|
# logd is not allowed to write anywhere other than /data/misc/logd, and then
|
|
|
|
# only on userdebug or eng builds
|
|
|
|
# TODO: deal with tmpfs_domain pub/priv split properly
|
2016-11-08 00:11:39 +01:00
|
|
|
neverallow logd {
|
|
|
|
file_type
|
|
|
|
-logd_tmpfs
|
|
|
|
-runtime_event_log_tags_file
|
2016-09-13 18:33:35 +02:00
|
|
|
userdebug_or_eng(`-coredump_file -misc_logd_file')
|
2016-11-08 00:11:39 +01:00
|
|
|
}:file { create write append };
|
|
|
|
|
|
|
|
# protect the event-log-tags file
|
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-appdomain # covered below
|
|
|
|
-bootstat
|
|
|
|
-dumpstate
|
2016-09-13 18:33:35 +02:00
|
|
|
-init
|
2016-11-08 00:11:39 +01:00
|
|
|
-logd
|
|
|
|
userdebug_or_eng(`-logpersist')
|
|
|
|
-servicemanager
|
|
|
|
-system_server
|
|
|
|
-surfaceflinger
|
|
|
|
-zygote
|
|
|
|
} runtime_event_log_tags_file:file no_rw_file_perms;
|
|
|
|
|
|
|
|
neverallow {
|
|
|
|
appdomain
|
|
|
|
-bluetooth
|
|
|
|
-platform_app
|
|
|
|
-priv_app
|
|
|
|
-radio
|
|
|
|
-shell
|
|
|
|
userdebug_or_eng(`-su')
|
|
|
|
-system_app
|
|
|
|
} runtime_event_log_tags_file:file no_rw_file_perms;
|