In the Linux kernel, the following vulnerability has been resolved:
mmmremap.c: avoid pointless invalidaterangestart/end on mremap(old_size=0)
If an mremap() syscall with oldsize=0 ends up in movepagetables(), it will call invalidaterangestart()/invalidaterange_end() unnecessarily, i.e. with an empty range.
This causes a WARN in KVM's mmunotifier. In the past, empty ranges have been diagnosed to be off-by-one bugs, hence the WARNing. Given the low (so far) number of unique reports, the benefits of detecting more buggy callers seem to outweigh the cost of having to fix cases such as this one, where userspace is doing something silly. In this particular case, an early return from movepage_tables() is enough to fix the issue.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2022/49xxx/CVE-2022-49077.json",
"cna_assigner": "Linux"
}