Page MenuHomeFreeBSD

vm_map: fix iterator jump size
ClosedPublic

Authored by dougm on Wed, Apr 23, 8:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Apr 25, 11:11 AM
Unknown Object (File)
Fri, Apr 25, 8:54 AM
Unknown Object (File)
Fri, Apr 25, 8:09 AM
Unknown Object (File)
Fri, Apr 25, 6:29 AM
Unknown Object (File)
Fri, Apr 25, 6:03 AM
Unknown Object (File)
Thu, Apr 24, 4:49 PM
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

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

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

On second thought, ...

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

Use 'jump' variable, as recommended.

This revision now requires review to proceed.Thu, Apr 24, 7:27 AM
This revision is now accepted and ready to land.Thu, Apr 24, 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.