-
Notifications
You must be signed in to change notification settings - Fork 12
[ciqlts9_4] sunrpc: handle SVC_GARBAGE during svc auth processing as auth error #396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ciqlts9_4] sunrpc: handle SVC_GARBAGE during svc auth processing as auth error #396
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR changes the handling of SVC_GARBAGE
in svc_process_common
so that it is treated as an authentication error (AUTH_BADCRED
) rather than returning GARBAGE_ARGS
, in order to avoid dereferencing a null rq_accept_statp
and to comply with RFC 5531.
- Replace
err_garbage_args
path with settingrq_auth_stat = rpc_autherr_badcred
and jumping toerr_bad_auth
. - Remove the old
err_garbage_args
label block and its stats/log updates. - Ensure crashes from malformed packets no longer occur by sidestepping
rq_accept_statp
.
Comments suppressed due to low confidence (2)
net/sunrpc/svc.c:1345
- [nitpick] Consider updating or adding a comment above this case to note that
SVC_GARBAGE
now maps to an auth error (AUTH_BADCRED
) per RFC 5531, replacing the old garbage-args behavior.
case SVC_GARBAGE:
net/sunrpc/svc.c:1346
- Add a kselftest or integration test that triggers the
SVC_GARBAGE
path to verify the request is rejected withAUTH_BADCRED
instead ofGARBAGE_ARGS
.
rqstp->rq_auth_stat = rpc_autherr_badcred;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A minor nit pick: Your commit message has two Signed-off-by
from you. I assume you added the Signed-off-by at the very bottom by habit. But, that isn't necessary becasue the ciq-cherry-pick.py
script already does it.
jira VULN-71607 cve CVE-2025-38089 commit-author Jeff Layton <jlayton@kernel.org> commit 94d10a4 upstream-diff A merge conflict was caused because the following commit doesn't exit in our tree: ab42f4d ("sunrpc: don't change ->sv_stats if it doesn't exist") tianshuo han reported a remotely-triggerable crash if the client sends a kernel RPC server a specially crafted packet. If decoding the RPC reply fails in such a way that SVC_GARBAGE is returned without setting the rq_accept_statp pointer, then that pointer can be dereferenced and a value stored there. If it's the first time the thread has processed an RPC, then that pointer will be set to NULL and the kernel will crash. In other cases, it could create a memory scribble. The server sunrpc code treats a SVC_GARBAGE return from svc_authenticate or pg_authenticate as if it should send a GARBAGE_ARGS reply. RFC 5531 says that if authentication fails that the RPC should be rejected instead with a status of AUTH_ERR. Handle a SVC_GARBAGE return as an AUTH_ERROR, with a reason of AUTH_BADCRED instead of returning GARBAGE_ARGS in that case. This sidesteps the whole problem of touching the rpc_accept_statp pointer in this situation and avoids the crash. Cc: stable@kernel.org Fixes: 29cd292 ("SUNRPC: Fix encoding of accepted but unsuccessful RPC replies") Reported-by: tianshuo han <hantianshuo233@gmail.com> Reviewed-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com> (cherry picked from commit 94d10a4) Signed-off-by: Shreeya Patel <spatel@ciq.com>
c1e3b00
to
dac1ecc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great first PR! We have one more kselftest passing which is nice. 🚤
Commit message
Kernel build logs
kernel-build.log
Kselftests
kselftest-before.log
kselftest-after.log