aboutsummaryrefslogtreecommitdiff
path: root/pk/elf.c
blob: f61f1da2e564083db5189a393bf36f5635de271f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <sys/stat.h>
#include <fcntl.h>
#include <elf.h>
#include <string.h>
#include "file.h"
#include "pk.h"

long load_elf(const char* fn, int* user64)
{
  sysret_t ret = file_open(fn, strlen(fn)+1, O_RDONLY, 0);
  file_t* file = (file_t*)ret.result;
  if(ret.result == -1)
    goto fail;

  char buf[2048]; // XXX
  int header_size = file_read(file, buf, sizeof(buf)).result;
  if(header_size >= (int)sizeof(Elf64_Ehdr))
    goto fail;

  const Elf64_Ehdr* eh64 = (const Elf64_Ehdr*)buf;
  if(!(eh64->e_ident[0] == '\177' && eh64->e_ident[1] == 'E' &&
       eh64->e_ident[2] == 'L'    && eh64->e_ident[3] == 'F'))
    goto fail;

  #define LOAD_ELF do { \
    eh = (typeof(eh))buf; \
    kassert(header_size >= eh->e_phoff + eh->e_phnum*sizeof(*ph)); \
    ph = (typeof(ph))(buf+eh->e_phoff); \
    for(int i = 0; i < eh->e_phnum; i++, ph++) { \
      if(ph->p_type == SHT_PROGBITS && ph->p_memsz) { \
        if(file_pread(file, (char*)(long)ph->p_vaddr, ph->p_filesz, ph->p_offset).result != ph->p_filesz) \
          goto fail; \
        memset((char*)(long)ph->p_vaddr+ph->p_filesz, 0, ph->p_memsz-ph->p_filesz); \
      } \
    } \
  } while(0)

  long entry;
  if(eh64->e_ident[EI_CLASS] == ELFCLASS32)
  {
    Elf32_Ehdr* eh;
    Elf32_Phdr* ph;
    LOAD_ELF;
    entry = eh->e_entry;
  }
  else if(eh64->e_ident[EI_CLASS] == ELFCLASS64)
  {
    Elf64_Ehdr* eh;
    Elf64_Phdr* ph;
    LOAD_ELF;
    entry = eh->e_entry;
  }
  else
    goto fail;

  *user64 = eh64->e_ident[EI_CLASS] == ELFCLASS64;

  file_decref(file);

  return entry;

fail:
    panic("couldn't open ELF program: %s!", fn);
}