diff --git a/private/adbd.te b/private/adbd.te index 73302acd169918e36455a07e3703aab478830bc4..80c6a016ffe6c69201fec02ca203e41c3bead7ba 100644 --- a/private/adbd.te +++ b/private/adbd.te @@ -100,6 +100,7 @@ allow adbd system_file:file r_file_perms; allow adbd selinuxfs:dir r_dir_perms; allow adbd selinuxfs:file r_file_perms; allow adbd kernel:security read_policy; +allow adbd service_contexts_file:file r_file_perms; allow adbd surfaceflinger_service:service_manager find; allow adbd bootchart_data_file:dir search; diff --git a/private/file_contexts b/private/file_contexts index 5c0bc67c628eaedac17dc5cc5a891a11012517bc..90df77cc8d981903eff50577bfe11ce70c8c7feb 100644 --- a/private/file_contexts +++ b/private/file_contexts @@ -50,8 +50,8 @@ /nonplat_seapp_contexts u:object_r:rootfs:s0 /plat_seapp_contexts u:object_r:rootfs:s0 /sepolicy u:object_r:rootfs:s0 -/plat_service_contexts u:object_r:rootfs:s0 -/nonplat_service_contexts u:object_r:rootfs:s0 +/plat_service_contexts u:object_r:service_contexts_file:s0 +/nonplat_service_contexts u:object_r:service_contexts_file:s0 ########################## # Devices @@ -250,12 +250,14 @@ /system/bin/vr_wm u:object_r:vr_wm_exec:s0 /system/bin/hw/android\.hidl\.allocator@1\.0-service u:object_r:hal_allocator_default_exec:s0 /system/etc/selinux/plat_property_contexts u:object_r:property_contexts_file:s0 +/system/etc/selinux/plat_service_contexts u:object_r:service_contexts_file:s0 ############################# # Vendor files # /vendor(/.*)? u:object_r:system_file:s0 /vendor/etc/selinux/nonplat_property_contexts u:object_r:property_contexts_file:s0 +/vendor/etc/selinux/nonplat_service_contexts u:object_r:service_contexts_file:s0 ############################# # OEM and ODM files diff --git a/public/file.te b/public/file.te index 91c02bdacc00aef1d686af4ed29df2c592aea77a..e80b17e3da834718a6f8a64edc060ae2da546e2b 100644 --- a/public/file.te +++ b/public/file.te @@ -259,6 +259,9 @@ type gps_control, file_type; # property_contexts file type property_contexts_file, file_type; +# service_contexts file +type service_contexts_file, file_type; + # Allow files to be created in their appropriate filesystems. allow fs_type self:filesystem associate; allow sysfs_type sysfs:filesystem associate; diff --git a/public/servicemanager.te b/public/servicemanager.te index 46b3b0e802702a3a6a2fcc7f8c5d0a5cb1ad6780..7ad32fc6dcf41e58d15a8fdae604712cbfdbd7ba 100644 --- a/public/servicemanager.te +++ b/public/servicemanager.te @@ -11,7 +11,8 @@ type servicemanager_exec, exec_type, file_type; allow servicemanager self:binder set_context_mgr; allow servicemanager { domain -init }:binder transfer; -r_dir_file(servicemanager, rootfs) +# Access to all (system and vendor) service_contexts +allow servicemanager service_contexts_file:file r_file_perms; # Check SELinux permissions. selinux_check_access(servicemanager)