Enable sys_adjtimex() on arm-linux. Fixes #412408.
[valgrind.git] / memcheck / tests / mempool2.c
blob4c8683c2200d8649c5b6b0d9a92e82c8895da02e
2 // Simplified version of mempool.c, that is more oriented towards
3 // checking that the description of invalid addresses is correct.
5 #include <stdio.h>
6 #include <unistd.h>
7 #include "tests/sys_mman.h"
8 #include <assert.h>
9 #include <stdlib.h>
11 #include "../memcheck.h"
13 #define SUPERBLOCK_SIZE 100000
14 #define REDZONE_SIZE 8
16 typedef struct _level_list
18 struct _level_list *next;
19 char *where;
20 // Padding ensures the struct is the same size on 32-bit and 64-bit
21 // machines.
22 char padding[16 - 2*sizeof(char*)];
23 } level_list;
25 typedef struct _pool {
26 char *mem;
27 char *where;
28 level_list *levels;
29 int size, left;
30 // Padding ensures the struct is the same size on 32-bit and 64-bit
31 // machines.
32 char padding[24 - 3*sizeof(char*)];
33 } pool;
35 pool *make_pool( int use_mmap )
37 pool *p;
39 if (use_mmap) {
40 p = (pool *)mmap(0, sizeof(pool), PROT_READ|PROT_WRITE|PROT_EXEC,
41 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
43 PROT_READ|PROT_WRITE|PROT_EXEC,
44 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
45 } else {
46 p = (pool *)malloc(sizeof(pool));
47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
50 p->size = p->left = SUPERBLOCK_SIZE;
51 p->levels = NULL;
52 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
53 return p;
56 void push(pool *p, int use_mmap )
58 level_list *l;
60 if (use_mmap)
61 l = (level_list *)mmap(0, sizeof(level_list),
62 PROT_READ|PROT_WRITE|PROT_EXEC,
63 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
64 else
65 l = (level_list *)malloc(sizeof(level_list));
67 l->next = p->levels;
68 l->where = p->where;
69 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
70 p->levels = l;
73 void pop(pool *p, int use_mmap)
75 level_list *l = p->levels;
76 p->levels = l->next;
77 VALGRIND_DESTROY_MEMPOOL(l->where);
78 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where);
79 p->where = l->where;
80 if (use_mmap)
81 munmap(l, sizeof(level_list));
82 else
83 free(l);
86 void destroy_pool(pool *p, int use_mmap)
88 level_list *l = p->levels;
90 while(l) {
91 pop(p, use_mmap);
93 if (use_mmap) {
94 munmap(p->mem, SUPERBLOCK_SIZE);
95 munmap(p, sizeof(pool));
96 } else {
97 free(p->mem);
98 free(p);
102 char *allocate(pool *p, int size)
104 char *where;
105 p->left -= size + (REDZONE_SIZE*2);
106 where = p->where + REDZONE_SIZE;
107 p->where += size + (REDZONE_SIZE*2);
108 VALGRIND_MEMPOOL_ALLOC(p->levels->where, where, size);
109 return where;
112 //-------------------------------------------------------------------------
113 // Rest
114 //-------------------------------------------------------------------------
116 void test(void)
118 char *x1, *x2;
119 char res = 0;
121 // p1 is a malloc-backed pool
122 pool *p1 = make_pool(0);
124 // p2 is a mmap-backed pool
125 pool *p2 = make_pool(1);
127 push(p1, 0);
128 push(p2, 1);
130 x1 = allocate(p1, 10);
131 x2 = allocate(p2, 20);
133 fprintf(stderr,
134 "\n------ out of range reads in malloc-backed pool ------\n\n");
135 res += x1[-1];
136 res += x1[10];
138 fprintf(stderr,
139 "\n------ out of range reads in mmap-backed pool ------\n\n");
140 res += x2[-1]; // invalid
141 res += x2[20]; // invalid
143 fprintf(stderr,
144 "\n------ Illegal memory pool address ------\n\n");
145 VALGRIND_MEMPOOL_FREE(p1, x1); // Should be p1->mem
147 fprintf(stderr,
148 "\n------ read free in malloc-backed pool ------\n\n");
149 VALGRIND_MEMPOOL_FREE(p1->mem, x1);
150 res += x1[5];
152 fprintf(stderr,
153 "\n------ read free in mmap-backed pool ------\n\n");
154 VALGRIND_MEMPOOL_FREE(p2->mem, x2);
155 res += x2[11];
157 fprintf(stderr,
158 "\n------ double free in malloc-backed pool ------\n\n");
159 VALGRIND_MEMPOOL_FREE(p1->mem, x1);
161 fprintf(stderr,
162 "\n------ double free in mmap-backed pool ------\n\n");
163 VALGRIND_MEMPOOL_FREE(p2->mem, x2);
166 // test that redzone are still protected even if the user forgets
167 // to mark the superblock noaccess.
168 char superblock[100];
170 VALGRIND_CREATE_MEMPOOL(superblock, REDZONE_SIZE, 0);
171 // User should mark the superblock no access to benefit
172 // from full Valgrind memcheck protection.
173 // VALGRIND_MEMPOOL_ALLOC will however still ensure the
174 // redzones are protected.
175 VALGRIND_MEMPOOL_ALLOC(superblock, superblock+30, 10);
177 res += superblock[30]; // valid
178 res += superblock[39]; // valid
180 fprintf(stderr,
181 "\n------ 2 invalid access in 'no no-access superblock' ---\n\n");
182 res += superblock[29]; // invalid
183 res += superblock[40]; // invalid
185 VALGRIND_DESTROY_MEMPOOL(superblock);
187 // claim res is used, so gcc can't nuke this all
188 __asm__ __volatile__("" : : "r"(res));
190 fprintf(stderr,
191 "\n------ done ------\n\n");
192 pop(p1, 0);
193 pop(p2, 1);
194 destroy_pool(p1, 0);
195 destroy_pool(p2, 1);
198 int main(void)
200 test();
201 return 0;