summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-07-25 10:15:07 -0700
committerElliott Hughes <enh@google.com>2013-07-25 10:15:07 -0700
commite320a8c7802eb54f80693db03bb2a201580875e7 (patch)
tree2b803053b2b802f4ad01869d0f479a3bae89f6a2 /libc
parentbfba6aac99115972fad3341aef595c0ca1f7258b (diff)
downloadbionic-e320a8c7802eb54f80693db03bb2a201580875e7.zip
bionic-e320a8c7802eb54f80693db03bb2a201580875e7.tar.gz
bionic-e320a8c7802eb54f80693db03bb2a201580875e7.tar.bz2
Avoid sign extension of the mmap offset.
off_t is signed to support seeking backwards, but that's a liability when using off_t to represent a subset of a file. Change-Id: I2a3615166eb16212347eb47f1242e3bfb93c2022
Diffstat (limited to 'libc')
-rw-r--r--libc/bionic/mmap.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/bionic/mmap.cpp b/libc/bionic/mmap.cpp
index 864dea2..febc459 100644
--- a/libc/bionic/mmap.cpp
+++ b/libc/bionic/mmap.cpp
@@ -37,13 +37,14 @@ extern "C" void* __mmap2(void*, size_t, int, int, int, size_t);
#define MMAP2_SHIFT 12 // 2**12 == 4096
-void* mmap(void* addr, size_t size, int prot, int flags, int fd, long offset) {
+void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) {
if (offset & ((1UL << MMAP2_SHIFT)-1)) {
errno = EINVAL;
return MAP_FAILED;
}
- void* result = __mmap2(addr, size, prot, flags, fd, offset >> MMAP2_SHIFT);
+ size_t unsigned_offset = static_cast<size_t>(offset); // To avoid sign extension.
+ void* result = __mmap2(addr, size, prot, flags, fd, unsigned_offset >> MMAP2_SHIFT);
if (result != MAP_FAILED && (flags & (MAP_PRIVATE | MAP_ANONYMOUS)) != 0) {
ErrnoRestorer errno_restorer;