2017-02-07 19:05:07 +01:00
|
|
|
# surfaceflinger - display compositor service
|
|
|
|
|
2017-03-23 22:27:32 +01:00
|
|
|
typeattribute surfaceflinger coredomain;
|
|
|
|
|
2018-09-27 19:21:37 +02:00
|
|
|
type surfaceflinger_exec, system_file_type, exec_type, file_type;
|
2016-07-22 22:13:11 +02:00
|
|
|
init_daemon_domain(surfaceflinger)
|
2019-01-29 23:43:45 +01:00
|
|
|
tmpfs_domain(surfaceflinger)
|
2017-02-07 19:05:07 +01:00
|
|
|
|
|
|
|
typeattribute surfaceflinger mlstrustedsubject;
|
2017-05-17 02:43:52 +02:00
|
|
|
typeattribute surfaceflinger display_service_server;
|
2017-02-07 19:05:07 +01:00
|
|
|
|
|
|
|
read_runtime_log_tags(surfaceflinger)
|
|
|
|
|
|
|
|
# Perform HwBinder IPC.
|
2017-03-17 02:48:40 +01:00
|
|
|
hal_client_domain(surfaceflinger, hal_graphics_allocator)
|
|
|
|
hal_client_domain(surfaceflinger, hal_graphics_composer)
|
2019-01-29 23:43:45 +01:00
|
|
|
typeattribute surfaceflinger_tmpfs hal_graphics_composer_client_tmpfs;
|
2019-04-30 14:09:28 +02:00
|
|
|
hal_client_domain(surfaceflinger, hal_codec2)
|
2018-06-30 02:02:23 +02:00
|
|
|
hal_client_domain(surfaceflinger, hal_omx)
|
2017-03-17 02:48:40 +01:00
|
|
|
hal_client_domain(surfaceflinger, hal_configstore)
|
2018-06-22 19:37:10 +02:00
|
|
|
hal_client_domain(surfaceflinger, hal_power)
|
2017-04-14 04:05:27 +02:00
|
|
|
allow surfaceflinger hidl_token_hwservice:hwservice_manager find;
|
2017-02-07 19:05:07 +01:00
|
|
|
|
|
|
|
# Perform Binder IPC.
|
|
|
|
binder_use(surfaceflinger)
|
|
|
|
binder_call(surfaceflinger, binderservicedomain)
|
|
|
|
binder_call(surfaceflinger, appdomain)
|
|
|
|
binder_call(surfaceflinger, bootanim)
|
2020-02-05 01:58:57 +01:00
|
|
|
binder_call(surfaceflinger, system_server);
|
2017-02-07 19:05:07 +01:00
|
|
|
binder_service(surfaceflinger)
|
|
|
|
|
|
|
|
# Binder IPC to bu, presently runs in adbd domain.
|
|
|
|
binder_call(surfaceflinger, adbd)
|
|
|
|
|
|
|
|
# Read /proc/pid files for Binder clients.
|
|
|
|
r_dir_file(surfaceflinger, binderservicedomain)
|
|
|
|
r_dir_file(surfaceflinger, appdomain)
|
|
|
|
|
|
|
|
# Access the GPU.
|
|
|
|
allow surfaceflinger gpu_device:chr_file rw_file_perms;
|
2022-02-24 19:32:16 +01:00
|
|
|
allow surfaceflinger gpu_device:dir r_dir_perms;
|
|
|
|
allow surfaceflinger sysfs_gpu:file r_file_perms;
|
2017-02-07 19:05:07 +01:00
|
|
|
|
|
|
|
# Access /dev/graphics/fb0.
|
|
|
|
allow surfaceflinger graphics_device:dir search;
|
|
|
|
allow surfaceflinger graphics_device:chr_file rw_file_perms;
|
|
|
|
|
|
|
|
# Access /dev/video1.
|
|
|
|
allow surfaceflinger video_device:dir r_dir_perms;
|
|
|
|
allow surfaceflinger video_device:chr_file rw_file_perms;
|
|
|
|
|
|
|
|
# Create and use netlink kobject uevent sockets.
|
|
|
|
allow surfaceflinger self:netlink_kobject_uevent_socket create_socket_perms_no_ioctl;
|
|
|
|
|
|
|
|
# Set properties.
|
|
|
|
set_prop(surfaceflinger, system_prop)
|
2021-04-28 14:57:11 +02:00
|
|
|
set_prop(surfaceflinger, bootanim_system_prop)
|
2017-10-19 09:54:49 +02:00
|
|
|
set_prop(surfaceflinger, exported_system_prop)
|
|
|
|
set_prop(surfaceflinger, exported3_system_prop)
|
2017-02-07 19:05:07 +01:00
|
|
|
set_prop(surfaceflinger, ctl_bootanim_prop)
|
2022-09-28 10:52:46 +02:00
|
|
|
set_prop(surfaceflinger, locale_prop)
|
2020-06-17 16:13:21 +02:00
|
|
|
set_prop(surfaceflinger, surfaceflinger_display_prop)
|
2022-09-28 10:52:46 +02:00
|
|
|
set_prop(surfaceflinger, timezone_prop)
|
2020-05-05 07:20:30 +02:00
|
|
|
|
2021-02-24 00:08:56 +01:00
|
|
|
# Get properties.
|
|
|
|
get_prop(surfaceflinger, qemu_sf_lcd_density_prop)
|
2021-07-03 01:30:36 +02:00
|
|
|
get_prop(surfaceflinger, device_config_surface_flinger_native_boot_prop)
|
2021-02-24 00:08:56 +01:00
|
|
|
|
2017-02-07 19:05:07 +01:00
|
|
|
# Use open files supplied by an app.
|
|
|
|
allow surfaceflinger appdomain:fd use;
|
2018-08-03 00:54:23 +02:00
|
|
|
allow surfaceflinger { app_data_file privapp_data_file }:file { read write };
|
2017-02-07 19:05:07 +01:00
|
|
|
|
2017-11-17 17:23:32 +01:00
|
|
|
# Allow writing surface traces to /data/misc/wmtrace.
|
|
|
|
userdebug_or_eng(`
|
|
|
|
allow surfaceflinger wm_trace_data_file:dir rw_dir_perms;
|
|
|
|
allow surfaceflinger wm_trace_data_file:file { getattr setattr create w_file_perms };
|
|
|
|
')
|
|
|
|
|
2022-06-30 16:20:13 +02:00
|
|
|
# Needed to register as a Perfetto producer.
|
2019-10-08 17:15:14 +02:00
|
|
|
perfetto_producer(surfaceflinger)
|
2019-07-01 18:22:59 +02:00
|
|
|
|
2017-04-28 19:10:36 +02:00
|
|
|
# Use socket supplied by adbd, for cmd gpu vkjson etc.
|
|
|
|
allow surfaceflinger adbd:unix_stream_socket { read write getattr };
|
|
|
|
|
2017-02-07 19:05:07 +01:00
|
|
|
# Allow a dumpstate triggered screenshot
|
|
|
|
binder_call(surfaceflinger, dumpstate)
|
|
|
|
binder_call(surfaceflinger, shell)
|
|
|
|
r_dir_file(surfaceflinger, dumpstate)
|
|
|
|
|
|
|
|
# media.player service
|
|
|
|
|
|
|
|
# do not use add_service() as hal_graphics_composer_default may be the
|
|
|
|
# provider as well
|
|
|
|
#add_service(surfaceflinger, surfaceflinger_service)
|
|
|
|
allow surfaceflinger surfaceflinger_service:service_manager { add find };
|
|
|
|
|
|
|
|
allow surfaceflinger mediaserver_service:service_manager find;
|
|
|
|
allow surfaceflinger permission_service:service_manager find;
|
|
|
|
allow surfaceflinger power_service:service_manager find;
|
2017-02-10 22:33:56 +01:00
|
|
|
allow surfaceflinger vr_manager_service:service_manager find;
|
2017-02-07 19:05:07 +01:00
|
|
|
allow surfaceflinger window_service:service_manager find;
|
2018-11-16 22:32:58 +01:00
|
|
|
allow surfaceflinger inputflinger_service:service_manager find;
|
2017-02-07 19:05:07 +01:00
|
|
|
|
2017-02-10 22:33:56 +01:00
|
|
|
|
2017-02-07 19:05:07 +01:00
|
|
|
# allow self to set SCHED_FIFO
|
2017-11-09 23:51:26 +01:00
|
|
|
allow surfaceflinger self:global_capability_class_set sys_nice;
|
2017-02-07 19:05:07 +01:00
|
|
|
allow surfaceflinger proc_meminfo:file r_file_perms;
|
|
|
|
r_dir_file(surfaceflinger, cgroup)
|
2021-02-12 00:18:11 +01:00
|
|
|
r_dir_file(surfaceflinger, cgroup_v2)
|
2017-02-07 19:05:07 +01:00
|
|
|
r_dir_file(surfaceflinger, system_file)
|
|
|
|
allow surfaceflinger tmpfs:dir r_dir_perms;
|
|
|
|
allow surfaceflinger system_server:fd use;
|
2018-11-16 22:32:58 +01:00
|
|
|
allow surfaceflinger system_server:unix_stream_socket { read write };
|
2017-02-07 19:05:07 +01:00
|
|
|
allow surfaceflinger ion_device:chr_file r_file_perms;
|
2021-02-16 06:57:42 +01:00
|
|
|
allow surfaceflinger dmabuf_system_heap_device:chr_file r_file_perms;
|
2017-02-07 19:05:07 +01:00
|
|
|
|
2017-02-10 00:15:11 +01:00
|
|
|
# pdx IPC
|
2017-05-01 22:01:44 +02:00
|
|
|
pdx_server(surfaceflinger, display_client)
|
|
|
|
pdx_server(surfaceflinger, display_manager)
|
|
|
|
pdx_server(surfaceflinger, display_screenshot)
|
|
|
|
pdx_server(surfaceflinger, display_vsync)
|
|
|
|
|
|
|
|
pdx_client(surfaceflinger, bufferhub_client)
|
|
|
|
pdx_client(surfaceflinger, performance_client)
|
2017-02-10 00:15:11 +01:00
|
|
|
|
2019-09-24 03:45:05 +02:00
|
|
|
# Allow supplying timestats statistics to statsd
|
|
|
|
allow surfaceflinger stats_service:service_manager find;
|
2020-02-05 01:58:57 +01:00
|
|
|
allow surfaceflinger statsmanager_service:service_manager find;
|
|
|
|
# TODO(146461633): remove this once native pullers talk to StatsManagerService
|
2019-09-24 03:45:05 +02:00
|
|
|
binder_call(surfaceflinger, statsd);
|
|
|
|
|
2022-02-10 15:09:02 +01:00
|
|
|
# Allow to use files supplied by hal_evs
|
|
|
|
allow surfaceflinger hal_evs:fd use;
|
|
|
|
|
2020-02-07 22:41:06 +01:00
|
|
|
# Allow pushing jank event atoms to statsd
|
|
|
|
userdebug_or_eng(`
|
|
|
|
unix_socket_send(surfaceflinger, statsdw, statsd)
|
|
|
|
')
|
|
|
|
|
2020-04-02 13:36:17 +02:00
|
|
|
# Surfaceflinger should not be reading default vendor-defined properties.
|
|
|
|
dontaudit surfaceflinger vendor_default_prop:file read;
|
|
|
|
|
2017-02-07 19:05:07 +01:00
|
|
|
###
|
|
|
|
### Neverallow rules
|
|
|
|
###
|
|
|
|
### surfaceflinger should NEVER do any of this
|
|
|
|
|
|
|
|
# Do not allow accessing SDcard files as unsafe ejection could
|
|
|
|
# cause the kernel to kill the process.
|
2021-06-23 10:21:49 +02:00
|
|
|
neverallow surfaceflinger { sdcard_type fuse }:file rw_file_perms;
|
2018-02-15 01:32:28 +01:00
|
|
|
|
|
|
|
# b/68864350
|
|
|
|
dontaudit surfaceflinger unlabeled:dir search;
|