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 inclue PROT_READ ...

My workaround is to parse /proc/self/maps manually. But this solution is to clumsy ...

I wonder if there's any system call that I can use.

link|improve this question

39% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In general that's the only way. POSIX does not provide a way to access the protections. In application-specific usages where you have control over the code that maps the page, you could have it save the flags somewhere at that time, but in general you have to read /proc/self/maps. In addition, you may want to fallback to some default permissions if you can't read /proc. PROT_READ|PROT_WRITE is probably a reasonable default for most things but in some cases you may also want PROT_EXEC.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.