Skip to content
Snippets Groups Projects
Commit 9a3d1c6b authored by Jeff Vander Stoep's avatar Jeff Vander Stoep
Browse files

Perms back to domain

allow reading symlinks in /data and getattr in /system

Change-Id: I8cc9ca056725cf10ebfeef474ebf9c80c5300a73
parent 9b2b4472
No related branches found
No related tags found
No related merge requests found
...@@ -84,12 +84,13 @@ allow domain vold:key search; ...@@ -84,12 +84,13 @@ allow domain vold:key search;
write_logd(domain) write_logd(domain)
# System file accesses. # System file accesses.
allow domain system_file:dir search; allow domain system_file:dir { search getattr };
allow domain system_file:file { execute read open getattr }; allow domain system_file:file { execute read open getattr };
allow domain system_file:lnk_file read; allow domain system_file:lnk_file read;
# files under /data. # files under /data.
allow domain system_data_file:dir { search getattr }; allow domain system_data_file:dir { search getattr };
allow domain system_data_file:lnk_file read;
# required by the dynamic linker # required by the dynamic linker
allow domain proc:lnk_file read; allow domain proc:lnk_file 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