Page MenuHomeFreeBSD

vm_map: fix iterator jump size
ClosedPublic

Authored by dougm on Apr 23 2025, 8:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 18, 2:19 PM
Unknown Object (File)
Sun, May 18, 3:20 AM
Unknown Object (File)
Sat, May 17, 3:44 PM
Unknown Object (File)
Fri, May 16, 3:24 PM
Unknown Object (File)
Wed, May 14, 7:44 PM
Unknown Object (File)
Apr 30 2025, 4:35 PM
Unknown Object (File)
Apr 30 2025, 1:04 PM
Unknown Object (File)
Apr 29 2025, 7:40 AM
Subscribers

Details

Summary

The index value in the loop in vm_map_pmap_enter jumps by 1, or some superpage size, in each iteration. Jump by the superpage size only when the entire superpage is being mapped.

Fixes: b3d89a0cde94 ("vm_map: use page iterators in pmap_enter")
Reported-by: syzbot+1cc9ede76727d2ea2e8d@syzkaller.appspotmail.com

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

dougm requested review of this revision.Apr 23 2025, 8:42 PM
dougm created this revision.
This revision is now accepted and ready to land.Apr 24 2025, 6:57 AM
sys/vm/vm_map.c
2736–2740

On second thought, ...

dougm edited the summary of this revision. (Show Details)

Use 'jump' variable, as recommended.

This revision now requires review to proceed.Apr 24 2025, 7:27 AM
This revision is now accepted and ready to land.Apr 24 2025, 7:52 AM

I ran the syzkaller reproducer for an hour with D49987.154201.patch added. I added a further 4 hours of random test cases.
I did not observe any issues.

This revision was automatically updated to reflect the committed changes.