Newer
Older
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "x86.h"
#include "elf.h"
int
exec(char *path, char **argv)
{

Austin Clements
committed
uint sz, sp, spbottom, argp;
pde_t *pgdir, *oldpgdir;
if(readi(ip, (char*)&elf, 0, sizeof(elf)) < sizeof(elf))
goto bad;
if(elf.magic != ELF_MAGIC)
goto bad;
// Load program into memory.
for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){
if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph))
goto bad;
if(ph.type != ELF_PROG_LOAD)
continue;

Austin Clements
committed
if(!(sz = allocuvm(pgdir, sz, ph.va + ph.memsz)))
if(!loaduvm(pgdir, (char *)ph.va, ip, ph.offset, ph.filesz))
// Allocate and initialize stack at sz

Austin Clements
committed
sz = spbottom = PGROUNDUP(sz);
if(!(sz = allocuvm(pgdir, sz, sz + PGSIZE)))

Austin Clements
committed
mem = uva2ka(pgdir, (char *)spbottom);
arglen = 0;
for(argc=0; argv[argc]; argc++)
arglen += strlen(argv[argc]) + 1;
arglen = (arglen+3) & ~3;
// XXX rtm: does the following code work if the
// arguments &c do not fit in one page?

Austin Clements
committed
*(uint*)(mem+argp-spbottom + 4*argc) = 0; // argv[argc]

Austin Clements
committed
memmove(mem+sp-spbottom, argv[i], len);
*(uint*)(mem+argp-spbottom + 4*i) = sp; // argv[i]

Austin Clements
committed
*(uint*)(mem+sp-spbottom) = argp;

Austin Clements
committed
*(uint*)(mem+sp-spbottom) = argc;

Austin Clements
committed
*(uint*)(mem+sp-spbottom) = 0xffffffff; // fake return pc
// Commit to the user image.
oldpgdir = proc->pgdir;
proc->pgdir = pgdir;
proc->sz = sz;
proc->tf->eip = elf.entry; // main
proc->tf->esp = sp;
freevm(oldpgdir);