1# profman 2type profman, domain; 3type profman_exec, exec_type, file_type; 4 5allow profman user_profile_data_file:file { getattr read write lock }; 6 7# Dumping profile info opens the application APK file for pretty printing. 8allow profman asec_apk_file:file { read }; 9allow profman apk_data_file:file { getattr read }; 10allow profman apk_data_file:dir { getattr read search }; 11 12allow profman oemfs:file { read }; 13# Reading an APK opens a ZipArchive, which unpack to tmpfs. 14allow profman tmpfs:file { read }; 15allow profman profman_dump_data_file:file { write }; 16 17allow profman installd:fd use; 18 19# Allow profman to analyze profiles for the secondary dex files. These 20# are application dex files reported back to the framework when using 21# BaseDexClassLoader. 22allow profman app_data_file:file { getattr read write lock }; 23allow profman app_data_file:dir { getattr read search }; 24 25### 26### neverallow rules 27### 28 29neverallow profman app_data_file:notdevfile_class_set open; 30