2006-01-11 23:20:28 +00:00
|
|
|
## <summary>Prelink ELF shared library mappings.</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute the prelink program in the prelink domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`prelink_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type prelink_t, prelink_exec_t;
|
|
|
|
')
|
|
|
|
|
2007-03-23 23:24:59 +00:00
|
|
|
corecmd_search_bin($1)
|
2006-12-12 20:08:08 +00:00
|
|
|
domtrans_pattern($1, prelink_exec_t, prelink_t)
|
2006-01-11 23:20:28 +00:00
|
|
|
')
|
|
|
|
|
2007-10-02 16:04:50 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute the prelink program in the prelink domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
|
|
|
## <summary>
|
|
|
|
## The role to allow the prelink domain.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
## <rolecap/>
|
|
|
|
#
|
|
|
|
interface(`prelink_run',`
|
|
|
|
gen_require(`
|
|
|
|
type prelink_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
prelink_domtrans($1)
|
|
|
|
role $2 types prelink_t;
|
|
|
|
')
|
|
|
|
|
2006-01-11 23:20:28 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Make the specified file type prelinkable.
|
|
|
|
## </summary>
|
|
|
|
## <param name="file_type">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## File type to be prelinked.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
# cjp: added for misc non-entrypoint objects
|
|
|
|
interface(`prelink_object_file',`
|
|
|
|
gen_require(`
|
|
|
|
attribute prelink_object;
|
|
|
|
')
|
|
|
|
|
|
|
|
typeattribute $1 prelink_object;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read the prelink cache.
|
|
|
|
## </summary>
|
|
|
|
## <param name="file_type">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`prelink_read_cache',`
|
|
|
|
gen_require(`
|
|
|
|
type prelink_cache_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_etc($1)
|
2008-10-20 16:10:42 +00:00
|
|
|
allow $1 prelink_cache_t:file read_file_perms;
|
2006-01-11 23:20:28 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Delete the prelink cache.
|
|
|
|
## </summary>
|
|
|
|
## <param name="file_type">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`prelink_delete_cache',`
|
|
|
|
gen_require(`
|
|
|
|
type prelink_cache_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 prelink_cache_t:file unlink;
|
2006-09-28 14:37:29 +00:00
|
|
|
files_rw_etc_dirs($1)
|
2006-01-11 23:20:28 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and delete
|
|
|
|
## prelink log files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="file_type">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`prelink_manage_log',`
|
|
|
|
gen_require(`
|
|
|
|
type prelink_log_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
logging_search_logs($1)
|
2008-07-23 21:38:39 +00:00
|
|
|
manage_files_pattern($1, prelink_log_t, prelink_log_t)
|
2006-01-11 23:20:28 +00:00
|
|
|
')
|
2009-07-20 15:34:46 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and delete
|
|
|
|
## prelink var_lib files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="file_type">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`prelink_manage_lib',`
|
|
|
|
gen_require(`
|
|
|
|
type prelink_var_lib_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
files_search_var_lib($1)
|
|
|
|
manage_files_pattern($1, prelink_var_lib_t, prelink_var_lib_t)
|
|
|
|
')
|