Exploring munmap() on page zero and on unmapped address space
https://utcc.utoronto.ca/~cks/space/blog/unix/MunmapPageZero [utcc.utoronto.ca]
2020-05-15 14:43
The difference between Linux and FreeBSD is in what they consider to be ‘outside the valid range for the address space of a process’. FreeBSD evidently considers page zero (and probably low memory in general) to always be outside this range, and thus munmap() fails. Linux does not; while it doesn’t normally let you mmap() memory in that area, for good reasons, it is not intrinsically outside the address space. If I’m reading the Linux kernel code correctly, no low address range is ever considered invalid, only address ranges that cross above the top of user space.
source: L