CVE Catalog

CVE-2026-90021

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, f_midi_alloc() does not initialize the work structure if f_midi_bind() is never called. The condition in f_midi_free then becomes true, causing a warning in __flush_work due to work->func = 0. The fix moves INIT_WORK from f_midi_bind() to f_midi_alloc().

Risk Assessment

An uninitialized work structure can cause kernel warnings and system instability during operations on a USB MIDI gadget device.

Recommendation

Update the Linux kernel to a version with the fix that moves INIT_WORK into f_midi_alloc().

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: usb: gadget: f_midi: initialize work in f_midi_alloc() f_midi_alloc initializes free_ref to 1 and it can only be incremented when a sound card is registered via f_midi_register_card(). f_midi_register_card() is only called in f_midi_bind() which actually performs INIT_WORK. If f_midi_bind() is never run, work is not initialized and the if condition in f_midi_free becomes true, this results in a warning later in __flush_work as work->func = 0. Fix this by moving INIT_WORK from f_midi_bind() to f_midi_alloc().

Vulnerability data from NVD (NIST) · CISA KEV · EPSS