parse.c revision 1.520 1 /* $NetBSD: parse.c,v 1.520 2020/12/27 22:29:37 rillig Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35 /*
36 * Copyright (c) 1989 by Berkeley Softworks
37 * All rights reserved.
38 *
39 * This code is derived from software contributed to Berkeley by
40 * Adam de Boor.
41 *
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. All advertising materials mentioning features or use of this software
51 * must display the following acknowledgement:
52 * This product includes software developed by the University of
53 * California, Berkeley and its contributors.
54 * 4. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
57 *
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * SUCH DAMAGE.
69 */
70
71 /*
72 * Parsing of makefiles.
73 *
74 * Parse_File is the main entry point and controls most of the other
75 * functions in this module.
76 *
77 * The directories for the .include "..." directive are kept in
78 * 'parseIncPath', while those for .include <...> are kept in 'sysIncPath'.
79 * The targets currently being defined are kept in 'targets'.
80 *
81 * Interface:
82 * Parse_Init Initialize the module
83 *
84 * Parse_End Clean up the module
85 *
86 * Parse_File Parse a top-level makefile. Included files are
87 * handled by Parse_include_file though.
88 *
89 * Parse_IsVar Return TRUE if the given line is a variable
90 * assignment. Used by MainParseArgs to determine if
91 * an argument is a target or a variable assignment.
92 * Used internally for pretty much the same thing.
93 *
94 * Parse_Error Report a parse error, a warning or an informational
95 * message.
96 *
97 * Parse_MainName Returns a list of the main target to create.
98 */
99
100 #include <sys/types.h>
101 #include <sys/mman.h>
102 #include <sys/stat.h>
103 #include <errno.h>
104 #include <stdarg.h>
105 #include <stdint.h>
106
107 #ifndef MAP_FILE
108 #define MAP_FILE 0
109 #endif
110 #ifndef MAP_COPY
111 #define MAP_COPY MAP_PRIVATE
112 #endif
113
114 #include "make.h"
115 #include "dir.h"
116 #include "job.h"
117 #include "pathnames.h"
118
119 /* "@(#)parse.c 8.3 (Berkeley) 3/19/94" */
120 MAKE_RCSID("$NetBSD: parse.c,v 1.520 2020/12/27 22:29:37 rillig Exp $");
121
122 /* types and constants */
123
124 /*
125 * Structure for a file being read ("included file")
126 */
127 typedef struct IFile {
128 char *fname; /* name of file (relative? absolute?) */
129 Boolean fromForLoop; /* simulated .include by the .for loop */
130 int lineno; /* current line number in file */
131 int first_lineno; /* line number of start of text */
132 unsigned int cond_depth; /* 'if' nesting when file opened */
133 Boolean depending; /* state of doing_depend on EOF */
134
135 /* The buffer from which the file's content is read. */
136 char *buf_freeIt;
137 char *buf_ptr; /* next char to be read */
138 char *buf_end;
139
140 /* Function to read more data, with a single opaque argument. */
141 ReadMoreProc readMore;
142 void *readMoreArg;
143
144 struct loadedfile *lf; /* loadedfile object, if any */
145 } IFile;
146
147 /*
148 * Tokens for target attributes
149 */
150 typedef enum ParseSpecial {
151 SP_ATTRIBUTE, /* Generic attribute */
152 SP_BEGIN, /* .BEGIN */
153 SP_DEFAULT, /* .DEFAULT */
154 SP_DELETE_ON_ERROR, /* .DELETE_ON_ERROR */
155 SP_END, /* .END */
156 SP_ERROR, /* .ERROR */
157 SP_IGNORE, /* .IGNORE */
158 SP_INCLUDES, /* .INCLUDES; not mentioned in the manual page */
159 SP_INTERRUPT, /* .INTERRUPT */
160 SP_LIBS, /* .LIBS; not mentioned in the manual page */
161 /* .MAIN and we don't have anything user-specified to make */
162 SP_MAIN,
163 SP_META, /* .META */
164 SP_MFLAGS, /* .MFLAGS or .MAKEFLAGS */
165 SP_NOMETA, /* .NOMETA */
166 SP_NOMETA_CMP, /* .NOMETA_CMP */
167 SP_NOPATH, /* .NOPATH */
168 SP_NOT, /* Not special */
169 SP_NOTPARALLEL, /* .NOTPARALLEL or .NO_PARALLEL */
170 SP_NULL, /* .NULL; not mentioned in the manual page */
171 SP_OBJDIR, /* .OBJDIR */
172 SP_ORDER, /* .ORDER */
173 SP_PARALLEL, /* .PARALLEL; not mentioned in the manual page */
174 SP_PATH, /* .PATH or .PATH.suffix */
175 SP_PHONY, /* .PHONY */
176 #ifdef POSIX
177 SP_POSIX, /* .POSIX; not mentioned in the manual page */
178 #endif
179 SP_PRECIOUS, /* .PRECIOUS */
180 SP_SHELL, /* .SHELL */
181 SP_SILENT, /* .SILENT */
182 SP_SINGLESHELL, /* .SINGLESHELL; not mentioned in the manual page */
183 SP_STALE, /* .STALE */
184 SP_SUFFIXES, /* .SUFFIXES */
185 SP_WAIT /* .WAIT */
186 } ParseSpecial;
187
188 typedef List SearchPathList;
189 typedef ListNode SearchPathListNode;
190
191 /* result data */
192
193 /*
194 * The main target to create. This is the first target on the first
195 * dependency line in the first makefile.
196 */
197 static GNode *mainNode;
198
199 /* eval state */
200
201 /* During parsing, the targets from the left-hand side of the currently
202 * active dependency line, or NULL if the current line does not belong to a
203 * dependency line, for example because it is a variable assignment.
204 *
205 * See unit-tests/deptgt.mk, keyword "parse.c:targets". */
206 static GNodeList *targets;
207
208 #ifdef CLEANUP
209 /* All shell commands for all targets, in no particular order and possibly
210 * with duplicates. Kept in a separate list since the commands from .USE or
211 * .USEBEFORE nodes are shared with other GNodes, thereby giving up the
212 * easily understandable ownership over the allocated strings. */
213 static StringList targCmds = LST_INIT;
214 #endif
215
216 /*
217 * Predecessor node for handling .ORDER. Initialized to NULL when .ORDER
218 * seen, then set to each successive source on the line.
219 */
220 static GNode *order_pred;
221
222 /* parser state */
223
224 /* number of fatal errors */
225 static int fatals = 0;
226
227 /*
228 * Variables for doing includes
229 */
230
231 /* The include chain of makefiles. At the bottom is the top-level makefile
232 * from the command line, and on top of that, there are the included files or
233 * .for loops, up to and including the current file.
234 *
235 * This data could be used to print stack traces on parse errors. As of
236 * 2020-09-14, this is not done though. It seems quite simple to print the
237 * tuples (fname:lineno:fromForLoop), from top to bottom. This simple idea is
238 * made complicated by the fact that the .for loops also use this stack for
239 * storing information.
240 *
241 * The lineno fields of the IFiles with fromForLoop == TRUE look confusing,
242 * which is demonstrated by the test 'include-main.mk'. They seem sorted
243 * backwards since they tell the number of completely parsed lines, which for
244 * a .for loop is right after the terminating .endfor. To compensate for this
245 * confusion, there is another field first_lineno pointing at the start of the
246 * .for loop, 1-based for human consumption.
247 *
248 * To make the stack trace intuitive, the entry below the first .for loop must
249 * be ignored completely since neither its lineno nor its first_lineno is
250 * useful. Instead, the topmost of each chain of .for loop needs to be
251 * printed twice, once with its first_lineno and once with its lineno.
252 *
253 * As of 2020-10-28, using the above rules, the stack trace for the .info line
254 * in include-subsub.mk would be:
255 *
256 * includes[5]: include-subsub.mk:4
257 * (lineno, from an .include)
258 * includes[4]: include-sub.mk:32
259 * (lineno, from a .for loop below an .include)
260 * includes[4]: include-sub.mk:31
261 * (first_lineno, from a .for loop, lineno == 32)
262 * includes[3]: include-sub.mk:30
263 * (first_lineno, from a .for loop, lineno == 33)
264 * includes[2]: include-sub.mk:29
265 * (first_lineno, from a .for loop, lineno == 34)
266 * includes[1]: include-sub.mk:35
267 * (not printed since it is below a .for loop)
268 * includes[0]: include-main.mk:27
269 */
270 static Vector /* of IFile */ includes;
271
272 static IFile *
273 GetInclude(size_t i)
274 {
275 return Vector_Get(&includes, i);
276 }
277
278 /* The file that is currently being read. */
279 static IFile *
280 CurFile(void)
281 {
282 return GetInclude(includes.len - 1);
283 }
284
285 /* include paths */
286 SearchPath *parseIncPath; /* dirs for "..." includes */
287 SearchPath *sysIncPath; /* dirs for <...> includes */
288 SearchPath *defSysIncPath; /* default for sysIncPath */
289
290 /* parser tables */
291
292 /*
293 * The parseKeywords table is searched using binary search when deciding
294 * if a target or source is special. The 'spec' field is the ParseSpecial
295 * type of the keyword (SP_NOT if the keyword isn't special as a target) while
296 * the 'op' field is the operator to apply to the list of targets if the
297 * keyword is used as a source ("0" if the keyword isn't special as a source)
298 */
299 static const struct {
300 const char *name; /* Name of keyword */
301 ParseSpecial spec; /* Type when used as a target */
302 GNodeType op; /* Operator when used as a source */
303 } parseKeywords[] = {
304 { ".BEGIN", SP_BEGIN, OP_NONE },
305 { ".DEFAULT", SP_DEFAULT, OP_NONE },
306 { ".DELETE_ON_ERROR", SP_DELETE_ON_ERROR, OP_NONE },
307 { ".END", SP_END, OP_NONE },
308 { ".ERROR", SP_ERROR, OP_NONE },
309 { ".EXEC", SP_ATTRIBUTE, OP_EXEC },
310 { ".IGNORE", SP_IGNORE, OP_IGNORE },
311 { ".INCLUDES", SP_INCLUDES, OP_NONE },
312 { ".INTERRUPT", SP_INTERRUPT, OP_NONE },
313 { ".INVISIBLE", SP_ATTRIBUTE, OP_INVISIBLE },
314 { ".JOIN", SP_ATTRIBUTE, OP_JOIN },
315 { ".LIBS", SP_LIBS, OP_NONE },
316 { ".MADE", SP_ATTRIBUTE, OP_MADE },
317 { ".MAIN", SP_MAIN, OP_NONE },
318 { ".MAKE", SP_ATTRIBUTE, OP_MAKE },
319 { ".MAKEFLAGS", SP_MFLAGS, OP_NONE },
320 { ".META", SP_META, OP_META },
321 { ".MFLAGS", SP_MFLAGS, OP_NONE },
322 { ".NOMETA", SP_NOMETA, OP_NOMETA },
323 { ".NOMETA_CMP", SP_NOMETA_CMP, OP_NOMETA_CMP },
324 { ".NOPATH", SP_NOPATH, OP_NOPATH },
325 { ".NOTMAIN", SP_ATTRIBUTE, OP_NOTMAIN },
326 { ".NOTPARALLEL", SP_NOTPARALLEL, OP_NONE },
327 { ".NO_PARALLEL", SP_NOTPARALLEL, OP_NONE },
328 { ".NULL", SP_NULL, OP_NONE },
329 { ".OBJDIR", SP_OBJDIR, OP_NONE },
330 { ".OPTIONAL", SP_ATTRIBUTE, OP_OPTIONAL },
331 { ".ORDER", SP_ORDER, OP_NONE },
332 { ".PARALLEL", SP_PARALLEL, OP_NONE },
333 { ".PATH", SP_PATH, OP_NONE },
334 { ".PHONY", SP_PHONY, OP_PHONY },
335 #ifdef POSIX
336 { ".POSIX", SP_POSIX, OP_NONE },
337 #endif
338 { ".PRECIOUS", SP_PRECIOUS, OP_PRECIOUS },
339 { ".RECURSIVE", SP_ATTRIBUTE, OP_MAKE },
340 { ".SHELL", SP_SHELL, OP_NONE },
341 { ".SILENT", SP_SILENT, OP_SILENT },
342 { ".SINGLESHELL", SP_SINGLESHELL, OP_NONE },
343 { ".STALE", SP_STALE, OP_NONE },
344 { ".SUFFIXES", SP_SUFFIXES, OP_NONE },
345 { ".USE", SP_ATTRIBUTE, OP_USE },
346 { ".USEBEFORE", SP_ATTRIBUTE, OP_USEBEFORE },
347 { ".WAIT", SP_WAIT, OP_NONE },
348 };
349
350 /* file loader */
351
352 struct loadedfile {
353 /* XXX: What is the lifetime of this path? Who manages the memory? */
354 const char *path; /* name, for error reports */
355 char *buf; /* contents buffer */
356 size_t len; /* length of contents */
357 size_t maplen; /* length of mmap area, or 0 */
358 Boolean used; /* XXX: have we used the data yet */
359 };
360
361 /* XXX: What is the lifetime of the path? Who manages the memory? */
362 static struct loadedfile *
363 loadedfile_create(const char *path)
364 {
365 struct loadedfile *lf;
366
367 lf = bmake_malloc(sizeof *lf);
368 lf->path = path == NULL ? "(stdin)" : path;
369 lf->buf = NULL;
370 lf->len = 0;
371 lf->maplen = 0;
372 lf->used = FALSE;
373 return lf;
374 }
375
376 static void
377 loadedfile_destroy(struct loadedfile *lf)
378 {
379 if (lf->buf != NULL) {
380 if (lf->maplen > 0)
381 munmap(lf->buf, lf->maplen);
382 else
383 free(lf->buf);
384 }
385 free(lf);
386 }
387
388 /*
389 * readMore() operation for loadedfile, as needed by the weird and twisted
390 * logic below. Once that's cleaned up, we can get rid of lf->used.
391 */
392 static char *
393 loadedfile_readMore(void *x, size_t *len)
394 {
395 struct loadedfile *lf = x;
396
397 if (lf->used)
398 return NULL;
399
400 lf->used = TRUE;
401 *len = lf->len;
402 return lf->buf;
403 }
404
405 /*
406 * Try to get the size of a file.
407 */
408 static Boolean
409 load_getsize(int fd, size_t *ret)
410 {
411 struct stat st;
412
413 if (fstat(fd, &st) < 0)
414 return FALSE;
415
416 if (!S_ISREG(st.st_mode))
417 return FALSE;
418
419 /*
420 * st_size is an off_t, which is 64 bits signed; *ret is
421 * size_t, which might be 32 bits unsigned or 64 bits
422 * unsigned. Rather than being elaborate, just punt on
423 * files that are more than 2^31 bytes. We should never
424 * see a makefile that size in practice...
425 *
426 * While we're at it reject negative sizes too, just in case.
427 */
428 if (st.st_size < 0 || st.st_size > 0x7fffffff)
429 return FALSE;
430
431 *ret = (size_t)st.st_size;
432 return TRUE;
433 }
434
435 static Boolean
436 loadedfile_mmap(struct loadedfile *lf, int fd)
437 {
438 static unsigned long pagesize = 0;
439
440 if (!load_getsize(fd, &lf->len))
441 return FALSE;
442
443 /* found a size, try mmap */
444 if (pagesize == 0)
445 pagesize = (unsigned long)sysconf(_SC_PAGESIZE);
446 if (pagesize == 0 || pagesize == (unsigned long)-1)
447 pagesize = 0x1000;
448
449 /* round size up to a page */
450 lf->maplen = pagesize * ((lf->len + pagesize - 1) / pagesize);
451
452 /*
453 * XXX hack for dealing with empty files; remove when
454 * we're no longer limited by interfacing to the old
455 * logic elsewhere in this file.
456 */
457 if (lf->maplen == 0)
458 lf->maplen = pagesize;
459
460 /*
461 * FUTURE: remove PROT_WRITE when the parser no longer
462 * needs to scribble on the input.
463 */
464 lf->buf = mmap(NULL, lf->maplen, PROT_READ | PROT_WRITE,
465 MAP_FILE | MAP_COPY, fd, 0);
466 if (lf->buf == MAP_FAILED)
467 return FALSE;
468
469 if (lf->len > 0 && lf->buf[lf->len - 1] != '\n') {
470 if (lf->len == lf->maplen) {
471 char *b = bmake_malloc(lf->len + 1);
472 memcpy(b, lf->buf, lf->len);
473 munmap(lf->buf, lf->maplen);
474 lf->maplen = 0;
475 }
476 lf->buf[lf->len++] = '\n';
477 }
478
479 return TRUE;
480 }
481
482 /*
483 * Read in a file.
484 *
485 * Until the path search logic can be moved under here instead of
486 * being in the caller in another source file, we need to have the fd
487 * passed in already open. Bleh.
488 *
489 * If the path is NULL, use stdin.
490 */
491 static struct loadedfile *
492 loadfile(const char *path, int fd)
493 {
494 struct loadedfile *lf;
495 ssize_t result;
496 size_t bufpos;
497
498 lf = loadedfile_create(path);
499
500 if (path == NULL) {
501 assert(fd == -1);
502 fd = STDIN_FILENO;
503 } else {
504 #if 0 /* notyet */
505 fd = open(path, O_RDONLY);
506 if (fd < 0) {
507 ...
508 Error("%s: %s", path, strerror(errno));
509 exit(1);
510 }
511 #endif
512 }
513
514 if (loadedfile_mmap(lf, fd))
515 goto done;
516
517 /* cannot mmap; load the traditional way */
518
519 lf->maplen = 0;
520 lf->len = 1024;
521 lf->buf = bmake_malloc(lf->len);
522
523 bufpos = 0;
524 for (;;) {
525 assert(bufpos <= lf->len);
526 if (bufpos == lf->len) {
527 if (lf->len > SIZE_MAX / 2) {
528 errno = EFBIG;
529 Error("%s: file too large", path);
530 exit(2); /* Not 1 so -q can distinguish error */
531 }
532 lf->len *= 2;
533 lf->buf = bmake_realloc(lf->buf, lf->len);
534 }
535 assert(bufpos < lf->len);
536 result = read(fd, lf->buf + bufpos, lf->len - bufpos);
537 if (result < 0) {
538 Error("%s: read error: %s", path, strerror(errno));
539 exit(2); /* Not 1 so -q can distinguish error */
540 }
541 if (result == 0)
542 break;
543
544 bufpos += (size_t)result;
545 }
546 assert(bufpos <= lf->len);
547 lf->len = bufpos;
548
549 /* truncate malloc region to actual length (maybe not useful) */
550 if (lf->len > 0) {
551 /* as for mmap case, ensure trailing \n */
552 if (lf->buf[lf->len - 1] != '\n')
553 lf->len++;
554 lf->buf = bmake_realloc(lf->buf, lf->len);
555 lf->buf[lf->len - 1] = '\n';
556 }
557
558 done:
559 if (path != NULL)
560 close(fd);
561
562 return lf;
563 }
564
565 /* old code */
566
567 /* Check if the current character is escaped on the current line. */
568 static Boolean
569 ParseIsEscaped(const char *line, const char *c)
570 {
571 Boolean active = FALSE;
572 for (;;) {
573 if (line == c)
574 return active;
575 if (*--c != '\\')
576 return active;
577 active = !active;
578 }
579 }
580
581 /* Add the filename and lineno to the GNode so that we remember where it
582 * was first defined. */
583 static void
584 ParseMark(GNode *gn)
585 {
586 IFile *curFile = CurFile();
587 gn->fname = curFile->fname;
588 gn->lineno = curFile->lineno;
589 }
590
591 /* Look in the table of keywords for one matching the given string.
592 * Return the index of the keyword, or -1 if it isn't there. */
593 static int
594 ParseFindKeyword(const char *str)
595 {
596 int start = 0;
597 int end = sizeof parseKeywords / sizeof parseKeywords[0] - 1;
598
599 do {
600 int curr = start + (end - start) / 2;
601 int diff = strcmp(str, parseKeywords[curr].name);
602
603 if (diff == 0)
604 return curr;
605 if (diff < 0)
606 end = curr - 1;
607 else
608 start = curr + 1;
609 } while (start <= end);
610
611 return -1;
612 }
613
614 static void
615 PrintLocation(FILE *f, const char *fname, size_t lineno)
616 {
617 char dirbuf[MAXPATHLEN + 1];
618 FStr dir, base;
619
620 if (*fname == '/' || strcmp(fname, "(stdin)") == 0) {
621 (void)fprintf(f, "\"%s\" line %u: ", fname, (unsigned)lineno);
622 return;
623 }
624
625 /* Find out which makefile is the culprit.
626 * We try ${.PARSEDIR} and apply realpath(3) if not absolute. */
627
628 dir = Var_Value(".PARSEDIR", VAR_GLOBAL);
629 if (dir.str == NULL)
630 dir.str = ".";
631 if (dir.str[0] != '/')
632 dir.str = realpath(dir.str, dirbuf);
633
634 base = Var_Value(".PARSEFILE", VAR_GLOBAL);
635 if (base.str == NULL)
636 base.str = str_basename(fname);
637
638 (void)fprintf(f, "\"%s/%s\" line %u: ",
639 dir.str, base.str, (unsigned)lineno);
640
641 FStr_Done(&base);
642 FStr_Done(&dir);
643 }
644
645 static void
646 ParseVErrorInternal(FILE *f, const char *fname, size_t lineno,
647 ParseErrorLevel type, const char *fmt, va_list ap)
648 {
649 static Boolean fatal_warning_error_printed = FALSE;
650
651 (void)fprintf(f, "%s: ", progname);
652
653 if (fname != NULL)
654 PrintLocation(f, fname, lineno);
655 if (type == PARSE_WARNING)
656 (void)fprintf(f, "warning: ");
657 (void)vfprintf(f, fmt, ap);
658 (void)fprintf(f, "\n");
659 (void)fflush(f);
660
661 if (type == PARSE_INFO)
662 return;
663 if (type == PARSE_FATAL || opts.parseWarnFatal)
664 fatals++;
665 if (opts.parseWarnFatal && !fatal_warning_error_printed) {
666 Error("parsing warnings being treated as errors");
667 fatal_warning_error_printed = TRUE;
668 }
669 }
670
671 static void
672 ParseErrorInternal(const char *fname, size_t lineno,
673 ParseErrorLevel type, const char *fmt, ...)
674 {
675 va_list ap;
676
677 (void)fflush(stdout);
678 va_start(ap, fmt);
679 ParseVErrorInternal(stderr, fname, lineno, type, fmt, ap);
680 va_end(ap);
681
682 if (opts.debug_file != stderr && opts.debug_file != stdout) {
683 va_start(ap, fmt);
684 ParseVErrorInternal(opts.debug_file, fname, lineno, type,
685 fmt, ap);
686 va_end(ap);
687 }
688 }
689
690 /* Print a parse error message, including location information.
691 *
692 * If the level is PARSE_FATAL, continue parsing until the end of the
693 * current top-level makefile, then exit (see Parse_File).
694 *
695 * Fmt is given without a trailing newline. */
696 void
697 Parse_Error(ParseErrorLevel type, const char *fmt, ...)
698 {
699 va_list ap;
700 const char *fname;
701 size_t lineno;
702
703 if (includes.len == 0) {
704 fname = NULL;
705 lineno = 0;
706 } else {
707 IFile *curFile = CurFile();
708 fname = curFile->fname;
709 lineno = (size_t)curFile->lineno;
710 }
711
712 va_start(ap, fmt);
713 (void)fflush(stdout);
714 ParseVErrorInternal(stderr, fname, lineno, type, fmt, ap);
715 va_end(ap);
716
717 if (opts.debug_file != stderr && opts.debug_file != stdout) {
718 va_start(ap, fmt);
719 ParseVErrorInternal(opts.debug_file, fname, lineno, type,
720 fmt, ap);
721 va_end(ap);
722 }
723 }
724
725
726 /* Parse and handle a .info, .warning or .error directive.
727 * For an .error directive, immediately exit. */
728 static void
729 ParseMessage(ParseErrorLevel level, const char *levelName, const char *umsg)
730 {
731 char *xmsg;
732
733 if (umsg[0] == '\0') {
734 Parse_Error(PARSE_FATAL, "Missing argument for \".%s\"",
735 levelName);
736 return;
737 }
738
739 (void)Var_Subst(umsg, VAR_CMDLINE, VARE_WANTRES, &xmsg);
740 /* TODO: handle errors */
741
742 Parse_Error(level, "%s", xmsg);
743 free(xmsg);
744
745 if (level == PARSE_FATAL) {
746 PrintOnError(NULL, NULL);
747 exit(1);
748 }
749 }
750
751 /* Add the child to the parent's children.
752 *
753 * Additionally, add the parent to the child's parents, but only if the
754 * target is not special. An example for such a special target is .END,
755 * which does not need to be informed once the child target has been made. */
756 static void
757 LinkSource(GNode *pgn, GNode *cgn, Boolean isSpecial)
758 {
759 if ((pgn->type & OP_DOUBLEDEP) && !Lst_IsEmpty(&pgn->cohorts))
760 pgn = pgn->cohorts.last->datum;
761
762 Lst_Append(&pgn->children, cgn);
763 pgn->unmade++;
764
765 /* Special targets like .END don't need any children. */
766 if (!isSpecial)
767 Lst_Append(&cgn->parents, pgn);
768
769 if (DEBUG(PARSE)) {
770 debug_printf("# %s: added child %s - %s\n",
771 __func__, pgn->name, cgn->name);
772 Targ_PrintNode(pgn, 0);
773 Targ_PrintNode(cgn, 0);
774 }
775 }
776
777 /* Add the node to each target from the current dependency group. */
778 static void
779 LinkToTargets(GNode *gn, Boolean isSpecial)
780 {
781 GNodeListNode *ln;
782
783 for (ln = targets->first; ln != NULL; ln = ln->next)
784 LinkSource(ln->datum, gn, isSpecial);
785 }
786
787 static Boolean
788 TryApplyDependencyOperator(GNode *gn, GNodeType op)
789 {
790 /*
791 * If the node occurred on the left-hand side of a dependency and the
792 * operator also defines a dependency, they must match.
793 */
794 if ((op & OP_OPMASK) && (gn->type & OP_OPMASK) &&
795 ((op & OP_OPMASK) != (gn->type & OP_OPMASK))) {
796 Parse_Error(PARSE_FATAL, "Inconsistent operator for %s",
797 gn->name);
798 return FALSE;
799 }
800
801 if (op == OP_DOUBLEDEP && (gn->type & OP_OPMASK) == OP_DOUBLEDEP) {
802 /*
803 * If the node was of the left-hand side of a '::' operator,
804 * we need to create a new instance of it for the children
805 * and commands on this dependency line since each of these
806 * dependency groups has its own attributes and commands,
807 * separate from the others.
808 *
809 * The new instance is placed on the 'cohorts' list of the
810 * initial one (note the initial one is not on its own
811 * cohorts list) and the new instance is linked to all
812 * parents of the initial instance.
813 */
814 GNode *cohort;
815
816 /*
817 * Propagate copied bits to the initial node. They'll be
818 * propagated back to the rest of the cohorts later.
819 */
820 gn->type |= op & ~OP_OPMASK;
821
822 cohort = Targ_NewInternalNode(gn->name);
823 if (doing_depend)
824 ParseMark(cohort);
825 /*
826 * Make the cohort invisible as well to avoid duplicating it
827 * into other variables. True, parents of this target won't
828 * tend to do anything with their local variables, but better
829 * safe than sorry.
830 *
831 * (I think this is pointless now, since the relevant list
832 * traversals will no longer see this node anyway. -mycroft)
833 */
834 cohort->type = op | OP_INVISIBLE;
835 Lst_Append(&gn->cohorts, cohort);
836 cohort->centurion = gn;
837 gn->unmade_cohorts++;
838 snprintf(cohort->cohort_num, sizeof cohort->cohort_num, "#%d",
839 (unsigned int)gn->unmade_cohorts % 1000000);
840 } else {
841 /*
842 * We don't want to nuke any previous flags (whatever they
843 * were) so we just OR the new operator into the old.
844 */
845 gn->type |= op;
846 }
847
848 return TRUE;
849 }
850
851 static void
852 ApplyDependencyOperator(GNodeType op)
853 {
854 GNodeListNode *ln;
855
856 for (ln = targets->first; ln != NULL; ln = ln->next)
857 if (!TryApplyDependencyOperator(ln->datum, op))
858 break;
859 }
860
861 /*
862 * We add a .WAIT node in the dependency list. After any dynamic dependencies
863 * (and filename globbing) have happened, it is given a dependency on each
864 * previous child, back until the previous .WAIT node. The next child won't
865 * be scheduled until the .WAIT node is built.
866 *
867 * We give each .WAIT node a unique name (mainly for diagnostics).
868 */
869 static void
870 ParseDependencySourceWait(Boolean isSpecial)
871 {
872 static int wait_number = 0;
873 char wait_src[16];
874 GNode *gn;
875
876 snprintf(wait_src, sizeof wait_src, ".WAIT_%u", ++wait_number);
877 gn = Targ_NewInternalNode(wait_src);
878 if (doing_depend)
879 ParseMark(gn);
880 gn->type = OP_WAIT | OP_PHONY | OP_DEPENDS | OP_NOTMAIN;
881 LinkToTargets(gn, isSpecial);
882
883 }
884
885 static Boolean
886 ParseDependencySourceKeyword(const char *src, ParseSpecial specType)
887 {
888 int keywd;
889 GNodeType op;
890
891 if (*src != '.' || !ch_isupper(src[1]))
892 return FALSE;
893
894 keywd = ParseFindKeyword(src);
895 if (keywd == -1)
896 return FALSE;
897
898 op = parseKeywords[keywd].op;
899 if (op != OP_NONE) {
900 ApplyDependencyOperator(op);
901 return TRUE;
902 }
903 if (parseKeywords[keywd].spec == SP_WAIT) {
904 ParseDependencySourceWait(specType != SP_NOT);
905 return TRUE;
906 }
907 return FALSE;
908 }
909
910 static void
911 ParseDependencySourceMain(const char *src)
912 {
913 /*
914 * In a line like ".MAIN: source1 source2", it means we need to add
915 * the sources of said target to the list of things to create.
916 *
917 * Note that this will only be invoked if the user didn't specify a
918 * target on the command line and the .MAIN occurs for the first time.
919 *
920 * See ParseDoDependencyTargetSpecial, branch SP_MAIN.
921 * See unit-tests/cond-func-make-main.mk.
922 */
923 Lst_Append(&opts.create, bmake_strdup(src));
924 /*
925 * Add the name to the .TARGETS variable as well, so the user can
926 * employ that, if desired.
927 */
928 Var_Append(".TARGETS", src, VAR_GLOBAL);
929 }
930
931 static void
932 ParseDependencySourceOrder(const char *src)
933 {
934 GNode *gn;
935 /*
936 * Create proper predecessor/successor links between the previous
937 * source and the current one.
938 */
939 gn = Targ_GetNode(src);
940 if (doing_depend)
941 ParseMark(gn);
942 if (order_pred != NULL) {
943 Lst_Append(&order_pred->order_succ, gn);
944 Lst_Append(&gn->order_pred, order_pred);
945 if (DEBUG(PARSE)) {
946 debug_printf("# %s: added Order dependency %s - %s\n",
947 __func__, order_pred->name, gn->name);
948 Targ_PrintNode(order_pred, 0);
949 Targ_PrintNode(gn, 0);
950 }
951 }
952 /*
953 * The current source now becomes the predecessor for the next one.
954 */
955 order_pred = gn;
956 }
957
958 static void
959 ParseDependencySourceOther(const char *src, GNodeType tOp,
960 ParseSpecial specType)
961 {
962 GNode *gn;
963
964 /*
965 * If the source is not an attribute, we need to find/create
966 * a node for it. After that we can apply any operator to it
967 * from a special target or link it to its parents, as
968 * appropriate.
969 *
970 * In the case of a source that was the object of a :: operator,
971 * the attribute is applied to all of its instances (as kept in
972 * the 'cohorts' list of the node) or all the cohorts are linked
973 * to all the targets.
974 */
975
976 /* Find/create the 'src' node and attach to all targets */
977 gn = Targ_GetNode(src);
978 if (doing_depend)
979 ParseMark(gn);
980 if (tOp != OP_NONE)
981 gn->type |= tOp;
982 else
983 LinkToTargets(gn, specType != SP_NOT);
984 }
985
986 /*
987 * Given the name of a source in a dependency line, figure out if it is an
988 * attribute (such as .SILENT) and apply it to the targets if it is. Else
989 * decide if there is some attribute which should be applied *to* the source
990 * because of some special target (such as .PHONY) and apply it if so.
991 * Otherwise, make the source a child of the targets in the list 'targets'.
992 *
993 * Input:
994 * tOp operator (if any) from special targets
995 * src name of the source to handle
996 */
997 static void
998 ParseDependencySource(GNodeType tOp, const char *src, ParseSpecial specType)
999 {
1000 if (ParseDependencySourceKeyword(src, specType))
1001 return;
1002
1003 if (specType == SP_MAIN)
1004 ParseDependencySourceMain(src);
1005 else if (specType == SP_ORDER)
1006 ParseDependencySourceOrder(src);
1007 else
1008 ParseDependencySourceOther(src, tOp, specType);
1009 }
1010
1011 /*
1012 * If we have yet to decide on a main target to make, in the absence of any
1013 * user input, we want the first target on the first dependency line that is
1014 * actually a real target (i.e. isn't a .USE or .EXEC rule) to be made.
1015 */
1016 static void
1017 FindMainTarget(void)
1018 {
1019 GNodeListNode *ln;
1020
1021 if (mainNode != NULL)
1022 return;
1023
1024 for (ln = targets->first; ln != NULL; ln = ln->next) {
1025 GNode *gn = ln->datum;
1026 if (!(gn->type & OP_NOTARGET)) {
1027 DEBUG1(MAKE, "Setting main node to \"%s\"\n", gn->name);
1028 mainNode = gn;
1029 Targ_SetMain(gn);
1030 return;
1031 }
1032 }
1033 }
1034
1035 /*
1036 * We got to the end of the line while we were still looking at targets.
1037 *
1038 * Ending a dependency line without an operator is a Bozo no-no. As a
1039 * heuristic, this is also often triggered by undetected conflicts from
1040 * cvs/rcs merges.
1041 */
1042 static void
1043 ParseErrorNoDependency(const char *lstart)
1044 {
1045 if ((strncmp(lstart, "<<<<<<", 6) == 0) ||
1046 (strncmp(lstart, "======", 6) == 0) ||
1047 (strncmp(lstart, ">>>>>>", 6) == 0))
1048 Parse_Error(PARSE_FATAL,
1049 "Makefile appears to contain unresolved cvs/rcs/??? merge conflicts");
1050 else if (lstart[0] == '.') {
1051 const char *dirstart = lstart + 1;
1052 const char *dirend;
1053 cpp_skip_whitespace(&dirstart);
1054 dirend = dirstart;
1055 while (ch_isalnum(*dirend) || *dirend == '-')
1056 dirend++;
1057 Parse_Error(PARSE_FATAL, "Unknown directive \"%.*s\"",
1058 (int)(dirend - dirstart), dirstart);
1059 } else
1060 Parse_Error(PARSE_FATAL, "Need an operator");
1061 }
1062
1063 static void
1064 ParseDependencyTargetWord(const char **pp, const char *lstart)
1065 {
1066 const char *cp = *pp;
1067
1068 while (*cp != '\0') {
1069 if ((ch_isspace(*cp) || *cp == '!' || *cp == ':' ||
1070 *cp == '(') &&
1071 !ParseIsEscaped(lstart, cp))
1072 break;
1073
1074 if (*cp == '$') {
1075 /*
1076 * Must be a dynamic source (would have been expanded
1077 * otherwise), so call the Var module to parse the
1078 * puppy so we can safely advance beyond it.
1079 *
1080 * There should be no errors in this, as they would
1081 * have been discovered in the initial Var_Subst and
1082 * we wouldn't be here.
1083 */
1084 const char *nested_p = cp;
1085 FStr nested_val;
1086
1087 (void)Var_Parse(&nested_p, VAR_CMDLINE, VARE_NONE,
1088 &nested_val);
1089 /* TODO: handle errors */
1090 FStr_Done(&nested_val);
1091 cp += nested_p - cp;
1092 } else
1093 cp++;
1094 }
1095
1096 *pp = cp;
1097 }
1098
1099 /* Handle special targets like .PATH, .DEFAULT, .BEGIN, .ORDER. */
1100 static void
1101 ParseDoDependencyTargetSpecial(ParseSpecial *inout_specType,
1102 const char *line, /* XXX: bad name */
1103 SearchPathList **inout_paths)
1104 {
1105 switch (*inout_specType) {
1106 case SP_PATH:
1107 if (*inout_paths == NULL)
1108 *inout_paths = Lst_New();
1109 Lst_Append(*inout_paths, &dirSearchPath);
1110 break;
1111 case SP_MAIN:
1112 /*
1113 * Allow targets from the command line to override the
1114 * .MAIN node.
1115 */
1116 if (!Lst_IsEmpty(&opts.create))
1117 *inout_specType = SP_NOT;
1118 break;
1119 case SP_BEGIN:
1120 case SP_END:
1121 case SP_STALE:
1122 case SP_ERROR:
1123 case SP_INTERRUPT: {
1124 GNode *gn = Targ_GetNode(line);
1125 if (doing_depend)
1126 ParseMark(gn);
1127 gn->type |= OP_NOTMAIN | OP_SPECIAL;
1128 Lst_Append(targets, gn);
1129 break;
1130 }
1131 case SP_DEFAULT: {
1132 /*
1133 * Need to create a node to hang commands on, but we don't
1134 * want it in the graph, nor do we want it to be the Main
1135 * Target. We claim the node is a transformation rule to make
1136 * life easier later, when we'll use Make_HandleUse to
1137 * actually apply the .DEFAULT commands.
1138 */
1139 GNode *gn = GNode_New(".DEFAULT");
1140 gn->type |= OP_NOTMAIN | OP_TRANSFORM;
1141 Lst_Append(targets, gn);
1142 defaultNode = gn;
1143 break;
1144 }
1145 case SP_DELETE_ON_ERROR:
1146 deleteOnError = TRUE;
1147 break;
1148 case SP_NOTPARALLEL:
1149 opts.maxJobs = 1;
1150 break;
1151 case SP_SINGLESHELL:
1152 opts.compatMake = TRUE;
1153 break;
1154 case SP_ORDER:
1155 order_pred = NULL;
1156 break;
1157 default:
1158 break;
1159 }
1160 }
1161
1162 /*
1163 * .PATH<suffix> has to be handled specially.
1164 * Call on the suffix module to give us a path to modify.
1165 */
1166 static Boolean
1167 ParseDoDependencyTargetPath(const char *line, /* XXX: bad name */
1168 SearchPathList **inout_paths)
1169 {
1170 SearchPath *path;
1171
1172 path = Suff_GetPath(&line[5]);
1173 if (path == NULL) {
1174 Parse_Error(PARSE_FATAL,
1175 "Suffix '%s' not defined (yet)", &line[5]);
1176 return FALSE;
1177 }
1178
1179 if (*inout_paths == NULL)
1180 *inout_paths = Lst_New();
1181 Lst_Append(*inout_paths, path);
1182
1183 return TRUE;
1184 }
1185
1186 /*
1187 * See if it's a special target and if so set specType to match it.
1188 */
1189 static Boolean
1190 ParseDoDependencyTarget(const char *line, /* XXX: bad name */
1191 ParseSpecial *inout_specType,
1192 GNodeType *out_tOp, SearchPathList **inout_paths)
1193 {
1194 int keywd;
1195
1196 if (!(line[0] == '.' && ch_isupper(line[1])))
1197 return TRUE;
1198
1199 /*
1200 * See if the target is a special target that must have it
1201 * or its sources handled specially.
1202 */
1203 keywd = ParseFindKeyword(line);
1204 if (keywd != -1) {
1205 if (*inout_specType == SP_PATH &&
1206 parseKeywords[keywd].spec != SP_PATH) {
1207 Parse_Error(PARSE_FATAL, "Mismatched special targets");
1208 return FALSE;
1209 }
1210
1211 *inout_specType = parseKeywords[keywd].spec;
1212 *out_tOp = parseKeywords[keywd].op;
1213
1214 ParseDoDependencyTargetSpecial(inout_specType, line,
1215 inout_paths);
1216
1217 } else if (strncmp(line, ".PATH", 5) == 0) {
1218 *inout_specType = SP_PATH;
1219 if (!ParseDoDependencyTargetPath(line, inout_paths))
1220 return FALSE;
1221 }
1222 return TRUE;
1223 }
1224
1225 static void
1226 ParseDoDependencyTargetMundane(char *line, /* XXX: bad name */
1227 StringList *curTargs)
1228 {
1229 if (Dir_HasWildcards(line)) {
1230 /*
1231 * Targets are to be sought only in the current directory,
1232 * so create an empty path for the thing. Note we need to
1233 * use Dir_Destroy in the destruction of the path as the
1234 * Dir module could have added a directory to the path...
1235 */
1236 SearchPath *emptyPath = SearchPath_New();
1237
1238 Dir_Expand(line, emptyPath, curTargs);
1239
1240 SearchPath_Free(emptyPath);
1241 } else {
1242 /*
1243 * No wildcards, but we want to avoid code duplication,
1244 * so create a list with the word on it.
1245 */
1246 Lst_Append(curTargs, line);
1247 }
1248
1249 /* Apply the targets. */
1250
1251 while (!Lst_IsEmpty(curTargs)) {
1252 char *targName = Lst_Dequeue(curTargs);
1253 GNode *gn = Suff_IsTransform(targName)
1254 ? Suff_AddTransform(targName)
1255 : Targ_GetNode(targName);
1256 if (doing_depend)
1257 ParseMark(gn);
1258
1259 Lst_Append(targets, gn);
1260 }
1261 }
1262
1263 static void
1264 ParseDoDependencyTargetExtraWarn(char **pp, const char *lstart)
1265 {
1266 Boolean warning = FALSE;
1267 char *cp = *pp;
1268
1269 while (*cp != '\0') {
1270 if (!ParseIsEscaped(lstart, cp) && (*cp == '!' || *cp == ':'))
1271 break;
1272 if (ParseIsEscaped(lstart, cp) || (*cp != ' ' && *cp != '\t'))
1273 warning = TRUE;
1274 cp++;
1275 }
1276 if (warning)
1277 Parse_Error(PARSE_WARNING, "Extra target ignored");
1278
1279 *pp = cp;
1280 }
1281
1282 static void
1283 ParseDoDependencyCheckSpec(ParseSpecial specType)
1284 {
1285 switch (specType) {
1286 default:
1287 Parse_Error(PARSE_WARNING,
1288 "Special and mundane targets don't mix. "
1289 "Mundane ones ignored");
1290 break;
1291 case SP_DEFAULT:
1292 case SP_STALE:
1293 case SP_BEGIN:
1294 case SP_END:
1295 case SP_ERROR:
1296 case SP_INTERRUPT:
1297 /*
1298 * These create nodes on which to hang commands, so targets
1299 * shouldn't be empty.
1300 */
1301 case SP_NOT:
1302 /* Nothing special here -- targets can be empty if it wants. */
1303 break;
1304 }
1305 }
1306
1307 static Boolean
1308 ParseDoDependencyParseOp(char **pp, const char *lstart, GNodeType *out_op)
1309 {
1310 const char *cp = *pp;
1311
1312 if (*cp == '!') {
1313 *out_op = OP_FORCE;
1314 (*pp)++;
1315 return TRUE;
1316 }
1317
1318 if (*cp == ':') {
1319 if (cp[1] == ':') {
1320 *out_op = OP_DOUBLEDEP;
1321 (*pp) += 2;
1322 } else {
1323 *out_op = OP_DEPENDS;
1324 (*pp)++;
1325 }
1326 return TRUE;
1327 }
1328
1329 {
1330 const char *msg = lstart[0] == '.'
1331 ? "Unknown directive" : "Missing dependency operator";
1332 Parse_Error(PARSE_FATAL, "%s", msg);
1333 return FALSE;
1334 }
1335 }
1336
1337 static void
1338 ClearPaths(SearchPathList *paths)
1339 {
1340 if (paths != NULL) {
1341 SearchPathListNode *ln;
1342 for (ln = paths->first; ln != NULL; ln = ln->next)
1343 SearchPath_Clear(ln->datum);
1344 }
1345
1346 Dir_SetPATH();
1347 }
1348
1349 static void
1350 ParseDoDependencySourcesEmpty(ParseSpecial specType, SearchPathList *paths)
1351 {
1352 switch (specType) {
1353 case SP_SUFFIXES:
1354 Suff_ClearSuffixes();
1355 break;
1356 case SP_PRECIOUS:
1357 allPrecious = TRUE;
1358 break;
1359 case SP_IGNORE:
1360 opts.ignoreErrors = TRUE;
1361 break;
1362 case SP_SILENT:
1363 opts.beSilent = TRUE;
1364 break;
1365 case SP_PATH:
1366 ClearPaths(paths);
1367 break;
1368 #ifdef POSIX
1369 case SP_POSIX:
1370 Var_Set("%POSIX", "1003.2", VAR_GLOBAL);
1371 break;
1372 #endif
1373 default:
1374 break;
1375 }
1376 }
1377
1378 static void
1379 AddToPaths(const char *dir, SearchPathList *paths)
1380 {
1381 if (paths != NULL) {
1382 SearchPathListNode *ln;
1383 for (ln = paths->first; ln != NULL; ln = ln->next)
1384 (void)Dir_AddDir(ln->datum, dir);
1385 }
1386 }
1387
1388 /*
1389 * If the target was one that doesn't take files as its sources
1390 * but takes something like suffixes, we take each
1391 * space-separated word on the line as a something and deal
1392 * with it accordingly.
1393 *
1394 * If the target was .SUFFIXES, we take each source as a
1395 * suffix and add it to the list of suffixes maintained by the
1396 * Suff module.
1397 *
1398 * If the target was a .PATH, we add the source as a directory
1399 * to search on the search path.
1400 *
1401 * If it was .INCLUDES, the source is taken to be the suffix of
1402 * files which will be #included and whose search path should
1403 * be present in the .INCLUDES variable.
1404 *
1405 * If it was .LIBS, the source is taken to be the suffix of
1406 * files which are considered libraries and whose search path
1407 * should be present in the .LIBS variable.
1408 *
1409 * If it was .NULL, the source is the suffix to use when a file
1410 * has no valid suffix.
1411 *
1412 * If it was .OBJDIR, the source is a new definition for .OBJDIR,
1413 * and will cause make to do a new chdir to that path.
1414 */
1415 static void
1416 ParseDoDependencySourceSpecial(ParseSpecial specType, char *word,
1417 SearchPathList *paths)
1418 {
1419 switch (specType) {
1420 case SP_SUFFIXES:
1421 Suff_AddSuffix(word, &mainNode);
1422 break;
1423 case SP_PATH:
1424 AddToPaths(word, paths);
1425 break;
1426 case SP_INCLUDES:
1427 Suff_AddInclude(word);
1428 break;
1429 case SP_LIBS:
1430 Suff_AddLib(word);
1431 break;
1432 case SP_NULL:
1433 Suff_SetNull(word);
1434 break;
1435 case SP_OBJDIR:
1436 Main_SetObjdir(FALSE, "%s", word);
1437 break;
1438 default:
1439 break;
1440 }
1441 }
1442
1443 static Boolean
1444 ParseDoDependencyTargets(char **inout_cp,
1445 char **inout_line,
1446 const char *lstart,
1447 ParseSpecial *inout_specType,
1448 GNodeType *inout_tOp,
1449 SearchPathList **inout_paths,
1450 StringList *curTargs)
1451 {
1452 char *cp;
1453 char *tgt = *inout_line;
1454 char savec;
1455 const char *p;
1456
1457 for (;;) {
1458 /*
1459 * Here LINE points to the beginning of the next word, and
1460 * LSTART points to the actual beginning of the line.
1461 */
1462
1463 /* Find the end of the next word. */
1464 cp = tgt;
1465 p = cp;
1466 ParseDependencyTargetWord(&p, lstart);
1467 cp += p - cp;
1468
1469 /*
1470 * If the word is followed by a left parenthesis, it's the
1471 * name of an object file inside an archive (ar file).
1472 */
1473 if (!ParseIsEscaped(lstart, cp) && *cp == '(') {
1474 /*
1475 * Archives must be handled specially to make sure the
1476 * OP_ARCHV flag is set in their 'type' field, for one
1477 * thing, and because things like "archive(file1.o
1478 * file2.o file3.o)" are permissible.
1479 *
1480 * Arch_ParseArchive will set 'line' to be the first
1481 * non-blank after the archive-spec. It creates/finds
1482 * nodes for the members and places them on the given
1483 * list, returning TRUE if all went well and FALSE if
1484 * there was an error in the specification. On error,
1485 * line should remain untouched.
1486 */
1487 if (!Arch_ParseArchive(&tgt, targets, VAR_CMDLINE)) {
1488 Parse_Error(PARSE_FATAL,
1489 "Error in archive specification: \"%s\"",
1490 tgt);
1491 return FALSE;
1492 }
1493
1494 cp = tgt;
1495 continue;
1496 }
1497
1498 if (*cp == '\0') {
1499 ParseErrorNoDependency(lstart);
1500 return FALSE;
1501 }
1502
1503 /* Insert a null terminator. */
1504 savec = *cp;
1505 *cp = '\0';
1506
1507 if (!ParseDoDependencyTarget(tgt, inout_specType, inout_tOp,
1508 inout_paths))
1509 return FALSE;
1510
1511 /*
1512 * Have word in line. Get or create its node and stick it at
1513 * the end of the targets list
1514 */
1515 if (*inout_specType == SP_NOT && *tgt != '\0')
1516 ParseDoDependencyTargetMundane(tgt, curTargs);
1517 else if (*inout_specType == SP_PATH && *tgt != '.' &&
1518 *tgt != '\0')
1519 Parse_Error(PARSE_WARNING, "Extra target (%s) ignored",
1520 tgt);
1521
1522 /* Don't need the inserted null terminator any more. */
1523 *cp = savec;
1524
1525 /*
1526 * If it is a special type and not .PATH, it's the only target
1527 * we allow on this line.
1528 */
1529 if (*inout_specType != SP_NOT && *inout_specType != SP_PATH)
1530 ParseDoDependencyTargetExtraWarn(&cp, lstart);
1531 else
1532 pp_skip_whitespace(&cp);
1533
1534 tgt = cp;
1535 if (*tgt == '\0')
1536 break;
1537 if ((*tgt == '!' || *tgt == ':') &&
1538 !ParseIsEscaped(lstart, tgt))
1539 break;
1540 }
1541
1542 *inout_cp = cp;
1543 *inout_line = tgt;
1544 return TRUE;
1545 }
1546
1547 static void
1548 ParseDoDependencySourcesSpecial(char *start, char *end,
1549 ParseSpecial specType, SearchPathList *paths)
1550 {
1551 char savec;
1552
1553 while (*start != '\0') {
1554 while (*end != '\0' && !ch_isspace(*end))
1555 end++;
1556 savec = *end;
1557 *end = '\0';
1558 ParseDoDependencySourceSpecial(specType, start, paths);
1559 *end = savec;
1560 if (savec != '\0')
1561 end++;
1562 pp_skip_whitespace(&end);
1563 start = end;
1564 }
1565 }
1566
1567 static Boolean
1568 ParseDoDependencySourcesMundane(char *start, char *end,
1569 ParseSpecial specType, GNodeType tOp)
1570 {
1571 while (*start != '\0') {
1572 /*
1573 * The targets take real sources, so we must beware of archive
1574 * specifications (i.e. things with left parentheses in them)
1575 * and handle them accordingly.
1576 */
1577 for (; *end != '\0' && !ch_isspace(*end); end++) {
1578 if (*end == '(' && end > start && end[-1] != '$') {
1579 /*
1580 * Only stop for a left parenthesis if it
1581 * isn't at the start of a word (that'll be
1582 * for variable changes later) and isn't
1583 * preceded by a dollar sign (a dynamic
1584 * source).
1585 */
1586 break;
1587 }
1588 }
1589
1590 if (*end == '(') {
1591 GNodeList sources = LST_INIT;
1592 if (!Arch_ParseArchive(&start, &sources, VAR_CMDLINE)) {
1593 Parse_Error(PARSE_FATAL,
1594 "Error in source archive spec \"%s\"",
1595 start);
1596 return FALSE;
1597 }
1598
1599 while (!Lst_IsEmpty(&sources)) {
1600 GNode *gn = Lst_Dequeue(&sources);
1601 ParseDependencySource(tOp, gn->name, specType);
1602 }
1603 Lst_Done(&sources);
1604 end = start;
1605 } else {
1606 if (*end != '\0') {
1607 *end = '\0';
1608 end++;
1609 }
1610
1611 ParseDependencySource(tOp, start, specType);
1612 }
1613 pp_skip_whitespace(&end);
1614 start = end;
1615 }
1616 return TRUE;
1617 }
1618
1619 /* Parse a dependency line consisting of targets, followed by a dependency
1620 * operator, optionally followed by sources.
1621 *
1622 * The nodes of the sources are linked as children to the nodes of the
1623 * targets. Nodes are created as necessary.
1624 *
1625 * The operator is applied to each node in the global 'targets' list,
1626 * which is where the nodes found for the targets are kept, by means of
1627 * the ParseDoOp function.
1628 *
1629 * The sources are parsed in much the same way as the targets, except
1630 * that they are expanded using the wildcarding scheme of the C-Shell,
1631 * and a target is created for each expanded word. Each of the resulting
1632 * nodes is then linked to each of the targets as one of its children.
1633 *
1634 * Certain targets and sources such as .PHONY or .PRECIOUS are handled
1635 * specially. These are the ones detailed by the specType variable.
1636 *
1637 * The storing of transformation rules such as '.c.o' is also taken care of
1638 * here. A target is recognized as a transformation rule by calling
1639 * Suff_IsTransform. If it is a transformation rule, its node is gotten
1640 * from the suffix module via Suff_AddTransform rather than the standard
1641 * Targ_FindNode in the target module.
1642 *
1643 * Upon return, the value of the line is unspecified.
1644 */
1645 static void
1646 ParseDoDependency(char *line)
1647 {
1648 char *cp; /* our current position */
1649 GNodeType op; /* the operator on the line */
1650 SearchPathList *paths; /* search paths to alter when parsing
1651 * a list of .PATH targets */
1652 GNodeType tOp; /* operator from special target */
1653 /* target names to be found and added to the targets list */
1654 StringList curTargs = LST_INIT;
1655 char *lstart = line;
1656
1657 /*
1658 * specType contains the SPECial TYPE of the current target. It is
1659 * SP_NOT if the target is unspecial. If it *is* special, however, the
1660 * children are linked as children of the parent but not vice versa.
1661 */
1662 ParseSpecial specType = SP_NOT;
1663
1664 DEBUG1(PARSE, "ParseDoDependency(%s)\n", line);
1665 tOp = OP_NONE;
1666
1667 paths = NULL;
1668
1669 /*
1670 * First, grind through the targets.
1671 */
1672 /* XXX: don't use line as an iterator variable */
1673 if (!ParseDoDependencyTargets(&cp, &line, lstart, &specType, &tOp,
1674 &paths, &curTargs))
1675 goto out;
1676
1677 /*
1678 * Don't need the list of target names anymore.
1679 * The targets themselves are now in the global variable 'targets'.
1680 */
1681 Lst_Done(&curTargs);
1682 Lst_Init(&curTargs);
1683
1684 if (!Lst_IsEmpty(targets))
1685 ParseDoDependencyCheckSpec(specType);
1686
1687 /*
1688 * Have now parsed all the target names. Must parse the operator next.
1689 */
1690 if (!ParseDoDependencyParseOp(&cp, lstart, &op))
1691 goto out;
1692
1693 /*
1694 * Apply the operator to the target. This is how we remember which
1695 * operator a target was defined with. It fails if the operator
1696 * used isn't consistent across all references.
1697 */
1698 ApplyDependencyOperator(op);
1699
1700 /*
1701 * Onward to the sources.
1702 *
1703 * LINE will now point to the first source word, if any, or the
1704 * end of the string if not.
1705 */
1706 pp_skip_whitespace(&cp);
1707 line = cp; /* XXX: 'line' is an inappropriate name */
1708
1709 /*
1710 * Several special targets take different actions if present with no
1711 * sources:
1712 * a .SUFFIXES line with no sources clears out all old suffixes
1713 * a .PRECIOUS line makes all targets precious
1714 * a .IGNORE line ignores errors for all targets
1715 * a .SILENT line creates silence when making all targets
1716 * a .PATH removes all directories from the search path(s).
1717 */
1718 if (line[0] == '\0') {
1719 ParseDoDependencySourcesEmpty(specType, paths);
1720 } else if (specType == SP_MFLAGS) {
1721 /*
1722 * Call on functions in main.c to deal with these arguments and
1723 * set the initial character to a null-character so the loop to
1724 * get sources won't get anything
1725 */
1726 Main_ParseArgLine(line);
1727 *line = '\0';
1728 } else if (specType == SP_SHELL) {
1729 if (!Job_ParseShell(line)) {
1730 Parse_Error(PARSE_FATAL,
1731 "improper shell specification");
1732 goto out;
1733 }
1734 *line = '\0';
1735 } else if (specType == SP_NOTPARALLEL || specType == SP_SINGLESHELL ||
1736 specType == SP_DELETE_ON_ERROR) {
1737 *line = '\0';
1738 }
1739
1740 /* Now go for the sources. */
1741 if (specType == SP_SUFFIXES || specType == SP_PATH ||
1742 specType == SP_INCLUDES || specType == SP_LIBS ||
1743 specType == SP_NULL || specType == SP_OBJDIR) {
1744 ParseDoDependencySourcesSpecial(line, cp, specType, paths);
1745 if (paths != NULL) {
1746 Lst_Free(paths);
1747 paths = NULL;
1748 }
1749 if (specType == SP_PATH)
1750 Dir_SetPATH();
1751 } else {
1752 assert(paths == NULL);
1753 if (!ParseDoDependencySourcesMundane(line, cp, specType, tOp))
1754 goto out;
1755 }
1756
1757 FindMainTarget();
1758
1759 out:
1760 if (paths != NULL)
1761 Lst_Free(paths);
1762 Lst_Done(&curTargs);
1763 }
1764
1765 typedef struct VarAssignParsed {
1766 const char *nameStart; /* unexpanded */
1767 const char *nameEnd; /* before operator adjustment */
1768 const char *eq; /* the '=' of the assignment operator */
1769 } VarAssignParsed;
1770
1771 /*
1772 * Determine the assignment operator and adjust the end of the variable
1773 * name accordingly.
1774 */
1775 static void
1776 AdjustVarassignOp(const VarAssignParsed *pvar, const char *value,
1777 VarAssign *out_var)
1778 {
1779 const char *op = pvar->eq;
1780 const char *const name = pvar->nameStart;
1781 VarAssignOp type;
1782
1783 if (op > name && op[-1] == '+') {
1784 type = VAR_APPEND;
1785 op--;
1786
1787 } else if (op > name && op[-1] == '?') {
1788 op--;
1789 type = VAR_DEFAULT;
1790
1791 } else if (op > name && op[-1] == ':') {
1792 op--;
1793 type = VAR_SUBST;
1794
1795 } else if (op > name && op[-1] == '!') {
1796 op--;
1797 type = VAR_SHELL;
1798
1799 } else {
1800 type = VAR_NORMAL;
1801 #ifdef SUNSHCMD
1802 while (op > name && ch_isspace(op[-1]))
1803 op--;
1804
1805 if (op >= name + 3 && op[-3] == ':' && op[-2] == 's' &&
1806 op[-1] == 'h') {
1807 type = VAR_SHELL;
1808 op -= 3;
1809 }
1810 #endif
1811 }
1812
1813 {
1814 const char *nameEnd = pvar->nameEnd < op ? pvar->nameEnd : op;
1815 out_var->varname = bmake_strsedup(pvar->nameStart, nameEnd);
1816 out_var->op = type;
1817 out_var->value = value;
1818 }
1819 }
1820
1821 /*
1822 * Parse a variable assignment, consisting of a single-word variable name,
1823 * optional whitespace, an assignment operator, optional whitespace and the
1824 * variable value.
1825 *
1826 * Note: There is a lexical ambiguity with assignment modifier characters
1827 * in variable names. This routine interprets the character before the =
1828 * as a modifier. Therefore, an assignment like
1829 * C++=/usr/bin/CC
1830 * is interpreted as "C+ +=" instead of "C++ =".
1831 *
1832 * Used for both lines in a file and command line arguments.
1833 */
1834 Boolean
1835 Parse_IsVar(const char *p, VarAssign *out_var)
1836 {
1837 VarAssignParsed pvar;
1838 const char *firstSpace = NULL;
1839 int level = 0;
1840
1841 cpp_skip_hspace(&p); /* Skip to variable name */
1842
1843 /*
1844 * During parsing, the '+' of the '+=' operator is initially parsed
1845 * as part of the variable name. It is later corrected, as is the
1846 * ':sh' modifier. Of these two (nameEnd and op), the earlier one
1847 * determines the actual end of the variable name.
1848 */
1849 pvar.nameStart = p;
1850 #ifdef CLEANUP
1851 pvar.nameEnd = NULL;
1852 pvar.eq = NULL;
1853 #endif
1854
1855 /*
1856 * Scan for one of the assignment operators outside a variable
1857 * expansion.
1858 */
1859 while (*p != '\0') {
1860 char ch = *p++;
1861 if (ch == '(' || ch == '{') {
1862 level++;
1863 continue;
1864 }
1865 if (ch == ')' || ch == '}') {
1866 level--;
1867 continue;
1868 }
1869
1870 if (level != 0)
1871 continue;
1872
1873 if (ch == ' ' || ch == '\t')
1874 if (firstSpace == NULL)
1875 firstSpace = p - 1;
1876 while (ch == ' ' || ch == '\t')
1877 ch = *p++;
1878
1879 #ifdef SUNSHCMD
1880 if (ch == ':' && p[0] == 's' && p[1] == 'h') {
1881 p += 2;
1882 continue;
1883 }
1884 #endif
1885 if (ch == '=') {
1886 pvar.eq = p - 1;
1887 pvar.nameEnd = firstSpace != NULL ? firstSpace : p - 1;
1888 cpp_skip_whitespace(&p);
1889 AdjustVarassignOp(&pvar, p, out_var);
1890 return TRUE;
1891 }
1892 if (*p == '=' &&
1893 (ch == '+' || ch == ':' || ch == '?' || ch == '!')) {
1894 pvar.eq = p;
1895 pvar.nameEnd = firstSpace != NULL ? firstSpace : p;
1896 p++;
1897 cpp_skip_whitespace(&p);
1898 AdjustVarassignOp(&pvar, p, out_var);
1899 return TRUE;
1900 }
1901 if (firstSpace != NULL)
1902 return FALSE;
1903 }
1904
1905 return FALSE;
1906 }
1907
1908 /*
1909 * Check for syntax errors such as unclosed expressions or unknown modifiers.
1910 */
1911 static void
1912 VarCheckSyntax(VarAssignOp type, const char *uvalue, GNode *ctxt)
1913 {
1914 if (opts.strict) {
1915 if (type != VAR_SUBST && strchr(uvalue, '$') != NULL) {
1916 char *expandedValue;
1917
1918 (void)Var_Subst(uvalue, ctxt, VARE_NONE,
1919 &expandedValue);
1920 /* TODO: handle errors */
1921 free(expandedValue);
1922 }
1923 }
1924 }
1925
1926 static void
1927 VarAssign_EvalSubst(const char *name, const char *uvalue, GNode *ctxt,
1928 FStr *out_avalue)
1929 {
1930 const char *avalue;
1931 char *evalue;
1932 Boolean savedPreserveUndefined = preserveUndefined;
1933
1934 /*
1935 * make sure that we set the variable the first time to nothing
1936 * so that it gets substituted!
1937 */
1938 if (!Var_Exists(name, ctxt))
1939 Var_Set(name, "", ctxt);
1940
1941 preserveUndefined = TRUE;
1942 (void)Var_Subst(uvalue, ctxt, VARE_WANTRES | VARE_KEEP_DOLLAR, &evalue);
1943 preserveUndefined = savedPreserveUndefined;
1944 /* TODO: handle errors */
1945
1946 avalue = evalue;
1947 Var_Set(name, avalue, ctxt);
1948
1949 *out_avalue = (FStr){ avalue, evalue };
1950 }
1951
1952 static void
1953 VarAssign_EvalShell(const char *name, const char *uvalue, GNode *ctxt,
1954 FStr *out_avalue)
1955 {
1956 FStr cmd;
1957 const char *errfmt;
1958 char *cmdOut;
1959
1960 cmd = FStr_InitRefer(uvalue);
1961 if (strchr(cmd.str, '$') != NULL) {
1962 char *expanded;
1963 (void)Var_Subst(cmd.str, VAR_CMDLINE,
1964 VARE_WANTRES | VARE_UNDEFERR, &expanded);
1965 /* TODO: handle errors */
1966 cmd = FStr_InitOwn(expanded);
1967 }
1968
1969 cmdOut = Cmd_Exec(cmd.str, &errfmt);
1970 Var_Set(name, cmdOut, ctxt);
1971 *out_avalue = FStr_InitOwn(cmdOut);
1972
1973 if (errfmt != NULL)
1974 Parse_Error(PARSE_WARNING, errfmt, cmd.str);
1975
1976 FStr_Done(&cmd);
1977 }
1978
1979 /* Perform a variable assignment.
1980 *
1981 * The actual value of the variable is returned in *out_avalue and
1982 * *out_avalue_freeIt. Especially for VAR_SUBST and VAR_SHELL this can differ
1983 * from the literal value.
1984 *
1985 * Return whether the assignment was actually done. The assignment is only
1986 * skipped if the operator is '?=' and the variable already exists. */
1987 static Boolean
1988 VarAssign_Eval(const char *name, VarAssignOp op, const char *uvalue,
1989 GNode *ctxt, FStr *out_TRUE_avalue)
1990 {
1991 FStr avalue = FStr_InitRefer(uvalue);
1992
1993 if (op == VAR_APPEND)
1994 Var_Append(name, uvalue, ctxt);
1995 else if (op == VAR_SUBST)
1996 VarAssign_EvalSubst(name, uvalue, ctxt, &avalue);
1997 else if (op == VAR_SHELL)
1998 VarAssign_EvalShell(name, uvalue, ctxt, &avalue);
1999 else {
2000 if (op == VAR_DEFAULT && Var_Exists(name, ctxt))
2001 return FALSE;
2002
2003 /* Normal assignment -- just do it. */
2004 Var_Set(name, uvalue, ctxt);
2005 }
2006
2007 *out_TRUE_avalue = avalue;
2008 return TRUE;
2009 }
2010
2011 static void
2012 VarAssignSpecial(const char *name, const char *avalue)
2013 {
2014 if (strcmp(name, MAKEOVERRIDES) == 0)
2015 Main_ExportMAKEFLAGS(FALSE); /* re-export MAKEFLAGS */
2016 else if (strcmp(name, ".CURDIR") == 0) {
2017 /*
2018 * Someone is being (too?) clever...
2019 * Let's pretend they know what they are doing and
2020 * re-initialize the 'cur' CachedDir.
2021 */
2022 Dir_InitCur(avalue);
2023 Dir_SetPATH();
2024 } else if (strcmp(name, MAKE_JOB_PREFIX) == 0)
2025 Job_SetPrefix();
2026 else if (strcmp(name, MAKE_EXPORTED) == 0)
2027 Var_ExportVars(avalue);
2028 }
2029
2030 /* Perform the variable variable assignment in the given context. */
2031 void
2032 Parse_DoVar(VarAssign *var, GNode *ctxt)
2033 {
2034 FStr avalue; /* actual value (maybe expanded) */
2035
2036 VarCheckSyntax(var->op, var->value, ctxt);
2037 if (VarAssign_Eval(var->varname, var->op, var->value, ctxt, &avalue)) {
2038 VarAssignSpecial(var->varname, avalue.str);
2039 FStr_Done(&avalue);
2040 }
2041
2042 free(var->varname);
2043 }
2044
2045
2046 /* See if the command possibly calls a sub-make by using the variable
2047 * expressions ${.MAKE}, ${MAKE} or the plain word "make". */
2048 static Boolean
2049 MaybeSubMake(const char *cmd)
2050 {
2051 const char *start;
2052
2053 for (start = cmd; *start != '\0'; start++) {
2054 const char *p = start;
2055 char endc;
2056
2057 /* XXX: What if progname != "make"? */
2058 if (p[0] == 'm' && p[1] == 'a' && p[2] == 'k' && p[3] == 'e')
2059 if (start == cmd || !ch_isalnum(p[-1]))
2060 if (!ch_isalnum(p[4]))
2061 return TRUE;
2062
2063 if (*p != '$')
2064 continue;
2065 p++;
2066
2067 if (*p == '{')
2068 endc = '}';
2069 else if (*p == '(')
2070 endc = ')';
2071 else
2072 continue;
2073 p++;
2074
2075 if (*p == '.') /* Accept either ${.MAKE} or ${MAKE}. */
2076 p++;
2077
2078 if (p[0] == 'M' && p[1] == 'A' && p[2] == 'K' && p[3] == 'E')
2079 if (p[4] == endc)
2080 return TRUE;
2081 }
2082 return FALSE;
2083 }
2084
2085 /* Append the command to the target node.
2086 *
2087 * The node may be marked as a submake node if the command is determined to
2088 * be that. */
2089 static void
2090 ParseAddCmd(GNode *gn, char *cmd)
2091 {
2092 /* Add to last (ie current) cohort for :: targets */
2093 if ((gn->type & OP_DOUBLEDEP) && gn->cohorts.last != NULL)
2094 gn = gn->cohorts.last->datum;
2095
2096 /* if target already supplied, ignore commands */
2097 if (!(gn->type & OP_HAS_COMMANDS)) {
2098 Lst_Append(&gn->commands, cmd);
2099 if (MaybeSubMake(cmd))
2100 gn->type |= OP_SUBMAKE;
2101 ParseMark(gn);
2102 } else {
2103 #if 0
2104 /* XXX: We cannot do this until we fix the tree */
2105 Lst_Append(&gn->commands, cmd);
2106 Parse_Error(PARSE_WARNING,
2107 "overriding commands for target \"%s\"; "
2108 "previous commands defined at %s: %d ignored",
2109 gn->name, gn->fname, gn->lineno);
2110 #else
2111 Parse_Error(PARSE_WARNING,
2112 "duplicate script for target \"%s\" ignored",
2113 gn->name);
2114 ParseErrorInternal(gn->fname, (size_t)gn->lineno, PARSE_WARNING,
2115 "using previous script for \"%s\" defined here",
2116 gn->name);
2117 #endif
2118 }
2119 }
2120
2121 /*
2122 * Add a directory to the path searched for included makefiles bracketed
2123 * by double-quotes.
2124 */
2125 void
2126 Parse_AddIncludeDir(const char *dir)
2127 {
2128 (void)Dir_AddDir(parseIncPath, dir);
2129 }
2130
2131 /* Handle one of the .[-ds]include directives by remembering the current file
2132 * and pushing the included file on the stack. After the included file has
2133 * finished, parsing continues with the including file; see Parse_SetInput
2134 * and ParseEOF.
2135 *
2136 * System includes are looked up in sysIncPath, any other includes are looked
2137 * up in the parsedir and then in the directories specified by the -I command
2138 * line options.
2139 */
2140 static void
2141 Parse_include_file(char *file, Boolean isSystem, Boolean depinc, Boolean silent)
2142 {
2143 struct loadedfile *lf;
2144 char *fullname; /* full pathname of file */
2145 char *newName;
2146 char *slash, *incdir;
2147 int fd;
2148 int i;
2149
2150 fullname = file[0] == '/' ? bmake_strdup(file) : NULL;
2151
2152 if (fullname == NULL && !isSystem) {
2153 /*
2154 * Include files contained in double-quotes are first searched
2155 * relative to the including file's location. We don't want to
2156 * cd there, of course, so we just tack on the old file's
2157 * leading path components and call Dir_FindFile to see if
2158 * we can locate the file.
2159 */
2160
2161 incdir = bmake_strdup(CurFile()->fname);
2162 slash = strrchr(incdir, '/');
2163 if (slash != NULL) {
2164 *slash = '\0';
2165 /*
2166 * Now do lexical processing of leading "../" on the
2167 * filename.
2168 */
2169 for (i = 0; strncmp(file + i, "../", 3) == 0; i += 3) {
2170 slash = strrchr(incdir + 1, '/');
2171 if (slash == NULL || strcmp(slash, "/..") == 0)
2172 break;
2173 *slash = '\0';
2174 }
2175 newName = str_concat3(incdir, "/", file + i);
2176 fullname = Dir_FindFile(newName, parseIncPath);
2177 if (fullname == NULL)
2178 fullname = Dir_FindFile(newName,
2179 &dirSearchPath);
2180 free(newName);
2181 }
2182 free(incdir);
2183
2184 if (fullname == NULL) {
2185 /*
2186 * Makefile wasn't found in same directory as included
2187 * makefile.
2188 *
2189 * Search for it first on the -I search path, then on
2190 * the .PATH search path, if not found in a -I
2191 * directory. If we have a suffix-specific path, we
2192 * should use that.
2193 */
2194 const char *suff;
2195 SearchPath *suffPath = NULL;
2196
2197 if ((suff = strrchr(file, '.')) != NULL) {
2198 suffPath = Suff_GetPath(suff);
2199 if (suffPath != NULL)
2200 fullname = Dir_FindFile(file, suffPath);
2201 }
2202 if (fullname == NULL) {
2203 fullname = Dir_FindFile(file, parseIncPath);
2204 if (fullname == NULL)
2205 fullname = Dir_FindFile(file,
2206 &dirSearchPath);
2207 }
2208 }
2209 }
2210
2211 /* Looking for a system file or file still not found */
2212 if (fullname == NULL) {
2213 /*
2214 * Look for it on the system path
2215 */
2216 SearchPath *path = Lst_IsEmpty(sysIncPath) ? defSysIncPath
2217 : sysIncPath;
2218 fullname = Dir_FindFile(file, path);
2219 }
2220
2221 if (fullname == NULL) {
2222 if (!silent)
2223 Parse_Error(PARSE_FATAL, "Could not find %s", file);
2224 return;
2225 }
2226
2227 /* Actually open the file... */
2228 fd = open(fullname, O_RDONLY);
2229 if (fd == -1) {
2230 if (!silent)
2231 Parse_Error(PARSE_FATAL, "Cannot open %s", fullname);
2232 free(fullname);
2233 return;
2234 }
2235
2236 /* load it */
2237 lf = loadfile(fullname, fd);
2238
2239 /* Start reading from this file next */
2240 Parse_SetInput(fullname, 0, -1, loadedfile_readMore, lf);
2241 CurFile()->lf = lf;
2242 if (depinc)
2243 doing_depend = depinc; /* only turn it on */
2244 }
2245
2246 static void
2247 ParseDoInclude(char *line /* XXX: bad name */)
2248 {
2249 char endc; /* the character which ends the file spec */
2250 char *cp; /* current position in file spec */
2251 Boolean silent = line[0] != 'i';
2252 char *file = line + (silent ? 8 : 7);
2253
2254 /* Skip to delimiter character so we know where to look */
2255 pp_skip_hspace(&file);
2256
2257 if (*file != '"' && *file != '<') {
2258 Parse_Error(PARSE_FATAL,
2259 ".include filename must be delimited by '\"' or '<'");
2260 return;
2261 }
2262
2263 /*
2264 * Set the search path on which to find the include file based on the
2265 * characters which bracket its name. Angle-brackets imply it's
2266 * a system Makefile while double-quotes imply it's a user makefile
2267 */
2268 if (*file == '<')
2269 endc = '>';
2270 else
2271 endc = '"';
2272
2273 /* Skip to matching delimiter */
2274 for (cp = ++file; *cp && *cp != endc; cp++)
2275 continue;
2276
2277 if (*cp != endc) {
2278 Parse_Error(PARSE_FATAL,
2279 "Unclosed .include filename. '%c' expected", endc);
2280 return;
2281 }
2282
2283 *cp = '\0';
2284
2285 /*
2286 * Substitute for any variables in the filename before trying to
2287 * find the file.
2288 */
2289 (void)Var_Subst(file, VAR_CMDLINE, VARE_WANTRES, &file);
2290 /* TODO: handle errors */
2291
2292 Parse_include_file(file, endc == '>', line[0] == 'd', silent);
2293 free(file);
2294 }
2295
2296 /* Split filename into dirname + basename, then assign these to the
2297 * given variables. */
2298 static void
2299 SetFilenameVars(const char *filename, const char *dirvar, const char *filevar)
2300 {
2301 const char *slash, *dirname, *basename;
2302 void *freeIt;
2303
2304 slash = strrchr(filename, '/');
2305 if (slash == NULL) {
2306 dirname = curdir;
2307 basename = filename;
2308 freeIt = NULL;
2309 } else {
2310 dirname = freeIt = bmake_strsedup(filename, slash);
2311 basename = slash + 1;
2312 }
2313
2314 Var_Set(dirvar, dirname, VAR_GLOBAL);
2315 Var_Set(filevar, basename, VAR_GLOBAL);
2316
2317 DEBUG5(PARSE, "%s: ${%s} = `%s' ${%s} = `%s'\n",
2318 __func__, dirvar, dirname, filevar, basename);
2319 free(freeIt);
2320 }
2321
2322 /*
2323 * Return the immediately including file.
2324 *
2325 * This is made complicated since the .for loop is implemented as a special
2326 * kind of .include; see For_Run.
2327 */
2328 static const char *
2329 GetActuallyIncludingFile(void)
2330 {
2331 size_t i;
2332 const IFile *incs = GetInclude(0);
2333
2334 for (i = includes.len; i >= 2; i--)
2335 if (!incs[i - 1].fromForLoop)
2336 return incs[i - 2].fname;
2337 return NULL;
2338 }
2339
2340 /* Set .PARSEDIR, .PARSEFILE, .INCLUDEDFROMDIR and .INCLUDEDFROMFILE. */
2341 static void
2342 ParseSetParseFile(const char *filename)
2343 {
2344 const char *including;
2345
2346 SetFilenameVars(filename, ".PARSEDIR", ".PARSEFILE");
2347
2348 including = GetActuallyIncludingFile();
2349 if (including != NULL) {
2350 SetFilenameVars(including,
2351 ".INCLUDEDFROMDIR", ".INCLUDEDFROMFILE");
2352 } else {
2353 Var_Delete(".INCLUDEDFROMDIR", VAR_GLOBAL);
2354 Var_Delete(".INCLUDEDFROMFILE", VAR_GLOBAL);
2355 }
2356 }
2357
2358 static Boolean
2359 StrContainsWord(const char *str, const char *word)
2360 {
2361 size_t strLen = strlen(str);
2362 size_t wordLen = strlen(word);
2363 const char *p, *end;
2364
2365 if (strLen < wordLen)
2366 return FALSE; /* str is too short to contain word */
2367
2368 end = str + strLen - wordLen;
2369 for (p = str; p != NULL; p = strchr(p, ' ')) {
2370 if (*p == ' ')
2371 p++;
2372 if (p > end)
2373 return FALSE; /* cannot contain word */
2374
2375 if (memcmp(p, word, wordLen) == 0 &&
2376 (p[wordLen] == '\0' || p[wordLen] == ' '))
2377 return TRUE;
2378 }
2379 return FALSE;
2380 }
2381
2382 /*
2383 * XXX: Searching through a set of words with this linear search is
2384 * inefficient for variables that contain thousands of words.
2385 *
2386 * XXX: The paths in this list don't seem to be normalized in any way.
2387 */
2388 static Boolean
2389 VarContainsWord(const char *varname, const char *word)
2390 {
2391 FStr val = Var_Value(varname, VAR_GLOBAL);
2392 Boolean found = val.str != NULL && StrContainsWord(val.str, word);
2393 FStr_Done(&val);
2394 return found;
2395 }
2396
2397 /* Track the makefiles we read - so makefiles can set dependencies on them.
2398 * Avoid adding anything more than once.
2399 *
2400 * Time complexity: O(n) per call, in total O(n^2), where n is the number
2401 * of makefiles that have been loaded. */
2402 static void
2403 ParseTrackInput(const char *name)
2404 {
2405 if (!VarContainsWord(MAKE_MAKEFILES, name))
2406 Var_Append(MAKE_MAKEFILES, name, VAR_GLOBAL);
2407 }
2408
2409
2410 /*
2411 * Start parsing from the given source.
2412 *
2413 * The given file is added to the includes stack.
2414 */
2415 void
2416 Parse_SetInput(const char *name, int lineno, int fd,
2417 ReadMoreProc readMore, void *readMoreArg)
2418 {
2419 IFile *curFile;
2420 char *buf;
2421 size_t len;
2422 Boolean fromForLoop = name == NULL;
2423
2424 if (fromForLoop)
2425 name = CurFile()->fname;
2426 else
2427 ParseTrackInput(name);
2428
2429 DEBUG3(PARSE, "Parse_SetInput: %s %s, line %d\n",
2430 readMore == loadedfile_readMore ? "file" : ".for loop in",
2431 name, lineno);
2432
2433 if (fd == -1 && readMore == NULL)
2434 /* sanity */
2435 return;
2436
2437 curFile = Vector_Push(&includes);
2438 curFile->fname = bmake_strdup(name);
2439 curFile->fromForLoop = fromForLoop;
2440 curFile->lineno = lineno;
2441 curFile->first_lineno = lineno;
2442 curFile->readMore = readMore;
2443 curFile->readMoreArg = readMoreArg;
2444 curFile->lf = NULL;
2445 curFile->depending = doing_depend; /* restore this on EOF */
2446
2447 assert(readMore != NULL);
2448
2449 /* Get first block of input data */
2450 buf = curFile->readMore(curFile->readMoreArg, &len);
2451 if (buf == NULL) {
2452 /* Was all a waste of time ... */
2453 if (curFile->fname)
2454 free(curFile->fname);
2455 free(curFile);
2456 return;
2457 }
2458 curFile->buf_freeIt = buf;
2459 curFile->buf_ptr = buf;
2460 curFile->buf_end = buf + len;
2461
2462 curFile->cond_depth = Cond_save_depth();
2463 ParseSetParseFile(name);
2464 }
2465
2466 /* Check if the directive is an include directive. */
2467 static Boolean
2468 IsInclude(const char *dir, Boolean sysv)
2469 {
2470 if (dir[0] == 's' || dir[0] == '-' || (dir[0] == 'd' && !sysv))
2471 dir++;
2472
2473 if (strncmp(dir, "include", 7) != 0)
2474 return FALSE;
2475
2476 /* Space is not mandatory for BSD .include */
2477 return !sysv || ch_isspace(dir[7]);
2478 }
2479
2480
2481 #ifdef SYSVINCLUDE
2482 /* Check if the line is a SYSV include directive. */
2483 static Boolean
2484 IsSysVInclude(const char *line)
2485 {
2486 const char *p;
2487
2488 if (!IsInclude(line, TRUE))
2489 return FALSE;
2490
2491 /* Avoid interpreting a dependency line as an include */
2492 for (p = line; (p = strchr(p, ':')) != NULL;) {
2493
2494 /* end of line -> it's a dependency */
2495 if (*++p == '\0')
2496 return FALSE;
2497
2498 /* '::' operator or ': ' -> it's a dependency */
2499 if (*p == ':' || ch_isspace(*p))
2500 return FALSE;
2501 }
2502 return TRUE;
2503 }
2504
2505 /* Push to another file. The line points to the word "include". */
2506 static void
2507 ParseTraditionalInclude(char *line)
2508 {
2509 char *cp; /* current position in file spec */
2510 Boolean done = FALSE;
2511 Boolean silent = line[0] != 'i';
2512 char *file = line + (silent ? 8 : 7);
2513 char *all_files;
2514
2515 DEBUG2(PARSE, "%s: %s\n", __func__, file);
2516
2517 pp_skip_whitespace(&file);
2518
2519 /*
2520 * Substitute for any variables in the file name before trying to
2521 * find the thing.
2522 */
2523 (void)Var_Subst(file, VAR_CMDLINE, VARE_WANTRES, &all_files);
2524 /* TODO: handle errors */
2525
2526 if (*file == '\0') {
2527 Parse_Error(PARSE_FATAL, "Filename missing from \"include\"");
2528 goto out;
2529 }
2530
2531 for (file = all_files; !done; file = cp + 1) {
2532 /* Skip to end of line or next whitespace */
2533 for (cp = file; *cp != '\0' && !ch_isspace(*cp); cp++)
2534 continue;
2535
2536 if (*cp != '\0')
2537 *cp = '\0';
2538 else
2539 done = TRUE;
2540
2541 Parse_include_file(file, FALSE, FALSE, silent);
2542 }
2543 out:
2544 free(all_files);
2545 }
2546 #endif
2547
2548 #ifdef GMAKEEXPORT
2549 /* Parse "export <variable>=<value>", and actually export it. */
2550 static void
2551 ParseGmakeExport(char *line)
2552 {
2553 char *variable = line + 6;
2554 char *value;
2555
2556 DEBUG2(PARSE, "%s: %s\n", __func__, variable);
2557
2558 pp_skip_whitespace(&variable);
2559
2560 for (value = variable; *value && *value != '='; value++)
2561 continue;
2562
2563 if (*value != '=') {
2564 Parse_Error(PARSE_FATAL,
2565 "Variable/Value missing from \"export\"");
2566 return;
2567 }
2568 *value++ = '\0'; /* terminate variable */
2569
2570 /*
2571 * Expand the value before putting it in the environment.
2572 */
2573 (void)Var_Subst(value, VAR_CMDLINE, VARE_WANTRES, &value);
2574 /* TODO: handle errors */
2575
2576 setenv(variable, value, 1);
2577 free(value);
2578 }
2579 #endif
2580
2581 /*
2582 * Called when EOF is reached in the current file. If we were reading an
2583 * include file or a .for loop, the includes stack is popped and things set
2584 * up to go back to reading the previous file at the previous location.
2585 *
2586 * Results:
2587 * TRUE to continue parsing, i.e. it had only reached the end of an
2588 * included file, FALSE if the main file has been parsed completely.
2589 */
2590 static Boolean
2591 ParseEOF(void)
2592 {
2593 char *ptr;
2594 size_t len;
2595 IFile *curFile = CurFile();
2596
2597 assert(curFile->readMore != NULL);
2598
2599 doing_depend = curFile->depending; /* restore this */
2600 /* get next input buffer, if any */
2601 ptr = curFile->readMore(curFile->readMoreArg, &len);
2602 curFile->buf_ptr = ptr;
2603 curFile->buf_freeIt = ptr;
2604 curFile->buf_end = ptr == NULL ? NULL : ptr + len;
2605 curFile->lineno = curFile->first_lineno;
2606 if (ptr != NULL)
2607 return TRUE; /* Iterate again */
2608
2609 /* Ensure the makefile (or loop) didn't have mismatched conditionals */
2610 Cond_restore_depth(curFile->cond_depth);
2611
2612 if (curFile->lf != NULL) {
2613 loadedfile_destroy(curFile->lf);
2614 curFile->lf = NULL;
2615 }
2616
2617 /* Dispose of curFile info */
2618 /* Leak curFile->fname because all the gnodes have pointers to it. */
2619 free(curFile->buf_freeIt);
2620 Vector_Pop(&includes);
2621
2622 if (includes.len == 0) {
2623 /* We've run out of input */
2624 Var_Delete(".PARSEDIR", VAR_GLOBAL);
2625 Var_Delete(".PARSEFILE", VAR_GLOBAL);
2626 Var_Delete(".INCLUDEDFROMDIR", VAR_GLOBAL);
2627 Var_Delete(".INCLUDEDFROMFILE", VAR_GLOBAL);
2628 return FALSE;
2629 }
2630
2631 curFile = CurFile();
2632 DEBUG2(PARSE, "ParseEOF: returning to file %s, line %d\n",
2633 curFile->fname, curFile->lineno);
2634
2635 ParseSetParseFile(curFile->fname);
2636 return TRUE;
2637 }
2638
2639 typedef enum ParseRawLineResult {
2640 PRLR_LINE,
2641 PRLR_EOF,
2642 PRLR_ERROR
2643 } ParseRawLineResult;
2644
2645 /*
2646 * Parse until the end of a line, taking into account lines that end with
2647 * backslash-newline.
2648 */
2649 static ParseRawLineResult
2650 ParseRawLine(IFile *curFile, char **out_line, char **out_line_end,
2651 char **out_firstBackslash, char **out_firstComment)
2652 {
2653 char *line = curFile->buf_ptr;
2654 char *p = line;
2655 char *line_end = line;
2656 char *firstBackslash = NULL;
2657 char *firstComment = NULL;
2658 ParseRawLineResult res = PRLR_LINE;
2659
2660 curFile->lineno++;
2661
2662 for (;;) {
2663 char ch;
2664
2665 if (p == curFile->buf_end) {
2666 res = PRLR_EOF;
2667 break;
2668 }
2669
2670 ch = *p;
2671 if (ch == '\0' ||
2672 (ch == '\\' && p + 1 < curFile->buf_end && p[1] == '\0')) {
2673 Parse_Error(PARSE_FATAL, "Zero byte read from file");
2674 return PRLR_ERROR;
2675 }
2676
2677 /* Treat next character after '\' as literal. */
2678 if (ch == '\\') {
2679 if (firstBackslash == NULL)
2680 firstBackslash = p;
2681 if (p[1] == '\n') {
2682 curFile->lineno++;
2683 if (p + 2 == curFile->buf_end) {
2684 line_end = p;
2685 *line_end = '\n';
2686 p += 2;
2687 continue;
2688 }
2689 }
2690 p += 2;
2691 line_end = p;
2692 assert(p <= curFile->buf_end);
2693 continue;
2694 }
2695
2696 /*
2697 * Remember the first '#' for comment stripping, unless
2698 * the previous char was '[', as in the modifier ':[#]'.
2699 */
2700 if (ch == '#' && firstComment == NULL &&
2701 !(p > line && p[-1] == '['))
2702 firstComment = line_end;
2703
2704 p++;
2705 if (ch == '\n')
2706 break;
2707
2708 /* We are not interested in trailing whitespace. */
2709 if (!ch_isspace(ch))
2710 line_end = p;
2711 }
2712
2713 *out_line = line;
2714 curFile->buf_ptr = p;
2715 *out_line_end = line_end;
2716 *out_firstBackslash = firstBackslash;
2717 *out_firstComment = firstComment;
2718 return res;
2719 }
2720
2721 /*
2722 * Beginning at start, unescape '\#' to '#' and replace backslash-newline
2723 * with a single space.
2724 */
2725 static void
2726 UnescapeBackslash(char *line, char *start)
2727 {
2728 char *src = start;
2729 char *dst = start;
2730 char *spaceStart = line;
2731
2732 for (;;) {
2733 char ch = *src++;
2734 if (ch != '\\') {
2735 if (ch == '\0')
2736 break;
2737 *dst++ = ch;
2738 continue;
2739 }
2740
2741 ch = *src++;
2742 if (ch == '\0') {
2743 /* Delete '\\' at end of buffer */
2744 dst--;
2745 break;
2746 }
2747
2748 /* Delete '\\' from before '#' on non-command lines */
2749 if (ch == '#' && line[0] != '\t') {
2750 *dst++ = ch;
2751 continue;
2752 }
2753
2754 if (ch != '\n') {
2755 /* Leave '\\' in buffer for later */
2756 *dst++ = '\\';
2757 /*
2758 * Make sure we don't delete an escaped ' ' from the
2759 * line end.
2760 */
2761 spaceStart = dst + 1;
2762 *dst++ = ch;
2763 continue;
2764 }
2765
2766 /*
2767 * Escaped '\n' -- replace following whitespace with a single
2768 * ' '.
2769 */
2770 pp_skip_hspace(&src);
2771 *dst++ = ' ';
2772 }
2773
2774 /* Delete any trailing spaces - eg from empty continuations */
2775 while (dst > spaceStart && ch_isspace(dst[-1]))
2776 dst--;
2777 *dst = '\0';
2778 }
2779
2780 typedef enum GetLineMode {
2781 /*
2782 * Return the next line that is neither empty nor a comment.
2783 * Backslash line continuations are folded into a single space.
2784 * A trailing comment, if any, is discarded.
2785 */
2786 GLM_NONEMPTY,
2787
2788 /*
2789 * Return the next line, even if it is empty or a comment.
2790 * Preserve backslash-newline to keep the line numbers correct.
2791 *
2792 * Used in .for loops to collect the body of the loop while waiting
2793 * for the corresponding .endfor.
2794 */
2795 GLM_FOR_BODY,
2796
2797 /*
2798 * Return the next line that starts with a dot.
2799 * Backslash line continuations are folded into a single space.
2800 * A trailing comment, if any, is discarded.
2801 *
2802 * Used in .if directives to skip over irrelevant branches while
2803 * waiting for the corresponding .endif.
2804 */
2805 GLM_DOT
2806 } GetLineMode;
2807
2808 /* Return the next "interesting" logical line from the current file. */
2809 static char *
2810 ParseGetLine(GetLineMode mode)
2811 {
2812 IFile *curFile = CurFile();
2813 char *line;
2814 char *line_end;
2815 char *firstBackslash;
2816 char *firstComment;
2817
2818 /* Loop through blank lines and comment lines */
2819 for (;;) {
2820 ParseRawLineResult res = ParseRawLine(curFile,
2821 &line, &line_end, &firstBackslash, &firstComment);
2822 if (res == PRLR_ERROR)
2823 return NULL;
2824
2825 if (line_end == line || firstComment == line) {
2826 if (res == PRLR_EOF)
2827 return NULL;
2828 if (mode != GLM_FOR_BODY)
2829 continue;
2830 }
2831
2832 /* We now have a line of data */
2833 assert(ch_isspace(*line_end));
2834 *line_end = '\0';
2835
2836 if (mode == GLM_FOR_BODY)
2837 return line; /* Don't join the physical lines. */
2838
2839 if (mode == GLM_DOT && line[0] != '.')
2840 continue;
2841 break;
2842 }
2843
2844 /* Brutally ignore anything after a non-escaped '#' in non-commands. */
2845 if (firstComment != NULL && line[0] != '\t')
2846 *firstComment = '\0';
2847
2848 /* If we didn't see a '\\' then the in-situ data is fine. */
2849 if (firstBackslash == NULL)
2850 return line;
2851
2852 /* Remove escapes from '\n' and '#' */
2853 UnescapeBackslash(line, firstBackslash);
2854
2855 return line;
2856 }
2857
2858 static Boolean
2859 ParseSkippedBranches(void)
2860 {
2861 char *line;
2862
2863 while ((line = ParseGetLine(GLM_DOT)) != NULL) {
2864 if (Cond_EvalLine(line) == COND_PARSE)
2865 break;
2866 /*
2867 * TODO: Check for typos in .elif directives
2868 * such as .elsif or .elseif.
2869 *
2870 * This check will probably duplicate some of
2871 * the code in ParseLine. Most of the code
2872 * there cannot apply, only ParseVarassign and
2873 * ParseDependency can, and to prevent code
2874 * duplication, these would need to be called
2875 * with a flag called onlyCheckSyntax.
2876 *
2877 * See directive-elif.mk for details.
2878 */
2879 }
2880
2881 return line != NULL;
2882 }
2883
2884 static Boolean
2885 ParseForLoop(const char *line)
2886 {
2887 int rval;
2888 int firstLineno;
2889
2890 rval = For_Eval(line);
2891 if (rval == 0)
2892 return FALSE; /* Not a .for line */
2893 if (rval < 0)
2894 return TRUE; /* Syntax error - error printed, ignore line */
2895
2896 firstLineno = CurFile()->lineno;
2897
2898 /* Accumulate loop lines until matching .endfor */
2899 do {
2900 line = ParseGetLine(GLM_FOR_BODY);
2901 if (line == NULL) {
2902 Parse_Error(PARSE_FATAL,
2903 "Unexpected end of file in for loop.");
2904 break;
2905 }
2906 } while (For_Accum(line));
2907
2908 For_Run(firstLineno); /* Stash each iteration as a new 'input file' */
2909
2910 return TRUE; /* Read next line from for-loop buffer */
2911 }
2912
2913 /*
2914 * Read an entire line from the input file.
2915 *
2916 * Empty lines, .if and .for are completely handled by this function,
2917 * leaving only variable assignments, other directives, dependency lines
2918 * and shell commands to the caller.
2919 *
2920 * Results:
2921 * A line without its newline and without any trailing whitespace,
2922 * or NULL.
2923 */
2924 static char *
2925 ParseReadLine(void)
2926 {
2927 char *line;
2928
2929 for (;;) {
2930 line = ParseGetLine(GLM_NONEMPTY);
2931 if (line == NULL)
2932 return NULL;
2933
2934 if (line[0] != '.')
2935 return line;
2936
2937 /*
2938 * The line might be a conditional. Ask the conditional module
2939 * about it and act accordingly
2940 */
2941 switch (Cond_EvalLine(line)) {
2942 case COND_SKIP:
2943 if (!ParseSkippedBranches())
2944 return NULL;
2945 continue;
2946 case COND_PARSE:
2947 continue;
2948 case COND_INVALID: /* Not a conditional line */
2949 if (ParseForLoop(line))
2950 continue;
2951 break;
2952 }
2953 return line;
2954 }
2955 }
2956
2957 static void
2958 FinishDependencyGroup(void)
2959 {
2960 GNodeListNode *ln;
2961
2962 if (targets == NULL)
2963 return;
2964
2965 for (ln = targets->first; ln != NULL; ln = ln->next) {
2966 GNode *gn = ln->datum;
2967
2968 Suff_EndTransform(gn);
2969
2970 /*
2971 * Mark the target as already having commands if it does, to
2972 * keep from having shell commands on multiple dependency
2973 * lines.
2974 */
2975 if (!Lst_IsEmpty(&gn->commands))
2976 gn->type |= OP_HAS_COMMANDS;
2977 }
2978
2979 Lst_Free(targets);
2980 targets = NULL;
2981 }
2982
2983 /* Add the command to each target from the current dependency spec. */
2984 static void
2985 ParseLine_ShellCommand(const char *p)
2986 {
2987 cpp_skip_whitespace(&p);
2988 if (*p == '\0')
2989 return; /* skip empty commands */
2990
2991 if (targets == NULL) {
2992 Parse_Error(PARSE_FATAL,
2993 "Unassociated shell command \"%s\"", p);
2994 return;
2995 }
2996
2997 {
2998 char *cmd = bmake_strdup(p);
2999 GNodeListNode *ln;
3000
3001 for (ln = targets->first; ln != NULL; ln = ln->next) {
3002 GNode *gn = ln->datum;
3003 ParseAddCmd(gn, cmd);
3004 }
3005 #ifdef CLEANUP
3006 Lst_Append(&targCmds, cmd);
3007 #endif
3008 }
3009 }
3010
3011 MAKE_INLINE Boolean
3012 IsDirective(const char *dir, size_t dirlen, const char *name)
3013 {
3014 return dirlen == strlen(name) && memcmp(dir, name, dirlen) == 0;
3015 }
3016
3017 /*
3018 * See if the line starts with one of the known directives, and if so, handle
3019 * the directive.
3020 */
3021 static Boolean
3022 ParseDirective(char *line)
3023 {
3024 char *cp = line + 1;
3025 const char *dir, *arg;
3026 size_t dirlen;
3027
3028 pp_skip_whitespace(&cp);
3029 if (IsInclude(cp, FALSE)) {
3030 ParseDoInclude(cp);
3031 return TRUE;
3032 }
3033
3034 dir = cp;
3035 while (ch_isalpha(*cp) || *cp == '-')
3036 cp++;
3037 dirlen = (size_t)(cp - dir);
3038
3039 if (*cp != '\0' && !ch_isspace(*cp))
3040 return FALSE;
3041
3042 pp_skip_whitespace(&cp);
3043 arg = cp;
3044
3045 if (IsDirective(dir, dirlen, "undef")) {
3046 Var_Undef(cp);
3047 return TRUE;
3048 } else if (IsDirective(dir, dirlen, "export")) {
3049 Var_Export(VEM_PLAIN, arg);
3050 return TRUE;
3051 } else if (IsDirective(dir, dirlen, "export-env")) {
3052 Var_Export(VEM_ENV, arg);
3053 return TRUE;
3054 } else if (IsDirective(dir, dirlen, "export-literal")) {
3055 Var_Export(VEM_LITERAL, arg);
3056 return TRUE;
3057 } else if (IsDirective(dir, dirlen, "unexport")) {
3058 Var_UnExport(FALSE, arg);
3059 return TRUE;
3060 } else if (IsDirective(dir, dirlen, "unexport-env")) {
3061 Var_UnExport(TRUE, arg);
3062 return TRUE;
3063 } else if (IsDirective(dir, dirlen, "info")) {
3064 ParseMessage(PARSE_INFO, "info", arg);
3065 return TRUE;
3066 } else if (IsDirective(dir, dirlen, "warning")) {
3067 ParseMessage(PARSE_WARNING, "warning", arg);
3068 return TRUE;
3069 } else if (IsDirective(dir, dirlen, "error")) {
3070 ParseMessage(PARSE_FATAL, "error", arg);
3071 return TRUE;
3072 }
3073 return FALSE;
3074 }
3075
3076 static Boolean
3077 ParseVarassign(const char *line)
3078 {
3079 VarAssign var;
3080
3081 if (!Parse_IsVar(line, &var))
3082 return FALSE;
3083
3084 FinishDependencyGroup();
3085 Parse_DoVar(&var, VAR_GLOBAL);
3086 return TRUE;
3087 }
3088
3089 static char *
3090 FindSemicolon(char *p)
3091 {
3092 int level = 0;
3093
3094 for (; *p != '\0'; p++) {
3095 if (*p == '\\' && p[1] != '\0') {
3096 p++;
3097 continue;
3098 }
3099
3100 if (*p == '$' && (p[1] == '(' || p[1] == '{'))
3101 level++;
3102 else if (level > 0 && (*p == ')' || *p == '}'))
3103 level--;
3104 else if (level == 0 && *p == ';')
3105 break;
3106 }
3107 return p;
3108 }
3109
3110 /* dependency -> target... op [source...]
3111 * op -> ':' | '::' | '!' */
3112 static void
3113 ParseDependency(char *line)
3114 {
3115 VarEvalFlags eflags;
3116 char *expanded_line;
3117 const char *shellcmd = NULL;
3118
3119 /*
3120 * For some reason - probably to make the parser impossible -
3121 * a ';' can be used to separate commands from dependencies.
3122 * Attempt to avoid ';' inside substitution patterns.
3123 */
3124 {
3125 char *semicolon = FindSemicolon(line);
3126 if (*semicolon != '\0') {
3127 /* Terminate the dependency list at the ';' */
3128 *semicolon = '\0';
3129 shellcmd = semicolon + 1;
3130 }
3131 }
3132
3133 /*
3134 * We now know it's a dependency line so it needs to have all
3135 * variables expanded before being parsed.
3136 *
3137 * XXX: Ideally the dependency line would first be split into
3138 * its left-hand side, dependency operator and right-hand side,
3139 * and then each side would be expanded on its own. This would
3140 * allow for the left-hand side to allow only defined variables
3141 * and to allow variables on the right-hand side to be undefined
3142 * as well.
3143 *
3144 * Parsing the line first would also prevent that targets
3145 * generated from variable expressions are interpreted as the
3146 * dependency operator, such as in "target${:U\:} middle: source",
3147 * in which the middle is interpreted as a source, not a target.
3148 */
3149
3150 /* In lint mode, allow undefined variables to appear in
3151 * dependency lines.
3152 *
3153 * Ideally, only the right-hand side would allow undefined
3154 * variables since it is common to have optional dependencies.
3155 * Having undefined variables on the left-hand side is more
3156 * unusual though. Since both sides are expanded in a single
3157 * pass, there is not much choice what to do here.
3158 *
3159 * In normal mode, it does not matter whether undefined
3160 * variables are allowed or not since as of 2020-09-14,
3161 * Var_Parse does not print any parse errors in such a case.
3162 * It simply returns the special empty string var_Error,
3163 * which cannot be detected in the result of Var_Subst. */
3164 eflags = opts.strict ? VARE_WANTRES : VARE_WANTRES | VARE_UNDEFERR;
3165 (void)Var_Subst(line, VAR_CMDLINE, eflags, &expanded_line);
3166 /* TODO: handle errors */
3167
3168 /* Need a fresh list for the target nodes */
3169 if (targets != NULL)
3170 Lst_Free(targets);
3171 targets = Lst_New();
3172
3173 ParseDoDependency(expanded_line);
3174 free(expanded_line);
3175
3176 if (shellcmd != NULL)
3177 ParseLine_ShellCommand(shellcmd);
3178 }
3179
3180 static void
3181 ParseLine(char *line)
3182 {
3183 /*
3184 * Lines that begin with '.' can be pretty much anything:
3185 * - directives like '.include' or '.if',
3186 * - suffix rules like '.c.o:',
3187 * - dependencies for filenames that start with '.',
3188 * - variable assignments like '.tmp=value'.
3189 */
3190 if (line[0] == '.' && ParseDirective(line))
3191 return;
3192
3193 if (line[0] == '\t') {
3194 ParseLine_ShellCommand(line + 1);
3195 return;
3196 }
3197
3198 #ifdef SYSVINCLUDE
3199 if (IsSysVInclude(line)) {
3200 /*
3201 * It's an S3/S5-style "include".
3202 */
3203 ParseTraditionalInclude(line);
3204 return;
3205 }
3206 #endif
3207
3208 #ifdef GMAKEEXPORT
3209 if (strncmp(line, "export", 6) == 0 && ch_isspace(line[6]) &&
3210 strchr(line, ':') == NULL) {
3211 /*
3212 * It's a Gmake "export".
3213 */
3214 ParseGmakeExport(line);
3215 return;
3216 }
3217 #endif
3218
3219 if (ParseVarassign(line))
3220 return;
3221
3222 FinishDependencyGroup();
3223
3224 ParseDependency(line);
3225 }
3226
3227 /*
3228 * Parse a top-level makefile, incorporating its content into the global
3229 * dependency graph.
3230 *
3231 * Input:
3232 * name The name of the file being read
3233 * fd The open file to parse; will be closed at the end
3234 */
3235 void
3236 Parse_File(const char *name, int fd)
3237 {
3238 char *line; /* the line we're working on */
3239 struct loadedfile *lf;
3240
3241 lf = loadfile(name, fd);
3242
3243 assert(targets == NULL);
3244
3245 if (name == NULL)
3246 name = "(stdin)";
3247
3248 Parse_SetInput(name, 0, -1, loadedfile_readMore, lf);
3249 CurFile()->lf = lf;
3250
3251 do {
3252 while ((line = ParseReadLine()) != NULL) {
3253 DEBUG2(PARSE, "ParseReadLine (%d): '%s'\n",
3254 CurFile()->lineno, line);
3255 ParseLine(line);
3256 }
3257 /* Reached EOF, but it may be just EOF of an include file. */
3258 } while (ParseEOF());
3259
3260 FinishDependencyGroup();
3261
3262 if (fatals != 0) {
3263 (void)fflush(stdout);
3264 (void)fprintf(stderr,
3265 "%s: Fatal errors encountered -- cannot continue",
3266 progname);
3267 PrintOnError(NULL, NULL);
3268 exit(1);
3269 }
3270 }
3271
3272 /* Initialize the parsing module. */
3273 void
3274 Parse_Init(void)
3275 {
3276 mainNode = NULL;
3277 parseIncPath = SearchPath_New();
3278 sysIncPath = SearchPath_New();
3279 defSysIncPath = SearchPath_New();
3280 Vector_Init(&includes, sizeof(IFile));
3281 }
3282
3283 /* Clean up the parsing module. */
3284 void
3285 Parse_End(void)
3286 {
3287 #ifdef CLEANUP
3288 Lst_DoneCall(&targCmds, free);
3289 assert(targets == NULL);
3290 SearchPath_Free(defSysIncPath);
3291 SearchPath_Free(sysIncPath);
3292 SearchPath_Free(parseIncPath);
3293 assert(includes.len == 0);
3294 Vector_Done(&includes);
3295 #endif
3296 }
3297
3298
3299 /*
3300 * Return a list containing the single main target to create.
3301 * If no such target exists, we Punt with an obnoxious error message.
3302 */
3303 void
3304 Parse_MainName(GNodeList *mainList)
3305 {
3306 if (mainNode == NULL)
3307 Punt("no target to make.");
3308
3309 if (mainNode->type & OP_DOUBLEDEP) {
3310 Lst_Append(mainList, mainNode);
3311 Lst_AppendAll(mainList, &mainNode->cohorts);
3312 } else
3313 Lst_Append(mainList, mainNode);
3314
3315 Var_Append(".TARGETS", mainNode->name, VAR_GLOBAL);
3316 }
3317
3318 int
3319 Parse_GetFatals(void)
3320 {
3321 return fatals;
3322 }
3323