Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F109428676
D3669.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D3669.diff
View Options
Index: head/sys/arm64/arm64/trap.c
===================================================================
--- head/sys/arm64/arm64/trap.c
+++ head/sys/arm64/arm64/trap.c
@@ -76,6 +76,7 @@
void do_el1h_sync(struct trapframe *);
void do_el0_sync(struct trapframe *);
void do_el0_error(struct trapframe *);
+static void print_registers(struct trapframe *frame);
int (*dtrace_invop_jump_addr)(struct trapframe *);
@@ -144,7 +145,7 @@
}
static void
-data_abort(struct trapframe *frame, uint64_t esr, int lower)
+data_abort(struct trapframe *frame, uint64_t esr, uint64_t far, int lower)
{
struct vm_map *map;
struct thread *td;
@@ -152,7 +153,6 @@
struct pcb *pcb;
vm_prot_t ftype;
vm_offset_t va;
- uint64_t far;
int error, sig, ucode;
/*
@@ -181,17 +181,23 @@
return;
}
- far = READ_SPECIALREG(far_el1);
- p = td->td_proc;
+ KASSERT(td->td_md.md_spinlock_count == 0,
+ ("data abort with spinlock held"));
+ if (td->td_critnest != 0 || WITNESS_CHECK(WARN_SLEEPOK |
+ WARN_GIANTOK, NULL, "Kernel page fault") != 0) {
+ print_registers(frame);
+ panic("data abort in critical section or under mutex");
+ }
+ p = td->td_proc;
if (lower)
- map = &td->td_proc->p_vmspace->vm_map;
+ map = &p->p_vmspace->vm_map;
else {
/* The top bit tells us which range to use */
if ((far >> 63) == 1)
map = kernel_map;
else
- map = &td->td_proc->p_vmspace->vm_map;
+ map = &p->p_vmspace->vm_map;
}
va = trunc_page(far);
@@ -246,7 +252,7 @@
do_el1h_sync(struct trapframe *frame)
{
uint32_t exception;
- uint64_t esr;
+ uint64_t esr, far;
/* Read the esr register to get the exception details */
esr = READ_SPECIALREG(esr_el1);
@@ -281,7 +287,9 @@
print_registers(frame);
panic("VFP exception in the kernel");
case EXCP_DATA_ABORT:
- data_abort(frame, esr, 0);
+ far = READ_SPECIALREG(far_el1);
+ intr_enable();
+ data_abort(frame, esr, far, 0);
break;
case EXCP_BRK:
#ifdef KDTRACE_HOOKS
@@ -328,7 +336,7 @@
{
struct thread *td;
uint32_t exception;
- uint64_t esr;
+ uint64_t esr, far;
/* Check we have a sane environment when entering from userland */
KASSERT((uintptr_t)get_pcpu() >= VM_MIN_KERNEL_ADDRESS,
@@ -337,6 +345,13 @@
esr = READ_SPECIALREG(esr_el1);
exception = ESR_ELx_EXCEPTION(esr);
+ switch (exception) {
+ case EXCP_INSN_ABORT_L:
+ case EXCP_DATA_ABORT_L:
+ case EXCP_DATA_ABORT:
+ far = READ_SPECIALREG(far_el1);
+ }
+ intr_enable();
CTR4(KTR_TRAP,
"do_el0_sync: curthread: %p, esr %lx, elr: %lx, frame: %p",
@@ -352,18 +367,12 @@
#endif
break;
case EXCP_SVC:
- /*
- * Ensure the svc_handler is being run with interrupts enabled.
- * They will be automatically restored when returning from
- * exception handler.
- */
- intr_enable();
svc_handler(frame);
break;
case EXCP_INSN_ABORT_L:
case EXCP_DATA_ABORT_L:
case EXCP_DATA_ABORT:
- data_abort(frame, esr, 1);
+ data_abort(frame, esr, far, 1);
break;
case EXCP_UNKNOWN:
el0_excp_unknown(frame);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Feb 5, 10:55 PM (21 h, 36 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16482367
Default Alt Text
D3669.diff (2 KB)
Attached To
Mode
D3669: Do not execute exception handlers with disabled interrupts
Attached
Detach File
Event Timeline
Log In to Comment