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

42 lines
1004 B
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
########################################
2005-06-13 17:35:46 +00:00
## <interface name="locallogin_domtrans">
2005-06-07 22:36:07 +00:00
## <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
#
2005-06-13 17:35:46 +00:00
define(`locallogin_domtrans',`
2005-06-17 17:59:26 +00:00
gen_require(`
type local_login_t;
')
2005-06-13 17:35:46 +00:00
auth_domtrans_login_program($1,local_login_t)
2005-04-28 19:50:58 +00:00
')
2005-06-07 22:36:07 +00:00
########################################
2005-06-13 17:35:46 +00:00
## <interface name="locallogin_use_fd">
2005-06-07 22:36:07 +00:00
## <description>
## Allow processes to inherit local login file descriptors
## </description>
## <parameter name="domain">
## The type of the process performing this action.
## </parameter>
## </interface>
#
2005-06-13 17:35:46 +00:00
define(`locallogin_use_fd',`
2005-06-17 17:59:26 +00:00
gen_require(`
type local_login_t;
class fd use;
')
allow $1 local_login_t:fd use;
')
2005-06-07 22:36:07 +00:00
## </module>