Blame man/man8/rsync_selinux.8
Branch: d8822462c4a8427c939a72e310c61e6296bff1e7
Chris PeBenito
bf080a
.TH "rsync_selinux" "8" "17 Jan 2005" "dwalsh@redhat.com" "rsync Selinux Policy documentation"
Chris PeBenito
6b19be
.de EX
Chris PeBenito
6b19be
.nf
Chris PeBenito
6b19be
.ft CW
Chris PeBenito
6b19be
..
Chris PeBenito
6b19be
.de EE
Chris PeBenito
6b19be
.ft R
Chris PeBenito
6b19be
.fi
Chris PeBenito
6b19be
..
Chris PeBenito
bf080a
.SH "NAME"
Chris PeBenito
bf080a
rsync_selinux \- Security Enhanced Linux Policy for the rsync daemon
Chris PeBenito
bf080a
.SH "DESCRIPTION"
Chris PeBenito
bf080a
Chris PeBenito
bf080a
Security-Enhanced Linux secures the rsync server via flexible mandatory access
Chris PeBenito
bf080a
control.
Chris PeBenito
bf080a
.SH FILE_CONTEXTS
Chris PeBenito
bf080a
SELinux requires files to have an extended attribute to define the file type.
Chris PeBenito
bf080a
Policy governs the access daemons have to these files.
Chris PeBenito
bf080a
If you want to share files using the rsync daemon, you must label the files and directories public_content_t. So if you created a special directory /var/rsync, you
Chris PeBenito
bf080a
would need to label the directory with the chcon tool.
Chris PeBenito
bf080a
.TP
Chris PeBenito
bf080a
chcon -t public_content_t /var/rsync
Chris PeBenito
bf080a
.TP
Chris PeBenito
bf080a
If you want to make this permanant, i.e. survive a relabel, you must add an entry to the file_contexts.local file.
Chris PeBenito
6b19be
.EX
Chris PeBenito
bf080a
/etc/selinux/POLICYTYPE/contexts/files/file_contexts.local
Chris PeBenito
bf080a
/var/rsync(/.*)? system_u:object_r:public_content_t
Chris PeBenito
6b19be
.EE
Chris PeBenito
bf080a
Chris PeBenito
bf080a
.SH SHARING FILES
Chris PeBenito
bf080a
If you want to share files with multiple domains (Apache, FTP, rsync, Samba), you can set a file context of public_content_t and public_content_rw_t. These context allow any of the above domains to read the content. If you want a particular domain to write to the public_content_rw_t domain, you must set the appropriate boolean. allow_DOMAIN_anon_write. So for rsync you would execute:
Chris PeBenito
bf080a
Chris PeBenito
6b19be
.EX
Chris PeBenito
bf080a
setsebool -P allow_rsync_anon_write=1
Chris PeBenito
6b19be
.EE
Chris PeBenito
bf080a
Chris PeBenito
bf080a
.SH BOOLEANS
Chris PeBenito
bf080a
.TP
Chris PeBenito
f4e2b1
system-config-selinux is a GUI tool available to customize SELinux policy settings.
Chris PeBenito
bf080a
.SH AUTHOR
Chris PeBenito
bf080a
This manual page was written by Dan Walsh <dwalsh@redhat.com>.
Chris PeBenito
bf080a
Chris PeBenito
bf080a
.SH "SEE ALSO"
Chris PeBenito
bf080a
selinux(8), rsync(1), chcon(1), setsebool(8)