installd.te 3.29 KB
Newer Older
Stephen Smalley's avatar
Stephen Smalley committed
1 2 3 4 5
# installer daemon
type installd, domain;
type installd_exec, exec_type, file_type;

init_daemon_domain(installd)
6 7 8
typeattribute installd mlstrustedsubject;
allow installd self:capability { chown dac_override fowner fsetid setgid setuid };
allow installd apk_data_file:file r_file_perms;
9
allow installd asec_apk_file:file r_file_perms;
10
allow installd apk_tmp_file:file r_file_perms;
Jeff Sharkey's avatar
Jeff Sharkey committed
11 12
allow installd oemfs:dir r_dir_perms;
allow installd oemfs:file r_file_perms;
13 14 15 16 17 18
allow installd system_file:file x_file_perms;
allow installd cgroup:dir create_dir_perms;
# Check validity of SELinux context before use.
selinux_check_context(installd)
# Read /seapp_contexts and /data/security/seapp_contexts
security_access_policy(installd)
19

20 21 22
# Search /data/app-asec.
allow installd asec_image_file:dir search;

23 24 25 26 27 28 29 30 31
# Create /data/user and /data/user/0 if necessary.
# Also required to initially create /data/data subdirectories
# and lib symlinks before the setfilecon call.  May want to
# move symlink creation after setfilecon in installd.
allow installd system_data_file:dir create_dir_perms;
allow installd system_data_file:lnk_file { create setattr unlink };

# Upgrade /data/media for multi-user if necessary.
allow installd media_rw_data_file:dir create_dir_perms;
32
allow installd media_rw_data_file:file unlink;
33
# restorecon new /data/media directory.
34
allow installd system_data_file:dir relabelfrom;
35 36 37
allow installd media_rw_data_file:dir relabelto;

# Create /data/.layout_version.* file
38 39
type_transition installd system_data_file:file install_data_file;
allow installd install_data_file:file create_file_perms;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

# Create files under /data/dalvik-cache.
allow installd dalvikcache_data_file:dir create_dir_perms;
allow installd dalvikcache_data_file:file create_file_perms;

# Create /data/dalvik-cache/profiles.
allow installd dalvikcache_data_file:dir relabelfrom;
allow installd dalvikcache_profiles_data_file:dir relabelto;
allow installd dalvikcache_profiles_data_file:dir rw_dir_perms;
allow installd dalvikcache_profiles_data_file:file create_file_perms;

# Upgrade from unlabeled userdata.
# Just need enough to relabel it.
allow installd unlabeled:dir { getattr search relabelfrom };
allow installd unlabeled:notdevfile_class_set { getattr relabelfrom };

# Upgrade from before system_app_data_file was used for system UID apps.
57
# Just need enough to relabel it and to unlink removed package files.
58
# Directory access covered by earlier rule above.
59
allow installd system_data_file:notdevfile_class_set { getattr relabelfrom unlink };
60 61 62 63 64 65 66

# Manage /data/data subdirectories, including initially labeling them
# upon creation via setfilecon or running restorecon_recursive,
# setting owner/mode, creating symlinks within them, and deleting them
# upon package uninstall.
# Types extracted from seapp_contexts type= fields.
allow installd { system_app_data_file bluetooth_data_file nfc_data_file radio_data_file shell_data_file app_data_file }:dir { create_dir_perms relabelfrom relabelto };
67 68
allow installd { system_app_data_file bluetooth_data_file nfc_data_file radio_data_file shell_data_file app_data_file }:lnk_file { create setattr getattr unlink rename relabelfrom relabelto };
allow installd { system_app_data_file bluetooth_data_file nfc_data_file radio_data_file shell_data_file app_data_file }:{ file sock_file fifo_file } { getattr unlink rename relabelfrom relabelto };