Chris PeBenito 9401ae1
## <summary>giFT peer to peer file sharing tool</summary>
Chris PeBenito 9401ae1
Chris PeBenito 9401ae1
############################################################
Chris PeBenito 9401ae1
## <summary>
Chris PeBenito 9401ae1
##	Role access for gift
Chris PeBenito 9401ae1
## </summary>
Chris PeBenito 9401ae1
## <param name="role">
Chris PeBenito 9401ae1
##	<summary>
Chris PeBenito 9401ae1
##	Role allowed access
Chris PeBenito 9401ae1
##	</summary>
Chris PeBenito 9401ae1
## </param>
Chris PeBenito 9401ae1
## <param name="domain">
Chris PeBenito 9401ae1
##	<summary>
Chris PeBenito 9401ae1
##	User domain for the role
Chris PeBenito 9401ae1
##	</summary>
Chris PeBenito 9401ae1
## </param>
Chris PeBenito 9401ae1
#
Chris PeBenito 9401ae1
interface(`gift_role',`
Chris PeBenito 9401ae1
	gen_require(`
Chris PeBenito 9401ae1
		type gift_t, gift_exec_t;
Chris PeBenito 9401ae1
		type giftd_t, giftd_exec_t;
Chris PeBenito 9401ae1
		type gift_home_t;
Chris PeBenito 9401ae1
	')
Chris PeBenito 9401ae1
Chris PeBenito 9401ae1
	role $1 types { gift_t giftd_t };
Chris PeBenito 9401ae1
Chris PeBenito 9401ae1
	# transition from user domain
Chris PeBenito 9401ae1
	domtrans_pattern($2, gift_exec_t, gift_t)
Chris PeBenito 9401ae1
	domtrans_pattern($2, giftd_exec_t, giftd_t)
Chris PeBenito 9401ae1
Chris PeBenito 9401ae1
	# user managed content
Chris PeBenito 9401ae1
	manage_dirs_pattern($2, gift_home_t, gift_home_t)
Chris PeBenito 9401ae1
	manage_files_pattern($2, gift_home_t, gift_home_t)
Chris PeBenito 9401ae1
	manage_lnk_files_pattern($2, gift_home_t, gift_home_t)
Chris PeBenito 9401ae1
	relabel_dirs_pattern($2, gift_home_t, gift_home_t)
Chris PeBenito 9401ae1
	relabel_files_pattern($2, gift_home_t, gift_home_t)
Chris PeBenito 9401ae1
	relabel_lnk_files_pattern($2, gift_home_t, gift_home_t)
Chris PeBenito 9401ae1
Chris PeBenito 9401ae1
	# Allow the user domain to signal/ps.
Chris PeBenito 9401ae1
	ps_process_pattern($2, { gift_t giftd_t })
Chris PeBenito 9401ae1
	allow $2 { gift_t giftd_t }:process signal_perms;
Chris PeBenito 9401ae1
')