2005-06-07 22:36:07 +00:00
|
|
|
## <summary>Policy for udev.</summary>
|
2005-04-28 15:45:32 +00:00
|
|
|
|
2005-06-07 22:36:07 +00:00
|
|
|
########################################
|
2005-07-11 19:02:50 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute udev in the udev domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## </param>
|
2005-04-28 15:45:32 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`udev_domtrans',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type udev_t, udev_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-08 21:07:03 +00:00
|
|
|
domain_auto_trans($1, udev_exec_t, udev_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 udev_t:fd use;
|
|
|
|
allow udev_t $1:fd use;
|
|
|
|
allow udev_t $1:fifo_file rw_file_perms;
|
|
|
|
allow udev_t $1:process sigchld;
|
2005-04-28 15:45:32 +00:00
|
|
|
')
|
|
|
|
|
2005-10-31 20:32:53 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a udev helper in the udev domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-10-31 20:32:53 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-31 20:32:53 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`udev_helper_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type udev_t, udev_helper_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
domain_auto_trans($1, udev_helper_exec_t, udev_t)
|
|
|
|
|
|
|
|
allow $1 udev_t:fd use;
|
|
|
|
allow udev_t $1:fd use;
|
|
|
|
allow udev_t $1:fifo_file rw_file_perms;
|
|
|
|
allow udev_t $1:process sigchld;
|
|
|
|
')
|
|
|
|
|
2005-10-10 18:11:46 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Allow process to read udev process state.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-10-10 18:11:46 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-10-10 18:11:46 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`udev_read_state',`
|
|
|
|
gen_require(`
|
|
|
|
type udev_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
kernel_search_proc($1)
|
|
|
|
allow $1 udev_t:file r_file_perms;
|
|
|
|
allow $1 udev_t:lnk_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-09-15 21:03:29 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to inherit a
|
|
|
|
## udev file descriptor.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-09-15 21:03:29 +00:00
|
|
|
## Domain to not audit.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-09-15 21:03:29 +00:00
|
|
|
## </param>
|
|
|
|
#
|
2006-03-02 23:41:11 +00:00
|
|
|
interface(`udev_dontaudit_use_fds',`
|
2005-09-15 21:03:29 +00:00
|
|
|
gen_require(`
|
|
|
|
type udev_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 udev_t:fd use;
|
|
|
|
')
|
|
|
|
|
2005-04-28 15:45:32 +00:00
|
|
|
########################################
|
2005-07-11 19:02:50 +00:00
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to read or write
|
|
|
|
## to a udev unix datagram socket.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## Domain to not audit.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## </param>
|
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`udev_dontaudit_rw_dgram_sockets',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type udev_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 udev_t:unix_dgram_socket { read write };
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Allow process to read list of devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## </param>
|
2005-04-28 15:45:32 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`udev_read_db',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type udev_tdb_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
dev_list_all_dev_nodes($1)
|
2005-06-08 21:07:03 +00:00
|
|
|
allow $1 udev_tdb_t:file r_file_perms;
|
2005-04-28 15:45:32 +00:00
|
|
|
')
|
|
|
|
|
2005-05-13 14:37:13 +00:00
|
|
|
########################################
|
2005-07-11 19:02:50 +00:00
|
|
|
## <summary>
|
|
|
|
## Allow process to modify list of devices.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## The type of the process performing this action.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-11 19:02:50 +00:00
|
|
|
## </param>
|
2005-05-13 14:37:13 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`udev_rw_db',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type udev_tdb_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
dev_list_all_dev_nodes($1)
|
2005-06-08 21:07:03 +00:00
|
|
|
allow $1 udev_tdb_t:file rw_file_perms;
|
2005-05-13 14:37:13 +00:00
|
|
|
')
|