aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/elf.h
diff options
context:
space:
mode:
authorMarvin Borner2020-02-22 17:22:17 +0100
committerMarvin Borner2020-02-22 17:22:17 +0100
commitadd6efeb22ffb7695d5c9addcef073fc653f700e (patch)
tree147c99f2f3e037c877a34468f1494c412ec53416 /src/kernel/fs/elf.h
parent86ef6a779a42cf5701632ccb82714a006bae4ee9 (diff)
Well basically nothing really works I guess
I've worked quite a while on several small things which I didn't commit but I'm going away for a week (holiday) soooo I synced these useless and dumb files :)
Diffstat (limited to 'src/kernel/fs/elf.h')
-rw-r--r--src/kernel/fs/elf.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/kernel/fs/elf.h b/src/kernel/fs/elf.h
new file mode 100644
index 0000000..9be6b4d
--- /dev/null
+++ b/src/kernel/fs/elf.h
@@ -0,0 +1,53 @@
+#ifndef MELVIX_ELF_H
+#define MELVIX_ELF_H
+
+#include <stdint.h>
+
+typedef struct {
+ uint32_t sig;
+} elf_priv_data;
+
+typedef struct {
+ unsigned char e_ident[16];
+ uint16_t e_type;
+ uint16_t e_machine;
+ uint32_t e_version;
+ uint32_t e_entry;
+ uint32_t e_phoff;
+ uint32_t e_shoff;
+ uint32_t e_flags;
+ uint16_t e_ehsize;
+ uint16_t e_phentsize;
+ uint16_t e_phnum;
+ uint16_t e_shentsize;
+ uint16_t e_shnum;
+ uint16_t e_shstrndx;
+} elf_header_t;
+
+typedef struct {
+ uint32_t sh_name;
+ uint32_t sh_type;
+ uint32_t sh_flags;
+ uint32_t sh_addr;
+ uint32_t sh_offset;
+ uint32_t sh_size;
+ uint32_t sh_link;
+ uint32_t sh_info;
+ uint32_t sh_addralign;
+ uint32_t sh_entsize;
+} elf_section_header_t;
+
+typedef struct {
+ uint32_t p_type;
+ uint32_t p_offset;
+ uint32_t p_vaddr;
+ uint32_t p_paddr;
+ uint32_t p_filesz;
+ uint32_t p_memsz;
+ uint32_t p_flags;
+ uint32_t p_align;
+} elf_program_header_t;
+
+void elf_init();
+
+#endif