Linux ACL許可權控制

2022-04-27 23:07:16 字數 4775 閱讀 5494

acl許可權控制主要目的是提供傳統的owner,group,other的read,wirte,execute許可權之外的具體許可權設定,可以針對單一使用者,單一檔案或者目錄來設定特定的許可權。

比如:某一目錄許可權為

drwx------ 2 root root 4096 03-10 13:51./acldir

使用者user對此目錄無任何許可權因此無法進入此目錄,acl可單獨為使用者user設定這個目錄的許可權,使其可以操作這個目錄

要使用acl必須要有檔案系統支援才行,目前絕大多數的檔案系統都會支援,ext3檔案系統預設啟動acl的。

檢視檔案系統是否支援acl

[root@localhost tmp]# dumpe2fs -h /dev/sda2  

dumpe2fs 1.39 (29-may-2006)

……

sparse_super large_file

default mount options: user_xattr acl

載入acl功能

如果unix like支援acl但是檔案系統並不是預設載入此功能,可自己進行新增

[root@localhost tmp]# mount -o remount,acl /  

[root@localhost tmp]# mount

/dev/sda2 on / type ext3 (rw,acl)

同樣也可以修改磁碟掛在配置檔案設定預設開機載入

[root@localhost tmp]# vi /etc/fstab  

label=/ / ext3 defaults,acl 1 1

語法:setfacl [-bkrd] [-m|-x acl 引數] 目標檔名

選項與引數:

-m:設定後續的acl引數,不可與-x一起使用

-x: 刪除後續的acl引數,不可與-m一起使用

-b:刪除所有的acl引數

-k:刪除預設的acl引數

-r:遞迴設定acl引數

-d:設定預設acl引數,只對目錄有效

語法:getfacl filename

getfacl 癿選項幾乎不 setfacl 相同!

設定格式:u:使用者賬號列表:許可權

許可權:rwx的組合形式

如使用者列表為空,代表設定當前檔案所有者許可權

舉例:

[root@localhost tmp]# mkdir -m 700 ./acldir; ll -d ./acldir   

drwx------ 2 root root 4096 03-10 13:51 ./acldir

[root@localhost tmp]# su tkf

[tkf@localhost tmp]$ cd ./acldir/

bash: cd: ./acldir/: 許可權不夠 =>使用者無x許可權

[tkf@localhost tmp]$ exit

exit

[root@localhost tmp]# setfacl -m u:tkf:x ./acldir/

=>針對使用者tkf設定acldir目錄的許可權為x

[root@localhost tmp]# ll -d ./acldir/

drwx--x---+ 2 root root 4096 03-10 13:51 ./acldir/

=>通過acl新增許可權在許可權末尾會增加多個乙個「+」同時檔案原本許可權也發生變化。

=>可通過getfacl檢視原始目錄許可權

[root@localhost tmp]# getfacl ./acldir/

# file: acldir

# owner: root

# group: root

user::rwx

user:tkf:--x =>記錄tkf使用者針對此目錄有acl許可權

group::---

mask::--x

other::---

=>這裡需要特殊說明,只是tkf這個使用者具有x許可權,其他使用者還是無許可權的

[root@localhost tmp]# su tkf

[tkf@localhost tmp]$ cd ./acldir/

[tkf@localhost acldir]$

=>使用者tkf可以具有x許可權可以進入目錄

設定格式:g:使用者組列表:許可權

許可權:rwx的組合形式

如使用者組列表為空,代表設定當前檔案所屬使用者組許可權

舉例:

[root@localhost tmp]# setfacl -m g:users:rx ./acldir/  

[root@localhost tmp]# getfacl ./acldir/

# file: acldir

# owner: root

# group: root

user::rwx

user:tkf:--x

group::--- => 其他使用者組(非acl設定)的許可權

group:users:r-x => 記錄users使用者組針對此目錄有acl許可權

mask::r-x

other::---

有效許可權(mask)就是acl許可權設定的極限值,也就是你所設定的acl許可權一定是mask的乙個子集,如果超出mask範圍會將超出的許可權去掉

設定格式:m:許可權

許可權:rwx的組合形式

舉例:

[root@localhost tmp]# setfacl -m m:x ./acldir/  

[root@localhost tmp]# getfacl ./acldir/

# file: acldir

# owner: root

# group: root

user::rwx

user:tkf:--x

group::r-x #effective:--x

group:users:r-x #effective:--x

mask::--x

other::---

我們前面都是針對乙個目錄為乙個使用者(組)設定特定許可權,但是如果這個目錄下在新建立的檔案是不具有這些針對這個使用者的特定許可權的。為了解決這個問題,就需要設定預設acl許可權,使這個目錄下新建立的檔案有和(繼承)目錄相同的acl特定許可權

設定格式:d:[u|g]:使用者(組)列表:許可權

舉例

[root@localhost tmp]# mkdir -m 711 ./defdir  

[root@localhost tmp]# setfacl -m u:tkf:rxw ./defdir

[root@localhost tmp]# ll -d ./defdir/

drwxrwx--x+ 2 root root 4096 03-10 15:23 ./defdir/

=>目錄許可權具有acl特定許可權(後面+)

[root@localhost tmp]# touch ./defdir/a.file;ll ./defdir/

-rw-r--r-- 1 root root 0 03-10 15:25 a.file

=>新建立的檔案不具有acl特定許可權(後面無+)

[root@localhost tmp]# setfacl -m d:u:tkf:rxw ./defdir

=>設定預設許可權

[root@localhost tmp]# getfacl ./defdir/

# file: defdir

# owner: root

# group: root

user::rwx

user:tkf:rwx

group::--x

mask::rwx

other::--x

default:user::rwx

default:user:tkf:rwx

default:group::--x

default:mask::rwx

default:other::--x

[root@localhost tmp]# touch ./defdir/b.file;ll ./defdir/

-rw-r--r-- 1 root root 0 03-10 15:25 a.file

-rw-rw----+ 1 root root 0 03-10 15:26 b.file

=>新建立檔案預設帶有acl特定許可權

[root@localhost tmp]# getfacl ./defdir/b.file

# file: defdir/b.file

# owner: root

# group: root

user::rw-

user:tkf:rwx #effective:rw-

group::--x #effective:---

mask::rw-

other::---

linux ACL許可權控制

一 acl的使用 acl即access control list 主要的目的是提供傳統的owner,group,others的read,write,execute許可權之外的具體許可權設定,acl可以針對單一使用者 單一檔案或目錄來進行r,w,x的許可權控制,對於需要特殊許可權的使用狀況有一定幫助。...

linux ACL許可權控制

一 acl介紹 acl即access control list 主要的目的是提供傳統的owner,group,others的read,write,execute許可權之外的具體許可權設定,acl可以針對單一使用者 單一檔案或目錄來進行r,w,x的許可權控制,對於需要特殊許可權的使用狀況有一定幫助。如...

Linux ACL訪問控制許可權

acl access control list 訪問控制列表,是linux系統中的訪問許可權控制系統。可用於解決linux基本檔案許可權系統中許可權分配空白問題。類似與windows的檔案許可權設定,可以獨立設定除了所有者和所屬組以外的某個特定組或特定使用者的訪問許可權。例 給rhel使用者增加讀z...