2017-03-23 22:27:32 +01:00
|
|
|
typeattribute incident coredomain;
|
|
|
|
|
2018-09-27 19:21:37 +02:00
|
|
|
type incident_exec, system_file_type, exec_type, file_type;
|
2016-11-21 08:23:04 +01:00
|
|
|
|
|
|
|
# switch to incident domain for incident command
|
|
|
|
domain_auto_trans(shell, incident_exec, incident)
|
2019-08-21 23:58:13 +02:00
|
|
|
domain_auto_trans(dumpstate, incident_exec, incident)
|
2016-11-21 08:23:04 +01:00
|
|
|
|
|
|
|
# allow incident access to stdout from its parent shell.
|
|
|
|
allow incident shell:fd use;
|
|
|
|
|
2019-08-21 23:58:13 +02:00
|
|
|
# allow incident to communicate with dumpstate, and write incident report to
|
|
|
|
# /data/data/com.android.shell/files/bugreports/tmp_incident_report
|
|
|
|
allow incident dumpstate:fd use;
|
|
|
|
allow incident dumpstate:unix_stream_socket { read write };
|
|
|
|
allow incident shell_data_file:file write;
|
|
|
|
|
2018-01-31 21:33:57 +01:00
|
|
|
# allow incident be able to output data for CTS to fetch.
|
|
|
|
allow incident devpts:chr_file { read write };
|
|
|
|
|
2016-11-21 08:23:04 +01:00
|
|
|
# allow incident to communicate use, read and write over the adb
|
|
|
|
# connection.
|
|
|
|
allow incident adbd:fd use;
|
|
|
|
allow incident adbd:unix_stream_socket { read write };
|
|
|
|
|
|
|
|
# allow adbd to reap incident
|
|
|
|
allow incident adbd:process { sigchld };
|
|
|
|
|
|
|
|
# Allow the incident command to talk to the incidentd over the binder, and get
|
|
|
|
# back the incident report data from a ParcelFileDescriptor.
|
|
|
|
binder_use(incident)
|
|
|
|
allow incident incident_service:service_manager find;
|
|
|
|
binder_call(incident, incidentd)
|
|
|
|
allow incident incidentd:fifo_file write;
|
|
|
|
|
2019-08-21 23:58:13 +02:00
|
|
|
# only allow incident being called by shell or dumpstate
|
|
|
|
neverallow { domain -su -shell -incident -dumpstate} incident_exec:file { execute execute_no_trans };
|