]> git.ipfire.org Git - people/stevee/selinux-policy.git/blame - policy/modules/system/libraries.te
trunk: whitespace fix changing multiple spaces into tabs.
[people/stevee/selinux-policy.git] / policy / modules / system / libraries.te
CommitLineData
e181fe05 1
296273a7 2policy_module(libraries, 2.3.1)
960373dd 3
48e0dbd6
CP
4########################################
5#
6# Declarations
7#
8
b4cd1533
CP
9#
10# ld_so_cache_t is the type of /etc/ld.so.cache.
11#
12type ld_so_cache_t;
8fd36732 13files_type(ld_so_cache_t)
b4cd1533 14
48e0dbd6 15#
b4cd1533
CP
16# ld_so_t is the type of the system dynamic loaders.
17#
18type ld_so_t;
8fd36732 19files_type(ld_so_t)
b4cd1533 20
19b2dee3
CP
21type ldconfig_t;
22type ldconfig_exec_t;
23init_system_domain(ldconfig_t,ldconfig_exec_t)
24role system_r types ldconfig_t;
25
9c4500b2
CP
26type ldconfig_cache_t;
27files_type(ldconfig_cache_t)
28
19b2dee3
CP
29type ldconfig_tmp_t;
30files_tmp_file(ldconfig_tmp_t)
31
b4cd1533
CP
32#
33# lib_t is the type of files in the system lib directories.
34#
350b6ab7 35type lib_t alias shlib_t;
8fd36732 36files_type(lib_t)
b4cd1533 37
b4cd1533 38#
0c4bf1c5 39# textrel_shlib_t is the type of shared objects in the system lib
b4cd1533
CP
40# directories, which require text relocation.
41#
a324ef13
CP
42type textrel_shlib_t alias texrel_shlib_t;
43files_type(textrel_shlib_t)
48e0dbd6 44
e8cb08ae
CP
45optional_policy(`
46 postgresql_loadable_module(lib_t)
47 postgresql_loadable_module(textrel_shlib_t)
48')
49
48e0dbd6
CP
50########################################
51#
52# ldconfig local policy
53#
19b2dee3
CP
54
55allow ldconfig_t self:capability sys_chroot;
48e0dbd6 56
9c4500b2
CP
57manage_files_pattern(ldconfig_t, ldconfig_cache_t, ldconfig_cache_t)
58
c0868a7a 59allow ldconfig_t ld_so_cache_t:file manage_file_perms;
103fe280 60files_etc_filetrans(ldconfig_t,ld_so_cache_t,file)
48e0dbd6 61
19b2dee3
CP
62manage_dirs_pattern(ldconfig_t,ldconfig_tmp_t,ldconfig_tmp_t)
63manage_files_pattern(ldconfig_t,ldconfig_tmp_t,ldconfig_tmp_t)
d534d35a
CP
64manage_lnk_files_pattern(ldconfig_t,ldconfig_tmp_t,ldconfig_tmp_t)
65files_tmp_filetrans(ldconfig_t, ldconfig_tmp_t, { file dir lnk_file })
19b2dee3 66
c0868a7a 67manage_lnk_files_pattern(ldconfig_t,lib_t,lib_t)
48e0dbd6
CP
68
69kernel_read_system_state(ldconfig_t)
70
0fd9dc55 71fs_getattr_xattr_fs(ldconfig_t)
48e0dbd6 72
15722ec9 73domain_use_interactive_fds(ldconfig_t)
48e0dbd6 74
7a2f20a3 75files_search_var_lib(ldconfig_t)
8fd36732 76files_read_etc_files(ldconfig_t)
ebdc3b79 77files_search_tmp(ldconfig_t)
b0d2243c 78files_search_usr(ldconfig_t)
48e0dbd6 79# for when /etc/ld.so.cache is mislabeled:
8fd36732 80files_delete_etc_files(ldconfig_t)
48e0dbd6 81
1815bad1 82init_use_script_ptys(ldconfig_t)
48e0dbd6 83
19b2dee3
CP
84miscfiles_read_localization(ldconfig_t)
85
c9428d33 86logging_send_syslog_msg(ldconfig_t)
48e0dbd6 87
296273a7 88userdom_use_user_terminals(ldconfig_t)
15722ec9 89userdom_use_all_users_fds(ldconfig_t)
48e0dbd6 90
12cf805e
CP
91ifdef(`distro_ubuntu',`
92 optional_policy(`
93 unconfined_domain(ldconfig_t)
94 ')
95')
96
a42ca7eb 97ifdef(`hide_broken_symptoms',`
bb7170f6 98 optional_policy(`
1815bad1 99 unconfined_dontaudit_rw_tcp_sockets(ldconfig_t)
0c73cd25 100 ')
48e0dbd6
CP
101')
102
bb7170f6 103optional_policy(`
a42ca7eb 104 # dontaudit access to /usr/lib/apache, normal programs cannot read these libs anyway
c6d4c8f1 105 apache_dontaudit_search_modules(ldconfig_t)
a42ca7eb 106')
82e284bb 107
e065ac8a
CP
108optional_policy(`
109 apt_rw_pipes(ldconfig_t)
110 apt_use_fds(ldconfig_t)
111 apt_use_ptys(ldconfig_t)
112')
113
82e284bb
CP
114optional_policy(`
115 # When you install a kernel the postinstall builds a initrd image in tmp
116 # and executes ldconfig on it. If you dont allow this kernel installs
117 # blow up.
118 rpm_manage_script_tmp_files(ldconfig_t)
119')