mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 17:28:48 +00:00
Kernel: Use the CPU's NX bit to enforce PROT_EXEC on memory mappings
Now that we have PAE support, we can ask the CPU to crash processes for trying to execute non-executable memory. This is pretty cool! :^)
This commit is contained in:
parent
c22a4301ed
commit
ce5f7f6c07
Notes:
sideshowbarker
2024-07-19 10:41:25 +09:00
Author: https://github.com/awesomekling
Commit: ce5f7f6c07
2 changed files with 9 additions and 0 deletions
|
@ -167,6 +167,13 @@ void MemoryManager::initialize_paging()
|
|||
"orl $0x20, %eax\n"
|
||||
"mov %eax, %cr4\n");
|
||||
|
||||
// Turn on IA32_EFER.NXE
|
||||
asm volatile(
|
||||
"movl $0xc0000080, %ecx\n"
|
||||
"rdmsr\n"
|
||||
"orl $0x800, %eax\n"
|
||||
"wrmsr\n");
|
||||
|
||||
asm volatile("movl %%eax, %%cr3" ::"a"(kernel_page_directory().cr3()));
|
||||
asm volatile(
|
||||
"movl %%cr0, %%eax\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue