-
Notifications
You must be signed in to change notification settings - Fork 61
/
memtester.c
426 lines (397 loc) · 13.9 KB
/
memtester.c
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*
* memtester version 4
*
* Very simple but very effective user-space memory tester.
* Originally by Simon Kirby <sim@stormix.com> <sim@neato.org>
* Version 2 by Charles Cazabon <charlesc-memtester@pyropus.ca>
* Version 3 not publicly released.
* Version 4 rewrite:
* Copyright (C) 2004-2020 Charles Cazabon <charlesc-memtester@pyropus.ca>
* Licensed under the terms of the GNU General Public License version 2 (only).
* See the file COPYING for details.
*
*/
#define __version__ "4.5.1"
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include "types.h"
#include "sizes.h"
#include "tests.h"
#include "output.h"
#define EXIT_FAIL_NONSTARTER 0x01
#define EXIT_FAIL_ADDRESSLINES 0x02
#define EXIT_FAIL_OTHERTEST 0x04
struct test tests[] = {
{ "Random Value", test_random_value },
{ "Compare XOR", test_xor_comparison },
{ "Compare SUB", test_sub_comparison },
{ "Compare MUL", test_mul_comparison },
{ "Compare DIV",test_div_comparison },
{ "Compare OR", test_or_comparison },
{ "Compare AND", test_and_comparison },
{ "Sequential Increment", test_seqinc_comparison },
{ "Solid Bits", test_solidbits_comparison },
{ "Block Sequential", test_blockseq_comparison },
{ "Checkerboard", test_checkerboard_comparison },
{ "Bit Spread", test_bitspread_comparison },
{ "Bit Flip", test_bitflip_comparison },
{ "Walking Ones", test_walkbits1_comparison },
{ "Walking Zeroes", test_walkbits0_comparison },
#ifdef TEST_NARROW_WRITES
{ "8-bit Writes", test_8bit_wide_random },
{ "16-bit Writes", test_16bit_wide_random },
#endif
{ NULL, NULL }
};
/* Sanity checks and portability helper macros. */
#ifdef _SC_VERSION
void check_posix_system(void) {
if (sysconf(_SC_VERSION) < 198808L) {
fprintf(stderr, "A POSIX system is required. Don't be surprised if "
"this craps out.\n");
fprintf(stderr, "_SC_VERSION is %lu\n", sysconf(_SC_VERSION));
}
}
#else
#define check_posix_system()
#endif
#ifdef _SC_PAGE_SIZE
int memtester_pagesize(void) {
int pagesize = sysconf(_SC_PAGE_SIZE);
if (pagesize == -1) {
perror("get page size failed");
exit(EXIT_FAIL_NONSTARTER);
}
printf("pagesize is %ld\n", (long) pagesize);
return pagesize;
}
#else
int memtester_pagesize(void) {
printf("sysconf(_SC_PAGE_SIZE) not supported; using pagesize of 8192\n");
return 8192;
}
#endif
/* Some systems don't define MAP_LOCKED. Define it to 0 here
so it's just a no-op when ORed with other constants. */
#ifndef MAP_LOCKED
#define MAP_LOCKED 0
#endif
/* Function declarations */
void usage(char *me);
/* Global vars - so tests have access to this information */
int use_phys = 0;
off_t physaddrbase = 0;
/* Function definitions */
void usage(char *me) {
fprintf(stderr, "\n"
"Usage: %s [-p physaddrbase [-d device] [-u]] <mem>[B|K|M|G] [loops]\n",
me);
exit(EXIT_FAIL_NONSTARTER);
}
int main(int argc, char **argv) {
ul loops, loop, i;
size_t pagesize, wantraw, wantmb, wantbytes, wantbytes_orig, bufsize,
halflen, count;
char *memsuffix, *addrsuffix, *loopsuffix;
ptrdiff_t pagesizemask;
void volatile *buf, *aligned;
ulv *bufa, *bufb;
int do_mlock = 1, done_mem = 0;
int exit_code = 0;
int memfd, opt, memshift;
size_t maxbytes = -1; /* addressable memory, in bytes */
size_t maxmb = (maxbytes >> 20) + 1; /* addressable memory, in MB */
/* Device to mmap memory from with -p, default is normal core */
char *device_name = "/dev/mem";
struct stat statbuf;
int device_specified = 0;
char *env_testmask = 0;
ul testmask = 0;
int o_flags = O_RDWR | O_SYNC;
out_initialize();
printf("memtester version " __version__ " (%d-bit)\n", UL_LEN);
printf("Copyright (C) 2001-2020 Charles Cazabon.\n");
printf("Licensed under the GNU General Public License version 2 (only).\n");
printf("\n");
check_posix_system();
pagesize = memtester_pagesize();
pagesizemask = (ptrdiff_t) ~(pagesize - 1);
printf("pagesizemask is 0x%tx\n", pagesizemask);
/* If MEMTESTER_TEST_MASK is set, we use its value as a mask of which
tests we run.
*/
if (env_testmask = getenv("MEMTESTER_TEST_MASK")) {
errno = 0;
testmask = strtoul(env_testmask, 0, 0);
if (errno) {
fprintf(stderr, "error parsing MEMTESTER_TEST_MASK %s: %s\n",
env_testmask, strerror(errno));
usage(argv[0]); /* doesn't return */
}
printf("using testmask 0x%lx\n", testmask);
}
while ((opt = getopt(argc, argv, "p:d:u")) != -1) {
switch (opt) {
case 'p':
errno = 0;
physaddrbase = (off_t) strtoull(optarg, &addrsuffix, 16);
if (errno != 0) {
fprintf(stderr,
"failed to parse physaddrbase arg; should be hex "
"address (0x123...)\n");
usage(argv[0]); /* doesn't return */
}
if (*addrsuffix != '\0') {
/* got an invalid character in the address */
fprintf(stderr,
"failed to parse physaddrbase arg; should be hex "
"address (0x123...)\n");
usage(argv[0]); /* doesn't return */
}
if (physaddrbase & (pagesize - 1)) {
fprintf(stderr,
"bad physaddrbase arg; does not start on page "
"boundary\n");
usage(argv[0]); /* doesn't return */
}
/* okay, got address */
use_phys = 1;
break;
case 'd':
if (stat(optarg,&statbuf)) {
fprintf(stderr, "can not use %s as device: %s\n", optarg,
strerror(errno));
usage(argv[0]); /* doesn't return */
} else {
if (!S_ISCHR(statbuf.st_mode)) {
fprintf(stderr, "can not mmap non-char device %s\n",
optarg);
usage(argv[0]); /* doesn't return */
} else {
device_name = optarg;
device_specified = 1;
}
}
break;
case 'u':
o_flags &= ~O_SYNC;
break;
default: /* '?' */
usage(argv[0]); /* doesn't return */
}
}
if (device_specified && !use_phys) {
fprintf(stderr,
"for mem device, physaddrbase (-p) must be specified\n");
usage(argv[0]); /* doesn't return */
}
if (optind >= argc) {
fprintf(stderr, "need memory argument, in MB\n");
usage(argv[0]); /* doesn't return */
}
errno = 0;
wantraw = (size_t) strtoul(argv[optind], &memsuffix, 0);
if (errno != 0) {
fprintf(stderr, "failed to parse memory argument");
usage(argv[0]); /* doesn't return */
}
switch (*memsuffix) {
case 'G':
case 'g':
memshift = 30; /* gigabytes */
break;
case 'M':
case 'm':
memshift = 20; /* megabytes */
break;
case 'K':
case 'k':
memshift = 10; /* kilobytes */
break;
case 'B':
case 'b':
memshift = 0; /* bytes*/
break;
case '\0': /* no suffix */
memshift = 20; /* megabytes */
break;
default:
/* bad suffix */
usage(argv[0]); /* doesn't return */
}
wantbytes_orig = wantbytes = ((size_t) wantraw << memshift);
wantmb = (wantbytes_orig >> 20);
optind++;
if (wantmb > maxmb) {
fprintf(stderr, "This system can only address %llu MB.\n", (ull) maxmb);
exit(EXIT_FAIL_NONSTARTER);
}
if (wantbytes < pagesize) {
fprintf(stderr, "bytes %ld < pagesize %ld -- memory argument too large?\n",
wantbytes, pagesize);
exit(EXIT_FAIL_NONSTARTER);
}
if (optind >= argc) {
loops = 0;
} else {
errno = 0;
loops = strtoul(argv[optind], &loopsuffix, 0);
if (errno != 0) {
fprintf(stderr, "failed to parse number of loops");
usage(argv[0]); /* doesn't return */
}
if (*loopsuffix != '\0') {
fprintf(stderr, "loop suffix %c\n", *loopsuffix);
usage(argv[0]); /* doesn't return */
}
}
printf("want %lluMB (%llu bytes)\n", (ull) wantmb, (ull) wantbytes);
buf = NULL;
if (use_phys) {
memfd = open(device_name, o_flags);
if (memfd == -1) {
fprintf(stderr, "failed to open %s for physical memory: %s\n",
device_name, strerror(errno));
exit(EXIT_FAIL_NONSTARTER);
}
buf = (void volatile *) mmap(0, wantbytes, PROT_READ | PROT_WRITE,
MAP_SHARED | MAP_LOCKED, memfd,
physaddrbase);
if (buf == MAP_FAILED) {
fprintf(stderr, "failed to mmap %s for physical memory: %s\n",
device_name, strerror(errno));
exit(EXIT_FAIL_NONSTARTER);
}
if (mlock((void *) buf, wantbytes) < 0) {
fprintf(stderr, "failed to mlock mmap'ed space\n");
do_mlock = 0;
}
bufsize = wantbytes; /* accept no less */
aligned = buf;
done_mem = 1;
}
while (!done_mem) {
while (!buf && wantbytes) {
buf = (void volatile *) malloc(wantbytes);
if (!buf) wantbytes -= pagesize;
}
bufsize = wantbytes;
printf("got %lluMB (%llu bytes)", (ull) wantbytes >> 20,
(ull) wantbytes);
fflush(stdout);
if (do_mlock) {
printf(", trying mlock ...");
fflush(stdout);
if ((size_t) buf % pagesize) {
/* printf("aligning to page -- was 0x%tx\n", buf); */
aligned = (void volatile *) ((size_t) buf & pagesizemask) + pagesize;
/* printf(" now 0x%tx -- lost %d bytes\n", aligned,
* (size_t) aligned - (size_t) buf);
*/
bufsize -= ((size_t) aligned - (size_t) buf);
} else {
aligned = buf;
}
/* Try mlock */
if (mlock((void *) aligned, bufsize) < 0) {
switch(errno) {
case EAGAIN: /* BSDs */
printf("over system/pre-process limit, reducing...\n");
free((void *) buf);
buf = NULL;
wantbytes -= pagesize;
break;
case ENOMEM:
printf("too many pages, reducing...\n");
free((void *) buf);
buf = NULL;
wantbytes -= pagesize;
break;
case EPERM:
printf("insufficient permission.\n");
printf("Trying again, unlocked:\n");
do_mlock = 0;
free((void *) buf);
buf = NULL;
wantbytes = wantbytes_orig;
break;
default:
printf("failed for unknown reason.\n");
do_mlock = 0;
done_mem = 1;
}
} else {
printf("locked.\n");
done_mem = 1;
}
} else {
done_mem = 1;
printf("\n");
}
}
if (!do_mlock) fprintf(stderr, "Continuing with unlocked memory; testing "
"will be slower and less reliable.\n");
/* Do alighnment here as well, as some cases won't trigger above if you
define out the use of mlock() (cough HP/UX 10 cough). */
if ((size_t) buf % pagesize) {
/* printf("aligning to page -- was 0x%tx\n", buf); */
aligned = (void volatile *) ((size_t) buf & pagesizemask) + pagesize;
/* printf(" now 0x%tx -- lost %d bytes\n", aligned,
* (size_t) aligned - (size_t) buf);
*/
bufsize -= ((size_t) aligned - (size_t) buf);
} else {
aligned = buf;
}
halflen = bufsize / 2;
count = halflen / sizeof(ul);
bufa = (ulv *) aligned;
bufb = (ulv *) ((size_t) aligned + halflen);
for(loop=1; ((!loops) || loop <= loops); loop++) {
printf("Loop %lu", loop);
if (loops) {
printf("/%lu", loops);
}
printf(":\n");
printf(" %-20s: ", "Stuck Address");
fflush(stdout);
if (!test_stuck_address(aligned, bufsize / sizeof(ul))) {
printf("ok\n");
} else {
exit_code |= EXIT_FAIL_ADDRESSLINES;
}
for (i=0;;i++) {
if (!tests[i].name) break;
/* If using a custom testmask, only run this test if the
bit corresponding to this test was set by the user.
*/
if (testmask && (!((1 << i) & testmask))) {
continue;
}
printf(" %-20s: ", tests[i].name);
fflush(stdout);
if (!tests[i].fp(bufa, bufb, count)) {
printf("ok\n");
} else {
exit_code |= EXIT_FAIL_OTHERTEST;
}
fflush(stdout);
/* clear buffer */
memset((void *) buf, 255, wantbytes);
}
printf("\n");
fflush(stdout);
}
if (do_mlock) munlock((void *) aligned, bufsize);
printf("Done.\n");
fflush(stdout);
exit(exit_code);
}