Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Dmitry V. Levin <ldv@altlinux.org> |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 17 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 18 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 19 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 21 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 25 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
Dmitry V. Levin | 0c8853c | 2016-01-02 13:28:43 +0000 | [diff] [blame^] | 28 | #include "tests.h" |
Dmitry V. Levin | 977550d | 2015-02-27 04:09:56 +0000 | [diff] [blame] | 29 | #include <dlfcn.h> |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 30 | #include <fcntl.h> |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 31 | #include <unistd.h> |
| 32 | #include <sys/mman.h> |
| 33 | #include <sys/wait.h> |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 34 | #include <sys/sendfile.h> |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 35 | |
| 36 | int main(void) |
| 37 | { |
Dmitry V. Levin | 977550d | 2015-02-27 04:09:56 +0000 | [diff] [blame] | 38 | const unsigned long pagesize = sysconf(_SC_PAGESIZE); |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 39 | |
Mike Frysinger | eb202ba | 2015-03-02 20:04:34 -0500 | [diff] [blame] | 40 | #ifdef __s390__ |
| 41 | /* |
| 42 | * The si_addr field is unreliable: |
| 43 | * https://marc.info/?l=linux-s390&m=142515870124248&w=2 |
| 44 | */ |
| 45 | return 77; |
| 46 | #endif |
| 47 | |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 48 | /* write instruction pointer length to the log */ |
| 49 | if (write(-1, NULL, 2 * sizeof(void *)) >= 0) |
| 50 | return 77; |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 51 | |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 52 | /* just a noticeable line in the log */ |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 53 | if (munmap(&main, 0) >= 0) |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 54 | return 77; |
| 55 | |
| 56 | int pid = fork(); |
| 57 | if (pid < 0) |
| 58 | return 77; |
| 59 | |
| 60 | if (!pid) { |
Dmitry V. Levin | 977550d | 2015-02-27 04:09:56 +0000 | [diff] [blame] | 61 | const unsigned long mask = ~(pagesize - 1); |
| 62 | unsigned long addr = (unsigned long) &main & mask; |
| 63 | unsigned long size = pagesize << 1; |
| 64 | |
| 65 | #ifdef HAVE_DLADDR |
| 66 | Dl_info info; |
| 67 | if (dladdr(&main, &info)) { |
| 68 | const unsigned long base = |
| 69 | (unsigned long) info.dli_fbase & mask; |
| 70 | if (base < addr) { |
| 71 | size += addr - base; |
| 72 | addr = base; |
| 73 | } |
| 74 | } else |
| 75 | #endif |
| 76 | { |
| 77 | addr -= size; |
| 78 | size <<= 1; |
| 79 | } |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 80 | |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 81 | /* SIGSEGV is expected */ |
Dmitry V. Levin | 977550d | 2015-02-27 04:09:56 +0000 | [diff] [blame] | 82 | (void) munmap((void *) addr, size); |
| 83 | (void) munmap((void *) addr, size); |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 84 | return 77; |
| 85 | } |
| 86 | |
| 87 | int status; |
| 88 | if (wait(&status) != pid || |
| 89 | !WIFSIGNALED(status) || |
| 90 | WTERMSIG(status) != SIGSEGV) |
| 91 | return 77; |
| 92 | |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 93 | /* dump process map for debug purposes */ |
| 94 | close(0); |
| 95 | if (!open("/proc/self/maps", O_RDONLY)) |
Dmitry V. Levin | 977550d | 2015-02-27 04:09:56 +0000 | [diff] [blame] | 96 | (void) sendfile(1, 0, NULL, pagesize); |
Dmitry V. Levin | 1c5fead | 2015-02-23 22:37:40 +0000 | [diff] [blame] | 97 | |
Dmitry V. Levin | e96cb62 | 2015-02-15 15:52:02 +0000 | [diff] [blame] | 98 | return 0; |
| 99 | } |