2017-02-17 01:08:22 +01:00
|
|
|
# HwBinder IPC from clients to server and callbacks
|
|
|
|
binder_call(hal_camera_client, hal_camera_server)
|
|
|
|
binder_call(hal_camera_server, hal_camera_client)
|
2016-12-22 21:55:02 +01:00
|
|
|
|
2022-01-20 09:47:54 +01:00
|
|
|
#binder IPC from client to service manager and callbacks
|
|
|
|
binder_use(hal_camera_server)
|
|
|
|
|
2018-06-06 18:30:18 +02:00
|
|
|
hal_attribute_hwservice(hal_camera, hal_camera_hwservice)
|
2022-01-20 09:47:54 +01:00
|
|
|
hal_attribute_service(hal_camera, hal_camera_service)
|
2017-04-13 19:29:42 +02:00
|
|
|
|
2018-01-24 01:02:34 +01:00
|
|
|
allow hal_camera device:dir r_dir_perms;
|
2016-12-22 21:55:02 +01:00
|
|
|
allow hal_camera video_device:dir r_dir_perms;
|
|
|
|
allow hal_camera video_device:chr_file rw_file_perms;
|
|
|
|
allow hal_camera camera_device:chr_file rw_file_perms;
|
|
|
|
allow hal_camera ion_device:chr_file rw_file_perms;
|
2021-02-16 06:57:42 +01:00
|
|
|
allow hal_camera dmabuf_system_heap_device:chr_file r_file_perms;
|
|
|
|
|
2017-02-17 01:08:22 +01:00
|
|
|
# Both the client and the server need to use the graphics allocator
|
|
|
|
allow { hal_camera_client hal_camera_server } hal_graphics_allocator:fd use;
|
2016-12-22 21:55:02 +01:00
|
|
|
|
2017-02-25 02:45:11 +01:00
|
|
|
# Allow hal_camera to use fd from app,gralloc,and ashmem HAL
|
2017-02-24 02:48:50 +01:00
|
|
|
allow hal_camera { appdomain -isolated_app }:fd use;
|
|
|
|
allow hal_camera surfaceflinger:fd use;
|
2017-03-18 00:51:56 +01:00
|
|
|
allow hal_camera hal_allocator_server:fd use;
|
2016-12-22 21:55:02 +01:00
|
|
|
|
2018-02-26 23:08:21 +01:00
|
|
|
# Needed to provide debug dump output via dumpsys' pipes.
|
|
|
|
allow hal_camera shell:fd use;
|
|
|
|
allow hal_camera shell:fifo_file write;
|
|
|
|
|
2016-12-22 21:55:02 +01:00
|
|
|
###
|
|
|
|
### neverallow rules
|
|
|
|
###
|
|
|
|
|
|
|
|
# hal_camera should never execute any executable without a
|
|
|
|
# domain transition
|
2017-11-21 06:43:25 +01:00
|
|
|
neverallow hal_camera_server { file_type fs_type }:file execute_no_trans;
|
2016-12-22 21:55:02 +01:00
|
|
|
|
|
|
|
# hal_camera should never need network access. Disallow network sockets.
|
2022-01-20 09:47:54 +01:00
|
|
|
neverallow hal_camera_server { domain userdebug_or_eng(`-su') }:{ tcp_socket udp_socket rawip_socket } *;
|
2017-03-14 06:03:10 +01:00
|
|
|
|
2017-04-26 06:06:54 +02:00
|
|
|
# Only camera HAL may directly access the camera hardware
|
2017-03-14 06:03:10 +01:00
|
|
|
neverallow { halserverdomain -hal_camera_server } camera_device:chr_file *;
|