• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Machine check exception handling.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  * Copyright 2013 IBM Corporation
19  * Author: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
20  */
21 
22 #undef DEBUG
23 #define pr_fmt(fmt) "mce: " fmt
24 
25 #include <linux/types.h>
26 #include <linux/ptrace.h>
27 #include <linux/percpu.h>
28 #include <linux/export.h>
29 #include <linux/irq_work.h>
30 #include <asm/mce.h>
31 
32 static DEFINE_PER_CPU(int, mce_nest_count);
33 static DEFINE_PER_CPU(struct machine_check_event[MAX_MC_EVT], mce_event);
34 
35 /* Queue for delayed MCE events. */
36 static DEFINE_PER_CPU(int, mce_queue_count);
37 static DEFINE_PER_CPU(struct machine_check_event[MAX_MC_EVT], mce_event_queue);
38 
39 static void machine_check_process_queued_event(struct irq_work *work);
40 struct irq_work mce_event_process_work = {
41         .func = machine_check_process_queued_event,
42 };
43 
mce_set_error_info(struct machine_check_event * mce,struct mce_error_info * mce_err)44 static void mce_set_error_info(struct machine_check_event *mce,
45 			       struct mce_error_info *mce_err)
46 {
47 	mce->error_type = mce_err->error_type;
48 	switch (mce_err->error_type) {
49 	case MCE_ERROR_TYPE_UE:
50 		mce->u.ue_error.ue_error_type = mce_err->u.ue_error_type;
51 		break;
52 	case MCE_ERROR_TYPE_SLB:
53 		mce->u.slb_error.slb_error_type = mce_err->u.slb_error_type;
54 		break;
55 	case MCE_ERROR_TYPE_ERAT:
56 		mce->u.erat_error.erat_error_type = mce_err->u.erat_error_type;
57 		break;
58 	case MCE_ERROR_TYPE_TLB:
59 		mce->u.tlb_error.tlb_error_type = mce_err->u.tlb_error_type;
60 		break;
61 	case MCE_ERROR_TYPE_UNKNOWN:
62 	default:
63 		break;
64 	}
65 }
66 
67 /*
68  * Decode and save high level MCE information into per cpu buffer which
69  * is an array of machine_check_event structure.
70  */
save_mce_event(struct pt_regs * regs,long handled,struct mce_error_info * mce_err,uint64_t nip,uint64_t addr)71 void save_mce_event(struct pt_regs *regs, long handled,
72 		    struct mce_error_info *mce_err,
73 		    uint64_t nip, uint64_t addr)
74 {
75 	uint64_t srr1;
76 	int index = __this_cpu_inc_return(mce_nest_count) - 1;
77 	struct machine_check_event *mce = this_cpu_ptr(&mce_event[index]);
78 
79 	/*
80 	 * Return if we don't have enough space to log mce event.
81 	 * mce_nest_count may go beyond MAX_MC_EVT but that's ok,
82 	 * the check below will stop buffer overrun.
83 	 */
84 	if (index >= MAX_MC_EVT)
85 		return;
86 
87 	/* Populate generic machine check info */
88 	mce->version = MCE_V1;
89 	mce->srr0 = nip;
90 	mce->srr1 = regs->msr;
91 	mce->gpr3 = regs->gpr[3];
92 	mce->in_use = 1;
93 
94 	mce->initiator = MCE_INITIATOR_CPU;
95 	/* Mark it recovered if we have handled it and MSR(RI=1). */
96 	if (handled && (regs->msr & MSR_RI))
97 		mce->disposition = MCE_DISPOSITION_RECOVERED;
98 	else
99 		mce->disposition = MCE_DISPOSITION_NOT_RECOVERED;
100 	mce->severity = MCE_SEV_ERROR_SYNC;
101 
102 	srr1 = regs->msr;
103 
104 	/*
105 	 * Populate the mce error_type and type-specific error_type.
106 	 */
107 	mce_set_error_info(mce, mce_err);
108 
109 	if (!addr)
110 		return;
111 
112 	if (mce->error_type == MCE_ERROR_TYPE_TLB) {
113 		mce->u.tlb_error.effective_address_provided = true;
114 		mce->u.tlb_error.effective_address = addr;
115 	} else if (mce->error_type == MCE_ERROR_TYPE_SLB) {
116 		mce->u.slb_error.effective_address_provided = true;
117 		mce->u.slb_error.effective_address = addr;
118 	} else if (mce->error_type == MCE_ERROR_TYPE_ERAT) {
119 		mce->u.erat_error.effective_address_provided = true;
120 		mce->u.erat_error.effective_address = addr;
121 	} else if (mce->error_type == MCE_ERROR_TYPE_UE) {
122 		mce->u.ue_error.effective_address_provided = true;
123 		mce->u.ue_error.effective_address = addr;
124 	}
125 	return;
126 }
127 
128 /*
129  * get_mce_event:
130  *	mce	Pointer to machine_check_event structure to be filled.
131  *	release Flag to indicate whether to free the event slot or not.
132  *		0 <= do not release the mce event. Caller will invoke
133  *		     release_mce_event() once event has been consumed.
134  *		1 <= release the slot.
135  *
136  *	return	1 = success
137  *		0 = failure
138  *
139  * get_mce_event() will be called by platform specific machine check
140  * handle routine and in KVM.
141  * When we call get_mce_event(), we are still in interrupt context and
142  * preemption will not be scheduled until ret_from_expect() routine
143  * is called.
144  */
get_mce_event(struct machine_check_event * mce,bool release)145 int get_mce_event(struct machine_check_event *mce, bool release)
146 {
147 	int index = __this_cpu_read(mce_nest_count) - 1;
148 	struct machine_check_event *mc_evt;
149 	int ret = 0;
150 
151 	/* Sanity check */
152 	if (index < 0)
153 		return ret;
154 
155 	/* Check if we have MCE info to process. */
156 	if (index < MAX_MC_EVT) {
157 		mc_evt = this_cpu_ptr(&mce_event[index]);
158 		/* Copy the event structure and release the original */
159 		if (mce)
160 			*mce = *mc_evt;
161 		if (release)
162 			mc_evt->in_use = 0;
163 		ret = 1;
164 	}
165 	/* Decrement the count to free the slot. */
166 	if (release)
167 		__this_cpu_dec(mce_nest_count);
168 
169 	return ret;
170 }
171 
release_mce_event(void)172 void release_mce_event(void)
173 {
174 	get_mce_event(NULL, true);
175 }
176 
177 /*
178  * Queue up the MCE event which then can be handled later.
179  */
machine_check_queue_event(void)180 void machine_check_queue_event(void)
181 {
182 	int index;
183 	struct machine_check_event evt;
184 
185 	if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
186 		return;
187 
188 	index = __this_cpu_inc_return(mce_queue_count) - 1;
189 	/* If queue is full, just return for now. */
190 	if (index >= MAX_MC_EVT) {
191 		__this_cpu_dec(mce_queue_count);
192 		return;
193 	}
194 	memcpy(this_cpu_ptr(&mce_event_queue[index]), &evt, sizeof(evt));
195 
196 	/* Queue irq work to process this event later. */
197 	irq_work_queue(&mce_event_process_work);
198 }
199 
200 /*
201  * process pending MCE event from the mce event queue. This function will be
202  * called during syscall exit.
203  */
machine_check_process_queued_event(struct irq_work * work)204 static void machine_check_process_queued_event(struct irq_work *work)
205 {
206 	int index;
207 
208 	add_taint(TAINT_MACHINE_CHECK, LOCKDEP_NOW_UNRELIABLE);
209 
210 	/*
211 	 * For now just print it to console.
212 	 * TODO: log this error event to FSP or nvram.
213 	 */
214 	while (__this_cpu_read(mce_queue_count) > 0) {
215 		index = __this_cpu_read(mce_queue_count) - 1;
216 		machine_check_print_event_info(
217 				this_cpu_ptr(&mce_event_queue[index]));
218 		__this_cpu_dec(mce_queue_count);
219 	}
220 }
221 
machine_check_print_event_info(struct machine_check_event * evt)222 void machine_check_print_event_info(struct machine_check_event *evt)
223 {
224 	const char *level, *sevstr, *subtype;
225 	static const char *mc_ue_types[] = {
226 		"Indeterminate",
227 		"Instruction fetch",
228 		"Page table walk ifetch",
229 		"Load/Store",
230 		"Page table walk Load/Store",
231 	};
232 	static const char *mc_slb_types[] = {
233 		"Indeterminate",
234 		"Parity",
235 		"Multihit",
236 	};
237 	static const char *mc_erat_types[] = {
238 		"Indeterminate",
239 		"Parity",
240 		"Multihit",
241 	};
242 	static const char *mc_tlb_types[] = {
243 		"Indeterminate",
244 		"Parity",
245 		"Multihit",
246 	};
247 
248 	/* Print things out */
249 	if (evt->version != MCE_V1) {
250 		pr_err("Machine Check Exception, Unknown event version %d !\n",
251 		       evt->version);
252 		return;
253 	}
254 	switch (evt->severity) {
255 	case MCE_SEV_NO_ERROR:
256 		level = KERN_INFO;
257 		sevstr = "Harmless";
258 		break;
259 	case MCE_SEV_WARNING:
260 		level = KERN_WARNING;
261 		sevstr = "";
262 		break;
263 	case MCE_SEV_ERROR_SYNC:
264 		level = KERN_ERR;
265 		sevstr = "Severe";
266 		break;
267 	case MCE_SEV_FATAL:
268 	default:
269 		level = KERN_ERR;
270 		sevstr = "Fatal";
271 		break;
272 	}
273 
274 	printk("%s%s Machine check interrupt [%s]\n", level, sevstr,
275 	       evt->disposition == MCE_DISPOSITION_RECOVERED ?
276 	       "Recovered" : "[Not recovered");
277 	printk("%s  Initiator: %s\n", level,
278 	       evt->initiator == MCE_INITIATOR_CPU ? "CPU" : "Unknown");
279 	switch (evt->error_type) {
280 	case MCE_ERROR_TYPE_UE:
281 		subtype = evt->u.ue_error.ue_error_type <
282 			ARRAY_SIZE(mc_ue_types) ?
283 			mc_ue_types[evt->u.ue_error.ue_error_type]
284 			: "Unknown";
285 		printk("%s  Error type: UE [%s]\n", level, subtype);
286 		if (evt->u.ue_error.effective_address_provided)
287 			printk("%s    Effective address: %016llx\n",
288 			       level, evt->u.ue_error.effective_address);
289 		if (evt->u.ue_error.physical_address_provided)
290 			printk("%s      Physial address: %016llx\n",
291 			       level, evt->u.ue_error.physical_address);
292 		break;
293 	case MCE_ERROR_TYPE_SLB:
294 		subtype = evt->u.slb_error.slb_error_type <
295 			ARRAY_SIZE(mc_slb_types) ?
296 			mc_slb_types[evt->u.slb_error.slb_error_type]
297 			: "Unknown";
298 		printk("%s  Error type: SLB [%s]\n", level, subtype);
299 		if (evt->u.slb_error.effective_address_provided)
300 			printk("%s    Effective address: %016llx\n",
301 			       level, evt->u.slb_error.effective_address);
302 		break;
303 	case MCE_ERROR_TYPE_ERAT:
304 		subtype = evt->u.erat_error.erat_error_type <
305 			ARRAY_SIZE(mc_erat_types) ?
306 			mc_erat_types[evt->u.erat_error.erat_error_type]
307 			: "Unknown";
308 		printk("%s  Error type: ERAT [%s]\n", level, subtype);
309 		if (evt->u.erat_error.effective_address_provided)
310 			printk("%s    Effective address: %016llx\n",
311 			       level, evt->u.erat_error.effective_address);
312 		break;
313 	case MCE_ERROR_TYPE_TLB:
314 		subtype = evt->u.tlb_error.tlb_error_type <
315 			ARRAY_SIZE(mc_tlb_types) ?
316 			mc_tlb_types[evt->u.tlb_error.tlb_error_type]
317 			: "Unknown";
318 		printk("%s  Error type: TLB [%s]\n", level, subtype);
319 		if (evt->u.tlb_error.effective_address_provided)
320 			printk("%s    Effective address: %016llx\n",
321 			       level, evt->u.tlb_error.effective_address);
322 		break;
323 	default:
324 	case MCE_ERROR_TYPE_UNKNOWN:
325 		printk("%s  Error type: Unknown\n", level);
326 		break;
327 	}
328 }
329 
get_mce_fault_addr(struct machine_check_event * evt)330 uint64_t get_mce_fault_addr(struct machine_check_event *evt)
331 {
332 	switch (evt->error_type) {
333 	case MCE_ERROR_TYPE_UE:
334 		if (evt->u.ue_error.effective_address_provided)
335 			return evt->u.ue_error.effective_address;
336 		break;
337 	case MCE_ERROR_TYPE_SLB:
338 		if (evt->u.slb_error.effective_address_provided)
339 			return evt->u.slb_error.effective_address;
340 		break;
341 	case MCE_ERROR_TYPE_ERAT:
342 		if (evt->u.erat_error.effective_address_provided)
343 			return evt->u.erat_error.effective_address;
344 		break;
345 	case MCE_ERROR_TYPE_TLB:
346 		if (evt->u.tlb_error.effective_address_provided)
347 			return evt->u.tlb_error.effective_address;
348 		break;
349 	default:
350 	case MCE_ERROR_TYPE_UNKNOWN:
351 		break;
352 	}
353 	return 0;
354 }
355 EXPORT_SYMBOL(get_mce_fault_addr);
356