blob: 643fb48ae7734051d47f71e0f7b910593f3fe8a8 [file] [log] [blame]
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -07001// RUN: %clangxx -O1 %s -o %t && TSAN_OPTIONS="flush_memory_ms=1 memory_limit_mb=1" ASAN_OPTIONS="handle_segv=0 allow_user_segv_handler=1" %run %t 2>&1 | FileCheck %s
Stephen Hines86277eb2015-03-23 12:06:32 -07002
3// JVM uses SEGV to preempt threads. All threads do a load from a known address
4// periodically. When runtime needs to preempt threads, it unmaps the page.
5// Threads start triggering SEGV one by one. The signal handler blocks
6// threads while runtime does its thing. Then runtime maps the page again
7// and resumes the threads.
8// Previously this pattern conflicted with stop-the-world machinery,
9// because it briefly reset SEGV handler to SIG_DFL.
10// As the consequence JVM just silently died.
11
12// This test sets memory flushing rate to maximum, then does series of
13// "benign" SEGVs that are handled by signal handler, and ensures that
14// the process survive.
15
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070016#include <stdio.h>
17#include <stdlib.h>
Stephen Hines86277eb2015-03-23 12:06:32 -070018#include <signal.h>
19#include <sys/mman.h>
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080020#include <string.h>
21#include <unistd.h>
Stephen Hines86277eb2015-03-23 12:06:32 -070022
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080023unsigned long page_size;
Stephen Hines86277eb2015-03-23 12:06:32 -070024void *guard;
25
26void handler(int signo, siginfo_t *info, void *uctx) {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080027 mprotect(guard, page_size, PROT_READ | PROT_WRITE);
Stephen Hines86277eb2015-03-23 12:06:32 -070028}
29
30int main() {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080031 page_size = sysconf(_SC_PAGESIZE);
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070032 struct sigaction a, old;
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080033 memset(&a, 0, sizeof(a));
34 memset(&old, 0, sizeof(old));
Stephen Hines86277eb2015-03-23 12:06:32 -070035 a.sa_sigaction = handler;
36 a.sa_flags = SA_SIGINFO;
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070037 sigaction(SIGSEGV, &a, &old);
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080038 guard = mmap(0, 3 * page_size, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
39 guard = (char*)guard + page_size; // work around a kernel bug
Stephen Hines86277eb2015-03-23 12:06:32 -070040 for (int i = 0; i < 1000000; i++) {
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080041 mprotect(guard, page_size, PROT_NONE);
Stephen Hines86277eb2015-03-23 12:06:32 -070042 *(int*)guard = 1;
43 }
Pirama Arumuga Nainar7c915052015-04-08 08:58:29 -070044 sigaction(SIGSEGV, &old, 0);
Stephen Hines86277eb2015-03-23 12:06:32 -070045 fprintf(stderr, "DONE\n");
46}
47
48// CHECK: DONE