1135 matches found
CVE-2026-72491 net/9p: fix race condition on rdma->state in trans_rdma.c
In the Linux kernel, the following vulnerability has been resolved: net/9p: fix race condition on rdma-state in transrdma.c The rdma-state field is modified without holding reqlock in both recvdone and p9cmeventhandler, while rdmarequest accesses the same field under the reqlock spinlock. This...
CVE-2026-72491
In the Linux kernel CVE-2026-72491, a race condition exists in net/9p where rdma->state is modified in recv_done() and p9_cm_event_handler() without holding req_lock, while rdma_request() accesses the same field under req_lock. This inconsistent locking can cause lost state transitions (FLUSHI...
EUVD-2026-59350
In the Linux kernel, the following vulnerability has been resolved: xfrm: Fix xfrm state cache insertion race The xfrm input state cache insertion code checks the validity of the state before acquiring the global xfrmstatelock. Thus it's possible for someone else to kill the state after it passed...
CVE-2026-72451 xfrm: Fix xfrm state cache insertion race
In the Linux kernel, the following vulnerability has been resolved: xfrm: Fix xfrm state cache insertion race The xfrm input state cache insertion code checks the validity of the state before acquiring the global xfrmstatelock. Thus it's possible for someone else to kill the state after it passed...
EUVD-2026-59289
In the Linux kernel, the following vulnerability has been resolved: net/sched: schteql: Introduce slaveslock to avoid race condition and UAF The teql master-slaves singly linked list is not protected against multiple writes. It can be mod'ed concurently from teqlmasterxmit, teqldequeue, teqlinit...
CVE-2026-72390 net/sched: sch_teql: Introduce slaves_lock to avoid race condition and UAF
In the Linux kernel, the following vulnerability has been resolved: net/sched: schteql: Introduce slaveslock to avoid race condition and UAF The teql master-slaves singly linked list is not protected against multiple writes. It can be mod'ed concurently from teqlmasterxmit, teqldequeue, teqlinit...
CVE-2026-72390
CVE-2026-72390 affects the Linux kernel net/sched sch_teql, where the teql master’s slaves list can be mutated concurrently without a lock or RCU protection, enabling a slab-use-after-free in teql_master_xmit. The root cause is unsafely-modified master->slaves and NEXT_SLAVE() links. The fix a...
EUVD-2026-58906
In the Linux kernel, the following vulnerability has been resolved: dmaengine: dw-edma: Add spinlock to protect DONEINTMASK and ABORTINTMASK The DONEINTMASK and ABORTINTMASK registers are shared by all DMA channels, and modifying them requires a read-modify-write sequence. Because this operation ...
CVE-2026-72148
The CVE-2026-72148 entry concerns the Linux kernel’s dmaengine: dw-edma, where DONE_INT_MASK and ABORT_INT_MASK are shared across DMA channels and updated via a non-atomic read-modify-write sequence. This caused race conditions when two channels updated the registers concurrently. The affected co...
CVE-2026-72148 dmaengine: dw-edma: Add spinlock to protect DONE_INT_MASK and ABORT_INT_MASK
In the Linux kernel, the following vulnerability has been resolved: dmaengine: dw-edma: Add spinlock to protect DONEINTMASK and ABORTINTMASK The DONEINTMASK and ABORTINTMASK registers are shared by all DMA channels, and modifying them requires a read-modify-write sequence. Because this operation ...
CVE-2026-72121 can: bcm: add locking when updating filter and timer values
In the Linux kernel, the following vulnerability has been resolved: can: bcm: add locking when updating filter and timer values KCSAN detected a simultaneous access to timer values that can be overwritten in bcmrxsetup when updating timer and filter content while bcmrxhandler, bcmrxtimeouthandler...
CVE-2026-72121
The CVE pertains to the Linux kernel CAN subsystem (bcm) where a KCSAN race allowed simultaneous access to timer and filter state during CAN traffic. The fix adds a per-op bcm_rx_update_lock to guard updates to timer values (ival1/ival2/kt_ival1/kt_ival2/kt_lastmsg) and filter data (nframes/flags...
EUVD-2026-58879
In the Linux kernel, the following vulnerability has been resolved: can: bcm: add locking when updating filter and timer values KCSAN detected a simultaneous access to timer values that can be overwritten in bcmrxsetup when updating timer and filter content while bcmrxhandler, bcmrxtimeouthandler...
EUVD-2026-59027
In the Linux kernel, the following vulnerability has been resolved: locking/rt: Fix the incorrect RCU protection in rtspinunlock rtspinunlock releases the RCU protection before unlocking the lock. That opens the door for the following UAF scenario: T1 T2 spinlock&p-lock; rcureadlock; invalidatep;...
CVE-2026-72069 locking/rt: Fix the incorrect RCU protection in rt_spin_unlock()
In the Linux kernel, the following vulnerability has been resolved: locking/rt: Fix the incorrect RCU protection in rtspinunlock rtspinunlock releases the RCU protection before unlocking the lock. That opens the door for the following UAF scenario: T1 T2 spinlock&p-lock; rcureadlock; invalidatep;...
CVE-2026-72063 gpio: tegra: do not call pinctrl for GPIO direction
In the Linux kernel, the following vulnerability has been resolved: gpio: tegra: do not call pinctrl for GPIO direction tegragpiodirectioninput and tegragpiodirectionoutput already program the GPIO controller direction registers directly. The additional pinctrlgpiodirectioninput/output calls do n...
CVE-2026-72063
CVE-2026-72063 affects Linux kernel Tegra GPIO direction handling. The fix removes redundant pinctrl_gpio_direction_input()/pinctrl_gpio_direction_output() calls, which previously entered the pinctrl core and could sleep in atomic context while a per-line spinlock was held. tegra_gpio_direction_i...
CVE-2026-72037 net: lan743x: Initialize eth_syslock spinlock before use
In the Linux kernel, the following vulnerability has been resolved: net: lan743x: Initialize ethsyslock spinlock before use lan743xhardwareinit calls pci11x1xstrapgetstatus during the PCI11x1x probe sequence. That helper acquires the Ethernet subsystem hardware lock via lan743xhssyslockacquire,...
CVE-2026-72037
The CVE-2026-72037 entry affects the Linux kernel’s lan743x Ethernet subsystem. The root cause is a race in lan743x_hardware_init(): the adapter->eth_syslock_spinlock is used by lan743x_hs_syslock_acquire() before it is initialized, because strap status is read prior to spinlock initialization...
EUVD-2026-58995
In the Linux kernel, the following vulnerability has been resolved: net: lan743x: Initialize ethsyslock spinlock before use lan743xhardwareinit calls pci11x1xstrapgetstatus during the PCI11x1x probe sequence. That helper acquires the Ethernet subsystem hardware lock via lan743xhssyslockacquire,...