vote up 1 vote down star

The mprotect syscall protects the memory area within page boundary:

int mprotect(void *addr, size_t len, int prot);

Here len should be multiple of pagesize.

Is there any way to protect only a few consecutive addresses, which are not aligned to page boundary i.e. len < pagesize ?

flag

2 Answers

vote up 4 vote down check

I wouldn't think so, no. The limitation is because the MMU has hardware limits on how fine a granularity it can control. There are tables that hold the access restrictions and you can't have a table slot for each byte; the table itself would use all your RAM. So instead it's made more coarse, with table entries for each page.

You might be able to do something using Valgrind, if you're on Linux.

link|flag
vote up 1 vote down

No, there isn't. The virtual memory system of your OS only operates on the page level, nothing smaller than that.

link|flag

Your Answer

Get an OpenID
or

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