forked from OwlCyberDefense/refpolicy-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlockdev.if
42 lines (35 loc) · 779 Bytes
/
lockdev.if
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
## <summary>Library for locking devices.</summary>
########################################
## <summary>
## Role access for lockdev.
## </summary>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <param name="domain">
## <summary>
## User domain for the role.
## </summary>
## </param>
#
interface(`lockdev_role',`
gen_require(`
attribute_role lockdev_roles;
type lockdev_t, lockdev_exec_t;
')
########################################
#
# Declarations
#
roleattribute $1 lockdev_roles;
########################################
#
# Policy
#
domtrans_pattern($2, lockdev_exec_t, lockdev_t)
allow $2 lockdev_t:process { ptrace signal_perms };
ps_process_pattern($2, lockdev_t)
allow lockdev_t $2:process signull;
')