]> git.saurik.com Git - redis.git/blame - src/memtest.c
Redis 2.5.8 (2.6.0 RC2).
[redis.git] / src / memtest.c
CommitLineData
f4df22d1 1#include <stdlib.h>
2#include <stdio.h>
3#include <string.h>
4#include <assert.h>
5#include <limits.h>
6#include <errno.h>
d605fdab 7#include <termios.h>
8#include <sys/ioctl.h>
f4df22d1 9
10#if (ULONG_MAX == 4294967295UL)
11#define MEMTEST_32BIT
12#elif (ULONG_MAX == 18446744073709551615ULL)
13#define MEMTEST_64BIT
14#else
15#error "ULONG_MAX value not supported."
16#endif
17
ea693f02 18#ifdef MEMTEST_32BIT
ea693f02 19#define ULONG_ONEZERO 0xaaaaaaaaUL
20#define ULONG_ZEROONE 0x55555555UL
ef278d11 21#else
22#define ULONG_ONEZERO 0xaaaaaaaaaaaaaaaaUL
23#define ULONG_ZEROONE 0x5555555555555555UL
ea693f02 24#endif
25
d605fdab 26static struct winsize ws;
27size_t progress_printed; /* Printed chars in screen-wide progress bar. */
28size_t progress_full; /* How many chars to write to fill the progress bar. */
29
30void memtest_progress_start(char *title, int pass) {
31 int j;
32
33 printf("\x1b[H\x1b[2J"); /* Cursor home, clear screen. */
34 /* Fill with dots. */
32f62ed6 35 for (j = 0; j < ws.ws_col*(ws.ws_row-2); j++) printf(".");
36 printf("Please keep the test running several minutes per GB of memory.\n");
37 printf("Also check http://www.memtest86.com/ and http://pyropus.ca/software/memtester/");
d605fdab 38 printf("\x1b[H\x1b[2K"); /* Cursor home, clear current line. */
39 printf("%s [%d]\n", title, pass); /* Print title. */
40 progress_printed = 0;
32f62ed6 41 progress_full = ws.ws_col*(ws.ws_row-3);
d605fdab 42 fflush(stdout);
43}
44
45void memtest_progress_end(void) {
46 printf("\x1b[H\x1b[2J"); /* Cursor home, clear screen. */
47}
48
49void memtest_progress_step(size_t curr, size_t size, char c) {
20656825 50 size_t chars = ((unsigned long long)curr*progress_full)/size, j;
d605fdab 51
52 for (j = 0; j < chars-progress_printed; j++) {
53 printf("%c",c);
54 progress_printed++;
55 }
56 fflush(stdout);
57}
58
a7ef5ce1 59/* Test that addressing is fine. Every location is populated with its own
60 * address, and finally verified. This test is very fast but may detect
61 * ASAP big issues with the memory subsystem. */
62void memtest_addressing(unsigned long *l, size_t bytes) {
63 unsigned long words = bytes/sizeof(unsigned long);
64 unsigned long j, *p;
65
66 /* Fill */
67 p = l;
68 for (j = 0; j < words; j++) {
69 *p = (unsigned long)p;
70 p++;
71 if ((j & 0xffff) == 0) memtest_progress_step(j,words*2,'A');
72 }
73 /* Test */
74 p = l;
75 for (j = 0; j < words; j++) {
76 if (*p != (unsigned long)p) {
77 printf("\n*** MEMORY ADDRESSING ERROR: %p contains %lu\n",
78 (void*) p, *p);
79 exit(1);
80 }
81 p++;
82 if ((j & 0xffff) == 0) memtest_progress_step(j+words,words*2,'A');
83 }
84}
85
f4df22d1 86/* Fill words stepping a single page at every write, so we continue to
87 * touch all the pages in the smallest amount of time reducing the
88 * effectiveness of caches, and making it hard for the OS to transfer
89 * pages on the swap. */
ea693f02 90void memtest_fill_random(unsigned long *l, size_t bytes) {
f4df22d1 91 unsigned long step = 4096/sizeof(unsigned long);
92 unsigned long words = bytes/sizeof(unsigned long)/2;
93 unsigned long iwords = words/step; /* words per iteration */
94 unsigned long off, w, *l1, *l2;
95
96 assert((bytes & 4095) == 0);
97 for (off = 0; off < step; off++) {
98 l1 = l+off;
99 l2 = l1+words;
100 for (w = 0; w < iwords; w++) {
101#ifdef MEMTEST_32BIT
102 *l1 = *l2 = ((unsigned long) (rand()&0xffff)) |
103 (((unsigned long) (rand()&0xffff)) << 16);
104#else
105 *l1 = *l2 = ((unsigned long) (rand()&0xffff)) |
106 (((unsigned long) (rand()&0xffff)) << 16) |
107 (((unsigned long) (rand()&0xffff)) << 32) |
108 (((unsigned long) (rand()&0xffff)) << 48);
109#endif
110 l1 += step;
111 l2 += step;
d605fdab 112 if ((w & 0xffff) == 0)
ea693f02 113 memtest_progress_step(w+iwords*off,words,'R');
114 }
115 }
116}
117
118/* Like memtest_fill_random() but uses the two specified values to fill
119 * memory, in an alternated way (v1|v2|v1|v2|...) */
120void memtest_fill_value(unsigned long *l, size_t bytes, unsigned long v1,
121 unsigned long v2, char sym)
122{
123 unsigned long step = 4096/sizeof(unsigned long);
124 unsigned long words = bytes/sizeof(unsigned long)/2;
125 unsigned long iwords = words/step; /* words per iteration */
126 unsigned long off, w, *l1, *l2, v;
127
128 assert((bytes & 4095) == 0);
129 for (off = 0; off < step; off++) {
130 l1 = l+off;
131 l2 = l1+words;
132 v = (off & 1) ? v2 : v1;
133 for (w = 0; w < iwords; w++) {
134#ifdef MEMTEST_32BIT
603adb2b 135 *l1 = *l2 = ((unsigned long) v) |
136 (((unsigned long) v) << 16);
ea693f02 137#else
603adb2b 138 *l1 = *l2 = ((unsigned long) v) |
139 (((unsigned long) v) << 16) |
140 (((unsigned long) v) << 32) |
141 (((unsigned long) v) << 48);
ea693f02 142#endif
143 l1 += step;
144 l2 += step;
145 if ((w & 0xffff) == 0)
146 memtest_progress_step(w+iwords*off,words,sym);
f4df22d1 147 }
148 }
149}
150
151void memtest_compare(unsigned long *l, size_t bytes) {
152 unsigned long words = bytes/sizeof(unsigned long)/2;
153 unsigned long w, *l1, *l2;
154
155 assert((bytes & 4095) == 0);
156 l1 = l;
157 l2 = l1+words;
158 for (w = 0; w < words; w++) {
159 if (*l1 != *l2) {
160 printf("\n*** MEMORY ERROR DETECTED: %p != %p (%lu vs %lu)\n",
161 (void*)l1, (void*)l2, *l1, *l2);
162 exit(1);
163 }
164 l1 ++;
165 l2 ++;
d605fdab 166 if ((w & 0xffff) == 0) memtest_progress_step(w,words,'=');
f4df22d1 167 }
168}
169
ea693f02 170void memtest_compare_times(unsigned long *m, size_t bytes, int pass, int times) {
171 int j;
172
173 for (j = 0; j < times; j++) {
174 memtest_progress_start("Compare",pass);
175 memtest_compare(m,bytes);
176 memtest_progress_end();
177 }
178}
179
f4df22d1 180void memtest_test(size_t megabytes, int passes) {
181 size_t bytes = megabytes*1024*1024;
182 unsigned long *m = malloc(bytes);
ea693f02 183 int pass = 0;
f4df22d1 184
185 if (m == NULL) {
186 fprintf(stderr,"Unable to allocate %zu megabytes: %s",
187 megabytes, strerror(errno));
188 exit(1);
189 }
190 while (pass != passes) {
191 pass++;
a7ef5ce1 192
193 memtest_progress_start("Addressing test",pass);
194 memtest_addressing(m,bytes);
195 memtest_progress_end();
196
d605fdab 197 memtest_progress_start("Random fill",pass);
ea693f02 198 memtest_fill_random(m,bytes);
d605fdab 199 memtest_progress_end();
ea693f02 200 memtest_compare_times(m,bytes,pass,4);
201
202 memtest_progress_start("Solid fill",pass);
203 memtest_fill_value(m,bytes,0,(unsigned long)-1,'S');
204 memtest_progress_end();
205 memtest_compare_times(m,bytes,pass,4);
206
207 memtest_progress_start("Checkerboard fill",pass);
208 memtest_fill_value(m,bytes,ULONG_ONEZERO,ULONG_ZEROONE,'C');
209 memtest_progress_end();
210 memtest_compare_times(m,bytes,pass,4);
f4df22d1 211 }
212}
213
214void memtest(size_t megabytes, int passes) {
d605fdab 215 if (ioctl(1, TIOCGWINSZ, &ws) == -1) {
216 ws.ws_col = 80;
217 ws.ws_row = 20;
218 }
f4df22d1 219 memtest_test(megabytes,passes);
220 printf("\nYour memory passed this test.\n");
74760d3c 221 printf("Please if you are still in doubt use the following two tools:\n");
f4df22d1 222 printf("1) memtest86: http://www.memtest86.com/\n");
223 printf("2) memtester: http://pyropus.ca/software/memtester/\n");
224 exit(0);
225}