Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 1 | # surfaceflinger - display compositor service |
| 2 | |
Alex Klyubin | f5446eb | 2017-03-23 14:27:32 -0700 | [diff] [blame] | 3 | typeattribute surfaceflinger coredomain; |
| 4 | |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 5 | type surfaceflinger_exec, exec_type, file_type; |
dcashman | cc39f63 | 2016-07-22 13:13:11 -0700 | [diff] [blame] | 6 | init_daemon_domain(surfaceflinger) |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 7 | |
| 8 | typeattribute surfaceflinger mlstrustedsubject; |
| 9 | |
| 10 | read_runtime_log_tags(surfaceflinger) |
| 11 | |
| 12 | # Perform HwBinder IPC. |
Alex Klyubin | 9e6b24c | 2017-03-16 18:48:40 -0700 | [diff] [blame] | 13 | hal_client_domain(surfaceflinger, hal_graphics_allocator) |
Alex Klyubin | 9e6b24c | 2017-03-16 18:48:40 -0700 | [diff] [blame] | 14 | hal_client_domain(surfaceflinger, hal_graphics_composer) |
Alex Klyubin | 9e6b24c | 2017-03-16 18:48:40 -0700 | [diff] [blame] | 15 | hal_client_domain(surfaceflinger, hal_configstore) |
Alex Klyubin | 53656c1 | 2017-04-13 19:05:27 -0700 | [diff] [blame] | 16 | allow surfaceflinger hal_configstore_ISurfaceFlingerConfigs:hwservice_manager find; |
| 17 | allow surfaceflinger hidl_token_hwservice:hwservice_manager find; |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 18 | |
| 19 | # Perform Binder IPC. |
| 20 | binder_use(surfaceflinger) |
| 21 | binder_call(surfaceflinger, binderservicedomain) |
| 22 | binder_call(surfaceflinger, appdomain) |
| 23 | binder_call(surfaceflinger, bootanim) |
| 24 | binder_service(surfaceflinger) |
| 25 | |
| 26 | # Binder IPC to bu, presently runs in adbd domain. |
| 27 | binder_call(surfaceflinger, adbd) |
| 28 | |
| 29 | # Read /proc/pid files for Binder clients. |
| 30 | r_dir_file(surfaceflinger, binderservicedomain) |
| 31 | r_dir_file(surfaceflinger, appdomain) |
| 32 | |
| 33 | # Access the GPU. |
| 34 | allow surfaceflinger gpu_device:chr_file rw_file_perms; |
| 35 | |
| 36 | # Access /dev/graphics/fb0. |
| 37 | allow surfaceflinger graphics_device:dir search; |
| 38 | allow surfaceflinger graphics_device:chr_file rw_file_perms; |
| 39 | |
| 40 | # Access /dev/video1. |
| 41 | allow surfaceflinger video_device:dir r_dir_perms; |
| 42 | allow surfaceflinger video_device:chr_file rw_file_perms; |
| 43 | |
| 44 | # Create and use netlink kobject uevent sockets. |
| 45 | allow surfaceflinger self:netlink_kobject_uevent_socket create_socket_perms_no_ioctl; |
| 46 | |
| 47 | # Set properties. |
| 48 | set_prop(surfaceflinger, system_prop) |
| 49 | set_prop(surfaceflinger, ctl_bootanim_prop) |
| 50 | |
| 51 | # Use open files supplied by an app. |
| 52 | allow surfaceflinger appdomain:fd use; |
| 53 | allow surfaceflinger app_data_file:file { read write }; |
| 54 | |
Chris Forbes | 676003c | 2017-04-28 10:10:36 -0700 | [diff] [blame] | 55 | # Use socket supplied by adbd, for cmd gpu vkjson etc. |
| 56 | allow surfaceflinger adbd:unix_stream_socket { read write getattr }; |
| 57 | |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 58 | # Allow a dumpstate triggered screenshot |
| 59 | binder_call(surfaceflinger, dumpstate) |
| 60 | binder_call(surfaceflinger, shell) |
| 61 | r_dir_file(surfaceflinger, dumpstate) |
| 62 | |
| 63 | # Needed on some devices for playing DRM protected content, |
| 64 | # but seems expected and appropriate for all devices. |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 65 | allow surfaceflinger tee_device:chr_file rw_file_perms; |
| 66 | |
| 67 | |
| 68 | # media.player service |
| 69 | add_service(surfaceflinger, gpu_service) |
| 70 | |
| 71 | # do not use add_service() as hal_graphics_composer_default may be the |
| 72 | # provider as well |
| 73 | #add_service(surfaceflinger, surfaceflinger_service) |
| 74 | allow surfaceflinger surfaceflinger_service:service_manager { add find }; |
| 75 | |
| 76 | allow surfaceflinger mediaserver_service:service_manager find; |
| 77 | allow surfaceflinger permission_service:service_manager find; |
| 78 | allow surfaceflinger power_service:service_manager find; |
Jeff Vander Stoep | 8bf3b7a | 2017-02-10 13:33:56 -0800 | [diff] [blame] | 79 | allow surfaceflinger vr_manager_service:service_manager find; |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 80 | allow surfaceflinger window_service:service_manager find; |
| 81 | |
Jeff Vander Stoep | 8bf3b7a | 2017-02-10 13:33:56 -0800 | [diff] [blame] | 82 | |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 83 | # allow self to set SCHED_FIFO |
| 84 | allow surfaceflinger self:capability sys_nice; |
| 85 | allow surfaceflinger proc_meminfo:file r_file_perms; |
| 86 | r_dir_file(surfaceflinger, cgroup) |
| 87 | r_dir_file(surfaceflinger, sysfs_type) |
| 88 | r_dir_file(surfaceflinger, system_file) |
| 89 | allow surfaceflinger tmpfs:dir r_dir_perms; |
| 90 | allow surfaceflinger system_server:fd use; |
| 91 | allow surfaceflinger ion_device:chr_file r_file_perms; |
| 92 | |
Nick Bray | 084faf0 | 2017-02-09 15:15:11 -0800 | [diff] [blame] | 93 | # pdx IPC |
| 94 | pdx_server(surfaceflinger) |
| 95 | |
| 96 | use_pdx(surfaceflinger, bufferhubd) |
| 97 | use_pdx(surfaceflinger, performanced) |
| 98 | use_pdx(surfaceflinger, sensord) |
| 99 | |
Alex Klyubin | 5d30beb | 2017-02-07 10:05:07 -0800 | [diff] [blame] | 100 | ### |
| 101 | ### Neverallow rules |
| 102 | ### |
| 103 | ### surfaceflinger should NEVER do any of this |
| 104 | |
| 105 | # Do not allow accessing SDcard files as unsafe ejection could |
| 106 | # cause the kernel to kill the process. |
| 107 | neverallow surfaceflinger sdcard_type:file rw_file_perms; |