Tagged Questions

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
467 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
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
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 ...