
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2022-49257 is a vulnerability in the Linux kernel's watchqueue subsystem that was discovered and fixed in 2022. The issue involves a NULL pointer dereference in the error cleanup code of the watchqueuesetsize() function, where the code doesn't properly handle NULL pointers when attempting to free buffer pages that were allocated (Kernel Git).
The vulnerability occurs in the watchqueuesetsize() function within kernel/watchqueue.c. The error cleanup code attempts to free pages using free_page() without checking if the pointer is NULL. This can lead to a NULL pointer dereference when trying to free buffer pages. The issue stems from the error cleanup code not accounting for the fact that free_page() cannot handle NULL pointers when attempting to free previously allocated buffer pages (Kernel Git).
When triggered, this vulnerability causes a kernel crash due to a NULL pointer dereference, which can result in a denial of service condition. The issue manifests as a KASAN (Kernel Address Sanitizer) error reporting a null-ptr-deref in _freepages+0x1f/0x1b0 at mm/page_alloc.c:5473 (Kernel Git).
The issue has been fixed by modifying the cleanup code to only call _freepage() on pages that were actually allocated. The fix changes the loop condition from 'for (i = 0; i < nr_pages; i++)' to 'while (--i >= 0)', ensuring that only allocated pages are freed (Kernel Git).
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."