CVE-2026-97930 PUBLISHED

ALSA: usbusx2y: fix in04_last array size mismatch with in04_buf

Assigner: Linux
Reserved: 25.09.2026 Published: 25.09.2026 Updated: 25.09.2026

In the Linux kernel, the following vulnerability has been resolved:

ALSA: usbusx2y: fix in04_last array size mismatch with in04_buf

The in04_last array in struct usx2ydev is declared as char[24], but in04_buf is allocated as sizeof(struct us428_ctls) which is 21 bytes. In i_usx2y_in04_int(), when ctl_snapshot_last == -2 (initialization path):

<pre>memcpy(usx2y->in04_last, usx2y->in04_buf, sizeof(usx2y->in04_last)); </pre>

This copies 24 bytes from a 21-byte slab allocation, reading 3 bytes past the end of the source object.

Introduce a USX2Y_IN04_SIZE constant defined as sizeof(struct us428_ctls) and use it consistently for the in04_last array, the in04_buf allocation, the URB transfer length, and the comparison loop, replacing the bare 24 and 21 literals throughout.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to 229cab526580f82839ae8e4e379753c8cf16952e (excl.)
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to 381495b5b3da12d714e53d9d12d955b13fe26eac (excl.)
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to b5753bdfd909f7f095fb464d67802b5e52cbadbf (excl.)
  • affected from 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 to 861111a14740e12c36d363e9830f8daa734279c9 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 2.6.12 is affected
  • unaffected from 0 to 2.6.12 (excl.)
  • unaffected from 6.12.111 to 6.12.* (incl.)
  • unaffected from 6.18.53 to 6.18.* (incl.)
  • unaffected from 7.2.7 to 7.2.* (incl.)
  • unaffected from 7.3-rc3 to * (incl.)

References