• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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;
8type cppreopts_exec, exec_type, file_type;
9
10# Technically not a daemon but we do want the transition from init domain to
11# cppreopts to occur.
12init_daemon_domain(cppreopts)
13
14domain_auto_trans(cppreopts, preopt2cachename_exec, preopt2cachename);
15
16# Allow cppreopts copy files into the dalvik-cache
17allow cppreopts dalvikcache_data_file:dir { add_name remove_name search write };
18allow cppreopts dalvikcache_data_file:file { create getattr open read rename write };
19
20# Allow cppreopts to execute itself using #!/system/bin/sh
21allow cppreopts shell_exec:file rx_file_perms;
22
23# Allow us to run find on /postinstall
24allow cppreopts system_file:dir { open read };
25
26# Allow running the cp command using cppreopts permissions. Needed so we can
27# write into dalvik-cache
28allow cppreopts toolbox_exec:file rx_file_perms;
29