2005-05-23 15:45:53 +00:00
|
|
|
## <summary>Policy for system libraries.</summary>
|
|
|
|
|
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Execute ldconfig in the ldconfig domain.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-05-23 15:45:53 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_domtrans_ldconfig',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type ldconfig_t, ldconfig_exec_t;
|
|
|
|
class process sigchld;
|
|
|
|
class fd use;
|
|
|
|
class fifo_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
corecmd_search_sbin($1)
|
2005-06-10 01:01:13 +00:00
|
|
|
domain_auto_trans($1,ldconfig_exec_t,ldconfig_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
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;
|
2005-05-23 15:45:53 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Execute ldconfig in the ldconfig domain.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## The role to allow the ldconfig domain.
|
|
|
|
## </param>
|
|
|
|
## <param name="terminal">
|
|
|
|
## The type of the terminal allow the ldconfig domain to use.
|
|
|
|
## </param>
|
2005-05-23 15:45:53 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_run_ldconfig',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type ldconfig_t;
|
|
|
|
class chr_file rw_term_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
libs_domtrans_ldconfig($1)
|
2005-06-03 12:25:14 +00:00
|
|
|
role $2 types ldconfig_t;
|
2005-06-17 17:59:26 +00:00
|
|
|
allow ldconfig_t $3:chr_file rw_term_perms;
|
2005-05-23 15:45:53 +00:00
|
|
|
')
|
2005-04-20 19:07:16 +00:00
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Use the dynamic link/loader for automatic loading
|
|
|
|
## of shared libraries.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_use_ld_so',`
|
2005-06-17 17:59:26 +00:00
|
|
|
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)
|
2005-06-03 12:25:14 +00:00
|
|
|
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;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-04-26 19:10:29 +00:00
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Use the dynamic link/loader for automatic loading
|
|
|
|
## of shared libraries with legacy support.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-04-26 19:10:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_legacy_use_ld_so',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type ld_so_t, ld_so_cache_t;
|
|
|
|
class file { execute execmod };
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
libs_use_ld_so($1)
|
2005-06-03 12:25:14 +00:00
|
|
|
allow $1 ld_so_t:file execmod;
|
|
|
|
allow $1 ld_so_cache_t:file execute;
|
2005-04-26 19:10:29 +00:00
|
|
|
')
|
|
|
|
|
2005-05-12 20:50:09 +00:00
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute the dynamic link/loader in the caller's domain.
|
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-05-12 20:50:09 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_exec_ld_so',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lib_t, ld_so_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
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;
|
2005-06-17 17:59:26 +00:00
|
|
|
can_exec($1,ld_so_t)
|
2005-05-12 20:50:09 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Modify the dynamic link/loader's cached listing
|
|
|
|
## of shared libraries.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_rw_ld_so_cache',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type ld_so_cache_t;
|
|
|
|
class file rw_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
files_list_etc($1)
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 ld_so_cache_t:file rw_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Search lib directories.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-06-17 17:59:26 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_search_lib',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lib_t;
|
|
|
|
class dir search;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
allow $1 lib_t:dir search;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Read files in the library directories, such
|
|
|
|
## as static libraries.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_read_lib',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lib_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
class file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
files_search_usr($1)
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 lib_t:dir r_dir_perms;
|
|
|
|
allow $1 lib_t:{ file lnk_file } r_file_perms;
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Execute library scripts in the caller domain.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_exec_lib_files',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lib_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
files_search_usr($1)
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 lib_t:dir r_dir_perms;
|
2005-06-10 01:01:13 +00:00
|
|
|
allow $1 lib_t:lnk_file r_file_perms;
|
2005-06-17 17:59:26 +00:00
|
|
|
can_exec($1,lib_t)
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Load and execute functions from shared libraries.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_use_shared_libs',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type lib_t, shlib_t, texrel_shlib_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
class file rx_dir_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
files_search_usr($1)
|
2005-06-03 12:25:14 +00:00
|
|
|
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;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-24 13:36:57 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Load and execute functions from shared libraries,
|
|
|
|
## with legacy support.
|
2005-06-24 13:36:57 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-04-26 19:10:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`libs_legacy_use_shared_libs',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type shlib_t, texrel_shlib_t;
|
|
|
|
class file execmod;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
libs_use_shared_libs($1)
|
2005-06-03 12:25:14 +00:00
|
|
|
allow $1 { shlib_t texrel_shlib_t }:file execmod;
|
2005-04-26 19:10:29 +00:00
|
|
|
')
|
|
|
|
|