px-userland-execve 0.2.1

An implementation of execve() in user space
Documentation
  • Coverage
  • 0%
    0 out of 12 items documented0 out of 0 items with examples
  • Size
  • Source code size: 22.72 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 465.77 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 17s Average build duration of successful builds.
  • all releases: 17s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • io12/userland-execve-rust
    35 5 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • gkgoat1

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.