Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 499 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 499 Bytes

userland-execve

An implementation of execve() in user space.

This works by mapping the ELF executable (and interpreter, such as ld-linux.so.2) into memory, creating a stack for it (containing the auxiliary vector, arguments, and environment variables), and then jumping to the entry point with the new stack.