2017-03-23 22:27:32 +01:00
|
|
|
typeattribute bootstat coredomain;
|
|
|
|
|
2016-07-22 22:13:11 +02:00
|
|
|
init_daemon_domain(bootstat)
|
2020-03-04 09:20:35 +01:00
|
|
|
|
|
|
|
# Collect metrics on boot time created by init
|
|
|
|
get_prop(bootstat, boottime_prop)
|
|
|
|
|
|
|
|
# Read/Write [persist.]sys.boot.reason and ro.boot.bootreason (write if empty)
|
|
|
|
set_prop(bootstat, bootloader_boot_reason_prop)
|
|
|
|
set_prop(bootstat, system_boot_reason_prop)
|
|
|
|
set_prop(bootstat, last_boot_reason_prop)
|
|
|
|
|
2024-03-27 09:18:41 +01:00
|
|
|
read_runtime_log_tags(bootstat)
|
|
|
|
|
|
|
|
# Allow persistent storage in /data/misc/bootstat.
|
|
|
|
allow bootstat bootstat_data_file:dir rw_dir_perms;
|
|
|
|
allow bootstat bootstat_data_file:file create_file_perms;
|
|
|
|
|
|
|
|
allow bootstat metadata_file:dir search;
|
|
|
|
allow bootstat metadata_bootstat_file:dir rw_dir_perms;
|
|
|
|
allow bootstat metadata_bootstat_file:file create_file_perms;
|
|
|
|
|
|
|
|
# ToDo: TBI move access for the following to a system health HAL
|
|
|
|
|
|
|
|
# Allow access to /sys/fs/pstore/ and syslog
|
|
|
|
allow bootstat pstorefs:dir search;
|
|
|
|
allow bootstat pstorefs:file r_file_perms;
|
|
|
|
allow bootstat kernel:system syslog_read;
|
|
|
|
|
|
|
|
# Allow access to reading the logs to read aspects of system health
|
|
|
|
read_logd(bootstat)
|
|
|
|
|
|
|
|
# Allow bootstat write to statsd.
|
|
|
|
unix_socket_send(bootstat, statsdw, statsd)
|
|
|
|
|
|
|
|
###
|
|
|
|
### Neverallow rules
|
|
|
|
###
|
|
|
|
|
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-bootstat
|
|
|
|
-init
|
|
|
|
} system_boot_reason_prop:property_service set;
|
|
|
|
|
2020-03-04 09:20:35 +01:00
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-bootanim
|
|
|
|
-bootstat
|
|
|
|
-dumpstate
|
2020-04-09 23:43:00 +02:00
|
|
|
userdebug_or_eng(`-incidentd')
|
2020-03-04 09:20:35 +01:00
|
|
|
-init
|
2023-09-11 18:43:45 +02:00
|
|
|
-platform_app
|
2020-03-04 09:20:35 +01:00
|
|
|
-recovery
|
|
|
|
-shell
|
|
|
|
-system_server
|
|
|
|
} { bootloader_boot_reason_prop last_boot_reason_prop }:file r_file_perms;
|
|
|
|
# ... and refine, as these components should not set the last boot reason
|
|
|
|
neverallow { bootanim recovery } last_boot_reason_prop:file r_file_perms;
|
|
|
|
|
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-bootstat
|
|
|
|
-init
|
|
|
|
-system_server
|
|
|
|
} { bootloader_boot_reason_prop last_boot_reason_prop }:property_service set;
|
|
|
|
# ... and refine ... for a ro propertly no less ... keep this _tight_
|
|
|
|
neverallow system_server bootloader_boot_reason_prop:property_service set;
|