File: gep.c

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-20
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,496,436 kB
  • sloc: cpp: 5,593,990; ansic: 986,873; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,547; xml: 953; cs: 573; fortran: 567
file content (28 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (5)
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
// RUN: %clang_dfsan %s -mllvm -dfsan-combine-offset-labels-on-gep=false -o %t && %run %t
// RUN: %clang_dfsan %s -DPROP_OFFSET_LABELS -o %t && %run %t
//
// REQUIRES: x86_64-target-arch

// Tests that labels are propagated through GEP.

#include <sanitizer/dfsan_interface.h>
#include <assert.h>

int main(void) {
  int i = 1;
  int *p = &i;
  int j = 2;
  // test that pointer arithmetic propagates labels in terms of the flag.
  dfsan_set_label(1, &i, sizeof(i));
  p += i;
#ifdef PROP_OFFSET_LABELS
  assert(dfsan_get_label(p) == 1);
#else
  assert(dfsan_get_label(p) == 0);
#endif
  // test that non-pointer operations always propagate labels.
  dfsan_set_label(2, &j, sizeof(j));
  j += i;
  assert(dfsan_get_label(j) == 3);
  return 0;
}