cppreopts.te 1.0 KB

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