summaryrefslogtreecommitdiff
path: root/src/cpu/o3/cpu.cc
diff options
context:
space:
mode:
authorTom Jablin <tjablin@gmail.com>2014-10-20 16:45:25 -0500
committerTom Jablin <tjablin@gmail.com>2014-10-20 16:45:25 -0500
commitc6731e331a63db58f3745187c95342549232c752 (patch)
tree9e4da69f60c62ee41eba918a8fdd38d2c795180e /src/cpu/o3/cpu.cc
parent7254d5742a7b9df0f24fcf5b35e231a0fa0d777a (diff)
downloadgem5-c6731e331a63db58f3745187c95342549232c752.tar.xz
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>
Diffstat (limited to 'src/cpu/o3/cpu.cc')
0 files changed, 0 insertions, 0 deletions