mirror of
https://github.com/0xAX/linux-insides.git
synced 2024-12-22 06:38:07 +00:00
Merge pull request #753 from Mutated1994/patch-2
feat: Add some comments
This commit is contained in:
commit
96af2d0f92
@ -336,15 +336,39 @@ Next we save general registers on the stack:
|
|||||||
UNWIND_HINT_REGS
|
UNWIND_HINT_REGS
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Okay, now the stack contains following data:
|
||||||
|
```
|
||||||
|
High |-------------------------|
|
||||||
|
| %rflags |
|
||||||
|
| %cs |
|
||||||
|
| %rip |
|
||||||
|
| error code |
|
||||||
|
| %rdi |
|
||||||
|
| %rsi |
|
||||||
|
| %rdx |
|
||||||
|
| %rax |
|
||||||
|
| %r8 |
|
||||||
|
| %r9 |
|
||||||
|
| %r10 |
|
||||||
|
| %r11 |
|
||||||
|
| %rbx |
|
||||||
|
| %rbp |
|
||||||
|
| %r12 |
|
||||||
|
| %r13 |
|
||||||
|
| %r14 |
|
||||||
|
| %r15 |<-- %rsp
|
||||||
|
Low |-------------------------|
|
||||||
|
```
|
||||||
|
|
||||||
We need to do it to prevent wrong values of registers when we return from the interrupt handler. After this we check the vector number, and if it is `#PF` or [Page Fault](https://en.wikipedia.org/wiki/Page_fault), we put value from the `cr2` to the `rdi` register and call `early_make_pgtable` (we'll see it soon):
|
We need to do it to prevent wrong values of registers when we return from the interrupt handler. After this we check the vector number, and if it is `#PF` or [Page Fault](https://en.wikipedia.org/wiki/Page_fault), we put value from the `cr2` to the `rdi` register and call `early_make_pgtable` (we'll see it soon):
|
||||||
|
|
||||||
```assembly
|
```assembly
|
||||||
cmpq $14,%rsi
|
cmpq $14,%rsi /* Page fault? */
|
||||||
jnz 10f
|
jnz 10f
|
||||||
GET_CR2_INTO(%rdi)
|
GET_CR2_INTO(%rdi)
|
||||||
call early_make_pgtable
|
call early_make_pgtable
|
||||||
andl %eax,%eax
|
andl %eax,%eax /* It is more efficient, the opcode is shorter than movl 1, %eax, only 2 bytes. */
|
||||||
jz 20f
|
jz 20f /* All good */
|
||||||
```
|
```
|
||||||
|
|
||||||
otherwise we call `early_fixup_exception` function by passing kernel stack pointer:
|
otherwise we call `early_fixup_exception` function by passing kernel stack pointer:
|
||||||
|
Loading…
Reference in New Issue
Block a user