The kernel doesn't know, so it can't tell you. But you can try to find out if you want. You have the code address that faulted on the stack, so you can disassemble the code there to try to figure it out. There is no other way to know (think about it if it's not obvious to you why). The instruction faulted because it touched a protected page, that's all that's known unless you analyze the assembly code.
If you can't tell what object you're dealing with by knowing only the page that faulted, I'd strongly suggest you reconsider changing your design so that you do. (posix_memalign, perhaps?)
Update: Don't forget that you need to have a hook that's called on every context switch. You may need to copy pages around on each hook. For example:
Context A is accessing page Q with CoW semantics. Context A gets read-only access to the page.
Context B is accessing page Q with CoW semantics. Context B gets read-only access to the page.
Context A goes to modify the page, we make a copy for context B. Context A now has write access to the page and modifies it.
We switch from context A to context B. At this point, you must switch in the copy of the page you made for context B.
Note that the other way around this is to have contexts make specific calls to map and lock pages. That won't work if you allow a context to hold a mapping across a context switch -- at least, not without a lot of extra work.
mprotect()is designed to do. You could use it if you wanted to implement CoW (as hinted in answers), however expecting frequent SEGVs is probably not a good design decision. Your best bet is to manage your own pool, which unfortunately means writing your own allocator. You can still usemalloc()within it, but children need to use the one you provide (and correspondingmprotect()). – Tim Post♦ Feb 14 at 9:04