diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2019-10-24 16:34:10 +0300 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2019-10-30 23:32:07 +0300 |
commit | ff27e9f748303e8567bfceb6d7ff264cbcaca2ef (patch) | |
tree | 2bc5e883cc27c2740b3b034515fb8fed806d877d /net/sunrpc/svc.c | |
parent | 5fcaf6982d1167f1cd9b264704f6d1ef4c505d54 (diff) | |
download | linux-ff27e9f748303e8567bfceb6d7ff264cbcaca2ef.tar.xz |
SUNRPC: Trace gssproxy upcall results
Record results of a GSS proxy ACCEPT_SEC_CONTEXT upcall and the
svc_authenticate() function to make field debugging of NFS server
Kerberos issues easier.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Reviewed-by: Bill Baker <bill.baker@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r-- | net/sunrpc/svc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index d11b70552c33..187dd4e73d64 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1337,6 +1337,8 @@ svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv) auth_stat = rpc_autherr_badcred; auth_res = progp->pg_authenticate(rqstp); } + if (auth_res != SVC_OK) + trace_svc_authenticate(rqstp, auth_res, auth_stat); switch (auth_res) { case SVC_OK: break; |