Chris PeBenito 2c2435
## <summary>Prelink ELF shared library mappings.</summary>
Chris PeBenito 2c2435
Chris PeBenito 2c2435
########################################
Chris PeBenito 2c2435
## <summary>
Chris PeBenito 2c2435
##	Execute the prelink program in the prelink domain.
Chris PeBenito 2c2435
## </summary>
Chris PeBenito 2c2435
## <param name="domain">
Chris PeBenito 885b83
##	<summary>
Chris PeBenito 2c2435
##	Domain allowed access.
Chris PeBenito 885b83
##	</summary>
Chris PeBenito 2c2435
## </param>
Chris PeBenito 2c2435
#
Chris PeBenito 2c2435
interface(`prelink_domtrans',`
Chris PeBenito 2c2435
	gen_require(`
Chris PeBenito 2c2435
		type prelink_t, prelink_exec_t;
Chris PeBenito 2c2435
	')
Chris PeBenito 2c2435
Chris PeBenito 8021cb
	corecmd_search_bin($1)
Chris PeBenito c0868a
	domtrans_pattern($1, prelink_exec_t, prelink_t)
Chris PeBenito 2c2435
')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
########################################
Chris PeBenito 2c2435
## <summary>
Chris PeBenito 350b6a
##	Execute the prelink program in the prelink domain.
Chris PeBenito 350b6a
## </summary>
Chris PeBenito 350b6a
## <param name="domain">
Chris PeBenito 350b6a
##	<summary>
Chris PeBenito 350b6a
##	Domain allowed access.
Chris PeBenito 350b6a
##	</summary>
Chris PeBenito 350b6a
## </param>
Chris PeBenito 350b6a
## <param name="role">
Chris PeBenito 350b6a
##	<summary>
Chris PeBenito 350b6a
##	The role to allow the prelink domain.
Chris PeBenito 350b6a
##	</summary>
Chris PeBenito 350b6a
## </param>
Chris PeBenito 350b6a
## <param name="terminal">
Chris PeBenito 350b6a
##	<summary>
Chris PeBenito 350b6a
##	The type of the terminal allow the prelink domain to use.
Chris PeBenito 350b6a
##	</summary>
Chris PeBenito 350b6a
## </param>
Chris PeBenito 350b6a
## <rolecap/>
Chris PeBenito 350b6a
#
Chris PeBenito 350b6a
interface(`prelink_run',`
Chris PeBenito 350b6a
	gen_require(`
Chris PeBenito 350b6a
		type prelink_t;
Chris PeBenito 350b6a
	')
Chris PeBenito 350b6a
Chris PeBenito 350b6a
	prelink_domtrans($1)
Chris PeBenito 350b6a
	role $2 types prelink_t;
Chris PeBenito 350b6a
	allow prelink_t $3:chr_file rw_term_perms;
Chris PeBenito 350b6a
')
Chris PeBenito 350b6a
Chris PeBenito 350b6a
########################################
Chris PeBenito 350b6a
## <summary>
Chris PeBenito 2c2435
##	Make the specified file type prelinkable.
Chris PeBenito 2c2435
## </summary>
Chris PeBenito 2c2435
## <param name="file_type">
Chris PeBenito 885b83
##	<summary>
Chris PeBenito 2c2435
##	File type to be prelinked.
Chris PeBenito 885b83
##	</summary>
Chris PeBenito 2c2435
## </param>
Chris PeBenito 2c2435
#
Chris PeBenito 2c2435
# cjp: added for misc non-entrypoint objects
Chris PeBenito 2c2435
interface(`prelink_object_file',`
Chris PeBenito 2c2435
	gen_require(`
Chris PeBenito 2c2435
		attribute prelink_object;
Chris PeBenito 2c2435
	')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
	typeattribute $1 prelink_object;
Chris PeBenito 2c2435
')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
########################################
Chris PeBenito 2c2435
## <summary>
Chris PeBenito 2c2435
##	Read the prelink cache.
Chris PeBenito 2c2435
## </summary>
Chris PeBenito 2c2435
## <param name="file_type">
Chris PeBenito 885b83
##	<summary>
Chris PeBenito 2c2435
##	Domain allowed access.
Chris PeBenito 885b83
##	</summary>
Chris PeBenito 2c2435
## </param>
Chris PeBenito 2c2435
#
Chris PeBenito 2c2435
interface(`prelink_read_cache',`
Chris PeBenito 2c2435
	gen_require(`
Chris PeBenito 2c2435
		type prelink_cache_t;
Chris PeBenito 2c2435
	')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
	files_search_etc($1)
Chris PeBenito 2c2435
	allow $1 prelink_cache_t:file { getattr read };
Chris PeBenito 2c2435
')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
########################################
Chris PeBenito 2c2435
## <summary>
Chris PeBenito 2c2435
##	Delete the prelink cache.
Chris PeBenito 2c2435
## </summary>
Chris PeBenito 2c2435
## <param name="file_type">
Chris PeBenito 885b83
##	<summary>
Chris PeBenito 2c2435
##	Domain allowed access.
Chris PeBenito 885b83
##	</summary>
Chris PeBenito 2c2435
## </param>
Chris PeBenito 2c2435
#
Chris PeBenito 2c2435
interface(`prelink_delete_cache',`
Chris PeBenito 2c2435
	gen_require(`
Chris PeBenito 2c2435
		type prelink_cache_t;
Chris PeBenito 2c2435
	')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
	allow $1 prelink_cache_t:file unlink;
Chris PeBenito e2b84e
	files_rw_etc_dirs($1)
Chris PeBenito 2c2435
')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
########################################
Chris PeBenito 2c2435
## <summary>
Chris PeBenito 2c2435
##	Create, read, write, and delete
Chris PeBenito 2c2435
##	prelink log files.
Chris PeBenito 2c2435
## </summary>
Chris PeBenito 2c2435
## <param name="file_type">
Chris PeBenito 885b83
##	<summary>
Chris PeBenito 2c2435
##	Domain allowed access.
Chris PeBenito 885b83
##	</summary>
Chris PeBenito 2c2435
## </param>
Chris PeBenito 2c2435
#
Chris PeBenito 2c2435
interface(`prelink_manage_log',`
Chris PeBenito 2c2435
	gen_require(`
Chris PeBenito 2c2435
		type prelink_log_t;
Chris PeBenito 2c2435
	')
Chris PeBenito 2c2435
Chris PeBenito 2c2435
	logging_search_logs($1)
Chris PeBenito 0bfccd
	manage_files_pattern($1, prelink_log_t, prelink_log_t)
Chris PeBenito 2c2435
')