|
Chris PeBenito |
e181fe |
|
|
Chris PeBenito |
960373 |
policy_module(modutils,1.0)
|
|
Chris PeBenito |
960373 |
|
|
Chris PeBenito |
118186 |
########################################
|
|
Chris PeBenito |
118186 |
#
|
|
Chris PeBenito |
118186 |
# Declarations
|
|
Chris PeBenito |
118186 |
#
|
|
Chris PeBenito |
118186 |
|
|
Chris PeBenito |
b4cd15 |
# module loading config
|
|
Chris PeBenito |
b4cd15 |
type modules_conf_t;
|
|
Chris PeBenito |
c9428d |
files_file_type(modules_conf_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
# module dependencies
|
|
Chris PeBenito |
b4cd15 |
type modules_dep_t;
|
|
Chris PeBenito |
c9428d |
files_file_type(modules_dep_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
type insmod_t;
|
|
Chris PeBenito |
b4cd15 |
type insmod_exec_t;
|
|
Chris PeBenito |
0fd9dc |
kernel_userland_entry(insmod_t,insmod_exec_t)
|
|
Chris PeBenito |
c9428d |
init_system_domain(insmod_t,insmod_exec_t)
|
|
Chris PeBenito |
bbd6a6 |
role system_r types insmod_t;
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
7c5d78 |
type depmod_t;
|
|
Chris PeBenito |
7c5d78 |
type depmod_exec_t;
|
|
Chris PeBenito |
c9428d |
init_system_domain(depmod_t,depmod_exec_t)
|
|
Chris PeBenito |
bbd6a6 |
role system_r types depmod_t;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
type update_modules_t;
|
|
Chris PeBenito |
7c5d78 |
type update_modules_exec_t;
|
|
Chris PeBenito |
c9428d |
init_system_domain(update_modules_t,update_modules_exec_t)
|
|
Chris PeBenito |
bbd6a6 |
role system_r types update_modules_t;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
33bc0d |
type update_modules_tmp_t;
|
|
Chris PeBenito |
c9428d |
files_tmp_file(update_modules_tmp_t)
|
|
Chris PeBenito |
33bc0d |
|
|
Chris PeBenito |
7c5d78 |
########################################
|
|
Chris PeBenito |
7c5d78 |
#
|
|
Chris PeBenito |
7c5d78 |
# insmod local policy
|
|
Chris PeBenito |
7c5d78 |
#
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
allow insmod_t self:capability { dac_override net_raw sys_tty_config };
|
|
Chris PeBenito |
7c5d78 |
allow insmod_t self:process { execmem sigchld sigkill sigstop signull signal };
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
allow insmod_t self:udp_socket create_socket_perms;
|
|
Chris PeBenito |
80048c |
allow insmod_t self:rawip_socket create_socket_perms;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
183227 |
# Read module config and dependency information
|
|
Chris PeBenito |
80048c |
allow insmod_t { modules_conf_t modules_dep_t }:file r_file_perms;
|
|
Chris PeBenito |
183227 |
|
|
Chris PeBenito |
80048c |
can_exec(insmod_t, insmod_exec_t)
|
|
Chris PeBenito |
183227 |
|
|
Chris PeBenito |
7c5d78 |
kernel_load_module(insmod_t)
|
|
Chris PeBenito |
d490eb |
kernel_read_system_state(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
# Rules for /proc/sys/kernel/tainted
|
|
Chris PeBenito |
b4cd15 |
kernel_read_kernel_sysctl(insmod_t)
|
|
Chris PeBenito |
0fd9dc |
kernel_rw_kernel_sysctl(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
kernel_read_hotplug_sysctl(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
5f75f5 |
bootloader_read_kernel_modules(insmod_t)
|
|
Chris PeBenito |
d490eb |
# for locking: (cjp: ????)
|
|
Chris PeBenito |
d490eb |
bootloader_write_kernel_modules(insmod_t)
|
|
Chris PeBenito |
5f75f5 |
|
|
Chris PeBenito |
8bd678 |
dev_search_sysfs(insmod_t)
|
|
Chris PeBenito |
8bd678 |
dev_search_usbfs(insmod_t)
|
|
Karl MacMillan |
f0c985 |
dev_write_mtrr(insmod_t)
|
|
Karl MacMillan |
f0c985 |
dev_read_urand(insmod_t)
|
|
Karl MacMillan |
f0c985 |
dev_rw_agp_dev(insmod_t)
|
|
Chris PeBenito |
7a2f20 |
dev_read_snd_dev(insmod_t)
|
|
Chris PeBenito |
7a2f20 |
dev_write_snd_dev(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
0fd9dc |
fs_getattr_xattr_fs(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
c9428d |
corecmd_exec_bin(insmod_t)
|
|
Chris PeBenito |
c9428d |
corecmd_exec_sbin(insmod_t)
|
|
Chris PeBenito |
c9428d |
corecmd_exec_shell(insmod_t)
|
|
Chris PeBenito |
f5c42b |
|
|
Chris PeBenito |
f5c42b |
domain_signal_all_domains(insmod_t)
|
|
Chris PeBenito |
c9428d |
domain_use_wide_inherit_fd(insmod_t)
|
|
Chris PeBenito |
f5c42b |
|
|
Chris PeBenito |
c9428d |
files_read_etc_runtime_files(insmod_t)
|
|
Chris PeBenito |
c9428d |
files_read_generic_etc_files(insmod_t)
|
|
Chris PeBenito |
c9428d |
files_read_usr_files(insmod_t)
|
|
Chris PeBenito |
c9428d |
files_exec_generic_etc_files(insmod_t)
|
|
Chris PeBenito |
3b857e |
# for nscd:
|
|
Chris PeBenito |
c9428d |
files_dontaudit_search_pids(insmod_t)
|
|
Chris PeBenito |
3b857e |
# for when /var is not mounted early in the boot:
|
|
Chris PeBenito |
c9428d |
files_dontaudit_search_isid_type_dir(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
c9428d |
init_use_initctl(insmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_fd(insmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_script_fd(insmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_script_pty(insmod_t)
|
|
Chris PeBenito |
b2e062 |
|
|
Chris PeBenito |
c9428d |
libs_use_ld_so(insmod_t)
|
|
Chris PeBenito |
c9428d |
libs_use_shared_libs(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
c9428d |
logging_send_syslog_msg(insmod_t)
|
|
Chris PeBenito |
c9428d |
logging_search_logs(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
miscfiles_read_localization(insmod_t)
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
25baab |
optional_policy(`mount.te',`
|
|
Chris PeBenito |
c9428d |
mount_domtrans(insmod_t)
|
|
Chris PeBenito |
7c5d78 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b2e062 |
ifdef(`TODO',`
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
allow insmod_t apm_bios_t:chr_file { read write };
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
ifdef(`xserver.te', `
|
|
Chris PeBenito |
0c73cd |
allow insmod_t xserver_log_t:file getattr;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
f5c42b |
# why is this needed? insmod cannot mounton any dir
|
|
Chris PeBenito |
f5c42b |
# and it also transitions to mount
|
|
Chris PeBenito |
7c5d78 |
allow insmod_t usbfs_t:filesystem mount;
|
|
Chris PeBenito |
b2e062 |
') dnl if TODO
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
########################################
|
|
Chris PeBenito |
7c5d78 |
#
|
|
Chris PeBenito |
7c5d78 |
# depmod local policy
|
|
Chris PeBenito |
7c5d78 |
#
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
can_exec(depmod_t, depmod_exec_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
# Read conf.modules.
|
|
Chris PeBenito |
80048c |
allow depmod_t modules_conf_t:file r_file_perms;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
allow depmod_t modules_dep_t:file create_file_perms;
|
|
Chris PeBenito |
b2e062 |
bootloader_create_private_module_dir_entry(depmod_t,modules_dep_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
kernel_read_system_state(depmod_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
d35c62 |
bootloader_read_kernel_symbol_table(depmod_t)
|
|
Chris PeBenito |
d35c62 |
bootloader_read_kernel_modules(depmod_t)
|
|
Chris PeBenito |
d35c62 |
|
|
Chris PeBenito |
0fd9dc |
fs_getattr_xattr_fs(depmod_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
0fd9dc |
term_use_console(depmod_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
c9428d |
init_use_fd(depmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_script_fd(depmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_script_pty(depmod_t)
|
|
Chris PeBenito |
b2e062 |
|
|
Chris PeBenito |
c9428d |
domain_use_wide_inherit_fd(depmod_t)
|
|
Chris PeBenito |
b2e062 |
|
|
Chris PeBenito |
c9428d |
files_read_etc_runtime_files(depmod_t)
|
|
Chris PeBenito |
c9428d |
files_read_generic_etc_files(depmod_t)
|
|
Chris PeBenito |
c9428d |
files_read_usr_src(depmod_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
c9428d |
libs_use_ld_so(depmod_t)
|
|
Chris PeBenito |
c9428d |
libs_use_shared_libs(depmod_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
ifdef(`TODO',`
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
allow depmod_t { bin_t sbin_t }:dir search;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
ifdef(`gnome-pty-helper.te', `allow depmod_t sysadm_gph_t:fd use;')
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
# Read System.map from home directories.
|
|
Chris PeBenito |
7c5d78 |
allow depmod_t { home_root_t staff_home_dir_t sysadm_home_dir_t }:dir r_dir_perms;
|
|
Chris PeBenito |
7c5d78 |
r_dir_file(depmod_t, { staff_home_t sysadm_home_t })
|
|
Chris PeBenito |
7c5d78 |
') dnl end ifdef TODO
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
#################################
|
|
Chris PeBenito |
7c5d78 |
#
|
|
Chris PeBenito |
7c5d78 |
# update-modules local policy
|
|
Chris PeBenito |
7c5d78 |
#
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
allow update_modules_t self:fifo_file rw_file_perms;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
allow update_modules_t modules_dep_t:file rw_file_perms;
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
can_exec(update_modules_t, insmod_exec_t)
|
|
Chris PeBenito |
80048c |
can_exec(update_modules_t, update_modules_exec_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
b2e062 |
# manage module loading configuration
|
|
Chris PeBenito |
80048c |
allow update_modules_t modules_conf_t:file create_file_perms;
|
|
Chris PeBenito |
b2e062 |
bootloader_create_private_module_dir_entry(update_modules_t,modules_conf_t)
|
|
Chris PeBenito |
c9428d |
files_create_etc_config(update_modules_t,modules_conf_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
b2e062 |
# transition to depmod
|
|
Chris PeBenito |
80048c |
domain_auto_trans(update_modules_t, depmod_exec_t, depmod_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
80048c |
allow update_modules_t update_modules_tmp_t:dir create_dir_perms;
|
|
Chris PeBenito |
80048c |
allow update_modules_t update_modules_tmp_t:file create_file_perms;
|
|
Chris PeBenito |
c9428d |
files_create_tmp_files(update_modules_t, update_modules_tmp_t, { file dir })
|
|
Chris PeBenito |
94edcc |
|
|
Chris PeBenito |
7c5d78 |
kernel_read_kernel_sysctl(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
kernel_read_system_state(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Karl MacMillan |
f0c985 |
dev_read_urand(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
0fd9dc |
fs_getattr_xattr_fs(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
0fd9dc |
term_use_console(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
c9428d |
init_use_fd(depmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_script_fd(depmod_t)
|
|
Chris PeBenito |
c9428d |
init_use_script_pty(depmod_t)
|
|
Chris PeBenito |
b2e062 |
|
|
Chris PeBenito |
c9428d |
domain_use_wide_inherit_fd(depmod_t)
|
|
Chris PeBenito |
b2e062 |
|
|
Chris PeBenito |
c9428d |
files_read_etc_runtime_files(update_modules_t)
|
|
Chris PeBenito |
c9428d |
files_read_generic_etc_files(update_modules_t)
|
|
Chris PeBenito |
c9428d |
files_exec_generic_etc_files(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
c9428d |
corecmd_exec_bin(update_modules_t)
|
|
Chris PeBenito |
c9428d |
corecmd_exec_sbin(update_modules_t)
|
|
Chris PeBenito |
c9428d |
corecmd_exec_shell(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
c9428d |
libs_use_ld_so(update_modules_t)
|
|
Chris PeBenito |
c9428d |
libs_use_shared_libs(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
c9428d |
logging_send_syslog_msg(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
miscfiles_read_localization(update_modules_t)
|
|
Chris PeBenito |
7c5d78 |
|
|
Chris PeBenito |
7c5d78 |
ifdef(`TODO',`
|
|
Chris PeBenito |
7c5d78 |
dontaudit update_modules_t sysadm_home_dir_t:dir search;
|
|
Chris PeBenito |
7c5d78 |
') dnl endif TODO
|