The mprotect tag has no wiki summary.
0
votes
0answers
14 views
How the get the property a memory page in Linux?
I know that we can use mprotect to set the property of a memory page.
But how to get the property of a specific memory page ?
--
What I actually want to do is reading the property of a memory page ...
1
vote
2answers
57 views
Protecting allocated memory
I need to allocate dynamically some portions of memory, each with some protection - either RW or RX.
I tried to allocate memory by malloc, but mprotect always returns -1 Invalid argument.
My sample ...
1
vote
0answers
22 views
Detect mprotected memory address
Is there a function to detect whether a given virtual address mapped by mmap is protected by mprotect? Accessing such an address will result in segmentation fault if PROT_NONE is set. So I'd like to ...
2
votes
1answer
65 views
MakeCodeWritable
good afternoon.
I got the code below on a book. I'm trying to execute it, but I don't know what is the "first" and "last" parameters on the MakeCodeWritable function, or where I can find them. ...
1
vote
0answers
64 views
numa: next-touch policy
Can anyone explain how the "next-touch" policy can be implemented using "mprotect" on a NUMA system? Say I have an array of integers, A, I protect it using "mprotect". Next whenever any thread tries ...
1
vote
1answer
299 views
linux c mmap/mprotect issue
I need to do a small sw that needs to protect a page for read/write and then when the memory is accessed, It need to increment a counter and allow the read/write, after that it needs to then protect ...
0
votes
0answers
103 views
Why this simple program gives bus error on mac os x while it executes fine on ubuntu?
Kindly help me understand why the following piece of code gives Bus Error on Mac OS X (Darwin Kernel Version 10.8.0) whereas it executes successfully on Ubuntu Linux (2.6.32-27-generic; 64-bit).
The ...
1
vote
1answer
185 views
memory mapped with mmap, and used with mprotect
I have to do a provide memory regions for threads and apply basic concepts of memory management. The idea is create a Thread Local Storage, and manage the with write, read, and clone, and erase. The ...
3
votes
1answer
355 views
C write/read detection on memory block
i like to ask if someone have any idea how to detect a write on alloc memory address.
At first i used mprotect along with sigaction to force a segmentation fault when was made a write/read operation. ...
0
votes
1answer
195 views
Detouring and using a _thiscall as a hook (GCC calling convention)
I've recently been working on detouring functions (only in Linux) and so far I've had great success. I was developing my own detouring class until I found this. I modernized the code a bit and ...
0
votes
1answer
133 views
C Programming: Protected memory across fork()
I need to protect the pages in a parent from the pages in a child
I have tried not using shm_open with the MAP_ANONYMOUS flag and fd = -1 in mmap.
I have tried protecting the underlying memory with ...
0
votes
1answer
231 views
Getting memory permission details in Linux
I am using mmap for allocation memory and mark some pages as PROT_READ and few as PROT_NONE using mprotect. my implementation has logic based on the memory permission. Currently I have the memory ...
0
votes
0answers
311 views
Android mprotect() not changing protections
I've been trying to use mprotect() to change protections on a certain region of memory on Android.
However whatever I do I cannot cause the region to be writeable (whatever I do it still seems to ...
1
vote
2answers
389 views
mprotect in linux
If I mprotect a segment with PROT_NONE and if a SIGSEGV occurs due to a write which gets handled by sigaction with sa_sigaction, We will be able to find the address where the fault occurs using ...
0
votes
1answer
359 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
...
2
votes
1answer
317 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 ...
1
vote
2answers
98 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
226 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
362 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, ...
12
votes
3answers
558 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 ...
2
votes
2answers
539 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
566 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 ...
3
votes
2answers
647 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
731 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
2answers
963 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 ...
16
votes
4answers
13k 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
991 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
217 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
4answers
456 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 ...
9
votes
1answer
3k 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 ...