summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2012-03-05 20:43:06 +0000
committerkib <kib@FreeBSD.org>2012-03-05 20:43:06 +0000
commit29a7bc11bad18aa7b7c570792c6439d86d507064 (patch)
tree99bd5b6bd65117b5195fcfae780937ab4f2cb060 /libexec
parentb3b4b54213cac1391d1e8193eca447ea5db05c1d (diff)
downloadFreeBSD-src-29a7bc11bad18aa7b7c570792c6439d86d507064.zip
FreeBSD-src-29a7bc11bad18aa7b7c570792c6439d86d507064.tar.gz
The libmap.conf initialization is performed before TLS is functional.
Since after r232498 the ctype macros require working access to thread-local variables, rtld crashes when libmap.conf is present. Use hand-made isspace1() macro which is enough to detect spaces in libmap.conf. Reported by: alc, lme, many on current@ Tested by: lme Reviewed by: dim, kan MFC after: 1 week
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/libmap.c25
1 files changed, 15 insertions, 10 deletions
diff --git a/libexec/rtld-elf/libmap.c b/libexec/rtld-elf/libmap.c
index 773456b..9c67186 100644
--- a/libexec/rtld-elf/libmap.c
+++ b/libexec/rtld-elf/libmap.c
@@ -3,7 +3,6 @@
*/
#include <stdio.h>
-#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include <sys/queue.h>
@@ -53,6 +52,12 @@ static int closestrfn (void * cookie);
#define iseol(c) (((c) == '#') || ((c) == '\0') || \
((c) == '\n') || ((c) == '\r'))
+/*
+ * Do not use ctype.h macros, which rely on working TLS. It is
+ * too early to have thread-local variables functional.
+ */
+#define isspace1(c) ((c) == ' ' || (c) == '\t')
+
int
lm_init (char *libmap_override)
{
@@ -107,7 +112,7 @@ lmc_parse (FILE *fp)
t = f = c = NULL;
/* Skip over leading space */
- while (isspace(*cp)) cp++;
+ while (isspace1(*cp)) cp++;
/* Found a comment or EOL */
if (iseol(*cp)) continue;
@@ -117,7 +122,7 @@ lmc_parse (FILE *fp)
cp++;
/* Skip leading space */
- while (isspace(*cp)) cp++;
+ while (isspace1(*cp)) cp++;
/* Found comment, EOL or end of selector */
if (iseol(*cp) || *cp == ']')
@@ -125,11 +130,11 @@ lmc_parse (FILE *fp)
c = cp++;
/* Skip to end of word */
- while (!isspace(*cp) && !iseol(*cp) && *cp != ']')
+ while (!isspace1(*cp) && !iseol(*cp) && *cp != ']')
cp++;
/* Skip and zero out trailing space */
- while (isspace(*cp)) *cp++ = '\0';
+ while (isspace1(*cp)) *cp++ = '\0';
/* Check if there is a closing brace */
if (*cp != ']') continue;
@@ -141,7 +146,7 @@ lmc_parse (FILE *fp)
* There should be nothing except whitespace or comment
from this point to the end of the line.
*/
- while(isspace(*cp)) cp++;
+ while(isspace1(*cp)) cp++;
if (!iseol(*cp)) continue;
strcpy(prog, c);
@@ -151,20 +156,20 @@ lmc_parse (FILE *fp)
/* Parse the 'from' candidate. */
f = cp++;
- while (!isspace(*cp) && !iseol(*cp)) cp++;
+ while (!isspace1(*cp) && !iseol(*cp)) cp++;
/* Skip and zero out the trailing whitespace */
- while (isspace(*cp)) *cp++ = '\0';
+ while (isspace1(*cp)) *cp++ = '\0';
/* Found a comment or EOL */
if (iseol(*cp)) continue;
/* Parse 'to' mapping */
t = cp++;
- while (!isspace(*cp) && !iseol(*cp)) cp++;
+ while (!isspace1(*cp) && !iseol(*cp)) cp++;
/* Skip and zero out the trailing whitespace */
- while (isspace(*cp)) *cp++ = '\0';
+ while (isspace1(*cp)) *cp++ = '\0';
/* Should be no extra tokens at this point */
if (!iseol(*cp)) continue;
OpenPOWER on IntegriCloud