SELinux : ファイルのタイプを変更する2023/02/20 |
ファイルのタイプを変更することにより、個々のファイルに対する SELinux によるアクセス制御設定を変更することができます。
以下では [targeted] ポリシー適用下の環境で例示しています。
|
|
[1] | ファイルへのラベリングのデフォルトとなる設定はポリシーディレクトリ配下の [contexts/files] 配下にあります。 [***.bin] はバイナリファイルとなっており、[.bin] ではないファイルを開くと、ファイルタイプも含めてどのような設定になっているか参照できます。 |
[root@dlp ~]# ll /etc/selinux/targeted/contexts/files total 1020 -rw-r--r--. 1 root root 410080 Mar 10 21:56 file_contexts -rw-r--r--. 1 root root 577846 Mar 10 21:56 file_contexts.bin -rw-r--r--. 1 root root 15475 Mar 10 21:56 file_contexts.homedirs -rw-r--r--. 1 root root 21219 Mar 10 21:56 file_contexts.homedirs.bin -rw-r--r--. 1 root root 0 Feb 24 08:55 file_contexts.local -rw-r--r--. 1 root root 0 Feb 24 08:55 file_contexts.subs -rw-r--r--. 1 root root 651 Feb 24 08:55 file_contexts.subs_dist -rw-r--r--. 1 root root 139 Feb 24 08:55 media[root@dlp ~]# head /etc/selinux/targeted/contexts/files/file_contexts /.* system_u:object_r:default_t:s0 /[^/]+ -- system_u:object_r:etc_runtime_t:s0 /a?quota\.(user|group) -- system_u:object_r:quota_db_t:s0 /efi(/.*)? system_u:object_r:boot_t:s0 /nsr(/.*)? system_u:object_r:var_t:s0 /sys(/.*)? system_u:object_r:sysfs_t:s0 /xen(/.*)? system_u:object_r:xen_image_t:s0 /mnt(/[^/]*)? -d system_u:object_r:mnt_t:s0 /mnt(/[^/]*)? -l system_u:object_r:mnt_t:s0 /bin/.* system_u:object_r:bin_t:s0 |
[2] |
例として httpd で CGI を利用する際のファイルタイプについて設定します。
httpd での CGI 実行許可のブール値はデフォルトはオンになっています。
よって、デフォルトでは [/var/www/cgi-bin/] 配下に設置した CGI であれば SELinux で許可されているため、実行可能となっています。
また httpd のデフォルトで許可されている CGI の設置場所である [/var/www/cgi-bin/] には、以下のように [httpd_sys_script_exec_t] というタイプがデフォルトで設定されるようになっています。 |
[root@dlp ~]# semanage boolean -l | grep httpd_enable_cgi httpd_enable_cgi (on , on) Allow httpd to enable cgi[root@dlp ~]# grep "cgi" /etc/selinux/targeted/contexts/files/file_contexts | grep "httpd" /opt/.*\.cgi -- system_u:object_r:httpd_sys_script_exec_t:s0 /usr/.*\.cgi -- system_u:object_r:httpd_sys_script_exec_t:s0 /var/www/[^/]*/cgi-bin(/.*)? system_u:object_r:httpd_sys_script_exec_t:s0 /var/www/html/[^/]*/cgi-bin(/.*)? system_u:object_r:httpd_sys_script_exec_t:s0 /usr/lib/cgi-bin(/.*)? system_u:object_r:httpd_sys_script_exec_t:s0 /var/www/cgi-bin(/.*)? system_u:object_r:httpd_sys_script_exec_t:s0 /usr/lib/cgi-bin/(nph-)?cgiwrap(d)? -- system_u:object_r:httpd_suexec_exec_t:s0 /var/log/cgiwrap\.log.* -- system_u:object_r:httpd_log_t:s0 # テストスクリプトを設置してアクセスすると正常に結果が返る [root@dlp ~]# curl localhost/cgi-bin/index.py CGI Test Page |
しかし、デフォルトの [/var/www/cgi-bin/] ではないディレクトリで CGI を許可する場合、httpd の設定は正しくとも、以下のようにアクセスは拒否されます。これは、[cgi-bin] ではない場所では CGI の実行を許可するための SELinux コンテキストが正しく割り当てられないためです。 |
[root@dlp ~]# curl localhost/cgi-enabled/index.py <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>500 Internal Server Error</title> </head><body> <h1>Internal Server Error</h1> <p>The server encountered an internal error or misconfiguration and was unable to complete your request.</p> ..... ..... # [httpd_sys_content_t] が割り当てられている [root@dlp ~]# ls -lZ /var/www/html/cgi-enabled total 4 -rwxr-xr-x. 1 root root unconfined_u:object_r:httpd_sys_content_t:s0 96 Mar 10 22:07 index.py |
以上のような場合、SELinux の設定で CGI を許可しているファイルタイプに変更することで、デフォルトではない場所でも
CGI を実行することができます。CGI には [2] で確認した通り [httpd_sys_script_exec_t] を割り当てれば OK です。
|
[3] | タイプを変更する場合は以下のように設定します。 ただし、[chcon] コマンドでの変更の場合、ファイルシステムに対してリラべリングしたり、[restorecon] コマンドでデフォルトの SELinux コンテキストにリストアした場合は、ポリシーディレクトリ配下の [contexts/files] 配下で設定されているデフォルトのタイプに戻ります。 |
[root@dlp ~]# chcon -t httpd_sys_script_exec_t /var/www/html/cgi-enabled/index.py [root@dlp ~]# ls -lZ /var/www/html/cgi-enabled total 4 -rwxr-xr-x. 1 root root unconfined_u:object_r:httpd_sys_script_exec_t:s0 96 Mar 10 22:07 index.py[root@dlp ~]# curl localhost/cgi-enabled/index.py CGI Test Page # アクセスできた |
[4] | デフォルトのタイプを変更して、タイプの変更を永続的にする場合は以下のように設定します。 ポリシーディレクトリ配下の [contexts/files] 配下で設定されている設定ファイルに書き込まれます。 |
[root@dlp ~]# semanage fcontext -a -t httpd_sys_script_exec_t /var/www/html/cgi-enabled/index.py [root@dlp ~]# grep "cgi-enabled" /etc/selinux/targeted/contexts/files/file_contexts.local
/var/www/html/cgi-enabled/index.py system_u:object_r:httpd_sys_script_exec_t:s0
# 書き込まれた
[root@dlp ~]# ls -lZ /var/www/html/cgi-enabled total 4 -rwxr-xr-x. 1 root root unconfined_u:object_r:httpd_sys_content_t:s0 96 Mar 10 22:07 index.py # restotecon で初期化 [root@dlp ~]# restorecon /var/www/html/cgi-enabled/index.py [root@dlp ~]# ls -lZ /var/www/html/cgi-enabled
total 4
-rwxr-xr-x. 1 root root unconfined_u:object_r:httpd_sys_script_exec_t:s0 96 Mar 10 22:07 index.py
# リストアされた
[root@dlp ~]# curl localhost/cgi-enabled/index.py CGI Test Page # アクセスできた |
Sponsored Link |