summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>2003-04-10 01:44:19 +0000
committermdodd <mdodd@FreeBSD.org>2003-04-10 01:44:19 +0000
commit55f9c171d47c643cc16f4434f0f2e6277e9a4b33 (patch)
tree750d5fb681fa7fbd56b6fa0a23341300ecf62784 /libexec
parentb333e2476aebc17cc9897af8ee45b3e3873e8650 (diff)
downloadFreeBSD-src-55f9c171d47c643cc16f4434f0f2e6277e9a4b33.zip
FreeBSD-src-55f9c171d47c643cc16f4434f0f2e6277e9a4b33.tar.gz
Code cleanups and sanity checking for config file parser.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/libmap.c71
1 files changed, 52 insertions, 19 deletions
diff --git a/libexec/rtld-elf/libmap.c b/libexec/rtld-elf/libmap.c
index d4654b4..dcfc317 100644
--- a/libexec/rtld-elf/libmap.c
+++ b/libexec/rtld-elf/libmap.c
@@ -34,6 +34,9 @@ static char * lml_find (struct lm_list *, const char *);
static struct lm_list * lmp_find (const char *);
static struct lm_list * lmp_init (char *);
+#define iseol(c) (((c) == '#') || ((c) == '\0') || \
+ ((c) == '\n') || ((c) == '\r'))
+
void
lm_init (void)
{
@@ -51,40 +54,70 @@ lm_init (void)
p = NULL;
while ((cp = fgets(line, MAXPATHLEN + 1, fp)) != NULL) {
t = f = NULL;
+
/* Skip over leading space */
- while (!isalpha(*cp) &&
- *cp != '#' && *cp != '\0' && *cp != '[') cp++;
+ while (isspace(*cp)) cp++;
+
/* Found a comment or EOL */
- if (*cp == '#' || *cp == '\0')
- continue;
- /* Found a costraint selector */
+ if (iseol(*cp)) goto next;
+
+ /* Found a constraint selector */
if (*cp == '[') {
cp++;
+
/* Skip leading space */
- while (isspace(*cp) &&
- *cp != '#' && *cp != '\0' && *cp != ']') cp++;
+ while (isspace(*cp)) cp++;
+
/* Found comment, EOL or end of selector */
- if (*cp == '#' || *cp == '\0' || *cp == ']')
- continue;
+ if (iseol(*cp) || *cp == ']') goto next;
+
p = cp;
/* Skip to end of word */
- while (!isspace(*cp) &&
- *cp != '#' && *cp != '\0' && *cp != ']') cp++;
+ while (!isspace(*cp) && !iseol(*cp) && *cp != ']') cp++;
+
+ /* Skip and zero out trailing space */
+ while (isspace(*cp)) *cp++ = '\0';
+
+ /* Check if there is a closing brace */
+ if (*cp != ']') goto next;
+
+ /* Terminate string if there was no trailing space */
*cp++ = '\0';
- bzero(prog, MAXPATHLEN);
- strncpy(prog, p, strlen(p));
- p = prog;
- continue;
+
+ /*
+ * There should be nothing except whitespace or comment
+ * from this point to the end of the line.
+ */
+ while(isspace(*cp++));
+ if (*cp != '\0' && *cp != '#') goto next;
+
+ if (strlen(p) > 0) {
+ bzero(prog, MAXPATHLEN);
+ strncpy(prog, p, strlen(p));
+ p = prog;
+ }
+ goto next;
}
+
+ /* Parse the 'from' candidate. */
f = cp;
- while (!isspace(*cp) && *cp != '#' && *cp != '\0') cp++;
+ while (!isspace(*cp) && !iseol(*cp)) cp++;
*cp++ = '\0';
- while (isspace(*cp) && *cp != '#' && *cp != '\0') cp++;
+
+ /* Skip and zero out the trailing whitespace */
+ while (isspace(*cp)) *cp++ = '\0';
+
+ /* Found a comment or EOL */
+ if (iseol(*cp)) goto next;
+
+ /* Parse 'to' mapping */
t = cp;
- while (!isspace(*cp) && *cp != '#' && *cp != '\0') cp++;
+ while (!isspace(*cp) && !iseol(*cp)) cp++;
*cp++ = '\0';
- lm_add(p, strdup(f), strdup(t));
+ if ((strlen(f) > 0) && (strlen(t) > 0))
+ lm_add(p, strdup(f), strdup(t));
+next:
bzero(line, sizeof(line));
}
(void)fclose(fp);
OpenPOWER on IntegriCloud