Created attachment 5242 [details] Proposed fix See Debian bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=611195 When dlopen'ing a library that needs to make the stack executable, the RELRO section is made writable again to modify the __stack_prot variable. However, the return value of the mprotect() call is not checked; so if mprotect() fails, instead of gracefully handling the error, the dynamic loader tries to write to __stack_prot anyway, which results in a segmentation fault. And this mprotect() call *will* fail on PaX kernels that enforce restrictions on it. The simple fix is to check the return value and simply fail to load the problematic library, instead of crashing the whole process. And it's just good programming practice.
Just use a supported kernel.
mprotect() can fail on supported kernels (what are they anyway?), so it is simply bad programming practice to not check the return value.
No, it cannot fail in these situations.
merging and splitting vma structures require memory allocation that can fail.
i almost forgot, you didn't answer my question: what is your definition of a supported kernel?
Stop reopening the bug. If you have to redefine what your own OS does then maintain your own version of everything else as well.
Do you have any real reason not to apply the submitted patch? Childish spite doesn't count.
The stock Linux kernel can fail the mprotect call. The LSM mediates this routine. Even SELinux has hooks to reject certain calls. It seems prudent to check the return code since LSMs are being improved/changed all the time.
since this bug affects any kernel, including those of your own employer, it will stay open until it gets fixed. it's also obvious that failing the second mprotect in the same block of code means you've left ld.so's RELRO region writable and that's a security bug itself so you'd better check its return value as well and ask for a CVE.
First of all, I'm sorry for all of this that I started :( I'm sorry to use up so much of your time, I imagine that dealing with bug reports and trivial issues must be boring and sometimes frustrating. I'm just trying to help by taking care some of the dull janitor job like checking return values: a patch is all ready and it only needs someone to commit it. glibc is a great piece of software and I'm sure people look at it as a coding model, so it would be a shame to leave examples that could look like bad practice, even if that part of the code is not so important in itself. I'd love to see this matter just resolved. If you don't mind. Please please accept my humble apology along with this patch.
The patch was merged into eglibc (http://www.eglibc.org/archives/commits/msg01710.html). I guess than rather than "just use a supported kernel", I'll have to just use a supported libc :( Pax Team, any suggestion about what should be done if the second mprotect() fails?
probably the same as with the first mprotect failure.
But it still leaves the RELRO region writable, and I doubt the calling application is going to do anything about it
by default the code after call_lose_errno won't return to the application ;).
__stack_prot |= PROT_READ|PROT_WRITE|PROT_EXEC; Whoever wrote this, you are rwx-winning. You win at reads, you win at writes and you win at execution. I couldn't have done it better even if I banged a seven gram text-relocating rock.
Fixed for 2.18 by: commit 0432680e8c2ecd832038387f92b462dea75e94cc Author: Pierre Ynard <linkfanel@yahoo.fr> Date: Fri Jun 28 21:43:42 2013 +0000 Test for mprotect failure in dl-load.c (bug 12492).
*** Bug 260998 has been marked as a duplicate of this bug. *** Seen from the domain http://volichat.com Page where seen: http://volichat.com/adult-chat-rooms Marked for reference. Resolved as fixed @bugzilla.