Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
330 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; " ...
4
votes
3answers
468 views

Loading MachineCode From File Into Memory and Executing in C — mprotect Failing

Hi I'm trying to load raw machine code into memory and run it from within a C program, right now when the program executes it breaks when trying to run mprotect on the memory to make it executable. ...
4
votes
1answer
148 views

mprotect function called with 5 arguments

According to the Linux man page for mprotect the function has 3 Arguments: int mprotect(const void *addr, size_t len, int prot); but while running ltrace on a program that I'm analyzing I see that ...
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
303 views

Explanation of MProtect Errno 12 (ENOMEM)

I'm writing an iPhone application using Monotouch and recently the app has started crashing stating Mprotect failed at 0x863a000 (length 8192) with errno 12 followed by a rather lengthly stack ...
2
votes
1answer
428 views

iPhone application crashes with Mprotect failed error (MonoTouch)

I have a problem with my iPhone application developed with MonoTouch. I am developing an application that contacts a WCF Service, and when the WCF Service answer back, I update an UITableView with the ...
2
votes
2answers
346 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 ...
2
votes
1answer
613 views

C SIGSEGV Handler & Mprotect

I'm constructing a program which uses mprotect() to restrict a block of memory from accessing. When the memory is requested, a SIGSEGV is thrown which I listen for using a signal() call. Once the ...
2
votes
4answers
344 views

mprotect API on tiger!

I'm trying to use mprotect API on MacOSX 10.4 (tiger), I tried every possible way i know , it always returns -1, with errno 13, which means "permission denied" while I'm trying to add the write ...
1
vote
2answers
50 views

byte level write access protction?

protecting a page for Read and/or Write access is possible as there are bits in the page table entry that can be turned on and off at kernel level. Is there a way in which certain region of memory be ...
0
votes
1answer
63 views

SIGSEGV handler and mprotect and looping effect when injecting instructions at runtime. Handler can't get info->si_addr

I have looked at the various topics relating to this, but couldn't find this specific issue I am having. Things I looked at: Injecting code into executable at runtime ...
0
votes
1answer
56 views

how to get protection flags of a memory area, flags are PROT_READ /PROT_EXEC in mprotect

I use mprotect() to set protection flags to a memory area. Later on, I want to restore this memory area's protection flags. My question is, how to get protection flags of a memory area? the flags ...
0
votes
3answers
107 views

How can I force GDB to execute code for which there are no symbols

I have a C program that (for good reason) allocates memory, copies some code to it, uses mprotect() to give it execute privileges, and then calls that code. Yes I know this is unportable and unsafe, ...