diff options
author | Marco Marinho <marcomarinho12@gmail.com> | 2021-11-07 16:59:41 +0000 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-01-20 10:28:00 +0800 |
commit | f6d7bb6ad008e3bdb2f74411b102800c750de242 (patch) | |
tree | e7a012f6dcbb3aa0d4029cbddb55562e37299642 | |
parent | 7d7c2656322aa5ed1cb86e65b0e948e0be971397 (diff) |
sepolicy_vndr: qva: Don't protect vendor_hal_qesdhal_hwservice
QSSI sepolicy grants permissions for untrusted_app to be a client
of the qesd HAL. It is not allowed for all_untrusted_apps to find
protected hwservice, hence don't protect the hwservice.
Change-Id: I7fdfb16c0aa22da9793ac25856ffd45e197456fa
-rw-r--r-- | qva/vendor/common/hwservice.te | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qva/vendor/common/hwservice.te b/qva/vendor/common/hwservice.te index 6d6a408b..fc77e73d 100644 --- a/qva/vendor/common/hwservice.te +++ b/qva/vendor/common/hwservice.te @@ -54,7 +54,7 @@ type vendor_hal_srvctracker_hwservice, hwservice_manager_type, protected_hwservi type vendor_hal_secureprocessor_hwservice, hwservice_manager_type, protected_hwservice; #untrusted_app_visible_hwservice_violators no longer needed as blacklisting of hwservice is changed type vendor_hal_qspmhal_hwservice, hwservice_manager_type; -type vendor_hal_qesdhal_hwservice, hwservice_manager_type, protected_hwservice; +type vendor_hal_qesdhal_hwservice, hwservice_manager_type; type vendor_hal_bluetooth_dun_hwservice, hwservice_manager_type, protected_hwservice; type vendor_hal_qseecom_hwservice, hwservice_manager_type, protected_hwservice; type vendor_hal_qccvndhal_hwservice , hwservice_manager_type, protected_hwservice; |