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 protected from write access, lets say in a C structure there are certain variable(s) which need to be write protected and any write access to them triggers a segfault and a core dump. Its something like the scaled down functionality of mprotect (), as that works at page level, is there a mechanism to similar kind of thing at byte level in user space.

thanks, Kapil Upadhayay.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 5 down vote accepted

No, there is no such facility. If you need per-data-object protections, you'll have to allocate at least a page per object (using mmap). If you also want to have some protection against access beyond the end of the object (for arrays) you might allocate at least one more page than what you need, align the object so it ends right at a page boundary, and use mprotect to protect the one or more additional pages you allocated.

Of course this kind of approach will result in programs that are very slow and waste lots of resources. It's probably not viable except as a debugging technique, and valgrind can meet that need much more effectively without having to modify your program...

link|improve this answer
This is true if you want to write portable code, but gdb implements memory watchpoints pretty much everywhere, so no doubt there are some tricks it uses that will help in specific implementations. If that's word level or bigger rather than byte level, you can do roughly what Roland describes: catch the condition, check whether or not the address is actually the one you're after. – Steve Jessop Sep 21 '11 at 7:30
I think it protects the whole page, handles the faults, and only stops execution when the write matched a watchpoint. I might be mistaken though; I think some hardware has a small number of specific addresses you can install as watchpoints, but it's definitely not something you can do on any large scale. – R.. Sep 21 '11 at 7:33
if it doesn't do that then it might as well, anything more precise is a performance optimization :-) The important point I think is that you don't have to allocate a page or more per object, you can implement your own protections after the hardware-level protections have done their thing. – Steve Jessop Sep 21 '11 at 7:35
OK, good point. – R.. Sep 21 '11 at 7:37
feedback

One way, although terribly slow, is to protect the whole page in which the object lies. Whenever a write access to that page happens, your custom handler for invalid page access gets called and resolves the situation by quickly unprotecting the page, writing the data and then protecting the page again.

This works fine for single-threaded programs, I'm not sure what to do for multi-threaded programs.

This idea is probably not new, so you may be able to find some information or even a ready-made implementation of it.

link|improve this answer
For a multi-threaded program -- if your protection handler is a separate process (using ptrace for instance) you can just stop the entire process (via SIGSTOP or perhaps some ptrace-specific method) and then you don't have to worry about races. If it's in the same process, you could use a special signal to catch all threads in a signal handler and keep them stuck there until your handler is finished. Either way, it will have horrible performance. – R.. Sep 21 '11 at 7:36
feedback

Your Answer

 
or
required, but never shown

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