2023-08-25 23:36:26 +00:00
|
|
|
|
|
|
|
bits 64
|
|
|
|
|
|
|
|
section .text
|
2023-08-26 02:53:58 +00:00
|
|
|
global _cia_start_thread
|
2023-08-25 23:36:26 +00:00
|
|
|
|
|
|
|
; flags, &stack[-2], &parent_tid, &child_tid, 0
|
|
|
|
|
|
|
|
; DESCRIPTION:
|
|
|
|
; Function to be called when using the _clone syscall
|
|
|
|
; We don't just call the _clone syscall directly because
|
|
|
|
; if we call the clone syscall wrapper that's defined in
|
|
|
|
; linux/sys, our stack will be bad and we won't be able
|
|
|
|
; to return from the syscall wrapper
|
|
|
|
; PARAMETERS:
|
|
|
|
; rdi - flags
|
|
|
|
; rsi - stack_base
|
|
|
|
; rdx - parent_tid_ptr
|
|
|
|
; rcx - child_tid_ptr
|
|
|
|
; r8 - tls
|
|
|
|
; RETURNS:
|
|
|
|
; i64 value
|
|
|
|
; 0 if returning as a parent
|
|
|
|
; 1 if returning as a child
|
|
|
|
; negative value if there was an error making the thread
|
2023-08-26 02:53:58 +00:00
|
|
|
_cia_start_thread:
|
2023-08-25 23:36:26 +00:00
|
|
|
mov r10, rcx
|
2023-08-26 02:53:58 +00:00
|
|
|
; Setup child stack
|
|
|
|
sub rsi, 24
|
|
|
|
mov rax, [rsp]
|
|
|
|
mov [rsi+16], rax
|
|
|
|
mov rax, [rsp+8]
|
|
|
|
mov [rsi+8], rax
|
|
|
|
mov [rsi], r9
|
2023-08-25 23:36:26 +00:00
|
|
|
; Call syscall right away, since the order of the first 5 arguments
|
|
|
|
; matches with the argument order of the function
|
|
|
|
mov rax, 56 ; SYS_CLONE
|
|
|
|
syscall
|
|
|
|
; Check to see if we're child
|
|
|
|
test eax, eax
|
|
|
|
jnz .exit
|
2023-08-26 02:53:58 +00:00
|
|
|
; If child, jump to thread function
|
|
|
|
pop rax ; thread_fn
|
|
|
|
pop rdi ; ctx
|
|
|
|
call rax
|
|
|
|
hlt
|
2023-08-25 23:36:26 +00:00
|
|
|
.exit:
|
|
|
|
ret
|