selinux-refpolicy/policy/modules/services/rpcbind.if
Yi Zhao 93245b38c6 rpcbind: allow sysadm to run rpcinfo
Fixes:
$ rpcinfo
rpcinfo: can't contact rpcbind: RPC: Remote system error - Permission denied

avc:  denied  { connectto } for  pid=543 comm="rpcinfo"
path="/run/rpcbind.sock" scontext=root:sysadm_r:sysadm_t t
context=system_u:system_r:rpcbind_t tclass=unix_stream_socket
permissive=0

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
2021-10-13 23:23:30 +08:00

168 lines
3.3 KiB
Plaintext

## <summary>Universal Addresses to RPC Program Number Mapper.</summary>
########################################
## <summary>
## Execute a domain transition to run rpcbind.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed to transition.
## </summary>
## </param>
#
interface(`rpcbind_domtrans',`
gen_require(`
type rpcbind_t, rpcbind_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, rpcbind_exec_t, rpcbind_t)
')
########################################
## <summary>
## Connect to rpcbind with a
## unix domain stream socket.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`rpcbind_stream_connect',`
gen_require(`
type rpcbind_t, rpcbind_runtime_t;
')
files_search_runtime($1)
stream_connect_pattern($1, rpcbind_runtime_t, rpcbind_runtime_t, rpcbind_t)
')
########################################
## <summary>
## Read rpcbind pid files. (Deprecated)
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`rpcbind_read_pid_files',`
refpolicywarn(`$0($*) has been deprecated.')
')
########################################
## <summary>
## Search rpcbind lib directories.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`rpcbind_search_lib',`
gen_require(`
type rpcbind_var_lib_t;
')
files_search_var_lib($1)
allow $1 rpcbind_var_lib_t:dir search_dir_perms;
')
########################################
## <summary>
## Read rpcbind lib files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`rpcbind_read_lib_files',`
gen_require(`
type rpcbind_var_lib_t;
')
files_search_var_lib($1)
read_files_pattern($1, rpcbind_var_lib_t, rpcbind_var_lib_t)
')
########################################
## <summary>
## Create, read, write, and delete
## rpcbind lib files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`rpcbind_manage_lib_files',`
gen_require(`
type rpcbind_var_lib_t;
')
files_search_var_lib($1)
manage_files_pattern($1, rpcbind_var_lib_t, rpcbind_var_lib_t)
')
########################################
## <summary>
## Send null signals to rpcbind.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`rpcbind_signull',`
gen_require(`
type rpcbind_t;
')
allow $1 rpcbind_t:process signull;
')
########################################
## <summary>
## All of the rules required to
## administrate an rpcbind environment.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`rpcbind_admin',`
gen_require(`
type rpcbind_t, rpcbind_var_lib_t, rpcbind_runtime_t;
type rpcbind_initrc_exec_t;
')
allow $1 rpcbind_t:process { ptrace signal_perms };
ps_process_pattern($1, rpcbind_t)
init_startstop_service($1, $2, rpcbind_t, rpcbind_initrc_exec_t)
files_search_runtime($1)
admin_pattern($1, rpcbind_runtime_t)
files_search_var_lib($1)
admin_pattern($1, rpcbind_var_lib_t)
rpcbind_stream_connect($1)
')