File: mmap_stress2.cpp

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (51 lines) | stat: -rw-r--r-- 1,544 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// RUN: %clang_tsan -O1 %s -o %t && %env_tsan_opts=report_atomic_races=0 %run %t 2>&1 | FileCheck %s
// This test exposed non-atomicity in mmap interceptor
// which made shadow for the region temporarily unmapped.
// This resulted in crashes in the Accesser thread.
#include "test.h"
#include <errno.h>
#include <sys/mman.h>

// The size needs to be large enough to trigger
// large region optimization in the runtime.
const size_t kMmapSize = 16 << 20;

void *Remapper(void *arg) {
  for (;;) {
    void *p = mmap(arg, kMmapSize, PROT_READ | PROT_WRITE,
                   MAP_FIXED | MAP_PRIVATE | MAP_ANON, -1, 0);
    if (p == MAP_FAILED)
      exit(printf("mmap failed: %d\n", errno));
  }
  return 0;
}

void *Accesser(void *arg) {
  unsigned rnd = time(0);
  for (;;) {
    int index = rand_r(&rnd) % kMmapSize;
    char *p = &((char *)arg)[index];
    __atomic_fetch_add(p, 1, __ATOMIC_ACQ_REL);
  }
  return 0;
}

int main() {
  void *p = mmap(0, kMmapSize, PROT_READ | PROT_WRITE,
                 MAP_PRIVATE | MAP_ANON, -1, 0);
  if (p == MAP_FAILED)
    exit(printf("mmap failed: %d\n", errno));
  pthread_attr_t attr;
  pthread_attr_init(&attr);
  pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
  pthread_t th[2];
  if (pthread_create(&th[0], &attr, Remapper, p))
    exit(printf("pthread_create failed: %d\n", errno));
  if (pthread_create(&th[1], &attr, Accesser, p))
    exit(printf("pthread_create failed: %d\n", errno));
  pthread_attr_destroy(&attr);
  sleep(3);
  fprintf(stderr, "DONE\n");
}

// CHECK: DONE