From: Chuck Lever <cel@kernel.org>
To: Calum Mackay <calum.mackay@oracle.com>
Cc: linux-nfs@vger.kernel.org, Chuck Lever <chuck.lever@oracle.com>
Subject: Re: [RFC PATCH 05/10] Add make_test_acl() helper to nfs4acl modules
Date: Sun, 23 Nov 2025 11:04:08 -0500 [thread overview]
Message-ID: <aSMweIhPcB9lSGv4@morisot.1015granger.net> (raw)
In-Reply-To: <20251123155623.514129-6-cel@kernel.org>
On Sun, Nov 23, 2025 at 10:56:13AM -0500, Chuck Lever wrote:
> From: Chuck Lever <chuck.lever@oracle.com>
Yes, clearly these need a little more clean-up: This patch
and a few following ones need real commit messages.
> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
> ---
> nfs4.0/nfs4acl.py | 22 ++++++++++++++++++++++
> nfs4.1/nfs4acl.py | 23 +++++++++++++++++++++++
> 2 files changed, 45 insertions(+)
>
> diff --git a/nfs4.0/nfs4acl.py b/nfs4.0/nfs4acl.py
> index ceb9ea6a198e..329be01f9fd6 100644
> --- a/nfs4.0/nfs4acl.py
> +++ b/nfs4.0/nfs4acl.py
> @@ -78,6 +78,28 @@ def mode2acl(mode, dir=False):
> nfsace4(DENIED, 0, negate(other), "EVERYONE@")
> ]
>
> +def make_test_acl():
> + """Create a test ACL that maps cleanly to POSIX ACLs
> +
> + Uses OWNER@, GROUP@, and EVERYONE@ to match POSIX user/group/other
> + structure, which helps servers that map NFSv4 ACLs to POSIX ACLs.
> +
> + Includes both WRITE_DATA and APPEND_DATA for write permission, since
> + Linux NFS server's conservative NFSv4-to-POSIX mapping requires both
> + to grant POSIX write permission.
> + """
> + return [
> + nfsace4(ACE4_ACCESS_ALLOWED_ACE_TYPE, 0,
> + ACE4_READ_DATA | ACE4_WRITE_DATA | ACE4_APPEND_DATA | ACE4_READ_ACL,
> + b"OWNER@"),
> + nfsace4(ACE4_ACCESS_ALLOWED_ACE_TYPE, 0,
> + ACE4_READ_DATA,
> + b"GROUP@"),
> + nfsace4(ACE4_ACCESS_ALLOWED_ACE_TYPE, 0,
> + ACE4_READ_DATA,
> + b"EVERYONE@")
> + ]
> +
> def acl2mode(acl):
> """Translate an acl into a 3-digit octal mode"""
> names = ["OWNER@", "GROUP@", "EVERYONE@"]
> diff --git a/nfs4.1/nfs4acl.py b/nfs4.1/nfs4acl.py
> index 44f01de0d513..f4d4993b143b 100644
> --- a/nfs4.1/nfs4acl.py
> +++ b/nfs4.1/nfs4acl.py
> @@ -3,6 +3,29 @@
> #
>
> from xdrdef.nfs4_const import *
> +from xdrdef.nfs4_type import nfsace4
> +
> +def make_test_acl():
> + """Create a test ACL that maps cleanly to POSIX ACLs
> +
> + Uses OWNER@, GROUP@, and EVERYONE@ to match POSIX user/group/other
> + structure, which helps servers that map NFSv4 ACLs to POSIX ACLs.
> +
> + Includes both WRITE_DATA and APPEND_DATA for write permission, since
> + Linux NFS server's conservative NFSv4-to-POSIX mapping requires both
> + to grant POSIX write permission.
> + """
> + return [
> + nfsace4(ACE4_ACCESS_ALLOWED_ACE_TYPE, 0,
> + ACE4_READ_DATA | ACE4_WRITE_DATA | ACE4_APPEND_DATA | ACE4_READ_ACL,
> + b"OWNER@"),
> + nfsace4(ACE4_ACCESS_ALLOWED_ACE_TYPE, 0,
> + ACE4_READ_DATA,
> + b"GROUP@"),
> + nfsace4(ACE4_ACCESS_ALLOWED_ACE_TYPE, 0,
> + ACE4_READ_DATA,
> + b"EVERYONE@")
> + ]
>
> def acl2mode_rfc8881(acl):
> """
> --
> 2.51.1
>
>
--
Chuck Lever
next prev parent reply other threads:[~2025-11-23 16:04 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-23 15:56 [RFC PATCH 00/10] pynfs tests for setting ACL+MODE Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 01/10] Add helper to report unsupported protocol features Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 02/10] Add helper to format ACE access masks Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 03/10] Add helper to format attribute bitmaps Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 04/10] Add a helper to compute POSIX mode bits from NFSv4 ACLs Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 05/10] Add make_test_acl() helper to nfs4acl modules Chuck Lever
2025-11-23 16:04 ` Chuck Lever [this message]
2025-11-23 15:56 ` [RFC PATCH 06/10] Add access_mask_to_str() helper to nfs4.0/nfs4acl.py Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 07/10] Add verify_acl() helper to nfs4acl modules Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 08/10] Add verify_mode_and_acl() " Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 09/10] Add tests for SETATTR with MODE and ACL Chuck Lever
2025-11-23 15:56 ` [RFC PATCH 10/10] Add tests for OPEN(create) with ACLs Chuck Lever
2025-11-23 17:20 ` [RFC PATCH 00/10] pynfs tests for setting ACL+MODE Calum Mackay
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aSMweIhPcB9lSGv4@morisot.1015granger.net \
--to=cel@kernel.org \
--cc=calum.mackay@oracle.com \
--cc=chuck.lever@oracle.com \
--cc=linux-nfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox