License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2014-08-17 00:02:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Christoph Hellwig.
|
|
|
|
*/
|
|
|
|
#undef TRACE_SYSTEM
|
|
|
|
#define TRACE_SYSTEM nfsd
|
|
|
|
|
|
|
|
#if !defined(_NFSD_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
|
|
#define _NFSD_TRACE_H
|
|
|
|
|
|
|
|
#include <linux/tracepoint.h>
|
2020-03-01 23:21:40 +00:00
|
|
|
#include "export.h"
|
2015-11-17 11:52:23 +00:00
|
|
|
#include "nfsfh.h"
|
|
|
|
|
2020-10-19 17:00:29 +00:00
|
|
|
#define NFSD_TRACE_PROC_ARG_FIELDS \
|
|
|
|
__field(unsigned int, netns_ino) \
|
|
|
|
__field(u32, xid) \
|
|
|
|
__array(unsigned char, server, sizeof(struct sockaddr_in6)) \
|
|
|
|
__array(unsigned char, client, sizeof(struct sockaddr_in6))
|
|
|
|
|
|
|
|
#define NFSD_TRACE_PROC_ARG_ASSIGNMENTS \
|
|
|
|
do { \
|
|
|
|
__entry->netns_ino = SVC_NET(rqstp)->ns.inum; \
|
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid); \
|
|
|
|
memcpy(__entry->server, &rqstp->rq_xprt->xpt_local, \
|
|
|
|
rqstp->rq_xprt->xpt_locallen); \
|
|
|
|
memcpy(__entry->client, &rqstp->rq_xprt->xpt_remote, \
|
|
|
|
rqstp->rq_xprt->xpt_remotelen); \
|
|
|
|
} while (0);
|
|
|
|
|
2020-11-21 16:36:42 +00:00
|
|
|
#define NFSD_TRACE_PROC_RES_FIELDS \
|
|
|
|
__field(unsigned int, netns_ino) \
|
|
|
|
__field(u32, xid) \
|
|
|
|
__field(unsigned long, status) \
|
|
|
|
__array(unsigned char, server, sizeof(struct sockaddr_in6)) \
|
|
|
|
__array(unsigned char, client, sizeof(struct sockaddr_in6))
|
|
|
|
|
|
|
|
#define NFSD_TRACE_PROC_RES_ASSIGNMENTS(error) \
|
|
|
|
do { \
|
|
|
|
__entry->netns_ino = SVC_NET(rqstp)->ns.inum; \
|
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid); \
|
|
|
|
__entry->status = be32_to_cpu(error); \
|
|
|
|
memcpy(__entry->server, &rqstp->rq_xprt->xpt_local, \
|
|
|
|
rqstp->rq_xprt->xpt_locallen); \
|
|
|
|
memcpy(__entry->client, &rqstp->rq_xprt->xpt_remote, \
|
|
|
|
rqstp->rq_xprt->xpt_remotelen); \
|
|
|
|
} while (0);
|
|
|
|
|
2020-10-19 17:00:29 +00:00
|
|
|
TRACE_EVENT(nfsd_garbage_args_err,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct svc_rqst *rqstp
|
|
|
|
),
|
|
|
|
TP_ARGS(rqstp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
NFSD_TRACE_PROC_ARG_FIELDS
|
|
|
|
|
|
|
|
__field(u32, vers)
|
|
|
|
__field(u32, proc)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
NFSD_TRACE_PROC_ARG_ASSIGNMENTS
|
|
|
|
|
|
|
|
__entry->vers = rqstp->rq_vers;
|
|
|
|
__entry->proc = rqstp->rq_proc;
|
|
|
|
),
|
|
|
|
TP_printk("xid=0x%08x vers=%u proc=%u",
|
|
|
|
__entry->xid, __entry->vers, __entry->proc
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_cant_encode_err,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct svc_rqst *rqstp
|
|
|
|
),
|
|
|
|
TP_ARGS(rqstp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
NFSD_TRACE_PROC_ARG_FIELDS
|
|
|
|
|
|
|
|
__field(u32, vers)
|
|
|
|
__field(u32, proc)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
NFSD_TRACE_PROC_ARG_ASSIGNMENTS
|
|
|
|
|
|
|
|
__entry->vers = rqstp->rq_vers;
|
|
|
|
__entry->proc = rqstp->rq_proc;
|
|
|
|
),
|
|
|
|
TP_printk("xid=0x%08x vers=%u proc=%u",
|
|
|
|
__entry->xid, __entry->vers, __entry->proc
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-08-19 16:56:40 +00:00
|
|
|
#define show_nfsd_may_flags(x) \
|
|
|
|
__print_flags(x, "|", \
|
|
|
|
{ NFSD_MAY_EXEC, "EXEC" }, \
|
|
|
|
{ NFSD_MAY_WRITE, "WRITE" }, \
|
|
|
|
{ NFSD_MAY_READ, "READ" }, \
|
|
|
|
{ NFSD_MAY_SATTR, "SATTR" }, \
|
|
|
|
{ NFSD_MAY_TRUNC, "TRUNC" }, \
|
|
|
|
{ NFSD_MAY_LOCK, "LOCK" }, \
|
|
|
|
{ NFSD_MAY_OWNER_OVERRIDE, "OWNER_OVERRIDE" }, \
|
|
|
|
{ NFSD_MAY_LOCAL_ACCESS, "LOCAL_ACCESS" }, \
|
|
|
|
{ NFSD_MAY_BYPASS_GSS_ON_ROOT, "BYPASS_GSS_ON_ROOT" }, \
|
|
|
|
{ NFSD_MAY_NOT_BREAK_LEASE, "NOT_BREAK_LEASE" }, \
|
|
|
|
{ NFSD_MAY_BYPASS_GSS, "BYPASS_GSS" }, \
|
|
|
|
{ NFSD_MAY_READ_IF_EXEC, "READ_IF_EXEC" }, \
|
|
|
|
{ NFSD_MAY_64BIT_COOKIE, "64BIT_COOKIE" })
|
|
|
|
|
2018-03-27 14:53:54 +00:00
|
|
|
TRACE_EVENT(nfsd_compound,
|
|
|
|
TP_PROTO(const struct svc_rqst *rqst,
|
|
|
|
u32 args_opcnt),
|
|
|
|
TP_ARGS(rqst, args_opcnt),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, xid)
|
|
|
|
__field(u32, args_opcnt)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->xid = be32_to_cpu(rqst->rq_xid);
|
|
|
|
__entry->args_opcnt = args_opcnt;
|
|
|
|
),
|
|
|
|
TP_printk("xid=0x%08x opcnt=%u",
|
|
|
|
__entry->xid, __entry->args_opcnt)
|
|
|
|
)
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_compound_status,
|
|
|
|
TP_PROTO(u32 args_opcnt,
|
|
|
|
u32 resp_opcnt,
|
|
|
|
__be32 status,
|
|
|
|
const char *name),
|
|
|
|
TP_ARGS(args_opcnt, resp_opcnt, status, name),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, args_opcnt)
|
|
|
|
__field(u32, resp_opcnt)
|
|
|
|
__field(int, status)
|
|
|
|
__string(name, name)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->args_opcnt = args_opcnt;
|
|
|
|
__entry->resp_opcnt = resp_opcnt;
|
|
|
|
__entry->status = be32_to_cpu(status);
|
|
|
|
__assign_str(name, name);
|
|
|
|
),
|
|
|
|
TP_printk("op=%u/%u %s status=%d",
|
|
|
|
__entry->resp_opcnt, __entry->args_opcnt,
|
|
|
|
__get_str(name), __entry->status)
|
|
|
|
)
|
|
|
|
|
2020-11-21 16:36:42 +00:00
|
|
|
TRACE_EVENT(nfsd_compound_decode_err,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct svc_rqst *rqstp,
|
|
|
|
u32 args_opcnt,
|
|
|
|
u32 resp_opcnt,
|
|
|
|
u32 opnum,
|
|
|
|
__be32 status
|
|
|
|
),
|
|
|
|
TP_ARGS(rqstp, args_opcnt, resp_opcnt, opnum, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
NFSD_TRACE_PROC_RES_FIELDS
|
|
|
|
|
|
|
|
__field(u32, args_opcnt)
|
|
|
|
__field(u32, resp_opcnt)
|
|
|
|
__field(u32, opnum)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
NFSD_TRACE_PROC_RES_ASSIGNMENTS(status)
|
|
|
|
|
|
|
|
__entry->args_opcnt = args_opcnt;
|
|
|
|
__entry->resp_opcnt = resp_opcnt;
|
|
|
|
__entry->opnum = opnum;
|
|
|
|
),
|
|
|
|
TP_printk("op=%u/%u opnum=%u status=%lu",
|
|
|
|
__entry->resp_opcnt, __entry->args_opcnt,
|
|
|
|
__entry->opnum, __entry->status)
|
|
|
|
);
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_compound_encode_err,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct svc_rqst *rqstp,
|
|
|
|
u32 opnum,
|
|
|
|
__be32 status
|
|
|
|
),
|
|
|
|
TP_ARGS(rqstp, opnum, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
NFSD_TRACE_PROC_RES_FIELDS
|
|
|
|
|
|
|
|
__field(u32, opnum)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
NFSD_TRACE_PROC_RES_ASSIGNMENTS(status)
|
|
|
|
|
|
|
|
__entry->opnum = opnum;
|
|
|
|
),
|
|
|
|
TP_printk("opnum=%u status=%lu",
|
|
|
|
__entry->opnum, __entry->status)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2020-03-01 23:21:39 +00:00
|
|
|
DECLARE_EVENT_CLASS(nfsd_fh_err_class,
|
|
|
|
TP_PROTO(struct svc_rqst *rqstp,
|
|
|
|
struct svc_fh *fhp,
|
|
|
|
int status),
|
|
|
|
TP_ARGS(rqstp, fhp, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, xid)
|
|
|
|
__field(u32, fh_hash)
|
|
|
|
__field(int, status)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid);
|
|
|
|
__entry->fh_hash = knfsd_fh_hash(&fhp->fh_handle);
|
|
|
|
__entry->status = status;
|
|
|
|
),
|
|
|
|
TP_printk("xid=0x%08x fh_hash=0x%08x status=%d",
|
|
|
|
__entry->xid, __entry->fh_hash,
|
|
|
|
__entry->status)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_NFSD_FH_ERR_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_fh_err_class, nfsd_##name, \
|
|
|
|
TP_PROTO(struct svc_rqst *rqstp, \
|
|
|
|
struct svc_fh *fhp, \
|
|
|
|
int status), \
|
|
|
|
TP_ARGS(rqstp, fhp, status))
|
|
|
|
|
|
|
|
DEFINE_NFSD_FH_ERR_EVENT(set_fh_dentry_badexport);
|
|
|
|
DEFINE_NFSD_FH_ERR_EVENT(set_fh_dentry_badhandle);
|
|
|
|
|
2020-03-01 23:21:40 +00:00
|
|
|
TRACE_EVENT(nfsd_exp_find_key,
|
|
|
|
TP_PROTO(const struct svc_expkey *key,
|
|
|
|
int status),
|
|
|
|
TP_ARGS(key, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(int, fsidtype)
|
|
|
|
__array(u32, fsid, 6)
|
|
|
|
__string(auth_domain, key->ek_client->name)
|
|
|
|
__field(int, status)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->fsidtype = key->ek_fsidtype;
|
|
|
|
memcpy(__entry->fsid, key->ek_fsid, 4*6);
|
|
|
|
__assign_str(auth_domain, key->ek_client->name);
|
|
|
|
__entry->status = status;
|
|
|
|
),
|
|
|
|
TP_printk("fsid=%x::%s domain=%s status=%d",
|
|
|
|
__entry->fsidtype,
|
|
|
|
__print_array(__entry->fsid, 6, 4),
|
|
|
|
__get_str(auth_domain),
|
|
|
|
__entry->status
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-03-01 23:21:41 +00:00
|
|
|
TRACE_EVENT(nfsd_expkey_update,
|
|
|
|
TP_PROTO(const struct svc_expkey *key, const char *exp_path),
|
|
|
|
TP_ARGS(key, exp_path),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(int, fsidtype)
|
|
|
|
__array(u32, fsid, 6)
|
|
|
|
__string(auth_domain, key->ek_client->name)
|
|
|
|
__string(path, exp_path)
|
|
|
|
__field(bool, cache)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->fsidtype = key->ek_fsidtype;
|
|
|
|
memcpy(__entry->fsid, key->ek_fsid, 4*6);
|
|
|
|
__assign_str(auth_domain, key->ek_client->name);
|
|
|
|
__assign_str(path, exp_path);
|
|
|
|
__entry->cache = !test_bit(CACHE_NEGATIVE, &key->h.flags);
|
|
|
|
),
|
|
|
|
TP_printk("fsid=%x::%s domain=%s path=%s cache=%s",
|
|
|
|
__entry->fsidtype,
|
|
|
|
__print_array(__entry->fsid, 6, 4),
|
|
|
|
__get_str(auth_domain),
|
|
|
|
__get_str(path),
|
|
|
|
__entry->cache ? "pos" : "neg"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-03-01 23:21:40 +00:00
|
|
|
TRACE_EVENT(nfsd_exp_get_by_name,
|
|
|
|
TP_PROTO(const struct svc_export *key,
|
|
|
|
int status),
|
|
|
|
TP_ARGS(key, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__string(path, key->ex_path.dentry->d_name.name)
|
|
|
|
__string(auth_domain, key->ex_client->name)
|
|
|
|
__field(int, status)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__assign_str(path, key->ex_path.dentry->d_name.name);
|
|
|
|
__assign_str(auth_domain, key->ex_client->name);
|
|
|
|
__entry->status = status;
|
|
|
|
),
|
|
|
|
TP_printk("path=%s domain=%s status=%d",
|
|
|
|
__get_str(path),
|
|
|
|
__get_str(auth_domain),
|
|
|
|
__entry->status
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2020-03-01 23:21:41 +00:00
|
|
|
TRACE_EVENT(nfsd_export_update,
|
|
|
|
TP_PROTO(const struct svc_export *key),
|
|
|
|
TP_ARGS(key),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__string(path, key->ex_path.dentry->d_name.name)
|
|
|
|
__string(auth_domain, key->ex_client->name)
|
|
|
|
__field(bool, cache)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__assign_str(path, key->ex_path.dentry->d_name.name);
|
|
|
|
__assign_str(auth_domain, key->ex_client->name);
|
|
|
|
__entry->cache = !test_bit(CACHE_NEGATIVE, &key->h.flags);
|
|
|
|
),
|
|
|
|
TP_printk("path=%s domain=%s cache=%s",
|
|
|
|
__get_str(path),
|
|
|
|
__get_str(auth_domain),
|
|
|
|
__entry->cache ? "pos" : "neg"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2015-11-17 11:52:23 +00:00
|
|
|
DECLARE_EVENT_CLASS(nfsd_io_class,
|
|
|
|
TP_PROTO(struct svc_rqst *rqstp,
|
|
|
|
struct svc_fh *fhp,
|
|
|
|
loff_t offset,
|
2018-03-27 14:52:57 +00:00
|
|
|
unsigned long len),
|
2015-11-17 11:52:23 +00:00
|
|
|
TP_ARGS(rqstp, fhp, offset, len),
|
|
|
|
TP_STRUCT__entry(
|
2018-03-27 14:52:43 +00:00
|
|
|
__field(u32, xid)
|
|
|
|
__field(u32, fh_hash)
|
2015-11-17 11:52:23 +00:00
|
|
|
__field(loff_t, offset)
|
2018-03-27 14:52:57 +00:00
|
|
|
__field(unsigned long, len)
|
2015-11-17 11:52:23 +00:00
|
|
|
),
|
|
|
|
TP_fast_assign(
|
2018-03-27 14:52:43 +00:00
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid);
|
2018-03-27 14:52:57 +00:00
|
|
|
__entry->fh_hash = knfsd_fh_hash(&fhp->fh_handle);
|
2015-11-17 11:52:23 +00:00
|
|
|
__entry->offset = offset;
|
|
|
|
__entry->len = len;
|
|
|
|
),
|
2018-03-27 14:52:57 +00:00
|
|
|
TP_printk("xid=0x%08x fh_hash=0x%08x offset=%lld len=%lu",
|
2018-03-27 14:52:43 +00:00
|
|
|
__entry->xid, __entry->fh_hash,
|
2015-11-17 11:52:23 +00:00
|
|
|
__entry->offset, __entry->len)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_NFSD_IO_EVENT(name) \
|
2018-03-27 14:53:11 +00:00
|
|
|
DEFINE_EVENT(nfsd_io_class, nfsd_##name, \
|
2015-11-17 11:52:23 +00:00
|
|
|
TP_PROTO(struct svc_rqst *rqstp, \
|
|
|
|
struct svc_fh *fhp, \
|
|
|
|
loff_t offset, \
|
2018-03-27 14:52:57 +00:00
|
|
|
unsigned long len), \
|
2015-11-17 11:52:23 +00:00
|
|
|
TP_ARGS(rqstp, fhp, offset, len))
|
|
|
|
|
|
|
|
DEFINE_NFSD_IO_EVENT(read_start);
|
2018-03-28 17:29:11 +00:00
|
|
|
DEFINE_NFSD_IO_EVENT(read_splice);
|
|
|
|
DEFINE_NFSD_IO_EVENT(read_vector);
|
2015-11-17 11:52:23 +00:00
|
|
|
DEFINE_NFSD_IO_EVENT(read_io_done);
|
|
|
|
DEFINE_NFSD_IO_EVENT(read_done);
|
|
|
|
DEFINE_NFSD_IO_EVENT(write_start);
|
|
|
|
DEFINE_NFSD_IO_EVENT(write_opened);
|
|
|
|
DEFINE_NFSD_IO_EVENT(write_io_done);
|
|
|
|
DEFINE_NFSD_IO_EVENT(write_done);
|
2014-08-17 00:02:22 +00:00
|
|
|
|
2018-03-27 14:53:27 +00:00
|
|
|
DECLARE_EVENT_CLASS(nfsd_err_class,
|
|
|
|
TP_PROTO(struct svc_rqst *rqstp,
|
|
|
|
struct svc_fh *fhp,
|
|
|
|
loff_t offset,
|
|
|
|
int status),
|
|
|
|
TP_ARGS(rqstp, fhp, offset, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, xid)
|
|
|
|
__field(u32, fh_hash)
|
|
|
|
__field(loff_t, offset)
|
|
|
|
__field(int, status)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid);
|
|
|
|
__entry->fh_hash = knfsd_fh_hash(&fhp->fh_handle);
|
|
|
|
__entry->offset = offset;
|
|
|
|
__entry->status = status;
|
|
|
|
),
|
|
|
|
TP_printk("xid=0x%08x fh_hash=0x%08x offset=%lld status=%d",
|
|
|
|
__entry->xid, __entry->fh_hash,
|
|
|
|
__entry->offset, __entry->status)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_NFSD_ERR_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_err_class, nfsd_##name, \
|
|
|
|
TP_PROTO(struct svc_rqst *rqstp, \
|
|
|
|
struct svc_fh *fhp, \
|
|
|
|
loff_t offset, \
|
|
|
|
int len), \
|
|
|
|
TP_ARGS(rqstp, fhp, offset, len))
|
|
|
|
|
2018-03-28 17:29:11 +00:00
|
|
|
DEFINE_NFSD_ERR_EVENT(read_err);
|
2018-03-27 14:53:27 +00:00
|
|
|
DEFINE_NFSD_ERR_EVENT(write_err);
|
|
|
|
|
2021-03-05 18:57:40 +00:00
|
|
|
TRACE_EVENT(nfsd_dirent,
|
|
|
|
TP_PROTO(struct svc_fh *fhp,
|
|
|
|
u64 ino,
|
|
|
|
const char *name,
|
|
|
|
int namlen),
|
|
|
|
TP_ARGS(fhp, ino, name, namlen),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, fh_hash)
|
|
|
|
__field(u64, ino)
|
2021-05-12 13:39:06 +00:00
|
|
|
__string_len(name, name, namlen)
|
2021-03-05 18:57:40 +00:00
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->fh_hash = fhp ? knfsd_fh_hash(&fhp->fh_handle) : 0;
|
|
|
|
__entry->ino = ino;
|
2021-05-12 13:39:06 +00:00
|
|
|
__assign_str_len(name, name, namlen)
|
2021-03-05 18:57:40 +00:00
|
|
|
),
|
2021-05-12 13:39:06 +00:00
|
|
|
TP_printk("fh_hash=0x%08x ino=%llu name=%s",
|
|
|
|
__entry->fh_hash, __entry->ino, __get_str(name)
|
|
|
|
)
|
2021-03-05 18:57:40 +00:00
|
|
|
)
|
|
|
|
|
2015-10-03 12:19:57 +00:00
|
|
|
#include "state.h"
|
2019-08-18 18:18:48 +00:00
|
|
|
#include "filecache.h"
|
|
|
|
#include "vfs.h"
|
2015-10-03 12:19:57 +00:00
|
|
|
|
2014-08-17 00:02:22 +00:00
|
|
|
DECLARE_EVENT_CLASS(nfsd_stateid_class,
|
|
|
|
TP_PROTO(stateid_t *stp),
|
|
|
|
TP_ARGS(stp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(u32, si_id)
|
|
|
|
__field(u32, si_generation)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = stp->si_opaque.so_clid.cl_boot;
|
|
|
|
__entry->cl_id = stp->si_opaque.so_clid.cl_id;
|
|
|
|
__entry->si_id = stp->si_opaque.so_id;
|
|
|
|
__entry->si_generation = stp->si_generation;
|
|
|
|
),
|
|
|
|
TP_printk("client %08x:%08x stateid %08x:%08x",
|
|
|
|
__entry->cl_boot,
|
|
|
|
__entry->cl_id,
|
|
|
|
__entry->si_id,
|
|
|
|
__entry->si_generation)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_STATEID_EVENT(name) \
|
2018-03-27 14:53:11 +00:00
|
|
|
DEFINE_EVENT(nfsd_stateid_class, nfsd_##name, \
|
2014-08-17 00:02:22 +00:00
|
|
|
TP_PROTO(stateid_t *stp), \
|
|
|
|
TP_ARGS(stp))
|
2020-04-05 15:42:29 +00:00
|
|
|
|
2014-08-17 00:02:22 +00:00
|
|
|
DEFINE_STATEID_EVENT(layoutstate_alloc);
|
|
|
|
DEFINE_STATEID_EVENT(layoutstate_unhash);
|
|
|
|
DEFINE_STATEID_EVENT(layoutstate_free);
|
|
|
|
DEFINE_STATEID_EVENT(layout_get_lookup_fail);
|
|
|
|
DEFINE_STATEID_EVENT(layout_commit_lookup_fail);
|
|
|
|
DEFINE_STATEID_EVENT(layout_return_lookup_fail);
|
|
|
|
DEFINE_STATEID_EVENT(layout_recall);
|
|
|
|
DEFINE_STATEID_EVENT(layout_recall_done);
|
|
|
|
DEFINE_STATEID_EVENT(layout_recall_fail);
|
|
|
|
DEFINE_STATEID_EVENT(layout_recall_release);
|
|
|
|
|
2020-08-28 07:02:55 +00:00
|
|
|
DEFINE_STATEID_EVENT(open);
|
|
|
|
DEFINE_STATEID_EVENT(deleg_read);
|
2020-04-05 15:42:29 +00:00
|
|
|
DEFINE_STATEID_EVENT(deleg_recall);
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(nfsd_stateseqid_class,
|
|
|
|
TP_PROTO(u32 seqid, const stateid_t *stp),
|
|
|
|
TP_ARGS(seqid, stp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, seqid)
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(u32, si_id)
|
|
|
|
__field(u32, si_generation)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->seqid = seqid;
|
|
|
|
__entry->cl_boot = stp->si_opaque.so_clid.cl_boot;
|
|
|
|
__entry->cl_id = stp->si_opaque.so_clid.cl_id;
|
|
|
|
__entry->si_id = stp->si_opaque.so_id;
|
|
|
|
__entry->si_generation = stp->si_generation;
|
|
|
|
),
|
|
|
|
TP_printk("seqid=%u client %08x:%08x stateid %08x:%08x",
|
|
|
|
__entry->seqid, __entry->cl_boot, __entry->cl_id,
|
|
|
|
__entry->si_id, __entry->si_generation)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_STATESEQID_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_stateseqid_class, nfsd_##name, \
|
|
|
|
TP_PROTO(u32 seqid, const stateid_t *stp), \
|
|
|
|
TP_ARGS(seqid, stp))
|
|
|
|
|
|
|
|
DEFINE_STATESEQID_EVENT(preprocess);
|
|
|
|
DEFINE_STATESEQID_EVENT(open_confirm);
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(nfsd_clientid_class,
|
|
|
|
TP_PROTO(const clientid_t *clid),
|
|
|
|
TP_ARGS(clid),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clid->cl_boot;
|
|
|
|
__entry->cl_id = clid->cl_id;
|
|
|
|
),
|
|
|
|
TP_printk("client %08x:%08x", __entry->cl_boot, __entry->cl_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_CLIENTID_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_clientid_class, nfsd_clid_##name, \
|
|
|
|
TP_PROTO(const clientid_t *clid), \
|
|
|
|
TP_ARGS(clid))
|
|
|
|
|
2021-05-14 19:56:13 +00:00
|
|
|
DEFINE_CLIENTID_EVENT(expire_unconf);
|
2021-05-14 19:55:54 +00:00
|
|
|
DEFINE_CLIENTID_EVENT(reclaim_complete);
|
2021-05-14 19:55:48 +00:00
|
|
|
DEFINE_CLIENTID_EVENT(confirmed);
|
2021-05-14 19:56:00 +00:00
|
|
|
DEFINE_CLIENTID_EVENT(destroyed);
|
2021-05-14 19:56:06 +00:00
|
|
|
DEFINE_CLIENTID_EVENT(admin_expired);
|
|
|
|
DEFINE_CLIENTID_EVENT(replaced);
|
2020-04-05 15:42:29 +00:00
|
|
|
DEFINE_CLIENTID_EVENT(purged);
|
|
|
|
DEFINE_CLIENTID_EVENT(renew);
|
|
|
|
DEFINE_CLIENTID_EVENT(stale);
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(nfsd_net_class,
|
|
|
|
TP_PROTO(const struct nfsd_net *nn),
|
|
|
|
TP_ARGS(nn),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(unsigned long long, boot_time)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->boot_time = nn->boot_time;
|
|
|
|
),
|
|
|
|
TP_printk("boot_time=%16llx", __entry->boot_time)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_NET_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_net_class, nfsd_##name, \
|
|
|
|
TP_PROTO(const struct nfsd_net *nn), \
|
|
|
|
TP_ARGS(nn))
|
|
|
|
|
|
|
|
DEFINE_NET_EVENT(grace_start);
|
|
|
|
DEFINE_NET_EVENT(grace_complete);
|
|
|
|
|
2021-05-14 19:55:29 +00:00
|
|
|
TRACE_EVENT(nfsd_clid_cred_mismatch,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_client *clp,
|
|
|
|
const struct svc_rqst *rqstp
|
|
|
|
),
|
|
|
|
TP_ARGS(clp, rqstp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(unsigned long, cl_flavor)
|
|
|
|
__field(unsigned long, new_flavor)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
__entry->cl_flavor = clp->cl_cred.cr_flavor;
|
|
|
|
__entry->new_flavor = rqstp->rq_cred.cr_flavor;
|
|
|
|
memcpy(__entry->addr, &rqstp->rq_xprt->xpt_remote,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("client %08x:%08x flavor=%s, conflict=%s from addr=%pISpc",
|
|
|
|
__entry->cl_boot, __entry->cl_id,
|
|
|
|
show_nfsd_authflavor(__entry->cl_flavor),
|
|
|
|
show_nfsd_authflavor(__entry->new_flavor), __entry->addr
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-05-14 19:55:36 +00:00
|
|
|
TRACE_EVENT(nfsd_clid_verf_mismatch,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_client *clp,
|
|
|
|
const struct svc_rqst *rqstp,
|
|
|
|
const nfs4_verifier *verf
|
|
|
|
),
|
|
|
|
TP_ARGS(clp, rqstp, verf),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__array(unsigned char, cl_verifier, NFS4_VERIFIER_SIZE)
|
|
|
|
__array(unsigned char, new_verifier, NFS4_VERIFIER_SIZE)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
memcpy(__entry->cl_verifier, (void *)&clp->cl_verifier,
|
|
|
|
NFS4_VERIFIER_SIZE);
|
|
|
|
memcpy(__entry->new_verifier, (void *)verf,
|
|
|
|
NFS4_VERIFIER_SIZE);
|
|
|
|
memcpy(__entry->addr, &rqstp->rq_xprt->xpt_remote,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("client %08x:%08x verf=0x%s, updated=0x%s from addr=%pISpc",
|
|
|
|
__entry->cl_boot, __entry->cl_id,
|
|
|
|
__print_hex_str(__entry->cl_verifier, NFS4_VERIFIER_SIZE),
|
|
|
|
__print_hex_str(__entry->new_verifier, NFS4_VERIFIER_SIZE),
|
|
|
|
__entry->addr
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2021-05-14 19:56:13 +00:00
|
|
|
DECLARE_EVENT_CLASS(nfsd_clid_class,
|
|
|
|
TP_PROTO(const struct nfs4_client *clp),
|
|
|
|
TP_ARGS(clp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
__field(unsigned long, flavor)
|
|
|
|
__array(unsigned char, verifier, NFS4_VERIFIER_SIZE)
|
2021-05-14 19:34:57 +00:00
|
|
|
__string_len(name, name, clp->cl_name.len)
|
2021-05-14 19:56:13 +00:00
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
memcpy(__entry->addr, &clp->cl_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
__entry->flavor = clp->cl_cred.cr_flavor;
|
|
|
|
memcpy(__entry->verifier, (void *)&clp->cl_verifier,
|
|
|
|
NFS4_VERIFIER_SIZE);
|
2021-05-14 19:34:57 +00:00
|
|
|
__assign_str_len(name, clp->cl_name.data, clp->cl_name.len);
|
2021-05-14 19:56:13 +00:00
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc name='%s' verifier=0x%s flavor=%s client=%08x:%08x",
|
|
|
|
__entry->addr, __get_str(name),
|
|
|
|
__print_hex_str(__entry->verifier, NFS4_VERIFIER_SIZE),
|
|
|
|
show_nfsd_authflavor(__entry->flavor),
|
|
|
|
__entry->cl_boot, __entry->cl_id)
|
|
|
|
);
|
|
|
|
|
|
|
|
#define DEFINE_CLID_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_clid_class, nfsd_clid_##name, \
|
|
|
|
TP_PROTO(const struct nfs4_client *clp), \
|
|
|
|
TP_ARGS(clp))
|
|
|
|
|
|
|
|
DEFINE_CLID_EVENT(fresh);
|
2021-05-14 19:56:19 +00:00
|
|
|
DEFINE_CLID_EVENT(confirmed_r);
|
2021-05-14 19:56:13 +00:00
|
|
|
|
2020-08-19 16:56:40 +00:00
|
|
|
/*
|
|
|
|
* from fs/nfsd/filecache.h
|
|
|
|
*/
|
2020-01-14 17:00:22 +00:00
|
|
|
TRACE_DEFINE_ENUM(NFSD_FILE_HASHED);
|
|
|
|
TRACE_DEFINE_ENUM(NFSD_FILE_PENDING);
|
|
|
|
TRACE_DEFINE_ENUM(NFSD_FILE_BREAK_READ);
|
|
|
|
TRACE_DEFINE_ENUM(NFSD_FILE_BREAK_WRITE);
|
|
|
|
TRACE_DEFINE_ENUM(NFSD_FILE_REFERENCED);
|
|
|
|
|
2019-08-18 18:18:48 +00:00
|
|
|
#define show_nf_flags(val) \
|
|
|
|
__print_flags(val, "|", \
|
|
|
|
{ 1 << NFSD_FILE_HASHED, "HASHED" }, \
|
|
|
|
{ 1 << NFSD_FILE_PENDING, "PENDING" }, \
|
|
|
|
{ 1 << NFSD_FILE_BREAK_READ, "BREAK_READ" }, \
|
|
|
|
{ 1 << NFSD_FILE_BREAK_WRITE, "BREAK_WRITE" }, \
|
|
|
|
{ 1 << NFSD_FILE_REFERENCED, "REFERENCED"})
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(nfsd_file_class,
|
|
|
|
TP_PROTO(struct nfsd_file *nf),
|
|
|
|
TP_ARGS(nf),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(unsigned int, nf_hashval)
|
|
|
|
__field(void *, nf_inode)
|
|
|
|
__field(int, nf_ref)
|
|
|
|
__field(unsigned long, nf_flags)
|
|
|
|
__field(unsigned char, nf_may)
|
|
|
|
__field(struct file *, nf_file)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->nf_hashval = nf->nf_hashval;
|
|
|
|
__entry->nf_inode = nf->nf_inode;
|
2020-01-14 17:02:44 +00:00
|
|
|
__entry->nf_ref = refcount_read(&nf->nf_ref);
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->nf_flags = nf->nf_flags;
|
|
|
|
__entry->nf_may = nf->nf_may;
|
|
|
|
__entry->nf_file = nf->nf_file;
|
|
|
|
),
|
2020-09-04 19:06:26 +00:00
|
|
|
TP_printk("hash=0x%x inode=%p ref=%d flags=%s may=%s file=%p",
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->nf_hashval,
|
|
|
|
__entry->nf_inode,
|
|
|
|
__entry->nf_ref,
|
|
|
|
show_nf_flags(__entry->nf_flags),
|
2020-08-19 16:56:40 +00:00
|
|
|
show_nfsd_may_flags(__entry->nf_may),
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->nf_file)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define DEFINE_NFSD_FILE_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_file_class, name, \
|
|
|
|
TP_PROTO(struct nfsd_file *nf), \
|
|
|
|
TP_ARGS(nf))
|
|
|
|
|
|
|
|
DEFINE_NFSD_FILE_EVENT(nfsd_file_alloc);
|
|
|
|
DEFINE_NFSD_FILE_EVENT(nfsd_file_put_final);
|
|
|
|
DEFINE_NFSD_FILE_EVENT(nfsd_file_unhash);
|
|
|
|
DEFINE_NFSD_FILE_EVENT(nfsd_file_put);
|
|
|
|
DEFINE_NFSD_FILE_EVENT(nfsd_file_unhash_and_release_locked);
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_file_acquire,
|
|
|
|
TP_PROTO(struct svc_rqst *rqstp, unsigned int hash,
|
|
|
|
struct inode *inode, unsigned int may_flags,
|
|
|
|
struct nfsd_file *nf, __be32 status),
|
|
|
|
|
|
|
|
TP_ARGS(rqstp, hash, inode, may_flags, nf, status),
|
|
|
|
|
|
|
|
TP_STRUCT__entry(
|
2020-01-14 17:00:21 +00:00
|
|
|
__field(u32, xid)
|
2019-08-18 18:18:48 +00:00
|
|
|
__field(unsigned int, hash)
|
|
|
|
__field(void *, inode)
|
2020-08-19 16:56:40 +00:00
|
|
|
__field(unsigned long, may_flags)
|
2019-08-18 18:18:48 +00:00
|
|
|
__field(int, nf_ref)
|
|
|
|
__field(unsigned long, nf_flags)
|
2020-08-19 16:56:40 +00:00
|
|
|
__field(unsigned long, nf_may)
|
2019-08-18 18:18:48 +00:00
|
|
|
__field(struct file *, nf_file)
|
2020-01-14 17:00:21 +00:00
|
|
|
__field(u32, status)
|
2019-08-18 18:18:48 +00:00
|
|
|
),
|
|
|
|
|
|
|
|
TP_fast_assign(
|
2020-01-14 17:00:21 +00:00
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid);
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->hash = hash;
|
|
|
|
__entry->inode = inode;
|
|
|
|
__entry->may_flags = may_flags;
|
2020-01-14 17:02:44 +00:00
|
|
|
__entry->nf_ref = nf ? refcount_read(&nf->nf_ref) : 0;
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->nf_flags = nf ? nf->nf_flags : 0;
|
|
|
|
__entry->nf_may = nf ? nf->nf_may : 0;
|
|
|
|
__entry->nf_file = nf ? nf->nf_file : NULL;
|
2020-01-14 17:00:21 +00:00
|
|
|
__entry->status = be32_to_cpu(status);
|
2019-08-18 18:18:48 +00:00
|
|
|
),
|
|
|
|
|
2020-09-04 19:06:26 +00:00
|
|
|
TP_printk("xid=0x%x hash=0x%x inode=%p may_flags=%s ref=%d nf_flags=%s nf_may=%s nf_file=%p status=%u",
|
2020-01-14 17:00:21 +00:00
|
|
|
__entry->xid, __entry->hash, __entry->inode,
|
2020-08-19 16:56:40 +00:00
|
|
|
show_nfsd_may_flags(__entry->may_flags),
|
|
|
|
__entry->nf_ref, show_nf_flags(__entry->nf_flags),
|
|
|
|
show_nfsd_may_flags(__entry->nf_may),
|
|
|
|
__entry->nf_file, __entry->status)
|
2019-08-18 18:18:48 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(nfsd_file_search_class,
|
|
|
|
TP_PROTO(struct inode *inode, unsigned int hash, int found),
|
|
|
|
TP_ARGS(inode, hash, found),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(struct inode *, inode)
|
|
|
|
__field(unsigned int, hash)
|
|
|
|
__field(int, found)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->inode = inode;
|
|
|
|
__entry->hash = hash;
|
|
|
|
__entry->found = found;
|
|
|
|
),
|
2020-09-04 19:06:26 +00:00
|
|
|
TP_printk("hash=0x%x inode=%p found=%d", __entry->hash,
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->inode, __entry->found)
|
|
|
|
);
|
|
|
|
|
|
|
|
#define DEFINE_NFSD_FILE_SEARCH_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_file_search_class, name, \
|
|
|
|
TP_PROTO(struct inode *inode, unsigned int hash, int found), \
|
|
|
|
TP_ARGS(inode, hash, found))
|
|
|
|
|
|
|
|
DEFINE_NFSD_FILE_SEARCH_EVENT(nfsd_file_close_inode_sync);
|
|
|
|
DEFINE_NFSD_FILE_SEARCH_EVENT(nfsd_file_close_inode);
|
|
|
|
DEFINE_NFSD_FILE_SEARCH_EVENT(nfsd_file_is_cached);
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_file_fsnotify_handle_event,
|
|
|
|
TP_PROTO(struct inode *inode, u32 mask),
|
|
|
|
TP_ARGS(inode, mask),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(struct inode *, inode)
|
|
|
|
__field(unsigned int, nlink)
|
|
|
|
__field(umode_t, mode)
|
|
|
|
__field(u32, mask)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->inode = inode;
|
|
|
|
__entry->nlink = inode->i_nlink;
|
|
|
|
__entry->mode = inode->i_mode;
|
|
|
|
__entry->mask = mask;
|
|
|
|
),
|
2020-09-04 19:06:26 +00:00
|
|
|
TP_printk("inode=%p nlink=%u mode=0%ho mask=0x%x", __entry->inode,
|
2019-08-18 18:18:48 +00:00
|
|
|
__entry->nlink, __entry->mode, __entry->mask)
|
|
|
|
);
|
|
|
|
|
2020-05-02 15:34:40 +00:00
|
|
|
#include "cache.h"
|
|
|
|
|
|
|
|
TRACE_DEFINE_ENUM(RC_DROPIT);
|
|
|
|
TRACE_DEFINE_ENUM(RC_REPLY);
|
|
|
|
TRACE_DEFINE_ENUM(RC_DOIT);
|
|
|
|
|
|
|
|
#define show_drc_retval(x) \
|
|
|
|
__print_symbolic(x, \
|
|
|
|
{ RC_DROPIT, "DROPIT" }, \
|
|
|
|
{ RC_REPLY, "REPLY" }, \
|
|
|
|
{ RC_DOIT, "DOIT" })
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_drc_found,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfsd_net *nn,
|
|
|
|
const struct svc_rqst *rqstp,
|
|
|
|
int result
|
|
|
|
),
|
|
|
|
TP_ARGS(nn, rqstp, result),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(unsigned long long, boot_time)
|
|
|
|
__field(unsigned long, result)
|
|
|
|
__field(u32, xid)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->boot_time = nn->boot_time;
|
|
|
|
__entry->result = result;
|
|
|
|
__entry->xid = be32_to_cpu(rqstp->rq_xid);
|
|
|
|
),
|
|
|
|
TP_printk("boot_time=%16llx xid=0x%08x result=%s",
|
|
|
|
__entry->boot_time, __entry->xid,
|
|
|
|
show_drc_retval(__entry->result))
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_drc_mismatch,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfsd_net *nn,
|
|
|
|
const struct svc_cacherep *key,
|
|
|
|
const struct svc_cacherep *rp
|
|
|
|
),
|
|
|
|
TP_ARGS(nn, key, rp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(unsigned long long, boot_time)
|
|
|
|
__field(u32, xid)
|
|
|
|
__field(u32, cached)
|
|
|
|
__field(u32, ingress)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->boot_time = nn->boot_time;
|
|
|
|
__entry->xid = be32_to_cpu(key->c_key.k_xid);
|
|
|
|
__entry->cached = (__force u32)key->c_key.k_csum;
|
|
|
|
__entry->ingress = (__force u32)rp->c_key.k_csum;
|
|
|
|
),
|
|
|
|
TP_printk("boot_time=%16llx xid=0x%08x cached-csum=0x%08x ingress-csum=0x%08x",
|
|
|
|
__entry->boot_time, __entry->xid, __entry->cached,
|
|
|
|
__entry->ingress)
|
|
|
|
);
|
|
|
|
|
2020-04-05 18:15:29 +00:00
|
|
|
TRACE_EVENT(nfsd_cb_args,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_client *clp,
|
|
|
|
const struct nfs4_cb_conn *conn
|
|
|
|
),
|
|
|
|
TP_ARGS(clp, conn),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(u32, prog)
|
|
|
|
__field(u32, ident)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
__entry->prog = conn->cb_prog;
|
|
|
|
__entry->ident = conn->cb_ident;
|
|
|
|
memcpy(__entry->addr, &conn->cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
2021-05-14 19:57:39 +00:00
|
|
|
TP_printk("addr=%pISpc client %08x:%08x prog=%u ident=%u",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id,
|
|
|
|
__entry->prog, __entry->ident)
|
2020-04-05 18:15:29 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
TRACE_EVENT(nfsd_cb_nodelegs,
|
|
|
|
TP_PROTO(const struct nfs4_client *clp),
|
|
|
|
TP_ARGS(clp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
),
|
|
|
|
TP_printk("client %08x:%08x", __entry->cl_boot, __entry->cl_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
#define show_cb_state(val) \
|
|
|
|
__print_symbolic(val, \
|
|
|
|
{ NFSD4_CB_UP, "UP" }, \
|
|
|
|
{ NFSD4_CB_UNKNOWN, "UNKNOWN" }, \
|
|
|
|
{ NFSD4_CB_DOWN, "DOWN" }, \
|
|
|
|
{ NFSD4_CB_FAULT, "FAULT"})
|
|
|
|
|
|
|
|
DECLARE_EVENT_CLASS(nfsd_cb_class,
|
|
|
|
TP_PROTO(const struct nfs4_client *clp),
|
|
|
|
TP_ARGS(clp),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(unsigned long, state)
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->state = clp->cl_cb_state;
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
memcpy(__entry->addr, &clp->cl_cb_conn.cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc client %08x:%08x state=%s",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id,
|
|
|
|
show_cb_state(__entry->state))
|
|
|
|
);
|
|
|
|
|
|
|
|
#define DEFINE_NFSD_CB_EVENT(name) \
|
|
|
|
DEFINE_EVENT(nfsd_cb_class, nfsd_cb_##name, \
|
|
|
|
TP_PROTO(const struct nfs4_client *clp), \
|
|
|
|
TP_ARGS(clp))
|
|
|
|
|
|
|
|
DEFINE_NFSD_CB_EVENT(state);
|
2021-05-14 19:57:26 +00:00
|
|
|
DEFINE_NFSD_CB_EVENT(probe);
|
2021-05-14 19:56:43 +00:00
|
|
|
DEFINE_NFSD_CB_EVENT(lost);
|
2020-04-05 18:15:29 +00:00
|
|
|
DEFINE_NFSD_CB_EVENT(shutdown);
|
|
|
|
|
2021-05-14 19:55:23 +00:00
|
|
|
TRACE_DEFINE_ENUM(RPC_AUTH_NULL);
|
|
|
|
TRACE_DEFINE_ENUM(RPC_AUTH_UNIX);
|
|
|
|
TRACE_DEFINE_ENUM(RPC_AUTH_GSS);
|
|
|
|
TRACE_DEFINE_ENUM(RPC_AUTH_GSS_KRB5);
|
|
|
|
TRACE_DEFINE_ENUM(RPC_AUTH_GSS_KRB5I);
|
|
|
|
TRACE_DEFINE_ENUM(RPC_AUTH_GSS_KRB5P);
|
|
|
|
|
|
|
|
#define show_nfsd_authflavor(val) \
|
|
|
|
__print_symbolic(val, \
|
|
|
|
{ RPC_AUTH_NULL, "none" }, \
|
|
|
|
{ RPC_AUTH_UNIX, "sys" }, \
|
|
|
|
{ RPC_AUTH_GSS, "gss" }, \
|
|
|
|
{ RPC_AUTH_GSS_KRB5, "krb5" }, \
|
|
|
|
{ RPC_AUTH_GSS_KRB5I, "krb5i" }, \
|
|
|
|
{ RPC_AUTH_GSS_KRB5P, "krb5p" })
|
|
|
|
|
2021-05-14 19:57:02 +00:00
|
|
|
TRACE_EVENT(nfsd_cb_setup,
|
|
|
|
TP_PROTO(const struct nfs4_client *clp,
|
|
|
|
const char *netid,
|
|
|
|
rpc_authflavor_t authflavor
|
|
|
|
),
|
|
|
|
TP_ARGS(clp, netid, authflavor),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(unsigned long, authflavor)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
__array(unsigned char, netid, 8)
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
strlcpy(__entry->netid, netid, sizeof(__entry->netid));
|
|
|
|
__entry->authflavor = authflavor;
|
|
|
|
memcpy(__entry->addr, &clp->cl_cb_conn.cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc client %08x:%08x proto=%s flavor=%s",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id,
|
|
|
|
__entry->netid, show_nfsd_authflavor(__entry->authflavor))
|
|
|
|
);
|
|
|
|
|
2020-04-05 18:15:29 +00:00
|
|
|
TRACE_EVENT(nfsd_cb_setup_err,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_client *clp,
|
|
|
|
long error
|
|
|
|
),
|
|
|
|
TP_ARGS(clp, error),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(long, error)
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->error = error;
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
memcpy(__entry->addr, &clp->cl_cb_conn.cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc client %08x:%08x error=%ld",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id, __entry->error)
|
|
|
|
);
|
|
|
|
|
2021-05-14 19:57:20 +00:00
|
|
|
TRACE_EVENT(nfsd_cb_recall,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_stid *stid
|
|
|
|
),
|
|
|
|
TP_ARGS(stid),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(u32, si_id)
|
|
|
|
__field(u32, si_generation)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
const stateid_t *stp = &stid->sc_stateid;
|
|
|
|
const struct nfs4_client *clp = stid->sc_client;
|
|
|
|
|
|
|
|
__entry->cl_boot = stp->si_opaque.so_clid.cl_boot;
|
|
|
|
__entry->cl_id = stp->si_opaque.so_clid.cl_id;
|
|
|
|
__entry->si_id = stp->si_opaque.so_id;
|
|
|
|
__entry->si_generation = stp->si_generation;
|
|
|
|
if (clp)
|
|
|
|
memcpy(__entry->addr, &clp->cl_cb_conn.cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
else
|
|
|
|
memset(__entry->addr, 0, sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc client %08x:%08x stateid %08x:%08x",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id,
|
|
|
|
__entry->si_id, __entry->si_generation)
|
|
|
|
);
|
|
|
|
|
2021-05-14 19:57:08 +00:00
|
|
|
TRACE_EVENT(nfsd_cb_notify_lock,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_lockowner *lo,
|
|
|
|
const struct nfsd4_blocked_lock *nbl
|
|
|
|
),
|
|
|
|
TP_ARGS(lo, nbl),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(u32, fh_hash)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
const struct nfs4_client *clp = lo->lo_owner.so_client;
|
|
|
|
|
|
|
|
__entry->cl_boot = clp->cl_clientid.cl_boot;
|
|
|
|
__entry->cl_id = clp->cl_clientid.cl_id;
|
|
|
|
__entry->fh_hash = knfsd_fh_hash(&nbl->nbl_fh);
|
|
|
|
memcpy(__entry->addr, &clp->cl_cb_conn.cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc client %08x:%08x fh_hash=0x%08x",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id,
|
|
|
|
__entry->fh_hash)
|
|
|
|
);
|
|
|
|
|
2021-05-14 19:57:14 +00:00
|
|
|
TRACE_EVENT(nfsd_cb_offload,
|
|
|
|
TP_PROTO(
|
|
|
|
const struct nfs4_client *clp,
|
|
|
|
const stateid_t *stp,
|
|
|
|
const struct knfsd_fh *fh,
|
|
|
|
u64 count,
|
|
|
|
__be32 status
|
|
|
|
),
|
|
|
|
TP_ARGS(clp, stp, fh, count, status),
|
|
|
|
TP_STRUCT__entry(
|
|
|
|
__field(u32, cl_boot)
|
|
|
|
__field(u32, cl_id)
|
|
|
|
__field(u32, si_id)
|
|
|
|
__field(u32, si_generation)
|
|
|
|
__field(u32, fh_hash)
|
|
|
|
__field(int, status)
|
|
|
|
__field(u64, count)
|
|
|
|
__array(unsigned char, addr, sizeof(struct sockaddr_in6))
|
|
|
|
),
|
|
|
|
TP_fast_assign(
|
|
|
|
__entry->cl_boot = stp->si_opaque.so_clid.cl_boot;
|
|
|
|
__entry->cl_id = stp->si_opaque.so_clid.cl_id;
|
|
|
|
__entry->si_id = stp->si_opaque.so_id;
|
|
|
|
__entry->si_generation = stp->si_generation;
|
|
|
|
__entry->fh_hash = knfsd_fh_hash(fh);
|
|
|
|
__entry->status = be32_to_cpu(status);
|
|
|
|
__entry->count = count;
|
|
|
|
memcpy(__entry->addr, &clp->cl_cb_conn.cb_addr,
|
|
|
|
sizeof(struct sockaddr_in6));
|
|
|
|
),
|
|
|
|
TP_printk("addr=%pISpc client %08x:%08x stateid %08x:%08x fh_hash=0x%08x count=%llu status=%d",
|
|
|
|
__entry->addr, __entry->cl_boot, __entry->cl_id,
|
|
|
|
__entry->si_id, __entry->si_generation,
|
|
|
|
__entry->fh_hash, __entry->count, __entry->status)
|
|
|
|
);
|
|
|
|
|
2014-08-17 00:02:22 +00:00
|
|
|
#endif /* _NFSD_TRACE_H */
|
|
|
|
|
|
|
|
#undef TRACE_INCLUDE_PATH
|
|
|
|
#define TRACE_INCLUDE_PATH .
|
|
|
|
#define TRACE_INCLUDE_FILE trace
|
|
|
|
#include <trace/define_trace.h>
|