2016-01-19 19:54:20 +01:00
|
|
|
# bootstat command
|
|
|
|
type bootstat, domain;
|
|
|
|
type bootstat_exec, exec_type, file_type;
|
|
|
|
|
2016-11-08 00:11:39 +01:00
|
|
|
read_runtime_log_tags(bootstat)
|
|
|
|
|
2016-01-19 19:54:20 +01:00
|
|
|
# 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;
|
2016-01-26 01:23:10 +01:00
|
|
|
|
|
|
|
# Read access to pseudo filesystems (for /proc/uptime).
|
2016-12-10 05:14:31 +01:00
|
|
|
r_dir_file(bootstat, proc)
|
2016-12-14 04:50:36 +01:00
|
|
|
|
|
|
|
# Collect metrics on boot time created by init
|
|
|
|
get_prop(bootstat, boottime_prop)
|
2017-08-14 23:25:10 +02:00
|
|
|
|
2017-08-04 22:59:04 +02:00
|
|
|
# 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)
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
# ToDo: end
|