summaryrefslogtreecommitdiff
path: root/usr.sbin/dvmrpd/parse.y
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-10-11 14:39:18 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-10-11 14:39:18 +0000
commit1f1de6e9c4176c83df8002a4cd3223d5996a6c13 (patch)
tree8eecf0adcebd265a34813982a1bcb022a1b87c9f /usr.sbin/dvmrpd/parse.y
parent883c6340d4913899a5a68266d31ecd995948b29b (diff)
next step in the yylex unification: handle quoted strings in a nicer fashion
as found in hoststated, and make all the code diff as clean as possible. a few issues remain mostly surrounding include support, which will likely be added to more of the grammers soon. ok norby pyr, others
Diffstat (limited to 'usr.sbin/dvmrpd/parse.y')
-rw-r--r--usr.sbin/dvmrpd/parse.y48
1 files changed, 29 insertions, 19 deletions
diff --git a/usr.sbin/dvmrpd/parse.y b/usr.sbin/dvmrpd/parse.y
index e6f21dff75b..fddbd797a29 100644
--- a/usr.sbin/dvmrpd/parse.y
+++ b/usr.sbin/dvmrpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.7 2007/09/12 02:07:07 deraadt Exp $ */
+/* $OpenBSD: parse.y,v 1.8 2007/10/11 14:39:17 deraadt Exp $ */
/*
* Copyright (c) 2004, 2005, 2006 Esben Norby <norby@openbsd.org>
@@ -55,7 +55,7 @@ int yyerror(const char *, ...);
int yyparse(void);
int kw_cmp(const void *, const void *);
int lookup(char *);
-int lgetc(FILE *);
+int lgetc(int);
int lungetc(int);
int findeol(void);
int yylex(void);
@@ -403,9 +403,10 @@ char pushback_buffer[MAXPUSHBACK];
int pushback_index = 0;
int
-lgetc(FILE *f)
+lgetc(int inquot)
{
int c, next;
+ FILE *f = fin;
if (parsebuf) {
/* Read character from the parsebuffer instead of input. */
@@ -421,12 +422,15 @@ lgetc(FILE *f)
if (pushback_index)
return (pushback_buffer[--pushback_index]);
+ if (inquot) {
+ c = getc(f);
+ return (c);
+ }
+
while ((c = getc(f)) == '\\') {
next = getc(f);
if (next != '\n') {
- if (isspace(next))
- yyerror("whitespace after \\");
- ungetc(next, f);
+ c = next;
break;
}
yylval.lineno = lineno;
@@ -470,7 +474,7 @@ findeol(void)
/* skip to either EOF or the first real EOL */
while (1) {
- c = lgetc(fin);
+ c = lgetc(0);
if (c == '\n') {
lineno++;
break;
@@ -486,21 +490,21 @@ yylex(void)
{
char buf[8096];
char *p, *val;
- int endc, c;
+ int endc, next, c;
int token;
top:
p = buf;
- while ((c = lgetc(fin)) == ' ')
+ while ((c = lgetc(0)) == ' ')
; /* nothing */
yylval.lineno = lineno;
if (c == '#')
- while ((c = lgetc(fin)) != '\n' && c != EOF)
+ while ((c = lgetc(0)) != '\n' && c != EOF)
; /* nothing */
if (c == '$' && parsebuf == NULL) {
while (1) {
- if ((c = lgetc(fin)) == EOF)
+ if ((c = lgetc(0)) == EOF)
return (0);
if (p + 1 >= buf + sizeof(buf) - 1) {
@@ -530,15 +534,21 @@ top:
case '"':
endc = c;
while (1) {
- if ((c = lgetc(fin)) == EOF)
+ if ((c = lgetc(1)) == EOF)
return (0);
- if (c == endc) {
- *p = '\0';
- break;
- }
if (c == '\n') {
lineno++;
continue;
+ } else if (c == '\\') {
+ if ((next = lgetc(1)) == EOF)
+ return (0);
+ if (next == endc)
+ c = next;
+ else
+ lungetc(next);
+ } else if (c == endc) {
+ *p = '\0';
+ break;
}
if (p + 1 >= buf + sizeof(buf) - 1) {
yyerror("string too long");
@@ -548,7 +558,7 @@ top:
}
yylval.v.string = strdup(buf);
if (yylval.v.string == NULL)
- errx(1, "yylex: strdup");
+ err(1, "yylex: strdup");
return (STRING);
}
@@ -562,7 +572,7 @@ top:
yyerror("string too long");
return (findeol());
}
- } while ((c = lgetc(fin)) != EOF && isdigit(c));
+ } while ((c = lgetc(0)) != EOF && isdigit(c));
lungetc(c);
if (p == buf + 1 && buf[0] == '-')
goto nodigits;
@@ -601,7 +611,7 @@ nodigits:
yyerror("string too long");
return (findeol());
}
- } while ((c = lgetc(fin)) != EOF && (allowed_in_string(c)));
+ } while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
lungetc(c);
*p = '\0';
if ((token = lookup(buf)) == STRING)