Overview
About vulnerability
In the Linux kernel, the following vulnerability has been resolved:
NFSv4/pNFS: reject zero-length r_addr in nfs4_decode_mp_ds_addr
nfs4_decode_mp_ds_addr() decodes the r_netid and r_addr opaques of a netaddr4 from a GETDEVICEINFO multipath-DS body, then immediately calls strrchr(buf, ‘.’) to locate the port separator. Both decodes use xdr_stream_decode_string_dup(), and the current code checks only “nlen < 0” / “rlen < 0” before dereferencing the returned string.
When the on-wire opaque has length zero, xdr_stream_decode_opaque_inline() returns 0 and xdr_stream_decode_string_dup() falls through to its “*str = NULL; return ret” tail, leaving buf NULL with a return value of 0. The “< 0” check does not catch this, and the next line is strrchr(NULL, ‘.’), a kernel NULL pointer dereference reachable from any pNFS-flexfile client mounted against a malicious or compromised metadata server.
Reject the zero-length cases explicitly so the decoder fails with -EBADMSG (treated as a malformed GETDEVICEINFO body) instead of panicking the client.
Details
- Affected product:
- AlmaLinux 9.2 ESU , Amazon Linux 2 ELS , CentOS 7 ELS , CentOS 8.4 ELS , CentOS 8.5 ELS , CentOS Stream 8 ELS , Debian 10 ELS , Debian 11 ELS , Oracle Linux 7 ELS , RHEL 7 ELS , TuxCare 9.6 ESU , TuxCare 9.8 ESU , Ubuntu 16.04 ELS , Ubuntu 18.04 ELS , Ubuntu 20.04 ELS
- Affected packages:
- kernel @ 4.18.0 (+15 more)
Fixes
KernelCare state
Live-patch status from KernelCare for each operating system.
| Operating system | Status | Covered kernels |
|---|---|---|
| AlmaLinux 10 | Released |
61 kernels
|
| AlmaLinux 8 | In Rollout |
118 kernels
|
| AlmaLinux 9 | Released |
128 kernels
|
| AlmaLinux 9.2 ESU | Planned | — |
| AlmaLinux 9.6 ESU | Released |
18 kernels
|
| Amazon Linux 2023 | Ready For Release | — |
| CentOS 8 | Released |
3 kernels
|
| Debian 13 | Planned | — |
| Oracle Linux 10 | Released |
47 kernels
|
| Oracle Linux 8 | Released |
114 kernels
|
| Oracle Linux 9 | Released |
127 kernels
|
| RHEL 10 | Released |
61 kernels
|
| RHEL 8 | In Rollout |
111 kernels
|
| RHEL 9 | Released |
126 kernels
|
| Rocky Linux 10 | Released |
44 kernels
|
| Rocky Linux 8 | In Rollout |
100 kernels
|
| Rocky Linux 9 | Released |
103 kernels
|