CVE-2025-37816
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
08/05/2025
Last modified:
12/11/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
mei: vsc: Fix fortify-panic caused by invalid counted_by() use<br />
<br />
gcc 15 honors the __counted_by(len) attribute on vsc_tp_packet.buf[]<br />
and the vsc-tp.c code is using this in a wrong way. len does not contain<br />
the available size in the buffer, it contains the actual packet length<br />
*without* the crc. So as soon as vsc_tp_xfer() tries to add the crc to<br />
buf[] the fortify-panic handler gets triggered:<br />
<br />
[ 80.842193] memcpy: detected buffer overflow: 4 byte write of buffer size 0<br />
[ 80.842243] WARNING: CPU: 4 PID: 272 at lib/string_helpers.c:1032 __fortify_report+0x45/0x50<br />
...<br />
[ 80.843175] __fortify_panic+0x9/0xb<br />
[ 80.843186] vsc_tp_xfer.cold+0x67/0x67 [mei_vsc_hw]<br />
[ 80.843210] ? seqcount_lockdep_reader_access.constprop.0+0x82/0x90<br />
[ 80.843229] ? lockdep_hardirqs_on+0x7c/0x110<br />
[ 80.843250] mei_vsc_hw_start+0x98/0x120 [mei_vsc]<br />
[ 80.843270] mei_reset+0x11d/0x420 [mei]<br />
<br />
The easiest fix would be to just drop the counted-by but with the exception<br />
of the ack buffer in vsc_tp_xfer_helper() which only contains enough room<br />
for the packet-header, all other uses of vsc_tp_packet always use a buffer<br />
of VSC_TP_MAX_XFER_SIZE bytes for the packet.<br />
<br />
Instead of just dropping the counted-by, split the vsc_tp_packet struct<br />
definition into a header and a full-packet definition and use a fixed<br />
size buf[] in the packet definition, this way fortify-source buffer<br />
overrun checking still works when enabled.
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.8 (including) | 6.12.26 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.14.5 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.15:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc3:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page



