Chris PeBenito 992aba
## <summary>Policy for the RPM package manager.</summary>
Chris PeBenito 992aba
Chris PeBenito 992aba
########################################
Chris PeBenito ebdc3b
## <summary>
Chris PeBenito 414e41
##	Execute rpm programs in the rpm domain.
Chris PeBenito ebdc3b
## </summary>
Chris PeBenito 414e41
## <param name="domain">
Chris PeBenito 414e41
##	The type of the process performing this action.
Chris PeBenito 414e41
## </param>
Chris PeBenito 992aba
#
Chris PeBenito 199895
interface(`rpm_domtrans',`
Chris PeBenito 7f2e39
	gen_require(`
Chris PeBenito 7f2e39
		type rpm_t, rpm_exec_t;
Chris PeBenito 7f2e39
		class process sigchld;
Chris PeBenito 7f2e39
		class fd use;
Chris PeBenito 7f2e39
		class fifo_file rw_file_perms;
Chris PeBenito 7f2e39
	')
Chris PeBenito 0c73cd
Chris PeBenito 7f2e39
	files_search_usr($1)
Chris PeBenito 7f2e39
	corecmd_search_bin($1)
Chris PeBenito 7f2e39
	domain_auto_trans($1,rpm_exec_t,rpm_t)
Chris PeBenito 0c73cd
Chris PeBenito 0c73cd
	allow $1 rpm_t:fd use;
Chris PeBenito 0c73cd
	allow rpm_t $1:fd use;
Chris PeBenito 0c73cd
	allow rpm_t $1:fifo_file rw_file_perms;
Chris PeBenito 0c73cd
	allow rpm_t $1:process sigchld;
Chris PeBenito 992aba
')
Chris PeBenito 992aba
Chris PeBenito 992aba
########################################
Chris PeBenito ebdc3b
## <summary>
Chris PeBenito 414e41
##	Execute RPM programs in the RPM domain.
Chris PeBenito ebdc3b
## </summary>
Chris PeBenito 414e41
## <param name="domain">
Chris PeBenito 414e41
##	The type of the process performing this action.
Chris PeBenito 414e41
## </param>
Chris PeBenito 414e41
## <param name="role">
Chris PeBenito 414e41
##	The role to allow the RPM domain.
Chris PeBenito 414e41
## </param>
Chris PeBenito 414e41
## <param name="terminal">
Chris PeBenito 414e41
##	The type of the terminal allow the RPM domain to use.
Chris PeBenito 414e41
## </param>
Chris PeBenito 992aba
#
Chris PeBenito 199895
interface(`rpm_run',`
Chris PeBenito 7f2e39
	gen_require(`
Chris PeBenito 7f2e39
		type rpm_t, rpm_script_t;
Chris PeBenito 7f2e39
		class chr_file rw_term_perms;
Chris PeBenito 7f2e39
	')
Chris PeBenito 0c73cd
Chris PeBenito c9428d
	rpm_domtrans($1)
Chris PeBenito 0c73cd
	role $2 types rpm_t;
Chris PeBenito 0c73cd
	role $2 types rpm_script_t;
Chris PeBenito 7f2e39
	allow rpm_t $3:chr_file rw_term_perms;
Chris PeBenito 992aba
')
Chris PeBenito 992aba
Chris PeBenito 992aba
########################################
Chris PeBenito ebdc3b
## <summary>
Chris PeBenito 414e41
##	Inherit and use file descriptors from RPM.
Chris PeBenito ebdc3b
## </summary>
Chris PeBenito 414e41
## <param name="domain">
Chris PeBenito 414e41
##	The type of the process performing this action.
Chris PeBenito 414e41
## </param>
Chris PeBenito 992aba
#
Chris PeBenito 199895
interface(`rpm_use_fd',`
Chris PeBenito 7f2e39
	gen_require(`
Chris PeBenito 7f2e39
		type rpm_t;
Chris PeBenito 7f2e39
		class fd use;
Chris PeBenito 7f2e39
	')
Chris PeBenito 0c73cd
Chris PeBenito 0c73cd
	allow $1 rpm_t:fd use;
Chris PeBenito 992aba
')
Chris PeBenito 992aba
Chris PeBenito 992aba
########################################
Chris PeBenito ebdc3b
## <summary>
Chris PeBenito b24f35
##	Read from an unnamed RPM pipe.
Chris PeBenito ebdc3b
## </summary>
Chris PeBenito 414e41
## <param name="domain">
Chris PeBenito 414e41
##	The type of the process performing this action.
Chris PeBenito 414e41
## </param>
Chris PeBenito 992aba
#
Chris PeBenito 199895
interface(`rpm_read_pipe',`
Chris PeBenito 7f2e39
	gen_require(`
Chris PeBenito 7f2e39
		type rpm_t;
Chris PeBenito 7f2e39
		class fifo_file r_file_perms;
Chris PeBenito 7f2e39
	')
Chris PeBenito 0c73cd
Chris PeBenito dc67f7
	allow $1 rpm_t:fifo_file r_file_perms;
Chris PeBenito 992aba
')
Chris PeBenito 992aba
Chris PeBenito 992aba
########################################
Chris PeBenito ebdc3b
## <summary>
Chris PeBenito b24f35
##	Read and write an unnamed RPM pipe.
Chris PeBenito b24f35
## </summary>
Chris PeBenito b24f35
## <param name="domain">
Chris PeBenito b24f35
##	The type of the process performing this action.
Chris PeBenito b24f35
## </param>
Chris PeBenito b24f35
#
Chris PeBenito b24f35
interface(`rpm_rw_pipe',`
Chris PeBenito b24f35
	gen_require(`
Chris PeBenito b24f35
		type rpm_t;
Chris PeBenito b24f35
		class fifo_file rw_file_perms;
Chris PeBenito b24f35
	')
Chris PeBenito b24f35
Chris PeBenito b24f35
	allow $1 rpm_t:fifo_file rw_file_perms;
Chris PeBenito b24f35
')
Chris PeBenito b24f35
Chris PeBenito b24f35
########################################
Chris PeBenito b24f35
## <summary>
Chris PeBenito b24f35
##	Create, read, write, and delete the RPM log.
Chris PeBenito b24f35
## </summary>
Chris PeBenito b24f35
## <param name="domain">
Chris PeBenito b24f35
##	The type of the process performing this action.
Chris PeBenito b24f35
## </param>
Chris PeBenito b24f35
#
Chris PeBenito b24f35
interface(`rpm_manage_log',`
Chris PeBenito b24f35
	gen_require(`
Chris PeBenito b24f35
		type rpm_log_t;
Chris PeBenito b24f35
		class file create_file_perms;
Chris PeBenito b24f35
	')
Chris PeBenito b24f35
Chris PeBenito b24f35
	logging_rw_log_dir($1)
Chris PeBenito b24f35
	allow $1 rpm_log_t:file create_file_perms;
Chris PeBenito b24f35
')
Chris PeBenito b24f35
Chris PeBenito b24f35
########################################
Chris PeBenito b24f35
## <summary>
Chris PeBenito df00b2
##	Inherit and use file descriptors from RPM scripts.
Chris PeBenito df00b2
## </summary>
Chris PeBenito df00b2
## <param name="domain">
Chris PeBenito df00b2
##	The type of the process performing this action.
Chris PeBenito df00b2
## </param>
Chris PeBenito df00b2
#
Chris PeBenito df00b2
interface(`rpm_use_script_fd',`
Chris PeBenito df00b2
	gen_require(`
Chris PeBenito df00b2
		type rpm_script_t;
Chris PeBenito df00b2
		class fd use;
Chris PeBenito df00b2
	')
Chris PeBenito df00b2
Chris PeBenito df00b2
	allow $1 rpm_script_t:fd use;
Chris PeBenito df00b2
')
Chris PeBenito df00b2
Chris PeBenito df00b2
########################################
Chris PeBenito df00b2
## <summary>
Chris PeBenito ebdc3b
##	Read the RPM package database.
Chris PeBenito ebdc3b
## </summary>
Chris PeBenito 414e41
## <param name="domain">
Chris PeBenito 414e41
##	The type of the process performing this action.
Chris PeBenito 414e41
## </param>
Chris PeBenito 992aba
#
Chris PeBenito 199895
interface(`rpm_read_db',`
Chris PeBenito 7f2e39
	gen_require(`
Chris PeBenito 1f91e1
		type rpm_var_lib_t;
Chris PeBenito 7f2e39
	')
Chris PeBenito 0c73cd
Chris PeBenito 9fd4b8
	files_search_var_lib($1)
Chris PeBenito dc67f7
	allow $1 rpm_var_lib_t:dir r_dir_perms;
Chris PeBenito 1f91e1
	allow $1 rpm_var_lib_t:file { getattr read };
Chris PeBenito dc67f7
	allow $1 rpm_var_lib_t:lnk_file r_file_perms;
Chris PeBenito 992aba
')
Chris PeBenito 992aba
Chris PeBenito dc771f
########################################
Chris PeBenito ebdc3b
## <summary>
Chris PeBenito ebdc3b
##	Create, read, write, and delete the RPM package database.
Chris PeBenito ebdc3b
## </summary>
Chris PeBenito ebdc3b
## <param name="domain">
Chris PeBenito ebdc3b
##	The type of the process performing this action.
Chris PeBenito ebdc3b
## </param>
Chris PeBenito dc771f
#
Chris PeBenito 199895
interface(`rpm_manage_db',`
Chris PeBenito 7f2e39
	gen_require(`
Chris PeBenito b24f35
		type rpm_var_lib_t;
Chris PeBenito 7f2e39
	')
Chris PeBenito 0c73cd
Chris PeBenito 9fd4b8
	files_search_var_lib($1)
Chris PeBenito dc67f7
	allow $1 rpm_var_lib_t:dir rw_dir_perms;
Chris PeBenito 0c73cd
	allow $1 rpm_var_lib_t:file { getattr create read write append unlink };
Chris PeBenito 0c73cd
	allow $1 rpm_var_lib_t:lnk_file { getattr read write unlink };
Chris PeBenito dc771f
')