Skip to content
Snippets Groups Projects
Commit b525fd0b authored by Sandeep Patil's avatar Sandeep Patil Committed by android-build-merger
Browse files

Merge "untrusted_apps: allow untrusted_apps to execute from /vendor/app" into oc-dev

am: 11772818

Change-Id: Ia8e5462edc9038be7142331cfb524efd4f0e2edf
parents f7e9cee6 11772818
No related branches found
No related tags found
No related merge requests found
......@@ -96,3 +96,11 @@ allow untrusted_app_all sysfs_hwrandom:file r_file_perms;
allow untrusted_app_all preloads_media_file:dir r_dir_perms;
allow untrusted_app_all preloads_media_file:file r_file_perms;
allow untrusted_app_all preloads_data_file:dir search;
# Allow untrusted apps read / execute access to /vendor/app for there can
# be pre-installed vendor apps that package a library within themselves.
# TODO (b/37784178) Consider creating a special type for /vendor/app installed
# apps.
allow untrusted_app_all vendor_app_file:dir { open getattr read search };
allow untrusted_app_all vendor_app_file:file { open getattr read execute };
allow untrusted_app_all vendor_app_file:lnk_file { open getattr read };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment