File: munmap_invalid.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 (29 lines) | stat: -rw-r--r-- 826 bytes parent folder | download | duplicates (24)
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
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s

// Fails on Darwin bots:
// https://green.lab.llvm.org/green//job/clang-stage1-RA/25954/consoleFull
// and on clang-s390x-linux-lnt:
// https://lab.llvm.org/buildbot#builders/45/builds/5224
// Presumably the test is not 100% legal and kernel is allowed
// to unmap part of the range (e.g. .text) and then fail.
// So let's be conservative:
// REQUIRES: linux, x86_64-target-arch

#include "test.h"
#include <sys/mman.h>

int main() {
  // These bogus munmap's must not crash tsan runtime.
  munmap(0, 1);
  munmap(0, -1);
  munmap((void *)main, -1);
  void *p =
      mmap(0, 4096, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
  munmap(p, (1ull << 60));
  munmap(p, -10000);
  munmap(p, 0);
  fprintf(stderr, "DONE\n");
  return 0;
}

// CHECK: DONE