Tagged Questions
12
votes
3answers
329 views
How can I call inlined machine code in Python on Linux?
I'm trying to call inlined machine code from pure Python code on Linux. To this end, I embed the code in a bytes literal
code = b"\x55\x89\xe5\x5d\xc3"
and then call mprotect() via ctypes to allow ...
6
votes
1answer
2k views
Is there a better way than parsing /proc/self/maps to figure out memory protection?
On Linux (or Solaris) is there a better way than hand parsing /proc/self/maps repeatedly to figure out whether or not you can read, write or execute whatever is stored at one or more addresses in ...
5
votes
4answers
4k views
Write a signal handler to catch SIGSEGV
I want to write a signal handler to catch SIGSEGV.
First , I would protect a block of memory for read or writes using
char *buffer;
char *p;
char a;
int pagesize = 4096;
" ...
2
votes
1answer
108 views
mprotect entire program, to run dangerous code
I have a small program that mmaps potentially dangerous executable code (with PROT_EXEC), calls prctl(PR_SET_SECCOMP, 1) and then executes this mmap'd code. This is all well and good, and allows me to ...
2
votes
2answers
345 views
Can I write-protect every page in the address space of a Linux process?
I'm wondering if there's a way to write-protect every page in a Linux
process' address space (from inside of the process itself, by way of
mprotect()). By "every page", I really mean every page of ...
2
votes
2answers
454 views
Does mprotect flush the instruction cache on ARM Linux?
I am writing a JIT on ARM Linux that executes an instruction set that contains self-modifying code. The instruction set does not have any cache flush instructions (similar to x86 in that respect).
If ...