blob: 7d64ae0215a69d35ad99c7bd497f721aa5a7d4f8 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
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. Levin977550d2015-02-27 04:09:56 +000028#ifdef HAVE_CONFIG_H
29# include "config.h"
30#endif
31#include <dlfcn.h>
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000032#include <fcntl.h>
Dmitry V. Levine96cb622015-02-15 15:52:02 +000033#include <unistd.h>
34#include <sys/mman.h>
35#include <sys/wait.h>
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000036#include <sys/sendfile.h>
Dmitry V. Levine96cb622015-02-15 15:52:02 +000037
38int main(void)
39{
Dmitry V. Levin977550d2015-02-27 04:09:56 +000040 const unsigned long pagesize = sysconf(_SC_PAGESIZE);
Dmitry V. Levine96cb622015-02-15 15:52:02 +000041
Mike Frysingereb202ba2015-03-02 20:04:34 -050042#ifdef __s390__
43 /*
44 * The si_addr field is unreliable:
45 * https://marc.info/?l=linux-s390&m=142515870124248&w=2
46 */
47 return 77;
48#endif
49
Dmitry V. Levine96cb622015-02-15 15:52:02 +000050 /* write instruction pointer length to the log */
51 if (write(-1, NULL, 2 * sizeof(void *)) >= 0)
52 return 77;
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000053
Dmitry V. Levine96cb622015-02-15 15:52:02 +000054 /* just a noticeable line in the log */
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000055 if (munmap(&main, 0) >= 0)
Dmitry V. Levine96cb622015-02-15 15:52:02 +000056 return 77;
57
58 int pid = fork();
59 if (pid < 0)
60 return 77;
61
62 if (!pid) {
Dmitry V. Levin977550d2015-02-27 04:09:56 +000063 const unsigned long mask = ~(pagesize - 1);
64 unsigned long addr = (unsigned long) &main & mask;
65 unsigned long size = pagesize << 1;
66
67#ifdef HAVE_DLADDR
68 Dl_info info;
69 if (dladdr(&main, &info)) {
70 const unsigned long base =
71 (unsigned long) info.dli_fbase & mask;
72 if (base < addr) {
73 size += addr - base;
74 addr = base;
75 }
76 } else
77#endif
78 {
79 addr -= size;
80 size <<= 1;
81 }
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000082
Dmitry V. Levine96cb622015-02-15 15:52:02 +000083 /* SIGSEGV is expected */
Dmitry V. Levin977550d2015-02-27 04:09:56 +000084 (void) munmap((void *) addr, size);
85 (void) munmap((void *) addr, size);
Dmitry V. Levine96cb622015-02-15 15:52:02 +000086 return 77;
87 }
88
89 int status;
90 if (wait(&status) != pid ||
91 !WIFSIGNALED(status) ||
92 WTERMSIG(status) != SIGSEGV)
93 return 77;
94
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000095 /* dump process map for debug purposes */
96 close(0);
97 if (!open("/proc/self/maps", O_RDONLY))
Dmitry V. Levin977550d2015-02-27 04:09:56 +000098 (void) sendfile(1, 0, NULL, pagesize);
Dmitry V. Levin1c5fead2015-02-23 22:37:40 +000099
Dmitry V. Levine96cb622015-02-15 15:52:02 +0000100 return 0;
101}