|
Chris PeBenito |
e32d52 |
## <summary>
|
|
Chris PeBenito |
836929 |
## Policy for kernel threads, proc filesystem,
|
|
Chris PeBenito |
836929 |
## and unlabeled processes and objects.
|
|
Chris PeBenito |
e32d52 |
## </summary>
|
|
Chris PeBenito |
274547 |
## <required val="true">
|
|
Chris PeBenito |
725926 |
## This module has initial SIDs.
|
|
Chris PeBenito |
274547 |
## </required>
|
|
Chris PeBenito |
e181fe |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows to start userland processes
|
|
Chris PeBenito |
414e41 |
## by transitioning to the specified domain.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type entered by kernel.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
414e41 |
## <param name="entrypoint">
|
|
Chris PeBenito |
414e41 |
## The executable type for the entrypoint.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
ff3138 |
#
|
|
Chris PeBenito |
270d42 |
interface(`kernel_domtrans_to',`
|
|
Chris PeBenito |
7a2f20 |
gen_require(`
|
|
Chris PeBenito |
7a2f20 |
type kernel_t;
|
|
Chris PeBenito |
7a2f20 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
c2c00b |
domain_auto_trans(kernel_t, $2, $1)
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow kernel_t $1:fd use;
|
|
Chris PeBenito |
725926 |
allow $1 kernel_t:fd use;
|
|
Chris PeBenito |
725926 |
allow $1 kernel_t:fifo_file rw_file_perms;
|
|
Chris PeBenito |
0c73cd |
allow $1 kernel_t:process sigchld;
|
|
Chris PeBenito |
bf080a |
|
|
Chris PeBenito |
bf080a |
ifdef(`enable_mls',`
|
|
Chris PeBenito |
bf080a |
allow kernel_t $1:process noatsecure;
|
|
Chris PeBenito |
bf080a |
')
|
|
Chris PeBenito |
ff3138 |
')
|
|
Chris PeBenito |
ff3138 |
|
|
Chris PeBenito |
ff3138 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows the kernel to mount filesystems on
|
|
Chris PeBenito |
414e41 |
## the specified directory type.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="directory_type">
|
|
Chris PeBenito |
414e41 |
## The type of the directory to use as a mountpoint.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
588ffa |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rootfs_mountpoint',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
588ffa |
|
|
Chris PeBenito |
588ffa |
allow kernel_t $1:dir mounton;
|
|
Chris PeBenito |
588ffa |
')
|
|
Chris PeBenito |
588ffa |
|
|
Chris PeBenito |
588ffa |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
98a8ea |
## Set the process group of kernel threads.
|
|
Chris PeBenito |
98a8ea |
## </summary>
|
|
Chris PeBenito |
98a8ea |
## <param name="domain">
|
|
Chris PeBenito |
98a8ea |
## Domain allowed access.
|
|
Chris PeBenito |
98a8ea |
## </param>
|
|
Chris PeBenito |
98a8ea |
#
|
|
Chris PeBenito |
98a8ea |
interface(`kernel_setpgid',`
|
|
Chris PeBenito |
98a8ea |
gen_require(`
|
|
Chris PeBenito |
98a8ea |
type kernel_t;
|
|
Chris PeBenito |
98a8ea |
')
|
|
Chris PeBenito |
98a8ea |
|
|
Chris PeBenito |
98a8ea |
allow $1 kernel_t:process setpgid;
|
|
Chris PeBenito |
98a8ea |
')
|
|
Chris PeBenito |
98a8ea |
|
|
Chris PeBenito |
98a8ea |
########################################
|
|
Chris PeBenito |
98a8ea |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Send a SIGCHLD signal to kernel threads.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The type of the process sending the signal.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
7a2f20 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_sigchld',`
|
|
Chris PeBenito |
7a2f20 |
gen_require(`
|
|
Chris PeBenito |
7a2f20 |
type kernel_t;
|
|
Chris PeBenito |
7a2f20 |
')
|
|
Chris PeBenito |
7a2f20 |
|
|
Chris PeBenito |
98a8ea |
allow $1 kernel_t:process sigchld;
|
|
Chris PeBenito |
7a2f20 |
')
|
|
Chris PeBenito |
7a2f20 |
|
|
Chris PeBenito |
7a2f20 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
0907bd |
## Send a generic signal to kernel threads.
|
|
Chris PeBenito |
0907bd |
## </summary>
|
|
Chris PeBenito |
0907bd |
## <param name="domain">
|
|
Chris PeBenito |
0907bd |
## The type of the process sending the signal.
|
|
Chris PeBenito |
0907bd |
## </param>
|
|
Chris PeBenito |
0907bd |
#
|
|
Chris PeBenito |
0907bd |
interface(`kernel_signal',`
|
|
Chris PeBenito |
0907bd |
gen_require(`
|
|
Chris PeBenito |
0907bd |
type kernel_t;
|
|
Chris PeBenito |
0907bd |
')
|
|
Chris PeBenito |
0907bd |
|
|
Chris PeBenito |
0907bd |
allow kernel_t $1:process signal;
|
|
Chris PeBenito |
0907bd |
')
|
|
Chris PeBenito |
0907bd |
|
|
Chris PeBenito |
0907bd |
########################################
|
|
Chris PeBenito |
0907bd |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows the kernel to share state information with
|
|
Chris PeBenito |
414e41 |
## the caller.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The type of the process with which to share state information.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_share_state',`
|
|
Chris PeBenito |
7a2f20 |
gen_require(`
|
|
Chris PeBenito |
7a2f20 |
type kernel_t;
|
|
Chris PeBenito |
7a2f20 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow kernel_t $1:process share;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Permits caller to use kernel file descriptors.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The type of the process using the descriptors.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_use_fd',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 kernel_t:fd use;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
a2d824 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Do not audit attempts to use
|
|
Chris PeBenito |
414e41 |
## kernel file descriptors.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The type of process not to audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
a2d824 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_dontaudit_use_fd',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
dontaudit $1 kernel_t:fd use;
|
|
Chris PeBenito |
a2d824 |
')
|
|
Chris PeBenito |
a2d824 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
4051d1 |
## <summary>
|
|
Chris PeBenito |
ae9e27 |
## Read and write kernel unnamed pipes.
|
|
Chris PeBenito |
ae9e27 |
## </summary>
|
|
Chris PeBenito |
ae9e27 |
## <param name="domain">
|
|
Chris PeBenito |
ae9e27 |
## Domain allowed access.
|
|
Chris PeBenito |
ae9e27 |
## </param>
|
|
Chris PeBenito |
ae9e27 |
#
|
|
Chris PeBenito |
ae9e27 |
interface(`kernel_rw_pipe',`
|
|
Chris PeBenito |
ae9e27 |
gen_require(`
|
|
Chris PeBenito |
ae9e27 |
type kernel_t;
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
allow $1 kernel_t:fifo_file { read write };
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
########################################
|
|
Chris PeBenito |
ae9e27 |
## <summary>
|
|
Chris PeBenito |
ae9e27 |
## Read and write kernel unix datagram sockets.
|
|
Chris PeBenito |
ae9e27 |
## </summary>
|
|
Chris PeBenito |
ae9e27 |
## <param name="domain">
|
|
Chris PeBenito |
ae9e27 |
## Domain allowed access.
|
|
Chris PeBenito |
ae9e27 |
## </param>
|
|
Chris PeBenito |
ae9e27 |
#
|
|
Chris PeBenito |
ae9e27 |
interface(`kernel_rw_unix_dgram_socket',`
|
|
Chris PeBenito |
ae9e27 |
gen_require(`
|
|
Chris PeBenito |
ae9e27 |
type kernel_t;
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
allow $1 kernel_t:unix_dgram_socket { read write ioctl };
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
########################################
|
|
Chris PeBenito |
ae9e27 |
## <summary>
|
|
Chris PeBenito |
ae9e27 |
## Send messages to kernel unix datagram sockets.
|
|
Chris PeBenito |
ae9e27 |
## </summary>
|
|
Chris PeBenito |
ae9e27 |
## <param name="domain">
|
|
Chris PeBenito |
ae9e27 |
## Domain allowed access.
|
|
Chris PeBenito |
ae9e27 |
## </param>
|
|
Chris PeBenito |
ae9e27 |
#
|
|
Chris PeBenito |
ae9e27 |
interface(`kernel_sendto_unix_dgram_socket',`
|
|
Chris PeBenito |
ae9e27 |
gen_require(`
|
|
Chris PeBenito |
ae9e27 |
type kernel_t;
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
allow $1 kernel_t:unix_dgram_socket sendto;
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
########################################
|
|
Chris PeBenito |
a5f339 |
## <summary>
|
|
Chris PeBenito |
a5f339 |
## Receive messages from kernel TCP sockets.
|
|
Chris PeBenito |
a5f339 |
## </summary>
|
|
Chris PeBenito |
a5f339 |
## <param name="domain">
|
|
Chris PeBenito |
a5f339 |
## Domain allowed access.
|
|
Chris PeBenito |
a5f339 |
## </param>
|
|
Chris PeBenito |
a5f339 |
#
|
|
Chris PeBenito |
a5f339 |
interface(`kernel_tcp_recvfrom',`
|
|
Chris PeBenito |
a5f339 |
gen_require(`
|
|
Chris PeBenito |
a5f339 |
type kernel_t;
|
|
Chris PeBenito |
a5f339 |
')
|
|
Chris PeBenito |
a5f339 |
|
|
Chris PeBenito |
a5f339 |
allow $1 kernel_t:tcp_socket recvfrom;
|
|
Chris PeBenito |
a5f339 |
')
|
|
Chris PeBenito |
a5f339 |
|
|
Chris PeBenito |
a5f339 |
########################################
|
|
Chris PeBenito |
a5f339 |
## <summary>
|
|
Chris PeBenito |
18cc01 |
## Send UDP network traffic to the kernel.
|
|
Chris PeBenito |
18cc01 |
## </summary>
|
|
Chris PeBenito |
18cc01 |
## <param name="domain">
|
|
Chris PeBenito |
18cc01 |
## Domain allowed access.
|
|
Chris PeBenito |
18cc01 |
## </param>
|
|
Chris PeBenito |
18cc01 |
#
|
|
Chris PeBenito |
18cc01 |
interface(`kernel_udp_sendto',`
|
|
Chris PeBenito |
18cc01 |
gen_require(`
|
|
Chris PeBenito |
18cc01 |
type kernel_t;
|
|
Chris PeBenito |
18cc01 |
')
|
|
Chris PeBenito |
18cc01 |
|
|
Chris PeBenito |
18cc01 |
allow $1 kernel_t:udp_socket sendto;
|
|
Chris PeBenito |
18cc01 |
allow kernel_t $1:udp_socket recvfrom;
|
|
Chris PeBenito |
18cc01 |
')
|
|
Chris PeBenito |
18cc01 |
|
|
Chris PeBenito |
18cc01 |
########################################
|
|
Chris PeBenito |
18cc01 |
## <summary>
|
|
Chris PeBenito |
a5f339 |
## Receive messages from kernel UDP sockets.
|
|
Chris PeBenito |
a5f339 |
## </summary>
|
|
Chris PeBenito |
a5f339 |
## <param name="domain">
|
|
Chris PeBenito |
a5f339 |
## Domain allowed access.
|
|
Chris PeBenito |
a5f339 |
## </param>
|
|
Chris PeBenito |
a5f339 |
#
|
|
Chris PeBenito |
a5f339 |
interface(`kernel_udp_recvfrom',`
|
|
Chris PeBenito |
a5f339 |
gen_require(`
|
|
Chris PeBenito |
a5f339 |
type kernel_t;
|
|
Chris PeBenito |
a5f339 |
')
|
|
Chris PeBenito |
a5f339 |
|
|
Chris PeBenito |
a5f339 |
allow $1 kernel_t:udp_socket recvfrom;
|
|
Chris PeBenito |
a5f339 |
')
|
|
Chris PeBenito |
a5f339 |
|
|
Chris PeBenito |
a5f339 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows caller to load kernel modules
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type to allow to load kernel modules.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_load_module',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
attribute can_load_kernmodule;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 self:capability sys_module;
|
|
Chris PeBenito |
0c73cd |
typeattribute $1 can_load_kernmodule;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows caller to read the ring buffer.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type allowed to read the ring buffer.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_ring_buffer',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 kernel_t:system syslog_read;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Do not audit attempts to read the ring buffer.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The domain to not audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b16c6b |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_dontaudit_read_ring_buffer',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
dontaudit $1 kernel_t:system syslog_read;
|
|
Chris PeBenito |
b16c6b |
')
|
|
Chris PeBenito |
b16c6b |
|
|
Chris PeBenito |
b16c6b |
########################################
|
|
Chris PeBenito |
58c3da |
## <summary>
|
|
Chris PeBenito |
58c3da |
## Change the level of kernel messages logged to the console.
|
|
Chris PeBenito |
58c3da |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_change_ring_buffer_level',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 kernel_t:system syslog_console;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows the caller to clear the ring buffer.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type clearing the buffer.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_clear_ring_buffer',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 kernel_t:system syslog_mod;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Get information on all System V IPC objects.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
##
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_get_sysvipc_info',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 kernel_t:system ipc_info;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
a1fcff |
## Get the attributes of a kernel debugging filesystem.
|
|
Chris PeBenito |
a1fcff |
## </summary>
|
|
Chris PeBenito |
a1fcff |
## <param name="domain">
|
|
Chris PeBenito |
a1fcff |
## Domain allowed access.
|
|
Chris PeBenito |
a1fcff |
## </param>
|
|
Chris PeBenito |
a1fcff |
#
|
|
Chris PeBenito |
a1fcff |
interface(`kernel_getattr_debugfs',`
|
|
Chris PeBenito |
a1fcff |
gen_require(`
|
|
Chris PeBenito |
a1fcff |
type debugfs_t;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
allow $1 debugfs_t:filesystem getattr;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
########################################
|
|
Chris PeBenito |
a1fcff |
## <summary>
|
|
Chris PeBenito |
a1fcff |
## Mount a kernel debugging filesystem.
|
|
Chris PeBenito |
a1fcff |
## </summary>
|
|
Chris PeBenito |
a1fcff |
## <param name="domain">
|
|
Chris PeBenito |
a1fcff |
## The type of the domain mounting the filesystem.
|
|
Chris PeBenito |
a1fcff |
## </param>
|
|
Chris PeBenito |
a1fcff |
#
|
|
Chris PeBenito |
a1fcff |
interface(`kernel_mount_debugfs',`
|
|
Chris PeBenito |
a1fcff |
gen_require(`
|
|
Chris PeBenito |
a1fcff |
type debugfs_t;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
allow $1 debugfs_t:filesystem mount;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
########################################
|
|
Chris PeBenito |
a1fcff |
## <summary>
|
|
Chris PeBenito |
a1fcff |
## Unmount a kernel debugging filesystem.
|
|
Chris PeBenito |
a1fcff |
## </summary>
|
|
Chris PeBenito |
a1fcff |
## <param name="domain">
|
|
Chris PeBenito |
a1fcff |
## The type of the domain unmounting the filesystem.
|
|
Chris PeBenito |
a1fcff |
## </param>
|
|
Chris PeBenito |
a1fcff |
#
|
|
Chris PeBenito |
a1fcff |
interface(`kernel_unmount_debugfs',`
|
|
Chris PeBenito |
a1fcff |
gen_require(`
|
|
Chris PeBenito |
a1fcff |
type debugfs_t;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
allow $1 debugfs_t:filesystem unmount;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
########################################
|
|
Chris PeBenito |
a1fcff |
## <summary>
|
|
Chris PeBenito |
a1fcff |
## Remount a kernel debugging filesystem.
|
|
Chris PeBenito |
a1fcff |
## </summary>
|
|
Chris PeBenito |
a1fcff |
## <param name="domain">
|
|
Chris PeBenito |
a1fcff |
## The type of the domain remounting the filesystem.
|
|
Chris PeBenito |
a1fcff |
## </param>
|
|
Chris PeBenito |
a1fcff |
#
|
|
Chris PeBenito |
a1fcff |
interface(`kernel_remount_debugfs',`
|
|
Chris PeBenito |
a1fcff |
gen_require(`
|
|
Chris PeBenito |
a1fcff |
type debugfs_t;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
allow $1 debugfs_t:filesystem remount;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
########################################
|
|
Chris PeBenito |
a1fcff |
## <summary>
|
|
Chris PeBenito |
a1fcff |
## Search the contents of a kernel debugging filesystem.
|
|
Chris PeBenito |
a1fcff |
## </summary>
|
|
Chris PeBenito |
a1fcff |
## <param name="domain">
|
|
Chris PeBenito |
a1fcff |
## Domain allowed access.
|
|
Chris PeBenito |
a1fcff |
## </param>
|
|
Chris PeBenito |
a1fcff |
#
|
|
Chris PeBenito |
a1fcff |
interface(`kernel_search_debugfs',`
|
|
Chris PeBenito |
a1fcff |
gen_require(`
|
|
Chris PeBenito |
a1fcff |
type debugfs_t;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
allow $1 debugfs_t:dir search;
|
|
Chris PeBenito |
a1fcff |
')
|
|
Chris PeBenito |
a1fcff |
|
|
Chris PeBenito |
a1fcff |
########################################
|
|
Chris PeBenito |
a1fcff |
## <summary>
|
|
Chris PeBenito |
d8636f |
## Read information from the debugging filesystem.
|
|
Chris PeBenito |
d8636f |
## </summary>
|
|
Chris PeBenito |
d8636f |
## <param name="domain">
|
|
Chris PeBenito |
d8636f |
## Domain allowed access.
|
|
Chris PeBenito |
d8636f |
## </param>
|
|
Chris PeBenito |
d8636f |
#
|
|
Chris PeBenito |
d8636f |
interface(`kernel_read_debugfs',`
|
|
Chris PeBenito |
d8636f |
gen_require(`
|
|
Chris PeBenito |
d8636f |
type debugfs_t;
|
|
Chris PeBenito |
d8636f |
')
|
|
Chris PeBenito |
d8636f |
|
|
Chris PeBenito |
bf080a |
allow $1 debugfs_t:dir r_dir_perms;
|
|
Chris PeBenito |
d8636f |
allow $1 debugfs_t:file r_file_perms;
|
|
Chris PeBenito |
d8636f |
allow $1 debugfs_t:lnk_file { getattr read };
|
|
Chris PeBenito |
d8636f |
')
|
|
Chris PeBenito |
d8636f |
|
|
Chris PeBenito |
d8636f |
########################################
|
|
Chris PeBenito |
d8636f |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## Get the attributes of the proc filesystem.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
a42ca7 |
## <param name="domain">
|
|
Chris PeBenito |
a42ca7 |
## Domain allowed access.
|
|
Chris PeBenito |
a42ca7 |
## </param>
|
|
Chris PeBenito |
a42ca7 |
#
|
|
Chris PeBenito |
a42ca7 |
interface(`kernel_getattr_proc',`
|
|
Chris PeBenito |
a42ca7 |
gen_require(`
|
|
Chris PeBenito |
a42ca7 |
type proc_t;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
allow $1 proc_t:filesystem getattr;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## Search directories in /proc.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
a42ca7 |
## <param name="domain">
|
|
Chris PeBenito |
a42ca7 |
## Domain allowed access.
|
|
Chris PeBenito |
a42ca7 |
## </param>
|
|
Chris PeBenito |
a42ca7 |
#
|
|
Chris PeBenito |
a42ca7 |
interface(`kernel_search_proc',`
|
|
Chris PeBenito |
a42ca7 |
gen_require(`
|
|
Chris PeBenito |
a42ca7 |
type proc_t;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## List the contents of directories in /proc.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
a42ca7 |
## <param name="domain">
|
|
Chris PeBenito |
a42ca7 |
## Domain allowed access.
|
|
Chris PeBenito |
a42ca7 |
## </param>
|
|
Chris PeBenito |
a42ca7 |
#
|
|
Chris PeBenito |
a42ca7 |
interface(`kernel_list_proc',`
|
|
Chris PeBenito |
a42ca7 |
gen_require(`
|
|
Chris PeBenito |
a42ca7 |
type proc_t;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
allow $1 proc_t:dir r_dir_perms;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
725926 |
## Do not audit attempts to list the
|
|
Chris PeBenito |
725926 |
## contents of directories in /proc.
|
|
Chris PeBenito |
725926 |
## </summary>
|
|
Chris PeBenito |
725926 |
## <param name="domain">
|
|
Chris PeBenito |
725926 |
## Domain to not audit.
|
|
Chris PeBenito |
725926 |
## </param>
|
|
Chris PeBenito |
725926 |
#
|
|
Chris PeBenito |
725926 |
interface(`kernel_dontaudit_list_proc',`
|
|
Chris PeBenito |
725926 |
gen_require(`
|
|
Chris PeBenito |
725926 |
type proc_t;
|
|
Chris PeBenito |
725926 |
')
|
|
Chris PeBenito |
725926 |
|
|
Chris PeBenito |
725926 |
dontaudit $1 proc_t:dir list_dir_perms;
|
|
Chris PeBenito |
725926 |
')
|
|
Chris PeBenito |
725926 |
|
|
Chris PeBenito |
725926 |
########################################
|
|
Chris PeBenito |
725926 |
## <summary>
|
|
Chris PeBenito |
131e57 |
## Get the attributes of files in /proc.
|
|
Chris PeBenito |
131e57 |
## </summary>
|
|
Chris PeBenito |
131e57 |
## <param name="domain">
|
|
Chris PeBenito |
131e57 |
## Domain allowed access.
|
|
Chris PeBenito |
131e57 |
## </param>
|
|
Chris PeBenito |
131e57 |
#
|
|
Chris PeBenito |
131e57 |
interface(`kernel_getattr_proc_files',`
|
|
Chris PeBenito |
131e57 |
gen_require(`
|
|
Chris PeBenito |
131e57 |
type proc_t;
|
|
Chris PeBenito |
131e57 |
')
|
|
Chris PeBenito |
131e57 |
|
|
Chris PeBenito |
131e57 |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
131e57 |
allow $1 proc_t:file getattr;
|
|
Chris PeBenito |
131e57 |
')
|
|
Chris PeBenito |
131e57 |
|
|
Chris PeBenito |
131e57 |
########################################
|
|
Chris PeBenito |
131e57 |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## Read symbolic links in /proc.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
a42ca7 |
## <param name="domain">
|
|
Chris PeBenito |
a42ca7 |
## Domain allowed access.
|
|
Chris PeBenito |
a42ca7 |
## </param>
|
|
Chris PeBenito |
a42ca7 |
#
|
|
Chris PeBenito |
a42ca7 |
interface(`kernel_read_proc_symlinks',`
|
|
Chris PeBenito |
a42ca7 |
gen_require(`
|
|
Chris PeBenito |
a42ca7 |
type proc_t;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
a42ca7 |
allow $1 proc_t:lnk_file { getattr read };
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## Allows caller to read system state information in proc.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type reading the system state information.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_system_state',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir r_dir_perms;
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:lnk_file { getattr read };
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:file r_file_perms;
|
|
Chris PeBenito |
d8636f |
')
|
|
Chris PeBenito |
d8636f |
|
|
Chris PeBenito |
d8636f |
########################################
|
|
Chris PeBenito |
d8636f |
## <summary>
|
|
Chris PeBenito |
d8636f |
## Write to generic proc entries.
|
|
Chris PeBenito |
d8636f |
## </summary>
|
|
Chris PeBenito |
d8636f |
## <param name="domain">
|
|
Chris PeBenito |
d8636f |
## Domain allowed access.
|
|
Chris PeBenito |
d8636f |
## </param>
|
|
Chris PeBenito |
d8636f |
#
|
|
Chris PeBenito |
d8636f |
# cjp: this should probably go away. any
|
|
Chris PeBenito |
d8636f |
# file thats writable in proc should really
|
|
Chris PeBenito |
d8636f |
# have its own label.
|
|
Chris PeBenito |
d8636f |
#
|
|
Chris PeBenito |
d8636f |
interface(`kernel_write_proc_file',`
|
|
Chris PeBenito |
d8636f |
gen_require(`
|
|
Chris PeBenito |
d8636f |
type proc_t;
|
|
Chris PeBenito |
d8636f |
')
|
|
Chris PeBenito |
d8636f |
|
|
Chris PeBenito |
d8636f |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
2e0a88 |
allow $1 proc_t:file { append write };
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
67484f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Do not audit attempts by caller to
|
|
Chris PeBenito |
a42ca7 |
## read system state information in proc.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type not to audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
67484f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_dontaudit_read_system_state',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
6e6156 |
dontaudit $1 proc_t:file read;
|
|
Chris PeBenito |
67484f |
')
|
|
Chris PeBenito |
67484f |
|
|
Don Miner |
c11417 |
########################################
|
|
Don Miner |
c11417 |
## <summary>
|
|
Don Miner |
c11417 |
## Do not audit attempts by caller to
|
|
Don Miner |
c11417 |
## read system state information in proc.
|
|
Don Miner |
c11417 |
## </summary>
|
|
Don Miner |
c11417 |
## <param name="domain">
|
|
Don Miner |
c11417 |
## The process type not to audit.
|
|
Don Miner |
c11417 |
## </param>
|
|
Don Miner |
c11417 |
#
|
|
Don Miner |
c11417 |
interface(`kernel_dontaudit_read_proc_symlink',`
|
|
Don Miner |
c11417 |
gen_require(`
|
|
Don Miner |
c11417 |
type proc_t;
|
|
Don Miner |
c11417 |
')
|
|
Don Miner |
c11417 |
|
|
Don Miner |
c11417 |
dontaudit $1 proc_t:lnk_file read;
|
|
Don Miner |
c11417 |
')
|
|
Don Miner |
c11417 |
|
|
Chris PeBenito |
b4cd15 |
#######################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read the state information for software raid.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type reading software raid state.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_software_raid_state',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, proc_mdstat_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
c2c00b |
allow $1 proc_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 proc_mdstat_t:file r_file_perms;
|
|
Chris PeBenito |
50aca6 |
')
|
|
Chris PeBenito |
50aca6 |
|
|
Chris PeBenito |
50aca6 |
#######################################
|
|
Chris PeBenito |
50aca6 |
## <summary>
|
|
Chris PeBenito |
50aca6 |
## Allow caller to read and set the state information for software raid.
|
|
Chris PeBenito |
50aca6 |
## </summary>
|
|
Chris PeBenito |
50aca6 |
## <param name="domain">
|
|
Chris PeBenito |
50aca6 |
## The process type reading software raid state.
|
|
Chris PeBenito |
50aca6 |
## </param>
|
|
Chris PeBenito |
50aca6 |
#
|
|
Chris PeBenito |
50aca6 |
interface(`kernel_rw_software_raid_state',`
|
|
Chris PeBenito |
50aca6 |
gen_require(`
|
|
Chris PeBenito |
50aca6 |
type proc_t, proc_mdstat_t;
|
|
Chris PeBenito |
50aca6 |
')
|
|
Chris PeBenito |
50aca6 |
|
|
Chris PeBenito |
50aca6 |
allow $1 proc_t:dir r_dir_perms;
|
|
Chris PeBenito |
50aca6 |
allow $1 proc_mdstat_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allows caller to get attribues of core kernel interface.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type getting the attibutes.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_getattr_core',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, proc_kcore_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
c2c00b |
allow $1 proc_t:dir r_dir_perms;
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_kcore_t:file getattr;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Do not audit attempts to get the attributes of
|
|
Chris PeBenito |
414e41 |
## core kernel interfaces.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type to not audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
7bba9d |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_dontaudit_getattr_core',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_kcore_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
dontaudit $1 proc_kcore_t:file getattr;
|
|
Chris PeBenito |
7bba9d |
')
|
|
Chris PeBenito |
7bba9d |
|
|
Chris PeBenito |
7bba9d |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read kernel messages
|
|
Chris PeBenito |
414e41 |
## using the /proc/kmsg interface.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type reading the messages.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
a266e3 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_messages',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
attribute can_receive_kernel_messages;
|
|
Chris PeBenito |
cbc9d6 |
type proc_kmsg_t, proc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 proc_kmsg_t:file r_file_perms;
|
|
Chris PeBenito |
0c73cd |
typeattribute $1 can_receive_kernel_messages;
|
|
Chris PeBenito |
a266e3 |
')
|
|
Chris PeBenito |
a266e3 |
|
|
Chris PeBenito |
a266e3 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to get the attributes of kernel message
|
|
Chris PeBenito |
414e41 |
## interface (/proc/kmsg).
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type getting the attributes.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
a266e3 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_getattr_message_if',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_kmsg_t, proc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_kmsg_t:file getattr;
|
|
Chris PeBenito |
a266e3 |
')
|
|
Chris PeBenito |
a266e3 |
|
|
Chris PeBenito |
a266e3 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Do not audit attempts by caller to get the attributes of kernel
|
|
Chris PeBenito |
414e41 |
## message interfaces.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type not to audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
07d6e3 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_dontaudit_getattr_message_if',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_kmsg_t, proc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
dontaudit $1 proc_kmsg_t:file getattr;
|
|
Chris PeBenito |
07d6e3 |
')
|
|
Chris PeBenito |
07d6e3 |
|
|
Chris PeBenito |
07d6e3 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
246839 |
## Do not audit attempts to search the network
|
|
Chris PeBenito |
246839 |
## state directory.
|
|
Chris PeBenito |
246839 |
## </summary>
|
|
Chris PeBenito |
246839 |
## <param name="domain">
|
|
Chris PeBenito |
246839 |
## The process type reading the state.
|
|
Chris PeBenito |
246839 |
## </param>
|
|
Chris PeBenito |
246839 |
##
|
|
Chris PeBenito |
246839 |
#
|
|
Chris PeBenito |
246839 |
interface(`kernel_dontaudit_search_network_state',`
|
|
Chris PeBenito |
246839 |
gen_require(`
|
|
Chris PeBenito |
246839 |
type proc_net_t;
|
|
Chris PeBenito |
246839 |
')
|
|
Chris PeBenito |
246839 |
|
|
Chris PeBenito |
712566 |
dontaudit $1 proc_net_t:dir search;
|
|
Chris PeBenito |
246839 |
')
|
|
Chris PeBenito |
246839 |
|
|
Chris PeBenito |
246839 |
########################################
|
|
Chris PeBenito |
246839 |
## <summary>
|
|
Chris PeBenito |
43989f |
## Allow searching of network state directory.
|
|
Chris PeBenito |
43989f |
## </summary>
|
|
Chris PeBenito |
43989f |
## <param name="domain">
|
|
Chris PeBenito |
43989f |
## The process type reading the state.
|
|
Chris PeBenito |
43989f |
## </param>
|
|
Chris PeBenito |
43989f |
##
|
|
Chris PeBenito |
43989f |
#
|
|
Chris PeBenito |
43989f |
interface(`kernel_search_network_state',`
|
|
Chris PeBenito |
43989f |
gen_require(`
|
|
Chris PeBenito |
43989f |
type proc_net_t;
|
|
Chris PeBenito |
43989f |
')
|
|
Chris PeBenito |
43989f |
|
|
Chris PeBenito |
43989f |
allow $1 proc_net_t:dir search;
|
|
Chris PeBenito |
43989f |
')
|
|
Chris PeBenito |
43989f |
|
|
Chris PeBenito |
43989f |
########################################
|
|
Chris PeBenito |
43989f |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read the network state information.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type reading the state.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
3865d6 |
##
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_network_state',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, proc_net_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 proc_net_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 proc_net_t:file r_file_perms;
|
|
Chris PeBenito |
7ebd6a |
allow $1 proc_net_t:lnk_file { getattr read };
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
43989f |
## Allow caller to read the network state symbolic links.
|
|
Chris PeBenito |
43989f |
## </summary>
|
|
Chris PeBenito |
43989f |
## <param name="domain">
|
|
Chris PeBenito |
43989f |
## The process type reading the state.
|
|
Chris PeBenito |
43989f |
## </param>
|
|
Chris PeBenito |
43989f |
##
|
|
Chris PeBenito |
43989f |
#
|
|
Chris PeBenito |
43989f |
interface(`kernel_read_network_state_symlinks',`
|
|
Chris PeBenito |
43989f |
gen_require(`
|
|
Chris PeBenito |
43989f |
type proc_t, proc_net_t;
|
|
Chris PeBenito |
43989f |
')
|
|
Chris PeBenito |
43989f |
|
|
Chris PeBenito |
43989f |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
43989f |
allow $1 proc_net_t:dir r_dir_perms;
|
|
Chris PeBenito |
43989f |
allow $1 proc_net_t:lnk_file r_file_perms;
|
|
Chris PeBenito |
43989f |
')
|
|
Chris PeBenito |
43989f |
|
|
Chris PeBenito |
43989f |
########################################
|
|
Chris PeBenito |
43989f |
## <summary>
|
|
Chris PeBenito |
77f6e2 |
## Do not audit attempts by caller to search
|
|
Chris PeBenito |
77f6e2 |
## the base directory of sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type not to audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
3865d6 |
##
|
|
Chris PeBenito |
3b857e |
#
|
|
Chris PeBenito |
77f6e2 |
interface(`kernel_dontaudit_search_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type sysctl_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
dontaudit $1 sysctl_t:dir search;
|
|
Chris PeBenito |
3b857e |
')
|
|
Chris PeBenito |
3b857e |
|
|
Chris PeBenito |
3b857e |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
43989f |
## Allow access to read sysctl directories.
|
|
Chris PeBenito |
43989f |
## </summary>
|
|
Chris PeBenito |
43989f |
## <param name="domain">
|
|
Chris PeBenito |
43989f |
## The process type to allow to read sysctl directories.
|
|
Chris PeBenito |
43989f |
## </param>
|
|
Chris PeBenito |
43989f |
##
|
|
Chris PeBenito |
43989f |
#
|
|
Chris PeBenito |
43989f |
interface(`kernel_read_sysctl',`
|
|
Chris PeBenito |
43989f |
gen_require(`
|
|
Chris PeBenito |
43989f |
type sysctl_t;
|
|
Chris PeBenito |
43989f |
')
|
|
Chris PeBenito |
43989f |
|
|
Chris PeBenito |
43989f |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
43989f |
')
|
|
Chris PeBenito |
43989f |
|
|
Chris PeBenito |
43989f |
########################################
|
|
Chris PeBenito |
43989f |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read the device sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type to allow to read the device sysctls.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_device_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_dev_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_dev_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_dev_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write device sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_device_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_dev_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_dev_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
230838 |
## Allow caller to search virtual memory sysctls.
|
|
Chris PeBenito |
230838 |
## </summary>
|
|
Chris PeBenito |
230838 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
230838 |
## </param>
|
|
Chris PeBenito |
230838 |
##
|
|
Chris PeBenito |
230838 |
#
|
|
Chris PeBenito |
230838 |
interface(`kernel_search_vm_sysctl',`
|
|
Chris PeBenito |
230838 |
gen_require(`
|
|
Chris PeBenito |
230838 |
type proc_t, sysctl_t, sysctl_vm_t;
|
|
Chris PeBenito |
230838 |
')
|
|
Chris PeBenito |
230838 |
|
|
Chris PeBenito |
230838 |
allow $1 { proc_t sysctl_t sysctl_vm_t }:dir search_dir_perms;
|
|
Chris PeBenito |
230838 |
')
|
|
Chris PeBenito |
230838 |
|
|
Chris PeBenito |
230838 |
########################################
|
|
Chris PeBenito |
230838 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read virtual memory sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
3865d6 |
##
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_vm_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_vm_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_vm_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write virtual memory sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_vm_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_vm_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_vm_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
77f6e2 |
## Search network sysctl directories.
|
|
Chris PeBenito |
77f6e2 |
## </summary>
|
|
Chris PeBenito |
77f6e2 |
## <param name="domain">
|
|
Chris PeBenito |
77f6e2 |
## Domain allowed access.
|
|
Chris PeBenito |
77f6e2 |
## </param>
|
|
Chris PeBenito |
77f6e2 |
#
|
|
Chris PeBenito |
77f6e2 |
interface(`kernel_search_network_sysctl',`
|
|
Chris PeBenito |
77f6e2 |
gen_require(`
|
|
Chris PeBenito |
77f6e2 |
type proc_t, sysctl_t, sysctl_net_t;
|
|
Chris PeBenito |
77f6e2 |
')
|
|
Chris PeBenito |
77f6e2 |
|
|
Chris PeBenito |
77f6e2 |
allow $1 { proc_t sysctl_t sysctl_net_t }:dir search;
|
|
Chris PeBenito |
77f6e2 |
')
|
|
Chris PeBenito |
77f6e2 |
|
|
Chris PeBenito |
77f6e2 |
########################################
|
|
Chris PeBenito |
77f6e2 |
## <summary>
|
|
Chris PeBenito |
77f6e2 |
## Do not audit attempts by caller to search network sysctl directories.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type not to audit.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
3b857e |
#
|
|
Chris PeBenito |
77f6e2 |
interface(`kernel_dontaudit_search_network_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type sysctl_net_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
dontaudit $1 sysctl_net_t:dir search;
|
|
Chris PeBenito |
3b857e |
')
|
|
Chris PeBenito |
3b857e |
|
|
Chris PeBenito |
3b857e |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read network sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
3865d6 |
##
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_net_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_net_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to modiry contents of sysctl network files.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_net_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_net_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read unix domain
|
|
Chris PeBenito |
414e41 |
## socket sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_unix_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_net_t, sysctl_net_unix_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_unix_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write unix domain
|
|
Chris PeBenito |
414e41 |
## socket sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_unix_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_net_t, sysctl_net_unix_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_net_unix_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read the hotplug sysctl.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_hotplug_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_kernel_t, sysctl_hotplug_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_hotplug_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write the hotplug sysctl.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_hotplug_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_kernel_t, sysctl_hotplug_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_hotplug_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read the modprobe sysctl.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_modprobe_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_kernel_t, sysctl_modprobe_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_modprobe_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write the modprobe sysctl.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_modprobe_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_kernel_t, sysctl_modprobe_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_modprobe_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
e749cd |
## Do not audit attempts to search generic kernel sysctls.
|
|
Chris PeBenito |
e749cd |
## </summary>
|
|
Chris PeBenito |
e749cd |
## <param name="domain">
|
|
Chris PeBenito |
e749cd |
## Domain to not audit.
|
|
Chris PeBenito |
e749cd |
## </param>
|
|
Chris PeBenito |
e749cd |
#
|
|
Chris PeBenito |
e749cd |
interface(`kernel_dontaudit_search_kernel_sysctl',`
|
|
Chris PeBenito |
e749cd |
gen_require(`
|
|
Chris PeBenito |
e749cd |
type sysctl_kernel_t;
|
|
Chris PeBenito |
e749cd |
')
|
|
Chris PeBenito |
e749cd |
|
|
Chris PeBenito |
e749cd |
dontaudit $1 sysctl_kernel_t:dir search;
|
|
Chris PeBenito |
e749cd |
')
|
|
Chris PeBenito |
e749cd |
|
|
Chris PeBenito |
e749cd |
########################################
|
|
Chris PeBenito |
e749cd |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read generic kernel sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_kernel_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
dce68d |
## Do not audit attempts to write generic kernel sysctls.
|
|
Chris PeBenito |
dce68d |
## </summary>
|
|
Chris PeBenito |
dce68d |
## <param name="domain">
|
|
Chris PeBenito |
dce68d |
## Domain to not audit.
|
|
Chris PeBenito |
dce68d |
## </param>
|
|
Chris PeBenito |
dce68d |
#
|
|
Chris PeBenito |
dce68d |
interface(`kernel_dontaudit_write_kernel_sysctl',`
|
|
Chris PeBenito |
dce68d |
gen_require(`
|
|
Chris PeBenito |
dce68d |
type sysctl_kernel_t;
|
|
Chris PeBenito |
dce68d |
')
|
|
Chris PeBenito |
dce68d |
|
|
Chris PeBenito |
dce68d |
dontaudit $1 sysctl_kernel_t:file write;
|
|
Chris PeBenito |
dce68d |
')
|
|
Chris PeBenito |
dce68d |
|
|
Chris PeBenito |
dce68d |
########################################
|
|
Chris PeBenito |
dce68d |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write generic kernel sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_kernel_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_kernel_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_kernel_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read filesystem sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_fs_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_fs_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_fs_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_fs_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write fileystem sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_fs_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_t, sysctl_fs_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_fs_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_fs_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read IRQ sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_irq_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_irq_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_irq_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_irq_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write IRQ sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
3865d6 |
##
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_irq_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, sysctl_irq_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_irq_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_irq_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
bd202f |
# kernel_read_rpc_sysctl(domain)
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_rpc_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, proc_net_t, sysctl_rpc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_net_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_rpc_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_rpc_t:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
0fd9dc |
# kernel_rw_rpc_sysctl(domain)
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_rpc_sysctl',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type proc_t, proc_net_t, sysctl_rpc_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_t:dir search;
|
|
Chris PeBenito |
0c73cd |
allow $1 proc_net_t:dir search;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_rpc_t:dir r_dir_perms;
|
|
Chris PeBenito |
c2c00b |
allow $1 sysctl_rpc_t:file rw_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to read all sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_read_all_sysctl',`
|
|
Chris PeBenito |
d25063 |
gen_require(`
|
|
Chris PeBenito |
d25063 |
attribute sysctl_type;
|
|
Chris PeBenito |
d25063 |
type proc_t, proc_net_t;
|
|
Chris PeBenito |
d25063 |
')
|
|
Chris PeBenito |
d25063 |
|
|
Chris PeBenito |
d25063 |
# proc_net_t for /proc/net/rpc sysctls
|
|
Chris PeBenito |
d25063 |
allow $1 { proc_t proc_net_t }:dir search;
|
|
Chris PeBenito |
d25063 |
|
|
Chris PeBenito |
d25063 |
allow $1 sysctl_type:dir r_dir_perms;
|
|
Chris PeBenito |
d25063 |
allow $1 sysctl_type:file r_file_perms;
|
|
Chris PeBenito |
b4cd15 |
')
|
|
Chris PeBenito |
b4cd15 |
|
|
Chris PeBenito |
b4cd15 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Read and write all sysctls.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
b4cd15 |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_rw_all_sysctl',`
|
|
Chris PeBenito |
d25063 |
gen_require(`
|
|
Chris PeBenito |
d25063 |
attribute sysctl_type;
|
|
Chris PeBenito |
d25063 |
type proc_t, proc_net_t;
|
|
Chris PeBenito |
d25063 |
')
|
|
Chris PeBenito |
d25063 |
|
|
Chris PeBenito |
d25063 |
# proc_net_t for /proc/net/rpc sysctls
|
|
Chris PeBenito |
d25063 |
allow $1 { proc_t proc_net_t }:dir search;
|
|
Chris PeBenito |
d25063 |
|
|
Chris PeBenito |
d25063 |
allow $1 sysctl_type:dir r_dir_perms;
|
|
Chris PeBenito |
d25063 |
allow $1 sysctl_type:file { rw_file_perms setattr };
|
|
Chris PeBenito |
f5c42b |
')
|
|
Chris PeBenito |
f5c42b |
|
|
Chris PeBenito |
f5c42b |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Send a kill signal to unlabeled processes.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_kill_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 unlabeled_t:process sigkill;
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
c6fd1f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Send general signals to unlabeled processes.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_signal_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 unlabeled_t:process signal;
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
c6fd1f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Send a null signal to unlabeled processes.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_signull_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 unlabeled_t:process signull;
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
c6fd1f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Send a stop signal to unlabeled processes.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_sigstop_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 unlabeled_t:process sigstop;
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
c6fd1f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Send a child terminated signal to unlabeled processes.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
230838 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_sigchld_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 unlabeled_t:process sigchld;
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
c6fd1f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
ae9e27 |
## List unlabeled directories.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
ae9e27 |
## Domain allowed access.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
ae9e27 |
interface(`kernel_list_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
ae9e27 |
allow $1 unlabeled_t:dir r_dir_perms;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
ac9aa2 |
## Do not audit attempts to list unlabeled directories.
|
|
Chris PeBenito |
ac9aa2 |
## </summary>
|
|
Chris PeBenito |
ac9aa2 |
## <param name="domain">
|
|
Chris PeBenito |
ac9aa2 |
## Domain allowed access.
|
|
Chris PeBenito |
ac9aa2 |
## </param>
|
|
Chris PeBenito |
ac9aa2 |
#
|
|
Chris PeBenito |
ac9aa2 |
interface(`kernel_dontaudit_list_unlabeled',`
|
|
Chris PeBenito |
ac9aa2 |
gen_require(`
|
|
Chris PeBenito |
ac9aa2 |
type unlabeled_t;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
dontaudit $1 unlabeled_t:dir list_dir_perms;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
########################################
|
|
Chris PeBenito |
ac9aa2 |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## Read and write unlabeled directories.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
a42ca7 |
## <param name="domain">
|
|
Chris PeBenito |
a42ca7 |
## Domain allowed access.
|
|
Chris PeBenito |
a42ca7 |
## </param>
|
|
Chris PeBenito |
a42ca7 |
#
|
|
Chris PeBenito |
a42ca7 |
interface(`kernel_rw_unlabeled_dir',`
|
|
Chris PeBenito |
a42ca7 |
gen_require(`
|
|
Chris PeBenito |
a42ca7 |
type unlabeled_t;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
allow $1 unlabeled_t:dir rw_dir_perms;
|
|
Chris PeBenito |
a42ca7 |
')
|
|
Chris PeBenito |
a42ca7 |
|
|
Chris PeBenito |
a42ca7 |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
10b1f3 |
## Do not audit attempts by caller to get the
|
|
Chris PeBenito |
10b1f3 |
## attributes of an unlabeled file.
|
|
Chris PeBenito |
10b1f3 |
## </summary>
|
|
Chris PeBenito |
10b1f3 |
## <param name="domain">
|
|
Chris PeBenito |
10b1f3 |
## The process type not to audit.
|
|
Chris PeBenito |
10b1f3 |
## </param>
|
|
Chris PeBenito |
10b1f3 |
#
|
|
Chris PeBenito |
10b1f3 |
interface(`kernel_dontaudit_getattr_unlabeled_file',`
|
|
Chris PeBenito |
10b1f3 |
gen_require(`
|
|
Chris PeBenito |
10b1f3 |
type unlabeled_t;
|
|
Chris PeBenito |
10b1f3 |
')
|
|
Chris PeBenito |
10b1f3 |
|
|
Chris PeBenito |
10b1f3 |
dontaudit $1 unlabeled_t:file getattr;
|
|
Chris PeBenito |
10b1f3 |
')
|
|
Chris PeBenito |
10b1f3 |
|
|
Chris PeBenito |
10b1f3 |
########################################
|
|
Chris PeBenito |
10b1f3 |
## <summary>
|
|
Chris PeBenito |
725926 |
## Do not audit attempts by caller to
|
|
Chris PeBenito |
725926 |
## read an unlabeled file.
|
|
Chris PeBenito |
725926 |
## </summary>
|
|
Chris PeBenito |
725926 |
## <param name="domain">
|
|
Chris PeBenito |
725926 |
## Domain to not audit.
|
|
Chris PeBenito |
725926 |
## </param>
|
|
Chris PeBenito |
725926 |
#
|
|
Chris PeBenito |
725926 |
interface(`kernel_dontaudit_read_unlabeled_file',`
|
|
Chris PeBenito |
725926 |
gen_require(`
|
|
Chris PeBenito |
725926 |
type unlabeled_t;
|
|
Chris PeBenito |
725926 |
')
|
|
Chris PeBenito |
725926 |
|
|
Chris PeBenito |
725926 |
dontaudit $1 unlabeled_t:file { getattr read };
|
|
Chris PeBenito |
725926 |
')
|
|
Chris PeBenito |
725926 |
|
|
Chris PeBenito |
725926 |
########################################
|
|
Chris PeBenito |
725926 |
## <summary>
|
|
Chris PeBenito |
ac9aa2 |
## Do not audit attempts by caller to get the
|
|
Chris PeBenito |
ac9aa2 |
## attributes of unlabeled symbolic links.
|
|
Chris PeBenito |
ac9aa2 |
## </summary>
|
|
Chris PeBenito |
ac9aa2 |
## <param name="domain">
|
|
Chris PeBenito |
ac9aa2 |
## The process type not to audit.
|
|
Chris PeBenito |
ac9aa2 |
## </param>
|
|
Chris PeBenito |
ac9aa2 |
#
|
|
Chris PeBenito |
ac9aa2 |
interface(`kernel_dontaudit_getattr_unlabeled_symlinks',`
|
|
Chris PeBenito |
ac9aa2 |
gen_require(`
|
|
Chris PeBenito |
ac9aa2 |
type unlabeled_t;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
dontaudit $1 unlabeled_t:lnk_file getattr;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
########################################
|
|
Chris PeBenito |
ac9aa2 |
## <summary>
|
|
Chris PeBenito |
ac9aa2 |
## Do not audit attempts by caller to get the
|
|
Chris PeBenito |
ac9aa2 |
## attributes of unlabeled named pipes.
|
|
Chris PeBenito |
ac9aa2 |
## </summary>
|
|
Chris PeBenito |
ac9aa2 |
## <param name="domain">
|
|
Chris PeBenito |
ac9aa2 |
## The process type not to audit.
|
|
Chris PeBenito |
ac9aa2 |
## </param>
|
|
Chris PeBenito |
ac9aa2 |
#
|
|
Chris PeBenito |
ac9aa2 |
interface(`kernel_dontaudit_getattr_unlabeled_pipes',`
|
|
Chris PeBenito |
ac9aa2 |
gen_require(`
|
|
Chris PeBenito |
ac9aa2 |
type unlabeled_t;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
dontaudit $1 unlabeled_t:fifo_file getattr;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
########################################
|
|
Chris PeBenito |
ac9aa2 |
## <summary>
|
|
Chris PeBenito |
ac9aa2 |
## Do not audit attempts by caller to get the
|
|
Chris PeBenito |
ac9aa2 |
## attributes of unlabeled named sockets.
|
|
Chris PeBenito |
ac9aa2 |
## </summary>
|
|
Chris PeBenito |
ac9aa2 |
## <param name="domain">
|
|
Chris PeBenito |
ac9aa2 |
## The process type not to audit.
|
|
Chris PeBenito |
ac9aa2 |
## </param>
|
|
Chris PeBenito |
ac9aa2 |
#
|
|
Chris PeBenito |
ac9aa2 |
interface(`kernel_dontaudit_getattr_unlabeled_sockets',`
|
|
Chris PeBenito |
ac9aa2 |
gen_require(`
|
|
Chris PeBenito |
ac9aa2 |
type unlabeled_t;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
dontaudit $1 unlabeled_t:sock_file getattr;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
########################################
|
|
Chris PeBenito |
ac9aa2 |
## <summary>
|
|
Chris PeBenito |
ae9e27 |
## Do not audit attempts by caller to get attributes for
|
|
Chris PeBenito |
ae9e27 |
## unlabeled block devices.
|
|
Chris PeBenito |
ae9e27 |
## </summary>
|
|
Chris PeBenito |
ae9e27 |
## <param name="domain">
|
|
Chris PeBenito |
ae9e27 |
## The process type not to audit.
|
|
Chris PeBenito |
ae9e27 |
## </param>
|
|
Chris PeBenito |
ae9e27 |
#
|
|
Chris PeBenito |
ae9e27 |
interface(`kernel_dontaudit_getattr_unlabeled_blk_dev',`
|
|
Chris PeBenito |
ae9e27 |
gen_require(`
|
|
Chris PeBenito |
ae9e27 |
type unlabeled_t;
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
10b1f3 |
dontaudit $1 unlabeled_t:blk_file getattr;
|
|
Chris PeBenito |
ae9e27 |
')
|
|
Chris PeBenito |
ae9e27 |
|
|
Chris PeBenito |
ae9e27 |
########################################
|
|
Chris PeBenito |
ae9e27 |
## <summary>
|
|
Chris PeBenito |
a42ca7 |
## Read and write unlabeled block device nodes.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
a42ca7 |
## <param name="domain">
|
|
Chris PeBenito |
a42ca7 |
## Domain allowed access.
|
|
Chris PeBenito |
a42ca7 |
## </param>
|
|
Chris PeBenito |
a42ca7 |
#
|
|
Chris PeBenito |
270d42 |
interface(`kernel_rw_unlabeled_blk_dev',`
|
|
Chris PeBenito |
a42ca7 |
gen_require(`
|
|
Chris PeBenito |
a42ca7 |
type unlabeled_t;
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
0c73cd |
allow $1 unlabeled_t:blk_file getattr;
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
c6fd1f |
########################################
|
|
Chris PeBenito |
a42ca7 |
## <summary>
|
|
Chris PeBenito |
ac9aa2 |
## Do not audit attempts by caller to get attributes for
|
|
Chris PeBenito |
ac9aa2 |
## unlabeled character devices.
|
|
Chris PeBenito |
ac9aa2 |
## </summary>
|
|
Chris PeBenito |
ac9aa2 |
## <param name="domain">
|
|
Chris PeBenito |
ac9aa2 |
## The process type not to audit.
|
|
Chris PeBenito |
ac9aa2 |
## </param>
|
|
Chris PeBenito |
ac9aa2 |
#
|
|
Chris PeBenito |
ac9aa2 |
interface(`kernel_dontaudit_getattr_unlabeled_chr_dev',`
|
|
Chris PeBenito |
ac9aa2 |
gen_require(`
|
|
Chris PeBenito |
ac9aa2 |
type unlabeled_t;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
dontaudit $1 unlabeled_t:chr_file getattr;
|
|
Chris PeBenito |
ac9aa2 |
')
|
|
Chris PeBenito |
ac9aa2 |
|
|
Chris PeBenito |
ac9aa2 |
########################################
|
|
Chris PeBenito |
ac9aa2 |
## <summary>
|
|
Chris PeBenito |
414e41 |
## Allow caller to relabel unlabeled objects.
|
|
Chris PeBenito |
a42ca7 |
## </summary>
|
|
Chris PeBenito |
414e41 |
## <param name="domain">
|
|
Chris PeBenito |
414e41 |
## The process type relabeling the objects.
|
|
Chris PeBenito |
414e41 |
## </param>
|
|
Chris PeBenito |
c6fd1f |
#
|
|
Chris PeBenito |
199895 |
interface(`kernel_relabel_unlabeled',`
|
|
Chris PeBenito |
cbc9d6 |
gen_require(`
|
|
Chris PeBenito |
cbc9d6 |
type unlabeled_t;
|
|
Chris PeBenito |
d25063 |
gen_require_set({ getattr relabelfrom },dir_file_class_set)
|
|
Chris PeBenito |
cbc9d6 |
')
|
|
Chris PeBenito |
0c73cd |
|
|
Chris PeBenito |
bf080a |
kernel_list_unlabeled($1)
|
|
Chris PeBenito |
c2c00b |
allow $1 unlabeled_t:dir_file_class_set { getattr relabelfrom };
|
|
Chris PeBenito |
c6fd1f |
')
|
|
Chris PeBenito |
c6fd1f |
|
|
Chris PeBenito |
9726b3 |
########################################
|
|
Chris PeBenito |
9726b3 |
## <summary>
|
|
Chris PeBenito |
bd7037 |
## Send and receive messages from an
|
|
Chris PeBenito |
bd7037 |
## unlabeled IPSEC association.
|
|
Chris PeBenito |
bd7037 |
## </summary>
|
|
Chris PeBenito |
bd7037 |
## <desc>
|
|
Chris PeBenito |
bd7037 |
##
|
|
Chris PeBenito |
bd7037 |
## Send and receive messages from an
|
|
Chris PeBenito |
bd7037 |
## unlabeled IPSEC association. Network
|
|
Chris PeBenito |
bd7037 |
## connections that are not protected
|
|
Chris PeBenito |
bd7037 |
## by IPSEC have use an unlabeled
|
|
Chris PeBenito |
bd7037 |
## assocation.
|
|
Chris PeBenito |
bd7037 |
##
|
|
Chris PeBenito |
bd7037 |
##
|
|
Chris PeBenito |
bd7037 |
## The corenetwork interface
|
|
Chris PeBenito |
460e05 |
## corenet_non_ipsec_sendrecv() should
|
|
Chris PeBenito |
bd7037 |
## be used instead of this one.
|
|
Chris PeBenito |
bd7037 |
##
|
|
Chris PeBenito |
bd7037 |
## </desc>
|
|
Chris PeBenito |
bd7037 |
## <param name="domain">
|
|
Chris PeBenito |
bd7037 |
## Domain allowed access.
|
|
Chris PeBenito |
bd7037 |
## </param>
|
|
Chris PeBenito |
bd7037 |
#
|
|
Chris PeBenito |
bd7037 |
interface(`kernel_sendrecv_unlabeled_association',`
|
|
Chris PeBenito |
bd7037 |
gen_require(`
|
|
Chris PeBenito |
bd7037 |
type unlabeled_t;
|
|
Chris PeBenito |
bd7037 |
')
|
|
Chris PeBenito |
bd7037 |
|
|
Chris PeBenito |
bd7037 |
allow $1 unlabeled_t:association { sendto recvfrom };
|
|
Chris PeBenito |
bd7037 |
')
|
|
Chris PeBenito |
bd7037 |
|
|
Chris PeBenito |
bd7037 |
########################################
|
|
Chris PeBenito |
bd7037 |
## <summary>
|
|
Chris PeBenito |
460e05 |
## Unconfined access to kernel module resources.
|
|
Chris PeBenito |
9726b3 |
## </summary>
|
|
Chris PeBenito |
9726b3 |
## <param name="domain">
|
|
Chris PeBenito |
9726b3 |
## Domain allowed access.
|
|
Chris PeBenito |
9726b3 |
## </param>
|
|
Chris PeBenito |
9726b3 |
#
|
|
Chris PeBenito |
9726b3 |
interface(`kernel_unconfined',`
|
|
Chris PeBenito |
9726b3 |
gen_require(`
|
|
Chris PeBenito |
25c674 |
type kernel_t, unlabeled_t, sysctl_t;
|
|
Chris PeBenito |
d25063 |
attribute proc_type, sysctl_type;
|
|
Chris PeBenito |
d25063 |
attribute kern_unconfined;
|
|
Chris PeBenito |
9726b3 |
attribute can_load_kernmodule, can_receive_kernel_messages;
|
|
Chris PeBenito |
9726b3 |
')
|
|
Chris PeBenito |
9726b3 |
|
|
Chris PeBenito |
d25063 |
allow $1 proc_type:{ dir file } *;
|
|
Chris PeBenito |
9726b3 |
|
|
Chris PeBenito |
9726b3 |
allow $1 sysctl_t:{ dir file } *;
|
|
Chris PeBenito |
c98340 |
|
|
Chris PeBenito |
9726b3 |
allow $1 kernel_t:system *;
|
|
Chris PeBenito |
c98340 |
|
|
Chris PeBenito |
d25063 |
allow $1 unlabeled_t:dir_file_class_set *;
|
|
Chris PeBenito |
c98340 |
allow $1 unlabeled_t:filesystem *;
|
|
Chris PeBenito |
bd7037 |
allow $1 unlabeled_t:association *;
|
|
Chris PeBenito |
9726b3 |
|
|
Chris PeBenito |
9726b3 |
typeattribute $1 can_load_kernmodule, can_receive_kernel_messages;
|
|
Chris PeBenito |
d25063 |
typeattribute $1 kern_unconfined;
|
|
Chris PeBenito |
9726b3 |
|
|
Chris PeBenito |
9726b3 |
kernel_rw_all_sysctl($1)
|
|
Chris PeBenito |
9726b3 |
')
|