2005-04-29 17:45:15 +00:00
|
|
|
#
|
|
|
|
# Authors: Stephen Smalley <sds@epoch.ncsc.mil> and Timothy Fraser
|
|
|
|
#
|
|
|
|
|
|
|
|
############################################
|
|
|
|
#
|
|
|
|
# Procfs types
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# proc_t is the type of /proc.
|
|
|
|
# proc_kmsg_t is the type of /proc/kmsg.
|
|
|
|
# proc_kcore_t is the type of /proc/kcore.
|
|
|
|
# proc_mdstat_t is the type of /proc/mdstat.
|
|
|
|
# proc_net_t is the type of /proc/net.
|
|
|
|
#
|
2005-09-15 21:03:45 +00:00
|
|
|
type proc_t, fs_type, mount_point, proc_fs;
|
2005-04-29 17:45:15 +00:00
|
|
|
type proc_kmsg_t, proc_fs;
|
|
|
|
type proc_kcore_t, proc_fs;
|
|
|
|
type proc_mdstat_t, proc_fs;
|
|
|
|
type proc_net_t, proc_fs;
|
|
|
|
|
|
|
|
#
|
|
|
|
# sysctl_t is the type of /proc/sys.
|
|
|
|
# sysctl_fs_t is the type of /proc/sys/fs.
|
|
|
|
# sysctl_kernel_t is the type of /proc/sys/kernel.
|
|
|
|
# sysctl_modprobe_t is the type of /proc/sys/kernel/modprobe.
|
|
|
|
# sysctl_hotplug_t is the type of /proc/sys/kernel/hotplug.
|
|
|
|
# sysctl_net_t is the type of /proc/sys/net.
|
|
|
|
# sysctl_net_unix_t is the type of /proc/sys/net/unix.
|
|
|
|
# sysctl_vm_t is the type of /proc/sys/vm.
|
|
|
|
# sysctl_dev_t is the type of /proc/sys/dev.
|
|
|
|
# sysctl_rpc_t is the type of /proc/net/rpc.
|
|
|
|
#
|
|
|
|
# These types are applied to both the entries in
|
|
|
|
# /proc/sys and the corresponding sysctl parameters.
|
|
|
|
#
|
2005-09-15 21:03:45 +00:00
|
|
|
type sysctl_t, mount_point, sysctl_type;
|
2005-04-29 17:45:15 +00:00
|
|
|
type sysctl_fs_t, sysctl_type;
|
|
|
|
type sysctl_kernel_t, sysctl_type;
|
|
|
|
type sysctl_modprobe_t, sysctl_type;
|
|
|
|
type sysctl_hotplug_t, sysctl_type;
|
|
|
|
type sysctl_net_t, sysctl_type;
|
|
|
|
type sysctl_net_unix_t, sysctl_type;
|
|
|
|
type sysctl_vm_t, sysctl_type;
|
|
|
|
type sysctl_dev_t, sysctl_type;
|
|
|
|
type sysctl_rpc_t, sysctl_type;
|
|
|
|
type sysctl_irq_t, sysctl_type;
|
|
|
|
|
|
|
|
|