Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# Authors:  Stephen Smalley <sds@epoch.ncsc.mil> and Timothy Fraser  
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
############################################
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# Procfs types
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# proc_t is the type of /proc.
Chris PeBenito 0fbfa5
# proc_kmsg_t is the type of /proc/kmsg.
Chris PeBenito 0fbfa5
# proc_kcore_t is the type of /proc/kcore.
Chris PeBenito 0fbfa5
# proc_mdstat_t is the type of /proc/mdstat.
Chris PeBenito 0fbfa5
# proc_net_t is the type of /proc/net.
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
type proc_t, fs_type, proc_fs;
Chris PeBenito 0fbfa5
type proc_kmsg_t, proc_fs;
Chris PeBenito 0fbfa5
type proc_kcore_t, proc_fs;
Chris PeBenito 0fbfa5
type proc_mdstat_t, proc_fs;
Chris PeBenito 0fbfa5
type proc_net_t, proc_fs;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# sysctl_t is the type of /proc/sys.
Chris PeBenito 0fbfa5
# sysctl_fs_t is the type of /proc/sys/fs.
Chris PeBenito 0fbfa5
# sysctl_kernel_t is the type of /proc/sys/kernel.
Chris PeBenito 0fbfa5
# sysctl_modprobe_t is the type of /proc/sys/kernel/modprobe.
Chris PeBenito 0fbfa5
# sysctl_hotplug_t is the type of /proc/sys/kernel/hotplug.
Chris PeBenito 0fbfa5
# sysctl_net_t is the type of /proc/sys/net.
Chris PeBenito 0fbfa5
# sysctl_net_unix_t is the type of /proc/sys/net/unix.
Chris PeBenito 0fbfa5
# sysctl_vm_t is the type of /proc/sys/vm.
Chris PeBenito 0fbfa5
# sysctl_dev_t is the type of /proc/sys/dev.
Chris PeBenito 0fbfa5
# sysctl_rpc_t is the type of /proc/net/rpc.
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
# These types are applied to both the entries in
Chris PeBenito 0fbfa5
# /proc/sys and the corresponding sysctl parameters.
Chris PeBenito 0fbfa5
#
Chris PeBenito 0fbfa5
type sysctl_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_fs_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_kernel_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_modprobe_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_hotplug_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_net_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_net_unix_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_vm_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_dev_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_rpc_t, sysctl_type;
Chris PeBenito 0fbfa5
type sysctl_irq_t, sysctl_type;
Chris PeBenito 0fbfa5
Chris PeBenito 0fbfa5