File: longjmp_chk.c

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (51 lines) | stat: -rw-r--r-- 1,294 bytes parent folder | download | duplicates (44)
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
// Verify that use of longjmp() in a _FORTIFY_SOURCE'd library (without ASAN)
// is correctly intercepted such that the stack is unpoisoned.
// Note: it is essential that the external library is not built with ASAN,
// otherwise it would be able to unpoison the stack before use.
//
// RUN: %clang -DIS_LIBRARY -D_FORTIFY_SOURCE=2 -O2 %s -c -o %t.o
// RUN: %clang_asan -O2 %s %t.o -o %t
// RUN: %run %t

#ifdef IS_LIBRARY
/* the library */
#include <setjmp.h>
#include <assert.h>
#include <sanitizer/asan_interface.h>

static jmp_buf jenv;

void external_callme(void (*callback)(void)) {
  if (setjmp(jenv) == 0) {
    callback();
  }
}

void external_longjmp(char *msg) {
  longjmp(jenv, 1);
}

void external_check_stack(void) {
  char buf[256] = "";
  for (int i = 0; i < 256; i++) {
    assert(!__asan_address_is_poisoned(buf + i));
  }
}
#else
/* main program */
extern void external_callme(void (*callback)(void));
extern void external_longjmp(char *msg);
extern void external_check_stack(void);

static void callback(void) {
  char msg[16];   /* Note: this triggers addition of a redzone. */
  /* Note: msg is passed to prevent compiler optimization from removing it. */
  external_longjmp(msg);
}

int main() {
  external_callme(callback);
  external_check_stack();
  return 0;
}
#endif