## Policy for system libraries. ######################################## ## ## Execute ldconfig in the ldconfig domain. ## ## ## The type of the process performing this action. ## # interface(`libs_domtrans_ldconfig',` gen_require(` type ldconfig_t, ldconfig_exec_t; class process sigchld; class fd use; class fifo_file rw_file_perms; ') corecmd_search_sbin($1) domain_auto_trans($1,ldconfig_exec_t,ldconfig_t) allow $1 ldconfig_t:fd use; allow ldconfig_t $1:fd use; allow ldconfig_t $1:fifo_file rw_file_perms; allow ldconfig_t $1:process sigchld; ') ######################################## ## ## Execute ldconfig in the ldconfig domain. ## ## ## The type of the process performing this action. ## ## ## The role to allow the ldconfig domain. ## ## ## The type of the terminal allow the ldconfig domain to use. ## # interface(`libs_run_ldconfig',` gen_require(` type ldconfig_t; class chr_file rw_term_perms; ') libs_domtrans_ldconfig($1) role $2 types ldconfig_t; allow ldconfig_t $3:chr_file rw_term_perms; ') ######################################## ## ## Use the dynamic link/loader for automatic loading ## of shared libraries. ## ## ## The type of the process performing this action. ## # interface(`libs_use_ld_so',` gen_require(` type lib_t, ld_so_t, ld_so_cache_t; class dir r_dir_perms; class lnk_file r_file_perms; class file rx_file_perms; ') files_list_etc($1) allow $1 lib_t:dir r_dir_perms; allow $1 lib_t:lnk_file r_file_perms; allow $1 ld_so_t:lnk_file r_file_perms; allow $1 ld_so_t:file rx_file_perms; allow $1 ld_so_cache_t:file r_file_perms; ') ######################################## ## ## Use the dynamic link/loader for automatic loading ## of shared libraries with legacy support. ## ## ## The type of the process performing this action. ## # interface(`libs_legacy_use_ld_so',` gen_require(` type ld_so_t, ld_so_cache_t; class file { execute execmod }; ') libs_use_ld_so($1) allow $1 ld_so_t:file execmod; allow $1 ld_so_cache_t:file execute; ') ######################################## ## ## Execute the dynamic link/loader in the caller's domain. ## ## ## The type of the process performing this action. ## # interface(`libs_exec_ld_so',` gen_require(` type lib_t, ld_so_t; class dir r_dir_perms; class lnk_file r_file_perms; ') allow $1 lib_t:dir r_dir_perms; allow $1 lib_t:lnk_file r_file_perms; allow $1 ld_so_t:lnk_file r_file_perms; can_exec($1,ld_so_t) ') ######################################## ## ## Modify the dynamic link/loader's cached listing ## of shared libraries. ## ## ## The type of the process performing this action. ## # interface(`libs_rw_ld_so_cache',` gen_require(` type ld_so_cache_t; class file rw_file_perms; ') files_list_etc($1) allow $1 ld_so_cache_t:file rw_file_perms; ') ######################################## ## ## Search lib directories. ## ## ## The type of the process performing this action. ## # interface(`libs_search_lib',` gen_require(` type lib_t; class dir search; ') allow $1 lib_t:dir search; ') ######################################## ## ## Read files in the library directories, such ## as static libraries. ## ## ## The type of the process performing this action. ## # interface(`libs_read_lib',` gen_require(` type lib_t; class dir r_dir_perms; class lnk_file r_file_perms; class file r_file_perms; ') files_search_usr($1) allow $1 lib_t:dir r_dir_perms; allow $1 lib_t:{ file lnk_file } r_file_perms; ') ######################################## ## ## Execute library scripts in the caller domain. ## ## ## The type of the process performing this action. ## # interface(`libs_exec_lib_files',` gen_require(` type lib_t; class dir r_dir_perms; class lnk_file r_file_perms; ') files_search_usr($1) allow $1 lib_t:dir r_dir_perms; allow $1 lib_t:lnk_file r_file_perms; can_exec($1,lib_t) ') ######################################## ## ## Load and execute functions from generic ## lib files as shared libraries. ## ## ## The type of the process performing this action. ## # interface(`libs_use_lib',` gen_require(` type lib_t; ') files_list_usr($1) allow $1 lib_t:dir r_dir_perms; allow $1 lib_t:lnk_file r_file_perms; allow $1 lib_t:file rx_file_perms; ') ######################################## ## ## Relabel files to the type used in library directories. ## ## ## The type of the process performing this action. ## # interface(`libs_relabelto_lib_files',` gen_require(` type lib_t; class file relabelto; ') allow $1 lib_t:file relabelto; ') ######################################## ## ## Load and execute functions from shared libraries. ## ## ## The type of the process performing this action. ## # interface(`libs_use_shared_libs',` gen_require(` type lib_t, shlib_t, texrel_shlib_t; ') files_list_usr($1) allow $1 lib_t:dir r_dir_perms; allow $1 lib_t:lnk_file r_file_perms; allow $1 { shlib_t texrel_shlib_t }:lnk_file r_file_perms; allow $1 { shlib_t texrel_shlib_t }:file rx_file_perms; allow $1 texrel_shlib_t:file execmod; ') ######################################## ## ## Load and execute functions from shared libraries, ## with legacy support. ## ## ## The type of the process performing this action. ## # interface(`libs_legacy_use_shared_libs',` gen_require(` type shlib_t, texrel_shlib_t; class file execmod; ') libs_use_shared_libs($1) allow $1 { shlib_t texrel_shlib_t }:file execmod; ')