2017-02-07 19:05:07 +01:00
|
|
|
# surfaceflinger - display compositor service
|
|
|
|
|
2017-03-23 22:27:32 +01:00
|
|
|
typeattribute surfaceflinger coredomain;
|
|
|
|
|
2017-02-07 19:05:07 +01:00
|
|
|
type surfaceflinger_exec, exec_type, file_type;
|
2016-07-22 22:13:11 +02:00
|
|
|
init_daemon_domain(surfaceflinger)
|
2017-02-07 19:05:07 +01:00
|
|
|
|
|
|
|
typeattribute surfaceflinger mlstrustedsubject;
|
|
|
|
|
|
|
|
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)
|
|
|
|
hal_client_domain(surfaceflinger, hal_configstore)
|
2017-04-14 04:05:27 +02:00
|
|
|
allow surfaceflinger hal_configstore_ISurfaceFlingerConfigs:hwservice_manager find;
|
|
|
|
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)
|
|
|
|
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;
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
set_prop(surfaceflinger, ctl_bootanim_prop)
|
|
|
|
|
|
|
|
# Use open files supplied by an app.
|
|
|
|
allow surfaceflinger appdomain:fd use;
|
|
|
|
allow surfaceflinger app_data_file:file { read write };
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
# Needed on some devices for playing DRM protected content,
|
|
|
|
# but seems expected and appropriate for all devices.
|
|
|
|
allow surfaceflinger tee_device:chr_file rw_file_perms;
|
|
|
|
|
|
|
|
|
|
|
|
# media.player service
|
|
|
|
add_service(surfaceflinger, gpu_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;
|
|
|
|
|
2017-02-10 22:33:56 +01:00
|
|
|
|
2017-02-07 19:05:07 +01:00
|
|
|
# allow self to set SCHED_FIFO
|
|
|
|
allow surfaceflinger self:capability sys_nice;
|
|
|
|
allow surfaceflinger proc_meminfo:file r_file_perms;
|
|
|
|
r_dir_file(surfaceflinger, cgroup)
|
|
|
|
r_dir_file(surfaceflinger, sysfs_type)
|
|
|
|
r_dir_file(surfaceflinger, system_file)
|
|
|
|
allow surfaceflinger tmpfs:dir r_dir_perms;
|
|
|
|
allow surfaceflinger system_server:fd use;
|
|
|
|
allow surfaceflinger ion_device:chr_file r_file_perms;
|
|
|
|
|
2017-02-10 00:15:11 +01:00
|
|
|
# pdx IPC
|
|
|
|
pdx_server(surfaceflinger)
|
|
|
|
|
|
|
|
use_pdx(surfaceflinger, bufferhubd)
|
|
|
|
use_pdx(surfaceflinger, performanced)
|
|
|
|
use_pdx(surfaceflinger, sensord)
|
|
|
|
|
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.
|
|
|
|
neverallow surfaceflinger sdcard_type:file rw_file_perms;
|