NFS에서 ACL권한적용이 안되는 문제

흑산우의 이미지

ACL권한 관련 하여 질문들입니다.

mount하지 않은 디렉토리에서는 ACL이 잘 적용됩니다. 그러나 mount를 하고 나면 ACL이 적용되지 않는 문제가 있습니다.

< 시스템 정보 >
CentOS 7

Linux svr10.test.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

file system : xfs

umask : 022

$> id user1
uid=1004(user1) gid=1004(ugroup) groups=1004(ugroup),1007(dbman)

$> id user2
uid=1006(user2) gid=1004(ugroup) groups=1004(ugroup),1007(dbman)

다음과 같이 테스트 하였습니다.

- 제 환경상 umask값을 022에서 변경할수는 없습니다.

** mount하지 않은 일반 디렉토리에 ACL적용. 잘 동작합니다.

root@svr10 #> mkdir /data/testdir
root@svr10 #> cd /data
root@svr10 #> setfacl -m d:g:dbman:rwx testdir
root@svr10 #> getfacl testdir
# file: testdir
# owner: dbman
# group: dbman
user::rwx
group::rwx
other::r-x
default:user::rwx
default:group::r-x
default:group:dbman:rwx
default:mask::rwx
default:other::r-x

user1@svr10 $> cd /data/testdir; touch testfile1; ls -al
drwxrwxr-x+ 2 dbman  dbman  22 Oct 30 08:58 .
drwxrwxrwx  4 root   root   33 Oct 30 07:37 ..
-rw-rw-r--+ 1 user1  ugroup 0 Oct 30 08:58 testfile1

user2@svr10 $> cd /data/testdir; touch testfile2; ls -al
drwxrwxr-x+ 2 dbman  dbman  40 Oct 30 09:00 .
drwxrwxrwx  4 root   root   33 Oct 30 07:37 ..
-rw-rw-r--+ 1 user1  ugroup 0 Oct 30 08:58 testfile1
-rw-rw-r--+ 1 user2  ugroup 0 Oct 30 09:00 testfile2

위에 보시는 바와 같이 "+"기호도 잘 보이고 파일을 생성 했을 때 group 권한이 rw-로 잘 생성 됩니다.

** 디렉토리를 mount한 경우
디렉토리를 mount하면 "+"기호도 보이지 않고 파일을 생성했을때 r--로 생성됩니다.
테스트는 다음과 같이 했습니다.

root@svr10 #> mkdir /mnt/testdir
 
root@svr10 #> mount -t nfs4 -o acl svr10:/data/testdir /mnt/testdir
 
root@svr10 #> mount | grep testdir
svr10:/data/testdir on /mnt/testdir type nfs4 (rw,relatime,vers=4.1,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.10.10.10,local_lock=none,addr=10.10.10.10)
 
root@svr10 #> cd /mnt

root@svr10 #> getfacl testdir
 
# file: testdir
# owner: dbman
# group: dbman
user::rwx
group::rwx
other::r-x

root@svr10 #> nfs4_getfacl testdir
 
# file: testdir
A::OWNER@:rwaDxtTcCy
A::GROUP@:rwaDxtcy
A::EVERYONE@:rxtcy
A:fdi:OWNER@:rwaDxtTcCy
A:fdi:GROUP@:rxtcy
A:fdig:1007:rwaDxtcy   ---> 1007 is dbman group id number. I don't know why display like this.
A:fdi:EVERYONE@:rxtcy

user1@svr10 $> cd /mnt/testdir; touch testfile3; ls -al
drwxrwxr-x  2 dbman  dbman  57 Oct 30 09:23 .
drwxr-xr-x. 3 root   root   21 Oct 30 08:17 ..
-rw-rw-r--  1 user1  ugroup  0 Oct 30 08:58 testfile1
-rw-rw-r--  1 user2  ugroup  0 Oct 30 09:00 testfile2
-rw-r--r--  1 user1  ugroup  0 Oct 30 09:23 testfile3

위에서 ls결과를 보면 "+" 기호도 없고 생성된 파일의 권한도 ACL을 따르지 않습니다.
mount시 ACL을 적용하려면 특별히 다른 설정이 필요한지...

이에 대한 이유를 알고 계시는 고수분의 조언 부탁드립니다.

김정균의 이미지

client 에서는 mount 할 때 -o acl 옵션만 포함되면 더이상 할 수 있는 건 없습니다. acl 옵션이 주어 졌음에도 불구하고 ACL 이 되지 않는다면, 서버 설정을 확인해 봐야 할 것 같은데요.

linux 의 기본 nfsd 를 사용한다면 서버측면에서는 /etc/exports 에 no_acl 이 설정되어 있지 않으면 기본으로 acl 은 제공 된다고 보면 될 것 같습니다. NAS applience 의 경우에는 해당 nfsd 설정을 알아서 확인 하셔야 할 듯..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.