aboutsummaryrefslogtreecommitdiff
path: root/04_dynld_nostd/dynld.S
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2021-04-17 23:47:17 +0200
committerjohannst <johannes.stoelp@gmail.com>2021-04-17 23:47:17 +0200
commit287f736e614a2931f57e9aabf42105e3cf3e8992 (patch)
treebfc6c69d4b09b37706a1ef9ae62dc98fe11c714f /04_dynld_nostd/dynld.S
parent4fa1f03150ddaa56cf58b11809182ef4ef2b6abd (diff)
downloaddynld-287f736e614a2931f57e9aabf42105e3cf3e8992.tar.gz
dynld-287f736e614a2931f57e9aabf42105e3cf3e8992.zip
04: able to map dependency & resolve reolcs and execture main program (initial commit)
Diffstat (limited to '04_dynld_nostd/dynld.S')
-rw-r--r--04_dynld_nostd/dynld.S27
1 files changed, 27 insertions, 0 deletions
diff --git a/04_dynld_nostd/dynld.S b/04_dynld_nostd/dynld.S
new file mode 100644
index 0000000..8a634f5
--- /dev/null
+++ b/04_dynld_nostd/dynld.S
@@ -0,0 +1,27 @@
+// Copyright (c) 2020 Johannes Stoelp
+
+#include <asm/unistd.h>
+
+.intel_syntax noprefix
+
+.section .text, "ax", @progbits
+.global dl_start
+dl_start:
+ // $rsp is guaranteed to be 16-byte aligned.
+
+ // Clear $rbp as specified by the SysV AMD64 ABI.
+ xor rbp, rbp
+
+ // Load pointer to process context prepared by execve(2) syscall as
+ // specified in the SysV AMD64 ABI.
+ // Save pointer in $rdi which is the arg0 (int/ptr) register.
+ lea rdi, [rsp]
+
+ // Stack frames must be 16-byte aligned before control is transfered to the
+ // callees entry point.
+ call dl_entry
+
+ // Call exit(1) syscall to indicate error, dl_entry should not return.
+ mov rdi, 1
+ mov rax, __NR_exit
+ syscall