|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
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 |
')
|
|
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 |
cd6676 |
## Execute rpm_script programs in the rpm_script domain.
|
|
Chris PeBenito |
cd6676 |
## </summary>
|
|
Chris PeBenito |
cd6676 |
## <param name="domain">
|
|
Chris PeBenito |
885b83 |
## <summary>
|
|
Chris PeBenito |
cd6676 |
## Domain allowed access.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
cd6676 |
## </param>
|
|
Chris PeBenito |
cd6676 |
#
|
|
Chris PeBenito |
1815ba |
interface(`rpm_domtrans_script',`
|
|
Chris PeBenito |
cd6676 |
gen_require(`
|
|
Chris PeBenito |
fc4054 |
type rpm_script_t;
|
|
Chris PeBenito |
cd6676 |
')
|
|
Chris PeBenito |
cd6676 |
|
|
Chris PeBenito |
cd6676 |
# transition to rpm script:
|
|
Chris PeBenito |
cd6676 |
corecmd_shell_domtrans($1,rpm_script_t)
|
|
Chris PeBenito |
cd6676 |
|
|
Chris PeBenito |
cd6676 |
allow $1 rpm_script_t:fd use;
|
|
Chris PeBenito |
cd6676 |
allow rpm_script_t $1:fd use;
|
|
Chris PeBenito |
cd6676 |
allow rpm_script_t $1:fifo_file rw_file_perms;
|
|
Chris PeBenito |
cd6676 |
allow rpm_script_t $1:process sigchld;
|
|
Chris PeBenito |
cd6676 |
')
|
|
Chris PeBenito |
cd6676 |
|
|
Chris PeBenito |
cd6676 |
########################################
|
|
Chris PeBenito |
cd6676 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Execute RPM programs in the RPM domain.
|
|
Chris PeBenito |
ebdc3b |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
414e41 |
## <param name="role">
|
|
Chris PeBenito |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The role to allow the RPM domain.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
414e41 |
## <param name="terminal">
|
|
Chris PeBenito |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The type of the terminal allow the RPM domain to use.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
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 |
')
|
|
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 |
1815ba |
seutil_run_loadpolicy(rpm_script_t,$2,$3)
|
|
Chris PeBenito |
a3cf80 |
seutil_run_semanage(rpm_script_t,$2,$3)
|
|
Chris PeBenito |
a3cf80 |
seutil_run_setfiles(rpm_script_t,$2,$3)
|
|
Chris PeBenito |
a3cf80 |
seutil_run_restorecon(rpm_script_t,$2,$3)
|
|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
992aba |
#
|
|
Chris PeBenito |
1c1ac6 |
interface(`rpm_use_fds',`
|
|
Chris PeBenito |
7f2e39 |
gen_require(`
|
|
Chris PeBenito |
7f2e39 |
type rpm_t;
|
|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
992aba |
#
|
|
Chris PeBenito |
1815ba |
interface(`rpm_read_pipes',`
|
|
Chris PeBenito |
7f2e39 |
gen_require(`
|
|
Chris PeBenito |
7f2e39 |
type rpm_t;
|
|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
b24f35 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
b24f35 |
## </param>
|
|
Chris PeBenito |
b24f35 |
#
|
|
Chris PeBenito |
1815ba |
interface(`rpm_rw_pipes',`
|
|
Chris PeBenito |
b24f35 |
gen_require(`
|
|
Chris PeBenito |
b24f35 |
type rpm_t;
|
|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
b24f35 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
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 |
')
|
|
Chris PeBenito |
b24f35 |
|
|
Chris PeBenito |
1815ba |
logging_rw_generic_log_dirs($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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
df00b2 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
df00b2 |
## </param>
|
|
Chris PeBenito |
df00b2 |
#
|
|
Chris PeBenito |
15722e |
interface(`rpm_use_script_fds',`
|
|
Chris PeBenito |
df00b2 |
gen_require(`
|
|
Chris PeBenito |
df00b2 |
type rpm_script_t;
|
|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
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 |
885b83 |
## <summary>
|
|
Chris PeBenito |
ebdc3b |
## The type of the process performing this action.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
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 |
')
|
|
Chris PeBenito |
757207 |
|
|
Chris PeBenito |
757207 |
########################################
|
|
Chris PeBenito |
757207 |
## <summary>
|
|
Chris PeBenito |
757207 |
## Do not audit attempts to create, read,
|
|
Chris PeBenito |
757207 |
## write, and delete the RPM package database.
|
|
Chris PeBenito |
757207 |
## </summary>
|
|
Chris PeBenito |
757207 |
## <param name="domain">
|
|
Chris PeBenito |
885b83 |
## <summary>
|
|
Chris PeBenito |
757207 |
## Domain to not audit.
|
|
Chris PeBenito |
885b83 |
## </summary>
|
|
Chris PeBenito |
757207 |
## </param>
|
|
Chris PeBenito |
757207 |
#
|
|
Chris PeBenito |
757207 |
interface(`rpm_dontaudit_manage_db',`
|
|
Chris PeBenito |
757207 |
gen_require(`
|
|
Chris PeBenito |
757207 |
type rpm_var_lib_t;
|
|
Chris PeBenito |
757207 |
')
|
|
Chris PeBenito |
757207 |
|
|
Chris PeBenito |
757207 |
dontaudit $1 rpm_var_lib_t:dir rw_dir_perms;
|
|
Chris PeBenito |
757207 |
dontaudit $1 rpm_var_lib_t:file create_file_perms;
|
|
Chris PeBenito |
757207 |
dontaudit $1 rpm_var_lib_t:lnk_file create_lnk_perms;
|
|
Chris PeBenito |
757207 |
')
|