[ 
https://issues.apache.org/jira/browse/HDFS-6962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15314624#comment-15314624
 ] 

John Zhuge edited comment on HDFS-6962 at 6/11/16 6:37 AM:
-----------------------------------------------------------

Hi [~cnauroth],

In order to maintain backwards compatibility in Hadoop 2.x, could we add a new 
NameNode flag {{dfs.namenode.posix.acl.inheritance.enabled}}, default false in 
Hadoop 2.x, default true in Hadoop 3?

Changes to message {{CreateRequestProto}} and {{MkdirsRequestProto}}
* Add optional field {{FsPermissionProto unmasked}} to store unmasked mode 
parameter
* Preserve the existing meaning of field {{FsPermissionProto masked}}: mode + 
umask.
* Please note this approach is slightly different from what you suggested 
above. I am ok either way but find this a little less possibility for 
misunderstanding.

Wrap around {{AclStorage#copyINodeDefaultAcl}}:
{code:java}
    // TODO: How to query NameNode config?
    boolean isPosixAclInheritanceEnabled = true;
    FsPermission masked = child.getMaskedPermission();
    FsPermission unmasked = child.getUnmaskedPermission();

    if (isPosixAclInheritanceEnabled && unmasked != null) {
      //
      // HDFS-6962: POSIX ACL inheritance
      //
      // Set permission to unmasked
      child.setPermission(unmasked);
      if (!copyINodeDefaultAclInternal(child)) {
        // No default ACL in parent dir
        // Set permission to masked
        child.setPermission(masked);
      }
    } else {
      //
      // Old behavior before HDFS-6962
      //
      assert child.getFsPermission().equals(masked);
      copyINodeDefaultAclInternal(child);
    }
{code}
Here {{INode#getUnmaskedPermission}} returns the unmasked mode sent by 
DFSClient; {{INode#getMaskedPermission}} returns the masked mode.


was (Author: jzhuge):
Hi [~cnauroth],

In order to maintain backwards compatibility in Hadoop 2.x, could we add a new 
NameNode flag {{dfs.namenode.posix.acl.inheritance.enabled}}, default false in 
Hadoop 2.x, default true in Hadoop 3?

Changes to message {{CreateRequestProto}} and {{MkdirsRequestProto}}
* Add optional field {{FsPermissionProto unmasked}} to store unmasked mode 
parameter
* Preserve the existing meaning of field {{FsPermissionProto masked}}: mode + 
umask.
* Please note this approach is slightly different from what you suggested 
above. I am ok either way but find this a little less possibility for 
misunderstanding.

Wrap around {{AclStorage#copyINodeDefaultAcl}}:
{code:java}
    if (child.isPosixAclInheritanceEnabled() == true) {
      //
      // HDFS-6962. POSIX ACL inheritance.
      //
      // Set permission to unmasked if necessary
      if (!child.getFsPermission().equals(child.getUnmaskedMode())) {
        child.setPermission(child.getUnmaskedMode());
      }
      if (copyINodeDefaultAclInternal(child) == false) {
        // No default ACL in parent dir
        // Set permission to masked
        child.setPermission(child.getMaskedMode());
      }
    } else {
      //
      // Old behavior before HDFS-6962.
      //
      // Set permission to masked if necessary
      if (!child.getFsPermission().equals(child.getMaskedMode())) {
        child.setPermission(child.getMaskedMode());
      }
     copyINodeDefaultAclInternal(child);
    }
{code}
Here {{INode#getUnmaskedMode}} returns the unmasked mode sent by DFSClient; 
{{INode#getMaskedMode}} returns the masked mode; 
{{INode#isPosixAclInheritanceEnabled}} returns true when the create/mkdir 
request comes from a client with HDFS-6962 fix and 
{{dfs.namenode.posix.acl.inheritance.enabled}} is true.

> ACLs inheritance conflict with umaskmode
> ----------------------------------------
>
>                 Key: HDFS-6962
>                 URL: https://issues.apache.org/jira/browse/HDFS-6962
>             Project: Hadoop HDFS
>          Issue Type: Bug
>          Components: security
>    Affects Versions: 2.4.1
>         Environment: CentOS release 6.5 (Final)
>            Reporter: LINTE
>            Assignee: John Zhuge
>            Priority: Critical
>              Labels: hadoop, security
>         Attachments: HDFS-6962.001.patch, HDFS-6962.002.patch, 
> HDFS-6962.1.patch
>
>
> In hdfs-site.xml 
> <property>
>     <name>dfs.umaskmode</name>
>     <value>027</value>
> </property>
> 1/ Create a directory as superuser
> bash# hdfs dfs -mkdir  /tmp/ACLS
> 2/ set default ACLs on this directory rwx access for group readwrite and user 
> toto
> bash# hdfs dfs -setfacl -m default:group:readwrite:rwx /tmp/ACLS
> bash# hdfs dfs -setfacl -m default:user:toto:rwx /tmp/ACLS
> 3/ check ACLs /tmp/ACLS/
> bash# hdfs dfs -getfacl /tmp/ACLS/
> # file: /tmp/ACLS
> # owner: hdfs
> # group: hadoop
> user::rwx
> group::r-x
> other::---
> default:user::rwx
> default:user:toto:rwx
> default:group::r-x
> default:group:readwrite:rwx
> default:mask::rwx
> default:other::---
> user::rwx | group::r-x | other::--- matches with the umaskmode defined in 
> hdfs-site.xml, everything ok !
> default:group:readwrite:rwx allow readwrite group with rwx access for 
> inhéritance.
> default:user:toto:rwx allow toto user with rwx access for inhéritance.
> default:mask::rwx inhéritance mask is rwx, so no mask
> 4/ Create a subdir to test inheritance of ACL
> bash# hdfs dfs -mkdir  /tmp/ACLS/hdfs
> 5/ check ACLs /tmp/ACLS/hdfs
> bash# hdfs dfs -getfacl /tmp/ACLS/hdfs
> # file: /tmp/ACLS/hdfs
> # owner: hdfs
> # group: hadoop
> user::rwx
> user:toto:rwx   #effective:r-x
> group::r-x
> group:readwrite:rwx     #effective:r-x
> mask::r-x
> other::---
> default:user::rwx
> default:user:toto:rwx
> default:group::r-x
> default:group:readwrite:rwx
> default:mask::rwx
> default:other::---
> Here we can see that the readwrite group has rwx ACL bu only r-x is effective 
> because the mask is r-x (mask::r-x) in spite of default mask for inheritance 
> is set to default:mask::rwx on /tmp/ACLS/
> 6/ Modifiy hdfs-site.xml et restart namenode
> <property>
>     <name>dfs.umaskmode</name>
>     <value>010</value>
> </property>
> 7/ Create a subdir to test inheritance of ACL with new parameter umaskmode
> bash# hdfs dfs -mkdir  /tmp/ACLS/hdfs2
> 8/ Check ACL on /tmp/ACLS/hdfs2
> bash# hdfs dfs -getfacl /tmp/ACLS/hdfs2
> # file: /tmp/ACLS/hdfs2
> # owner: hdfs
> # group: hadoop
> user::rwx
> user:toto:rwx   #effective:rw-
> group::r-x      #effective:r--
> group:readwrite:rwx     #effective:rw-
> mask::rw-
> other::---
> default:user::rwx
> default:user:toto:rwx
> default:group::r-x
> default:group:readwrite:rwx
> default:mask::rwx
> default:other::---
> So HDFS masks the ACL value (user, group and other  -- exepted the POSIX 
> owner -- ) with the group mask of dfs.umaskmode properties when creating 
> directory with inherited ACL.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to