mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Kernel/aarch64: Handle instruction aborts
To detect instruction aborts, a helper to Registers.h is added, and used in Interrupts.cpp. Additionally, the PageFault class gets a setter to set the PageFaults m_is_instruction_fetch bool, and is also used in Interrupts.cpp.
This commit is contained in:
parent
daf7f43135
commit
ecf45e191e
Notes:
sideshowbarker
2024-07-18 00:34:07 +09:00
Author: https://github.com/FireFox317
Commit: ecf45e191e
Pull-request: https://github.com/SerenityOS/serenity/pull/17249
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/nico ✅
Reviewed-by: https://github.com/supercomputer7
3 changed files with 11 additions and 1 deletions
|
@ -78,6 +78,8 @@ public:
|
|||
void set_mode(ExecutionMode execution_mode) { m_execution_mode = execution_mode; }
|
||||
ExecutionMode mode() const { return m_execution_mode; }
|
||||
|
||||
void set_instruction_fetch(bool b) { m_is_instruction_fetch = b; }
|
||||
|
||||
bool is_not_present() const { return m_type == Type::PageNotPresent; }
|
||||
bool is_protection_violation() const { return m_type == Type::ProtectionViolation; }
|
||||
bool is_read() const { return m_access == Access::Read; }
|
||||
|
|
|
@ -73,6 +73,9 @@ static PageFault page_fault_from_exception_syndrome_register(VirtualAddress faul
|
|||
// FIXME: Set correct mode
|
||||
fault.set_mode(ExecutionMode::Kernel);
|
||||
|
||||
if (Aarch64::exception_class_is_instruction_abort(esr_el1.EC))
|
||||
fault.set_instruction_fetch(true);
|
||||
|
||||
return fault;
|
||||
}
|
||||
|
||||
|
@ -92,7 +95,7 @@ extern "C" void exception_common(Kernel::TrapFrame* trap_frame)
|
|||
dump_exception_syndrome_register(esr_el1);
|
||||
}
|
||||
|
||||
if (Aarch64::exception_class_is_data_abort(esr_el1.EC)) {
|
||||
if (Aarch64::exception_class_is_data_abort(esr_el1.EC) || Aarch64::exception_class_is_instruction_abort(esr_el1.EC)) {
|
||||
auto page_fault = page_fault_from_exception_syndrome_register(VirtualAddress(fault_address), esr_el1);
|
||||
page_fault.handle(*trap_frame->regs);
|
||||
} else {
|
||||
|
|
|
@ -1162,6 +1162,11 @@ static inline bool exception_class_is_data_abort(u8 exception_class)
|
|||
return exception_class == 0x24 || exception_class == 0x25;
|
||||
}
|
||||
|
||||
static inline bool exception_class_is_instruction_abort(u8 exception_class)
|
||||
{
|
||||
return exception_class == 0x20 || exception_class == 0x21;
|
||||
}
|
||||
|
||||
// D17.2.37 ESR_EL1, Exception Syndrome Register (EL1)
|
||||
// ISS encoding for an exception from a Data Abort
|
||||
// DFSC, bits [5:0]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue