From: Andreas Gruenbacher Subject: Re: [PATCH v8 00/41] Richacls Date: Wed, 7 Oct 2015 15:38:48 +0200 Message-ID: References: <1443391772-10171-1-git-send-email-agruenba@redhat.com> <20151004062313.GA20212@infradead.org> <5612C85C.2060407@gmail.com> <20151006094935.GA14144@infradead.org> <20151007075053.GA8660@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Andreas Dilger , Austin S Hemmelgarn , Alexander Viro , "Theodore Ts'o" , "J. Bruce Fields" , Jeff Layton , Trond Myklebust , Anna Schumaker , linux-ext4 , LKML , linux-fsdevel , linux-nfs@vger.kernel.org, Linux API To: Christoph Hellwig Return-path: Received: from mail-lb0-f177.google.com ([209.85.217.177]:32874 "EHLO mail-lb0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752551AbbJGNiu (ORCPT ); Wed, 7 Oct 2015 09:38:50 -0400 Received: by lbos8 with SMTP id s8so11414948lbo.0 for ; Wed, 07 Oct 2015 06:38:49 -0700 (PDT) In-Reply-To: <20151007075053.GA8660@infradead.org> Sender: linux-ext4-owner@vger.kernel.org List-ID: On Wed, Oct 7, 2015 at 9:50 AM, Christoph Hellwig wrote: > On Tue, Oct 06, 2015 at 02:26:09PM -0600, Andreas Dilger wrote: >> And any disk filesystems that have their own non-POSIX ACLs, such as HFS, NTFS, ZFS would presumably also need to map the in-kernel Richacl format to their on-disk format. > > No, we did this mistake with Posix ACLs, and we're not going to repeat > it here. Filesystems with their own slightly different ACLs must not > reuse the interface. Well, things may not be quite as clearly delineated. We currently have code in nfsd for mapping between NFSv4 ACLs on the wire and POSIX ACLs on local file systems. This mapping is problematic because of the semantic differences between NFSv4 ACLs and POSIX ACLs (different sets of permissions, access and default acl vs. inheritance flags, different permission check algorithm). I wish we could have avoided that. Richacls are designed to support NFSv4 ACLs on top of POSIX systems. This means that they should obviously be supported by the NFSv4 server and client (see the patches) and by the common local filesystems. ACLs on NTFS and ZFS mostly fit into the same model. The big remaining difference there is how users and groups are identified: NTFS used SIDs (https://en.wikipedia.org/wiki/Security_Identifier); ZFS could be said to use a hybrid UID / GID / SID model. Exposing those ACLs as richacls would make sense if we can find a clean way of handling this aspect. HFS ACLs have sufficiently different semantics (the user.group tuples) that representing them as richacls wouldn't make sense. Thanks, Andreas