From: Chuck Lever <chuck.lever@oracle.com>
To: Jeff Layton <jlayton@kernel.org>, Neil Brown <neilb@suse.de>,
Olga Kornievskaia <okorniev@redhat.com>,
Dai Ngo <Dai.Ngo@oracle.com>, Tom Talpey <tom@talpey.com>,
Trond Myklebust <trondmy@kernel.org>,
Anna Schumaker <anna@kernel.org>
Cc: Sargun Dillon <sargun@sargun.me>,
linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 04/12] nfsd: add a tracepoint for nfsd_setattr
Date: Wed, 9 Apr 2025 11:03:00 -0400 [thread overview]
Message-ID: <df6ba077-5f29-4bbb-a011-e9570aa2c923@oracle.com> (raw)
In-Reply-To: <20250409-nfsd-tracepoints-v2-4-cf4e084fdd9c@kernel.org>
On 4/9/25 10:32 AM, Jeff Layton wrote:
> Turn Sargun's internal kprobe based implementation of this into a normal
> static tracepoint. Also, remove the dprintk's that got added recently
> with the fix for zero-length ACLs.
>
> Cc: Sargun Dillon <sargun@sargun.me>
> Signed-off-by: Jeff Layton <jlayton@kernel.org>
> ---
> fs/nfsd/trace.h | 35 +++++++++++++++++++++++++++++++++++
> fs/nfsd/vfs.c | 5 ++---
> include/trace/misc/fs.h | 21 +++++++++++++++++++++
> 3 files changed, 58 insertions(+), 3 deletions(-)
>
> diff --git a/fs/nfsd/trace.h b/fs/nfsd/trace.h
> index 0d49fc064f7273f32c93732a993fd77bc0783f5d..c496fed58e2eed15458f35a158fbfef39a972c55 100644
> --- a/fs/nfsd/trace.h
> +++ b/fs/nfsd/trace.h
> @@ -11,6 +11,7 @@
> #include <linux/tracepoint.h>
> #include <linux/sunrpc/clnt.h>
> #include <linux/sunrpc/xprt.h>
> +#include <trace/misc/fs.h>
> #include <trace/misc/nfs.h>
> #include <trace/misc/sunrpc.h>
>
> @@ -2337,6 +2338,40 @@ DEFINE_EVENT(nfsd_copy_async_done_class, \
> DEFINE_COPY_ASYNC_DONE_EVENT(done);
> DEFINE_COPY_ASYNC_DONE_EVENT(cancel);
>
> +TRACE_EVENT(nfsd_setattr,
> + TP_PROTO(const struct svc_rqst *rqstp, const struct svc_fh *fhp,
> + const struct iattr *iap, const struct timespec64 *guardtime),
> + TP_ARGS(rqstp, fhp, iap, guardtime),
> + TP_STRUCT__entry(
> + SVC_RQST_ENDPOINT_FIELDS(rqstp)
> + __field(u32, fh_hash)
> + __field(s64, gtime_tv_sec)
> + __field(u32, gtime_tv_nsec)
> + __field(unsigned int, ia_valid)
> + __field(loff_t, ia_size)
> + __field(uid_t, ia_uid)
> + __field(gid_t, ia_gid)
> + __field(umode_t, ia_mode)
> + ),
> + TP_fast_assign(__entry->xid = be32_to_cpu(rqstp->rq_xid);
> + SVC_RQST_ENDPOINT_ASSIGNMENTS(rqstp);
> + __entry->fh_hash = knfsd_fh_hash(&fhp->fh_handle);
> + __entry->gtime_tv_sec = guardtime ? guardtime->tv_sec : 0;
> + __entry->gtime_tv_nsec = guardtime ? guardtime->tv_nsec : 0;
> + __entry->ia_valid = iap->ia_valid;
> + __entry->ia_size = iap->ia_size;
> + __entry->ia_uid = __kuid_val(iap->ia_uid);
> + __entry->ia_gid = __kgid_val(iap->ia_gid);
> + __entry->ia_mode = iap->ia_mode;
> + ),
> + TP_printk(
> + "xid=0x%08x fh_hash=0x%08x ia_valid=%s ia_size=%llu ia_mode=0%o ia_uid=%u ia_gid=%u guard_time=%lld.%u",
> + __entry->xid, __entry->fh_hash, show_ia_valid_flags(__entry->ia_valid),
> + __entry->ia_size, __entry->ia_mode, __entry->ia_uid, __entry->ia_gid,
> + __entry->gtime_tv_sec, __entry->gtime_tv_nsec
> + )
> +)
> +
> #endif /* _NFSD_TRACE_H */
>
> #undef TRACE_INCLUDE_PATH
> diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> index d1156a18a79579bf427fe5809dc93d06e241201e..77ae22abc1a21ec587cf089b2a5f750464b5e985 100644
> --- a/fs/nfsd/vfs.c
> +++ b/fs/nfsd/vfs.c
> @@ -501,7 +501,8 @@ nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp,
> bool size_change = (iap->ia_valid & ATTR_SIZE);
> int retries;
>
> -dprintk("nfsd_setattr pacl=%p valid=0x%x\n", attr->na_pacl, iap->ia_valid);
Nit:
These unindented dprintk call sites were introduced by Rick's POSIX
ACL patch series, which is experimental. He's promised to remove them
before he sends a final version of that series.
Your patch can leave them in place, as they will be gone soon by other
means.
> + trace_nfsd_setattr(rqstp, fhp, iap, guardtime);
> +
> if (iap->ia_valid & ATTR_SIZE) {
> accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
> ftype = S_IFREG;
> @@ -597,7 +598,6 @@ dprintk("nfsd_setattr pacl=%p valid=0x%x\n", attr->na_pacl, iap->ia_valid);
> NULL);
> }
> if (IS_ENABLED(CONFIG_FS_POSIX_ACL) && attr->na_pacl) {
> -dprintk("at set_posix_acl\n");
> /*
> * For any file system that is not ACL_SCOPE_FILE_OBJECT,
> * a_count == 0 MUST reply nfserr_inval.
> @@ -612,7 +612,6 @@ dprintk("at set_posix_acl\n");
> attr->na_pacl);
> else
> attr->na_paclerr = -EINVAL;
> -dprintk("set_posix_acl=%d\n", attr->na_paclerr);
> }
> out_fill_attrs:
> /*
> diff --git a/include/trace/misc/fs.h b/include/trace/misc/fs.h
> index 738b97f22f3651f2370830037a8f4bfdf9a42ad4..0406ebe2a80a499dfcadb7e63db4d9e4a84d4d64 100644
> --- a/include/trace/misc/fs.h
> +++ b/include/trace/misc/fs.h
> @@ -120,3 +120,24 @@
> { LOOKUP_BENEATH, "BENEATH" }, \
> { LOOKUP_IN_ROOT, "IN_ROOT" }, \
> { LOOKUP_CACHED, "CACHED" })
> +
> +#define show_ia_valid_flags(flags) \
> + __print_flags(flags, "|", \
> + { ATTR_MODE, "MODE" }, \
> + { ATTR_UID, "UID" }, \
> + { ATTR_GID, "GID" }, \
> + { ATTR_SIZE, "SIZE" }, \
> + { ATTR_ATIME, "ATIME" }, \
> + { ATTR_MTIME, "MTIME" }, \
> + { ATTR_CTIME, "CTIME" }, \
> + { ATTR_ATIME_SET, "ATIME_SET" }, \
> + { ATTR_MTIME_SET, "MTIME_SET" }, \
> + { ATTR_FORCE, "FORCE" }, \
> + { ATTR_KILL_SUID, "KILL_SUID" }, \
> + { ATTR_KILL_SGID, "KILL_SGID" }, \
> + { ATTR_FILE, "FILE" }, \
> + { ATTR_KILL_PRIV, "KILL_PRIV" }, \
> + { ATTR_OPEN, "OPEN" }, \
> + { ATTR_TIMES_SET, "TIMES_SET" }, \
> + { ATTR_TOUCH, "TOUCH"}, \
> + { ATTR_DELEG, "DELEG"})
>
--
Chuck Lever
next prev parent reply other threads:[~2025-04-09 15:03 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-09 14:32 [PATCH v2 00/12] nfsd: observability improvements Jeff Layton
2025-04-09 14:32 ` [PATCH v2 01/12] nfsd: add commit start/done tracepoints around nfsd_commit() Jeff Layton
2025-04-09 14:32 ` [PATCH v2 02/12] sunrpc: add info about xprt queue times to svc_xprt_dequeue tracepoint Jeff Layton
2025-04-09 15:00 ` Chuck Lever
2025-04-09 15:26 ` Jeff Layton
2025-04-11 13:10 ` Jeff Layton
2025-04-11 13:24 ` Chuck Lever
2025-04-11 13:40 ` Jeff Layton
2025-04-09 14:32 ` [PATCH v2 03/12] sunrpc: move the SVC_RQST_EVENT_*() macros to common header Jeff Layton
2025-04-09 14:32 ` [PATCH v2 04/12] nfsd: add a tracepoint for nfsd_setattr Jeff Layton
2025-04-09 15:03 ` Chuck Lever [this message]
2025-04-09 14:32 ` [PATCH v2 05/12] nfsd: add a tracepoint to nfsd_lookup_dentry Jeff Layton
2025-04-09 14:32 ` [PATCH v2 06/12] nfsd: add tracepoints around nfsd_create events Jeff Layton
2025-04-09 15:09 ` Chuck Lever
2025-04-09 15:36 ` Jeff Layton
2025-04-09 15:38 ` Chuck Lever
2025-04-09 15:40 ` Chuck Lever
2025-04-09 16:50 ` Jeff Layton
2025-04-09 16:59 ` Chuck Lever
2025-04-09 14:32 ` [PATCH v2 07/12] nfsd: add tracepoints for symlink events Jeff Layton
2025-04-09 15:15 ` Chuck Lever
2025-04-09 14:32 ` [PATCH v2 08/12] nfsd: add tracepoints for hardlink events Jeff Layton
2025-04-09 14:32 ` [PATCH v2 09/12] nfsd: add tracepoints for unlink events Jeff Layton
2025-04-09 14:32 ` [PATCH v2 10/12] nfsd: add tracepoints to rename events Jeff Layton
2025-04-09 14:32 ` [PATCH v2 11/12] nfsd: add tracepoints for readdir events Jeff Layton
2025-04-09 14:32 ` [PATCH v2 12/12] nfsd: add tracepoint for getattr events Jeff Layton
2025-04-11 14:52 ` (subset) [PATCH v2 00/12] nfsd: observability improvements cel
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=df6ba077-5f29-4bbb-a011-e9570aa2c923@oracle.com \
--to=chuck.lever@oracle.com \
--cc=Dai.Ngo@oracle.com \
--cc=anna@kernel.org \
--cc=jlayton@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neilb@suse.de \
--cc=okorniev@redhat.com \
--cc=sargun@sargun.me \
--cc=tom@talpey.com \
--cc=trondmy@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