2005-04-20 19:07:16 +00:00
|
|
|
|
2005-12-09 16:38:39 +00:00
|
|
|
policy_module(bootloader,1.1.0)
|
2005-04-26 17:00:25 +00:00
|
|
|
|
2005-04-28 21:41:09 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Declarations
|
|
|
|
#
|
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
attribute rw_kern_modules;
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# boot_t is the type for files in /boot
|
|
|
|
#
|
|
|
|
type boot_t;
|
2005-06-29 14:26:41 +00:00
|
|
|
files_type(boot_t)
|
2005-06-13 17:35:46 +00:00
|
|
|
files_mountpoint(boot_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-04-25 21:32:09 +00:00
|
|
|
#
|
|
|
|
# boot_runtime_t is the type for /boot/kernel.h,
|
|
|
|
# which is automatically generated at boot time.
|
|
|
|
# only for Red Hat
|
|
|
|
#
|
2005-04-16 17:18:34 +00:00
|
|
|
type boot_runtime_t;
|
2005-06-29 14:26:41 +00:00
|
|
|
files_type(boot_runtime_t)
|
2005-04-16 17:18:34 +00:00
|
|
|
|
2005-04-25 21:32:09 +00:00
|
|
|
type bootloader_t;
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_type(bootloader_t)
|
2005-05-03 20:23:33 +00:00
|
|
|
role system_r types bootloader_t;
|
2005-04-25 21:32:09 +00:00
|
|
|
|
|
|
|
type bootloader_exec_t;
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_entry_file(bootloader_t,bootloader_exec_t)
|
2005-04-25 21:32:09 +00:00
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
|
|
|
# bootloader_etc_t is the configuration file,
|
|
|
|
# grub.conf, lilo.conf, etc.
|
|
|
|
#
|
|
|
|
type bootloader_etc_t alias etc_bootloader_t;
|
2005-06-29 14:26:41 +00:00
|
|
|
files_type(bootloader_etc_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# The temp file is used for initrd creation;
|
|
|
|
# it consists of files and device nodes
|
|
|
|
#
|
|
|
|
type bootloader_tmp_t;
|
2005-06-13 17:35:46 +00:00
|
|
|
files_tmp_file(bootloader_tmp_t)
|
2005-06-13 16:22:32 +00:00
|
|
|
dev_node(bootloader_tmp_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-04-25 21:32:09 +00:00
|
|
|
# kernel modules
|
|
|
|
type modules_object_t;
|
2005-06-29 14:26:41 +00:00
|
|
|
files_type(modules_object_t)
|
2005-04-25 21:32:09 +00:00
|
|
|
|
2005-10-24 15:10:03 +00:00
|
|
|
#neverallow ~rw_kern_modules modules_object_t:file { create append write };
|
2005-04-25 21:32:09 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# system_map_t is for the system.map files in /boot
|
|
|
|
#
|
|
|
|
type system_map_t;
|
2005-06-29 14:26:41 +00:00
|
|
|
files_type(system_map_t)
|
2005-04-25 21:32:09 +00:00
|
|
|
|
2005-10-24 03:52:35 +00:00
|
|
|
#
|
|
|
|
# /var/log/ksyms
|
|
|
|
# cjp: this probably can be removed, I do not
|
|
|
|
# think it is used on 2.6 kernels
|
|
|
|
type var_log_ksyms_t;
|
2005-10-25 20:06:27 +00:00
|
|
|
logging_log_file(var_log_ksyms_t)
|
2005-10-24 03:52:35 +00:00
|
|
|
|
2005-04-22 19:31:32 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# bootloader local policy
|
|
|
|
#
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
allow bootloader_t self:capability { dac_read_search fsetid sys_rawio sys_admin mknod chown };
|
|
|
|
allow bootloader_t self:process { sigkill sigstop signull signal };
|
|
|
|
allow bootloader_t self:fifo_file { getattr read write };
|
|
|
|
|
2005-11-16 21:08:52 +00:00
|
|
|
allow bootloader_t boot_t:dir { create rw_dir_perms };
|
2005-09-05 18:17:17 +00:00
|
|
|
allow bootloader_t boot_t:file create_file_perms;
|
|
|
|
allow bootloader_t boot_t:lnk_file create_lnk_perms;
|
2005-05-13 14:37:13 +00:00
|
|
|
|
2005-06-08 20:28:45 +00:00
|
|
|
allow bootloader_t bootloader_etc_t:file r_file_perms;
|
2005-05-13 14:37:13 +00:00
|
|
|
# uncomment the following lines if you use "lilo -p"
|
|
|
|
#allow bootloader_t bootloader_etc_t:file { create ioctl read getattr lock write setattr append link unlink rename };
|
2005-06-13 17:35:46 +00:00
|
|
|
#files_create_etc_config(bootloader_t,bootloader_etc_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
|
2005-06-08 20:28:45 +00:00
|
|
|
allow bootloader_t bootloader_tmp_t:dir create_dir_perms;
|
|
|
|
allow bootloader_t bootloader_tmp_t:file create_file_perms;
|
|
|
|
allow bootloader_t bootloader_tmp_t:chr_file create_file_perms;
|
|
|
|
allow bootloader_t bootloader_tmp_t:blk_file create_file_perms;
|
|
|
|
allow bootloader_t bootloader_tmp_t:lnk_file create_lnk_perms;
|
2005-06-13 17:35:46 +00:00
|
|
|
files_create_tmp_files(bootloader_t,bootloader_tmp_t,{ dir file lnk_file chr_file blk_file })
|
2005-05-13 14:37:13 +00:00
|
|
|
# for tune2fs (cjp: ?)
|
2005-06-13 17:35:46 +00:00
|
|
|
files_create_root(bootloader_t,bootloader_tmp_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
|
2005-06-08 20:28:45 +00:00
|
|
|
allow bootloader_t modules_object_t:dir r_dir_perms;
|
|
|
|
allow bootloader_t modules_object_t:file r_file_perms;
|
|
|
|
allow bootloader_t modules_object_t:lnk_file r_file_perms;
|
2005-05-13 14:37:13 +00:00
|
|
|
|
2005-06-10 01:01:13 +00:00
|
|
|
kernel_getattr_core(bootloader_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
kernel_read_system_state(bootloader_t)
|
|
|
|
kernel_read_software_raid_state(bootloader_t)
|
|
|
|
kernel_read_kernel_sysctl(bootloader_t)
|
|
|
|
|
|
|
|
storage_raw_read_fixed_disk(bootloader_t)
|
|
|
|
storage_raw_write_fixed_disk(bootloader_t)
|
|
|
|
storage_raw_read_removable_device(bootloader_t)
|
|
|
|
storage_raw_write_removable_device(bootloader_t)
|
|
|
|
|
2005-06-13 16:22:32 +00:00
|
|
|
dev_getattr_all_chr_files(bootloader_t)
|
2005-09-01 20:13:42 +00:00
|
|
|
dev_getattr_all_blk_files(bootloader_t)
|
2005-06-13 16:22:32 +00:00
|
|
|
dev_dontaudit_rw_generic_dev_nodes(bootloader_t)
|
|
|
|
dev_read_rand(bootloader_t)
|
|
|
|
dev_read_urand(bootloader_t)
|
2005-06-20 17:41:29 +00:00
|
|
|
dev_getattr_sysfs_dir(bootloader_t)
|
2005-05-03 20:23:33 +00:00
|
|
|
# for reading BIOS data
|
2005-06-13 16:22:32 +00:00
|
|
|
dev_read_raw_memory(bootloader_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-06-10 01:01:13 +00:00
|
|
|
fs_getattr_xattr_fs(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
|
2005-06-10 01:01:13 +00:00
|
|
|
term_getattr_all_user_ttys(bootloader_t)
|
2005-08-15 19:31:37 +00:00
|
|
|
term_dontaudit_manage_pty_dir(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
|
2005-07-07 15:20:24 +00:00
|
|
|
corecmd_exec_bin(bootloader_t)
|
|
|
|
corecmd_exec_sbin(bootloader_t)
|
|
|
|
corecmd_exec_shell(bootloader_t)
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-07-07 15:20:24 +00:00
|
|
|
domain_exec_all_entry_files(bootloader_t)
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_use_wide_inherit_fd(bootloader_t)
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-06-29 14:26:41 +00:00
|
|
|
files_read_etc_files(bootloader_t)
|
2005-09-22 21:59:50 +00:00
|
|
|
files_exec_etc_files(bootloader_t)
|
2005-06-13 17:35:46 +00:00
|
|
|
files_read_etc_runtime_files(bootloader_t)
|
2005-06-29 14:26:41 +00:00
|
|
|
files_read_usr_src_files(bootloader_t)
|
2005-06-13 17:35:46 +00:00
|
|
|
files_read_usr_files(bootloader_t)
|
2005-06-29 14:26:41 +00:00
|
|
|
files_read_var_files(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
# for nscd
|
2005-06-13 17:35:46 +00:00
|
|
|
files_dontaudit_search_pids(bootloader_t)
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-07-07 15:20:24 +00:00
|
|
|
init_getattr_initctl(bootloader_t)
|
|
|
|
init_use_script_pty(bootloader_t)
|
|
|
|
init_use_script_fd(bootloader_t)
|
|
|
|
init_rw_script_pipe(bootloader_t)
|
|
|
|
|
|
|
|
libs_use_ld_so(bootloader_t)
|
|
|
|
libs_use_shared_libs(bootloader_t)
|
|
|
|
libs_read_lib(bootloader_t)
|
2005-09-22 21:59:50 +00:00
|
|
|
libs_exec_lib_files(bootloader_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
logging_send_syslog_msg(bootloader_t)
|
|
|
|
logging_rw_generic_logs(bootloader_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
miscfiles_read_localization(bootloader_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-06-14 20:48:34 +00:00
|
|
|
seutil_read_binary_pol(bootloader_t)
|
|
|
|
seutil_read_loadpol(bootloader_t)
|
2005-07-18 18:31:49 +00:00
|
|
|
seutil_dontaudit_search_config(bootloader_t)
|
2005-04-22 19:31:32 +00:00
|
|
|
|
2005-06-27 20:59:28 +00:00
|
|
|
ifdef(`distro_debian',`
|
|
|
|
allow bootloader_t bootloader_tmp_t:{ dir file } { relabelfrom relabelto };
|
|
|
|
allow bootloader_t modules_object_t:file { relabelfrom relabelto unlink };
|
|
|
|
allow bootloader_t boot_t:file relabelfrom;
|
|
|
|
|
2005-08-15 19:31:37 +00:00
|
|
|
fs_list_tmpfs(bootloader_t)
|
|
|
|
|
|
|
|
files_relabelto_usr_files(bootloader_t)
|
|
|
|
files_search_var_lib(bootloader_t)
|
2005-06-27 20:59:28 +00:00
|
|
|
# for /usr/share/initrd-tools/scripts
|
|
|
|
files_exec_usr_files(bootloader_t)
|
2005-08-15 19:31:37 +00:00
|
|
|
|
|
|
|
fstools_manage_entry_files(bootloader_t)
|
|
|
|
fstools_relabelto_entry_files(bootloader_t)
|
|
|
|
|
2005-08-17 14:09:29 +00:00
|
|
|
init_list_script_pids(bootloader_t)
|
|
|
|
|
2005-08-15 19:31:37 +00:00
|
|
|
libs_relabelto_lib_files(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-06-27 20:59:28 +00:00
|
|
|
ifdef(`distro_redhat',`
|
2005-06-03 12:25:14 +00:00
|
|
|
# for memlock
|
|
|
|
allow bootloader_t self:capability ipc_lock;
|
|
|
|
|
|
|
|
# new file system defaults to file_t, granting file_t access is still bad.
|
2005-06-08 20:28:45 +00:00
|
|
|
allow bootloader_t boot_runtime_t:file { r_file_perms unlink };
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
# mkinitrd mount initrd on bootloader temp dir
|
2005-06-13 17:35:46 +00:00
|
|
|
files_mountpoint(bootloader_tmp_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-27 20:59:28 +00:00
|
|
|
# new file system defaults to file_t, granting file_t access is still bad.
|
|
|
|
files_manage_isid_type_dir(bootloader_t)
|
|
|
|
files_manage_isid_type_file(bootloader_t)
|
|
|
|
files_manage_isid_type_symlink(bootloader_t)
|
|
|
|
files_manage_isid_type_blk_node(bootloader_t)
|
|
|
|
files_manage_isid_type_chr_node(bootloader_t)
|
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
# for mke2fs
|
2005-06-13 17:35:46 +00:00
|
|
|
mount_domtrans(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-11-16 21:08:52 +00:00
|
|
|
ifdef(`targeted_policy',`
|
|
|
|
term_use_unallocated_tty(bootloader_t)
|
|
|
|
term_use_generic_pty(bootloader_t)
|
|
|
|
')
|
|
|
|
|
2005-11-23 20:24:27 +00:00
|
|
|
optional_policy(`fstools',`
|
2005-09-14 00:30:10 +00:00
|
|
|
fstools_exec(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-11-23 20:24:27 +00:00
|
|
|
optional_policy(`lvm',`
|
2005-06-13 16:22:32 +00:00
|
|
|
dev_rw_lvm_control(bootloader_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
lvm_domtrans(bootloader_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
lvm_read_config(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-11-23 20:24:27 +00:00
|
|
|
optional_policy(`modutils',`
|
2005-10-18 18:25:33 +00:00
|
|
|
modutils_exec_insmod(bootloader_t)
|
2005-06-29 14:26:41 +00:00
|
|
|
modutils_read_mods_deps(bootloader_t)
|
2005-06-13 17:35:46 +00:00
|
|
|
modutils_read_module_conf(bootloader_t)
|
|
|
|
modutils_exec_insmod(bootloader_t)
|
|
|
|
modutils_exec_depmod(bootloader_t)
|
|
|
|
modutils_exec_update_mods(bootloader_t)
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-11-23 20:24:27 +00:00
|
|
|
optional_policy(`nscd',`
|
2005-11-16 21:08:52 +00:00
|
|
|
nscd_use_socket(bootloader_t)
|
|
|
|
')
|
|
|
|
|
2005-11-23 20:24:27 +00:00
|
|
|
optional_policy(`rpm',`
|
2005-07-12 20:34:24 +00:00
|
|
|
rpm_rw_pipe(bootloader_t)
|
|
|
|
')
|
|
|
|
|
2005-11-23 20:24:27 +00:00
|
|
|
optional_policy(`userdomain',`
|
2005-07-18 18:31:49 +00:00
|
|
|
userdom_dontaudit_search_staff_home_dir(bootloader_t)
|
|
|
|
userdom_dontaudit_search_sysadm_home_dir(bootloader_t)
|
|
|
|
')
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2005-07-18 18:31:49 +00:00
|
|
|
ifdef(`TODO',`
|
2005-06-07 18:45:47 +00:00
|
|
|
ifdef(`distro_debian', `
|
2005-08-15 19:31:37 +00:00
|
|
|
# cjp: there is no setfscreate or type_transition, and
|
|
|
|
# bootloader_t cannot rw a usr_t or lib_t directory, so
|
|
|
|
# how can this work? This is probably rw_file_perms,
|
|
|
|
# possibly with unlink. Files are probably "created"
|
|
|
|
# by the above relabeling permissions.
|
|
|
|
allow bootloader_t { usr_t lib_t }:file create_file_perms;
|
|
|
|
|
2005-06-03 12:25:14 +00:00
|
|
|
allow bootloader_t dpkg_var_lib_t:dir r_dir_perms;
|
|
|
|
allow bootloader_t dpkg_var_lib_t:file { getattr read };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
') dnl end TODO
|