2018-01-24 17:07:09 +01:00
|
|
|
# Perfetto command-line client. Can be used only from the domains that are
|
2020-07-31 20:28:11 +02:00
|
|
|
# explicitly allowlisted with a domain_auto_trans(X, perfetto_exec, perfetto).
|
2018-01-24 17:07:09 +01:00
|
|
|
# This command line client accesses the privileged socket of the traced
|
|
|
|
# daemon.
|
|
|
|
|
2018-09-27 19:21:37 +02:00
|
|
|
type perfetto_exec, system_file_type, exec_type, file_type;
|
2019-01-24 00:07:40 +01:00
|
|
|
type perfetto_tmpfs, file_type;
|
2018-01-24 17:07:09 +01:00
|
|
|
|
|
|
|
tmpfs_domain(perfetto);
|
|
|
|
|
2021-09-30 19:14:40 +02:00
|
|
|
# Allow init to start a trace (for perfetto_boottrace).
|
|
|
|
init_daemon_domain(perfetto)
|
|
|
|
|
2018-01-24 17:07:09 +01:00
|
|
|
# Allow to access traced's privileged consumer socket.
|
|
|
|
unix_socket_connect(perfetto, traced_consumer, traced)
|
|
|
|
|
2019-04-04 20:19:40 +02:00
|
|
|
# Connect to the Perfetto traced daemon as a producer. This requires
|
|
|
|
# connecting to its producer socket and obtaining a (per-process) tmpfs fd.
|
2019-10-08 17:15:14 +02:00
|
|
|
perfetto_producer(perfetto)
|
2019-04-04 20:19:40 +02:00
|
|
|
|
2018-01-24 17:07:09 +01:00
|
|
|
# Allow to write and unlink traces into /data/misc/perfetto-traces.
|
|
|
|
allow perfetto perfetto_traces_data_file:dir rw_dir_perms;
|
|
|
|
allow perfetto perfetto_traces_data_file:file create_file_perms;
|
|
|
|
|
2023-03-28 13:28:34 +02:00
|
|
|
# Allow to write and unlink trace into /data/misc/perfetto-traces/bugreport*
|
|
|
|
allow perfetto perfetto_traces_bugreport_data_file:file create_file_perms;
|
|
|
|
allow perfetto perfetto_traces_bugreport_data_file:dir rw_dir_perms;
|
|
|
|
|
2024-02-15 21:16:46 +01:00
|
|
|
# Allow to write and unlink traces into /data/misc/perfetto-traces/profiling.
|
|
|
|
allow perfetto perfetto_traces_profiling_data_file:dir rw_dir_perms;
|
|
|
|
allow perfetto perfetto_traces_profiling_data_file:file create_file_perms;
|
|
|
|
|
2021-12-10 22:50:44 +01:00
|
|
|
# Allow perfetto to access the proxy service for reporting traces.
|
|
|
|
allow perfetto tracingproxy_service:service_manager find;
|
2018-01-24 17:07:09 +01:00
|
|
|
binder_use(perfetto)
|
|
|
|
binder_call(perfetto, system_server)
|
|
|
|
|
2020-10-13 22:13:09 +02:00
|
|
|
# Allow perfetto to read the trace config from /data/misc/perfetto-configs.
|
|
|
|
# shell and adb can write files into that directory.
|
|
|
|
allow perfetto perfetto_configs_data_file:dir r_dir_perms;
|
|
|
|
allow perfetto perfetto_configs_data_file:file r_file_perms;
|
|
|
|
|
2024-02-16 18:51:49 +01:00
|
|
|
# Allow perfetto to read the trace config from /system/etc/perfetto.
|
|
|
|
allow perfetto system_perfetto_config_file:dir r_dir_perms;
|
|
|
|
allow perfetto system_perfetto_config_file:file r_file_perms;
|
|
|
|
|
2021-03-16 19:30:36 +01:00
|
|
|
# Allow perfetto to read the trace config from statsd, mm_events and shell
|
2018-11-16 16:52:55 +01:00
|
|
|
# (both root and non-root) on stdin and also to write the resulting trace to
|
|
|
|
# stdout.
|
2021-03-16 19:30:36 +01:00
|
|
|
allow perfetto { statsd mm_events shell su }:fd use;
|
2024-02-12 18:15:49 +01:00
|
|
|
allow perfetto { statsd mm_events shell su system_server }:fifo_file { getattr read write ioctl };
|
2018-01-24 17:07:09 +01:00
|
|
|
|
|
|
|
# Allow to communicate use, read and write over the adb connection.
|
|
|
|
allow perfetto adbd:fd use;
|
|
|
|
allow perfetto adbd:unix_stream_socket { read write };
|
|
|
|
|
2019-11-01 13:53:18 +01:00
|
|
|
# Allow adbd to reap perfetto.
|
2018-01-24 17:07:09 +01:00
|
|
|
allow perfetto adbd:process { sigchld };
|
|
|
|
|
2019-11-01 13:53:18 +01:00
|
|
|
# Allow perfetto to write to statsd.
|
|
|
|
unix_socket_send(perfetto, statsdw, statsd)
|
|
|
|
|
2018-01-24 17:07:09 +01:00
|
|
|
# Allow to access /dev/pts when launched in an adb shell.
|
|
|
|
allow perfetto devpts:chr_file rw_file_perms;
|
|
|
|
|
2019-05-29 18:50:44 +02:00
|
|
|
# Allow perfetto to ask incidentd to start a report.
|
2021-12-10 22:50:44 +01:00
|
|
|
# TODO(lalitm): remove all incidentd rules when proxy service is stable.
|
2020-03-26 17:19:21 +01:00
|
|
|
allow perfetto incident_service:service_manager find;
|
|
|
|
binder_call(perfetto, incidentd)
|
2019-05-29 18:50:44 +02:00
|
|
|
|
2020-03-24 22:39:41 +01:00
|
|
|
# perfetto log formatter calls isatty() on its stderr. Denial when running
|
|
|
|
# under adbd is harmless. Avoid generating denial logs.
|
|
|
|
dontaudit perfetto adbd:unix_stream_socket getattr;
|
|
|
|
dontauditxperm perfetto adbd:unix_stream_socket ioctl unpriv_tty_ioctls;
|
|
|
|
# As above, when adbd is running in "su" domain (only the ioctl is denied in
|
|
|
|
# practice).
|
|
|
|
dontauditxperm perfetto su:unix_stream_socket ioctl unpriv_tty_ioctls;
|
2020-06-22 20:35:14 +02:00
|
|
|
# Similarly, CTS tests end up hitting a denial on shell pipes.
|
|
|
|
dontauditxperm perfetto shell:fifo_file ioctl unpriv_tty_ioctls;
|
2020-03-24 22:39:41 +01:00
|
|
|
|
2018-01-24 17:07:09 +01:00
|
|
|
###
|
|
|
|
### Neverallow rules
|
|
|
|
###
|
2021-12-10 22:50:44 +01:00
|
|
|
|
|
|
|
# Disallow anyone else from being able to handle traces except selected system
|
|
|
|
# components.
|
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-init # The creator of the folder.
|
|
|
|
-perfetto # The owner of the folder.
|
|
|
|
-adbd # For pulling traces.
|
|
|
|
-shell # For devepment purposes.
|
|
|
|
-traced # For write_into_file traces.
|
|
|
|
-dumpstate # For attaching traces to bugreports.
|
|
|
|
-incidentd # For receiving reported traces. TODO(lalitm): remove this.
|
|
|
|
-priv_app # For stating traces for bug-report UI.
|
2024-02-15 21:16:46 +01:00
|
|
|
-system_server # For accessing traces started by profiling apis.
|
2024-03-28 18:50:53 +01:00
|
|
|
-trace_redactor # For accessing traces to be redacted.
|
2021-12-10 22:50:44 +01:00
|
|
|
} perfetto_traces_data_file:dir *;
|
|
|
|
neverallow {
|
|
|
|
domain
|
|
|
|
-init # The creator of the folder.
|
|
|
|
-perfetto # The owner of the folder.
|
|
|
|
-adbd # For pulling traces.
|
|
|
|
-shell # For devepment purposes.
|
|
|
|
-traced # For write_into_file traces.
|
|
|
|
-incidentd # For receiving reported traces. TODO(lalitm): remove this.
|
2024-03-28 18:50:53 +01:00
|
|
|
-trace_redactor # For redacting trace files.
|
2021-12-10 22:50:44 +01:00
|
|
|
} perfetto_traces_data_file:file ~{ getattr read };
|
|
|
|
|
|
|
|
### perfetto should NEVER do any of the following
|
2018-01-24 17:07:09 +01:00
|
|
|
|
|
|
|
# Disallow mapping executable memory (execstack and exec are already disallowed
|
|
|
|
# globally in domain.te).
|
|
|
|
neverallow perfetto self:process execmem;
|
|
|
|
|
|
|
|
# Block device access.
|
|
|
|
neverallow perfetto dev_type:blk_file { read write };
|
|
|
|
|
|
|
|
# ptrace any other process
|
|
|
|
neverallow perfetto domain:process ptrace;
|
|
|
|
|
|
|
|
# Disallows access to other /data files.
|
2018-02-08 01:29:06 +01:00
|
|
|
neverallow perfetto {
|
|
|
|
data_file_type
|
|
|
|
-system_data_file
|
2019-08-02 00:57:47 +02:00
|
|
|
-system_data_root_file
|
Restrict creating per-user encrypted directories
Creating a per-user encrypted directory such as /data/system_ce/0 and
the subdirectories in it too early has been a recurring bug. Typically,
individual services in system_server are to blame; system_server has
permission to create these directories, and it's easy to write
"mkdirs()" instead of "mkdir()". Such bugs are very bad, as they
prevent these directories from being encrypted, as encryption policies
can only be set on empty directories. Due to recent changes, a factory
reset is now forced in such cases, which helps detect these bugs;
however, it would be much better to prevent them in the first place.
This CL locks down the ability to create these directories to just vold
and init, or to just vold when possible. This is done by assigning new
types to the directories that contain these directories, and then only
allowing the needed domains to write to these parent directories. This
is similar to what https://r.android.com/1117297 did for /data itself.
Three new types are used instead of just one, since these directories
had three different types already (system_data_file, media_rw_data_file,
vendor_data_file), and this allows the policy to be a bit more precise.
A significant limitation is that /data/user/0 is currently being created
by init during early boot. Therefore, this CL doesn't help much for
/data/user/0, though it helps a lot for the other directories. As the
next step, I'll try to eliminate the /data/user/0 quirk. Anyway, this
CL is needed regardless of whether we're able to do that.
Test: Booted cuttlefish. Ran 'sm partition disk:253,32 private', then
created and deleted a user. Used 'ls -lZ' to check the relevant
SELinux labels on both internal and adoptable storage. Also did
similar tests on raven, with the addition of going through the
setup wizard and using an app that creates media files. No
relevant SELinux denials seen during any of this.
Bug: 156305599
Change-Id: I1fbdd180f56dd2fe4703763936f5850cef8ab0ba
2022-05-05 00:18:02 +02:00
|
|
|
-media_userdir_file
|
|
|
|
-system_userdir_file
|
|
|
|
-vendor_userdir_file
|
2018-02-08 01:29:06 +01:00
|
|
|
# TODO(b/72998741) Remove exemption. Further restricted in a subsequent
|
|
|
|
# neverallow. Currently only getattr and search are allowed.
|
|
|
|
-vendor_data_file
|
|
|
|
-perfetto_traces_data_file
|
2023-03-28 13:28:34 +02:00
|
|
|
-perfetto_traces_bugreport_data_file
|
2024-02-15 21:16:46 +01:00
|
|
|
-perfetto_traces_profiling_data_file
|
2020-10-13 22:13:09 +02:00
|
|
|
-perfetto_configs_data_file
|
2019-06-14 00:05:15 +02:00
|
|
|
with_native_coverage(`-method_trace_data_file')
|
2018-02-08 01:29:06 +01:00
|
|
|
}:dir *;
|
2024-02-15 21:16:46 +01:00
|
|
|
neverallow perfetto {
|
|
|
|
system_data_file
|
|
|
|
-perfetto_traces_data_file
|
|
|
|
-perfetto_traces_profiling_data_file
|
|
|
|
}:dir ~{ getattr search };
|
2019-06-14 00:05:15 +02:00
|
|
|
neverallow perfetto {
|
|
|
|
data_file_type
|
|
|
|
-perfetto_traces_data_file
|
2023-03-28 13:28:34 +02:00
|
|
|
-perfetto_traces_bugreport_data_file
|
2024-02-15 21:16:46 +01:00
|
|
|
-perfetto_traces_profiling_data_file
|
2020-10-13 22:13:09 +02:00
|
|
|
-perfetto_configs_data_file
|
2019-06-14 00:05:15 +02:00
|
|
|
with_native_coverage(`-method_trace_data_file')
|
|
|
|
}:file ~write;
|