clean up and fix logic for making mmap fail on invalid/unsupported offsets
authorRich Felker <dalias@aerifal.cx>
Thu, 20 Dec 2012 17:16:02 +0000 (12:16 -0500)
committerRich Felker <dalias@aerifal.cx>
Thu, 20 Dec 2012 17:16:02 +0000 (12:16 -0500)
commitd12f2ed282745db172cbb37b18717ad0b8e3c534
tree5b37d6cf566c7b3e736093ffd7a9489c999cf2a0
parent5d5ab51862cbd010bdf52dc3b04b0967450bcd1a
clean up and fix logic for making mmap fail on invalid/unsupported offsets

the previous logic was assuming the kernel would give EINVAL when
passed an invalid address, but instead with MAP_FIXED it was giving
EPERM, as it considered this an attempt to map over kernel memory.
instead of trying to get the kernel to do the rigth thing, the new
code just handles the error in userspace.

I have also cleaned up the code to use a single mask to check for
invalid low bits and unsupported high bits, so it's simpler and more
clearly correct. the old code was actually wrong for sizeof(long)
smaller than sizeof(off_t) but not equal to 4; now it should be
correct for all possibilities.

for 64-bit systems, the low-bits test is new and extraneous (the
kernel should catch the error anyway when the mmap2 syscall is not
used), but it's cheap anyway. if this is an issue, the OFF_MASK
definition could be tweaked to omit the low bits when SYS_mmap2 is not
defined.
src/mman/mmap.c