2005-05-23 15:48:45 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Core policy for shells, and generic programs
|
|
|
|
## in /bin, /sbin, /usr/bin, and /usr/sbin.
|
2005-05-23 15:48:45 +00:00
|
|
|
## </summary>
|
2005-08-30 14:41:52 +00:00
|
|
|
## <required val="true">
|
|
|
|
## Contains the base bin and sbin directory types
|
|
|
|
## which need to be searched for the kernel to
|
|
|
|
## run init.
|
|
|
|
## </required>
|
2005-04-20 19:07:16 +00:00
|
|
|
|
2006-04-19 21:43:02 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Make the specified type usable for files
|
|
|
|
## that are exectuables, such as binary programs.
|
|
|
|
## This does not include shared libraries.
|
|
|
|
## </summary>
|
|
|
|
## <param name="type">
|
|
|
|
## <summary>
|
|
|
|
## Type to be used for files.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_executable_file',`
|
|
|
|
gen_require(`
|
|
|
|
attribute exec_type;
|
|
|
|
')
|
|
|
|
|
|
|
|
typeattribute $1 exec_type;
|
|
|
|
|
|
|
|
files_type($1)
|
|
|
|
')
|
|
|
|
|
2005-11-14 20:26:41 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
2005-11-15 18:47:20 +00:00
|
|
|
## Create a aliased type to generic bin files.
|
2005-11-14 20:26:41 +00:00
|
|
|
## </summary>
|
2005-11-15 18:47:20 +00:00
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## Create a aliased type to generic bin files.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## This is added to support targeted policy. Its
|
|
|
|
## use should be limited. It has no effect
|
|
|
|
## on the strict policy.
|
|
|
|
## </p>
|
|
|
|
## </desc>
|
2005-11-14 20:26:41 +00:00
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-14 20:26:41 +00:00
|
|
|
## Alias type for bin_t.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-11-14 20:26:41 +00:00
|
|
|
## </param>
|
2006-05-10 18:09:08 +00:00
|
|
|
#
|
2005-11-14 20:26:41 +00:00
|
|
|
interface(`corecmd_bin_alias',`
|
2005-11-15 18:47:20 +00:00
|
|
|
ifdef(`targeted_policy',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
2005-11-14 20:26:41 +00:00
|
|
|
|
2005-11-15 18:47:20 +00:00
|
|
|
typealias bin_t alias $1;
|
|
|
|
',`
|
2006-06-06 17:25:23 +00:00
|
|
|
errprint(__file__:__line__:` $0($*) has no effect in strict policy.'__endline__)
|
2005-11-15 18:47:20 +00:00
|
|
|
')
|
2005-11-14 20:26:41 +00:00
|
|
|
')
|
|
|
|
|
2006-03-24 18:59:51 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Make general progams in bin an entrypoint for
|
|
|
|
## the specified domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## The domain for which bin_t is an entrypoint.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2006-05-10 18:09:08 +00:00
|
|
|
#
|
2006-03-24 18:59:51 +00:00
|
|
|
interface(`corecmd_bin_entry_type',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
domain_entry_file($1,bin_t)
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Make general progams in sbin an entrypoint for
|
|
|
|
## the specified domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## The domain for which sbin programs are an entrypoint.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2006-05-10 18:09:08 +00:00
|
|
|
#
|
2006-03-24 18:59:51 +00:00
|
|
|
interface(`corecmd_sbin_entry_type',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
domain_entry_file($1,sbin_t)
|
|
|
|
')
|
|
|
|
|
2005-08-11 17:46:39 +00:00
|
|
|
########################################
|
2005-06-27 18:37:33 +00:00
|
|
|
## <summary>
|
|
|
|
## Make the shell an entrypoint for the specified domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-06-27 18:37:33 +00:00
|
|
|
## The domain for which the shell is an entrypoint.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-27 18:37:33 +00:00
|
|
|
## </param>
|
2006-05-10 18:09:08 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_shell_entry_type',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type shell_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
domain_entry_file($1,shell_exec_t)
|
2005-04-28 19:50:58 +00:00
|
|
|
')
|
|
|
|
|
2005-05-12 20:50:09 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Search the contents of bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-05-12 20:50:09 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_search_bin',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 bin_t:dir search;
|
2005-05-12 20:50:09 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## List the contents of bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-05-12 20:50:09 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_list_bin',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 bin_t:dir r_dir_perms;
|
2005-05-12 20:50:09 +00:00
|
|
|
')
|
|
|
|
|
2005-06-27 20:59:28 +00:00
|
|
|
########################################
|
2005-06-27 18:37:33 +00:00
|
|
|
## <summary>
|
|
|
|
## Get the attributes of files in bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-27 18:37:33 +00:00
|
|
|
## </param>
|
2005-07-11 19:02:50 +00:00
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`corecmd_getattr_bin_files',`
|
2005-06-27 18:37:33 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:file getattr;
|
|
|
|
')
|
|
|
|
|
2005-07-11 19:02:50 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read files in bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
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(`corecmd_read_bin_files',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search;
|
|
|
|
allow $1 bin_t:file r_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-06-27 20:59:28 +00:00
|
|
|
########################################
|
2005-06-27 18:37:33 +00:00
|
|
|
## <summary>
|
|
|
|
## Read symbolic links in bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-27 18:37:33 +00:00
|
|
|
## </param>
|
2005-07-11 19:02:50 +00:00
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`corecmd_read_bin_symlinks',`
|
2005-06-27 18:37:33 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
2005-07-11 19:02:50 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search;
|
|
|
|
allow $1 bin_t:lnk_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read pipes in bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
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(`corecmd_read_bin_pipes',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search;
|
|
|
|
allow $1 bin_t:fifo_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read named sockets in bin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
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(`corecmd_read_bin_sockets',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
2005-06-27 18:37:33 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search;
|
2005-07-11 19:02:50 +00:00
|
|
|
allow $1 bin_t:sock_file r_file_perms;
|
2005-06-27 18:37:33 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute generic programs in bin directories,
|
|
|
|
## in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_exec_bin',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 bin_t:dir r_dir_perms;
|
|
|
|
allow $1 bin_t:lnk_file r_file_perms;
|
|
|
|
can_exec($1,bin_t)
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2006-01-11 23:20:28 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and delete bin files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_manage_bin_files',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir rw_dir_perms;
|
|
|
|
allow $1 bin_t:file manage_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Relabel to and from the bin type.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_relabel_bin_files',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search_dir_perms;
|
|
|
|
allow $1 bin_t:file { relabelfrom relabelto };
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Mmap a bin file as executable.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_mmap_bin_files',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search_dir_perms;
|
|
|
|
allow $1 bin_t:file { getattr read execute };
|
|
|
|
')
|
|
|
|
|
2005-07-13 18:29:08 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a file in a bin directory
|
2006-01-18 16:40:04 +00:00
|
|
|
## in the specified domain but do not
|
|
|
|
## do it automatically. This is an explicit
|
|
|
|
## transition, requiring the caller to use setexeccon().
|
2005-07-13 18:29:08 +00:00
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## Execute a file in a bin directory
|
|
|
|
## in the specified domain. This allows
|
|
|
|
## the specified domain to execute any file
|
|
|
|
## on these filesystems in the specified
|
|
|
|
## domain. This is not suggested.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## No interprocess communication (signals, pipes,
|
|
|
|
## etc.) is provided by this interface since
|
|
|
|
## the domains are not owned by this module.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## This interface was added to handle
|
2006-01-18 16:40:04 +00:00
|
|
|
## the userhelper policy.
|
2005-07-13 18:29:08 +00:00
|
|
|
## </p>
|
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-13 18:29:08 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="target_domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-07-13 18:29:08 +00:00
|
|
|
## The type of the new process.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-07-13 18:29:08 +00:00
|
|
|
## </param>
|
|
|
|
#
|
2006-01-18 16:40:04 +00:00
|
|
|
interface(`corecmd_bin_spec_domtrans',`
|
2005-07-13 18:29:08 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir search;
|
|
|
|
allow $1 bin_t:lnk_file { getattr read };
|
|
|
|
|
2006-01-18 16:40:04 +00:00
|
|
|
domain_trans($1,bin_t,$2)
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a file in a bin directory
|
|
|
|
## in the specified domain.
|
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## Execute a file in a bin directory
|
|
|
|
## in the specified domain. This allows
|
|
|
|
## the specified domain to execute any file
|
|
|
|
## on these filesystems in the specified
|
|
|
|
## domain. This is not suggested.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## No interprocess communication (signals, pipes,
|
|
|
|
## etc.) is provided by this interface since
|
|
|
|
## the domains are not owned by this module.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## This interface was added to handle
|
|
|
|
## the ssh-agent policy.
|
|
|
|
## </p>
|
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="target_domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## The type of the new process.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_bin_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
corecmd_bin_spec_domtrans($1,$2)
|
|
|
|
type_transition $1 bin_t:process $2;
|
2005-07-13 18:29:08 +00:00
|
|
|
')
|
|
|
|
|
2005-05-12 20:50:09 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Search the contents of sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-05-12 20:50:09 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_search_sbin',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-11-21 22:15:11 +00:00
|
|
|
allow $1 sbin_t:dir search_dir_perms;
|
2005-05-12 20:50:09 +00:00
|
|
|
')
|
|
|
|
|
2005-11-15 20:17:18 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to search
|
|
|
|
## sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-15 20:17:18 +00:00
|
|
|
## Domain to not audit.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-11-15 20:17:18 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_dontaudit_search_sbin',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
dontaudit $1 sbin_t:dir search_dir_perms;
|
|
|
|
')
|
|
|
|
|
2005-05-12 20:50:09 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## List the contents of sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-05-12 20:50:09 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_list_sbin',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 sbin_t:dir r_dir_perms;
|
2005-05-12 20:50:09 +00:00
|
|
|
')
|
|
|
|
|
2005-06-27 18:37:33 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Get the attributes of sbin files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-06-27 18:37:33 +00:00
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`corecmd_getattr_sbin_files',`
|
2005-06-27 18:37:33 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:file getattr;
|
|
|
|
')
|
|
|
|
|
2005-05-30 21:17:20 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Do not audit attempts to get the attibutes
|
|
|
|
## of sbin files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain to not audit.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`corecmd_dontaudit_getattr_sbin_files',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-27 18:37:33 +00:00
|
|
|
dontaudit $1 sbin_t:file getattr;
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
2005-07-11 19:02:50 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read files in sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
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(`corecmd_read_sbin_files',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search;
|
|
|
|
allow $1 sbin_t:file r_file_perms;
|
|
|
|
')
|
|
|
|
|
2005-06-27 20:59:28 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read symbolic links in sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-27 20:59:28 +00:00
|
|
|
## </param>
|
2005-07-11 19:02:50 +00:00
|
|
|
#
|
2006-02-02 21:08:12 +00:00
|
|
|
interface(`corecmd_read_sbin_symlinks',`
|
2005-06-27 20:59:28 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
2005-07-11 19:02:50 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search;
|
|
|
|
allow $1 sbin_t:lnk_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read named pipes in sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
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(`corecmd_read_sbin_pipes',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search;
|
|
|
|
allow $1 sbin_t:fifo_file r_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Read named sockets in sbin directories.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
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(`corecmd_read_sbin_sockets',`
|
2005-07-11 19:02:50 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
2005-06-27 20:59:28 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search;
|
2005-07-11 19:02:50 +00:00
|
|
|
allow $1 sbin_t:sock_file r_file_perms;
|
2005-06-27 20:59:28 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute generic programs in sbin directories,
|
|
|
|
## in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_exec_sbin',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 sbin_t:dir r_dir_perms;
|
|
|
|
allow $1 sbin_t:lnk_file r_file_perms;
|
|
|
|
can_exec($1,sbin_t)
|
2006-01-11 23:20:28 +00:00
|
|
|
')
|
2005-06-09 14:50:48 +00:00
|
|
|
|
2006-01-11 23:20:28 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and delete sbin files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
# cjp: added for prelink
|
|
|
|
interface(`corecmd_manage_sbin_files',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir rw_dir_perms;
|
|
|
|
allow $1 sbin_t:file manage_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Relabel to and from the sbin type.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
# cjp: added for prelink
|
|
|
|
interface(`corecmd_relabel_sbin_files',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search_dir_perms;
|
|
|
|
allow $1 sbin_t:file { relabelfrom relabelto };
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Mmap a sbin file as executable.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-11 23:20:28 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
# cjp: added for prelink
|
|
|
|
interface(`corecmd_mmap_sbin_files',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search_dir_perms;
|
|
|
|
allow $1 sbin_t:file { getattr read execute };
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-08-30 15:48:57 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a file in a sbin directory
|
|
|
|
## in the specified domain.
|
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## Execute a file in a sbin directory
|
|
|
|
## in the specified domain. This allows
|
|
|
|
## the specified domain to execute any file
|
|
|
|
## on these filesystems in the specified
|
|
|
|
## domain. This is not suggested.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## No interprocess communication (signals, pipes,
|
|
|
|
## etc.) is provided by this interface since
|
|
|
|
## the domains are not owned by this module.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## This interface was added to handle
|
|
|
|
## the ssh-agent policy.
|
|
|
|
## </p>
|
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-08-30 15:48:57 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="target_domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-08-30 15:48:57 +00:00
|
|
|
## The type of the new process.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-08-30 15:48:57 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_sbin_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search;
|
|
|
|
allow $1 sbin_t:lnk_file { getattr read };
|
|
|
|
|
|
|
|
domain_auto_trans($1,sbin_t,$2)
|
|
|
|
')
|
|
|
|
|
2006-01-18 16:40:04 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute a file in a sbin directory
|
|
|
|
## in the specified domain but do not
|
|
|
|
## do it automatically. This is an explicit
|
|
|
|
## transition, requiring the caller to use setexeccon().
|
|
|
|
## </summary>
|
|
|
|
## <desc>
|
|
|
|
## <p>
|
|
|
|
## Execute a file in a sbin directory
|
|
|
|
## in the specified domain. This allows
|
|
|
|
## the specified domain to execute any file
|
|
|
|
## on these filesystems in the specified
|
|
|
|
## domain. This is not suggested.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## No interprocess communication (signals, pipes,
|
|
|
|
## etc.) is provided by this interface since
|
|
|
|
## the domains are not owned by this module.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## This interface was added to handle
|
|
|
|
## the userhelper policy.
|
|
|
|
## </p>
|
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="target_domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## The type of the new process.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-18 16:40:04 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_sbin_spec_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 sbin_t:dir search;
|
|
|
|
allow $1 sbin_t:lnk_file { getattr read };
|
|
|
|
|
|
|
|
domain_trans($1,sbin_t,$2)
|
|
|
|
')
|
|
|
|
|
2005-11-08 22:00:30 +00:00
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Check if a shell is executable (DAC-wise).
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_check_exec_shell',`
|
|
|
|
gen_require(`
|
|
|
|
type bin_t, shell_exec_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 bin_t:dir r_dir_perms;
|
|
|
|
allow $1 bin_t:lnk_file r_file_perms;
|
|
|
|
allow $1 shell_exec_t:file execute;
|
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute a shell in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_exec_shell',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t, shell_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 bin_t:dir r_dir_perms;
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 bin_t:lnk_file r_file_perms;
|
|
|
|
can_exec($1,shell_exec_t)
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
|
|
|
|
2005-05-30 21:17:20 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute ls in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-05-30 21:17:20 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_exec_ls',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t, ls_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
|
|
|
allow $1 bin_t:dir r_dir_perms;
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 bin_t:lnk_file r_file_perms;
|
|
|
|
can_exec($1,ls_exec_t)
|
2005-05-30 21:17:20 +00:00
|
|
|
')
|
|
|
|
|
2005-05-12 20:50:09 +00:00
|
|
|
########################################
|
2005-08-11 17:46:39 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute a shell in the target domain. This
|
|
|
|
## is an explicit transition, requiring the
|
|
|
|
## caller to use setexeccon().
|
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <desc>
|
2005-07-13 18:29:08 +00:00
|
|
|
## <p>
|
2005-06-23 21:30:57 +00:00
|
|
|
## Execute a shell in the target domain. This
|
|
|
|
## is an explicit transition, requiring the
|
|
|
|
## caller to use setexeccon().
|
2005-07-13 18:29:08 +00:00
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## No interprocess communication (signals, pipes,
|
|
|
|
## etc.) is provided by this interface since
|
|
|
|
## the domains are not owned by this module.
|
|
|
|
## </p>
|
2005-06-23 21:30:57 +00:00
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="target_domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## The type of the shell process.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-05-12 20:50:09 +00:00
|
|
|
#
|
2005-06-22 19:21:31 +00:00
|
|
|
interface(`corecmd_shell_spec_domtrans',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type bin_t, shell_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-09 14:50:48 +00:00
|
|
|
allow $1 bin_t:dir r_dir_perms;
|
|
|
|
allow $1 bin_t:lnk_file r_file_perms;
|
2005-06-10 01:01:13 +00:00
|
|
|
|
|
|
|
domain_trans($1,shell_exec_t,$2)
|
2005-05-12 20:50:09 +00:00
|
|
|
')
|
|
|
|
|
2005-05-31 19:52:57 +00:00
|
|
|
########################################
|
2005-07-13 18:29:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute a shell in the specified domain.
|
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## <desc>
|
2005-07-13 18:29:08 +00:00
|
|
|
## <p>
|
|
|
|
## Execute a shell in the specified domain.
|
|
|
|
## </p>
|
|
|
|
## <p>
|
|
|
|
## No interprocess communication (signals, pipes,
|
|
|
|
## etc.) is provided by this interface since
|
|
|
|
## the domains are not owned by this module.
|
|
|
|
## </p>
|
2005-06-23 21:30:57 +00:00
|
|
|
## </desc>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-11-08 22:00:30 +00:00
|
|
|
## Domain allowed access.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="target_domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## The type of the shell process.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2005-06-23 21:30:57 +00:00
|
|
|
## </param>
|
2005-05-31 19:52:57 +00:00
|
|
|
#
|
2005-07-13 18:29:08 +00:00
|
|
|
interface(`corecmd_shell_domtrans',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type shell_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-13 17:35:46 +00:00
|
|
|
corecmd_shell_spec_domtrans($1,$2)
|
2005-06-03 12:25:14 +00:00
|
|
|
type_transition $1 shell_exec_t:process $2;
|
2005-05-31 19:52:57 +00:00
|
|
|
')
|
|
|
|
|
2005-04-14 20:18:17 +00:00
|
|
|
########################################
|
2006-05-10 18:09:08 +00:00
|
|
|
## <summary>
|
|
|
|
## Execute chroot in the caller domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
2005-04-14 20:18:17 +00:00
|
|
|
#
|
2005-07-13 18:29:08 +00:00
|
|
|
interface(`corecmd_exec_chroot',`
|
2005-06-17 17:59:26 +00:00
|
|
|
gen_require(`
|
|
|
|
type chroot_exec_t;
|
|
|
|
')
|
2005-06-03 12:25:14 +00:00
|
|
|
|
2005-06-17 17:59:26 +00:00
|
|
|
can_exec($1,chroot_exec_t)
|
2005-06-03 12:25:14 +00:00
|
|
|
allow $1 self:capability sys_chroot;
|
2005-04-14 20:18:17 +00:00
|
|
|
')
|
2006-04-19 21:43:02 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute all executable files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_exec_all_executables',`
|
|
|
|
gen_require(`
|
|
|
|
attribute exec_type;
|
|
|
|
type bin_t, sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
can_exec($1,exec_type)
|
|
|
|
allow $1 { bin_t sbin_t }:dir list_dir_perms;
|
|
|
|
allow $1 { bin_t sbin_t }:lnk_file read_file_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Create, read, write, and all executable files.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_manage_all_executables',`
|
|
|
|
gen_require(`
|
|
|
|
attribute exec_type;
|
|
|
|
type bin_t, sbin_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 exec_type:file manage_file_perms;
|
|
|
|
allow $1 { bin_t sbin_t }:dir rw_dir_perms;
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Relabel to and from the bin type.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_relabel_all_executables',`
|
|
|
|
gen_require(`
|
|
|
|
attribute exec_type;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 exec_type:file { relabelfrom relabelto };
|
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Mmap all executables as executable.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
|
|
|
## <summary>
|
|
|
|
## Domain allowed access.
|
|
|
|
## </summary>
|
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`corecmd_mmap_all_executables',`
|
|
|
|
gen_require(`
|
|
|
|
attribute exec_type;
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 exec_type:file { getattr read execute };
|
|
|
|
')
|