Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "types.h"
- #include "param.h"
- #include "memlayout.h"
- #include "mmu.h"
- #include "proc.h"
- #include "defs.h"
- #include "x86.h"
- #include "elf.h"
- static int _exec(char *path, char **argv, int recur_limit);
- static int _check_shebang(struct inode *ip);
- int
- exec(char *path, char **argv)
- {
- _exec(path, argv, 5);
- }
- static int
- _exec(char *path, char **argv, int recur_limit)
- {
- char *s, *last;
- int i, off;
- uint argc, sz, sp, ustack[3+MAXARG+1];
- struct elfhdr elf;
- struct inode *ip;
- struct proghdr ph;
- pde_t *pgdir, *oldpgdir;
- if (--recur_limit)
- goto bad;
- if((ip = namei(path)) == 0)
- return -1;
- ilock(ip);
- pgdir = 0;
- // Check ELF header
- if(readi(ip, (char*)&elf, 0, sizeof(elf)) < sizeof(elf))
- goto bad_elf;
- if(elf.magic != ELF_MAGIC)
- goto bad_elf;
- if((pgdir = setupkvm()) == 0)
- goto bad;
- // Load program into memory.
- sz = 0;
- 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;
- if(ph.memsz < ph.filesz)
- goto bad;
- if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0)
- goto bad;
- if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0)
- goto bad;
- }
- iunlockput(ip);
- ip = 0;
- // Allocate two pages at the next page boundary.
- // Make the first inaccessible. Use the second as the user stack.
- sz = PGROUNDUP(sz);
- if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0)
- goto bad;
- clearpteu(pgdir, (char*)(sz - 2*PGSIZE));
- sp = sz;
- // Push argument strings, prepare rest of stack in ustack.
- for(argc = 0; argv[argc]; argc++) {
- if(argc >= MAXARG)
- goto bad;
- sp = (sp - (strlen(argv[argc]) + 1)) & ~3;
- if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0)
- goto bad;
- ustack[3+argc] = sp;
- }
- ustack[3+argc] = 0;
- ustack[0] = 0xffffffff; // fake return PC
- ustack[1] = argc;
- ustack[2] = sp - (argc+1)*4; // argv pointer
- sp -= (3+argc+1) * 4;
- if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0)
- goto bad;
- // Save program name for debugging.
- for(last=s=path; *s; s++)
- if(*s == '/')
- last = s+1;
- safestrcpy(proc->name, last, sizeof(proc->name));
- // Commit to the user image.
- oldpgdir = proc->pgdir;
- proc->pgdir = pgdir;
- proc->sz = sz;
- proc->tf->eip = elf.entry; // main
- proc->tf->esp = sp;
- switchuvm(proc);
- freevm(oldpgdir);
- return 0;
- bad:
- if(pgdir)
- freevm(pgdir);
- if(ip)
- iunlockput(ip);
- return -1;
- bad_elf:
- if (_check_shebang(ip)) {
- return _exec_shebang(path, argv, ip, recur_limit);
- } else {
- goto bad;
- }
- }
- static int
- _check_sheband(struct inode *ip)
- {
- char shebang[2];
- readi(ip, shebang, 0, 2);
- return shebang[0] == '#' && shebang[1] == '!';
- }
- static int
- _exec_shebang(char *path, char **argv, struct inode *ip, int recur_limit)
- {
- char *shell_path;
- int i, shell_path_len;
- shell_path = kalloc();
- shell_path_len = read(ip, shell_path, 2, 4095);
- for (i = 0; i < shell_path_len; ++i) {
- if (shell_path[i] = '\n')
- break;
- }
- shell_path[i] = 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement