blob: 623391e8bf94afa67ed4bed29f611f3b9a3e2af6 [file] [log] [blame]
Alex Lightb7ebb322016-06-22 15:47:09 -07001# cppreopts
2#
3# This command copies preopted files from the system_b partition to the data
4# partition. This domain ensures that we are only copying into specific
5# directories.
6
7type cppreopts, domain, mlstrustedsubject;
Nick Kralevich5e372712018-09-27 10:21:37 -07008type cppreopts_exec, system_file_type, exec_type, file_type;
Alex Lightb7ebb322016-06-22 15:47:09 -07009
Alex Lightb7ebb322016-06-22 15:47:09 -070010# Allow cppreopts copy files into the dalvik-cache
11allow cppreopts dalvikcache_data_file:dir { add_name remove_name search write };
Alex Light9cd2abc2017-07-25 11:10:47 -070012allow cppreopts dalvikcache_data_file:file { create getattr open read rename write unlink };
Alex Lightb7ebb322016-06-22 15:47:09 -070013
14# Allow cppreopts to execute itself using #!/system/bin/sh
15allow cppreopts shell_exec:file rx_file_perms;
16
17# Allow us to run find on /postinstall
18allow cppreopts system_file:dir { open read };
19
20# Allow running the cp command using cppreopts permissions. Needed so we can
21# write into dalvik-cache
22allow cppreopts toolbox_exec:file rx_file_perms;