diff --git a/public/domain.te b/public/domain.te index 31345be8f979068fb2a7a4a0caa5d19ad4b8be9d..41e090331ddf3911c878daa74fcdf94c89d47502 100644 --- a/public/domain.te +++ b/public/domain.te @@ -560,7 +560,7 @@ neverallow { } serialno_prop:file r_file_perms; # Do not allow reading the last boot timestamp from system properties -neverallow { domain -init -system_server } firstboot_prop:file r_file_perms; +neverallow { domain -init -system_server -dumpstate } firstboot_prop:file r_file_perms; neverallow { domain diff --git a/public/dumpstate.te b/public/dumpstate.te index 0fad5e10f39c1efef68ac8fc404649ecd827b586..88071577664ec5e21a16f8bd910baffe8b51d054 100644 --- a/public/dumpstate.te +++ b/public/dumpstate.te @@ -232,16 +232,8 @@ set_prop(dumpstate, exported_dumpstate_prop) # dumpstate_options_prop is used to pass extra command-line args. set_prop(dumpstate, dumpstate_options_prop) -# Read device's serial number from system properties -get_prop(dumpstate, serialno_prop) - -# Read state of logging-related properties -get_prop(dumpstate, device_logging_prop) - -# Read state of boot reason properties -get_prop(dumpstate, bootloader_boot_reason_prop) -get_prop(dumpstate, last_boot_reason_prop) -get_prop(dumpstate, system_boot_reason_prop) +# Read any system properties +get_prop(dumpstate, property_type) # Access to /data/media. # This should be removed if sdcardfs is modified to alter the secontext for its diff --git a/public/netd.te b/public/netd.te index 545ad7c1a9befbb586233538832dd7f856bbcab2..7262072338a8363886bcb2a95faf61202f2389ab 100644 --- a/public/netd.te +++ b/public/netd.te @@ -141,7 +141,7 @@ neverallow netd { appdomain userdebug_or_eng(`-su') }:binder call; # persist.netd.stable_secret contains RFC 7217 secret key which should never be # leaked to other processes. Make sure it never leaks. -neverallow { domain -netd -init } netd_stable_secret_prop:file r_file_perms; +neverallow { domain -netd -init -dumpstate } netd_stable_secret_prop:file r_file_perms; # We want to ensure that no other process ever tries tampering with persist.netd.stable_secret, # the RFC 7217 secret key managed by netd. Doing so could compromise user privacy.