vote up 2 vote down star

I'm getting a segmentation fault the first time I call malloc() after I protect a memory region with mprotect(). This is a code sniplet that does the memory allocation the the protection:

#define PAGESIZE 4096
void* paalloc(int size){   // Allocates and aligns memory
        int type_size =  sizeof(double);
        void* p;
        p = malloc(type_size*size+PAGESIZE-1);
        p = (void*)(((long) p + PAGESIZE-1) & ~(PAGESIZE-1));
        return p;
}
void aprotect(int size, void* array){  // Protects memory after values are set
        int type_size = sizeof(double);
        if (mprotect(array, type_size*size, PROT_READ)) {
                perror("Couldn't mprotect");
        }
}

I want to use mprotect to avoid anything writing into my arrays (which are pre-calculated sine/cosine values). Is this a stupid idea?

flag

please also add the type cast (void *)mallac.... – john Nov 6 at 12:59
@john: You don't need the cast – iWerner Nov 6 at 13:03
Not related enough for me to edit the post, but those finding this question might also be interested in this: stackoverflow.com/questions/1686464/… Caf's answer regarding page alignment is dead on, seems to be a hot topic today :) – tinkertim Nov 6 at 13:32

2 Answers

vote up 4 vote down check

mprotect can only work in units of pages, as you probably already know. In this case, you're correctly aligning the start of your block to a page boundary, but what you're not doing is ensuring that your allocation extends to the end of the last page you're going to use in it.

This means that your mprotect is protecting data past the end of your allocation (right to the end of that page), which is space that the next malloc call assumes it can write to.

The easiest fix is to change the PAGE_SIZE - 1 in the malloc call to PAGE_SIZE * 2.

link|flag
Thanks! Am I missing something or is there an error in the man pages of mprotect? The example has the same problem... – hanno Nov 6 at 13:32
I suspect your mprotect man page is different to mine, which uses memalign to allocate a page-aligned, page-multiple-sized block of memory instead of malloc. (You should consider using memalign too, actually). – caf Nov 6 at 13:40
vote up 0 vote down

caf has the cause of the problem nailed down.

I think you can do without the mprotect(): If it is that important to you declare the pointer as static in your lookup.c (or whatever it is called) and then have a non-static double get_sine(int index); function. This way, code outside of lookup.c can only call get_sine(), and not access the table directly.

Also, From my mprotect() man page:

POSIX says that mprotect() can be used only on regions of memory obtained from mmap(2)

(Apparently this does not count for Linux. Which operating system are you using?)

link|flag

Your Answer

Get an OpenID
or

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