diff --git a/private/system_server.te b/private/system_server.te index 1edea50aabf045a8d5b0f4b8c0a970302e56b210..7c9e2f2c68fb762e8af984de2933a5333eacdb58 100644 --- a/private/system_server.te +++ b/private/system_server.te @@ -745,8 +745,7 @@ userdebug_or_eng(` # For AppFuse. allow system_server vold:fd use; allow system_server fuse_device:chr_file { read write ioctl getattr }; -allow system_server app_fuse_file:dir rw_dir_perms; -allow system_server app_fuse_file:file { read write open getattr append }; +allow system_server app_fuse_file:file { read write getattr }; # For configuring sdcardfs allow system_server configfs:dir { create_dir_perms }; diff --git a/public/app.te b/public/app.te index 549930291c3323ce128cc1e137cfdc7d4bed3295..96b8c07f75b0f7063daa2de30a7e42b677614459 100644 --- a/public/app.te +++ b/public/app.te @@ -55,6 +55,9 @@ allow appdomain system_server:fifo_file rw_file_perms; allow appdomain system_server:unix_stream_socket { read write setopt getattr getopt shutdown }; allow appdomain system_server:tcp_socket { read write getattr getopt shutdown }; +# For AppFuse. +allow appdomain vold:fd use; + # Communication with other apps via fifos allow appdomain appdomain:fifo_file rw_file_perms; diff --git a/public/vold.te b/public/vold.te index 9091b69ad21c9c15cdd7a6844e39f204c38999c9..236604fa0684241cffdb3ad1919e5b53a8b1fb4f 100644 --- a/public/vold.te +++ b/public/vold.te @@ -229,6 +229,8 @@ allow vold fuse_device:chr_file rw_file_perms; allow vold fuse:filesystem { relabelfrom }; allow vold app_fusefs:filesystem { relabelfrom relabelto }; allow vold app_fusefs:filesystem { mount unmount }; +allow vold app_fuse_file:dir rw_dir_perms; +allow vold app_fuse_file:file { read write open getattr append }; # MoveTask.cpp executes cp and rm allow vold toolbox_exec:file rx_file_perms;