non_plat: Label and grant required permissions to VPU devices
- SELinux rules have been decompiled from stock ROM's sepolicy Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com> Change-Id: Ia5b712f2c2f77aa363499788d1201b29f232311e
This commit is contained in:
parent
e4a9991131
commit
a20c39e9f3
@ -283,3 +283,7 @@ typeattribute teei_client_device mlstrustedobject;
|
||||
|
||||
# Keymaster
|
||||
type ut_keymaster_device, dev_type;
|
||||
|
||||
# VPU
|
||||
type vpud_device, dev_type;
|
||||
type vcu_device, dev_type;
|
||||
|
@ -723,3 +723,7 @@
|
||||
/(system\/vendor|vendor)/bin/volte_imcb u:object_r:volte_imcb_exec:s0
|
||||
/(system\/vendor|vendor)/bin/wfca u:object_r:wfca_exec:s0
|
||||
/(system\/vendor|vendor)/bin/xcap u:object_r:xcap_exec:s0
|
||||
|
||||
# VPU
|
||||
/dev/vcu u:object_r:vcu_device:s0
|
||||
/vendor/bin/vpud u:object_r:vpud_native_exec:s0
|
||||
|
44
non_plat/vpud_native.te
Normal file
44
non_plat/vpud_native.te
Normal file
@ -0,0 +1,44 @@
|
||||
type vpud_native_exec, exec_type, file_type, vendor_file_type;
|
||||
type vpud_native, domain;
|
||||
|
||||
init_daemon_domain(vpud_native)
|
||||
|
||||
allow vpud_native ion_device:chr_file { ioctl read write open };
|
||||
allow vpud_native vcu_device:chr_file rw_file_perms;
|
||||
allow vpud_native MTK_SMI_device:chr_file { open read ioctl };
|
||||
allow vpud_native proc:file { ioctl read getattr open };
|
||||
allow vpud_native init:unix_stream_socket connectto;
|
||||
allow vpud_native property_socket:sock_file write;
|
||||
allow vpud_native sysfs_device_tree_model:file r_file_perms;
|
||||
allow vpud_native teei_client_device:chr_file rw_file_perms;
|
||||
allow vpud_native mediaserver:fd use;
|
||||
|
||||
allow vpud_native mtk_hal_power_hwservice:hwservice_manager find;
|
||||
allow vpud_native mtk_hal_power:fd use;
|
||||
binder_call(vpud_native, mtk_hal_power)
|
||||
|
||||
allow vpud_native thermal_manager_data_file:file { read write };
|
||||
allow vpud_native thermalloadalgod:unix_stream_socket connectto;
|
||||
allow vpud_native proc_thermal:file open;
|
||||
|
||||
allow vpud_native proc_m4u:file r_file_perms;
|
||||
allowxperm vpud_native proc_m4u:file ioctl {
|
||||
MTK_M4U_T_ALLOC_MVA
|
||||
MTK_M4U_T_DEALLOC_MVA
|
||||
MTK_M4U_T_CONFIG_PORT
|
||||
MTK_M4U_T_DMA_OP
|
||||
MTK_M4U_T_SEC_INIT
|
||||
MTK_M4U_T_CONFIG_PORT_ARRAY
|
||||
MTK_M4U_T_CACHE_SYNC
|
||||
};
|
||||
|
||||
allow vpud_native vcodec_file:file create_file_perms;
|
||||
allow vpud_native vcodec_file:dir create_dir_perms;
|
||||
|
||||
allow vpud_native vendor_shell_exec:file rx_file_perms;
|
||||
allow vpud_native vendor_toolbox_exec:file rx_file_perms;
|
||||
|
||||
binder_call(vpud_native, hwservicemanager)
|
||||
|
||||
set_prop(vpud_native, hwservicemanager_prop)
|
||||
set_prop(vpud_native, mtk_thermal_config_prop)
|
Loading…
x
Reference in New Issue
Block a user