You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
563 B
18 lines
563 B
4 months ago
|
# idmap, when executed by installd
|
||
|
type idmap, domain;
|
||
|
type idmap_exec, exec_type, file_type;
|
||
|
|
||
|
# Use open file to /data/resource-cache file inherited from installd.
|
||
|
allow idmap installd:fd use;
|
||
|
allow idmap resourcecache_data_file:file { getattr read write };
|
||
|
|
||
|
# Open and read from target and overlay apk files passed by argument.
|
||
|
allow idmap apk_data_file:file r_file_perms;
|
||
|
allow idmap apk_data_file:dir search;
|
||
|
|
||
|
# Allow apps access to /vendor/app
|
||
|
r_dir_file(idmap, vendor_app_file)
|
||
|
|
||
|
# Allow apps access to /vendor/overlay
|
||
|
r_dir_file(idmap, vendor_overlay_file)
|