2005-06-13 19:22:00 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Device nodes and interfaces for many basic system devices.
|
2005-06-13 19:22:00 +00:00
|
|
|
## </summary>
|
2005-06-23 16:00:05 +00:00
|
|
|
## <desc>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <p>
|
|
|
|
## This module creates the device node concept and provides
|
|
|
|
## the policy for many of the device files. Notable exceptions are
|
|
|
|
## the mass storage and terminal devices that are covered by other
|
|
|
|
## modules.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## This module creates the concept of a device node. That is a
|
|
|
|
## char or block device file, usually in /dev. All types that
|
|
|
|
## are used to label device nodes should use the dev_node macro.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## Additionally, this module controls access to three things:
|
|
|
|
## <ul>
|
|
|
|
## <li>the device directories containing device nodes</li>
|
|
|
|
## <li>device nodes as a group</li>
|
|
|
|
## <li>individual access to specific device nodes covered by
|
|
|
|
## this module.</li>
|
|
|
|
## </ul>
|
|
|
|
## </p>
|
2005-06-23 16:00:05 +00:00
|
|
|
## </desc>
|
2005-08-18 21:27:20 +00:00
|
|
|
## <required val="true">
|
|
|
|
## Depended on by other required modules.
|
|
|
|
## </required>
|
2005-06-13 16:22:32 +00:00
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Make the passed in type a type appropriate for
|
|
|
|
## use on device nodes (usually files in /dev).
|
|
|
|
## </summary>
|
|
|
|
## <param name="object_type">
|
|
|
|
## The object type that will be used on device nodes.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_node',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
typeattribute $1 device_node;
|
|
|
|
|
2005-06-08 13:12:00 +00:00
|
|
|
fs_associate($1)
|
2005-08-12 19:28:15 +00:00
|
|
|
fs_associate_tmpfs($1)
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-04-28 18:59:01 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow full relabeling (to and from) of all device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed to relabel.
|
|
|
|
## </param>
|
2005-04-28 18:59:01 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_relabel_all_dev_nodes',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
type device_t;
|
|
|
|
class dir { getattr relabelfrom };
|
|
|
|
class file { getattr relabelfrom };
|
|
|
|
class lnk_file { getattr relabelfrom };
|
|
|
|
class fifo_file { getattr relabelfrom };
|
|
|
|
class sock_file { getattr relabelfrom };
|
|
|
|
class blk_file { getattr relabelfrom relabelto };
|
|
|
|
class chr_file { getattr relabelfrom relabelto };
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
allow $1 device_node:dir { getattr relabelfrom };
|
|
|
|
allow $1 device_node:file { getattr relabelfrom };
|
|
|
|
allow $1 device_node:lnk_file { getattr relabelfrom };
|
|
|
|
allow $1 device_node:fifo_file { getattr relabelfrom };
|
|
|
|
allow $1 device_node:sock_file { getattr relabelfrom };
|
|
|
|
allow $1 { device_t device_node }:blk_file { getattr relabelfrom relabelto };
|
|
|
|
allow $1 { device_t device_node }:chr_file { getattr relabelfrom relabelto };
|
2005-04-28 18:59:01 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## List all of the device nodes in a device directory.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed to list device nodes.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_list_all_dev_nodes',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file { getattr read };
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-06-13 16:22:32 +00:00
|
|
|
allow $1 device_t:lnk_file { getattr read };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-07-08 20:44:57 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Set the attributes of /dev directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_setattr_dev_dir',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir setattr;
|
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit attempts to list all device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit listing of device nodes.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_list_all_dev_nodes',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
dontaudit $1 device_t:dir r_dir_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-01 13:51:54 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Create a directory in the device directory.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed to create the directory.
|
|
|
|
## </param>
|
2005-06-01 13:51:54 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_create_dir',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir { ra_dir_perms create };
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir { ra_dir_perms create };
|
2005-06-01 13:51:54 +00:00
|
|
|
')
|
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow full relabeling (to and from) of directories in /dev.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed to relabel.
|
|
|
|
## </param>
|
2005-06-13 17:35:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_relabel_dev_dirs',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir { r_dir_perms relabelfrom relabelto };
|
|
|
|
')
|
2005-06-13 17:35:46 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir { r_dir_perms relabelfrom relabelto };
|
|
|
|
')
|
|
|
|
|
2005-07-11 19:02:50 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write generic files in /dev.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_rw_generic_file',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir search;
|
|
|
|
class file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir search;
|
|
|
|
allow $1 device_t:file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-09-15 21:03:29 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Delete generic files in /dev.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_delete_generic_file',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir { search write remove_name };
|
|
|
|
class file unlink;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir { search write remove_name };
|
|
|
|
allow $1 device_t:file unlink;
|
|
|
|
')
|
|
|
|
|
2005-06-10 01:01:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit getattr on generic pipes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit.
|
|
|
|
## </param>
|
2005-06-10 01:01:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_getattr_generic_pipe',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class fifo_file getattr;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
dontaudit $1 device_t:fifo_file getattr;
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
2005-05-18 13:19:51 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow getattr on generic block devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-18 13:19:51 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_generic_blk_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class blk_file getattr;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_t:blk_file getattr;
|
2005-05-18 13:19:51 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit getattr on generic block devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_getattr_generic_blk_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class blk_file getattr;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
dontaudit $1 device_t:blk_file getattr;
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit setattr on generic block devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_setattr_generic_blk_file',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class blk_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 device_t:blk_file setattr;
|
|
|
|
')
|
|
|
|
|
2005-05-31 23:02:11 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow read, write, create, and delete for generic
|
|
|
|
## block files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-31 23:02:11 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_generic_blk_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class blk_file create_file_perms;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
allow $1 device_t:blk_file create_file_perms;
|
2005-05-31 23:02:11 +00:00
|
|
|
')
|
|
|
|
|
2005-05-30 21:17:20 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow read, write, and create for generic character device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_create_generic_chr_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir ra_dir_perms;
|
|
|
|
class chr_file create;
|
|
|
|
class capability mknod;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
allow $1 device_t:dir ra_dir_perms;
|
2005-06-02 20:26:48 +00:00
|
|
|
allow $1 device_t:chr_file create;
|
|
|
|
|
|
|
|
allow $1 self:capability mknod;
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
2005-05-18 13:19:51 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow getattr for generic character device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-18 13:19:51 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_generic_chr_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_t:chr_file getattr;
|
2005-05-18 13:19:51 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit getattr for generic character device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_getattr_generic_chr_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
|
|
|
dontaudit $1 device_t:chr_file getattr;
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit setattr for generic character device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_setattr_generic_chr_file',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 device_t:chr_file setattr;
|
|
|
|
')
|
|
|
|
|
2005-07-11 19:02:50 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to set the attributes
|
|
|
|
## of symbolic links in device directories (/dev).
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_setattr_generic_symlink',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class lnk_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 device_t:lnk_file setattr;
|
|
|
|
')
|
|
|
|
|
2005-05-24 15:55:57 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Delete symbolic links in device directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-24 15:55:57 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_del_generic_symlinks',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir { getattr read write remove_name };
|
|
|
|
class lnk_file unlink;
|
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
2005-06-13 16:22:32 +00:00
|
|
|
allow $1 device_t:dir { getattr read write remove_name };
|
2005-06-02 20:26:48 +00:00
|
|
|
allow $1 device_t:lnk_file unlink;
|
2005-05-24 15:55:57 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Create, delete, read, and write symbolic links in device directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_generic_symlinks',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
2005-09-15 15:34:31 +00:00
|
|
|
class dir rw_dir_perms;
|
|
|
|
class lnk_file create_lnk_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-02 20:26:48 +00:00
|
|
|
|
2005-09-15 15:34:31 +00:00
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
allow $1 device_t:lnk_file create_lnk_perms;
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
|
|
|
|
2005-06-28 17:32:57 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Relabel symbolic links in device directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_relabel_generic_symlinks',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class lnk_file { relabelfrom relabelto };
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_t:lnk_file { relabelfrom relabelto };
|
|
|
|
')
|
|
|
|
|
2005-05-02 21:02:14 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Create, delete, read, and write device nodes in device directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-02 21:02:14 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_dev_nodes',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node, memory_raw_read, memory_raw_write;
|
|
|
|
type device_t;
|
|
|
|
class dir { create read getattr lock setattr ioctl link unlink rename search add_name remove_name reparent write rmdir relabelfrom relabelto };
|
|
|
|
class sock_file { create ioctl read getattr lock write setattr append link unlink rename };
|
|
|
|
class lnk_file { create read getattr setattr link unlink rename };
|
|
|
|
class chr_file { create ioctl read getattr lock write setattr append link unlink rename relabelfrom relabelto };
|
|
|
|
class blk_file { create ioctl read getattr lock write setattr append link unlink rename relabelfrom relabelto };
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 16:22:32 +00:00
|
|
|
allow $1 device_t:dir { create read getattr lock setattr ioctl link unlink rename search add_name remove_name reparent write rmdir relabelfrom relabelto };
|
|
|
|
allow $1 device_t:sock_file { create ioctl read getattr lock write setattr append link unlink rename };
|
|
|
|
allow $1 device_t:lnk_file { create read getattr setattr link unlink rename };
|
|
|
|
allow $1 device_t:{ chr_file blk_file } { create ioctl read getattr lock write setattr append link unlink rename relabelfrom relabelto };
|
|
|
|
allow $1 device_node:{ chr_file blk_file } { create ioctl read getattr lock write setattr append link unlink rename relabelfrom relabelto };
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
# these next rules are to satisfy assertions broken by the above lines.
|
|
|
|
# the permissions hopefully can be cut back a lot
|
|
|
|
storage_raw_read_fixed_disk($1)
|
|
|
|
storage_raw_write_fixed_disk($1)
|
|
|
|
storage_read_scsi_generic($1)
|
|
|
|
storage_write_scsi_generic($1)
|
|
|
|
|
|
|
|
typeattribute $1 memory_raw_read;
|
|
|
|
typeattribute $1 memory_raw_write;
|
2005-05-02 21:02:14 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit getattr for generic device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_rw_generic_dev_nodes',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class chr_file { getattr read write ioctl };
|
|
|
|
class blk_file { getattr read write ioctl };
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
dontaudit $1 device_t:{ chr_file blk_file } { getattr read write ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-27 21:56:01 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Create, delete, read, and write block device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-27 21:56:01 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_generic_blk_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir rw_dir_perms;
|
|
|
|
class blk_file create_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
allow $1 device_t:blk_file create_file_perms;
|
2005-05-27 21:56:01 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Create, delete, read, and write character device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-27 21:56:01 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_generic_chr_file',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir rw_dir_perms;
|
|
|
|
class chr_file create_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
allow $1 device_t:chr_file create_file_perms;
|
2005-05-27 21:56:01 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Create, read, and write device nodes. The node
|
|
|
|
## will be transitioned to the type provided.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
## <param name="file">
|
|
|
|
## Type to which the created node will be transitioned.
|
|
|
|
## </param>
|
|
|
|
## <param name="objectclass(es)">
|
|
|
|
## Object class(es) (single or set including {}) for which this
|
|
|
|
## the transition will occur.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_create_dev_node',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t;
|
|
|
|
class dir rw_dir_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
type_transition $1 device_t:$3 $2;
|
|
|
|
|
|
|
|
optional_policy(`distro_redhat',`
|
2005-06-14 17:36:21 +00:00
|
|
|
fs_associate_tmpfs($2)
|
2005-06-03 12:25:14 +00:00
|
|
|
')
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-04-22 19:31:32 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Getattr on all block file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-22 19:31:32 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_all_blk_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class blk_file getattr;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_node:blk_file getattr;
|
2005-04-22 19:31:32 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit getattr on all block file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_getattr_all_blk_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class blk_file getattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_node:blk_file getattr;
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
|
|
|
|
2005-04-22 19:31:32 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Getattr on all character file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-22 19:31:32 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_all_chr_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class chr_file getattr;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_node:chr_file getattr;
|
2005-04-22 19:31:32 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Dontaudit getattr on all character file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to dontaudit access.
|
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_dontaudit_getattr_all_chr_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
dontaudit $1 device_node:chr_file getattr;
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|
|
|
|
|
2005-04-22 19:31:32 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Setattr on all block file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-22 19:31:32 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_setattr_all_blk_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class blk_file setattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_node:blk_file setattr;
|
2005-04-22 19:31:32 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Setattr on all character file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-22 19:31:32 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_setattr_all_chr_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 device_node:chr_file setattr;
|
2005-04-22 19:31:32 +00:00
|
|
|
')
|
|
|
|
|
2005-09-16 21:20:37 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Dontaudit read on all block file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_read_all_blk_files',`
|
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 device_node:blk_file { getattr read };
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Dontaudit read on all character file device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_read_all_chr_files',`
|
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 device_node:chr_file { getattr read };
|
|
|
|
')
|
|
|
|
|
2005-05-27 21:56:01 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Read, write, create, and delete all block device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-27 21:56:01 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_all_blk_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node;
|
|
|
|
class dir rw_dir_perms;
|
|
|
|
class blk_file create_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
allow $1 device_node:blk_file create_file_perms;
|
|
|
|
|
|
|
|
# these next rules are to satisfy assertions broken by the above lines.
|
|
|
|
storage_raw_read_fixed_disk($1)
|
|
|
|
storage_raw_write_fixed_disk($1)
|
|
|
|
storage_read_scsi_generic($1)
|
|
|
|
storage_write_scsi_generic($1)
|
2005-05-27 21:56:01 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Read, write, create, and delete all character device files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-27 21:56:01 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_manage_all_chr_files',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
|
|
|
attribute device_node, memory_raw_read, memory_raw_write;
|
|
|
|
class dir rw_dir_perms;
|
|
|
|
class chr_file create_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir rw_dir_perms;
|
|
|
|
allow $1 device_node:chr_file create_file_perms;
|
|
|
|
|
|
|
|
typeattribute $1 memory_raw_read, memory_raw_write;
|
2005-05-27 21:56:01 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write the agp devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_rw_agp_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, agp_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 agp_device_t:chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-06-30 18:54:08 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Get the attributes of the apm bios device node.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_getattr_apm_bios',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, apm_bios_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 apm_bios_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to get the attributes of
|
|
|
|
## the apm bios device node.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_getattr_apm_bios',`
|
|
|
|
gen_require(`
|
|
|
|
type apm_bios_t;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 apm_bios_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Set the attributes of the apm bios device node.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_setattr_apm_bios',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, apm_bios_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 apm_bios_t:chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to set the attributes of
|
|
|
|
## the apm bios device node.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_setattr_apm_bios',`
|
|
|
|
gen_require(`
|
|
|
|
type apm_bios_t;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 apm_bios_t:chr_file setattr;
|
|
|
|
')
|
|
|
|
|
2005-06-29 20:53:53 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write the apm bios.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_rw_apm_bios',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, apm_bios_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 apm_bios_t:chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-07-15 15:17:57 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to read and
|
|
|
|
## write the PCMCIA card manager device.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_rw_cardmgr',`
|
|
|
|
gen_require(`
|
|
|
|
type cardmgr_dev_t;
|
|
|
|
class chr_file { read write };
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 cardmgr_dev_t:chr_file { read write };
|
|
|
|
')
|
|
|
|
|
2005-09-20 18:15:35 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Get the attributes of the CPU
|
|
|
|
## microcode and id interfaces.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_getattr_cpu',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, cpu_device_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir search;
|
|
|
|
allow $1 cpu_device_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the CPU identity.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_cpuid',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, cpu_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 cpu_device_t:chr_file r_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and write the the CPU microcode device. This
|
|
|
|
## is required to load CPU microcode.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rw_cpu_microcode',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, cpu_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file rw_file_perms;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 cpu_device_t:chr_file rw_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-30 21:17:20 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Getattr the agp devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_getattr_agp_dev',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, dri_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 dri_device_t:chr_file getattr;
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and write the dri devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rw_dri_dev',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, dri_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file rw_file_perms;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 dri_device_t:chr_file rw_file_perms;
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Dontaudit read and write on the dri devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain to dontaudit access.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_rw_dri_dev',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type dri_device_t;
|
|
|
|
class chr_file { getattr read write ioctl };
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 dri_device_t:chr_file { getattr read write ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read input event devices (/dev/input).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_input',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, event_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 event_device_t:chr_file r_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Get the attributes of the framebuffer device node.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_getattr_framebuffer',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, framebuf_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file getattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 framebuf_device_t:chr_file getattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the attributes of the framebuffer device node.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_setattr_framebuffer',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, framebuf_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file setattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 framebuf_device_t:chr_file setattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Dot not audit attempts to set the attributes
|
|
|
|
## of the framebuffer device node.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain to not audit.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_setattr_framebuffer',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type framebuf_device_t;
|
|
|
|
class chr_file setattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 framebuf_device_t:chr_file setattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-09 19:55:01 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the framebuffer.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-09 19:55:01 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_framebuffer',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type framebuf_device_t;
|
|
|
|
class dir r_dir_perms;
|
2005-06-22 16:07:14 +00:00
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 framebuf_device_t:chr_file r_file_perms;
|
2005-05-09 19:55:01 +00:00
|
|
|
')
|
|
|
|
|
2005-05-30 21:17:20 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Do not audit attempts to read the framebuffer.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_read_framebuffer',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type framebuf_device_t;
|
|
|
|
class chr_file r_file_perms;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 framebuf_device_t:chr_file { getattr read };
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write the framebuffer.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_framebuffer',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, framebuf_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file { getattr write ioctl };
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 framebuf_device_t:chr_file { getattr write ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-05 21:19:18 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the lvm comtrol device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-05 21:19:18 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_lvm_control',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, lvm_control_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file r_file_perms;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 lvm_control_t:chr_file r_file_perms;
|
2005-05-05 21:19:18 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and write the lvm control device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rw_lvm_control',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, lvm_control_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file rw_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 lvm_control_t:chr_file rw_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Delete the lvm control device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_delete_lvm_control',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, lvm_control_t;
|
|
|
|
class dir { getattr search read write remove_name };
|
|
|
|
class chr_file unlink;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir { getattr search read write remove_name };
|
|
|
|
allow $1 lvm_control_t:chr_file unlink;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read raw memory devices (e.g. /dev/mem).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_raw_memory',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, memory_device_t;
|
|
|
|
attribute memory_raw_read;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class capability sys_rawio;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 memory_device_t:chr_file r_file_perms;
|
|
|
|
|
|
|
|
allow $1 self:capability sys_rawio;
|
|
|
|
typeattribute $1 memory_raw_read;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write raw memory devices (e.g. /dev/mem).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_raw_memory',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, memory_device_t;
|
|
|
|
attribute memory_raw_write;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file write;
|
|
|
|
class capability sys_rawio;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 memory_device_t:chr_file write;
|
|
|
|
|
|
|
|
allow $1 self:capability sys_rawio;
|
|
|
|
typeattribute $1 memory_raw_write;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and execute raw memory devices (e.g. /dev/mem).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rx_raw_memory',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, memory_device_t;
|
|
|
|
class chr_file execute;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dev_read_raw_memory($1)
|
|
|
|
allow $1 memory_device_t:chr_file execute;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write and execute raw memory devices (e.g. /dev/mem).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_wx_raw_memory',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, memory_device_t;
|
|
|
|
class chr_file execute;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dev_write_raw_memory($1)
|
|
|
|
allow $1 memory_device_t:chr_file execute;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Get the attributes of miscellaneous devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_getattr_misc',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, misc_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file getattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 misc_device_t:chr_file getattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-16 21:10:33 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Do not audit attempts to get the attributes
|
|
|
|
## of miscellaneous devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-16 21:10:33 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_getattr_misc',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type misc_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class chr_file getattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 misc_device_t:chr_file getattr;
|
2005-05-16 21:10:33 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the attributes of miscellaneous devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_setattr_misc',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, misc_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file setattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 misc_device_t:chr_file setattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-16 21:10:33 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Do not audit attempts to set the attributes
|
|
|
|
## of miscellaneous devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain allowed access.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-05-16 21:10:33 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_setattr_misc',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type misc_device_t;
|
|
|
|
class chr_file setattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 misc_device_t:chr_file setattr;
|
2005-05-16 21:10:33 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read miscellaneous devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_misc',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, misc_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 misc_device_t:chr_file r_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write miscellaneous devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_misc',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, misc_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file { getattr write ioctl };
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 misc_device_t:chr_file { getattr write ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Get the attributes of the mouse devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_getattr_mouse',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, mouse_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 mouse_device_t:chr_file getattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the attributes of the mouse devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_setattr_mouse',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, mouse_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-06-30 18:54:08 +00:00
|
|
|
class chr_file setattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 mouse_device_t:chr_file setattr;
|
2005-06-30 18:54:08 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the mouse devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_mouse',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, mouse_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 mouse_device_t:chr_file r_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-26 20:38:45 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the mtrr device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-26 20:38:45 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_mtrr',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, mtrr_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 mtrr_device_t:chr_file r_file_perms;
|
2005-05-26 20:38:45 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write the mtrr device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_mtrr',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, mtrr_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file { getattr write ioctl };
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 mtrr_device_t:chr_file { getattr write ioctl };
|
2005-05-26 20:38:45 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and write to the null device (/dev/null).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rw_null_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, null_device_t;
|
2005-08-18 21:27:20 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file rw_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 null_device_t:chr_file rw_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the attributes of the printer device nodes.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_setattr_printer',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, printer_device_t;
|
|
|
|
class dir search;
|
|
|
|
class chr_file setattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir search;
|
|
|
|
allow $1 printer_device_t:chr_file setattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-09-02 20:29:52 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write the printer device.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_rw_printer',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, printer_device_t;
|
|
|
|
class dir search;
|
|
|
|
class chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir search;
|
|
|
|
allow $1 printer_device_t:chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read from random devices (e.g., /dev/random)
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_rand',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, random_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file r_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 random_device_t:chr_file r_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write to the random device (e.g., /dev/random). This adds
|
|
|
|
## entropy used to generate the random data read from the
|
|
|
|
## random device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_rand',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, random_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file { getattr write ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 random_device_t:chr_file { getattr write ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the realtime clock (/dev/rtc).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_realtime_clock',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, clock_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 clock_device_t:chr_file r_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the realtime clock (/dev/rtc).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_realtime_clock',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, clock_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file { setattr lock write append ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 clock_device_t:chr_file { setattr lock write append ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and set the realtime clock (/dev/rtc).
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rw_realtime_clock',`
|
|
|
|
dev_read_realtime_clock($1)
|
|
|
|
dev_write_realtime_clock($1)
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Get the attributes of the scanner device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_getattr_scanner',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, scanner_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file getattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 scanner_device_t:chr_file getattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Do not audit attempts to get the attributes of
|
|
|
|
## the scanner device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain to not audit.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_getattr_scanner',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type scanner_device_t;
|
|
|
|
class chr_file getattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 scanner_device_t:chr_file getattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the attributes of the scanner device.
|
2005-07-08 20:44:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_setattr_scanner',`
|
2005-07-08 20:44:57 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, scanner_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
2005-07-08 20:44:57 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 scanner_device_t:chr_file setattr;
|
2005-07-08 20:44:57 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Do not audit attempts to set the attributes of
|
|
|
|
## the scanner device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain to not audit.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_dontaudit_setattr_scanner',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type scanner_device_t;
|
|
|
|
class chr_file getattr;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
dontaudit $1 scanner_device_t:chr_file setattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read and write the scanner device.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_rw_scanner',`
|
2005-06-22 16:07:14 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, scanner_device_t;
|
2005-06-22 16:07:14 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file rw_file_perms;
|
2005-06-22 16:07:14 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 scanner_device_t:chr_file rw_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Get the attributes of the sound devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_getattr_snd_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, sound_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file getattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 sound_device_t:chr_file getattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Set the attributes of the sound devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_setattr_snd_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, sound_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file setattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 sound_device_t:chr_file setattr;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the sound devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain allowed access.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_snd_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, sound_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 sound_device_t:chr_file r_file_perms;
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write the sound devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_snd_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, sound_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file { getattr write ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 sound_device_t:chr_file { getattr write ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Read the sound mixer devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-07-15 14:30:19 +00:00
|
|
|
## Domain allowed access.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_read_snd_mixer_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, sound_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file { getattr read ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 sound_device_t:chr_file { getattr read ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-15 14:30:19 +00:00
|
|
|
## Write the sound mixer devices.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-15 14:30:19 +00:00
|
|
|
interface(`dev_write_snd_mixer_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
2005-07-15 14:30:19 +00:00
|
|
|
type device_t, sound_device_t;
|
2005-06-20 17:41:29 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file { getattr write ioctl };
|
2005-06-20 17:41:29 +00:00
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
allow $1 sound_device_t:chr_file { getattr write ioctl };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Get the attributes of the the power management device.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_power_management',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t, power_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 power_device_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Set the attributes of the the power management device.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_setattr_power_management',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t, power_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 power_device_t:chr_file setattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Read and write the the power management device.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_rw_power_management',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t, power_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file rw_file_perms;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 power_device_t:chr_file rw_file_perms;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Get the attributes of sysfs directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_sysfs_dir',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type sysfs_t;
|
|
|
|
class dir getattr;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
allow $1 sysfs_t:dir getattr;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
2005-05-31 21:25:45 +00:00
|
|
|
|
2005-06-14 19:56:46 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-07-12 20:34:24 +00:00
|
|
|
## Search the sysfs directories.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_search_sysfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type sysfs_t;
|
|
|
|
class dir search;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 sysfs_t:dir search;
|
|
|
|
')
|
|
|
|
|
2005-06-29 20:53:53 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to search sysfs.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_search_sysfs',`
|
|
|
|
gen_require(`
|
|
|
|
type sysfs_t;
|
|
|
|
class dir search;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 sysfs_t:dir search;
|
|
|
|
')
|
|
|
|
|
2005-07-12 20:34:24 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## List the contents of the sysfs directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_list_sysfs',`
|
|
|
|
gen_require(`
|
|
|
|
type sysfs_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sysfs_t:dir r_dir_perms;
|
|
|
|
')
|
|
|
|
|
2005-06-14 19:56:46 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow caller to read hardware state information.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The process type reading hardware state information.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_read_sysfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type sysfs_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class file r_file_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 sysfs_t:dir r_dir_perms;
|
|
|
|
allow $1 sysfs_t:{ file lnk_file } r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow caller to modify hardware state information.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The process type modifying hardware state information.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_rw_sysfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type sysfs_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class file rw_file_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 sysfs_t:dir r_dir_perms;
|
|
|
|
allow $1 sysfs_t:lnk_file r_file_perms;
|
|
|
|
allow $1 sysfs_t:file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read from pseudo random devices (e.g., /dev/urandom)
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_read_urand',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, urandom_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 urandom_device_t:chr_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Write to the pseudo random device (e.g., /dev/urandom). This
|
|
|
|
## sets the random number generator seed.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_write_urand',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, urandom_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file { getattr write ioctl };
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 urandom_device_t:chr_file { getattr write ioctl };
|
|
|
|
')
|
|
|
|
|
2005-06-30 18:54:08 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Mount a usbfs filesystem.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_mount_usbfs',`
|
|
|
|
gen_require(`
|
|
|
|
type usbfs_t;
|
|
|
|
class filesystem mount;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 usbfs_t:filesystem mount;
|
|
|
|
')
|
|
|
|
|
2005-07-08 20:44:57 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Get the attributes of a directory in the usb filesystem.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_getattr_usbfs_dir',`
|
|
|
|
gen_require(`
|
|
|
|
type usbfs_t;
|
|
|
|
class dir getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 usbfs_t:dir getattr;
|
|
|
|
')
|
|
|
|
|
2005-06-14 19:56:46 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Search the directory containing USB hardware information.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_search_usbfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type usbfs_t;
|
|
|
|
class dir search;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 usbfs_t:dir search;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow caller to get a list of usb hardware.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The process type getting the list.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_list_usbfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type usbfs_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class file getattr;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 usbfs_t:dir r_dir_perms;
|
|
|
|
allow $1 usbfs_t:lnk_file r_file_perms;
|
|
|
|
allow $1 usbfs_t:file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Read USB hardware information using
|
|
|
|
## the usbfs filesystem interface.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_read_usbfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type usbfs_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class file r_file_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 usbfs_t:dir r_dir_perms;
|
|
|
|
allow $1 usbfs_t:{ file lnk_file } r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow caller to modify usb hardware configuration files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## The process type modifying the options.
|
|
|
|
## </param>
|
2005-06-14 19:56:46 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_rw_usbfs',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type usbfs_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class file rw_file_perms;
|
|
|
|
class lnk_file r_file_perms;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
|
|
|
allow $1 usbfs_t:dir r_dir_perms;
|
|
|
|
allow $1 usbfs_t:lnk_file r_file_perms;
|
|
|
|
allow $1 usbfs_t:file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
|
|
|
## Get the attributes of video4linux devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-06-30 18:54:08 +00:00
|
|
|
## Domain allowed access.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_getattr_video_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t, v4l_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
2005-06-14 19:56:46 +00:00
|
|
|
|
2005-06-20 17:41:29 +00:00
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 v4l_device_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2005-06-23 21:30:57 +00:00
|
|
|
## <summary>
|
2005-06-30 18:54:08 +00:00
|
|
|
## Do not audit attempts to get the attributes
|
|
|
|
## of video4linux device nodes.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2005-06-30 18:54:08 +00:00
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_getattr_video_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type v4l_device_t;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 v4l_device_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Set the attributes of video4linux device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-06-20 17:41:29 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`dev_setattr_video_dev',`
|
2005-06-20 17:41:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type device_t, v4l_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 v4l_device_t:chr_file setattr;
|
2005-06-14 19:56:46 +00:00
|
|
|
')
|
|
|
|
|
2005-06-30 18:54:08 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to set the attributes
|
|
|
|
## of video4linux device nodes.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain to not audit.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_dontaudit_setattr_video_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type v4l_device_t;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 v4l_device_t:chr_file setattr;
|
|
|
|
')
|
2005-07-05 20:59:51 +00:00
|
|
|
|
2005-09-16 21:20:37 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Get the attributes of X server miscellaneous devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_getattr_xserver_misc_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, xserver_misc_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 xserver_misc_device_t:chr_file getattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Set the attributes of X server miscellaneous devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_setattr_xserver_misc_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, xserver_misc_device_t;
|
|
|
|
class dir r_dir_perms;
|
|
|
|
class chr_file setattr;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 xserver_misc_device_t:chr_file setattr;
|
|
|
|
')
|
|
|
|
|
2005-07-15 14:30:19 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read and write to the zero device (/dev/zero).
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_rw_zero_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type device_t, zero_device_t;
|
2005-08-18 21:27:20 +00:00
|
|
|
class dir r_dir_perms;
|
2005-07-15 14:30:19 +00:00
|
|
|
class chr_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_t:dir r_dir_perms;
|
|
|
|
allow $1 zero_device_t:chr_file rw_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read, write, and execute the zero device (/dev/zero).
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_rwx_zero_dev',`
|
|
|
|
gen_require(`
|
|
|
|
type zero_device_t;
|
|
|
|
class chr_file execute;
|
|
|
|
')
|
|
|
|
|
|
|
|
dev_rw_zero_dev($1)
|
|
|
|
allow $1 zero_device_t:chr_file execute;
|
|
|
|
')
|
|
|
|
|
2005-07-05 20:59:51 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Unconfined access to devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## Domain allowed access.
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`dev_unconfined',`
|
|
|
|
gen_require(`
|
|
|
|
attribute device_node, memory_raw_write, memory_raw_read;
|
|
|
|
type mtrr_device_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 device_node:devfile_class_set *;
|
|
|
|
allow $1 mtrr_device_t:file *;
|
|
|
|
|
|
|
|
allow $1 self:capability sys_rawio;
|
|
|
|
typeattribute $1 memory_raw_write, memory_raw_read;
|
|
|
|
')
|
|
|
|
|