## ClamAV Virus Scanner. ######################################## ## ## Execute a domain transition to run clamd. ## ## ## ## Domain allowed to transition. ## ## # interface(`clamav_domtrans',` gen_require(` type clamd_t, clamd_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, clamd_exec_t, clamd_t) ') ######################################## ## ## Execute clamd programs in the clamd ## domain and allow the specified role ## the clamd domain. ## ## ## ## Domain allowed to transition. ## ## ## ## ## Role allowed access. ## ## # interface(`clamav_run',` gen_require(` type clamd_t; ') clamav_domtrans($1) role $2 types clamd_t; ') ######################################## ## ## Connect to clamd using a unix ## domain stream socket. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_stream_connect',` gen_require(` type clamd_t, clamd_runtime_t; ') allow clamd_t $1:fd use; files_search_runtime($1) stream_connect_pattern($1, clamd_runtime_t, clamd_runtime_t, clamd_t) ') ######################################## ## ## Append clamav log files. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_append_log',` gen_require(` type clamd_var_log_t; ') logging_search_logs($1) allow $1 clamd_var_log_t:dir list_dir_perms; append_files_pattern($1, clamd_var_log_t, clamd_var_log_t) ') ######################################## ## ## Create, read, write, and delete ## clamav pid content. (Deprecated) ## ## ## ## Domain allowed access. ## ## # interface(`clamav_manage_pid_content',` refpolicywarn(`$0($*) has been deprecated.') ') ######################################## ## ## Read clamav configuration files. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_read_config',` gen_require(` type clamd_etc_t; ') files_search_etc($1) allow $1 clamd_etc_t:file read_file_perms; ') ######################################## ## ## Search clamav library directories. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_search_lib',` gen_require(` type clamd_var_lib_t; ') files_search_var_lib($1) allow $1 clamd_var_lib_t:dir search_dir_perms; ') ######################################## ## ## Execute a domain transition to run clamscan. ## ## ## ## Domain allowed to transition. ## ## # interface(`clamav_domtrans_clamscan',` gen_require(` type clamscan_t, clamscan_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, clamscan_exec_t, clamscan_t) ') ######################################## ## ## Execute clamscan in the caller domain. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_exec_clamscan',` gen_require(` type clamscan_exec_t; ') corecmd_search_bin($1) can_exec($1, clamscan_exec_t) ') ####################################### ## ## Read clamd process state files. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_read_state_clamd',` gen_require(` type clamd_t; ') kernel_search_proc($1) allow $1 clamd_t:dir list_dir_perms; read_files_pattern($1, clamd_t, clamd_t) read_lnk_files_pattern($1, clamd_t, clamd_t) ') ####################################### ## ## Read clam virus signature files ## ## ##

## Useful for when using things like 'sigtool' ## which provides useful information about ## ClamAV signature files. ##

##
## ## ## Domain allowed access. ## ## # interface(`clamav_read_signatures',` gen_require(` type clamd_var_lib_t; ') clamav_search_lib($1) allow $1 clamd_var_lib_t:dir list_dir_perms; read_files_pattern($1, clamd_var_lib_t, clamd_var_lib_t) read_lnk_files_pattern($1, clamd_var_lib_t, clamd_var_lib_t) ') ####################################### ## ## Denote a particular type to be scanned by ClamAV ## ## ## ## Type that clamd_t and clamscan_t can read. ## ## # interface(`clamav_scannable_files',` gen_require(` attribute clam_scannable_type; ') typeattribute $1 clam_scannable_type; ') ######################################## ## ## Execute a domain transition to run freshclam. ## ## ## ## Domain allowed to transition. ## ## # interface(`clamav_domtrans_freshclam',` gen_require(` type freshclam_t, freshclam_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, freshclam_exec_t, freshclam_t) ') ######################################## ## ## Execute freshclam in the freshclam domain, and ## allow the specified role the freshclam domain. ## ## ## ## Domain allowed to transition. ## ## ## ## ## Role allowed access. ## ## ## # interface(`clamav_run_freshclam',` gen_require(` type freshclam_t; ') clamav_domtrans_freshclam($1) role $2 types freshclam_t; ') ######################################## ## ## Execute freshclam in the caller domain. ## ## ## ## Domain allowed access. ## ## # interface(`clamav_exec_freshclam',` gen_require(` type freshclam_exec_t; ') corecmd_search_bin($1) can_exec($1, freshclam_exec_t) ') ######################################## ## ## Allow specified domain to enable clamd units ## ## ## ## Domain allowed access. ## ## # interface(`clamav_enabledisable_clamd',` gen_require(` type clamd_unit_t; class service { enable disable }; ') allow $1 clamd_unit_t:service { enable disable }; ') ######################################## ## ## Allow specified domain to start clamd units ## ## ## ## Domain allowed access. ## ## # interface(`clamav_startstop_clamd',` gen_require(` type clamd_unit_t; class service { start stop }; ') allow $1 clamd_unit_t:service { start stop }; ') ######################################## ## ## Allow specified domain to get status of clamd ## ## ## ## Domain allowed access. ## ## # interface(`clamav_status_clamd',` gen_require(` type clamd_unit_t; class service status; ') allow $1 clamd_unit_t:service status; ') ######################################## ## ## Allow specified domain reload of clamd ## ## ## ## Domain allowed access. ## ## # interface(`clamav_reload_clamd',` gen_require(` type clamd_unit_t; class service reload; ') allow $1 clamd_unit_t:service reload; ') ######################################## ## ## All of the rules required to ## administrate an clamav environment. ## ## ## ## Domain allowed access. ## ## ## ## ## Role allowed access. ## ## ## # interface(`clamav_admin',` gen_require(` type clamd_t, clamd_etc_t, clamd_tmp_t; type clamd_var_log_t, clamd_var_lib_t, clamd_initrc_exec_t; type clamd_runtime_t, clamscan_t, clamscan_tmp_t; type freshclam_t, freshclam_var_log_t; ') allow $1 { clamd_t clamscan_t freshclam_t }:process { ptrace signal_perms }; ps_process_pattern($1, { clamd_t clamscan_t freshclam_t }) init_startstop_service($1, $2, clamd_t, clamd_initrc_exec_t) files_list_etc($1) admin_pattern($1, clamd_etc_t) files_list_var_lib($1) admin_pattern($1, clamd_var_lib_t) logging_list_logs($1) admin_pattern($1, { clamd_var_log_t freshclam_var_log_t }) files_list_runtime($1) admin_pattern($1, clamd_runtime_t) files_list_tmp($1) admin_pattern($1, { clamd_tmp_t clamscan_tmp_t }) ')