CVE-2026-46043
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
27/05/2026
Last modified:
16/06/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
RDMA/rxe: Validate pad and ICRC before payload_size() in rxe_rcv<br />
<br />
rxe_rcv() currently checks only that the incoming packet is at least<br />
header_size(pkt) bytes long before payload_size() is used.<br />
<br />
However, payload_size() subtracts both the attacker-controlled BTH pad<br />
field and RXE_ICRC_SIZE from pkt->paylen:<br />
<br />
payload_size = pkt->paylen - offset[RXE_PAYLOAD] - bth_pad(pkt)<br />
- RXE_ICRC_SIZE<br />
<br />
This means a short packet can still make payload_size() underflow even<br />
if it includes enough bytes for the fixed headers. Simply requiring<br />
header_size(pkt) + RXE_ICRC_SIZE is not sufficient either, because a<br />
packet with a forged non-zero BTH pad can still leave payload_size()<br />
negative and pass an underflowed value to later receive-path users.<br />
<br />
Fix this by validating pkt->paylen against the full minimum length<br />
required by payload_size(): header_size(pkt) + bth_pad(pkt) +<br />
RXE_ICRC_SIZE.
Impact
Base Score 3.x
9.10
Severity 3.x
CRITICAL
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.8 (including) | 5.10.258 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.209 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.175 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.6.140 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.86 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.27 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 7.0.4 (excluding) |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/2c0d71ef12f46c57d37bc571f3f2797db7eb50cc
- https://git.kernel.org/stable/c/2fd4f8b749309a61c3f3f88ee8891d94f79e1240
- https://git.kernel.org/stable/c/5fedefec757192dcaad29a664ac332c7601be144
- https://git.kernel.org/stable/c/7244491dab347f648e661da96dc0febadd9daec3
- https://git.kernel.org/stable/c/9b924f3a26b21330a837cfe72e819b6393bbeeaa
- https://git.kernel.org/stable/c/c4376c672c3648d5bdc31dfffc329d07164f93c4
- https://git.kernel.org/stable/c/e8ee0e792d475b1067c199ef0af1b6221fa6f43d
- https://git.kernel.org/stable/c/f83519a4c122c9c7a850a2197648a9ff4c67c520



