/* * Copyright (c) 2002, Intel Corporation. All rights reserved. * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. * * MPR References within the address range starting at pa and * continuing for len bytes to whole pages following the end * of an object shall result in delivery of a SIGBUS signal. * * Test step: * 1. Map a file with size = 1/2 page_size, while len = 2 * page_size * 2. If Memory Protection option is supported, read the second page * beyond the object (mapped file) size (NOT the patial page), * should get SIGBUS; */ #define _XOPEN_SOURCE 600 #include #include #include #include #include #include #include #include #include #include #include #include "posixtest.h" #define TNAME "mmap/11-2.c" void sigbus_handler (int signum) { printf("Test Pass: " TNAME " Trigger SIGBUS\n"); exit(PTS_PASS); } int main() { #ifndef _POSIX_MEMORY_PROTECTION printf("_POSIX_MEMORY_PROTECTION is not defined\n"); return PTS_UNTESTED; #endif char tmpfname[256]; long page_size; long total_size; void *pa = NULL; void *addr = NULL; size_t len; int flag; int fd; off_t off = 0; int prot; char *ch = NULL; struct sigaction sa; page_size = sysconf(_SC_PAGE_SIZE); /* Size of the file to be mapped */ total_size = page_size / 2; /* mmap 2 pages */ len = page_size * 2; sigfillset(&sa.sa_mask); sa.sa_handler = sigbus_handler; sigaction(SIGBUS, &sa, NULL); /* Create tmp file */ snprintf(tmpfname, sizeof(tmpfname), "/tmp/pts_mmap_11_2_%d", getpid()); unlink(tmpfname); fd = open(tmpfname, O_CREAT | O_RDWR | O_EXCL, S_IRUSR | S_IWUSR); if (fd == -1) { printf(TNAME " Error at open(): %s\n", strerror(errno)); exit(PTS_UNRESOLVED); } unlink(tmpfname); if (ftruncate(fd, total_size) == -1) { printf(TNAME "Error at ftruncate(): %s\n", strerror(errno)); exit(PTS_UNRESOLVED); } prot = PROT_READ | PROT_WRITE; flag = MAP_SHARED; off = 0; pa = mmap(addr, len, prot, flag, fd, off); if (pa == MAP_FAILED) { printf("Test FAIL: " TNAME " Error at mmap(): %s\n", strerror(errno)); exit(PTS_FAIL); } /* Read the second page */ ch = pa + page_size + 1; /* This reference should trigger SIGBUS */ *ch = 0; /* wait for a while */ sleep(1); printf("Test Fail: " TNAME " Did not trigger SIGBUS, " "while Memory Protection is enabled\n"); exit(PTS_FAIL); }