aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/invalid-pointer-pairs-compare-success.cc
blob: d0d92265f0023344ded77fb2b55cfca4787bf23e (plain) (blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// RUN: %clangxx_asan -O0 %s -o %t -mllvm -asan-detect-invalid-pointer-pair

// RUN: %env_asan_opts=detect_invalid_pointer_pairs=2 %run %t

#include <assert.h>
#include <stdlib.h>

int foo(char *p) {
  char *p2 = p + 20;
  return p > p2;
}

int bar(char *p, char *q) {
  return p <= q;
}

int baz(char *p, char *q) {
  return p != 0 && p < q;
}

char global[8192] = {};
char small_global[7] = {};

int main() {
  // Heap allocated memory.
  char *p = (char *)malloc(42);
  int r = foo(p);
  free(p);

  p = (char *)malloc(1024);
  bar(p, p + 1024);
  bar(p + 1024, p + 1023);
  bar(p + 1, p + 1023);
  free(p);

  p = (char *)malloc(4096);
  bar(p, p + 4096);
  bar(p + 10, p + 100);
  bar(p + 1024, p + 4096);
  bar(p + 4095, p + 4096);
  bar(p + 4095, p + 4094);
  bar(p + 100, p + 4096);
  bar(p + 100, p + 4094);
  free(p);

  // Global variable.
  bar(&global[0], &global[1]);
  bar(&global[1], &global[2]);
  bar(&global[2], &global[1]);
  bar(&global[0], &global[100]);
  bar(&global[1000], &global[7000]);
  bar(&global[500], &global[10]);
  p = &global[0];
  bar(p, p + 8192);
  p = &global[8000];
  bar(p, p + 192);

  p = &small_global[0];
  bar(p, p + 1);
  bar(p, p + 7);
  bar(p + 7, p + 1);
  bar(p + 6, p + 7);
  bar(p + 7, p + 7);

  // Stack variable.
  char stack[10000];
  bar(&stack[0], &stack[100]);
  bar(&stack[1000], &stack[9000]);
  bar(&stack[500], &stack[10]);

  baz(0, &stack[10]);

  return 0;
}