2 b2b17923 2022-12-17 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 2c02675e 2022-12-14 op * Copyright (c) 2007-2016 Reyk Floeter <reyk@openbsd.org>
4 2c02675e 2022-12-14 op * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
5 2c02675e 2022-12-14 op * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
6 2c02675e 2022-12-14 op * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
7 2c02675e 2022-12-14 op * Copyright (c) 2001 Markus Friedl. All rights reserved.
8 2c02675e 2022-12-14 op * Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
9 2c02675e 2022-12-14 op * Copyright (c) 2001 Theo de Raadt. All rights reserved.
11 2c02675e 2022-12-14 op * Permission to use, copy, modify, and distribute this software for any
12 2c02675e 2022-12-14 op * purpose with or without fee is hereby granted, provided that the above
13 2c02675e 2022-12-14 op * copyright notice and this permission notice appear in all copies.
15 2c02675e 2022-12-14 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
16 2c02675e 2022-12-14 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 2c02675e 2022-12-14 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
18 2c02675e 2022-12-14 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 2c02675e 2022-12-14 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 2c02675e 2022-12-14 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21 2c02675e 2022-12-14 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 2c02675e 2022-12-14 op #include <sys/queue.h>
28 2c02675e 2022-12-14 op #include <ctype.h>
29 2c02675e 2022-12-14 op #include <err.h>
30 2c02675e 2022-12-14 op #include <stdio.h>
31 2c02675e 2022-12-14 op #include <stdlib.h>
32 2c02675e 2022-12-14 op #include <stdarg.h>
33 2c02675e 2022-12-14 op #include <stdint.h>
34 2c02675e 2022-12-14 op #include <string.h>
35 2c02675e 2022-12-14 op #include <unistd.h>
37 2c02675e 2022-12-14 op #ifndef nitems
38 2c02675e 2022-12-14 op #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
41 2c02675e 2022-12-14 op TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files);
42 2c02675e 2022-12-14 op static struct file {
43 2c02675e 2022-12-14 op TAILQ_ENTRY(file) entry;
46 2c02675e 2022-12-14 op size_t ungetpos;
47 2c02675e 2022-12-14 op size_t ungetsize;
48 2c02675e 2022-12-14 op unsigned char *ungetbuf;
49 2c02675e 2022-12-14 op int eof_reached;
52 2c02675e 2022-12-14 op } *file, *topfile;
53 2c02675e 2022-12-14 op int parse(FILE *, const char *);
54 2c02675e 2022-12-14 op struct file *pushfile(const char *, int);
55 2c02675e 2022-12-14 op int popfile(void);
56 2c02675e 2022-12-14 op int yyparse(void);
57 2c02675e 2022-12-14 op int yylex(void);
58 2c02675e 2022-12-14 op int yyerror(const char *, ...)
59 2c02675e 2022-12-14 op __attribute__((__format__ (printf, 1, 2)))
60 2c02675e 2022-12-14 op __attribute__((__nonnull__ (1)));
61 2c02675e 2022-12-14 op int kw_cmp(const void *, const void *);
62 2c02675e 2022-12-14 op int lookup(char *);
63 2c02675e 2022-12-14 op int igetc(void);
64 2c02675e 2022-12-14 op int lgetc(int);
65 2c02675e 2022-12-14 op void lungetc(int);
66 2c02675e 2022-12-14 op int findeol(void);
68 2c02675e 2022-12-14 op void dbg(void);
69 2c02675e 2022-12-14 op void printq(const char *);
71 2c02675e 2022-12-14 op extern int nodebug;
73 2c02675e 2022-12-14 op static FILE *fp;
75 2c02675e 2022-12-14 op static int block;
76 2c02675e 2022-12-14 op static int in_define;
77 2c02675e 2022-12-14 op static int errors;
78 2c02675e 2022-12-14 op static int lastline = -1;
80 2c02675e 2022-12-14 op typedef struct {
89 2c02675e 2022-12-14 op %token DEFINE ELSE END ERROR FINALLY FOR IF INCLUDE PRINTF
90 0f297329 2023-01-06 op %token RENDER TQFOREACH UNSAFE URLESCAPE WHILE
91 2c02675e 2022-12-14 op %token <v.string> STRING
92 19a5edf3 2023-09-12 op %type <v.string> string nstring
93 2c02675e 2022-12-14 op %type <v.string> stringy
97 2c02675e 2022-12-14 op grammar : /* empty */
98 2c02675e 2022-12-14 op | grammar include
99 2c02675e 2022-12-14 op | grammar verbatim
100 2c02675e 2022-12-14 op | grammar block
101 2c02675e 2022-12-14 op | grammar error { file->errors++; }
104 2c02675e 2022-12-14 op include : INCLUDE STRING {
105 2c02675e 2022-12-14 op struct file *nfile;
107 2c02675e 2022-12-14 op if ((nfile = pushfile($2, 0)) == NULL) {
108 2c02675e 2022-12-14 op yyerror("failed to include file %s", $2);
114 2c02675e 2022-12-14 op file = nfile;
115 2c02675e 2022-12-14 op lungetc('\n');
119 2c02675e 2022-12-14 op verbatim : '!' verbatim1 '!' {
120 2c02675e 2022-12-14 op if (in_define) {
121 2c02675e 2022-12-14 op /* TODO: check template status and exit in case */
126 2c02675e 2022-12-14 op verbatim1 : /* empty */
127 2c02675e 2022-12-14 op | verbatim1 STRING {
128 2c02675e 2022-12-14 op if (*$2 != '\0') {
130 2c02675e 2022-12-14 op fprintf(fp, "%s\n", $2);
136 2c02675e 2022-12-14 op verbatims : /* empty */
137 2c02675e 2022-12-14 op | verbatims verbatim
140 19a5edf3 2023-09-12 op raw : nstring {
142 62eab86e 2023-09-13 op fprintf(fp, "if ((tp_ret = tp_write(tp, ");
144 62eab86e 2023-09-13 op fprintf(fp, ", %zu)) == -1) goto err;\n",
151 2c02675e 2022-12-14 op block : define body end {
152 2c02675e 2022-12-14 op fputs("err:\n", fp);
153 2c02675e 2022-12-14 op fputs("return tp_ret;\n", fp);
154 2c02675e 2022-12-14 op fputs("}\n", fp);
155 2c02675e 2022-12-14 op in_define = 0;
157 2c02675e 2022-12-14 op | define body finally end {
158 2c02675e 2022-12-14 op fputs("return tp_ret;\n", fp);
159 2c02675e 2022-12-14 op fputs("}\n", fp);
160 2c02675e 2022-12-14 op in_define = 0;
164 2c02675e 2022-12-14 op define : '{' DEFINE string '}' {
165 2c02675e 2022-12-14 op in_define = 1;
168 2c02675e 2022-12-14 op fprintf(fp, "int\n%s\n{\n", $3);
169 2c02675e 2022-12-14 op fputs("int tp_ret = 0;\n", fp);
175 2c02675e 2022-12-14 op body : /* empty */
176 2c02675e 2022-12-14 op | body verbatim
178 2c02675e 2022-12-14 op | body special
181 2c02675e 2022-12-14 op special : '{' RENDER string '}' {
183 2c02675e 2022-12-14 op fprintf(fp, "if ((tp_ret = %s) == -1) goto err;\n",
188 2c02675e 2022-12-14 op | if body endif { fputs("}\n", fp); }
190 2c02675e 2022-12-14 op | '{' string '|' UNSAFE '}' {
193 62eab86e 2023-09-13 op "if ((tp_ret = tp_writes(tp, %s)) == -1)\n",
195 2c02675e 2022-12-14 op fputs("goto err;\n", fp);
198 2c02675e 2022-12-14 op | '{' string '|' URLESCAPE '}' {
201 2c02675e 2022-12-14 op "if ((tp_ret = tp_urlescape(tp, %s)) == -1)\n",
203 2c02675e 2022-12-14 op fputs("goto err;\n", fp);
206 2c02675e 2022-12-14 op | '{' string '}' {
209 62eab86e 2023-09-13 op "if ((tp_ret = tp_htmlescape(tp, %s)) == -1)\n",
211 2c02675e 2022-12-14 op fputs("goto err;\n", fp);
216 2c02675e 2022-12-14 op printf : '{' PRINTF {
218 2c02675e 2022-12-14 op fprintf(fp, "if (asprintf(&tp->tp_tmp, ");
219 2c02675e 2022-12-14 op } printfargs '}' {
220 2c02675e 2022-12-14 op fputs(") == -1)\n", fp);
221 2c02675e 2022-12-14 op fputs("goto err;\n", fp);
222 62eab86e 2023-09-13 op fputs("if ((tp_ret = tp_htmlescape(tp, tp->tp_tmp)) "
223 2c02675e 2022-12-14 op "== -1)\n", fp);
224 2c02675e 2022-12-14 op fputs("goto err;\n", fp);
225 2c02675e 2022-12-14 op fputs("free(tp->tp_tmp);\n", fp);
226 2c02675e 2022-12-14 op fputs("tp->tp_tmp = NULL;\n", fp);
230 2c02675e 2022-12-14 op printfargs : /* empty */
231 2c02675e 2022-12-14 op | printfargs STRING {
232 2c02675e 2022-12-14 op fprintf(fp, " %s", $2);
237 2c02675e 2022-12-14 op if : '{' IF stringy '}' {
239 2c02675e 2022-12-14 op fprintf(fp, "if (%s) {\n", $3);
245 2c02675e 2022-12-14 op | else body end
246 2c02675e 2022-12-14 op | elsif body endif
249 2c02675e 2022-12-14 op elsif : '{' ELSE IF stringy '}' {
251 2c02675e 2022-12-14 op fprintf(fp, "} else if (%s) {\n", $4);
256 2c02675e 2022-12-14 op else : '{' ELSE '}' {
258 2c02675e 2022-12-14 op fputs("} else {\n", fp);
262 2c02675e 2022-12-14 op loop : '{' FOR stringy '}' {
263 2c02675e 2022-12-14 op fprintf(fp, "for (%s) {\n", $3);
266 2c02675e 2022-12-14 op fputs("}\n", fp);
268 2c02675e 2022-12-14 op | '{' TQFOREACH STRING STRING STRING '}' {
269 2c02675e 2022-12-14 op fprintf(fp, "TAILQ_FOREACH(%s, %s, %s) {\n",
275 2c02675e 2022-12-14 op fputs("}\n", fp);
277 0f297329 2023-01-06 op | '{' WHILE stringy '}' {
278 0f297329 2023-01-06 op fprintf(fp, "while (%s) {\n", $3);
281 0f297329 2023-01-06 op fputs("}\n", fp);
285 2c02675e 2022-12-14 op end : '{' END '}'
288 2c02675e 2022-12-14 op finally : '{' FINALLY '}' {
290 2c02675e 2022-12-14 op fputs("err:\n", fp);
294 19a5edf3 2023-09-12 op nstring : STRING nstring {
295 19a5edf3 2023-09-12 op if (asprintf(&$$, "%s%s", $1, $2) == -1)
296 19a5edf3 2023-09-12 op err(1, "asprintf");
303 2c02675e 2022-12-14 op string : STRING string {
304 2c02675e 2022-12-14 op if (asprintf(&$$, "%s %s", $1, $2) == -1)
305 2c02675e 2022-12-14 op err(1, "asprintf");
312 2c02675e 2022-12-14 op stringy : STRING
313 2c02675e 2022-12-14 op | STRING stringy {
314 2c02675e 2022-12-14 op if (asprintf(&$$, "%s %s", $1, $2) == -1)
315 2c02675e 2022-12-14 op err(1, "asprintf");
319 2c02675e 2022-12-14 op | '|' stringy {
320 2c02675e 2022-12-14 op if (asprintf(&$$, "|%s", $2) == -1)
321 2c02675e 2022-12-14 op err(1, "asprintf");
328 2c02675e 2022-12-14 op struct keywords {
329 2c02675e 2022-12-14 op const char *k_name;
334 2c02675e 2022-12-14 op yyerror(const char *fmt, ...)
339 2c02675e 2022-12-14 op file->errors++;
340 2c02675e 2022-12-14 op va_start(ap, fmt);
341 2c02675e 2022-12-14 op if (vasprintf(&msg, fmt, ap) == -1)
342 2c02675e 2022-12-14 op err(1, "yyerror vasprintf");
344 2c02675e 2022-12-14 op fprintf(stderr, "%s:%d: %s\n", file->name, yylval.lineno, msg);
350 2c02675e 2022-12-14 op kw_cmp(const void *k, const void *e)
352 2c02675e 2022-12-14 op return (strcmp(k, ((const struct keywords *)e)->k_name));
356 2c02675e 2022-12-14 op lookup(char *s)
358 2c02675e 2022-12-14 op /* this has to be sorted always */
359 2c02675e 2022-12-14 op static const struct keywords keywords[] = {
360 2c02675e 2022-12-14 op { "define", DEFINE },
361 2c02675e 2022-12-14 op { "else", ELSE },
362 2c02675e 2022-12-14 op { "end", END },
363 2c02675e 2022-12-14 op { "finally", FINALLY },
364 2c02675e 2022-12-14 op { "for", FOR },
365 2c02675e 2022-12-14 op { "if", IF },
366 2c02675e 2022-12-14 op { "include", INCLUDE },
367 2c02675e 2022-12-14 op { "printf", PRINTF },
368 2c02675e 2022-12-14 op { "render", RENDER },
369 2c02675e 2022-12-14 op { "tailq-foreach", TQFOREACH },
370 2c02675e 2022-12-14 op { "unsafe", UNSAFE },
371 2c02675e 2022-12-14 op { "urlescape", URLESCAPE },
372 0f297329 2023-01-06 op { "while", WHILE },
374 2c02675e 2022-12-14 op const struct keywords *p;
376 2c02675e 2022-12-14 op p = bsearch(s, keywords, nitems(keywords), sizeof(keywords[0]),
380 2c02675e 2022-12-14 op return (p->k_val);
382 2c02675e 2022-12-14 op return (STRING);
385 2c02675e 2022-12-14 op #define START_EXPAND 1
386 2c02675e 2022-12-14 op #define DONE_EXPAND 2
388 2c02675e 2022-12-14 op static int expanding;
396 2c02675e 2022-12-14 op if (file->ungetpos > 0)
397 2c02675e 2022-12-14 op c = file->ungetbuf[--file->ungetpos];
399 2c02675e 2022-12-14 op c = getc(file->stream);
401 2c02675e 2022-12-14 op if (c == START_EXPAND)
402 2c02675e 2022-12-14 op expanding = 1;
403 2c02675e 2022-12-14 op else if (c == DONE_EXPAND)
404 2c02675e 2022-12-14 op expanding = 0;
412 2c02675e 2022-12-14 op lgetc(int quotec)
416 2c02675e 2022-12-14 op if (quotec) {
417 2c02675e 2022-12-14 op if ((c = igetc()) == EOF) {
418 2c02675e 2022-12-14 op yyerror("reached end of filewhile parsing "
419 2c02675e 2022-12-14 op "quoted string");
420 2c02675e 2022-12-14 op if (file == topfile || popfile() == EOF)
421 2c02675e 2022-12-14 op return (EOF);
422 2c02675e 2022-12-14 op return (quotec);
428 2c02675e 2022-12-14 op if (c == '\t' || c == ' ') {
429 2c02675e 2022-12-14 op /* Compress blanks to a sigle space. */
431 2c02675e 2022-12-14 op c = getc(file->stream);
432 2c02675e 2022-12-14 op } while (c == '\t' || c == ' ');
433 2c02675e 2022-12-14 op ungetc(c, file->stream);
437 2c02675e 2022-12-14 op if (c == EOF) {
439 2c02675e 2022-12-14 op * Fake EOL when hit EOF for the first time. This gets line
440 fdd67010 2023-03-26 op * count right if last line in included file is syntactically
441 2c02675e 2022-12-14 op * invalid and has no newline.
443 2c02675e 2022-12-14 op if (file->eof_reached == 0) {
444 2c02675e 2022-12-14 op file->eof_reached = 1;
445 2c02675e 2022-12-14 op return ('\n');
447 2c02675e 2022-12-14 op while (c == EOF) {
448 2c02675e 2022-12-14 op if (file == topfile || popfile() == EOF)
449 2c02675e 2022-12-14 op return (EOF);
457 2c02675e 2022-12-14 op lungetc(int c)
459 2c02675e 2022-12-14 op if (c == EOF)
462 2c02675e 2022-12-14 op if (file->ungetpos >= file->ungetsize) {
463 2c02675e 2022-12-14 op void *p = reallocarray(file->ungetbuf, file->ungetsize, 2);
464 2c02675e 2022-12-14 op if (p == NULL)
465 2c02675e 2022-12-14 op err(1, "reallocarray");
466 2c02675e 2022-12-14 op file->ungetbuf = p;
467 2c02675e 2022-12-14 op file->ungetsize *= 2;
469 2c02675e 2022-12-14 op file->ungetbuf[file->ungetpos++] = c;
473 2c02675e 2022-12-14 op findeol(void)
477 2c02675e 2022-12-14 op /* skip to either EOF or the first real EOL */
479 2c02675e 2022-12-14 op c = lgetc(0);
480 2c02675e 2022-12-14 op if (c == '\n') {
481 2c02675e 2022-12-14 op file->lineno++;
484 2c02675e 2022-12-14 op if (c == EOF)
487 2c02675e 2022-12-14 op return (ERROR);
493 2c02675e 2022-12-14 op char buf[8096];
494 2c02675e 2022-12-14 op char *p = buf;
497 2c02675e 2022-12-14 op int starting = 0;
498 2c02675e 2022-12-14 op int ending = 0;
499 2c02675e 2022-12-14 op int quote = 0;
501 2c02675e 2022-12-14 op if (!in_define && block == 0) {
502 2c02675e 2022-12-14 op while ((c = lgetc(0)) != '{' && c != EOF) {
503 2c02675e 2022-12-14 op if (c == '\n')
504 2c02675e 2022-12-14 op file->lineno++;
507 2c02675e 2022-12-14 op if (c == EOF)
511 2c02675e 2022-12-14 op c = lgetc(0);
512 2c02675e 2022-12-14 op if (c == '{' || c == '!') {
513 2c02675e 2022-12-14 op if (c == '{')
519 2c02675e 2022-12-14 op if (c == '\n')
520 2c02675e 2022-12-14 op file->lineno++;
523 2c02675e 2022-12-14 op while ((c = lgetc(0)) == ' ' || c == '\t' || c == '\n') {
524 2c02675e 2022-12-14 op if (c == '\n')
525 2c02675e 2022-12-14 op file->lineno++;
528 2c02675e 2022-12-14 op if (c == EOF) {
529 2c02675e 2022-12-14 op yyerror("unterminated block");
533 2c02675e 2022-12-14 op yylval.lineno = file->lineno;
535 2c02675e 2022-12-14 op if (block != 0 && c == block) {
536 2c02675e 2022-12-14 op if ((c = lgetc(0)) == '}') {
537 2c02675e 2022-12-14 op if (block == '!') {
539 2c02675e 2022-12-14 op return ('!');
542 2c02675e 2022-12-14 op return ('}');
548 2c02675e 2022-12-14 op if (in_define && block == 0) {
549 2c02675e 2022-12-14 op if (c == '{')
550 2c02675e 2022-12-14 op goto newblock;
553 2c02675e 2022-12-14 op if (starting) {
554 2c02675e 2022-12-14 op if (c == '!' || c == '{') {
556 2c02675e 2022-12-14 op lungetc('{');
559 2c02675e 2022-12-14 op starting = 0;
562 2c02675e 2022-12-14 op } else if (c == '{') {
563 2c02675e 2022-12-14 op starting = 1;
565 97267ffd 2023-04-03 op } else if (c == '\n')
569 2c02675e 2022-12-14 op if ((size_t)(p - buf) >= sizeof(buf)) {
570 2c02675e 2022-12-14 op yyerror("string too long");
571 2c02675e 2022-12-14 op return (findeol());
573 97267ffd 2023-04-03 op } while ((c = lgetc(0)) != EOF);
575 2c02675e 2022-12-14 op if (c == EOF) {
576 2c02675e 2022-12-14 op yyerror("unterminated block");
579 2c02675e 2022-12-14 op if (c == '\n')
580 2c02675e 2022-12-14 op file->lineno++;
581 2c02675e 2022-12-14 op if ((yylval.v.string = strdup(buf)) == NULL)
582 2c02675e 2022-12-14 op err(1, "strdup");
583 2c02675e 2022-12-14 op return (STRING);
586 2c02675e 2022-12-14 op if (block == '!') {
588 2c02675e 2022-12-14 op if (ending) {
589 2c02675e 2022-12-14 op if (c == '}') {
591 2c02675e 2022-12-14 op lungetc(block);
597 2c02675e 2022-12-14 op } else if (c == '!') {
600 97267ffd 2023-04-03 op } else if (c == '\n')
604 2c02675e 2022-12-14 op if ((size_t)(p - buf) >= sizeof(buf)) {
605 2c02675e 2022-12-14 op yyerror("line too long");
606 2c02675e 2022-12-14 op return (findeol());
608 97267ffd 2023-04-03 op } while ((c = lgetc(0)) != EOF);
611 2c02675e 2022-12-14 op if (c == EOF) {
612 2c02675e 2022-12-14 op yyerror("unterminated block");
615 2c02675e 2022-12-14 op if (c == '\n')
616 2c02675e 2022-12-14 op file->lineno++;
618 2c02675e 2022-12-14 op if ((yylval.v.string = strdup(buf)) == NULL)
619 2c02675e 2022-12-14 op err(1, "strdup");
620 2c02675e 2022-12-14 op return (STRING);
623 2c02675e 2022-12-14 op if (c == '|')
627 2c02675e 2022-12-14 op if (!quote && isspace((unsigned char)c))
630 2c02675e 2022-12-14 op if (c == '"')
631 2c02675e 2022-12-14 op quote = !quote;
633 2c02675e 2022-12-14 op if (!quote && c == '|') {
638 2c02675e 2022-12-14 op if (ending) {
639 2c02675e 2022-12-14 op if (c == '}') {
641 2c02675e 2022-12-14 op lungetc('}');
647 2c02675e 2022-12-14 op } else if (!quote && c == '}') {
653 2c02675e 2022-12-14 op if ((size_t)(p - buf) >= sizeof(buf)) {
654 2c02675e 2022-12-14 op yyerror("string too long");
655 2c02675e 2022-12-14 op return (findeol());
657 2c02675e 2022-12-14 op } while ((c = lgetc(0)) != EOF);
660 2c02675e 2022-12-14 op if (c == EOF) {
661 2c02675e 2022-12-14 op yyerror(quote ? "unterminated quote" : "unterminated block");
664 2c02675e 2022-12-14 op if (c == '\n')
665 2c02675e 2022-12-14 op file->lineno++;
666 2c02675e 2022-12-14 op if ((token = lookup(buf)) == STRING)
667 2c02675e 2022-12-14 op if ((yylval.v.string = strdup(buf)) == NULL)
668 2c02675e 2022-12-14 op err(1, "strdup");
669 2c02675e 2022-12-14 op return (token);
672 2c02675e 2022-12-14 op struct file *
673 2c02675e 2022-12-14 op pushfile(const char *name, int secret)
675 2c02675e 2022-12-14 op struct file *nfile;
677 2c02675e 2022-12-14 op if ((nfile = calloc(1, sizeof(*nfile))) == NULL)
678 2c02675e 2022-12-14 op err(1, "calloc");
679 2c02675e 2022-12-14 op if ((nfile->name = strdup(name)) == NULL)
680 2c02675e 2022-12-14 op err(1, "strdup");
681 2c02675e 2022-12-14 op if ((nfile->stream = fopen(nfile->name, "r")) == NULL) {
682 2c02675e 2022-12-14 op warn("can't open %s", nfile->name);
683 2c02675e 2022-12-14 op free(nfile->name);
685 2c02675e 2022-12-14 op return (NULL);
687 2c02675e 2022-12-14 op nfile->lineno = TAILQ_EMPTY(&files) ? 1 : 0;
688 2c02675e 2022-12-14 op nfile->ungetsize = 16;
689 2c02675e 2022-12-14 op nfile->ungetbuf = malloc(nfile->ungetsize);
690 2c02675e 2022-12-14 op if (nfile->ungetbuf == NULL)
691 2c02675e 2022-12-14 op err(1, "malloc");
692 2c02675e 2022-12-14 op TAILQ_INSERT_TAIL(&files, nfile, entry);
693 2c02675e 2022-12-14 op return (nfile);
697 2c02675e 2022-12-14 op popfile(void)
699 2c02675e 2022-12-14 op struct file *prev;
701 2c02675e 2022-12-14 op if ((prev = TAILQ_PREV(file, files, entry)) != NULL)
702 2c02675e 2022-12-14 op prev->errors += file->errors;
704 2c02675e 2022-12-14 op TAILQ_REMOVE(&files, file, entry);
705 2c02675e 2022-12-14 op fclose(file->stream);
706 2c02675e 2022-12-14 op free(file->name);
707 2c02675e 2022-12-14 op free(file->ungetbuf);
710 2c02675e 2022-12-14 op return (file ? 0 : EOF);
714 2c02675e 2022-12-14 op parse(FILE *outfile, const char *filename)
716 2c02675e 2022-12-14 op fp = outfile;
718 2c02675e 2022-12-14 op if ((file = pushfile(filename, 0)) == 0)
720 2c02675e 2022-12-14 op topfile = file;
723 2c02675e 2022-12-14 op errors = file->errors;
726 2c02675e 2022-12-14 op return (errors ? -1 : 0);
735 2c02675e 2022-12-14 op if (yylval.lineno == lastline + 1) {
736 2c02675e 2022-12-14 op lastline = yylval.lineno;
739 2c02675e 2022-12-14 op lastline = yylval.lineno;
741 2c02675e 2022-12-14 op fprintf(fp, "#line %d ", yylval.lineno);
742 2c02675e 2022-12-14 op printq(file->name);
743 2c02675e 2022-12-14 op putc('\n', fp);
747 2c02675e 2022-12-14 op printq(const char *str)
749 2c02675e 2022-12-14 op putc('"', fp);
750 2c02675e 2022-12-14 op for (; *str; ++str) {
751 2c02675e 2022-12-14 op if (*str == '"')
752 2c02675e 2022-12-14 op putc('\\', fp);
753 2c02675e 2022-12-14 op putc(*str, fp);
755 2c02675e 2022-12-14 op putc('"', fp);