## Fast incremental file transfer for synchronization
########################################
##
## Make rsync an entry point for
## the specified domain.
##
##
##
## The domain for which init scripts are an entrypoint.
##
##
# cjp: added for portage
interface(`rsync_entry_type',`
gen_require(`
type rsync_exec_t;
')
domain_entry_file($1, rsync_exec_t)
')
########################################
##
## Execute a rsync in a specified domain.
##
##
##
## Execute a rsync in a specified domain.
##
##
## No interprocess communication (signals, pipes,
## etc.) is provided by this interface since
## the domains are not owned by this module.
##
##
##
##
## Domain to transition from.
##
##
##
##
## Domain to transition to.
##
##
# cjp: added for portage
interface(`rsync_entry_spec_domtrans',`
gen_require(`
type rsync_exec_t;
')
domain_trans($1, rsync_exec_t, $2)
')
########################################
##
## Execute a rsync in a specified domain.
##
##
##
## Execute a rsync in a specified domain.
##
##
## No interprocess communication (signals, pipes,
## etc.) is provided by this interface since
## the domains are not owned by this module.
##
##
##
##
## Domain to transition from.
##
##
##
##
## Domain to transition to.
##
##
# cjp: added for portage
interface(`rsync_entry_domtrans',`
gen_require(`
type rsync_exec_t;
')
domain_auto_trans($1, rsync_exec_t, $2)
')
########################################
##
## Execute rsync in the caller domain domain.
##
##
##
## Domain allowed access.
##
##
##
#
interface(`rsync_exec',`
gen_require(`
type rsync_exec_t;
')
can_exec($1, rsync_exec_t)
')
########################################
##
## Read rsync config files.
##
##
##
## Domain allowed.
##
##
#
interface(`rsync_read_config',`
gen_require(`
type rsync_etc_t;
')
read_files_pattern($1, rsync_etc_t, rsync_etc_t)
files_search_etc($1)
')
#######################################
##
## Write to rsync config files.
##
##
##
## Domain allowed.
##
##
#
interface(`rsync_write_config',`
gen_require(`
type rsync_etc_t;
')
write_files_pattern($1, rsync_etc_t, rsync_etc_t)
files_search_etc($1)
')
#######################################
##
## Manage rsync config files.
##
##
##
## Domain allowed.
##
##
#
interface(`rsync_manage_config',`
gen_require(`
type rsync_etc_t;
')
manage_files_pattern($1, rsync_etc_t, rsync_etc_t)
files_search_etc($1)
')
#######################################
##
## Create objects in the amavis spool directories
## with a private type.
##
##
##
## Domain allowed access.
##
##
##
##
## Class of the object being created.
##
##
#
interface(`rsync_filetrans_config',`
gen_require(`
type rsync_etc_t;
')
files_etc_filetrans($1, rsync_etc_t, $2)
')