From a0c3416b2a0fa6ad22aaf9b932aaad435b4f2fc5 Mon Sep 17 00:00:00 2001 From: Dmitry Shmidt Date: Thu, 5 Apr 2018 12:46:05 -0700 Subject: [PATCH] btlinux: Move HAL definitions from system/bt Test: ls -laZ /vendor/bin/hw/android.hardware.bluetooth* Change-Id: I394594ad041f87583ca6b5b44d836cfab5da8103 Signed-off-by: Dmitry Shmidt Merged-In: I394594ad041f87583ca6b5b44d836cfab5da8103 --- private/genfs_contexts | 4 ++++ vendor/file_contexts | 1 + vendor/hal_bluetooth_btlinux.te | 8 ++++++++ 3 files changed, 13 insertions(+) create mode 100644 vendor/hal_bluetooth_btlinux.te diff --git a/private/genfs_contexts b/private/genfs_contexts index afc671739..11b9974f7 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 ded356dca..20b3b9f52 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 000000000..22d9cf0d0 --- /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 };