491968 matches found
CVE-2026-80870 drm/amdkfd: Validate CRIU-restored IDs before idr_alloc
In the Linux kernel, the following vulnerability has been resolved: drm/amdkfd: Validate CRIU-restored IDs before idralloc The KFD CRIU restore flow restores previously saved object IDs from userspace. For event restore: kfdcriurestoreevent - createsignalevent / createotherevent -...
CVE-2026-80870
CVE-2026-80870 affects the Linux kernel component drm/amdkfd (AMD Kernel Fusion Driver). The vulnerability exists in the CRIU restore flow, where userspace-provided object IDs are passed to idr_alloc() without validation in kfd_criu_restore_event() and criu_restore_memory_of_gpu() . If a restored...
CVE-2026-80870
In the Linux kernel, the following vulnerability has been resolved: drm/amdkfd: Validate CRIU-restored IDs before idralloc The KFD CRIU restore flow restores previously saved object IDs from userspace. For event restore: kfdcriurestoreevent - createsignalevent / createotherevent -...
CVE-2026-80869
CVE-2026-80869 affects the Linux kernel NTFS filesystem driver. In ntfs_read_inode_mount() , the $MFT attribute-list walk validated only that 6 bytes of each entry were in range, then read lowest_vcn (offset 8, 8 bytes) and mft_reference (offset 16) — fields beyond the proven boundary. Since al_e...
CVE-2026-80869 ntfs: bound the attribute-list entry in ntfs_read_inode_mount()
In the Linux kernel, the following vulnerability has been resolved: ntfs: bound the attribute-list entry in ntfsreadinodemount The $MFT attribute-list walk in ntfsreadinodemount validates each entry only with "u8 alentry + 6 alend" and "u8 alentry + le16tocpualentry-length alend", but then reads...
EUVD-2026-71499
In the Linux kernel, the following vulnerability has been resolved: ntfs: bound the attribute-list entry in ntfsreadinodemount The $MFT attribute-list walk in ntfsreadinodemount validates each entry only with "u8 alentry + 6 alend" and "u8 alentry + le16tocpualentry-length alend", but then reads...
CVE-2026-80868
In the Linux kernel, the following vulnerability has been resolved: ntfs3: Allocate iomap inlinedata using allocpage This fixes a BUG reported in iomapwriteendinline: iomapinlinedatavalid checks that the inlinedata fits within a page. If the inlinedata is allocated with kmemdup there's no guarant...
CVE-2026-80868 ntfs3: Allocate iomap inline_data using alloc_page
In the Linux kernel, the following vulnerability has been resolved: ntfs3: Allocate iomap inlinedata using allocpage This fixes a BUG reported in iomapwriteendinline: iomapinlinedatavalid checks that the inlinedata fits within a page. If the inlinedata is allocated with kmemdup there's no guarant...
EUVD-2026-71498
In the Linux kernel, the following vulnerability has been resolved: ntfs3: Allocate iomap inlinedata using allocpage This fixes a BUG reported in iomapwriteendinline: iomapinlinedatavalid checks that the inlinedata fits within a page. If the inlinedata is allocated with kmemdup there's no guarant...
CVE-2026-80868
CVE-2026-80868 affects the Linux kernel 's ntfs3 filesystem driver. The bug occurs in iomap_write_end_inline, where inline_data was allocated via kmemdup , which provides no guarantee of page alignment . The iomap_inline_data_valid check expects the data to fit within a page boundary, so the misa...
CVE-2026-80867
CVE-2026-80867 affects the Linux kernel on the Alpha architecture. The pci_mmap_resource() function failed to check security_locked_down(LOCKDOWN_PCI_ACCESS) before allowing userspace to mmap PCI BARs . The generic (non-Alpha) version has enforced this check since commit eb627e17727e to prevent D...
EUVD-2026-71497
In the Linux kernel, the following vulnerability has been resolved: alpha/PCI: Add securitylockeddown check to pcimmapresource Currently, Alpha's pcimmapresource does not check securitylockeddownLOCKDOWNPCIACCESS before allowing userspace to mmap PCI BARs. The generic version has had this check...
CVE-2026-80867 alpha/PCI: Add security_locked_down() check to pci_mmap_resource()
In the Linux kernel, the following vulnerability has been resolved: alpha/PCI: Add securitylockeddown check to pcimmapresource Currently, Alpha's pcimmapresource does not check securitylockeddownLOCKDOWNPCIACCESS before allowing userspace to mmap PCI BARs. The generic version has had this check...
CVE-2026-80866 tipc: avoid busy looping in tipc_exit_net()
In the Linux kernel, the following vulnerability has been resolved: tipc: avoid busy looping in tipcexitnet Blamed commit introduced a busy-wait loop in tipcexitnet to wait for pending UDP bearer cleanup works to complete: while atomicread&tn-wqcount condresched; This loop can busy-wait for a lon...
EUVD-2026-71496
In the Linux kernel, the following vulnerability has been resolved: tipc: avoid busy looping in tipcexitnet Blamed commit introduced a busy-wait loop in tipcexitnet to wait for pending UDP bearer cleanup works to complete: while atomicread&tn-wqcount condresched; This loop can busy-wait for a lon...
CVE-2026-80866
In the Linux kernel, the following vulnerability has been resolved: tipc: avoid busy looping in tipcexitnet Blamed commit introduced a busy-wait loop in tipcexitnet to wait for pending UDP bearer cleanup works to complete: while atomicread&tn-wqcount condresched; This loop can busy-wait for a lon...
CVE-2026-80866
CVE-2026-80866 affects the Linux kernel TIPC subsystem (specifically tipc_exit_net()). A prior commit introduced a busy-wait loop that spins while waiting for pending UDP bearer cleanup work to complete. When cond_resched() is a NOP—common for high-priority tasks or kernels built with CONFIG_PREE...
CVE-2026-80865
In the Linux kernel, the following vulnerability has been resolved: bpf: Add missing accessok call to copyusersyms As reported by sashiko we use getuser without prior accessok call on the user space pointer. Adding the missing call for the whole pointer array. Plus removing the err check in the...
CVE-2026-80865
CVE-2026-80865 affects the Linux kernel BPF subsystem , specifically the copy_user_syms function. The root cause is a missing access_ok call before using __get_user on a user-space pointer array, which could allow an invalid user-space pointer to be dereferenced without prior validation. The fix ...
CVE-2026-80865 bpf: Add missing access_ok call to copy_user_syms
In the Linux kernel, the following vulnerability has been resolved: bpf: Add missing accessok call to copyusersyms As reported by sashiko we use getuser without prior accessok call on the user space pointer. Adding the missing call for the whole pointer array. Plus removing the err check in the...