Merge "Fix installd not having permission to delete storage area keys" into main

This commit is contained in:
Ellen Arteca 2024-05-22 17:03:15 +00:00 committed by Gerrit Code Review
commit 19208cb0e3

View file

@ -227,7 +227,10 @@ allow installd vold:fd use;
# on app uninstall, installd deletes the storage area keys for the app # on app uninstall, installd deletes the storage area keys for the app
is_flag_enabled(RELEASE_UNLOCKED_STORAGE_API, ` is_flag_enabled(RELEASE_UNLOCKED_STORAGE_API, `
allow installd storage_area_key_file:dir { open search write remove_name lock read }; allow installd storage_area_key_file:dir {
open search write remove_name
lock read getattr rmdir
};
allow installd storage_area_key_file:file unlink; allow installd storage_area_key_file:file unlink;
') ')