forked from andikleen/mcelog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.c
More file actions
315 lines (271 loc) · 8.23 KB
/
page.c
File metadata and controls
315 lines (271 loc) · 8.23 KB
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
/* Copyright (C) 2009 Intel Corporation
Author: Andi Kleen
Memory error accounting per page
mcelog is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; version
2.
mcelog is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should find a copy of v2 of the GNU General Public License somewhere
on your Linux system; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* NB
investigate other data structures. Primary consideration would
be space efficiency. rbtree nodes are rather large.
Do we need aging? Right now the only way to get rid of old nodes
is to restart. */
#define _GNU_SOURCE 1
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include "memutil.h"
#include "trigger.h"
#include "mcelog.h"
#include "rbtree.h"
#include "leaky-bucket.h"
#include "page.h"
#include "config.h"
#include "memdb.h"
#include "sysfs.h"
#define PAGE_SHIFT 12
#define PAGE_SIZE (1UL << PAGE_SHIFT)
enum { PAGE_ONLINE = 0, PAGE_OFFLINE = 1, PAGE_OFFLINE_FAILED = 2 };
struct mempage {
struct rb_node nd;
/* one char used by rb_node */
char offlined;
char triggered;
// 1(32bit)-5(64bit) bytes of padding to play with here
u64 addr;
struct err_type ce;
};
static struct rb_root mempage_root;
static struct bucket_conf page_trigger_conf;
static char *page_error_pre_soft_trigger, *page_error_post_soft_trigger;
static const char *page_state[] = {
[PAGE_ONLINE] = "online",
[PAGE_OFFLINE] = "offline",
[PAGE_OFFLINE_FAILED] = "offline-failed",
};
static struct mempage *mempage_lookup(u64 addr)
{
struct rb_node *n = mempage_root.rb_node;
while (n) {
struct mempage *mp = rb_entry(n, struct mempage, nd);
if (addr < mp->addr)
n = n->rb_left;
else if (addr > mp->addr)
n = n->rb_right;
else
return mp;
}
return NULL;
}
static struct mempage *
mempage_insert_lookup(u64 addr, struct rb_node * node)
{
struct rb_node **p = &mempage_root.rb_node;
struct rb_node *parent = NULL;
struct mempage *mp;
while (*p) {
parent = *p;
mp = rb_entry(parent, struct mempage, nd);
if (addr < mp->addr)
p = &(*p)->rb_left;
else if (addr > mp->addr)
p = &(*p)->rb_right;
else
return mp;
}
rb_link_node(node, parent, p);
return NULL;
}
static struct mempage *mempage_insert(u64 addr, struct mempage *mp)
{
mp->addr = addr;
mp = mempage_insert_lookup(addr, &mp->nd);
if (mp != NULL)
rb_insert_color(&mp->nd, &mempage_root);
return mp;
}
/* Following arrays need to be all kept in sync with the enum */
enum otype {
OFFLINE_OFF,
OFFLINE_ACCOUNT,
OFFLINE_SOFT,
OFFLINE_HARD,
OFFLINE_SOFT_THEN_HARD
};
static const char *kernel_offline[] = {
[OFFLINE_SOFT] = "/sys/devices/system/memory/soft_offline_page",
[OFFLINE_HARD] = "/sys/devices/system/memory/hard_offline_page",
[OFFLINE_SOFT_THEN_HARD] = "/sys/devices/system/memory/soft_offline_page"
};
static struct config_choice offline_choice[] = {
{ "off", OFFLINE_OFF },
{ "account", OFFLINE_ACCOUNT },
{ "soft", OFFLINE_SOFT },
{ "hard", OFFLINE_HARD },
{ "soft-then-hard", OFFLINE_SOFT_THEN_HARD },
{}
};
static enum otype offline = OFFLINE_OFF;
static int do_memory_offline(u64 addr, enum otype type)
{
return sysfs_write(kernel_offline[type], "%#llx", addr);
}
static int memory_offline(u64 addr)
{
if (offline == OFFLINE_SOFT_THEN_HARD) {
if (do_memory_offline(addr, OFFLINE_SOFT) < 0) {
Lprintf("Soft offlining of page %llx failed, trying hard offlining\n",
addr);
return do_memory_offline(addr, OFFLINE_HARD);
}
return 0;
}
return do_memory_offline(addr, offline);
}
static void offline_action(struct mempage *mp, u64 addr)
{
if (offline <= OFFLINE_ACCOUNT)
return;
Lprintf("Offlining page %llx\n", addr);
if (memory_offline(addr) < 0) {
Lprintf("Offlining page %llx failed: %s\n", addr, strerror(errno));
mp->offlined = PAGE_OFFLINE_FAILED;
} else
mp->offlined = PAGE_OFFLINE;
}
void account_page_error(struct mce *m, int channel, int dimm)
{
u64 addr = m->addr;
struct mempage *mp;
time_t t;
unsigned cpu = m->extcpu ? m->extcpu : m->cpu;
if (offline == OFFLINE_OFF)
return;
if (!(m->status & MCI_STATUS_ADDRV) || (m->status & MCI_STATUS_UC))
return;
switch (cputype) {
case CPU_SANDY_BRIDGE_EP:
/*
* On SNB-EP platform we see corrected errors reported with
* address in Bank 5 from hardware (depending on BIOS setting),
* in the meanwhile, a duplicate record constructed from
* information found by "firmware first" APEI code. Ignore the
* duplicate information so that we don't double count errors.
*
* NOTE: the record from APEI fake this error from CPU 0 BANK 1.
*/
if (m->bank == 1 && cpu == 0)
return;
default:
break;
}
t = m->time;
addr &= ~((u64)PAGE_SIZE - 1);
mp = mempage_lookup(addr);
if (!mp) {
mp = xalloc(sizeof(struct mempage));
bucket_init(&mp->ce.bucket);
mempage_insert(addr, mp);
}
++mp->ce.count;
if (__bucket_account(&page_trigger_conf, &mp->ce.bucket, 1, t)) {
struct memdimm *md;
char *msg;
char *thresh;
if (mp->offlined != PAGE_ONLINE)
return;
/* Only do triggers and messages for online pages */
thresh = bucket_output(&page_trigger_conf, &mp->ce.bucket);
md = get_memdimm(m->socketid, channel, dimm, 1);
xasprintf(&msg, "Corrected memory errors on page %llx exceed threshold %s",
addr, thresh);
free(thresh);
memdb_trigger(msg, md, t, &mp->ce, &page_trigger_conf, NULL, false);
free(msg);
mp->triggered = 1;
if (offline == OFFLINE_SOFT || offline == OFFLINE_SOFT_THEN_HARD) {
struct bucket_conf page_soft_trigger_conf;
char *argv[] = {
NULL,
NULL,
NULL,
};
char *args;
asprintf(&args, "%lld", addr);
argv[0]=args;
memcpy(&page_soft_trigger_conf, &page_trigger_conf, sizeof(struct bucket_conf));
page_soft_trigger_conf.trigger = page_error_pre_soft_trigger;
argv[0]=page_error_pre_soft_trigger;
argv[1]=args;
asprintf(&msg, "pre soft trigger run for page %lld", addr);
memdb_trigger(msg, md, t, &mp->ce, &page_soft_trigger_conf, argv, true);
free(msg);
offline_action(mp, addr);
memcpy(&page_soft_trigger_conf, &page_trigger_conf, sizeof(struct bucket_conf));
page_soft_trigger_conf.trigger = page_error_post_soft_trigger;
argv[0]=page_error_post_soft_trigger;
argv[1]=args;
asprintf(&msg, "post soft trigger run for page %lld", addr);
memdb_trigger(msg, md, t, &mp->ce, &page_soft_trigger_conf, argv, true);
free(msg);
free(args);
} else
offline_action(mp, addr);
}
}
void dump_page_errors(FILE *f)
{
char *msg;
struct rb_node *r;
long k;
k = 0;
for (r = rb_first(&mempage_root); r; r = rb_next(r)) {
struct mempage *p = rb_entry(r, struct mempage, nd);
if (k++ == 0)
fprintf(f, "Per page corrected memory statistics:\n");
msg = bucket_output(&page_trigger_conf, &p->ce.bucket);
fprintf(f, "%llx: total %u seen \"%s\" %s%s\n",
p->addr,
p->ce.count,
msg,
page_state[(unsigned)p->offlined],
p->triggered ? " triggered" : "");
free(msg);
fputc('\n', f);
}
}
void page_setup(void)
{
int n;
config_trigger("page", "memory-ce", &page_trigger_conf);
n = config_choice("page", "memory-ce-action", offline_choice);
if (n >= 0)
offline = n;
if (offline > OFFLINE_ACCOUNT &&
!sysfs_available(kernel_offline[offline], W_OK)) {
Lprintf("Kernel does not support page offline interface\n");
offline = OFFLINE_ACCOUNT;
}
page_error_pre_soft_trigger = config_string("page", "memory-pre-sync-soft-ce-trigger");
if (page_error_pre_soft_trigger && trigger_check(page_error_pre_soft_trigger) < 0) {
SYSERRprintf("Cannot access page soft pre trigger `%s'",
page_error_pre_soft_trigger);
exit(1);
}
page_error_post_soft_trigger= config_string("page", "memory-post-sync-soft-ce-trigger");
if (page_error_post_soft_trigger && trigger_check(page_error_post_soft_trigger) < 0) {
SYSERRprintf("Cannot access page soft post trigger `%s'",
page_error_post_soft_trigger);
exit(1);
}
}