aboutsummaryrefslogtreecommitdiff
blob: c2ed23a8b718e02708fdf12773a91335b653b30f (plain)
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
43
44
45
46
## <summary>Linux Target Framework Daemon.</summary>
## <desc>
##	<p>
##	Linux target framework (tgt) aims to simplify various
##	SCSI target driver (iSCSI, Fibre Channel, SRP, etc) creation
##	and maintenance. Our key goals are the clean integration into
##	the scsi-mid layer and implementing a great portion of tgt
##	in user space.
##	</p>
## </desc>

#####################################
## <summary>
##	Allow read and write access to tgtd semaphores.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed access.
##	</summary>
## </param>
#
interface(`tgtd_rw_semaphores',`
	gen_require(`
		type tgtd_t;
	')

	allow $1 tgtd_t:sem rw_sem_perms;
')

######################################
## <summary>
##	Manage tgtd sempaphores.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed access.
##	</summary>
## </param>
#
interface(`tgtd_manage_semaphores',`
	gen_require(`
		type tgtd_t;
	')

	allow $1 tgtd_t:sem create_sem_perms;
')