Ho richieste di inoltro nginx a Gunicorn tramite un socket Unix a /run/gunicorn/socket
. Di default, questo comportamento non è permesso da SELinux:
grep nginx /var/log/audit/audit.log
type=SERVICE_START msg=audit(1454358912.455:5390): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=nginx comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
type=AVC msg=audit(1454360194.623:7324): avc: denied { write } for pid=9128 comm="nginx" name="socket" dev="tmpfs" ino=76151 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:httpd_sys_content_t:s0 tclass=sock_file
type=SYSCALL msg=audit(1454360194.623:7324): arch=c000003e syscall=42 success=no exit=-13 a0=c a1=1f6fe58 a2=6e a3=7ffee1da5710 items=0 ppid=9127 pid=9128 auid=4294967295 uid=995 gid=993 euid=995 suid=995 fsuid=995 egid=993 sgid=993 fsgid=993 tty=(none) ses=4294967295 comm="nginx" exe="/usr/sbin/nginx" subj=system_u:system_r:httpd_t:s0 key=(null)
type=AVC msg=audit(1454361591.701:13343): avc: denied { connectto } for pid=9128 comm="nginx" path="/run/gunicorn/socket" scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:system_r:initrc_t:s0 tclass=unix_stream_socket
type=SYSCALL msg=audit(1454361591.701:13343): arch=c000003e syscall=42 success=no exit=-13 a0=c a1=1f6fe58 a2=6e a3=7ffee1da5950 items=0 ppid=9127 pid=9128 auid=4294967295 uid=995 gid=993 euid=995 suid=995 fsuid=995 egid=993 sgid=993 fsgid=993 tty=(none) ses=4294967295 comm="nginx" exe="/usr/sbin/nginx" subj=system_u:system_r:httpd_t:s0 key=(null)
Ovunque io guardi (ad esempio, qui e qui ), le istruzioni per abilitare questo dicono di fare una richiesta a nginx, che la richiesta sia negata da SELinux, quindi eseguita audit2allow
per consentire future richieste. Non riesco a capire alcuno chcon
o semanage
comando che consenta esplicitamente questo comportamento.
È l'unico modo? Sembra ridicolo che non sia possibile impostare una politica che consenta a nginx di scrivere su un socket senza prima aver tentato di negare un tentativo e quindi eseguire uno strumento che abilita le cose che sono state negate. Come fai a sapere esattamente cosa viene abilitato? Come dovrebbe funzionare se la configurazione delle macchine è automatizzata?
Sto usando CentOS 7.