Files
clang-p2996/compiler-rt/test/dfsan/gep.c
Jianzhou Zhao fc1d39849e [dfsan] Add a flag about whether to propagate offset labels at gep
DFSan has flags to control flows between pointers and objects referred
by pointers. For example,

a = *p;
L(a) = L(*p)        when -dfsan-combine-pointer-labels-on-load = false
L(a) = L(*p) + L(p) when -dfsan-combine-pointer-labels-on-load = true

*p = b;
L(*p) = L(b)        when -dfsan-combine-pointer-labels-on-store = false
L(*p) = L(b) + L(p) when -dfsan-combine-pointer-labels-on-store = true
The question is what to do with p += c.

In practice we found many confusing flows if we propagate labels from c
to p. So a new flag works like this

p += c;
L(p) = L(p)        when -dfsan-propagate-via-pointer-arithmetic = false
L(p) = L(p) + L(c) when -dfsan-propagate-via-pointer-arithmetic = true

Reviewed-by: gbalats

Differential Revision: https://reviews.llvm.org/D103176
2021-05-28 00:06:19 +00:00

29 lines
745 B
C

// 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;
}