diff --git a/property.te b/property.te index 69dff913f4119b079671fe8653726aff0d588191..d0c77a47e1cf210f02d78ce39d9f4c727be11567 100644 --- a/property.te +++ b/property.te @@ -10,3 +10,4 @@ type ctl_rildaemon_prop, property_type; type audio_prop, property_type; type security_prop, property_type; type bluetooth_prop, property_type; +type powerctl_prop, property_type; diff --git a/property_contexts b/property_contexts index e32cdddb7d156ac58bf85d4f3f4111c3c283e035..6c47c9fc0b029dc39b7da1aa7099b00c20ae0aec 100644 --- a/property_contexts +++ b/property_contexts @@ -20,6 +20,7 @@ dev. u:object_r:system_prop:s0 runtime. u:object_r:system_prop:s0 hw. u:object_r:system_prop:s0 sys. u:object_r:system_prop:s0 +sys.powerctl u:object_r:powerctl_prop:s0 service. u:object_r:system_prop:s0 wlan. u:object_r:system_prop:s0 dhcp. u:object_r:system_prop:s0 diff --git a/vold.te b/vold.te index e91d6c39bb8afba881667ece9c82453a53228fd5..fe6c297d0db29fea2e0b8c48ca0be2c52754c28a 100644 --- a/vold.te +++ b/vold.te @@ -1,7 +1,66 @@ # volume manager type vold, domain; -permissive vold; type vold_exec, exec_type, file_type; init_daemon_domain(vold) -unconfined_domain(vold) + +typeattribute vold mlstrustedsubject; +allow vold system_file:file x_file_perms; +allow vold block_device:dir create_dir_perms; +allow vold block_device:blk_file create_file_perms; +allow vold device:dir write; +allow vold devpts:chr_file rw_file_perms; +allow vold rootfs:dir mounton; +allow vold sdcard_type:dir mounton; +allow vold sdcard_type:filesystem { mount remount unmount }; +allow vold sdcard_type:dir create_dir_perms; +allow vold tmpfs:filesystem { mount unmount }; +allow vold tmpfs:dir create_dir_perms; +allow vold tmpfs:dir mounton; +allow vold self:capability { net_admin dac_override mknod sys_admin chown fowner }; +allow vold self:netlink_kobject_uevent_socket *; +allow vold app_data_file:dir search; +allow vold app_data_file:file rw_file_perms; +allow vold loop_device:blk_file rw_file_perms; +allow vold dm_device:chr_file rw_file_perms; +# For vold Process::killProcessesWithOpenFiles function. +allow vold domain:dir r_dir_perms; +allow vold domain:{ file lnk_file } r_file_perms; +allow vold domain:process { signal sigkill }; +allow vold self:capability { sys_ptrace }; + +# XXX Label sysfs files with a specific type? +allow vold sysfs:file rw_file_perms; + +write_klog(vold) + +# +# Rules to support encrypted fs support. +# + +# Set property. +unix_socket_connect(vold, property, init) + +# Unmount and mount the fs. +allow vold labeledfs:filesystem { mount unmount remount }; + +# Access /efs/userdata_footer. +# XXX Split into a separate type? +allow vold efs_file:file rw_file_perms; + +# Create and mount on /data/tmp_mnt. +allow vold system_data_file:dir { create rw_dir_perms mounton }; + +# Set scheduling policy of kernel processes +allow vold kernel:process setsched; + +# Property Service +allow vold vold_prop:property_service set; +allow vold powerctl_prop:property_service set; + +# ASEC +allow vold asec_image_file:file create_file_perms; +allow vold asec_image_file:dir rw_dir_perms; +security_access_policy(vold) +allow vold asec_apk_file:dir { rw_dir_perms setattr }; +allow vold asec_apk_file:file { r_file_perms setattr };