Rocky Linux 8
Sponsored Link

ACL によるアクセスコントロール2021/07/30

 
ACL (Access Control Lists) の設定です。
ファイル/ディレクトリに対する [所有者/グループ/第三者] と [読み取り/書き込み/実行] のアクセスコントロールをより細かく設定可能です。
[1] ACL パッケージは OS の最小構成に含まれているため、追加パッケージのインストールは不要ですが、 もしインストールされていない場合は、事前にインストールします。
[root@dlp ~]#
dnf -y install acl
[2]
Rocky Linux 8 のデフォルトファイルシステムである [xfs] を利用している場合は、ACL を利用するための事前設定は不要です。
[3] ACL の設定です。
例として、[/home/test.txt] を所有者 [root] のアクセス権 [700] で作成し、そのファイルに ACL を設定します。
[root@dlp ~]#
ll /home/test.txt

-rw-------. 1 root root 10 Jul  7 09:34 /home/test.txt

# ユーザー [rocky] に r(read) を許可

[root@dlp ~]#
setfacl -m u:rocky:r /home/test.txt
# ACL を設定するとアクセス権の右に以下のように [+] が付加される

[root@dlp ~]#
ll /home/test.txt

-rwxr-----+ 1 root root 10 Jul  7 09:34 /home/test.txt

# ACL を表示して設定確認

[root@dlp ~]#
getfacl /home/test.txt

getfacl: Removing leading '/' from absolute path names
# file: home/test.txt
# owner: root
# group: root
user::rwx
user:rocky:r--
group::r--
mask::r--
other::---

# [rocky] ユーザーでアクセス確認

[rocky@dlp ~]$
cat /home/test.txt

ACL test file  
# 正常に表示できた
# 他ユーザーで確認

[redhat@dlp ~]$
cat /home/test.txt

cat: /home/test.txt: Permission denied  
# 正常に表示不可
[4] あるディレクトリ配下全てに再帰的に ACL を設定する。
# [/home/testdir] ディレクトリに対してユーザー [rocky] に r(read) を再帰的に許可

[root@dlp ~]#
setfacl -R -m u:rocky:r /home/testdir
[root@dlp ~]#
ll /home/testdir

total 4
-rwxr-----+ 1 root root 9 Jul  7 09:39 testfile.txt

[root@dlp ~]#
getfacl -R /home/testdir

getfacl: Removing leading '/' from absolute path names
# file: home/testdir
# owner: root
# group: root
user::rwx
user:rocky:r--
group::---
mask::r--
other::---

# file: home/testdir/testfile.txt
# owner: root
# group: root
user::rwx
user:rocky:r--
group::---
mask::r--
other::---
[5] グループ単位で ACL を設定する。
# [/home/testfile.txt] に対して、グループ [security] に rw(read/write) を許可

[root@dlp ~]#
setfacl -m g:security:rw /home/testfile.txt

[root@dlp ~]#
getfacl /home/testfile.txt

getfacl: Removing leading '/' from absolute path names
# file: home/testfile.txt
# owner: root
# group: root
user::rwx
group::---
group:security:rw-
mask::rw-
other::---

# [security] グループ所属の [rocky] ユーザーで確認

[rocky@dlp ~]$
echo "test write" >> /home/testfile.txt

[rocky@dlp ~]$
cat /home/testfile.txt

ACL test file
test write  
# 正常に書き込めた
# [security] グループに属さない他ユーザーで確認

[redhat@dlp ~]$
echo "test write" >> /home/testfile.txt

-bash: /home/test.txt: Permission denied  
# 正常に書き込めない
[6] ACL 設定を削除する。
# [/home/test.txt] の ACL を全て削除

[root@dlp ~]#
setfacl -b /home/test.txt
# [/home/testfile.txt] に付与されている [rocky] ユーザーの ACL のみ削除

[root@dlp ~]#
setfacl -x u:rocky /home/testfile.txt
[7] あるディレクトリに対してデフォルトの ACL を設定する。
デフォルト ACL が設定されたディレクトリ配下にファイル/ディレクトリを作成すると、デフォルト ACL が継承される。
( デフォルト設定のみでなく、対象ディレクトリに対して個別の許可設定もしておく必要がある )
ただし、新規作成ファイルにはデフォルトで ACL が付与されるが、それらのファイルに後から chmod でアクセス権を変更すると ACL 設定はクリアされるため、注意が必要。
[root@dlp ~]#
setfacl -m u:rocky:r-x /home/testdir
# [/home/testdir] ディレクトリに対して [rocky] に r-x(read/execute) を許可するデフォルト ACL

[root@dlp ~]#
setfacl -d -m u:rocky:r-x /home/testdir

[root@dlp ~]#
getfacl /home/testdir

getfacl: Removing leading '/' from absolute path names
# file: home/testdir
# owner: root
# group: root
user::rwx
user:rocky:r-x
group::---
mask::r-x
other::---
default:user::rwx
default:user:rocky:r-x
default:group::---
default:mask::r-x
default:other::---

[root@dlp ~]#
echo "ACL default setting" > /home/testdir/test.txt

[root@dlp ~]#
ll /home/testdir/test.txt

-rw-r-----+ 1 root root 20 Jul  7 09:48 /home/testdir/test.txt

# [rocky] ユーザーで確認

[rocky@dlp ~]$
cat /home/testdir/test.txt

ACL default setting  
# 正常に読めた
[8] デフォルト ACL を削除する。
[root@dlp ~]#
setfacl -k /home/testdir

[root@dlp ~]#
getfacl /home/testdir

getfacl: Removing leading '/' from absolute path names
# file: home/testdir
# owner: root
# group: root
user::rwx
user:rocky:r-x
group::---
mask::r-x
other::---
[9] ファイルから ACL を読み込み設定する。
# ACL 設定ファイルを作成
# 書式は [getfacl] の出力結果と同じ
# 設定したい ACL が他システムにあるなら、[getfacl] の結果をリダイレクトでファイルに出力しそのまま利用することも可能

[root@dlp ~]#
vi acl.txt
# file: /home/testdir
# owner: root
# group: root
user::rwx
user:rocky:r-x
group::---
mask::r-x
other::---

# file: /home/test.txt
# owner: root
# group: root
user::rwx
user:rocky:r--
group::---
mask::r--
other::---

[root@dlp ~]#
setfacl --restore=acl.txt

[root@dlp ~]#
ll /home

total 8
drwx------. 2 rocky  rocky  83 Jul  7 09:38 rocky
drwx------. 2 redhat redhat 83 Jul  7 09:38 redhat
drwxr-x---+ 2 root   root   42 Jul  7 09:48 testdir
-rwxrw----+ 1 root   root   24 Jul  7 09:45 testfile.txt
-rwxr-----+ 1 root   root   10 Jul  7 09:34 test.txt
関連コンテンツ