selinux-policy/refpolicy/policy/modules/system/locallogin.if

51 lines
1.2 KiB
Plaintext
Raw Normal View History

2005-06-07 22:36:07 +00:00
## <module name="locallogin" layer="system">
## <summary>Policy for local logins.</summary>
2005-04-28 19:50:58 +00:00
2005-06-07 22:36:07 +00:00
########################################
## <interface name="locallogin_transition">
## <description>
## Execute local logins in the locallogin domain.
## </description>
## <parameter name="domain">
## The type of the process performing this action.
## </parameter>
## </interface>
2005-04-28 19:50:58 +00:00
#
define(`locallogin_transition',`
requires_block_template(`$0'_depend)
authlogin_login_program_transition($1,local_login_t)
2005-04-28 19:50:58 +00:00
')
define(`locallogin_transition_depend',`
type local_login_t;
2005-04-28 19:50:58 +00:00
')
2005-06-07 22:36:07 +00:00
########################################
## <interface name="locallogin_use_file_descriptors">
## <description>
## Allow processes to inherit local login file descriptors
## </description>
## <parameter name="domain">
## The type of the process performing this action.
## </parameter>
## </interface>
#
########################################
#
# locallogin_use_file_descriptors(domain)
#
define(`locallogin_use_file_descriptors',`
requires_block_template(`$0'_depend)
allow $1 local_login_t:fd use;
')
define(`locallogin_use_file_descriptors_depend',`
type local_login_t;
class fd use;
')
2005-06-07 22:36:07 +00:00
## </module>