Blame SOURCES/0001-arm64-Support-overflow-stack-panic.patch

412566
From c05db8d7d83389a342664073547bd29eda900158 Mon Sep 17 00:00:00 2001
412566
From: Hong YANG <hong.yang3@nio.com>
412566
Date: Mon, 15 Nov 2021 15:41:01 +0800
412566
Subject: [PATCH 1/2] arm64: Support overflow stack panic
412566
412566
Kernel commit <872d8327ce89> ("arm64: add VMAP_STACK overflow detection")
412566
has supported the overflow stack exception handling. Without the patch, the
412566
"bt" command will make crash generate a core dump because of segmentation
412566
fault. With the patch, the "bt" command can display the overflow stack.
412566
412566
Before:
412566
crash> bt
412566
PID: 3607   TASK: ffffffcbf9a4da00  CPU: 2   COMMAND: "sh"
412566
Segmentation fault (core dumped)
412566
412566
After:
412566
crash> bt
412566
PID: 3607   TASK: ffffffcbf9a4da00  CPU: 2   COMMAND: "sh"
412566
 #0 [ffffffccbfd85f50] __delay at ffffff8008ceded8
412566
...
412566
 #5 [ffffffccbfd85fd0] emergency_restart at ffffff80080d49fc
412566
 #6 [ffffffccbfd86140] panic at ffffff80080af4c0
412566
 #7 [ffffffccbfd86150] nmi_panic at ffffff80080af150
412566
 #8 [ffffffccbfd86190] handle_bad_stack at ffffff800808b0b8
412566
 #9 [ffffffccbfd862d0] __bad_stack at ffffff800808285c
412566
     PC: ffffff8008082e80  [el1_sync]
412566
     LR: ffffff8000d6c214  [stack_overflow_demo+84]
412566
     SP: ffffff1a79930070  PSTATE: 204003c5
412566
    X29: ffffff8011b03d00  X28: ffffffcbf9a4da00  X27: ffffff8008e02000
412566
    X26: 0000000000000040  X25: 0000000000000124  X24: ffffffcbf9a4da00
412566
    X23: 0000007daec2e288  X22: ffffffcbfe03b800  X21: 0000007daec2e288
412566
    X20: 0000000000000002  X19: 0000000000000002  X18: 0000000000000002
412566
    X17: 00000000000003e7  X16: 0000000000000000  X15: 0000000000000000
412566
    X14: ffffffcc17facb00  X13: ffffffccb4c25c00  X12: 0000000000000000
412566
    X11: ffffffcc17fad660  X10: 0000000000000af0   X9: 0000000000000000
412566
     X8: ffffff1a799334f0   X7: 0000000000000000   X6: 000000000000003f
412566
     X5: 0000000000000040   X4: 0000000000000010   X3: 00000065981d07f0
412566
     X2: 00000065981d07f0   X1: 0000000000000000   X0: ffffff1a799334f0
412566
412566
Signed-off-by: Hong YANG <hong.yang3@nio.com>
412566
---
412566
 arm64.c | 169 ++++++++++++++++++++++++++++++++++++++++++++++++++------
412566
 defs.h  |   6 ++
412566
 2 files changed, 159 insertions(+), 16 deletions(-)
412566
412566
diff --git a/arm64.c b/arm64.c
412566
index 94681d1a37db..23c3d75d85aa 100644
412566
--- a/arm64.c
412566
+++ b/arm64.c
412566
@@ -45,6 +45,7 @@ static int arm64_vtop_3level_4k(ulong, ulong, physaddr_t *, int);
412566
 static int arm64_vtop_4level_4k(ulong, ulong, physaddr_t *, int);
412566
 static ulong arm64_get_task_pgd(ulong);
412566
 static void arm64_irq_stack_init(void);
412566
+static void arm64_overflow_stack_init(void);
412566
 static void arm64_stackframe_init(void);
412566
 static int arm64_eframe_search(struct bt_info *);
412566
 static int arm64_is_kernel_exception_frame(struct bt_info *, ulong);
412566
@@ -63,6 +64,7 @@ static int arm64_get_dumpfile_stackframe(struct bt_info *, struct arm64_stackfra
412566
 static int arm64_in_kdump_text(struct bt_info *, struct arm64_stackframe *);
412566
 static int arm64_in_kdump_text_on_irq_stack(struct bt_info *);
412566
 static int arm64_switch_stack(struct bt_info *, struct arm64_stackframe *, FILE *);
412566
+static int arm64_switch_stack_from_overflow(struct bt_info *, struct arm64_stackframe *, FILE *);
412566
 static int arm64_get_stackframe(struct bt_info *, struct arm64_stackframe *);
412566
 static void arm64_get_stack_frame(struct bt_info *, ulong *, ulong *);
412566
 static void arm64_gen_hidden_frame(struct bt_info *bt, ulong, struct arm64_stackframe *);
412566
@@ -78,8 +80,11 @@ static int arm64_get_smp_cpus(void);
412566
 static void arm64_clear_machdep_cache(void);
412566
 static int arm64_on_process_stack(struct bt_info *, ulong);
412566
 static int arm64_in_alternate_stack(int, ulong);
412566
+static int arm64_in_alternate_stackv(int cpu, ulong stkptr, ulong *stacks, ulong stack_size);
412566
 static int arm64_on_irq_stack(int, ulong);
412566
+static int arm64_on_overflow_stack(int, ulong);
412566
 static void arm64_set_irq_stack(struct bt_info *);
412566
+static void arm64_set_overflow_stack(struct bt_info *);
412566
 static void arm64_set_process_stack(struct bt_info *);
412566
 static int arm64_get_kvaddr_ranges(struct vaddr_range *);
412566
 static void arm64_get_crash_notes(void);
412566
@@ -463,6 +468,7 @@ arm64_init(int when)
412566
 			machdep->hz = 100;
412566
 
412566
 		arm64_irq_stack_init();
412566
+		arm64_overflow_stack_init();
412566
 		arm64_stackframe_init();
412566
 		break;
412566
 
412566
@@ -1715,6 +1721,49 @@ arm64_irq_stack_init(void)
412566
 	} 
412566
 }
412566
 
412566
+/*
412566
+ *  Gather Overflow stack values.
412566
+ *
412566
+ *  Overflow stack supported since 4.14, in commit 872d8327c
412566
+ */
412566
+static void
412566
+arm64_overflow_stack_init(void)
412566
+{
412566
+	int i;
412566
+	struct syment *sp;
412566
+	struct gnu_request request, *req;
412566
+	struct machine_specific *ms = machdep->machspec;
412566
+	req = &request;
412566
+
412566
+	if (symbol_exists("overflow_stack") &&
412566
+	    (sp = per_cpu_symbol_search("overflow_stack")) &&
412566
+	    get_symbol_type("overflow_stack", NULL, req)) {
412566
+		if (CRASHDEBUG(1)) {
412566
+			fprintf(fp, "overflow_stack: \n");
412566
+			fprintf(fp, "  type: %x, %s\n",
412566
+				(int)req->typecode,
412566
+				(req->typecode == TYPE_CODE_ARRAY) ?
412566
+						"TYPE_CODE_ARRAY" : "other");
412566
+			fprintf(fp, "  target_typecode: %x, %s\n",
412566
+				(int)req->target_typecode,
412566
+				req->target_typecode == TYPE_CODE_INT ?
412566
+						"TYPE_CODE_INT" : "other");
412566
+			fprintf(fp, "  target_length: %ld\n",
412566
+						req->target_length);
412566
+			fprintf(fp, "  length: %ld\n", req->length);
412566
+		}
412566
+
412566
+		if (!(ms->overflow_stacks = (ulong *)malloc((size_t)(kt->cpus * sizeof(ulong)))))
412566
+			error(FATAL, "cannot malloc overflow_stack addresses\n");
412566
+
412566
+		ms->overflow_stack_size = ARM64_OVERFLOW_STACK_SIZE;
412566
+		machdep->flags |= OVERFLOW_STACKS;
412566
+
412566
+		for (i = 0; i < kt->cpus; i++)
412566
+			ms->overflow_stacks[i] = kt->__per_cpu_offset[i] + sp->value;
412566
+	}
412566
+}
412566
+
412566
 /*
412566
  *  Gather and verify all of the backtrace requirements.
412566
  */
412566
@@ -1960,6 +2009,7 @@ static char *arm64_exception_functions[] = {
412566
         "do_mem_abort",
412566
         "do_el0_irq_bp_hardening",
412566
         "do_sp_pc_abort",
412566
+        "handle_bad_stack",
412566
         NULL
412566
 };
412566
 
412566
@@ -1978,7 +2028,10 @@ arm64_in_exception_text(ulong ptr)
412566
 		if ((ptr >= ms->__exception_text_start) &&
412566
 		    (ptr < ms->__exception_text_end))
412566
 			return TRUE;
412566
-	} else if ((name = closest_symbol(ptr))) {  /* Linux 5.5 and later */
412566
+	}
412566
+
412566
+	name = closest_symbol(ptr);
412566
+	if (name != NULL) { /* Linux 5.5 and later */
412566
 		for (func = &arm64_exception_functions[0]; *func; func++) {
412566
 			if (STREQ(name, *func))
412566
 				return TRUE;
412566
@@ -2252,15 +2305,14 @@ arm64_unwind_frame(struct bt_info *bt, struct arm64_stackframe *frame)
412566
 	if ((frame->fp == 0) && (frame->pc == 0))
412566
 		return FALSE;
412566
 
412566
-	if (!(machdep->flags & IRQ_STACKS))
412566
-		return TRUE;
412566
-
412566
-	if (!(machdep->flags & IRQ_STACKS))
412566
+	if (!(machdep->flags & (IRQ_STACKS | OVERFLOW_STACKS)))
412566
 		return TRUE;
412566
 
412566
 	if (machdep->flags & UNW_4_14) {
412566
-		if ((bt->flags & BT_IRQSTACK) &&
412566
-		    !arm64_on_irq_stack(bt->tc->processor, frame->fp)) {
412566
+		if (((bt->flags & BT_IRQSTACK) &&
412566
+		     !arm64_on_irq_stack(bt->tc->processor, frame->fp)) ||
412566
+		    ((bt->flags & BT_OVERFLOW_STACK) &&
412566
+		     !arm64_on_overflow_stack(bt->tc->processor, frame->fp))) {
412566
 			if (arm64_on_process_stack(bt, frame->fp)) {
412566
 				arm64_set_process_stack(bt);
412566
 
412566
@@ -2677,6 +2729,9 @@ arm64_back_trace_cmd(struct bt_info *bt)
412566
 		if (arm64_on_irq_stack(bt->tc->processor, bt->frameptr)) {
412566
 			arm64_set_irq_stack(bt);
412566
 			bt->flags |= BT_IRQSTACK;
412566
+		} else if (arm64_on_overflow_stack(bt->tc->processor, bt->frameptr)) {
412566
+			arm64_set_overflow_stack(bt);
412566
+			bt->flags |= BT_OVERFLOW_STACK;
412566
 		}
412566
 		stackframe.sp = bt->stkptr;
412566
 		stackframe.pc = bt->instptr;
412566
@@ -2731,7 +2786,9 @@ arm64_back_trace_cmd(struct bt_info *bt)
412566
 			break;
412566
 
412566
 		if (arm64_in_exception_text(bt->instptr) && INSTACK(stackframe.fp, bt)) {
412566
-			if (!(bt->flags & BT_IRQSTACK) ||
412566
+			if (bt->flags & BT_OVERFLOW_STACK) {
412566
+				exception_frame = stackframe.fp - KERN_EFRAME_OFFSET;
412566
+			} else if (!(bt->flags & BT_IRQSTACK) ||
412566
 			    ((stackframe.sp + SIZE(pt_regs)) < bt->stacktop)) {
412566
 				if (arm64_is_kernel_exception_frame(bt, stackframe.fp - KERN_EFRAME_OFFSET))
412566
 					exception_frame = stackframe.fp - KERN_EFRAME_OFFSET;
412566
@@ -2745,6 +2802,12 @@ arm64_back_trace_cmd(struct bt_info *bt)
412566
 				break;
412566
 		}
412566
 
412566
+		if ((bt->flags & BT_OVERFLOW_STACK) &&
412566
+		    !arm64_on_overflow_stack(bt->tc->processor, stackframe.fp)) {
412566
+			bt->flags &= ~BT_OVERFLOW_STACK;
412566
+			if (arm64_switch_stack_from_overflow(bt, &stackframe, ofp) == USER_MODE)
412566
+				break;
412566
+		}
412566
 
412566
 		level++;
412566
 	}
412566
@@ -3131,6 +3194,43 @@ arm64_switch_stack(struct bt_info *bt, struct arm64_stackframe *frame, FILE *ofp
412566
 	return KERNEL_MODE;
412566
 }
412566
 
412566
+static int
412566
+arm64_switch_stack_from_overflow(struct bt_info *bt, struct arm64_stackframe *frame, FILE *ofp)
412566
+{
412566
+	int i;
412566
+	ulong stacktop, words, addr;
412566
+	ulong *stackbuf;
412566
+	char buf[BUFSIZE];
412566
+	struct machine_specific *ms = machdep->machspec;
412566
+
412566
+	if (bt->flags & BT_FULL) {
412566
+		stacktop = ms->overflow_stacks[bt->tc->processor] + ms->overflow_stack_size;
412566
+		words = (stacktop - bt->bptr) / sizeof(ulong);
412566
+		stackbuf = (ulong *)GETBUF(words * sizeof(ulong));
412566
+		readmem(bt->bptr, KVADDR, stackbuf, words * sizeof(long),
412566
+			"top of overflow stack", FAULT_ON_ERROR);
412566
+
412566
+		addr = bt->bptr;
412566
+		for (i = 0; i < words; i++) {
412566
+			if (!(i & 1))
412566
+				fprintf(ofp, "%s    %lx: ", i ? "\n" : "", addr);
412566
+			fprintf(ofp, "%s ", format_stack_entry(bt, buf, stackbuf[i], 0));
412566
+			addr += sizeof(ulong);
412566
+		}
412566
+		fprintf(ofp, "\n");
412566
+		FREEBUF(stackbuf);
412566
+	}
412566
+	fprintf(ofp, "--- <Overflow stack> ---\n");
412566
+
412566
+	if (frame->fp == 0)
412566
+		return USER_MODE;
412566
+
412566
+	if (!(machdep->flags & UNW_4_14))
412566
+		arm64_print_exception_frame(bt, frame->sp, KERNEL_MODE, ofp);
412566
+
412566
+	return KERNEL_MODE;
412566
+}
412566
+
412566
 static int
412566
 arm64_get_dumpfile_stackframe(struct bt_info *bt, struct arm64_stackframe *frame)
412566
 {
412566
@@ -3682,6 +3782,16 @@ arm64_display_machine_stats(void)
412566
 				machdep->machspec->irq_stacks[i]);
412566
 		}
412566
 	}
412566
+	if (machdep->machspec->overflow_stack_size) {
412566
+		fprintf(fp, "OVERFLOW STACK SIZE: %ld\n",
412566
+			machdep->machspec->overflow_stack_size);
412566
+		fprintf(fp, "    OVERFLOW STACKS:\n");
412566
+		for (i = 0; i < kt->cpus; i++) {
412566
+			pad = (i < 10) ? 3 : (i < 100) ? 2 : (i < 1000) ? 1 : 0;
412566
+			fprintf(fp, "%s           CPU %d: %lx\n", space(pad), i,
412566
+				machdep->machspec->overflow_stacks[i]);
412566
+		}
412566
+	}
412566
 }
412566
 
412566
 static int
412566
@@ -3875,24 +3985,41 @@ arm64_on_process_stack(struct bt_info *bt, ulong stkptr)
412566
 }
412566
 
412566
 static int
412566
-arm64_on_irq_stack(int cpu, ulong stkptr)
412566
+arm64_in_alternate_stackv(int cpu, ulong stkptr, ulong *stacks, ulong stack_size)
412566
 {
412566
-	return arm64_in_alternate_stack(cpu, stkptr);
412566
+	if ((cpu >= kt->cpus) || (stacks == NULL) || !stack_size)
412566
+		return FALSE;
412566
+
412566
+	if ((stkptr >= stacks[cpu]) &&
412566
+	    (stkptr < (stacks[cpu] + stack_size)))
412566
+		return TRUE;
412566
+
412566
+	return FALSE;
412566
 }
412566
 
412566
 static int
412566
 arm64_in_alternate_stack(int cpu, ulong stkptr)
412566
+{
412566
+	return (arm64_on_irq_stack(cpu, stkptr) ||
412566
+		arm64_on_overflow_stack(cpu, stkptr));
412566
+}
412566
+
412566
+static int
412566
+arm64_on_irq_stack(int cpu, ulong stkptr)
412566
 {
412566
 	struct machine_specific *ms = machdep->machspec;
412566
 
412566
-	if (!ms->irq_stack_size || (cpu >= kt->cpus))
412566
-		return FALSE;
412566
+	return arm64_in_alternate_stackv(cpu, stkptr,
412566
+			ms->irq_stacks, ms->irq_stack_size);
412566
+}
412566
 
412566
-	if ((stkptr >= ms->irq_stacks[cpu]) &&
412566
-	    (stkptr < (ms->irq_stacks[cpu] + ms->irq_stack_size)))
412566
-		return TRUE;
412566
+static int
412566
+arm64_on_overflow_stack(int cpu, ulong stkptr)
412566
+{
412566
+	struct machine_specific *ms = machdep->machspec;
412566
 
412566
-	return FALSE;
412566
+	return arm64_in_alternate_stackv(cpu, stkptr,
412566
+			ms->overflow_stacks, ms->overflow_stack_size);
412566
 }
412566
 
412566
 static void
412566
@@ -3905,6 +4032,16 @@ arm64_set_irq_stack(struct bt_info *bt)
412566
 	alter_stackbuf(bt);
412566
 }
412566
 
412566
+static void
412566
+arm64_set_overflow_stack(struct bt_info *bt)
412566
+{
412566
+	struct machine_specific *ms = machdep->machspec;
412566
+
412566
+	bt->stackbase = ms->overflow_stacks[bt->tc->processor];
412566
+	bt->stacktop = bt->stackbase + ms->overflow_stack_size;
412566
+	alter_stackbuf(bt);
412566
+}
412566
+
412566
 static void
412566
 arm64_set_process_stack(struct bt_info *bt)
412566
 {
412566
diff --git a/defs.h b/defs.h
412566
index 43eff46b105d..caaa11e50c87 100644
412566
--- a/defs.h
412566
+++ b/defs.h
412566
@@ -3218,6 +3218,7 @@ typedef signed int s32;
412566
 #define UNW_4_14      (0x200)
412566
 #define FLIPPED_VM    (0x400)
412566
 #define HAS_PHYSVIRT_OFFSET (0x800)
412566
+#define OVERFLOW_STACKS     (0x1000)
412566
 
412566
 /*
412566
  * Get kimage_voffset from /dev/crash
412566
@@ -3260,6 +3261,7 @@ typedef signed int s32;
412566
 
412566
 #define ARM64_STACK_SIZE   (16384)
412566
 #define ARM64_IRQ_STACK_SIZE   ARM64_STACK_SIZE
412566
+#define ARM64_OVERFLOW_STACK_SIZE   (4096)
412566
 
412566
 #define _SECTION_SIZE_BITS           30
412566
 #define _SECTION_SIZE_BITS_5_12      27
412566
@@ -3332,6 +3334,9 @@ struct machine_specific {
412566
 	char  *irq_stackbuf;
412566
 	ulong __irqentry_text_start;
412566
 	ulong __irqentry_text_end;
412566
+	ulong overflow_stack_size;
412566
+	ulong *overflow_stacks;
412566
+	char  *overflow_stackbuf;
412566
 	/* for exception vector code */
412566
 	ulong exp_entry1_start;
412566
 	ulong exp_entry1_end;
412566
@@ -5778,6 +5783,7 @@ ulong cpu_map_addr(const char *type);
412566
 #define BT_CPUMASK        (0x1000000000000ULL)
412566
 #define BT_SHOW_ALL_REGS  (0x2000000000000ULL)
412566
 #define BT_REGS_NOT_FOUND (0x4000000000000ULL)
412566
+#define BT_OVERFLOW_STACK (0x8000000000000ULL)
412566
 #define BT_SYMBOL_OFFSET   (BT_SYMBOLIC_ARGS)
412566
 
412566
 #define BT_REF_HEXVAL         (0x1)
412566
-- 
412566
2.30.2
412566