2017-03-23 22:27:32 +01:00
|
|
|
typeattribute incidentd coredomain;
|
2018-01-22 23:00:46 +01:00
|
|
|
typeattribute incidentd mlstrustedsubject;
|
2017-03-23 22:27:32 +01:00
|
|
|
|
2016-11-21 08:23:04 +01:00
|
|
|
init_daemon_domain(incidentd)
|
|
|
|
type incidentd_exec, exec_type, file_type;
|
|
|
|
binder_use(incidentd)
|
|
|
|
wakelock_use(incidentd)
|
|
|
|
|
|
|
|
# Allow incidentd to scan through /proc/pid for all processes
|
|
|
|
r_dir_file(incidentd, domain)
|
|
|
|
|
2018-01-22 23:00:46 +01:00
|
|
|
# Allow incidentd to kill incident_helper when timeout
|
|
|
|
allow incidentd incident_helper:process sigkill;
|
2016-11-21 08:23:04 +01:00
|
|
|
|
|
|
|
# Allow executing files on system, such as:
|
|
|
|
# /system/bin/toolbox
|
|
|
|
# /system/bin/logcat
|
|
|
|
# /system/bin/dumpsys
|
|
|
|
allow incidentd system_file:file execute_no_trans;
|
|
|
|
allow incidentd toolbox_exec:file rx_file_perms;
|
|
|
|
|
2018-06-26 23:17:04 +02:00
|
|
|
# section id 1002, allow reading kernel version /proc/version
|
|
|
|
allow incidentd proc_version:file r_file_perms;
|
|
|
|
|
2018-01-22 23:00:46 +01:00
|
|
|
# section id 2001, allow reading /proc/pagetypeinfo
|
|
|
|
allow incidentd proc_pagetypeinfo:file r_file_perms;
|
|
|
|
|
|
|
|
# section id 2002, allow reading /d/wakeup_sources
|
|
|
|
allow incidentd debugfs_wakeup_sources:file r_file_perms;
|
|
|
|
|
|
|
|
# section id 2003, allow executing top
|
|
|
|
allow incidentd proc_meminfo:file { open read };
|
|
|
|
|
|
|
|
# section id 2004, allow reading /sys/devices/system/cpu/cpufreq/all_time_in_state
|
|
|
|
allow incidentd sysfs_devices_system_cpu:file r_file_perms;
|
|
|
|
|
2018-03-07 02:42:35 +01:00
|
|
|
# section id 2005, allow reading ps dump in full
|
|
|
|
allow incidentd domain:process getattr;
|
|
|
|
|
2018-01-22 23:00:46 +01:00
|
|
|
# section id 2006, allow reading /sys/class/power_supply/bms/battery_type
|
|
|
|
allow incidentd sysfs_batteryinfo:dir { search };
|
|
|
|
allow incidentd sysfs_batteryinfo:file r_file_perms;
|
|
|
|
|
2018-03-30 19:14:08 +02:00
|
|
|
# section id 2007, allow reading LAST_KMSG /sys/fs/pstore/console-ramoops
|
|
|
|
userdebug_or_eng(`allow incidentd pstorefs:dir search');
|
|
|
|
userdebug_or_eng(`allow incidentd pstorefs:file r_file_perms');
|
|
|
|
|
2016-11-21 08:23:04 +01:00
|
|
|
# Create and write into /data/misc/incidents
|
|
|
|
allow incidentd incident_data_file:dir rw_dir_perms;
|
|
|
|
allow incidentd incident_data_file:file create_file_perms;
|
|
|
|
|
2018-03-13 00:21:40 +01:00
|
|
|
# Enable incidentd to get stack traces.
|
|
|
|
binder_use(incidentd)
|
|
|
|
hwbinder_use(incidentd)
|
|
|
|
allow incidentd hwservicemanager:hwservice_manager { list };
|
|
|
|
get_prop(incidentd, hwservicemanager_prop)
|
|
|
|
allow incidentd hidl_manager_hwservice:hwservice_manager { find };
|
2016-11-21 08:23:04 +01:00
|
|
|
|
2018-03-07 02:42:35 +01:00
|
|
|
# Read files in /proc
|
|
|
|
allow incidentd {
|
2018-03-13 00:21:40 +01:00
|
|
|
proc_cmdline
|
|
|
|
proc_pipe_conf
|
2018-03-07 02:42:35 +01:00
|
|
|
proc_stat
|
|
|
|
}:file r_file_perms;
|
|
|
|
|
2016-11-21 08:23:04 +01:00
|
|
|
# Signal java processes to dump their stack and get the results
|
2018-03-13 00:21:40 +01:00
|
|
|
allow incidentd { appdomain ephemeral_app system_server }:process signal;
|
2016-11-21 08:23:04 +01:00
|
|
|
|
|
|
|
# Signal native processes to dump their stack.
|
|
|
|
# This list comes from native_processes_to_dump in incidentd/utils.c
|
|
|
|
allow incidentd {
|
2018-03-13 00:21:40 +01:00
|
|
|
# This list comes from native_processes_to_dump in dumputils/dump_utils.cpp
|
2016-11-21 08:23:04 +01:00
|
|
|
audioserver
|
|
|
|
cameraserver
|
|
|
|
drmserver
|
|
|
|
inputflinger
|
|
|
|
mediadrmserver
|
|
|
|
mediaextractor
|
2018-03-13 00:21:40 +01:00
|
|
|
mediametrics
|
2016-11-21 08:23:04 +01:00
|
|
|
mediaserver
|
|
|
|
sdcardd
|
2018-03-13 00:21:40 +01:00
|
|
|
statsd
|
2016-11-21 08:23:04 +01:00
|
|
|
surfaceflinger
|
2018-03-13 00:21:40 +01:00
|
|
|
|
|
|
|
# This list comes from hal_interfaces_to_dump in dumputils/dump_utils.cpp
|
|
|
|
hal_audio_server
|
|
|
|
hal_bluetooth_server
|
|
|
|
hal_camera_server
|
|
|
|
hal_graphics_composer_server
|
2018-05-26 01:23:37 +02:00
|
|
|
hal_omx_server
|
2018-03-13 00:21:40 +01:00
|
|
|
hal_sensors_server
|
|
|
|
hal_vr_server
|
2016-11-21 08:23:04 +01:00
|
|
|
}:process signal;
|
|
|
|
|
|
|
|
# Allow incidentd to make binder calls to any binder service
|
2018-01-22 23:00:46 +01:00
|
|
|
binder_call(incidentd, system_server)
|
2016-11-21 08:23:04 +01:00
|
|
|
binder_call(incidentd, appdomain)
|
|
|
|
|
|
|
|
# Reading /proc/PID/maps of other processes
|
2018-03-13 00:21:40 +01:00
|
|
|
userdebug_or_eng(`allow incidentd self:global_capability_class_set { sys_ptrace }');
|
|
|
|
# incidentd has capability sys_ptrace, but should only use that capability for
|
|
|
|
# accessing sensitive /proc/PID files, never for using ptrace attach.
|
|
|
|
neverallow incidentd *:process ptrace;
|
|
|
|
|
|
|
|
allow incidentd self:global_capability_class_set {
|
|
|
|
# Send signals to processes
|
|
|
|
kill
|
|
|
|
};
|
|
|
|
|
|
|
|
# Connect to tombstoned to intercept dumps.
|
|
|
|
unix_socket_connect(incidentd, tombstoned_intercept, tombstoned)
|
2016-11-21 08:23:04 +01:00
|
|
|
|
|
|
|
# Run a shell.
|
|
|
|
allow incidentd shell_exec:file rx_file_perms;
|
|
|
|
|
|
|
|
# logd access - work to be done is a PII safe log (possibly an event log?)
|
2018-01-22 23:00:46 +01:00
|
|
|
userdebug_or_eng(`read_logd(incidentd)')
|
2016-11-21 08:23:04 +01:00
|
|
|
# TODO control_logd(incidentd)
|
|
|
|
|
|
|
|
# Allow incidentd to find these standard groups of services.
|
|
|
|
# Others can be whitelisted individually.
|
|
|
|
allow incidentd {
|
|
|
|
system_server_service
|
|
|
|
app_api_service
|
|
|
|
system_api_service
|
|
|
|
}:service_manager find;
|
|
|
|
|
|
|
|
# Only incidentd can publish the binder service
|
|
|
|
add_service(incidentd, incident_service)
|
|
|
|
|
|
|
|
# Allow pipes from (and only from) incident
|
|
|
|
allow incidentd incident:fd use;
|
|
|
|
allow incidentd incident:fifo_file write;
|
|
|
|
|
|
|
|
# Allow incident to call back to incident with status updates.
|
|
|
|
binder_call(incidentd, incident)
|
|
|
|
|
|
|
|
###
|
|
|
|
### neverallow rules
|
|
|
|
###
|
|
|
|
|
|
|
|
# only system_server, system_app and incident command can find the incident service
|
2018-01-22 22:56:41 +01:00
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-incident
|
|
|
|
-incidentd
|
|
|
|
-statsd
|
|
|
|
-system_app
|
|
|
|
-system_server
|
|
|
|
} incident_service:service_manager find;
|
2016-11-21 08:23:04 +01:00
|
|
|
|
|
|
|
# only incidentd and the other root services in limited circumstances
|
|
|
|
# can get to the files in /data/misc/incidents
|
|
|
|
#
|
|
|
|
# write, execute, append are forbidden almost everywhere
|
|
|
|
neverallow { domain -incidentd -init -vold } incident_data_file:file {
|
|
|
|
w_file_perms
|
|
|
|
x_file_perms
|
|
|
|
create
|
|
|
|
rename
|
|
|
|
setattr
|
|
|
|
unlink
|
|
|
|
append
|
|
|
|
};
|
|
|
|
# read is also allowed by system_server, for when the file is handed to dropbox
|
|
|
|
neverallow { domain -incidentd -init -vold -system_server } incident_data_file:file r_file_perms;
|
|
|
|
# limited access to the directory itself
|
|
|
|
neverallow { domain -incidentd -init -vold } incident_data_file:dir create_dir_perms;
|
|
|
|
|