101 lines
2.0 KiB
Markdown
101 lines
2.0 KiB
Markdown
# binary-analysis-patterns — detailed sections
|
|
|
|
## Disassembly Fundamentals
|
|
|
|
### x86-64 Instruction Patterns
|
|
|
|
#### Function Prologue/Epilogue
|
|
|
|
```asm
|
|
; Standard prologue
|
|
push rbp ; Save base pointer
|
|
mov rbp, rsp ; Set up stack frame
|
|
sub rsp, 0x20 ; Allocate local variables
|
|
|
|
; Leaf function (no calls)
|
|
; May skip frame pointer setup
|
|
sub rsp, 0x18 ; Just allocate locals
|
|
|
|
; Standard epilogue
|
|
mov rsp, rbp ; Restore stack pointer
|
|
pop rbp ; Restore base pointer
|
|
ret
|
|
|
|
; Leave instruction (equivalent)
|
|
leave ; mov rsp, rbp; pop rbp
|
|
ret
|
|
```
|
|
|
|
#### Calling Conventions
|
|
|
|
**System V AMD64 (Linux, macOS)**
|
|
|
|
```asm
|
|
; Arguments: RDI, RSI, RDX, RCX, R8, R9, then stack
|
|
; Return: RAX (and RDX for 128-bit)
|
|
; Caller-saved: RAX, RCX, RDX, RSI, RDI, R8-R11
|
|
; Callee-saved: RBX, RBP, R12-R15
|
|
|
|
; Example: func(a, b, c, d, e, f, g)
|
|
mov rdi, [a] ; 1st arg
|
|
mov rsi, [b] ; 2nd arg
|
|
mov rdx, [c] ; 3rd arg
|
|
mov rcx, [d] ; 4th arg
|
|
mov r8, [e] ; 5th arg
|
|
mov r9, [f] ; 6th arg
|
|
push [g] ; 7th arg on stack
|
|
call func
|
|
```
|
|
|
|
**Microsoft x64 (Windows)**
|
|
|
|
```asm
|
|
; Arguments: RCX, RDX, R8, R9, then stack
|
|
; Shadow space: 32 bytes reserved on stack
|
|
; Return: RAX
|
|
|
|
; Example: func(a, b, c, d, e)
|
|
sub rsp, 0x28 ; Shadow space + alignment
|
|
mov rcx, [a] ; 1st arg
|
|
mov rdx, [b] ; 2nd arg
|
|
mov r8, [c] ; 3rd arg
|
|
mov r9, [d] ; 4th arg
|
|
mov [rsp+0x20], [e] ; 5th arg on stack
|
|
call func
|
|
add rsp, 0x28
|
|
```
|
|
|
|
### ARM Assembly Patterns
|
|
|
|
#### ARM64 (AArch64) Calling Convention
|
|
|
|
```asm
|
|
; Arguments: X0-X7
|
|
; Return: X0 (and X1 for 128-bit)
|
|
; Frame pointer: X29
|
|
; Link register: X30
|
|
|
|
; Function prologue
|
|
stp x29, x30, [sp, #-16]! ; Save FP and LR
|
|
mov x29, sp ; Set frame pointer
|
|
|
|
; Function epilogue
|
|
ldp x29, x30, [sp], #16 ; Restore FP and LR
|
|
ret
|
|
```
|
|
|
|
#### ARM32 Calling Convention
|
|
|
|
```asm
|
|
; Arguments: R0-R3, then stack
|
|
; Return: R0 (and R1 for 64-bit)
|
|
; Link register: LR (R14)
|
|
|
|
; Function prologue
|
|
push {fp, lr}
|
|
add fp, sp, #4
|
|
|
|
; Function epilogue
|
|
pop {fp, pc} ; Return by popping PC
|
|
```
|