selinux は yum アップデート後に php の "exec" 呼び出しをブロックし始めました

selinux は yum アップデート後に php の "exec" 呼び出しをブロックし始めました

私はPHPを使用しました実行者発行するコマンドですlpr -P printer_name /var/www/html/somefile.pdfが、RHEL システムの更新 (7.2 から 7.3) 後、selinux はこれらの要求をブロックするようになりました。

印刷に送信されるファイルの selinux 権限:

ls -lZ /var/www/html/somefile.pdf
-rw-r-----. apache webdev system_u:object_r:httpd_sys_rw_content_t:s0 /var/www/html/somefile.pdf

cmdPHP からの上記に対応して、監査ログには次の内容が表示されます。

時間->2016年11月3日木曜日15:07:02

タイプ=PATH メッセージ=監査(1478200022.446:5151): 項目=0 名前="/etc/cups/lpoptions" inode=134317708 dev=fd:03 モード=0100644 ouid=0 ogid=7 rdev=00:00 obj=system_u:object_r:cupsd_rw_etc_t:s0 objtype=NORMAL

タイプ=CWD メッセージ=監査(1478200022.446:5151): cwd="/var/www/html"

タイプ=SYSCALL メッセージ=監査(1478200022.446:5151): arch=c000003e syscall=2 成功=はい 終了=5 a0=7fff26837c70 a1=0 a2=0 a3=9 項目=1 ppid=19397 pid=46644 auid=4294967295 uid=48 gid=48 euid=48 suid=48 fsuid=48 egid=48 sgid=48 fsgid=48 tty=(なし) ses=4294967295 comm="lpr" exe="/usr/bin/lpr.cups" subj=system_u:system_r:httpd_t:s0 キー=(null)

type=AVC msg=audit(1478200022.446:5151): avc: pid=46644 の { open } が拒否されました comm="lpr" path="/etc/cups/lpoptions" dev="dm-3" ino=134317708 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:cupsd_rw_etc_t:s0 tclass=file

type=AVC msg=audit(1478200022.446:5151): avc: pid=46644 comm="lpr" name="lpoptions" dev="dm-3" ino=134317708 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:cupsd_rw_etc_t:s0 tclass=file の { 読み取り } が拒否されました

現在の selinux 設定は次のとおりです。

# getsebool -a | grep httpd
httpd_anon_write --> off
httpd_builtin_scripting --> on
httpd_can_check_spam --> off
httpd_can_connect_ftp --> off
httpd_can_connect_ldap --> off
httpd_can_connect_mythtv --> off
httpd_can_connect_zabbix --> off
httpd_can_network_connect --> on
httpd_can_network_connect_cobbler --> off
httpd_can_network_connect_db --> off
httpd_can_network_memcache --> off
httpd_can_network_relay --> off
httpd_can_sendmail --> on
httpd_dbus_avahi --> off
httpd_dbus_sssd --> off
httpd_dontaudit_search_dirs --> off
httpd_enable_cgi --> on
httpd_enable_ftp_server --> off
httpd_enable_homedirs --> off
httpd_execmem --> off
httpd_graceful_shutdown --> on
httpd_manage_ipa --> off
httpd_mod_auth_ntlm_winbind --> off
httpd_mod_auth_pam --> off
httpd_read_user_content --> off
httpd_run_ipa --> off
httpd_run_preupgrade --> off
httpd_run_stickshift --> off
httpd_serve_cobbler_files --> off
httpd_setrlimit --> off
httpd_ssi_exec --> on
httpd_sys_script_anon_write --> off
httpd_tmp_exec --> off
httpd_tty_comm --> off
httpd_unified --> off
httpd_use_cifs --> off
httpd_use_fusefs --> off
httpd_use_gpg --> off
httpd_use_nfs --> on
httpd_use_openstack --> off
httpd_use_sasl --> off
httpd_verify_dns --> off

拒否の原因は何ですか?

答え1

最終的に、いくつかの追加のseLinuxツールをインストールしました。トラブルシューティングの支援:

yum install setroubleshoot setools

そして走った

sealert -a /var/log/audit/audit.log

出力では次の変更が提案されました。

ausearch -c 'lpr' --raw | audit2allow -M my-lpr
semodule -i my-lpr.pp
ausearch -c 'wkhtmltopdf-amd' --raw | audit2allow -M my-wkhtmltopdfamd
semodule -i my-wkhtmltopdfamd.pp

これらのコマンドを発行すると、PHP アプリから再び印刷できるようになりました。

関連情報