]> git.ipfire.org Git - thirdparty/glibc.git/commit
tunables: Avoid getenv calls and disable glibc.malloc.check by default
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Tue, 10 Jan 2017 11:05:58 +0000 (16:35 +0530)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Tue, 10 Jan 2017 11:05:58 +0000 (16:35 +0530)
commitd054a81ab3a2515a45d28e6c26d2b190ff74e8ec
tree1172391755a62da02db8db79eb21598384d506a0
parentcc25c8b4c1196a8c29e9a45b1e096b99a87b7f8c
tunables: Avoid getenv calls and disable glibc.malloc.check by default

Builds with --enable-tunables failed on i686 because a call to getenv
got snuck into tunables, which pulled in strncmp.  This patch fixes
this build failure by making the glibc.malloc.check check even
simpler.  The previous approach was convoluted where the tunable was
disabled using an unsetenv and overwriting the tunable value with
colons.  The easier way is to simply mark the tunable as insecure by
default (i.e. won't be read for AT_SECURE programs) and then enabled
only when the /etc/suid-debug file is found.

This also ends up removing a bunch of functions that were specially
reimplemented (strlen, unsetenv) to avoid calling into string
routines.

Tested on x86_64 and i686.

* elf/dl-tunables.c (tunables_unsetenv): Remove function.
(min_strlen): Likewise.
(disable_tunable): Likewise.
(maybe_disable_malloc_check): Rename to
maybe_enable_malloc_check.
(maybe_enable_malloc_check): Enable glibc.malloc.check tunable
if /etc/suid-debug file exists.
(__tunables_init): Update caller.
* elf/dl-tunables.list (glibc.malloc.check): Don't mark as
secure.
ChangeLog
elf/dl-tunables.c
elf/dl-tunables.list