diff --git a/private/genfs_contexts b/private/genfs_contexts index afc671739c872f085233fb5d89a9d39bc5dea932..11b9974f70955fc4d1ec4a42893b018fbf5d9f8e 100644 --- a/private/genfs_contexts +++ b/private/genfs_contexts @@ -99,6 +99,10 @@ genfscon sysfs /devices/system/cpu u:object_r:sysfs_devices_system_cpu:s0 genfscon sysfs /class/android_usb u:object_r:sysfs_android_usb:s0 genfscon sysfs /class/leds u:object_r:sysfs_leds:s0 genfscon sysfs /class/net u:object_r:sysfs_net:s0 +genfscon sysfs /class/rfkill/rfkill0/state u:object_r:sysfs_bluetooth_writable:s0 +genfscon sysfs /class/rfkill/rfkill1/state u:object_r:sysfs_bluetooth_writable:s0 +genfscon sysfs /class/rfkill/rfkill2/state u:object_r:sysfs_bluetooth_writable:s0 +genfscon sysfs /class/rfkill/rfkill3/state u:object_r:sysfs_bluetooth_writable:s0 genfscon sysfs /class/rtc u:object_r:sysfs_rtc:s0 genfscon sysfs /class/switch u:object_r:sysfs_switch:s0 genfscon sysfs /devices/platform/nfc-power/nfc_power u:object_r:sysfs_nfc_power_writable:s0 diff --git a/vendor/file_contexts b/vendor/file_contexts index ded356dca37f540ec8013f20b028b4e6bc199320..20b3b9f52052045df82f542d86547578446f9141 100644 --- a/vendor/file_contexts +++ b/vendor/file_contexts @@ -6,6 +6,7 @@ /(vendor|system/vendor)/bin/hw/android\.hardware\.automotive\.evs@1\.0-service u:object_r:hal_evs_default_exec:s0 /(vendor|system/vendor)/bin/hw/android\.hardware\.automotive\.vehicle@2\.0-service u:object_r:hal_vehicle_default_exec:s0 /(vendor|system/vendor)/bin/hw/android\.hardware\.bluetooth@1\.0-service u:object_r:hal_bluetooth_default_exec:s0 +/(vendor|system/vendor)/bin/hw/android\.hardware\.bluetooth@1\.0-service\.btlinux u:object_r:hal_bluetooth_btlinux_exec:s0 /(vendor|system/vendor)/bin/hw/android\.hardware\.biometrics\.fingerprint@2\.1-service u:object_r:hal_fingerprint_default_exec:s0 /(vendor|system/vendor)/bin/hw/android\.hardware\.boot@1\.0-service u:object_r:hal_bootctl_default_exec:s0 /(vendor|system/vendor)/bin/hw/android\.hardware\.broadcastradio@\d+\.\d+-service u:object_r:hal_broadcastradio_default_exec:s0 diff --git a/vendor/hal_bluetooth_btlinux.te b/vendor/hal_bluetooth_btlinux.te new file mode 100644 index 0000000000000000000000000000000000000000..22d9cf0d0315cc449a2353dadc3a06f642fea2ad --- /dev/null +++ b/vendor/hal_bluetooth_btlinux.te @@ -0,0 +1,8 @@ +type hal_bluetooth_btlinux, domain; +type hal_bluetooth_btlinux_exec, exec_type, file_type, vendor_file_type; + +hal_server_domain(hal_bluetooth_btlinux, hal_bluetooth) +init_daemon_domain(hal_bluetooth_btlinux) + +allow hal_bluetooth_btlinux self:socket { create bind read write }; +allow hal_bluetooth_btlinux self:bluetooth_socket { create bind read write };