Skip to content
Snippets Groups Projects
Commit 99b40521 authored by Sharif Inamdar's avatar Sharif Inamdar Committed by Nick Kralevich
Browse files

Allow system_app to access /data/data link files

system_app tries to access files in /data/data (lnk_files).
But due to permission issue it is not able to access the
link files.

Change-Id: I2959d899f5e3ab9caa219d684541d36587a6c059
parent 9dc5956f
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ binder_service(system_app) ...@@ -10,7 +10,7 @@ binder_service(system_app)
# Read and write /data/data subdirectory. # Read and write /data/data subdirectory.
allow system_app system_app_data_file:dir create_dir_perms; allow system_app system_app_data_file:dir create_dir_perms;
allow system_app system_app_data_file:file create_file_perms; allow system_app system_app_data_file:{ file lnk_file } create_file_perms;
# Read /data/misc/keychain subdirectory. # Read /data/misc/keychain subdirectory.
allow system_app keychain_data_file:dir r_dir_perms; allow system_app keychain_data_file:dir r_dir_perms;
......
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