2005-06-01 19:17:13 +00:00
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# Helper macros
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# shiftn(num,list...)
|
|
|
|
#
|
|
|
|
# shift the list num times
|
|
|
|
#
|
|
|
|
define(`shiftn',`ifelse($1,0,`shift($*)',`shiftn(decr($1),shift(shift($*)))')')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
#
|
2005-06-08 20:23:12 +00:00
|
|
|
# gen_con(context,sensitivity)
|
2005-06-01 19:17:13 +00:00
|
|
|
#
|
|
|
|
# Optionally put the sensitivity for the file
|
|
|
|
#
|
|
|
|
define(`context_template',`ifdef(`enable_mls',`$1:$2',`$1')') dnl
|
2005-06-09 23:06:07 +00:00
|
|
|
|
2005-06-16 20:30:07 +00:00
|
|
|
define(`can_exec',`
|
|
|
|
gen_require(`
|
|
|
|
class file { rx_file_perms execute_no_trans };
|
|
|
|
')
|
|
|
|
|
|
|
|
allow $1 $2:file { rx_file_perms execute_no_trans };
|
|
|
|
')
|