## QEMU machine emulator and virtualizer. ####################################### ## ## The template to define a qemu domain. ## ## ## ## Domain prefix to be used. ## ## # template(`qemu_domain_template',` ############################## # # Declarations # type $1_t; domain_type($1_t) type $1_tmp_t; files_tmp_file($1_tmp_t) ############################## # # Policy # allow $1_t self:capability { dac_override dac_read_search }; allow $1_t self:process { execstack execmem signal getsched }; allow $1_t self:fifo_file rw_fifo_file_perms; allow $1_t self:shm create_shm_perms; allow $1_t self:unix_stream_socket create_stream_socket_perms; allow $1_t self:tcp_socket create_stream_socket_perms; allow $1_t self:tun_socket create; manage_dirs_pattern($1_t, $1_tmp_t, $1_tmp_t) manage_files_pattern($1_t, $1_tmp_t, $1_tmp_t) files_tmp_filetrans($1_t, $1_tmp_t, { file dir }) kernel_read_system_state($1_t) corenet_all_recvfrom_netlabel($1_t) corenet_tcp_sendrecv_generic_if($1_t) corenet_tcp_sendrecv_generic_node($1_t) corenet_tcp_bind_generic_node($1_t) corenet_tcp_bind_vnc_port($1_t) corenet_rw_tun_tap_dev($1_t) # dev_rw_kvm($1_t) domain_use_interactive_fds($1_t) files_read_etc_files($1_t) files_read_usr_files($1_t) files_read_var_files($1_t) files_search_all($1_t) fs_list_inotifyfs($1_t) fs_rw_anon_inodefs_files($1_t) fs_rw_tmpfs_files($1_t) storage_raw_write_removable_device($1_t) storage_raw_read_removable_device($1_t) term_use_ptmx($1_t) term_getattr_pty_fs($1_t) term_use_generic_ptys($1_t) miscfiles_read_localization($1_t) sysnet_read_config($1_t) userdom_use_user_terminals($1_t) userdom_attach_admin_tun_iface($1_t) optional_policy(` samba_domtrans_smbd($1_t) ') optional_policy(` virt_manage_images($1_t) virt_read_config($1_t) virt_read_lib_files($1_t) virt_attach_tun_iface($1_t) ') optional_policy(` xserver_stream_connect($1_t) xserver_read_xdm_tmp_files($1_t) xserver_read_xdm_pid($1_t) # xserver_xdm_rw_shm($1_t) ') ') ######################################## ## ## Role access for qemu. ## ## ## ## Role allowed access. ## ## ## ## ## User domain for the role. ## ## # template(`qemu_role',` gen_require(` type qemu_t; ') qemu_run($2, $1) allow $2 qemu_t:process { ptrace signal_perms }; ps_process_pattern($2, qemu_t) ') ######################################## ## ## Execute a domain transition to run qemu. ## ## ## ## Domain allowed to transition. ## ## # interface(`qemu_domtrans',` gen_require(` type qemu_t, qemu_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, qemu_exec_t, qemu_t) ') ######################################## ## ## Execute a qemu in the caller domain. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_exec',` gen_require(` type qemu_exec_t; ') corecmd_search_bin($1) can_exec($1, qemu_exec_t) ') ######################################## ## ## Execute qemu in the qemu domain, ## and allow the specified role the ## qemu domain. ## ## ## ## Domain allowed to transition. ## ## ## ## ## Role allowed access. ## ## ## # interface(`qemu_run',` gen_require(` attribute_role qemu_roles; ') qemu_domtrans($1) roleattribute $2 qemu_roles; ') ######################################## ## ## Read qemu process state files. ## ## ## ## Domain to allow access. ## ## # interface(`qemu_read_state',` gen_require(` type qemu_t; ') kernel_search_proc($1) allow $1 qemu_t:dir list_dir_perms; allow $1 qemu_t:file read_file_perms; allow $1 qemu_t:lnk_file read_lnk_file_perms; ') ######################################## ## ## Set qemu scheduler. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_setsched',` gen_require(` type qemu_t; ') allow $1 qemu_t:process setsched; ') ######################################## ## ## Send generic signals to qemu. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_signal',` gen_require(` type qemu_t; ') allow $1 qemu_t:process signal; ') ######################################## ## ## Send kill signals to qemu. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_kill',` gen_require(` type qemu_t; ') allow $1 qemu_t:process sigkill; ') ######################################## ## ## Connect to qemu with a unix ## domain stream socket. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_stream_connect',` gen_require(` type qemu_t, qemu_runtime_t; ') files_search_runtime($1) stream_connect_pattern($1, qemu_runtime_t, qemu_runtime_t, qemu_t) ') ######################################## ## ## Unlink qemu socket (Deprecated) ## ## ## ## Domain allowed access. ## ## # interface(`qemu_delete_pid_sock_file',` refpolicywarn(`$0($*) has been deprecated, please use qemu_delete_runtime_sock_files() instead.') qemu_delete_runtime_sock_files($1) ') ######################################## ## ## Unlink qemu runtime sockets. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_delete_runtime_sock_files',` gen_require(` type qemu_runtime_t; ') allow $1 qemu_runtime_t:sock_file unlink; ') ######################################## ## ## Execute a domain transition to ## run qemu unconfined. ## ## ## ## Domain allowed to transition. ## ## # interface(`qemu_domtrans_unconfined',` gen_require(` type unconfined_qemu_t, qemu_exec_t; ') corecmd_search_bin($1) domtrans_pattern($1, qemu_exec_t, unconfined_qemu_t) ') ######################################## ## ## Create, read, write, and delete ## qemu temporary directories. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_manage_tmp_dirs',` gen_require(` type qemu_tmp_t; ') files_search_tmp($1) manage_dirs_pattern($1, qemu_tmp_t, qemu_tmp_t) ') ######################################## ## ## Create, read, write, and delete ## qemu temporary files. ## ## ## ## Domain allowed access. ## ## # interface(`qemu_manage_tmp_files',` gen_require(` type qemu_tmp_t; ') files_search_tmp($1) manage_files_pattern($1, qemu_tmp_t, qemu_tmp_t) ') ######################################## ## ## Execute qemu in a specified domain. ## ## ##

## Execute qemu in a specified domain. ##

##

## No interprocess communication (signals, pipes, ## etc.) is provided by this interface since ## the domains are not owned by this module. ##

##
## ## ## Domain allowed to transition. ## ## ## ## ## Domain to transition to. ## ## # interface(`qemu_spec_domtrans',` gen_require(` type qemu_exec_t; ') corecmd_search_bin($1) domain_auto_transition_pattern($1, qemu_exec_t, $2) ') ###################################### ## ## Make qemu executable files an ## entrypoint for the specified domain. ## ## ## ## The domain for which qemu_exec_t is an entrypoint. ## ## # interface(`qemu_entry_type',` gen_require(` type qemu_exec_t; ') domain_entry_file($1, qemu_exec_t) ')