sim: invalid alignment checks in mmap and mremap
authorTom Jablin <tjablin@gmail.com>
Mon, 20 Oct 2014 21:45:25 +0000 (16:45 -0500)
committerTom Jablin <tjablin@gmail.com>
Mon, 20 Oct 2014 21:45:25 +0000 (16:45 -0500)
commitc6731e331a63db58f3745187c95342549232c752
tree9e4da69f60c62ee41eba918a8fdd38d2c795180e
parent7254d5742a7b9df0f24fcf5b35e231a0fa0d777a
sim: invalid alignment checks in mmap and mremap
Presently, the alignment checks in the mmap and mremap implementations
in syscall_emul.hh are wrong. The checks are implemented as:

if ((start % TheISA::PageBytes) != 0 ||
        (length % TheISA::PageBytes) != 0) {
    warn("mmap failing: arguments not page-aligned: "
            "start 0x%x length 0x%x",
            start, length);
    return -EINVAL;
}

This checks that both the start and the length arguments of the mmap
syscall are checked for page-alignment. However, the POSIX specification says:

The off argument is constrained to be aligned and sized according to the value
returned by sysconf() when passed _SC_PAGESIZE or _SC_PAGE_SIZE. When MAP_FIXED
is specified, the application shall ensure that the argument addr also meets
these constraints. The implementation performs mapping operations over whole
pages. Thus, while the argument len need not meet a size or alignment
constraint, the implementation shall include, in any mapping operation, any
partial page specified by the range [pa,pa+len).

So the length parameter should not be checked for page-alignment. By contrast,
the current implementation fails to check the offset argument, which must be
page aligned.

Committed by: Nilay Vaish <nilay@cs.wisc.edu>
src/sim/syscall_emul.hh