]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - arch/x86/kernel/unwind_orc.c
x86/unwind/orc: Prevent unwinding before ORC initialization
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kernel / unwind_orc.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/module.h>
3 #include <linux/sort.h>
4 #include <asm/ptrace.h>
5 #include <asm/stacktrace.h>
6 #include <asm/unwind.h>
7 #include <asm/orc_types.h>
8 #include <asm/orc_lookup.h>
9
10 #define orc_warn(fmt, ...) \
11 printk_deferred_once(KERN_WARNING "WARNING: " fmt, ##__VA_ARGS__)
12
13 #define orc_warn_current(args...) \
14 ({ \
15 if (state->task == current) \
16 orc_warn(args); \
17 })
18
19 extern int __start_orc_unwind_ip[];
20 extern int __stop_orc_unwind_ip[];
21 extern struct orc_entry __start_orc_unwind[];
22 extern struct orc_entry __stop_orc_unwind[];
23
24 static bool orc_init __ro_after_init;
25 static unsigned int lookup_num_blocks __ro_after_init;
26
27 static DEFINE_MUTEX(sort_mutex);
28 static int *cur_orc_ip_table = __start_orc_unwind_ip;
29 static struct orc_entry *cur_orc_table = __start_orc_unwind;
30
31 static inline unsigned long orc_ip(const int *ip)
32 {
33 return (unsigned long)ip + *ip;
34 }
35
36 static struct orc_entry *__orc_find(int *ip_table, struct orc_entry *u_table,
37 unsigned int num_entries, unsigned long ip)
38 {
39 int *first = ip_table;
40 int *last = ip_table + num_entries - 1;
41 int *mid = first, *found = first;
42
43 if (!num_entries)
44 return NULL;
45
46 /*
47 * Do a binary range search to find the rightmost duplicate of a given
48 * starting address. Some entries are section terminators which are
49 * "weak" entries for ensuring there are no gaps. They should be
50 * ignored when they conflict with a real entry.
51 */
52 while (first <= last) {
53 mid = first + ((last - first) / 2);
54
55 if (orc_ip(mid) <= ip) {
56 found = mid;
57 first = mid + 1;
58 } else
59 last = mid - 1;
60 }
61
62 return u_table + (found - ip_table);
63 }
64
65 #ifdef CONFIG_MODULES
66 static struct orc_entry *orc_module_find(unsigned long ip)
67 {
68 struct module *mod;
69
70 mod = __module_address(ip);
71 if (!mod || !mod->arch.orc_unwind || !mod->arch.orc_unwind_ip)
72 return NULL;
73 return __orc_find(mod->arch.orc_unwind_ip, mod->arch.orc_unwind,
74 mod->arch.num_orcs, ip);
75 }
76 #else
77 static struct orc_entry *orc_module_find(unsigned long ip)
78 {
79 return NULL;
80 }
81 #endif
82
83 #ifdef CONFIG_DYNAMIC_FTRACE
84 static struct orc_entry *orc_find(unsigned long ip);
85
86 /*
87 * Ftrace dynamic trampolines do not have orc entries of their own.
88 * But they are copies of the ftrace entries that are static and
89 * defined in ftrace_*.S, which do have orc entries.
90 *
91 * If the unwinder comes across a ftrace trampoline, then find the
92 * ftrace function that was used to create it, and use that ftrace
93 * function's orc entry, as the placement of the return code in
94 * the stack will be identical.
95 */
96 static struct orc_entry *orc_ftrace_find(unsigned long ip)
97 {
98 struct ftrace_ops *ops;
99 unsigned long caller;
100
101 ops = ftrace_ops_trampoline(ip);
102 if (!ops)
103 return NULL;
104
105 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
106 caller = (unsigned long)ftrace_regs_call;
107 else
108 caller = (unsigned long)ftrace_call;
109
110 /* Prevent unlikely recursion */
111 if (ip == caller)
112 return NULL;
113
114 return orc_find(caller);
115 }
116 #else
117 static struct orc_entry *orc_ftrace_find(unsigned long ip)
118 {
119 return NULL;
120 }
121 #endif
122
123 /*
124 * If we crash with IP==0, the last successfully executed instruction
125 * was probably an indirect function call with a NULL function pointer,
126 * and we don't have unwind information for NULL.
127 * This hardcoded ORC entry for IP==0 allows us to unwind from a NULL function
128 * pointer into its parent and then continue normally from there.
129 */
130 static struct orc_entry null_orc_entry = {
131 .sp_offset = sizeof(long),
132 .sp_reg = ORC_REG_SP,
133 .bp_reg = ORC_REG_UNDEFINED,
134 .type = ORC_TYPE_CALL
135 };
136
137 /* Fake frame pointer entry -- used as a fallback for generated code */
138 static struct orc_entry orc_fp_entry = {
139 .type = ORC_TYPE_CALL,
140 .sp_reg = ORC_REG_BP,
141 .sp_offset = 16,
142 .bp_reg = ORC_REG_PREV_SP,
143 .bp_offset = -16,
144 .end = 0,
145 };
146
147 static struct orc_entry *orc_find(unsigned long ip)
148 {
149 static struct orc_entry *orc;
150
151 if (ip == 0)
152 return &null_orc_entry;
153
154 /* For non-init vmlinux addresses, use the fast lookup table: */
155 if (ip >= LOOKUP_START_IP && ip < LOOKUP_STOP_IP) {
156 unsigned int idx, start, stop;
157
158 idx = (ip - LOOKUP_START_IP) / LOOKUP_BLOCK_SIZE;
159
160 if (unlikely((idx >= lookup_num_blocks-1))) {
161 orc_warn("WARNING: bad lookup idx: idx=%u num=%u ip=%pB\n",
162 idx, lookup_num_blocks, (void *)ip);
163 return NULL;
164 }
165
166 start = orc_lookup[idx];
167 stop = orc_lookup[idx + 1] + 1;
168
169 if (unlikely((__start_orc_unwind + start >= __stop_orc_unwind) ||
170 (__start_orc_unwind + stop > __stop_orc_unwind))) {
171 orc_warn("WARNING: bad lookup value: idx=%u num=%u start=%u stop=%u ip=%pB\n",
172 idx, lookup_num_blocks, start, stop, (void *)ip);
173 return NULL;
174 }
175
176 return __orc_find(__start_orc_unwind_ip + start,
177 __start_orc_unwind + start, stop - start, ip);
178 }
179
180 /* vmlinux .init slow lookup: */
181 if (init_kernel_text(ip))
182 return __orc_find(__start_orc_unwind_ip, __start_orc_unwind,
183 __stop_orc_unwind_ip - __start_orc_unwind_ip, ip);
184
185 /* Module lookup: */
186 orc = orc_module_find(ip);
187 if (orc)
188 return orc;
189
190 return orc_ftrace_find(ip);
191 }
192
193 #ifdef CONFIG_MODULES
194
195 static void orc_sort_swap(void *_a, void *_b, int size)
196 {
197 struct orc_entry *orc_a, *orc_b;
198 struct orc_entry orc_tmp;
199 int *a = _a, *b = _b, tmp;
200 int delta = _b - _a;
201
202 /* Swap the .orc_unwind_ip entries: */
203 tmp = *a;
204 *a = *b + delta;
205 *b = tmp - delta;
206
207 /* Swap the corresponding .orc_unwind entries: */
208 orc_a = cur_orc_table + (a - cur_orc_ip_table);
209 orc_b = cur_orc_table + (b - cur_orc_ip_table);
210 orc_tmp = *orc_a;
211 *orc_a = *orc_b;
212 *orc_b = orc_tmp;
213 }
214
215 static int orc_sort_cmp(const void *_a, const void *_b)
216 {
217 struct orc_entry *orc_a;
218 const int *a = _a, *b = _b;
219 unsigned long a_val = orc_ip(a);
220 unsigned long b_val = orc_ip(b);
221
222 if (a_val > b_val)
223 return 1;
224 if (a_val < b_val)
225 return -1;
226
227 /*
228 * The "weak" section terminator entries need to always be on the left
229 * to ensure the lookup code skips them in favor of real entries.
230 * These terminator entries exist to handle any gaps created by
231 * whitelisted .o files which didn't get objtool generation.
232 */
233 orc_a = cur_orc_table + (a - cur_orc_ip_table);
234 return orc_a->sp_reg == ORC_REG_UNDEFINED && !orc_a->end ? -1 : 1;
235 }
236
237 void unwind_module_init(struct module *mod, void *_orc_ip, size_t orc_ip_size,
238 void *_orc, size_t orc_size)
239 {
240 int *orc_ip = _orc_ip;
241 struct orc_entry *orc = _orc;
242 unsigned int num_entries = orc_ip_size / sizeof(int);
243
244 WARN_ON_ONCE(orc_ip_size % sizeof(int) != 0 ||
245 orc_size % sizeof(*orc) != 0 ||
246 num_entries != orc_size / sizeof(*orc));
247
248 /*
249 * The 'cur_orc_*' globals allow the orc_sort_swap() callback to
250 * associate an .orc_unwind_ip table entry with its corresponding
251 * .orc_unwind entry so they can both be swapped.
252 */
253 mutex_lock(&sort_mutex);
254 cur_orc_ip_table = orc_ip;
255 cur_orc_table = orc;
256 sort(orc_ip, num_entries, sizeof(int), orc_sort_cmp, orc_sort_swap);
257 mutex_unlock(&sort_mutex);
258
259 mod->arch.orc_unwind_ip = orc_ip;
260 mod->arch.orc_unwind = orc;
261 mod->arch.num_orcs = num_entries;
262 }
263 #endif
264
265 void __init unwind_init(void)
266 {
267 size_t orc_ip_size = (void *)__stop_orc_unwind_ip - (void *)__start_orc_unwind_ip;
268 size_t orc_size = (void *)__stop_orc_unwind - (void *)__start_orc_unwind;
269 size_t num_entries = orc_ip_size / sizeof(int);
270 struct orc_entry *orc;
271 int i;
272
273 if (!num_entries || orc_ip_size % sizeof(int) != 0 ||
274 orc_size % sizeof(struct orc_entry) != 0 ||
275 num_entries != orc_size / sizeof(struct orc_entry)) {
276 orc_warn("WARNING: Bad or missing .orc_unwind table. Disabling unwinder.\n");
277 return;
278 }
279
280 /*
281 * Note, the orc_unwind and orc_unwind_ip tables were already
282 * sorted at build time via the 'sorttable' tool.
283 * It's ready for binary search straight away, no need to sort it.
284 */
285
286 /* Initialize the fast lookup table: */
287 lookup_num_blocks = orc_lookup_end - orc_lookup;
288 for (i = 0; i < lookup_num_blocks-1; i++) {
289 orc = __orc_find(__start_orc_unwind_ip, __start_orc_unwind,
290 num_entries,
291 LOOKUP_START_IP + (LOOKUP_BLOCK_SIZE * i));
292 if (!orc) {
293 orc_warn("WARNING: Corrupt .orc_unwind table. Disabling unwinder.\n");
294 return;
295 }
296
297 orc_lookup[i] = orc - __start_orc_unwind;
298 }
299
300 /* Initialize the ending block: */
301 orc = __orc_find(__start_orc_unwind_ip, __start_orc_unwind, num_entries,
302 LOOKUP_STOP_IP);
303 if (!orc) {
304 orc_warn("WARNING: Corrupt .orc_unwind table. Disabling unwinder.\n");
305 return;
306 }
307 orc_lookup[lookup_num_blocks-1] = orc - __start_orc_unwind;
308
309 orc_init = true;
310 }
311
312 unsigned long unwind_get_return_address(struct unwind_state *state)
313 {
314 if (unwind_done(state))
315 return 0;
316
317 return __kernel_text_address(state->ip) ? state->ip : 0;
318 }
319 EXPORT_SYMBOL_GPL(unwind_get_return_address);
320
321 unsigned long *unwind_get_return_address_ptr(struct unwind_state *state)
322 {
323 if (unwind_done(state))
324 return NULL;
325
326 if (state->regs)
327 return &state->regs->ip;
328
329 if (state->sp)
330 return (unsigned long *)state->sp - 1;
331
332 return NULL;
333 }
334
335 static bool stack_access_ok(struct unwind_state *state, unsigned long _addr,
336 size_t len)
337 {
338 struct stack_info *info = &state->stack_info;
339 void *addr = (void *)_addr;
340
341 if (!on_stack(info, addr, len) &&
342 (get_stack_info(addr, state->task, info, &state->stack_mask)))
343 return false;
344
345 return true;
346 }
347
348 static bool deref_stack_reg(struct unwind_state *state, unsigned long addr,
349 unsigned long *val)
350 {
351 if (!stack_access_ok(state, addr, sizeof(long)))
352 return false;
353
354 *val = READ_ONCE_NOCHECK(*(unsigned long *)addr);
355 return true;
356 }
357
358 static bool deref_stack_regs(struct unwind_state *state, unsigned long addr,
359 unsigned long *ip, unsigned long *sp)
360 {
361 struct pt_regs *regs = (struct pt_regs *)addr;
362
363 /* x86-32 support will be more complicated due to the &regs->sp hack */
364 BUILD_BUG_ON(IS_ENABLED(CONFIG_X86_32));
365
366 if (!stack_access_ok(state, addr, sizeof(struct pt_regs)))
367 return false;
368
369 *ip = regs->ip;
370 *sp = regs->sp;
371 return true;
372 }
373
374 static bool deref_stack_iret_regs(struct unwind_state *state, unsigned long addr,
375 unsigned long *ip, unsigned long *sp)
376 {
377 struct pt_regs *regs = (void *)addr - IRET_FRAME_OFFSET;
378
379 if (!stack_access_ok(state, addr, IRET_FRAME_SIZE))
380 return false;
381
382 *ip = regs->ip;
383 *sp = regs->sp;
384 return true;
385 }
386
387 bool unwind_next_frame(struct unwind_state *state)
388 {
389 unsigned long ip_p, sp, orig_ip = state->ip, prev_sp = state->sp;
390 enum stack_type prev_type = state->stack_info.type;
391 struct orc_entry *orc;
392 bool indirect = false;
393
394 if (unwind_done(state))
395 return false;
396
397 /* Don't let modules unload while we're reading their ORC data. */
398 preempt_disable();
399
400 /* End-of-stack check for user tasks: */
401 if (state->regs && user_mode(state->regs))
402 goto the_end;
403
404 /*
405 * Find the orc_entry associated with the text address.
406 *
407 * Decrement call return addresses by one so they work for sibling
408 * calls and calls to noreturn functions.
409 */
410 orc = orc_find(state->signal ? state->ip : state->ip - 1);
411 if (!orc) {
412 /*
413 * As a fallback, try to assume this code uses a frame pointer.
414 * This is useful for generated code, like BPF, which ORC
415 * doesn't know about. This is just a guess, so the rest of
416 * the unwind is no longer considered reliable.
417 */
418 orc = &orc_fp_entry;
419 state->error = true;
420 }
421
422 /* End-of-stack check for kernel threads: */
423 if (orc->sp_reg == ORC_REG_UNDEFINED) {
424 if (!orc->end)
425 goto err;
426
427 goto the_end;
428 }
429
430 /* Find the previous frame's stack: */
431 switch (orc->sp_reg) {
432 case ORC_REG_SP:
433 sp = state->sp + orc->sp_offset;
434 break;
435
436 case ORC_REG_BP:
437 sp = state->bp + orc->sp_offset;
438 break;
439
440 case ORC_REG_SP_INDIRECT:
441 sp = state->sp + orc->sp_offset;
442 indirect = true;
443 break;
444
445 case ORC_REG_BP_INDIRECT:
446 sp = state->bp + orc->sp_offset;
447 indirect = true;
448 break;
449
450 case ORC_REG_R10:
451 if (!state->regs || !state->full_regs) {
452 orc_warn_current("missing R10 value at %pB\n",
453 (void *)state->ip);
454 goto err;
455 }
456 sp = state->regs->r10;
457 break;
458
459 case ORC_REG_R13:
460 if (!state->regs || !state->full_regs) {
461 orc_warn_current("missing R13 value at %pB\n",
462 (void *)state->ip);
463 goto err;
464 }
465 sp = state->regs->r13;
466 break;
467
468 case ORC_REG_DI:
469 if (!state->regs || !state->full_regs) {
470 orc_warn_current("missing RDI value at %pB\n",
471 (void *)state->ip);
472 goto err;
473 }
474 sp = state->regs->di;
475 break;
476
477 case ORC_REG_DX:
478 if (!state->regs || !state->full_regs) {
479 orc_warn_current("missing DX value at %pB\n",
480 (void *)state->ip);
481 goto err;
482 }
483 sp = state->regs->dx;
484 break;
485
486 default:
487 orc_warn("unknown SP base reg %d at %pB\n",
488 orc->sp_reg, (void *)state->ip);
489 goto err;
490 }
491
492 if (indirect) {
493 if (!deref_stack_reg(state, sp, &sp))
494 goto err;
495 }
496
497 /* Find IP, SP and possibly regs: */
498 switch (orc->type) {
499 case ORC_TYPE_CALL:
500 ip_p = sp - sizeof(long);
501
502 if (!deref_stack_reg(state, ip_p, &state->ip))
503 goto err;
504
505 state->ip = ftrace_graph_ret_addr(state->task, &state->graph_idx,
506 state->ip, (void *)ip_p);
507
508 state->sp = sp;
509 state->regs = NULL;
510 state->signal = false;
511 break;
512
513 case ORC_TYPE_REGS:
514 if (!deref_stack_regs(state, sp, &state->ip, &state->sp)) {
515 orc_warn_current("can't access registers at %pB\n",
516 (void *)orig_ip);
517 goto err;
518 }
519
520 state->regs = (struct pt_regs *)sp;
521 state->full_regs = true;
522 state->signal = true;
523 break;
524
525 case ORC_TYPE_REGS_IRET:
526 if (!deref_stack_iret_regs(state, sp, &state->ip, &state->sp)) {
527 orc_warn_current("can't access iret registers at %pB\n",
528 (void *)orig_ip);
529 goto err;
530 }
531
532 state->regs = (void *)sp - IRET_FRAME_OFFSET;
533 state->full_regs = false;
534 state->signal = true;
535 break;
536
537 default:
538 orc_warn("unknown .orc_unwind entry type %d at %pB\n",
539 orc->type, (void *)orig_ip);
540 break;
541 }
542
543 /* Find BP: */
544 switch (orc->bp_reg) {
545 case ORC_REG_UNDEFINED:
546 if (state->regs && state->full_regs)
547 state->bp = state->regs->bp;
548 break;
549
550 case ORC_REG_PREV_SP:
551 if (!deref_stack_reg(state, sp + orc->bp_offset, &state->bp))
552 goto err;
553 break;
554
555 case ORC_REG_BP:
556 if (!deref_stack_reg(state, state->bp + orc->bp_offset, &state->bp))
557 goto err;
558 break;
559
560 default:
561 orc_warn("unknown BP base reg %d for ip %pB\n",
562 orc->bp_reg, (void *)orig_ip);
563 goto err;
564 }
565
566 /* Prevent a recursive loop due to bad ORC data: */
567 if (state->stack_info.type == prev_type &&
568 on_stack(&state->stack_info, (void *)state->sp, sizeof(long)) &&
569 state->sp <= prev_sp) {
570 orc_warn_current("stack going in the wrong direction? at %pB\n",
571 (void *)orig_ip);
572 goto err;
573 }
574
575 preempt_enable();
576 return true;
577
578 err:
579 state->error = true;
580
581 the_end:
582 preempt_enable();
583 state->stack_info.type = STACK_TYPE_UNKNOWN;
584 return false;
585 }
586 EXPORT_SYMBOL_GPL(unwind_next_frame);
587
588 void __unwind_start(struct unwind_state *state, struct task_struct *task,
589 struct pt_regs *regs, unsigned long *first_frame)
590 {
591 if (!orc_init)
592 goto done;
593
594 memset(state, 0, sizeof(*state));
595 state->task = task;
596
597 /*
598 * Refuse to unwind the stack of a task while it's executing on another
599 * CPU. This check is racy, but that's ok: the unwinder has other
600 * checks to prevent it from going off the rails.
601 */
602 if (task_on_another_cpu(task))
603 goto done;
604
605 if (regs) {
606 if (user_mode(regs))
607 goto done;
608
609 state->ip = regs->ip;
610 state->sp = regs->sp;
611 state->bp = regs->bp;
612 state->regs = regs;
613 state->full_regs = true;
614 state->signal = true;
615
616 } else if (task == current) {
617 asm volatile("lea (%%rip), %0\n\t"
618 "mov %%rsp, %1\n\t"
619 "mov %%rbp, %2\n\t"
620 : "=r" (state->ip), "=r" (state->sp),
621 "=r" (state->bp));
622
623 } else {
624 struct inactive_task_frame *frame = (void *)task->thread.sp;
625
626 state->sp = task->thread.sp;
627 state->bp = READ_ONCE_NOCHECK(frame->bp);
628 state->ip = READ_ONCE_NOCHECK(frame->ret_addr);
629 }
630
631 if (get_stack_info((unsigned long *)state->sp, state->task,
632 &state->stack_info, &state->stack_mask)) {
633 /*
634 * We weren't on a valid stack. It's possible that
635 * we overflowed a valid stack into a guard page.
636 * See if the next page up is valid so that we can
637 * generate some kind of backtrace if this happens.
638 */
639 void *next_page = (void *)PAGE_ALIGN((unsigned long)state->sp);
640 if (get_stack_info(next_page, state->task, &state->stack_info,
641 &state->stack_mask))
642 return;
643 }
644
645 /*
646 * The caller can provide the address of the first frame directly
647 * (first_frame) or indirectly (regs->sp) to indicate which stack frame
648 * to start unwinding at. Skip ahead until we reach it.
649 */
650
651 /* When starting from regs, skip the regs frame: */
652 if (regs) {
653 unwind_next_frame(state);
654 return;
655 }
656
657 /* Otherwise, skip ahead to the user-specified starting frame: */
658 while (!unwind_done(state) &&
659 (!on_stack(&state->stack_info, first_frame, sizeof(long)) ||
660 state->sp < (unsigned long)first_frame))
661 unwind_next_frame(state);
662
663 return;
664
665 done:
666 state->stack_info.type = STACK_TYPE_UNKNOWN;
667 return;
668 }
669 EXPORT_SYMBOL_GPL(__unwind_start);