selinux: Allow passt to talk over unconfined_t UNIX domain socket for --fd
If passt is started with --fd to talk over a pre-opened UNIX domain socket, we don't really know what label might be associated to it, but at least for an unconfined_t socket, this bit of policy wouldn't belong to anywhere else: enable that here. This is rather loose, of course, but on the other hand passt will sandbox itself into an empty filesystem, so we're not really adding much to the attack surface except for what --fd is supposed to do. Reported-by: Matej Hrica <mhrica@redhat.com> Link: https://bugzilla.redhat.com/show_bug.cgi?id=2247221 Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
50bc25a23c
commit
74e6f48038
1 changed files with 1 additions and 0 deletions
|
@ -124,3 +124,4 @@ allow passt_t self:icmp_socket { bind create setopt read write };
|
||||||
allow passt_t user_tmp_t:dir { add_name write };
|
allow passt_t user_tmp_t:dir { add_name write };
|
||||||
allow passt_t user_tmp_t:file { create open };
|
allow passt_t user_tmp_t:file { create open };
|
||||||
allow passt_t user_tmp_t:sock_file { create read write unlink };
|
allow passt_t user_tmp_t:sock_file { create read write unlink };
|
||||||
|
allow passt_t unconfined_t:unix_stream_socket { read write };
|
||||||
|
|
Loading…
Reference in a new issue