Page MenuHomeFreeBSD

improve error checking for modifcations to mmap len parameter
ClosedPublic

Authored by dougm on Jun 10 2019, 7:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 27, 7:33 AM
Unknown Object (File)
Sun, Apr 26, 3:45 PM
Unknown Object (File)
Sat, Apr 25, 2:46 PM
Unknown Object (File)
Sat, Apr 25, 12:38 PM
Unknown Object (File)
Fri, Apr 24, 5:51 PM
Unknown Object (File)
Thu, Apr 23, 7:10 PM
Unknown Object (File)
Sat, Apr 18, 2:58 PM
Unknown Object (File)
Wed, Apr 15, 8:08 AM
Subscribers

Details

Summary

Change the check for 'size' wrapping around to zero in kern_mmap to account for both the lower and upper bound modifications. Change the error returned to ENOMEM. Rename the parameter size to len and make size a local variable that stores the value of len after it has been modified.

This addresses concerns expressed by Bruce Evans after r348843.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Jun 10 2019, 7:57 PM
This revision was automatically updated to reflect the committed changes.

I do not seem to be able to boot successfully with this patch?

alc added inline comments.
head/sys/vm/vm_mmap.c
262

Shouldn't this be (size < len)?

head/sys/vm/vm_mmap.c
262

Yes, it should.