2005-04-20 19:07:16 +00:00
|
|
|
|
2008-07-31 14:05:46 +00:00
|
|
|
policy_module(files, 1.9.1)
|
2005-04-26 17:00:25 +00:00
|
|
|
|
2005-06-30 18:54:08 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Declarations
|
|
|
|
#
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
attribute file_type;
|
2006-04-10 21:04:51 +00:00
|
|
|
attribute files_unconfined_type;
|
2005-04-14 20:18:17 +00:00
|
|
|
attribute lockfile;
|
2005-05-23 15:49:31 +00:00
|
|
|
attribute mountpoint;
|
2005-04-14 20:18:17 +00:00
|
|
|
attribute pidfile;
|
2005-09-19 21:17:45 +00:00
|
|
|
|
|
|
|
# For labeling types that are to be polyinstantiated
|
|
|
|
attribute polydir;
|
|
|
|
|
|
|
|
# And for labeling the parent directories of those polyinstantiated directories
|
|
|
|
# This is necessary for remounting the original in the parent to give
|
|
|
|
# security aware apps access
|
|
|
|
attribute polyparent;
|
|
|
|
|
|
|
|
# And labeling for the member directories
|
|
|
|
attribute polymember;
|
|
|
|
|
2005-09-28 19:07:22 +00:00
|
|
|
# sensitive security files whose accesses should
|
|
|
|
# not be dontaudited for uses
|
|
|
|
attribute security_file_type;
|
2008-07-31 14:05:46 +00:00
|
|
|
# and its opposite
|
|
|
|
attribute non_security_file_type;
|
2005-09-28 19:07:22 +00:00
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
attribute tmpfile;
|
2005-05-23 15:49:31 +00:00
|
|
|
attribute tmpfsfile;
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2007-02-26 16:13:23 +00:00
|
|
|
# this attribute is not currently used and will be removed in the future.
|
|
|
|
# unfortunately, this attribute can not be removed yet because it may cause
|
|
|
|
# some policies to fail to link if it is still required.
|
2006-03-28 19:54:07 +00:00
|
|
|
attribute usercanread;
|
|
|
|
|
2006-03-02 23:41:11 +00:00
|
|
|
#
|
|
|
|
# boot_t is the type for files in /boot
|
|
|
|
#
|
|
|
|
type boot_t;
|
|
|
|
files_mountpoint(boot_t)
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
# default_t is the default type for files that do not
|
|
|
|
# match any specification in the file_contexts configuration
|
|
|
|
# other than the generic /.* specification.
|
2006-03-28 19:54:07 +00:00
|
|
|
type default_t;
|
|
|
|
files_mountpoint(default_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# etc_t is the type of the system etc directories.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type etc_t;
|
|
|
|
files_type(etc_t)
|
2007-02-16 23:01:42 +00:00
|
|
|
# compatibility aliases for removed types:
|
|
|
|
typealias etc_t alias automount_etc_t;
|
2007-06-19 17:39:35 +00:00
|
|
|
typealias etc_t alias snmpd_etc_t;
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# etc_runtime_t is the type of various
|
|
|
|
# files in /etc that are automatically
|
|
|
|
# generated during initialization.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type etc_runtime_t;
|
|
|
|
files_type(etc_runtime_t)
|
2006-09-25 18:53:06 +00:00
|
|
|
#Temporarily in policy until FC5 dissappears
|
|
|
|
typealias etc_runtime_t alias firstboot_rw_t;
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# file_t is the default type of a file that has not yet been
|
|
|
|
# assigned an extended attribute (EA) value (when using a filesystem
|
|
|
|
# that supports EAs).
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type file_t;
|
|
|
|
files_mountpoint(file_t)
|
2005-06-10 01:01:13 +00:00
|
|
|
kernel_rootfs_mountpoint(file_t)
|
2005-10-06 19:33:06 +00:00
|
|
|
sid file gen_context(system_u:object_r:file_t,s0)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# home_root_t is the type for the directory where user home directories
|
|
|
|
# are created
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type home_root_t;
|
|
|
|
files_mountpoint(home_root_t)
|
2006-02-27 16:23:39 +00:00
|
|
|
files_poly_parent(home_root_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# lost_found_t is the type for the lost+found directories.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type lost_found_t;
|
|
|
|
files_type(lost_found_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# mnt_t is the type for mount points such as /mnt/cdrom
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type mnt_t;
|
|
|
|
files_mountpoint(mnt_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2006-03-02 23:41:11 +00:00
|
|
|
#
|
|
|
|
# modules_object_t is the type for kernel modules
|
|
|
|
#
|
|
|
|
type modules_object_t;
|
|
|
|
files_type(modules_object_t)
|
|
|
|
|
2006-03-28 19:54:07 +00:00
|
|
|
type no_access_t;
|
|
|
|
files_type(no_access_t)
|
2005-04-25 19:54:27 +00:00
|
|
|
|
2006-03-28 19:54:07 +00:00
|
|
|
type poly_t;
|
|
|
|
files_type(poly_t)
|
2005-04-25 19:54:27 +00:00
|
|
|
|
2006-03-28 19:54:07 +00:00
|
|
|
type readable_t;
|
|
|
|
files_type(readable_t)
|
2005-04-25 19:54:27 +00:00
|
|
|
|
2005-04-28 21:41:09 +00:00
|
|
|
#
|
|
|
|
# root_t is the type for rootfs and the root directory.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type root_t;
|
|
|
|
files_mountpoint(root_t)
|
2006-02-27 16:23:39 +00:00
|
|
|
files_poly_parent(root_t)
|
2005-06-10 01:01:13 +00:00
|
|
|
kernel_rootfs_mountpoint(root_t)
|
2005-10-06 19:33:06 +00:00
|
|
|
genfscon rootfs / gen_context(system_u:object_r:root_t,s0)
|
2005-04-28 21:41:09 +00:00
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
|
|
|
# src_t is the type of files in the system src directories.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type src_t;
|
|
|
|
files_mountpoint(src_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
2006-03-02 23:41:11 +00:00
|
|
|
#
|
|
|
|
# system_map_t is for the system.map files in /boot
|
|
|
|
#
|
|
|
|
type system_map_t;
|
|
|
|
files_type(system_map_t)
|
2008-02-15 19:59:10 +00:00
|
|
|
genfscon proc /kallsyms gen_context(system_u:object_r:system_map_t,s0)
|
2006-03-02 23:41:11 +00:00
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
|
|
|
# tmp_t is the type of the temporary directories
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type tmp_t;
|
2005-10-25 20:06:27 +00:00
|
|
|
files_tmp_file(tmp_t)
|
2006-03-28 19:54:07 +00:00
|
|
|
files_mountpoint(tmp_t)
|
|
|
|
files_poly(tmp_t)
|
2006-02-27 16:23:39 +00:00
|
|
|
files_poly_parent(tmp_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# usr_t is the type for /usr.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type usr_t;
|
|
|
|
files_mountpoint(usr_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# var_t is the type of /var
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type var_t;
|
|
|
|
files_mountpoint(var_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# var_lib_t is the type of /var/lib
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type var_lib_t;
|
|
|
|
files_mountpoint(var_lib_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# var_lock_t is tye type of /var/lock
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type var_lock_t;
|
|
|
|
files_lock_file(var_lock_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# var_run_t is the type of /var/run, usually
|
|
|
|
# used for pid and other runtime files.
|
|
|
|
#
|
2006-03-28 19:54:07 +00:00
|
|
|
type var_run_t;
|
|
|
|
files_pid_file(var_run_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# var_spool_t is the type of /var/spool
|
|
|
|
#
|
2005-10-25 20:06:27 +00:00
|
|
|
type var_spool_t;
|
|
|
|
files_tmp_file(var_spool_t)
|
2006-03-28 19:54:07 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Rules for all file types
|
|
|
|
#
|
|
|
|
|
|
|
|
allow file_type self:filesystem associate;
|
|
|
|
|
|
|
|
fs_associate(file_type)
|
|
|
|
fs_associate_noxattr(file_type)
|
2007-10-02 16:04:50 +00:00
|
|
|
fs_associate_tmpfs(file_type)
|
2007-10-29 18:35:32 +00:00
|
|
|
fs_associate_ramfs(file_type)
|
2006-05-17 14:50:31 +00:00
|
|
|
|
2006-03-28 19:54:07 +00:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Rules for all tmp file types
|
|
|
|
#
|
|
|
|
|
|
|
|
allow tmpfile tmp_t:filesystem associate;
|
|
|
|
|
|
|
|
fs_associate_tmpfs(tmpfile)
|
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Rules for all tmpfs file types
|
|
|
|
#
|
|
|
|
|
|
|
|
fs_associate_tmpfs(tmpfsfile)
|
2006-04-10 21:04:51 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Unconfined access to this module
|
|
|
|
#
|
|
|
|
|
|
|
|
# Create/access any file in a labeled filesystem;
|
|
|
|
allow files_unconfined_type file_type:{ file chr_file } ~execmod;
|
|
|
|
allow files_unconfined_type file_type:{ dir lnk_file sock_file fifo_file blk_file } *;
|
|
|
|
|
|
|
|
# Mount/unmount any filesystem with the context= option.
|
|
|
|
allow files_unconfined_type file_type:filesystem *;
|
|
|
|
|
2007-10-02 16:04:50 +00:00
|
|
|
tunable_policy(`allow_execmod',`
|
|
|
|
allow files_unconfined_type file_type:file execmod;
|
2006-04-10 21:04:51 +00:00
|
|
|
')
|