VirtualBox

source: kBuild/trunk/src/kmk/read.c@ 2831

Last change on this file since 2831 was 2799, checked in by bird, 10 years ago

Fixed glob.h inclusion issue causing stack corruption. Fixed alignment issue in the string expansion compiler. More makefile eval 'compiler' work.

  • Property svn:eol-style set to native
File size: 114.3 KB
Line 
1/* Reading and parsing of makefiles for GNU Make.
2Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
31998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
42010 Free Software Foundation, Inc.
5This file is part of GNU Make.
6
7GNU Make is free software; you can redistribute it and/or modify it under the
8terms of the GNU General Public License as published by the Free Software
9Foundation; either version 3 of the License, or (at your option) any later
10version.
11
12GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License along with
17this program. If not, see <http://www.gnu.org/licenses/>. */
18
19#include "make.h"
20
21#include <assert.h>
22
23#include <glob.h>
24
25#include "dep.h"
26#include "filedef.h"
27#include "job.h"
28#include "commands.h"
29#include "variable.h"
30#include "rule.h"
31#include "debug.h"
32#include "hash.h"
33#ifdef KMK
34# include "kbuild.h"
35#endif
36
37#ifndef WINDOWS32
38#ifndef _AMIGA
39#ifndef VMS
40#include <pwd.h>
41#else
42struct passwd *getpwnam (char *name);
43#endif
44#endif
45#endif /* !WINDOWS32 */
46
47/* A 'struct ebuffer' controls the origin of the makefile we are currently
48 eval'ing.
49*/
50
51struct ebuffer
52 {
53 char *buffer; /* Start of the current line in the buffer. */
54 char *bufnext; /* Start of the next line in the buffer. */
55 char *bufstart; /* Start of the entire buffer. */
56#ifdef CONFIG_WITH_VALUE_LENGTH
57 char *eol; /* End of the current line in the buffer. */
58#endif
59 unsigned int size; /* Malloc'd size of buffer. */
60 FILE *fp; /* File, or NULL if this is an internal buffer. */
61 struct floc floc; /* Info on the file in fp (if any). */
62 };
63
64/* Track the modifiers we can have on variable assignments */
65
66struct vmodifiers
67 {
68 unsigned int assign_v:1;
69 unsigned int define_v:1;
70 unsigned int undefine_v:1;
71 unsigned int export_v:1;
72 unsigned int override_v:1;
73 unsigned int private_v:1;
74 };
75
76/* Types of "words" that can be read in a makefile. */
77enum make_word_type
78 {
79 w_bogus, w_eol, w_static, w_variable, w_colon, w_dcolon, w_semicolon,
80 w_varassign
81 };
82
83
84/* A `struct conditionals' contains the information describing
85 all the active conditionals in a makefile.
86
87 The global variable `conditionals' contains the conditionals
88 information for the current makefile. It is initialized from
89 the static structure `toplevel_conditionals' and is later changed
90 to new structures for included makefiles. */
91
92struct conditionals
93 {
94 unsigned int if_cmds; /* Depth of conditional nesting. */
95 unsigned int allocated; /* Elts allocated in following arrays. */
96 char *ignoring; /* Are we ignoring or interpreting?
97 0=interpreting, 1=not yet interpreted,
98 2=already interpreted */
99 char *seen_else; /* Have we already seen an `else'? */
100#ifdef KMK
101 char ignoring_first[8];
102 char seen_else_first[8];
103#endif
104 };
105
106#ifdef KMK
107static struct conditionals toplevel_conditionals =
108{
109 0,
110 sizeof (toplevel_conditionals.ignoring_first),
111 &toplevel_conditionals.ignoring_first[0],
112 &toplevel_conditionals.seen_else_first[0],
113 "", ""
114};
115#else /* !KMK */
116static struct conditionals toplevel_conditionals;
117#endif /* !KMK */
118static struct conditionals *conditionals = &toplevel_conditionals;
119
120
121/* Default directories to search for include files in */
122
123static const char *default_include_directories[] =
124 {
125#ifndef KMK
126#if defined(WINDOWS32) && !defined(INCLUDEDIR)
127/* This completely up to the user when they install MSVC or other packages.
128 This is defined as a placeholder. */
129# define INCLUDEDIR "."
130#endif
131# ifdef INCLUDEDIR /* bird */
132 INCLUDEDIR,
133# else /* bird */
134 ".", /* bird */
135# endif /* bird */
136#ifndef _AMIGA
137 "/usr/gnu/include",
138 "/usr/local/include",
139 "/usr/include",
140#endif
141#endif /* !KMK */
142 0
143 };
144
145/* List of directories to search for include files in */
146
147static const char **include_directories;
148
149/* Maximum length of an element of the above. */
150
151static unsigned int max_incl_len;
152
153/* The filename and pointer to line number of the
154 makefile currently being read in. */
155
156const struct floc *reading_file = 0;
157
158/* The chain of makefiles read by read_makefile. */
159
160static struct dep *read_makefiles = 0;
161
162static int eval_makefile (const char *filename, int flags);
163static void eval (struct ebuffer *buffer, int flags);
164
165static long readline (struct ebuffer *ebuf);
166static void do_undefine (char *name, enum variable_origin origin,
167 struct ebuffer *ebuf);
168static struct variable *do_define (char *name IF_WITH_VALUE_LENGTH_PARAM(char *eos),
169 enum variable_origin origin, struct ebuffer *ebuf);
170#ifndef CONFIG_WITH_VALUE_LENGTH
171static int conditional_line (char *line, int len, const struct floc *flocp);
172#else
173static int conditional_line (char *line, char *eol, int len, const struct floc *flocp);
174#endif
175static void record_files (struct nameseq *filenames, const char *pattern,
176 const char *pattern_percent, char *depstr,
177 unsigned int cmds_started, char *commands,
178 unsigned int commands_idx, int two_colon,
179 const struct floc *flocp);
180static void record_target_var (struct nameseq *filenames, char *defn,
181 enum variable_origin origin,
182 struct vmodifiers *vmod,
183 const struct floc *flocp);
184static enum make_word_type get_next_mword (char *buffer, char *delim,
185 char **startp, unsigned int *length);
186#ifndef CONFIG_WITH_VALUE_LENGTH
187static void remove_comments (char *line);
188static char *find_char_unquote (char *string, int stop1, int stop2,
189 int blank, int ignorevars);
190#else /* CONFIG_WITH_VALUE_LENGTH */
191__inline static char *remove_comments (char *line, char *eol);
192__inline static char *find_char_unquote_0 (char *string, int stop1, char **eosp);
193static char * find_char_unquote_2 (char *string, int stop1, int stop2,
194 int blank, int ignorevars,
195 unsigned int string_len);
196MY_INLINE char *
197find_char_unquote (char *string, int stop1, int stop2, int blank, int ignorevars)
198{
199 if (!stop2 && !blank && !ignorevars)
200 {
201 char *p = strchr (string, stop1);
202 if (!p)
203 return NULL;
204 if (p <= string || p[-1] != '\\')
205 return p;
206 /* fall back on find_char_unquote_2 */
207 }
208 return find_char_unquote_2 (string, stop1, stop2, blank, ignorevars, 0);
209}
210#endif /* CONFIG_WITH_VALUE_LENGTH */
211
212
213/* Compare a word, both length and contents.
214 P must point to the word to be tested, and WLEN must be the length.
215*/
216#define word1eq(s) (wlen == sizeof(s)-1 && strneq (s, p, sizeof(s)-1))
217
218
219
220/* Read in all the makefiles and return the chain of their names. */
221
222struct dep *
223read_all_makefiles (const char **makefiles)
224{
225 unsigned int num_makefiles = 0;
226
227 /* Create *_LIST variables, to hold the makefiles, targets, and variables
228 we will be reading. */
229
230 define_variable_cname ("MAKEFILE_LIST", "", o_file, 0);
231
232 DB (DB_BASIC, (_("Reading makefiles...\n")));
233
234 /* If there's a non-null variable MAKEFILES, its value is a list of
235 files to read first thing. But don't let it prevent reading the
236 default makefiles and don't let the default goal come from there. */
237
238 {
239 char *value;
240 char *name, *p;
241 unsigned int length;
242
243 {
244 /* Turn off --warn-undefined-variables while we expand MAKEFILES. */
245 int save = warn_undefined_variables_flag;
246 warn_undefined_variables_flag = 0;
247
248#ifndef CONFIG_WITH_VALUE_LENGTH
249 value = allocated_variable_expand ("$(MAKEFILES)");
250#else
251 value = allocated_variable_expand_2 (STRING_SIZE_TUPLE("$(MAKEFILES)"), NULL);
252#endif
253
254 warn_undefined_variables_flag = save;
255 }
256
257 /* Set NAME to the start of next token and LENGTH to its length.
258 MAKEFILES is updated for finding remaining tokens. */
259 p = value;
260
261 while ((name = find_next_token ((const char **)&p, &length)) != 0)
262 {
263 if (*p != '\0')
264 *p++ = '\0';
265 eval_makefile (name, RM_NO_DEFAULT_GOAL|RM_INCLUDED|RM_DONTCARE);
266 }
267
268 free (value);
269 }
270
271 /* Read makefiles specified with -f switches. */
272
273 if (makefiles != 0)
274 while (*makefiles != 0)
275 {
276 struct dep *tail = read_makefiles;
277 register struct dep *d;
278
279 if (! eval_makefile (*makefiles, 0))
280 perror_with_name ("", *makefiles);
281
282 /* Find the right element of read_makefiles. */
283 d = read_makefiles;
284 while (d->next != tail)
285 d = d->next;
286
287 /* Use the storage read_makefile allocates. */
288 *makefiles = dep_name (d);
289 ++num_makefiles;
290 ++makefiles;
291 }
292
293 /* If there were no -f switches, try the default names. */
294
295 if (num_makefiles == 0)
296 {
297 static char *default_makefiles[] =
298#ifdef VMS
299 /* all lower case since readdir() (the vms version) 'lowercasifies' */
300# ifdef KMK
301 { "makefile.kmk", "makefile.vms", "gnumakefile.", "makefile.", 0 };
302# else
303 { "makefile.vms", "gnumakefile.", "makefile.", 0 };
304# endif
305#else
306#ifdef _AMIGA
307 /* what's the deal here? no dots? */
308# ifdef KMK
309 { "Makefile.kmk", "makefile.kmk", "GNUmakefile", "Makefile", "SMakefile", 0 };
310# else
311 { "GNUmakefile", "Makefile", "SMakefile", 0 };
312# endif
313#else /* !Amiga && !VMS */
314# ifdef KMK
315 { "Makefile.kmk", "makefile.kmk", "GNUmakefile", "makefile", "Makefile", 0 };
316# else
317 { "GNUmakefile", "makefile", "Makefile", 0 };
318# endif
319#endif /* AMIGA */
320#endif /* VMS */
321 register char **p = default_makefiles;
322 while (*p != 0 && !file_exists_p (*p))
323 ++p;
324
325 if (*p != 0)
326 {
327 if (! eval_makefile (*p, 0))
328 perror_with_name ("", *p);
329 }
330 else
331 {
332 /* No default makefile was found. Add the default makefiles to the
333 `read_makefiles' chain so they will be updated if possible. */
334 struct dep *tail = read_makefiles;
335 /* Add them to the tail, after any MAKEFILES variable makefiles. */
336 while (tail != 0 && tail->next != 0)
337 tail = tail->next;
338 for (p = default_makefiles; *p != 0; ++p)
339 {
340 struct dep *d = alloc_dep ();
341 d->file = enter_file (strcache_add (*p));
342 d->dontcare = 1;
343 /* Tell update_goal_chain to bail out as soon as this file is
344 made, and main not to die if we can't make this file. */
345 d->changed = RM_DONTCARE;
346 if (tail == 0)
347 read_makefiles = d;
348 else
349 tail->next = d;
350 tail = d;
351 }
352 if (tail != 0)
353 tail->next = 0;
354 }
355 }
356
357 return read_makefiles;
358}
359
360
361/* Install a new conditional and return the previous one. */
362
363static struct conditionals *
364install_conditionals (struct conditionals *new)
365{
366 struct conditionals *save = conditionals;
367
368#ifndef KMK
369 memset (new, '\0', sizeof (*new));
370#else /* KMK */
371 new->if_cmds = 0;
372 new->allocated = sizeof (new->ignoring_first);
373 new->ignoring = new->ignoring_first;
374 new->seen_else = new->seen_else_first;
375#endif /* KMK */
376 conditionals = new;
377
378 return save;
379}
380
381/* Free the current conditionals and reinstate a saved one. */
382
383static void
384restore_conditionals (struct conditionals *saved)
385{
386 /* Free any space allocated by conditional_line. */
387#ifdef KMK
388 if (conditionals->allocated > sizeof (conditionals->ignoring_first))
389#endif
390 {
391 if (conditionals->ignoring)
392 free (conditionals->ignoring);
393 if (conditionals->seen_else)
394 free (conditionals->seen_else);
395 }
396
397 /* Restore state. */
398 conditionals = saved;
399}
400
401
402static int
403eval_makefile (const char *filename, int flags)
404{
405 struct dep *deps;
406 struct ebuffer ebuf;
407 const struct floc *curfile;
408 char *expanded = 0;
409 int makefile_errno;
410
411 filename = strcache_add (filename);
412 ebuf.floc.filenm = filename;
413 ebuf.floc.lineno = 1;
414
415 if (ISDB (DB_VERBOSE))
416 {
417 printf (_("Reading makefile `%s'"), filename);
418 if (flags & RM_NO_DEFAULT_GOAL)
419 printf (_(" (no default goal)"));
420 if (flags & RM_INCLUDED)
421 printf (_(" (search path)"));
422 if (flags & RM_DONTCARE)
423 printf (_(" (don't care)"));
424 if (flags & RM_NO_TILDE)
425 printf (_(" (no ~ expansion)"));
426 puts ("...");
427 }
428
429 /* First, get a stream to read. */
430
431 /* Expand ~ in FILENAME unless it came from `include',
432 in which case it was already done. */
433 if (!(flags & RM_NO_TILDE) && filename[0] == '~')
434 {
435 expanded = tilde_expand (filename);
436 if (expanded != 0)
437 filename = expanded;
438 }
439
440 ebuf.fp = fopen (filename, "r");
441 /* Save the error code so we print the right message later. */
442 makefile_errno = errno;
443
444 /* If the makefile wasn't found and it's either a makefile from
445 the `MAKEFILES' variable or an included makefile,
446 search the included makefile search path for this makefile. */
447 if (ebuf.fp == 0 && (flags & RM_INCLUDED) && *filename != '/')
448 {
449 unsigned int i;
450 for (i = 0; include_directories[i] != 0; ++i)
451 {
452 const char *included = concat (3, include_directories[i],
453 "/", filename);
454 ebuf.fp = fopen (included, "r");
455 if (ebuf.fp)
456 {
457 filename = strcache_add (included);
458 break;
459 }
460 }
461 }
462
463 /* Add FILENAME to the chain of read makefiles. */
464 deps = alloc_dep ();
465 deps->next = read_makefiles;
466 read_makefiles = deps;
467#ifndef CONFIG_WITH_STRCACHE2
468 deps->file = lookup_file (filename);
469#else
470 deps->file = lookup_file_cached (filename);
471#endif
472 if (deps->file == 0)
473 deps->file = enter_file (filename);
474 filename = deps->file->name;
475 deps->changed = flags;
476 if (flags & RM_DONTCARE)
477 deps->dontcare = 1;
478
479 if (expanded)
480 free (expanded);
481
482 /* If the makefile can't be found at all, give up entirely. */
483
484 if (ebuf.fp == 0)
485 {
486 /* If we did some searching, errno has the error from the last
487 attempt, rather from FILENAME itself. Restore it in case the
488 caller wants to use it in a message. */
489 errno = makefile_errno;
490 return 0;
491 }
492
493 /* Set close-on-exec to avoid leaking the makefile to children, such as
494 $(shell ...). */
495#ifdef HAVE_FILENO
496 CLOSE_ON_EXEC (fileno (ebuf.fp));
497#endif
498
499 /* Add this makefile to the list. */
500 do_variable_definition (&ebuf.floc, "MAKEFILE_LIST", filename, o_file,
501 f_append, 0);
502
503#ifdef CONFIG_WITH_COMPILER
504 /* Execute compiled version if repeatedly evaluating this file.
505 ASSUMES file content is unmodified since compilation. */
506 deps->file->eval_count++;
507 if ( deps->file->evalprog
508# ifdef CONFIG_WITH_COMPILE_EVERYTHING
509 || ( deps->file->eval_count == 1
510# else
511 || ( deps->file->eval_count == 3
512# endif
513 && (deps->file->evalprog = kmk_cc_compile_file_for_eval (ebuf.fp, filename)) != NULL) )
514 {
515 curfile = reading_file;
516 reading_file = &ebuf.floc;
517
518 kmk_exec_eval_file (deps->file->evalprog);
519
520 reading_file = curfile;
521 fclose (ebuf.fp);
522 alloca (0);
523 return 1;
524 }
525#elif defined (CONFIG_WITH_MAKE_STATS)
526 deps->file->eval_count++;
527#endif
528
529#ifdef KMK
530 /* Buffer the entire file or at least 256KB (footer.kmk) of it. */
531 {
532 void *stream_buf = NULL;
533 struct stat st;
534 if (!fstat (fileno (ebuf.fp), &st))
535 {
536 int stream_buf_size = 256*1024;
537 if (st.st_size < stream_buf_size)
538 {
539 if (st.st_size)
540 stream_buf_size = (st.st_size + 0xfff) & ~0xfff;
541 else
542 stream_buf_size = 0x1000;
543 }
544 stream_buf = xmalloc (stream_buf_size);
545 setvbuf (ebuf.fp, stream_buf, _IOFBF, stream_buf_size);
546 }
547#endif
548
549 /* Evaluate the makefile */
550
551 ebuf.size = 200;
552 ebuf.buffer = ebuf.bufnext = ebuf.bufstart = xmalloc (ebuf.size);
553#ifdef CONFIG_WITH_VALUE_LENGTH
554 ebuf.eol = NULL;
555#endif
556
557 curfile = reading_file;
558 reading_file = &ebuf.floc;
559
560 eval (&ebuf, !(flags & RM_NO_DEFAULT_GOAL));
561
562 reading_file = curfile;
563
564 fclose (ebuf.fp);
565
566#ifdef KMK
567 if (stream_buf)
568 free (stream_buf);
569 }
570#endif
571 free (ebuf.bufstart);
572 alloca (0);
573
574 return 1;
575}
576
577void
578#ifndef CONFIG_WITH_VALUE_LENGTH
579eval_buffer (char *buffer)
580#else
581eval_buffer (char *buffer, char *eos)
582#endif
583{
584 struct ebuffer ebuf;
585 struct conditionals *saved;
586 struct conditionals new;
587 const struct floc *curfile;
588
589 /* Evaluate the buffer */
590
591#ifndef CONFIG_WITH_VALUE_LENGTH
592 ebuf.size = strlen (buffer);
593#else
594 ebuf.size = eos - buffer;
595 ebuf.eol = eos;
596 assert(strchr(buffer, '\0') == eos);
597#endif
598 ebuf.buffer = ebuf.bufnext = ebuf.bufstart = buffer;
599 ebuf.fp = NULL;
600
601 if (reading_file)
602 ebuf.floc = *reading_file;
603 else
604 ebuf.floc.filenm = NULL;
605
606 curfile = reading_file;
607 reading_file = &ebuf.floc;
608
609 saved = install_conditionals (&new);
610
611 eval (&ebuf, 1);
612
613 restore_conditionals (saved);
614
615 reading_file = curfile;
616
617 alloca (0);
618}
619
620
621/* Check LINE to see if it's a variable assignment or undefine.
622
623 It might use one of the modifiers "export", "override", "private", or it
624 might be one of the conditional tokens like "ifdef", "include", etc.
625
626 If it's not a variable assignment or undefine, VMOD.V_ASSIGN is 0.
627 Returns LINE.
628
629 Returns a pointer to the first non-modifier character, and sets VMOD
630 based on the modifiers found if any, plus V_ASSIGN is 1.
631 */
632static char *
633parse_var_assignment (const char *line, struct vmodifiers *vmod)
634{
635 const char *p;
636 memset (vmod, '\0', sizeof (*vmod));
637
638 /* Find the start of the next token. If there isn't one we're done. */
639 line = next_token (line);
640 if (*line == '\0')
641 return (char *)line;
642
643 p = line;
644 while (1)
645 {
646 int wlen;
647 const char *p2;
648 enum variable_flavor flavor;
649
650 p2 = parse_variable_definition (p, &flavor);
651
652 /* If this is a variable assignment, we're done. */
653 if (p2)
654 break;
655
656 /* It's not a variable; see if it's a modifier. */
657 p2 = end_of_token (p);
658 wlen = p2 - p;
659
660 if (word1eq ("export"))
661 vmod->export_v = 1;
662 else if (word1eq ("override"))
663 vmod->override_v = 1;
664 else if (word1eq ("private"))
665 vmod->private_v = 1;
666 else if (word1eq ("define"))
667 {
668 /* We can't have modifiers after 'define' */
669 vmod->define_v = 1;
670 p = next_token (p2);
671 break;
672 }
673 else if (word1eq ("undefine"))
674 {
675 /* We can't have modifiers after 'undefine' */
676 vmod->undefine_v = 1;
677 p = next_token (p2);
678 break;
679 }
680 else
681 /* Not a variable or modifier: this is not a variable assignment. */
682 return (char *)line;
683
684 /* It was a modifier. Try the next word. */
685 p = next_token (p2);
686 if (*p == '\0')
687 return (char *)line;
688 }
689
690 /* Found a variable assignment or undefine. */
691 vmod->assign_v = 1;
692 return (char *)p;
693}
694
695
696
697/* Read file FILENAME as a makefile and add its contents to the data base.
698
699 SET_DEFAULT is true if we are allowed to set the default goal. */
700
701static void
702eval (struct ebuffer *ebuf, int set_default)
703{
704 char *collapsed = 0;
705 unsigned int collapsed_length = 0;
706 unsigned int commands_len = 200;
707 char *commands;
708 unsigned int commands_idx = 0;
709 unsigned int cmds_started, tgts_started;
710 int ignoring = 0, in_ignored_define = 0;
711 int no_targets = 0; /* Set when reading a rule without targets. */
712 struct nameseq *filenames = 0;
713 char *depstr = 0;
714 long nlines = 0;
715 int two_colon = 0;
716 const char *pattern = 0;
717 const char *pattern_percent;
718 struct floc *fstart;
719 struct floc fi;
720#ifdef CONFIG_WITH_VALUE_LENGTH
721 unsigned int tmp_len;
722#endif
723#ifdef KMK
724 struct kbuild_eval_data *kdata = 0;
725 int krc;
726#endif
727
728#define record_waiting_files() \
729 do \
730 { \
731 if (filenames != 0) \
732 { \
733 fi.lineno = tgts_started; \
734 record_files (filenames, pattern, pattern_percent, depstr, \
735 cmds_started, commands, commands_idx, two_colon, \
736 &fi); \
737 filenames = 0; \
738 } \
739 commands_idx = 0; \
740 no_targets = 0; \
741 pattern = 0; \
742 } while (0)
743
744 pattern_percent = 0;
745 cmds_started = tgts_started = 1;
746
747 fstart = &ebuf->floc;
748 fi.filenm = ebuf->floc.filenm;
749
750 /* Loop over lines in the file.
751 The strategy is to accumulate target names in FILENAMES, dependencies
752 in DEPS and commands in COMMANDS. These are used to define a rule
753 when the start of the next rule (or eof) is encountered.
754
755 When you see a "continue" in the loop below, that means we are moving on
756 to the next line _without_ ending any rule that we happen to be working
757 with at the moment. If you see a "goto rule_complete", then the
758 statement we just parsed also finishes the previous rule. */
759
760 commands = xmalloc (200);
761
762 while (1)
763 {
764 unsigned int linelen;
765#ifdef CONFIG_WITH_VALUE_LENGTH
766 char *eol;
767#endif
768 char *line;
769 unsigned int wlen;
770 char *p;
771 char *p2;
772 struct vmodifiers vmod;
773
774 /* At the top of this loop, we are starting a brand new line. */
775 /* Grab the next line to be evaluated */
776 ebuf->floc.lineno += nlines;
777 nlines = readline (ebuf);
778
779 /* If there is nothing left to eval, we're done. */
780 if (nlines < 0)
781 break;
782
783 /* If this line is empty, skip it. */
784 line = ebuf->buffer;
785 if (line[0] == '\0')
786 continue;
787
788#ifndef CONFIG_WITH_VALUE_LENGTH
789 linelen = strlen (line);
790#else
791 linelen = ebuf->eol - line;
792 assert (strlen (line) == linelen);
793#endif
794
795 /* Check for a shell command line first.
796 If it is not one, we can stop treating tab specially. */
797 if (line[0] == cmd_prefix)
798 {
799 if (no_targets)
800 /* Ignore the commands in a rule with no targets. */
801 continue;
802
803 /* If there is no preceding rule line, don't treat this line
804 as a command, even though it begins with a recipe prefix.
805 SunOS 4 make appears to behave this way. */
806
807 if (filenames != 0)
808 {
809 if (ignoring)
810 /* Yep, this is a shell command, and we don't care. */
811 continue;
812
813 /* Append this command line to the line being accumulated.
814 Strip command prefix chars that appear after newlines. */
815 if (commands_idx == 0)
816 cmds_started = ebuf->floc.lineno;
817
818 if (linelen + commands_idx > commands_len)
819 {
820 commands_len = (linelen + commands_idx) * 2;
821 commands = xrealloc (commands, commands_len);
822 }
823 p = &commands[commands_idx];
824 p2 = line + 1;
825 while (--linelen)
826 {
827 ++commands_idx;
828 *(p++) = *p2;
829 if (p2[0] == '\n' && p2[1] == cmd_prefix)
830 {
831 ++p2;
832 --linelen;
833 }
834 ++p2;
835 }
836 *p = '\n';
837 ++commands_idx;
838
839 continue;
840 }
841 }
842
843 /* This line is not a shell command line. Don't worry about whitespace.
844 Get more space if we need it; we don't need to preserve the current
845 contents of the buffer. */
846
847 if (collapsed_length < linelen+1)
848 {
849 collapsed_length = linelen+1;
850 if (collapsed)
851 free (collapsed);
852 /* Don't need xrealloc: we don't need to preserve the content. */
853 collapsed = xmalloc (collapsed_length);
854 }
855#ifndef CONFIG_WITH_VALUE_LENGTH
856 strcpy (collapsed, line);
857 /* Collapse continuation lines. */
858 collapse_continuations (collapsed);
859 remove_comments (collapsed);
860#else
861 memcpy (collapsed, line, linelen + 1);
862 /* Collapse continuation lines. */
863 eol = collapse_continuations (collapsed, linelen);
864 assert (strchr (collapsed, '\0') == eol);
865 eol = remove_comments (collapsed, eol);
866 assert (strchr (collapsed, '\0') == eol);
867#endif
868
869 /* Get rid if starting space (including formfeed, vtab, etc.) */
870 p = collapsed;
871 while (isspace ((unsigned char)*p))
872 ++p;
873
874 /* See if this is a variable assignment. We need to do this early, to
875 allow variables with names like 'ifdef', 'export', 'private', etc. */
876 p = parse_var_assignment(p, &vmod);
877 if (vmod.assign_v)
878 {
879 struct variable *v;
880 enum variable_origin origin = vmod.override_v ? o_override : o_file;
881
882 /* If we're ignoring then we're done now. */
883 if (ignoring)
884 {
885 if (vmod.define_v)
886 in_ignored_define = 1;
887 continue;
888 }
889
890 if (vmod.undefine_v)
891 {
892 do_undefine (p, origin, ebuf);
893
894 /* This line has been dealt with. */
895 goto rule_complete;
896 }
897 else if (vmod.define_v)
898 v = do_define (p IF_WITH_VALUE_LENGTH_PARAM(NULL), origin, ebuf);
899 else
900 v = try_variable_definition (fstart, p IF_WITH_VALUE_LENGTH_PARAM(NULL), origin, 0);
901
902 assert (v != NULL);
903
904 if (vmod.export_v)
905 v->export = v_export;
906 if (vmod.private_v)
907 v->private_var = 1;
908
909 /* This line has been dealt with. */
910 goto rule_complete;
911 }
912
913 /* If this line is completely empty, ignore it. */
914 if (*p == '\0')
915 continue;
916
917 p2 = end_of_token (p);
918 wlen = p2 - p;
919 p2 = next_token (p2);
920
921 /* If we're in an ignored define, skip this line (but maybe get out). */
922 if (in_ignored_define)
923 {
924 /* See if this is an endef line (plus optional comment). */
925 if (word1eq ("endef") && (*p2 == '\0' || *p2 == '#'))
926 in_ignored_define = 0;
927
928 continue;
929 }
930
931 /* Check for conditional state changes. */
932 {
933#ifndef CONFIG_WITH_VALUE_LENGTH
934 int i = conditional_line (p, wlen, fstart);
935#else
936 int i = conditional_line (p, eol, wlen, fstart);
937#endif
938 if (i != -2)
939 {
940 if (i == -1)
941 fatal (fstart, _("invalid syntax in conditional"));
942
943 ignoring = i;
944 continue;
945 }
946 }
947
948 /* Nothing to see here... move along. */
949 if (ignoring)
950 continue;
951
952#ifdef CONFIG_WITH_LOCAL_VARIABLES
953 if (word1eq ("local"))
954 {
955 if (*p2 == '\0')
956 error (fstart, _("empty `local' directive"));
957
958 if (strneq (p2, "define", 6)
959 && (isblank ((unsigned char)p2[6]) || p2[6] == '\0'))
960 {
961 if (ignoring)
962 in_ignored_define = 1;
963 else
964 {
965 p2 = next_token (p2 + 6);
966 if (*p2 == '\0')
967 fatal (fstart, _("empty variable name"));
968
969 /* Let the variable name be the whole rest of the line,
970 with trailing blanks stripped (comments have already been
971 removed), so it could be a complex variable/function
972 reference that might contain blanks. */
973 p = strchr (p2, '\0');
974 while (isblank ((unsigned char)p[-1]))
975 --p;
976 do_define (p2 IF_WITH_VALUE_LENGTH_PARAM(p), o_local, ebuf);
977 }
978 }
979 else if (!ignoring
980 && !try_variable_definition (fstart, p2 IF_WITH_VALUE_LENGTH_PARAM(eol), o_local, 0))
981 error (fstart, _("invalid `local' directive"));
982
983 continue;
984 }
985#endif /* CONFIG_WITH_LOCAL_VARIABLES */
986
987#ifdef KMK
988 /* Check for the kBuild language extensions. */
989 if ( wlen > sizeof("kBuild-")
990 && strneq (p, "kBuild-", sizeof("kBuild-") - 1))
991 {
992 krc = eval_kbuild_read_hook (&kdata, fstart, p, wlen, p2, eol, ignoring);
993 if (krc != 42)
994 {
995 if (krc != 0)
996 error (fstart, _("krc=%d"), krc);
997 continue;
998 }
999 }
1000#endif /* KMK */
1001
1002 /* Manage the "export" keyword used outside of variable assignment
1003 as well as "unexport". */
1004 if (word1eq ("export") || word1eq ("unexport"))
1005 {
1006 int exporting = *p == 'u' ? 0 : 1;
1007
1008 /* (un)export by itself causes everything to be (un)exported. */
1009 if (*p2 == '\0')
1010 export_all_variables = exporting;
1011 else
1012 {
1013 unsigned int l;
1014 const char *cp;
1015 char *ap;
1016
1017 /* Expand the line so we can use indirect and constructed
1018 variable names in an (un)export command. */
1019#ifndef CONFIG_WITH_VALUE_LENGTH
1020 cp = ap = allocated_variable_expand (p2);
1021#else
1022 unsigned int buf_len;
1023 cp = ap = allocated_variable_expand_3 (p2, eol - p2, NULL, &buf_len);
1024#endif
1025
1026 for (p = find_next_token (&cp, &l); p != 0;
1027 p = find_next_token (&cp, &l))
1028 {
1029 struct variable *v = lookup_variable (p, l);
1030 if (v == 0)
1031 v = define_variable_loc (p, l, "", o_file, 0, fstart);
1032 v->export = exporting ? v_export : v_noexport;
1033 }
1034
1035#ifndef CONFIG_WITH_VALUE_LENGTH
1036 free (ap);
1037#else
1038 recycle_variable_buffer (ap, buf_len);
1039#endif
1040 }
1041 goto rule_complete;
1042 }
1043
1044 /* Handle the special syntax for vpath. */
1045 if (word1eq ("vpath"))
1046 {
1047 const char *cp;
1048 char *vpat;
1049 unsigned int l;
1050 cp = variable_expand (p2);
1051 p = find_next_token (&cp, &l);
1052 if (p != 0)
1053 {
1054 vpat = xstrndup (p, l);
1055 p = find_next_token (&cp, &l);
1056 /* No searchpath means remove all previous
1057 selective VPATH's with the same pattern. */
1058 }
1059 else
1060 /* No pattern means remove all previous selective VPATH's. */
1061 vpat = 0;
1062 construct_vpath_list (vpat, p);
1063 if (vpat != 0)
1064 free (vpat);
1065
1066 goto rule_complete;
1067 }
1068
1069#ifdef CONFIG_WITH_INCLUDEDEP
1070 assert (strchr (p2, '\0') == eol);
1071 if (word1eq ("includedep") || word1eq ("includedep-queue") || word1eq ("includedep-flush"))
1072 {
1073 /* We have found an `includedep' line specifying one or more dep files
1074 to be read at this point. This include variation does no
1075 globbing and do not support multiple names. It's trying to save
1076 time by being dead simple as well as ignoring errors. */
1077 enum incdep_op op = p[wlen - 1] == 'p'
1078 ? incdep_read_it
1079 : p[wlen - 1] == 'e'
1080 ? incdep_queue : incdep_flush;
1081 char *free_me = NULL;
1082 unsigned int buf_len;
1083 char *name = p2;
1084
1085 if (memchr (name, '$', eol - name))
1086 {
1087 unsigned int name_len;
1088 free_me = name = allocated_variable_expand_3 (name, eol - name, &name_len, &buf_len);
1089 eol = name + name_len;
1090 while (isspace ((unsigned char)*name))
1091 ++name;
1092 }
1093
1094 while (eol > name && isspace ((unsigned char)eol[-1]))
1095 --eol;
1096
1097 *eol = '\0';
1098 eval_include_dep (name, fstart, op);
1099
1100 if (free_me)
1101 recycle_variable_buffer (free_me, buf_len);
1102 goto rule_complete;
1103 }
1104#endif /* CONFIG_WITH_INCLUDEDEP */
1105
1106 /* Handle include and variants. */
1107 if (word1eq ("include") || word1eq ("-include") || word1eq ("sinclude"))
1108 {
1109 /* We have found an `include' line specifying a nested
1110 makefile to be read at this point. */
1111 struct conditionals *save;
1112 struct conditionals new_conditionals;
1113 struct nameseq *files;
1114 /* "-include" (vs "include") says no error if the file does not
1115 exist. "sinclude" is an alias for this from SGI. */
1116 int noerror = (p[0] != 'i');
1117
1118#ifndef CONFIG_WITH_VALUE_LENGTH
1119 p = allocated_variable_expand (p2);
1120#else
1121 unsigned int buf_len;
1122 p = allocated_variable_expand_3 (p2, eol - p2, NULL, &buf_len);
1123#endif
1124
1125 /* If no filenames, it's a no-op. */
1126 if (*p == '\0')
1127 {
1128#ifndef CONFIG_WITH_VALUE_LENGTH
1129 free (p);
1130#else
1131 recycle_variable_buffer (p, buf_len);
1132#endif
1133 continue;
1134 }
1135
1136 /* Parse the list of file names. Don't expand archive references! */
1137 p2 = p;
1138 files = PARSE_FILE_SEQ (&p2, struct nameseq, '\0', NULL,
1139 PARSEFS_NOAR);
1140#ifndef CONFIG_WITH_VALUE_LENGTH
1141 free (p);
1142#else
1143 recycle_variable_buffer (p, buf_len);
1144#endif
1145
1146 /* Save the state of conditionals and start
1147 the included makefile with a clean slate. */
1148 save = install_conditionals (&new_conditionals);
1149
1150 /* Record the rules that are waiting so they will determine
1151 the default goal before those in the included makefile. */
1152 record_waiting_files ();
1153
1154 /* Read each included makefile. */
1155 while (files != 0)
1156 {
1157 struct nameseq *next = files->next;
1158 const char *name = files->name;
1159 int r;
1160
1161 free_ns (files);
1162 files = next;
1163
1164 r = eval_makefile (name,
1165 (RM_INCLUDED | RM_NO_TILDE
1166 | (noerror ? RM_DONTCARE : 0)
1167 | (set_default ? 0 : RM_NO_DEFAULT_GOAL)));
1168 if (!r && !noerror)
1169 error (fstart, "%s: %s", name, strerror (errno));
1170 }
1171
1172 /* Restore conditional state. */
1173 restore_conditionals (save);
1174
1175 goto rule_complete;
1176 }
1177
1178 /* This line starts with a tab but was not caught above because there
1179 was no preceding target, and the line might have been usable as a
1180 variable definition. But now we know it is definitely lossage. */
1181 if (line[0] == cmd_prefix)
1182 fatal(fstart, _("recipe commences before first target"));
1183
1184 /* This line describes some target files. This is complicated by
1185 the existence of target-specific variables, because we can't
1186 expand the entire line until we know if we have one or not. So
1187 we expand the line word by word until we find the first `:',
1188 then check to see if it's a target-specific variable.
1189
1190 In this algorithm, `lb_next' will point to the beginning of the
1191 unexpanded parts of the input buffer, while `p2' points to the
1192 parts of the expanded buffer we haven't searched yet. */
1193
1194 {
1195 enum make_word_type wtype;
1196 char *cmdleft, *semip, *lb_next;
1197 unsigned int plen = 0;
1198 char *colonp;
1199 const char *end, *beg; /* Helpers for whitespace stripping. */
1200
1201 /* Record the previous rule. */
1202
1203 record_waiting_files ();
1204 tgts_started = fstart->lineno;
1205
1206 /* Search the line for an unquoted ; that is not after an
1207 unquoted #. */
1208#ifndef CONFIG_WITH_VALUE_LENGTH
1209 cmdleft = find_char_unquote (line, ';', '#', 0, 1);
1210#else
1211 cmdleft = find_char_unquote_2 (line, ';', '#', 0, 1, ebuf->eol - line);
1212#endif
1213 if (cmdleft != 0 && *cmdleft == '#')
1214 {
1215 /* We found a comment before a semicolon. */
1216 *cmdleft = '\0';
1217 cmdleft = 0;
1218 }
1219 else if (cmdleft != 0)
1220 /* Found one. Cut the line short there before expanding it. */
1221 *(cmdleft++) = '\0';
1222 semip = cmdleft;
1223
1224#ifndef CONFIG_WITH_VALUE_LENGTH
1225 collapse_continuations (line);
1226#else
1227 collapse_continuations (line, strlen (line)); /**@todo fix this */
1228#endif
1229
1230 /* We can't expand the entire line, since if it's a per-target
1231 variable we don't want to expand it. So, walk from the
1232 beginning, expanding as we go, and looking for "interesting"
1233 chars. The first word is always expandable. */
1234 wtype = get_next_mword(line, NULL, &lb_next, &wlen);
1235 switch (wtype)
1236 {
1237 case w_eol:
1238 if (cmdleft != 0)
1239 fatal(fstart, _("missing rule before recipe"));
1240 /* This line contained something but turned out to be nothing
1241 but whitespace (a comment?). */
1242 continue;
1243
1244 case w_colon:
1245 case w_dcolon:
1246 /* We accept and ignore rules without targets for
1247 compatibility with SunOS 4 make. */
1248 no_targets = 1;
1249 continue;
1250
1251 default:
1252 break;
1253 }
1254
1255
1256#ifndef CONFIG_WITH_VALUE_LENGTH
1257 p2 = variable_expand_string(NULL, lb_next, wlen);
1258#else
1259 p2 = variable_expand_string_2 (NULL, lb_next, wlen, &eol);
1260 assert (strchr (p2, '\0') == eol);
1261#endif
1262
1263 while (1)
1264 {
1265 lb_next += wlen;
1266 if (cmdleft == 0)
1267 {
1268 /* Look for a semicolon in the expanded line. */
1269#ifndef CONFIG_WITH_VALUE_LENGTH
1270 cmdleft = find_char_unquote (p2, ';', 0, 0, 0);
1271#else
1272 cmdleft = find_char_unquote_0 (p2, ';', &eol);
1273#endif
1274
1275 if (cmdleft != 0)
1276 {
1277 unsigned long p2_off = p2 - variable_buffer;
1278 unsigned long cmd_off = cmdleft - variable_buffer;
1279#ifndef CONFIG_WITH_VALUE_LENGTH
1280 char *pend = p2 + strlen(p2);
1281#endif
1282
1283 /* Append any remnants of lb, then cut the line short
1284 at the semicolon. */
1285 *cmdleft = '\0';
1286
1287 /* One school of thought says that you shouldn't expand
1288 here, but merely copy, since now you're beyond a ";"
1289 and into a command script. However, the old parser
1290 expanded the whole line, so we continue that for
1291 backwards-compatiblity. Also, it wouldn't be
1292 entirely consistent, since we do an unconditional
1293 expand below once we know we don't have a
1294 target-specific variable. */
1295#ifndef CONFIG_WITH_VALUE_LENGTH
1296 (void)variable_expand_string(pend, lb_next, (long)-1);
1297 lb_next += strlen(lb_next);
1298#else
1299 tmp_len = strlen (lb_next);
1300 variable_expand_string_2 (eol, lb_next, tmp_len, &eol);
1301 lb_next += tmp_len;
1302#endif
1303 p2 = variable_buffer + p2_off;
1304 cmdleft = variable_buffer + cmd_off + 1;
1305 }
1306 }
1307
1308#ifndef CONFIG_WITH_VALUE_LENGTH
1309 colonp = find_char_unquote(p2, ':', 0, 0, 0);
1310#else
1311 colonp = find_char_unquote_0 (p2, ':', &eol);
1312#endif
1313#ifdef HAVE_DOS_PATHS
1314 /* The drive spec brain-damage strikes again... */
1315 /* Note that the only separators of targets in this context
1316 are whitespace and a left paren. If others are possible,
1317 they should be added to the string in the call to index. */
1318 while (colonp && (colonp[1] == '/' || colonp[1] == '\\') &&
1319 colonp > p2 && isalpha ((unsigned char)colonp[-1]) &&
1320 (colonp == p2 + 1 || strchr (" \t(", colonp[-2]) != 0))
1321# ifndef CONFIG_WITH_VALUE_LENGTH
1322 colonp = find_char_unquote(colonp + 1, ':', 0, 0, 0);
1323# else
1324 colonp = find_char_unquote_0 (colonp + 1, ':', &eol);
1325# endif
1326#endif
1327 if (colonp != 0)
1328 break;
1329
1330 wtype = get_next_mword(lb_next, NULL, &lb_next, &wlen);
1331 if (wtype == w_eol)
1332 break;
1333
1334#ifndef CONFIG_WITH_VALUE_LENGTH
1335 p2 += strlen(p2);
1336 *(p2++) = ' ';
1337 p2 = variable_expand_string(p2, lb_next, wlen);
1338#else
1339 *(eol++) = ' ';
1340 p2 = variable_expand_string_2 (eol, lb_next, wlen, &eol);
1341#endif
1342 /* We don't need to worry about cmdleft here, because if it was
1343 found in the variable_buffer the entire buffer has already
1344 been expanded... we'll never get here. */
1345 }
1346
1347 p2 = next_token (variable_buffer);
1348
1349 /* If the word we're looking at is EOL, see if there's _anything_
1350 on the line. If not, a variable expanded to nothing, so ignore
1351 it. If so, we can't parse this line so punt. */
1352 if (wtype == w_eol)
1353 {
1354 if (*p2 != '\0')
1355 /* There's no need to be ivory-tower about this: check for
1356 one of the most common bugs found in makefiles... */
1357 fatal (fstart, _("missing separator%s"),
1358 (cmd_prefix == '\t' && !strneq(line, " ", 8))
1359 ? "" : _(" (did you mean TAB instead of 8 spaces?)"));
1360 continue;
1361 }
1362
1363 /* Make the colon the end-of-string so we know where to stop
1364 looking for targets. */
1365 *colonp = '\0';
1366 filenames = PARSE_FILE_SEQ (&p2, struct nameseq, '\0', NULL, 0);
1367 *p2 = ':';
1368
1369 if (!filenames)
1370 {
1371 /* We accept and ignore rules without targets for
1372 compatibility with SunOS 4 make. */
1373 no_targets = 1;
1374 continue;
1375 }
1376 /* This should never be possible; we handled it above. */
1377 assert (*p2 != '\0');
1378 ++p2;
1379
1380 /* Is this a one-colon or two-colon entry? */
1381 two_colon = *p2 == ':';
1382 if (two_colon)
1383 p2++;
1384
1385 /* Test to see if it's a target-specific variable. Copy the rest
1386 of the buffer over, possibly temporarily (we'll expand it later
1387 if it's not a target-specific variable). PLEN saves the length
1388 of the unparsed section of p2, for later. */
1389 if (*lb_next != '\0')
1390 {
1391 unsigned int l = p2 - variable_buffer;
1392 plen = strlen (p2);
1393 variable_buffer_output (p2+plen, lb_next, strlen (lb_next)+1);
1394 p2 = variable_buffer + l;
1395 }
1396
1397 p2 = parse_var_assignment (p2, &vmod);
1398 if (vmod.assign_v)
1399 {
1400 /* If there was a semicolon found, add it back, plus anything
1401 after it. */
1402 if (semip)
1403 {
1404 unsigned int l = p - variable_buffer;
1405 *(--semip) = ';';
1406#ifndef CONFIG_WITH_VALUE_LENGTH
1407 collapse_continuations (semip);
1408#else
1409 collapse_continuations (semip, strlen(semip)); /** @todo fix this */
1410#endif
1411 variable_buffer_output (p2 + strlen (p2),
1412 semip, strlen (semip)+1);
1413 p = variable_buffer + l;
1414 }
1415 record_target_var (filenames, p2,
1416 vmod.override_v ? o_override : o_file,
1417 &vmod, fstart);
1418 filenames = 0;
1419 continue;
1420 }
1421
1422 /* This is a normal target, _not_ a target-specific variable.
1423 Unquote any = in the dependency list. */
1424 find_char_unquote (lb_next, '=', 0, 0, 0);
1425
1426 /* We have some targets, so don't ignore the following commands. */
1427 no_targets = 0;
1428
1429 /* Expand the dependencies, etc. */
1430 if (*lb_next != '\0')
1431 {
1432 unsigned int l = p2 - variable_buffer;
1433#ifndef CONFIG_WITH_VALUE_LENGTH
1434 (void) variable_expand_string (p2 + plen, lb_next, (long)-1);
1435#else
1436 char *eos;
1437 (void) variable_expand_string_2 (p2 + plen, lb_next, (long)-1, &eos);
1438#endif
1439 p2 = variable_buffer + l;
1440
1441 /* Look for a semicolon in the expanded line. */
1442 if (cmdleft == 0)
1443 {
1444#ifndef CONFIG_WITH_VALUE_LENGTH
1445 cmdleft = find_char_unquote (p2, ';', 0, 0, 0);
1446#else
1447 cmdleft = find_char_unquote_0 (p2, ';', &eos);
1448#endif
1449 if (cmdleft != 0)
1450 *(cmdleft++) = '\0';
1451 }
1452 }
1453
1454 /* Is this a static pattern rule: `target: %targ: %dep; ...'? */
1455 p = strchr (p2, ':');
1456 while (p != 0 && p[-1] == '\\')
1457 {
1458 char *q = &p[-1];
1459 int backslash = 0;
1460 while (*q-- == '\\')
1461 backslash = !backslash;
1462 if (backslash)
1463 p = strchr (p + 1, ':');
1464 else
1465 break;
1466 }
1467#ifdef _AMIGA
1468 /* Here, the situation is quite complicated. Let's have a look
1469 at a couple of targets:
1470
1471 install: dev:make
1472
1473 dev:make: make
1474
1475 dev:make:: xyz
1476
1477 The rule is that it's only a target, if there are TWO :'s
1478 OR a space around the :.
1479 */
1480 if (p && !(isspace ((unsigned char)p[1]) || !p[1]
1481 || isspace ((unsigned char)p[-1])))
1482 p = 0;
1483#endif
1484#ifdef HAVE_DOS_PATHS
1485 {
1486 int check_again;
1487 do {
1488 check_again = 0;
1489 /* For DOS-style paths, skip a "C:\..." or a "C:/..." */
1490 if (p != 0 && (p[1] == '\\' || p[1] == '/') &&
1491 isalpha ((unsigned char)p[-1]) &&
1492 (p == p2 + 1 || strchr (" \t:(", p[-2]) != 0)) {
1493 p = strchr (p + 1, ':');
1494 check_again = 1;
1495 }
1496 } while (check_again);
1497 }
1498#endif
1499 if (p != 0)
1500 {
1501 struct nameseq *target;
1502 target = PARSE_FILE_SEQ (&p2, struct nameseq, ':', NULL,
1503 PARSEFS_NOGLOB);
1504 ++p2;
1505 if (target == 0)
1506 fatal (fstart, _("missing target pattern"));
1507 else if (target->next != 0)
1508 fatal (fstart, _("multiple target patterns (target `%s')"), target->name); /* bird */
1509 pattern_percent = find_percent_cached (&target->name);
1510 pattern = target->name;
1511 if (pattern_percent == 0)
1512 fatal (fstart, _("target pattern contains no `%%' (target `%s')"), target->name); /* bird */
1513 free_ns (target);
1514 }
1515 else
1516 pattern = 0;
1517
1518 /* Strip leading and trailing whitespaces. */
1519 beg = p2;
1520 end = beg + strlen (beg) - 1;
1521 strip_whitespace (&beg, &end);
1522
1523 /* Put all the prerequisites here; they'll be parsed later. */
1524 if (beg <= end && *beg != '\0')
1525 depstr = xstrndup (beg, end - beg + 1);
1526 else
1527 depstr = 0;
1528
1529 commands_idx = 0;
1530 if (cmdleft != 0)
1531 {
1532 /* Semicolon means rest of line is a command. */
1533 unsigned int l = strlen (cmdleft);
1534
1535 cmds_started = fstart->lineno;
1536
1537 /* Add this command line to the buffer. */
1538 if (l + 2 > commands_len)
1539 {
1540 commands_len = (l + 2) * 2;
1541 commands = xrealloc (commands, commands_len);
1542 }
1543 memcpy (commands, cmdleft, l);
1544 commands_idx += l;
1545 commands[commands_idx++] = '\n';
1546 }
1547
1548 /* Determine if this target should be made default. We used to do
1549 this in record_files() but because of the delayed target recording
1550 and because preprocessor directives are legal in target's commands
1551 it is too late. Consider this fragment for example:
1552
1553 foo:
1554
1555 ifeq ($(.DEFAULT_GOAL),foo)
1556 ...
1557 endif
1558
1559 Because the target is not recorded until after ifeq directive is
1560 evaluated the .DEFAULT_GOAL does not contain foo yet as one
1561 would expect. Because of this we have to move the logic here. */
1562
1563 if (set_default && default_goal_var->value[0] == '\0')
1564 {
1565 const char *name;
1566 struct dep *d;
1567 struct nameseq *t = filenames;
1568
1569 for (; t != 0; t = t->next)
1570 {
1571 int reject = 0;
1572 name = t->name;
1573
1574 /* We have nothing to do if this is an implicit rule. */
1575 if (strchr (name, '%') != 0)
1576 break;
1577
1578 /* See if this target's name does not start with a `.',
1579 unless it contains a slash. */
1580 if (*name == '.' && strchr (name, '/') == 0
1581#ifdef HAVE_DOS_PATHS
1582 && strchr (name, '\\') == 0
1583#endif
1584 )
1585 continue;
1586
1587
1588 /* If this file is a suffix, don't let it be
1589 the default goal file. */
1590 for (d = suffix_file->deps; d != 0; d = d->next)
1591 {
1592 register struct dep *d2;
1593 if (*dep_name (d) != '.' && streq (name, dep_name (d)))
1594 {
1595 reject = 1;
1596 break;
1597 }
1598 for (d2 = suffix_file->deps; d2 != 0; d2 = d2->next)
1599 {
1600#ifndef CONFIG_WITH_STRCACHE2
1601 unsigned int l = strlen (dep_name (d2));
1602#else
1603 unsigned int l = strcache2_get_len (&file_strcache, dep_name (d2));
1604#endif
1605 if (!strneq (name, dep_name (d2), l))
1606 continue;
1607 if (streq (name + l, dep_name (d)))
1608 {
1609 reject = 1;
1610 break;
1611 }
1612 }
1613
1614 if (reject)
1615 break;
1616 }
1617
1618 if (!reject)
1619 {
1620 define_variable_global (".DEFAULT_GOAL", 13, t->name,
1621 o_file, 0, NILF);
1622 break;
1623 }
1624 }
1625 }
1626
1627 continue;
1628 }
1629
1630 /* We get here except in the case that we just read a rule line.
1631 Record now the last rule we read, so following spurious
1632 commands are properly diagnosed. */
1633 rule_complete:
1634 record_waiting_files ();
1635 }
1636
1637#undef word1eq
1638
1639 if (conditionals->if_cmds)
1640 fatal (fstart, _("missing `endif'"));
1641#ifdef KMK
1642
1643 if (kdata != NULL)
1644 fatal (fstart, _("missing `kBuild-endef-*'"));
1645#endif
1646
1647 /* At eof, record the last rule. */
1648 record_waiting_files ();
1649
1650 if (collapsed)
1651 free (collapsed);
1652 free (commands);
1653}
1654
1655
1656
1657/* Remove comments from LINE.
1658 This is done by copying the text at LINE onto itself. */
1659
1660#ifndef CONFIG_WITH_VALUE_LENGTH
1661static void
1662remove_comments (char *line)
1663{
1664 char *comment;
1665
1666 comment = find_char_unquote (line, '#', 0, 0, 0);
1667
1668 if (comment != 0)
1669 /* Cut off the line at the #. */
1670 *comment = '\0';
1671}
1672#else /* CONFIG_WITH_VALUE_LENGTH */
1673__inline static char *
1674remove_comments (char *line, char *eol)
1675{
1676 unsigned int string_len = eol - line;
1677 register int ch;
1678 char *p;
1679
1680 /* Hope for simple (no comments). */
1681 p = memchr (line, '#', string_len);
1682 if (!p)
1683 return eol;
1684
1685 /* Found potential comment, enter the slow route. */
1686 for (;;)
1687 {
1688 if (p > line && p[-1] == '\\')
1689 {
1690 /* Search for more backslashes. */
1691 int i = -2;
1692 while (&p[i] >= line && p[i] == '\\')
1693 --i;
1694 ++i;
1695
1696 /* The number of backslashes is now -I.
1697 Copy P over itself to swallow half of them. */
1698 memmove (&p[i], &p[i/2], (string_len - (p - line)) - (i/2) + 1);
1699 p += i/2;
1700 if (i % 2 == 0)
1701 {
1702 /* All the backslashes quoted each other; the STOPCHAR was
1703 unquoted. */
1704 *p = '\0';
1705 return p;
1706 }
1707
1708 /* The '#' was quoted by a backslash. Look for another. */
1709 }
1710 else
1711 {
1712 /* No backslash in sight. */
1713 *p = '\0';
1714 return p;
1715 }
1716
1717 /* lazy, string_len isn't correct so do it the slow way. */
1718 while ((ch = *p) != '#')
1719 {
1720 if (ch == '\0')
1721 return p;
1722 ++p;
1723 }
1724 }
1725 /* won't ever get here. */
1726}
1727#endif /* CONFIG_WITH_VALUE_LENGTH */
1728
1729/* Execute a `undefine' directive.
1730 The undefine line has already been read, and NAME is the name of
1731 the variable to be undefined. */
1732
1733static void
1734do_undefine (char *name, enum variable_origin origin, struct ebuffer *ebuf)
1735{
1736 char *p, *var;
1737
1738 /* Expand the variable name and find the beginning (NAME) and end. */
1739 var = allocated_variable_expand (name);
1740 name = next_token (var);
1741 if (*name == '\0')
1742 fatal (&ebuf->floc, _("empty variable name"));
1743 p = name + strlen (name) - 1;
1744 while (p > name && isblank ((unsigned char)*p))
1745 --p;
1746 p[1] = '\0';
1747
1748 undefine_variable_global (name, p - name + 1, origin);
1749 free (var);
1750}
1751
1752/* Execute a `define' directive.
1753 The first line has already been read, and NAME is the name of
1754 the variable to be defined. The following lines remain to be read. */
1755
1756static struct variable *
1757do_define (char *name IF_WITH_VALUE_LENGTH_PARAM(char *eos),
1758 enum variable_origin origin, struct ebuffer *ebuf)
1759{
1760 struct variable *v;
1761 enum variable_flavor flavor;
1762 struct floc defstart;
1763 int nlevels = 1;
1764 unsigned int length = 100;
1765 char *definition = xmalloc (length);
1766 unsigned int idx = 0;
1767 char *p, *var;
1768
1769 defstart = ebuf->floc;
1770
1771 p = parse_variable_definition (name, &flavor);
1772 if (p == NULL)
1773 /* No assignment token, so assume recursive. */
1774 flavor = f_recursive;
1775 else
1776 {
1777 if (*(next_token (p)) != '\0')
1778 error (&defstart, _("extraneous text after `define' directive"));
1779
1780 /* Chop the string before the assignment token to get the name. */
1781 p[flavor == f_recursive ? -1 : -2] = '\0';
1782 }
1783
1784 /* Expand the variable name and find the beginning (NAME) and end. */
1785 var = allocated_variable_expand (name);
1786 name = next_token (var);
1787 if (*name == '\0')
1788 fatal (&defstart, _("empty variable name"));
1789 p = name + strlen (name) - 1;
1790 while (p > name && isblank ((unsigned char)*p))
1791 --p;
1792 p[1] = '\0';
1793
1794 /* Now read the value of the variable. */
1795 while (1)
1796 {
1797 unsigned int len;
1798 char *line;
1799 long nlines = readline (ebuf);
1800
1801 /* If there is nothing left to be eval'd, there's no 'endef'!! */
1802 if (nlines < 0)
1803 fatal (&defstart, _("missing `endef', unterminated `define'"));
1804
1805 ebuf->floc.lineno += nlines;
1806 line = ebuf->buffer;
1807
1808#ifndef CONFIG_WITH_VALUE_LENGTH
1809 collapse_continuations (line);
1810#else
1811 ebuf->eol = collapse_continuations (line, ebuf->eol - line);
1812#endif
1813
1814 /* If the line doesn't begin with a tab, test to see if it introduces
1815 another define, or ends one. Stop if we find an 'endef' */
1816 if (line[0] != cmd_prefix)
1817 {
1818 p = next_token (line);
1819#ifndef CONFIG_WITH_VALUE_LENGTH
1820 len = strlen (p);
1821#else
1822 len = ebuf->eol - p;
1823 assert (len == strlen (p));
1824#endif
1825
1826 /* If this is another 'define', increment the level count. */
1827 if ((len == 6 || (len > 6 && isblank ((unsigned char)p[6])))
1828 && strneq (p, "define", 6))
1829 ++nlevels;
1830
1831 /* If this is an 'endef', decrement the count. If it's now 0,
1832 we've found the last one. */
1833 else if ((len == 5 || (len > 5 && isblank ((unsigned char)p[5])))
1834 && strneq (p, "endef", 5))
1835 {
1836 p += 5;
1837#ifndef CONFIG_WITH_VALUE_LENGTH
1838 remove_comments (p);
1839#else
1840 ebuf->eol = remove_comments (p, ebuf->eol);
1841#endif
1842 if (*(next_token (p)) != '\0')
1843 error (&ebuf->floc,
1844 _("extraneous text after `endef' directive"));
1845
1846 if (--nlevels == 0)
1847 break;
1848 }
1849 }
1850
1851 /* Add this line to the variable definition. */
1852#ifndef CONFIG_WITH_VALUE_LENGTH
1853 len = strlen (line);
1854#else
1855 len = ebuf->eol - line;
1856 assert (len == strlen (line));
1857#endif
1858 if (idx + len + 1 > length)
1859 {
1860 length = (idx + len) * 2;
1861 definition = xrealloc (definition, length + 1);
1862 }
1863
1864 memcpy (&definition[idx], line, len);
1865 idx += len;
1866 /* Separate lines with a newline. */
1867 definition[idx++] = '\n';
1868 }
1869
1870 /* We've got what we need; define the variable. */
1871 if (idx == 0)
1872 definition[0] = '\0';
1873 else
1874 definition[idx - 1] = '\0';
1875
1876#ifndef CONFIG_WITH_VALUE_LENGTH
1877 v = do_variable_definition (&defstart, name, definition, origin, flavor, 0);
1878#else
1879 v = do_variable_definition_2 (&defstart, name, definition,
1880 idx ? idx - 1 : idx, flavor == f_simple,
1881 0 /* free_value */, origin, flavor,
1882 0 /*target_var*/);
1883#endif
1884 free (definition);
1885 free (var);
1886 return (v);
1887}
1888
1889
1890/* Interpret conditional commands "ifdef", "ifndef", "ifeq",
1891 "ifneq", "if1of", "ifn1of", "else" and "endif".
1892 LINE is the input line, with the command as its first word.
1893
1894 FILENAME and LINENO are the filename and line number in the
1895 current makefile. They are used for error messages.
1896
1897 Value is -2 if the line is not a conditional at all,
1898 -1 if the line is an invalid conditional,
1899 0 if following text should be interpreted,
1900 1 if following text should be ignored. */
1901
1902static int
1903#ifndef CONFIG_WITH_VALUE_LENGTH
1904conditional_line (char *line, int len, const struct floc *flocp)
1905#else
1906conditional_line (char *line, char *eol, int len, const struct floc *flocp)
1907#endif
1908{
1909 char *cmdname;
1910 enum { c_ifdef, c_ifndef, c_ifeq, c_ifneq,
1911#ifdef CONFIG_WITH_SET_CONDITIONALS
1912 c_if1of, c_ifn1of,
1913#endif
1914#ifdef CONFIG_WITH_IF_CONDITIONALS
1915 c_ifcond,
1916#endif
1917 c_else, c_endif
1918 } cmdtype;
1919 unsigned int i;
1920 unsigned int o;
1921#ifdef CONFIG_WITH_VALUE_LENGTH
1922 assert (strchr (line, '\0') == eol);
1923#endif
1924
1925 /* Compare a word, both length and contents. */
1926#define word1eq(s) (len == sizeof(s)-1 && strneq (s, line, sizeof(s)-1))
1927#define chkword(s, t) if (word1eq (s)) { cmdtype = (t); cmdname = (s); }
1928
1929 /* Make sure this line is a conditional. */
1930 chkword ("ifdef", c_ifdef)
1931 else chkword ("ifndef", c_ifndef)
1932 else chkword ("ifeq", c_ifeq)
1933 else chkword ("ifneq", c_ifneq)
1934#ifdef CONFIG_WITH_SET_CONDITIONALS
1935 else chkword ("if1of", c_if1of)
1936 else chkword ("ifn1of", c_ifn1of)
1937#endif
1938#ifdef CONFIG_WITH_IF_CONDITIONALS
1939 else chkword ("if", c_ifcond)
1940#endif
1941 else chkword ("else", c_else)
1942 else chkword ("endif", c_endif)
1943 else
1944 return -2;
1945
1946 /* Found one: skip past it and any whitespace after it. */
1947 line = next_token (line + len);
1948
1949#define EXTRANEOUS() error (flocp, _("Extraneous text after `%s' directive"), cmdname)
1950
1951 /* An 'endif' cannot contain extra text, and reduces the if-depth by 1 */
1952 if (cmdtype == c_endif)
1953 {
1954 if (*line != '\0')
1955 EXTRANEOUS ();
1956
1957 if (!conditionals->if_cmds)
1958 fatal (flocp, _("extraneous `%s'"), cmdname);
1959
1960 --conditionals->if_cmds;
1961
1962 goto DONE;
1963 }
1964
1965 /* An 'else' statement can either be simple, or it can have another
1966 conditional after it. */
1967 if (cmdtype == c_else)
1968 {
1969 const char *p;
1970
1971 if (!conditionals->if_cmds)
1972 fatal (flocp, _("extraneous `%s'"), cmdname);
1973
1974 o = conditionals->if_cmds - 1;
1975
1976 if (conditionals->seen_else[o])
1977 fatal (flocp, _("only one `else' per conditional"));
1978
1979 /* Change the state of ignorance. */
1980 switch (conditionals->ignoring[o])
1981 {
1982 case 0:
1983 /* We've just been interpreting. Never do it again. */
1984 conditionals->ignoring[o] = 2;
1985 break;
1986 case 1:
1987 /* We've never interpreted yet. Maybe this time! */
1988 conditionals->ignoring[o] = 0;
1989 break;
1990 }
1991
1992 /* It's a simple 'else'. */
1993 if (*line == '\0')
1994 {
1995 conditionals->seen_else[o] = 1;
1996 goto DONE;
1997 }
1998
1999 /* The 'else' has extra text. That text must be another conditional
2000 and cannot be an 'else' or 'endif'. */
2001
2002 /* Find the length of the next word. */
2003 for (p = line+1; *p != '\0' && !isspace ((unsigned char)*p); ++p)
2004 ;
2005 len = p - line;
2006
2007 /* If it's 'else' or 'endif' or an illegal conditional, fail. */
2008 if (word1eq("else") || word1eq("endif")
2009#ifndef CONFIG_WITH_VALUE_LENGTH
2010 || conditional_line (line, len, flocp) < 0)
2011#else
2012 || conditional_line (line, eol, len, flocp) < 0)
2013#endif
2014 EXTRANEOUS ();
2015 else
2016 {
2017 /* conditional_line() created a new level of conditional.
2018 Raise it back to this level. */
2019 if (conditionals->ignoring[o] < 2)
2020 conditionals->ignoring[o] = conditionals->ignoring[o+1];
2021 --conditionals->if_cmds;
2022 }
2023
2024 goto DONE;
2025 }
2026
2027#ifndef KMK
2028 if (conditionals->allocated == 0)
2029 {
2030 conditionals->allocated = 5;
2031 conditionals->ignoring = xmalloc (conditionals->allocated);
2032 conditionals->seen_else = xmalloc (conditionals->allocated);
2033 }
2034#endif
2035
2036 o = conditionals->if_cmds++;
2037 if (conditionals->if_cmds > conditionals->allocated)
2038 {
2039#ifdef KMK
2040 if (conditionals->allocated <= sizeof (conditionals->ignoring_first))
2041 {
2042 assert (conditionals->allocated == sizeof (conditionals->ignoring_first));
2043 conditionals->allocated += 16;
2044 conditionals->ignoring = xmalloc (conditionals->allocated);
2045 memcpy (conditionals->ignoring, conditionals->ignoring_first,
2046 sizeof (conditionals->ignoring_first));
2047 conditionals->seen_else = xmalloc (conditionals->allocated);
2048 memcpy (conditionals->seen_else, conditionals->seen_else_first,
2049 sizeof (conditionals->seen_else_first));
2050 }
2051 else
2052 {
2053 conditionals->allocated *= 2;
2054#else /* !KMK */
2055 conditionals->allocated += 5;
2056#endif /* !KMK */
2057 conditionals->ignoring = xrealloc (conditionals->ignoring,
2058 conditionals->allocated);
2059 conditionals->seen_else = xrealloc (conditionals->seen_else,
2060 conditionals->allocated);
2061#ifdef KMK
2062 }
2063#endif
2064 }
2065
2066 /* Record that we have seen an `if...' but no `else' so far. */
2067 conditionals->seen_else[o] = 0;
2068
2069 /* Search through the stack to see if we're already ignoring. */
2070 for (i = 0; i < o; ++i)
2071 if (conditionals->ignoring[i])
2072 {
2073 /* We are already ignoring, so just push a level to match the next
2074 "else" or "endif", and keep ignoring. We don't want to expand
2075 variables in the condition. */
2076 conditionals->ignoring[o] = 1;
2077 return 1;
2078 }
2079
2080 if (cmdtype == c_ifdef || cmdtype == c_ifndef)
2081 {
2082 char *var;
2083 struct variable *v;
2084 char *p;
2085
2086 /* Expand the thing we're looking up, so we can use indirect and
2087 constructed variable names. */
2088#ifndef CONFIG_WITH_VALUE_LENGTH
2089 var = allocated_variable_expand (line);
2090#else
2091 var = variable_expand_string_2 (NULL, line, eol - line, &p);
2092#endif
2093
2094 /* Make sure there's only one variable name to test. */
2095 p = end_of_token (var);
2096 i = p - var;
2097 p = next_token (p);
2098 if (*p != '\0')
2099 return -1;
2100
2101 var[i] = '\0';
2102 v = lookup_variable (var, i);
2103
2104 conditionals->ignoring[o] =
2105 ((v != 0 && *v->value != '\0') == (cmdtype == c_ifndef));
2106
2107#ifndef CONFIG_WITH_VALUE_LENGTH
2108 free (var);
2109#endif
2110 }
2111#ifdef CONFIG_WITH_IF_CONDITIONALS
2112 else if (cmdtype == c_ifcond)
2113 {
2114 int rval = expr_eval_if_conditionals (line, flocp);
2115 if (rval == -1)
2116 return rval;
2117 conditionals->ignoring[o] = rval;
2118 }
2119#endif
2120 else
2121 {
2122#ifdef CONFIG_WITH_SET_CONDITIONALS
2123 /* "ifeq", "ifneq", "if1of" or "ifn1of". */
2124#else
2125 /* "ifeq" or "ifneq". */
2126#endif
2127 char *s1, *s2;
2128 unsigned int l;
2129 char termin = *line == '(' ? ',' : *line;
2130#ifdef CONFIG_WITH_VALUE_LENGTH
2131 char *s1_end, *s2_end;
2132#endif
2133
2134 if (termin != ',' && termin != '"' && termin != '\'')
2135 return -1;
2136
2137 s1 = ++line;
2138 /* Find the end of the first string. */
2139 if (termin == ',')
2140 {
2141 int count = 0;
2142 for (; *line != '\0'; ++line)
2143 if (*line == '(')
2144 ++count;
2145 else if (*line == ')')
2146 --count;
2147 else if (*line == ',' && count <= 0)
2148 break;
2149 }
2150 else
2151 while (*line != '\0' && *line != termin)
2152 ++line;
2153
2154 if (*line == '\0')
2155 return -1;
2156
2157 if (termin == ',')
2158 {
2159 /* Strip blanks after the first string. */
2160 char *p = line++;
2161 while (isblank ((unsigned char)p[-1]))
2162 --p;
2163 *p = '\0';
2164#ifdef CONFIG_WITH_VALUE_LENGTH
2165 l = p - s1;
2166#endif
2167 }
2168 else
2169 {
2170#ifdef CONFIG_WITH_VALUE_LENGTH
2171 l = line - s1;
2172#endif
2173 *line++ = '\0';
2174 }
2175
2176#ifndef CONFIG_WITH_VALUE_LENGTH
2177 s2 = variable_expand (s1);
2178 /* We must allocate a new copy of the expanded string because
2179 variable_expand re-uses the same buffer. */
2180 l = strlen (s2);
2181 s1 = alloca (l + 1);
2182 memcpy (s1, s2, l + 1);
2183#else
2184 s1 = variable_expand_string_2 (NULL, s1, l, &s1_end);
2185#endif
2186
2187 if (termin != ',')
2188 /* Find the start of the second string. */
2189 line = next_token (line);
2190
2191 termin = termin == ',' ? ')' : *line;
2192 if (termin != ')' && termin != '"' && termin != '\'')
2193 return -1;
2194
2195 /* Find the end of the second string. */
2196 if (termin == ')')
2197 {
2198 int count = 0;
2199 s2 = next_token (line);
2200 for (line = s2; *line != '\0'; ++line)
2201 {
2202 if (*line == '(')
2203 ++count;
2204 else if (*line == ')')
2205 {
2206 if (count <= 0)
2207 break;
2208 else
2209 --count;
2210 }
2211 }
2212 }
2213 else
2214 {
2215 ++line;
2216 s2 = line;
2217 while (*line != '\0' && *line != termin)
2218 ++line;
2219 }
2220
2221 if (*line == '\0')
2222 return -1;
2223
2224 *line = '\0';
2225#ifdef CONFIG_WITH_VALUE_LENGTH
2226 l = line - s2;
2227#endif
2228 line = next_token (++line);
2229 if (*line != '\0')
2230 EXTRANEOUS ();
2231
2232#ifndef CONFIG_WITH_VALUE_LENGTH
2233 s2 = variable_expand (s2);
2234#else
2235 s2 = variable_expand_string_2 (s1_end + 1, s2, l, &s2_end);
2236 if (s2 != s1_end + 1)
2237 s1 += s2 - s1_end - 1; /* the variable buffer was reallocated */
2238#endif
2239#ifdef CONFIG_WITH_SET_CONDITIONALS
2240 if (cmdtype == c_if1of || cmdtype == c_ifn1of)
2241 {
2242 const char *s1_cur;
2243 unsigned int s1_len;
2244 const char *s1_iterator = s1;
2245
2246 conditionals->ignoring[o] = (cmdtype == c_if1of); /* if not found */
2247 while ((s1_cur = find_next_token (&s1_iterator, &s1_len)) != 0)
2248 {
2249 const char *s2_cur;
2250 unsigned int s2_len;
2251 const char *s2_iterator = s2;
2252 while ((s2_cur = find_next_token (&s2_iterator, &s2_len)) != 0)
2253 if (s2_len == s1_len
2254 && strneq (s2_cur, s1_cur, s1_len) )
2255 {
2256 conditionals->ignoring[o] = (cmdtype != c_if1of); /* found */
2257 break;
2258 }
2259 }
2260 }
2261 else
2262 conditionals->ignoring[o] = (streq (s1, s2) == (cmdtype == c_ifneq));
2263#else
2264 conditionals->ignoring[o] = (streq (s1, s2) == (cmdtype == c_ifneq));
2265#endif
2266 }
2267
2268 DONE:
2269 /* Search through the stack to see if we're ignoring. */
2270 for (i = 0; i < conditionals->if_cmds; ++i)
2271 if (conditionals->ignoring[i])
2272 return 1;
2273 return 0;
2274}
2275
2276
2277/* Record target-specific variable values for files FILENAMES.
2278 TWO_COLON is nonzero if a double colon was used.
2279
2280 The links of FILENAMES are freed, and so are any names in it
2281 that are not incorporated into other data structures.
2282
2283 If the target is a pattern, add the variable to the pattern-specific
2284 variable value list. */
2285
2286static void
2287record_target_var (struct nameseq *filenames, char *defn,
2288 enum variable_origin origin, struct vmodifiers *vmod,
2289 const struct floc *flocp)
2290{
2291 struct nameseq *nextf;
2292 struct variable_set_list *global;
2293
2294 global = current_variable_set_list;
2295
2296 /* If the variable is an append version, store that but treat it as a
2297 normal recursive variable. */
2298
2299 for (; filenames != 0; filenames = nextf)
2300 {
2301 struct variable *v;
2302 const char *name = filenames->name;
2303 const char *fname;
2304 const char *percent;
2305 struct pattern_var *p;
2306
2307 nextf = filenames->next;
2308 free_ns (filenames);
2309
2310 /* If it's a pattern target, then add it to the pattern-specific
2311 variable list. */
2312 percent = find_percent_cached (&name);
2313 if (percent)
2314 {
2315 /* Get a reference for this pattern-specific variable struct. */
2316 p = create_pattern_var (name, percent);
2317 p->variable.fileinfo = *flocp;
2318 /* I don't think this can fail since we already determined it was a
2319 variable definition. */
2320 v = assign_variable_definition (&p->variable, defn IF_WITH_VALUE_LENGTH_PARAM(NULL));
2321 assert (v != 0);
2322
2323 v->origin = origin;
2324#ifndef CONFIG_WITH_VALUE_LENGTH
2325 if (v->flavor == f_simple)
2326 v->value = allocated_variable_expand (v->value);
2327 else
2328 v->value = xstrdup (v->value);
2329#else
2330 v->value_length = strlen (v->value);
2331 if (v->flavor == f_simple)
2332 v->value = allocated_variable_expand_2 (v->value, v->value_length, &v->value_length);
2333 else
2334 v->value = (char *)memcpy (xmalloc (v->value_length + 1), v->value, v->value_length + 1);
2335 v->value_alloc_len = v->value_length + 1;
2336#endif
2337
2338 fname = p->target;
2339 }
2340 else
2341 {
2342 struct file *f;
2343
2344 /* Get a file reference for this file, and initialize it.
2345 We don't want to just call enter_file() because that allocates a
2346 new entry if the file is a double-colon, which we don't want in
2347 this situation. */
2348#ifndef CONFIG_WITH_STRCACHE2
2349 f = lookup_file (name);
2350 if (!f)
2351 f = enter_file (strcache_add (name));
2352#else /* CONFIG_WITH_STRCACHE2 */
2353 /* XXX: this is probably already a cached string. */
2354 fname = strcache_add (name);
2355 f = lookup_file_cached (fname);
2356 if (!f)
2357 f = enter_file (fname);
2358#endif /* CONFIG_WITH_STRCACHE2 */
2359 else if (f->double_colon)
2360 f = f->double_colon;
2361
2362 initialize_file_variables (f, 1);
2363 fname = f->name;
2364
2365 current_variable_set_list = f->variables;
2366 v = try_variable_definition (flocp, defn IF_WITH_VALUE_LENGTH_PARAM(NULL), origin, 1);
2367 if (!v)
2368 fatal (flocp, _("Malformed target-specific variable definition"));
2369 current_variable_set_list = global;
2370 }
2371
2372 /* Set up the variable to be *-specific. */
2373 v->per_target = 1;
2374 v->private_var = vmod->private_v;
2375 v->export = vmod->export_v ? v_export : v_default;
2376
2377 /* If it's not an override, check to see if there was a command-line
2378 setting. If so, reset the value. */
2379 if (v->origin != o_override)
2380 {
2381 struct variable *gv;
2382#ifndef CONFIG_WITH_STRCACHE2
2383 int len = strlen(v->name);
2384#else
2385 int len = !percent
2386 ? strcache2_get_len (&variable_strcache, v->name)
2387 : strlen(v->name);
2388#endif
2389
2390 gv = lookup_variable (v->name, len);
2391 if (gv && (gv->origin == o_env_override || gv->origin == o_command))
2392 {
2393#ifdef CONFIG_WITH_RDONLY_VARIABLE_VALUE
2394 assert (!v->rdonly_val); /* paranoia */
2395#endif
2396 if (v->value != 0)
2397 free (v->value);
2398#ifndef CONFIG_WITH_VALUE_LENGTH
2399 v->value = xstrdup (gv->value);
2400#else
2401 v->value = xstrndup (gv->value, gv->value_length);
2402 v->value_length = gv->value_length;
2403#endif
2404 v->origin = gv->origin;
2405 v->recursive = gv->recursive;
2406 v->append = 0;
2407 VARIABLE_CHANGED (v);
2408 }
2409 }
2410 }
2411}
2412
2413
2414/* Record a description line for files FILENAMES,
2415 with dependencies DEPS, commands to execute described
2416 by COMMANDS and COMMANDS_IDX, coming from FILENAME:COMMANDS_STARTED.
2417 TWO_COLON is nonzero if a double colon was used.
2418 If not nil, PATTERN is the `%' pattern to make this
2419 a static pattern rule, and PATTERN_PERCENT is a pointer
2420 to the `%' within it.
2421
2422 The links of FILENAMES are freed, and so are any names in it
2423 that are not incorporated into other data structures. */
2424
2425static void
2426record_files (struct nameseq *filenames, const char *pattern,
2427 const char *pattern_percent, char *depstr,
2428 unsigned int cmds_started, char *commands,
2429 unsigned int commands_idx, int two_colon,
2430 const struct floc *flocp)
2431{
2432#ifdef CONFIG_WITH_EXPLICIT_MULTITARGET
2433 struct file *prev_file = 0;
2434 enum multitarget_mode { m_unsettled, m_no, m_yes, m_yes_maybe }
2435 multi_mode = !two_colon && !pattern ? m_unsettled : m_no;
2436#endif
2437 struct commands *cmds;
2438 struct dep *deps;
2439 const char *implicit_percent;
2440 const char *name;
2441
2442 /* If we've already snapped deps, that means we're in an eval being
2443 resolved after the makefiles have been read in. We can't add more rules
2444 at this time, since they won't get snapped and we'll get core dumps.
2445 See Savannah bug # 12124. */
2446 if (snapped_deps)
2447 fatal (flocp, _("prerequisites cannot be defined in recipes"));
2448
2449 /* Determine if this is a pattern rule or not. */
2450 name = filenames->name;
2451 implicit_percent = find_percent_cached (&name);
2452
2453 /* If there's a recipe, set up a struct for it. */
2454 if (commands_idx > 0)
2455 {
2456#ifndef CONFIG_WITH_ALLOC_CACHES
2457 cmds = xmalloc (sizeof (struct commands));
2458#else
2459 cmds = alloccache_alloc (&commands_cache);
2460#endif
2461 cmds->fileinfo.filenm = flocp->filenm;
2462 cmds->fileinfo.lineno = cmds_started;
2463 cmds->commands = xstrndup (commands, commands_idx);
2464 cmds->command_lines = 0;
2465#ifdef CONFIG_WITH_MEMORY_OPTIMIZATIONS
2466 cmds->refs = 0;
2467#endif
2468 }
2469 else
2470 cmds = 0;
2471
2472 /* If there's a prereq string then parse it--unless it's eligible for 2nd
2473 expansion: if so, snap_deps() will do it. */
2474 if (depstr == 0)
2475 deps = 0;
2476 else if (second_expansion && strchr (depstr, '$'))
2477 {
2478 deps = alloc_dep ();
2479 deps->name = depstr;
2480 deps->need_2nd_expansion = 1;
2481 deps->staticpattern = pattern != 0;
2482 }
2483 else
2484 {
2485 deps = split_prereqs (depstr);
2486 free (depstr);
2487
2488 /* We'll enter static pattern prereqs later when we have the stem. We
2489 don't want to enter pattern rules at all so that we don't think that
2490 they ought to exist (make manual "Implicit Rule Search Algorithm",
2491 item 5c). */
2492 if (! pattern && ! implicit_percent)
2493 deps = enter_prereqs (deps, NULL);
2494 }
2495
2496 /* For implicit rules, _all_ the targets must have a pattern. That means we
2497 can test the first one to see if we're working with an implicit rule; if
2498 so we handle it specially. */
2499
2500 if (implicit_percent)
2501 {
2502 struct nameseq *nextf;
2503 const char **targets, **target_pats;
2504 unsigned int c;
2505
2506 if (pattern != 0)
2507 fatal (flocp, _("mixed implicit and static pattern rules"));
2508
2509 /* Count the targets to create an array of target names.
2510 We already have the first one. */
2511 nextf = filenames->next;
2512 free_ns (filenames);
2513 filenames = nextf;
2514
2515 for (c = 1; nextf; ++c, nextf = nextf->next)
2516 ;
2517 targets = xmalloc (c * sizeof (const char *));
2518 target_pats = xmalloc (c * sizeof (const char *));
2519
2520 targets[0] = name;
2521 target_pats[0] = implicit_percent;
2522
2523 c = 1;
2524 while (filenames)
2525 {
2526 name = filenames->name;
2527 implicit_percent = find_percent_cached (&name);
2528
2529 if (implicit_percent == 0)
2530 fatal (flocp, _("mixed implicit and normal rules"));
2531
2532 targets[c] = name;
2533 target_pats[c] = implicit_percent;
2534 ++c;
2535
2536 nextf = filenames->next;
2537 free_ns (filenames);
2538 filenames = nextf;
2539 }
2540
2541 create_pattern_rule (targets, target_pats, c, two_colon, deps, cmds, 1);
2542
2543 return;
2544 }
2545
2546
2547 /* Walk through each target and create it in the database.
2548 We already set up the first target, above. */
2549 while (1)
2550 {
2551 struct nameseq *nextf = filenames->next;
2552 struct file *f;
2553 struct dep *this = 0;
2554
2555 free_ns (filenames);
2556
2557 /* Check for special targets. Do it here instead of, say, snap_deps()
2558 so that we can immediately use the value. */
2559 if (streq (name, ".POSIX"))
2560 {
2561 posix_pedantic = 1;
2562 define_variable_cname (".SHELLFLAGS", "-ec", o_default, 0);
2563 }
2564 else if (streq (name, ".SECONDEXPANSION"))
2565 second_expansion = 1;
2566#ifdef CONFIG_WITH_2ND_TARGET_EXPANSION
2567 else if (streq (name, ".SECONDTARGETEXPANSION"))
2568 second_target_expansion = 1;
2569#endif
2570#if !defined(WINDOWS32) && !defined (__MSDOS__) && !defined (__EMX__)
2571 else if (streq (name, ".ONESHELL"))
2572 one_shell = 1;
2573#endif
2574
2575#ifdef CONFIG_WITH_EXPLICIT_MULTITARGET
2576 /* Check for the explicit multitarget mode operators. For this to be
2577 identified as an explicit multiple target rule, the first + or +|
2578 operator *must* appear between the first two files. If not found as
2579 the 2nd file or if found as the 1st file, the rule will be rejected
2580 as a potential multiple first target rule. For the subsequent files
2581 the operator is only required to switch between maybe and non-maybe
2582 mode:
2583 `primary + 2nd 3rd +| 4th-maybe + 5th-for-sure: deps; cmds'
2584
2585 The whole idea of the maybe-updated files is this:
2586 timestamp +| maybe.h: src1.c src2.c
2587 grep goes-into-maybe.h $* > timestamp
2588 cmp timestamp maybe.h || cp -f timestamp maybe.h
2589
2590 This is implemented in remake.c where we don't consider the mtime of
2591 the maybe-updated targets. */
2592 if (multi_mode != m_no && name[0] == '+'
2593 && (name[1] == '\0' || (name[1] == '|' && name[2] == '\0')))
2594 {
2595 if (!prev_file)
2596 multi_mode = m_no; /* first */
2597 else
2598 {
2599 if (multi_mode == m_unsettled)
2600 {
2601 prev_file->multi_head = prev_file;
2602
2603 /* Only the primary file needs the dependencies. */
2604 if (deps)
2605 {
2606 free_dep_chain (deps);
2607 deps = NULL;
2608 }
2609 }
2610 multi_mode = name[1] == '\0' ? m_yes : m_yes_maybe;
2611 goto l_next;
2612 }
2613 }
2614 else if (multi_mode == m_unsettled && prev_file)
2615 multi_mode = m_no;
2616#endif
2617
2618 /* If this is a static pattern rule:
2619 `targets: target%pattern: prereq%pattern; recipe',
2620 make sure the pattern matches this target name. */
2621 if (pattern && !pattern_matches (pattern, pattern_percent, name))
2622 error (flocp, _("target `%s' doesn't match the target pattern"), name);
2623 else if (deps)
2624 /* If there are multiple targets, copy the chain DEPS for all but the
2625 last one. It is not safe for the same deps to go in more than one
2626 place in the database. */
2627 this = nextf != 0 ? copy_dep_chain (deps) : deps;
2628
2629 /* Find or create an entry in the file database for this target. */
2630 if (!two_colon)
2631 {
2632 /* Single-colon. Combine this rule with the file's existing record,
2633 if any. */
2634#ifndef KMK
2635 f = enter_file (strcache_add (name));
2636#else /* KMK - the name is already in the cache, don't waste time. */
2637 f = enter_file (name);
2638#endif
2639 if (f->double_colon)
2640 fatal (flocp,
2641 _("target file `%s' has both : and :: entries"), f->name);
2642
2643 /* If CMDS == F->CMDS, this target was listed in this rule
2644 more than once. Just give a warning since this is harmless. */
2645 if (cmds != 0 && cmds == f->cmds)
2646 error (flocp,
2647 _("target `%s' given more than once in the same rule."),
2648 f->name);
2649
2650 /* Check for two single-colon entries both with commands.
2651 Check is_target so that we don't lose on files such as .c.o
2652 whose commands were preinitialized. */
2653 else if (cmds != 0 && f->cmds != 0 && f->is_target)
2654 {
2655 error (&cmds->fileinfo,
2656 _("warning: overriding recipe for target `%s'"),
2657 f->name);
2658 error (&f->cmds->fileinfo,
2659 _("warning: ignoring old recipe for target `%s'"),
2660 f->name);
2661 }
2662
2663 /* Defining .DEFAULT with no deps or cmds clears it. */
2664 if (f == default_file && this == 0 && cmds == 0)
2665 f->cmds = 0;
2666 if (cmds != 0)
2667 f->cmds = cmds;
2668
2669#ifdef CONFIG_WITH_EXPLICIT_MULTITARGET
2670 /* If this is an explicit multi target rule, add it to the
2671 target chain and set the multi_maybe flag according to
2672 the current mode. */
2673
2674 if (multi_mode >= m_yes)
2675 {
2676 f->multi_maybe = multi_mode == m_yes_maybe;
2677 prev_file->multi_next = f;
2678 assert (prev_file->multi_head != 0);
2679 f->multi_head = prev_file->multi_head;
2680
2681 if (f == suffix_file)
2682 error (flocp,
2683 _(".SUFFIXES encountered in an explicit multi target rule"));
2684 }
2685 prev_file = f;
2686#endif
2687
2688 /* Defining .SUFFIXES with no dependencies clears out the list of
2689 suffixes. */
2690 if (f == suffix_file && this == 0)
2691 {
2692 free_dep_chain (f->deps);
2693 f->deps = 0;
2694 }
2695 }
2696 else
2697 {
2698 /* Double-colon. Make a new record even if there already is one. */
2699#ifndef CONFIG_WITH_STRCACHE2
2700 f = lookup_file (name);
2701#else /* CONFIG_WITH_STRCACHE2 - the name is already in the cache, don't waste time. */
2702 f = lookup_file_cached (name);
2703#endif /* CONFIG_WITH_STRCACHE2 */
2704
2705 /* Check for both : and :: rules. Check is_target so we don't lose
2706 on default suffix rules or makefiles. */
2707 if (f != 0 && f->is_target && !f->double_colon)
2708 fatal (flocp,
2709 _("target file `%s' has both : and :: entries"), f->name);
2710
2711#ifndef KMK
2712 f = enter_file (strcache_add (name));
2713#else /* KMK - the name is already in the cache, don't waste time. */
2714 f = enter_file (name);
2715#endif
2716 /* If there was an existing entry and it was a double-colon entry,
2717 enter_file will have returned a new one, making it the prev
2718 pointer of the old one, and setting its double_colon pointer to
2719 the first one. */
2720 if (f->double_colon == 0)
2721 /* This is the first entry for this name, so we must set its
2722 double_colon pointer to itself. */
2723 f->double_colon = f;
2724
2725 f->cmds = cmds;
2726 }
2727
2728 f->is_target = 1;
2729
2730 /* If this is a static pattern rule, set the stem to the part of its
2731 name that matched the `%' in the pattern, so you can use $* in the
2732 commands. If we didn't do it before, enter the prereqs now. */
2733 if (pattern)
2734 {
2735 static const char *percent = "%";
2736 char *buffer = variable_expand ("");
2737 const size_t buffer_offset = buffer - variable_buffer; /* bird */
2738 char *o = patsubst_expand_pat (buffer, name, pattern, percent,
2739 pattern_percent+1, percent+1);
2740 buffer = variable_buffer + buffer_offset; /* bird - variable_buffer may have been reallocated. */
2741 f->stem = strcache_add_len (buffer, o - buffer);
2742 if (this)
2743 {
2744 if (! this->need_2nd_expansion)
2745 this = enter_prereqs (this, f->stem);
2746 else
2747 this->stem = f->stem;
2748 }
2749 }
2750
2751 /* Add the dependencies to this file entry. */
2752 if (this != 0)
2753 {
2754 /* Add the file's old deps and the new ones in THIS together. */
2755 if (f->deps == 0)
2756 f->deps = this;
2757 else if (cmds != 0)
2758 {
2759 struct dep *d = this;
2760
2761 /* If this rule has commands, put these deps first. */
2762 while (d->next != 0)
2763 d = d->next;
2764
2765 d->next = f->deps;
2766 f->deps = this;
2767 }
2768 else
2769 {
2770 struct dep *d = f->deps;
2771
2772 /* A rule without commands: put its prereqs at the end. */
2773 while (d->next != 0)
2774 d = d->next;
2775
2776 d->next = this;
2777 }
2778 }
2779
2780 name = f->name;
2781
2782#ifdef CONFIG_WITH_EXPLICIT_MULTITARGET
2783l_next:
2784#endif
2785 /* All done! Set up for the next one. */
2786 if (nextf == 0)
2787 break;
2788
2789 filenames = nextf;
2790
2791 /* Reduce escaped percents. If there are any unescaped it's an error */
2792 name = filenames->name;
2793 if (find_percent_cached (&name))
2794 fatal (flocp, _("mixed implicit and normal rules"));
2795 }
2796}
2797
2798
2799/* Search STRING for an unquoted STOPCHAR or blank (if BLANK is nonzero).
2800 Backslashes quote STOPCHAR, blanks if BLANK is nonzero, and backslash.
2801 Quoting backslashes are removed from STRING by compacting it into
2802 itself. Returns a pointer to the first unquoted STOPCHAR if there is
2803 one, or nil if there are none. STOPCHARs inside variable references are
2804 ignored if IGNOREVARS is true.
2805
2806 STOPCHAR _cannot_ be '$' if IGNOREVARS is true. */
2807
2808#ifndef CONFIG_WITH_VALUE_LENGTH
2809static char *
2810find_char_unquote (char *string, int stop1, int stop2, int blank,
2811 int ignorevars)
2812#else
2813static char *
2814find_char_unquote_2 (char *string, int stop1, int stop2, int blank,
2815 int ignorevars, unsigned int string_len)
2816#endif
2817{
2818#ifndef CONFIG_WITH_VALUE_LENGTH
2819 unsigned int string_len = 0;
2820#endif
2821 char *p = string;
2822 register int ch; /* bird: 'optimiziations' */
2823#ifdef CONFIG_WITH_VALUE_LENGTH
2824 assert (string_len == 0 || string_len == strlen (string));
2825#endif
2826
2827 if (ignorevars)
2828 ignorevars = '$';
2829
2830 while (1)
2831 {
2832 if (stop2 && blank)
2833 while ((ch = *p) != '\0' && ch != ignorevars && ch != stop1 && ch != stop2
2834 && ! isblank ((unsigned char) ch))
2835 ++p;
2836 else if (stop2)
2837 while ((ch = *p) != '\0' && ch != ignorevars && ch != stop1 && ch != stop2)
2838 ++p;
2839 else if (blank)
2840 while ((ch = *p) != '\0' && ch != ignorevars && ch != stop1
2841 && ! isblank ((unsigned char) ch))
2842 ++p;
2843 else
2844 while ((ch = *p) != '\0' && ch != ignorevars && ch != stop1)
2845 ++p;
2846
2847 if (ch == '\0')
2848 break;
2849
2850 /* If we stopped due to a variable reference, skip over its contents. */
2851 if (ch == ignorevars)
2852 {
2853 char openparen = p[1];
2854
2855 p += 2;
2856
2857 /* Skip the contents of a non-quoted, multi-char variable ref. */
2858 if (openparen == '(' || openparen == '{')
2859 {
2860 unsigned int pcount = 1;
2861 char closeparen = (openparen == '(' ? ')' : '}');
2862
2863 while ((ch = *p))
2864 {
2865 if (ch == openparen)
2866 ++pcount;
2867 else if (ch == closeparen)
2868 if (--pcount == 0)
2869 {
2870 ++p;
2871 break;
2872 }
2873 ++p;
2874 }
2875 }
2876
2877 /* Skipped the variable reference: look for STOPCHARS again. */
2878 continue;
2879 }
2880
2881 if (p > string && p[-1] == '\\')
2882 {
2883 /* Search for more backslashes. */
2884 int i = -2;
2885 while (&p[i] >= string && p[i] == '\\')
2886 --i;
2887 ++i;
2888 /* Only compute the length if really needed. */
2889 if (string_len == 0)
2890 string_len = strlen (string);
2891 /* The number of backslashes is now -I.
2892 Copy P over itself to swallow half of them. */
2893 memmove (&p[i], &p[i/2], (string_len - (p - string)) - (i/2) + 1);
2894 p += i/2;
2895 if (i % 2 == 0)
2896 /* All the backslashes quoted each other; the STOPCHAR was
2897 unquoted. */
2898 return p;
2899
2900 /* The STOPCHAR was quoted by a backslash. Look for another. */
2901 }
2902 else
2903 /* No backslash in sight. */
2904 return p;
2905 }
2906
2907 /* Never hit a STOPCHAR or blank (with BLANK nonzero). */
2908 return 0;
2909}
2910
2911#ifdef CONFIG_WITH_VALUE_LENGTH
2912/* Special case version of find_char_unquote that only takes stop1.
2913 This is so common that it makes a lot of sense to specialize this.
2914 */
2915__inline static char *
2916find_char_unquote_0 (char *string, int stop1, char **eosp)
2917{
2918 unsigned int string_len = *eosp - string;
2919 char *p = (char *)memchr (string, stop1, string_len);
2920 assert (strlen (string) == string_len);
2921 if (!p)
2922 return NULL;
2923 if (p <= string || p[-1] != '\\')
2924 return p;
2925
2926 p = find_char_unquote_2 (string, stop1, 0, 0, 0, string_len);
2927 *eosp = memchr (string, '\0', string_len);
2928 return p;
2929}
2930#endif
2931
2932/* Search PATTERN for an unquoted % and handle quoting. */
2933
2934char *
2935find_percent (char *pattern)
2936{
2937 return find_char_unquote (pattern, '%', 0, 0, 0);
2938}
2939
2940/* Search STRING for an unquoted % and handle quoting. Returns a pointer to
2941 the % or NULL if no % was found.
2942 This version is used with strings in the string cache: if there's a need to
2943 modify the string a new version will be added to the string cache and
2944 *STRING will be set to that. */
2945
2946const char *
2947find_percent_cached (const char **string)
2948{
2949 const char *p = *string;
2950 char *new = 0;
2951 int slen = 0;
2952
2953 /* If the first char is a % return now. This lets us avoid extra tests
2954 inside the loop. */
2955 if (*p == '%')
2956 return p;
2957
2958 while (1)
2959 {
2960 while (*p != '\0' && *p != '%')
2961 ++p;
2962
2963 if (*p == '\0')
2964 break;
2965
2966 /* See if this % is escaped with a backslash; if not we're done. */
2967 if (p[-1] != '\\')
2968 break;
2969
2970 {
2971 /* Search for more backslashes. */
2972 char *pv;
2973 int i = -2;
2974
2975 while (&p[i] >= *string && p[i] == '\\')
2976 --i;
2977 ++i;
2978
2979 /* At this point we know we'll need to allocate a new string.
2980 Make a copy if we haven't yet done so. */
2981 if (! new)
2982 {
2983 slen = strlen (*string);
2984 new = alloca (slen + 1);
2985 memcpy (new, *string, slen + 1);
2986 p = new + (p - *string);
2987 *string = new;
2988 }
2989
2990 /* At this point *string, p, and new all point into the same string.
2991 Get a non-const version of p so we can modify new. */
2992 pv = new + (p - *string);
2993
2994 /* The number of backslashes is now -I.
2995 Copy P over itself to swallow half of them. */
2996 memmove (&pv[i], &pv[i/2], (slen - (pv - new)) - (i/2) + 1);
2997 p += i/2;
2998
2999 /* If the backslashes quoted each other; the % was unquoted. */
3000 if (i % 2 == 0)
3001 break;
3002 }
3003 }
3004
3005 /* If we had to change STRING, add it to the strcache. */
3006 if (new)
3007 {
3008 *string = strcache_add (*string);
3009 p = *string + (p - new);
3010 }
3011
3012 /* If we didn't find a %, return NULL. Otherwise return a ptr to it. */
3013 return (*p == '\0') ? NULL : p;
3014}
3015
3016
3017/* Find the next line of text in an eval buffer, combining continuation lines
3018 into one line.
3019 Return the number of actual lines read (> 1 if continuation lines).
3020 Returns -1 if there's nothing left in the buffer.
3021
3022 After this function, ebuf->buffer points to the first character of the
3023 line we just found.
3024 */
3025
3026/* Read a line of text from a STRING.
3027 Since we aren't really reading from a file, don't bother with linenumbers.
3028 */
3029
3030static unsigned long
3031readstring (struct ebuffer *ebuf)
3032{
3033 char *eol;
3034#ifdef CONFIG_WITH_VALUE_LENGTH
3035 char *end;
3036#endif
3037
3038 /* If there is nothing left in this buffer, return 0. */
3039 if (ebuf->bufnext >= ebuf->bufstart + ebuf->size)
3040 return -1;
3041
3042 /* Set up a new starting point for the buffer, and find the end of the
3043 next logical line (taking into account backslash/newline pairs). */
3044
3045 eol = ebuf->buffer = ebuf->bufnext;
3046#ifdef CONFIG_WITH_VALUE_LENGTH
3047 end = ebuf->bufstart + ebuf->size;
3048#endif
3049
3050 while (1)
3051 {
3052 int backslash = 0;
3053 const char *bol = eol;
3054 const char *p;
3055
3056 /* Find the next newline. At EOS, stop. */
3057#ifndef CONFIG_WITH_VALUE_LENGTH
3058 p = eol = strchr (eol , '\n');
3059#else
3060 p = (char *)memchr (eol, '\n', end - eol);
3061 assert (!memchr (eol, '\0', p != 0 ? p - eol : end - eol));
3062 eol = (char *)p;
3063#endif
3064 if (!eol)
3065 {
3066 ebuf->bufnext = ebuf->bufstart + ebuf->size + 1;
3067#ifdef CONFIG_WITH_VALUE_LENGTH
3068 ebuf->eol = end;
3069#endif
3070 return 0;
3071 }
3072
3073 /* Found a newline; if it's escaped continue; else we're done. */
3074 while (p > bol && *(--p) == '\\')
3075 backslash = !backslash;
3076 if (!backslash)
3077 break;
3078 ++eol;
3079 }
3080
3081 /* Overwrite the newline char. */
3082 *eol = '\0';
3083 ebuf->bufnext = eol+1;
3084#ifdef CONFIG_WITH_VALUE_LENGTH
3085 ebuf->eol = eol;
3086#endif
3087
3088 return 0;
3089}
3090
3091static long
3092readline (struct ebuffer *ebuf)
3093{
3094 char *p;
3095 char *end;
3096 char *start;
3097 long nlines = 0;
3098
3099 /* The behaviors between string and stream buffers are different enough to
3100 warrant different functions. Do the Right Thing. */
3101
3102 if (!ebuf->fp)
3103 return readstring (ebuf);
3104
3105 /* When reading from a file, we always start over at the beginning of the
3106 buffer for each new line. */
3107
3108 p = start = ebuf->bufstart;
3109 end = p + ebuf->size;
3110 *p = '\0';
3111#ifdef CONFIG_WITH_VALUE_LENGTH
3112 ebuf->eol = p;
3113#endif
3114
3115 while (fgets (p, end - p, ebuf->fp) != 0)
3116 {
3117 char *p2;
3118 unsigned long len;
3119 int backslash;
3120
3121 len = strlen (p);
3122 if (len == 0)
3123 {
3124 /* This only happens when the first thing on the line is a '\0'.
3125 It is a pretty hopeless case, but (wonder of wonders) Athena
3126 lossage strikes again! (xmkmf puts NULs in its makefiles.)
3127 There is nothing really to be done; we synthesize a newline so
3128 the following line doesn't appear to be part of this line. */
3129 error (&ebuf->floc,
3130 _("warning: NUL character seen; rest of line ignored"));
3131 p[0] = '\n';
3132 len = 1;
3133 }
3134
3135 /* Jump past the text we just read. */
3136 p += len;
3137
3138 /* If the last char isn't a newline, the whole line didn't fit into the
3139 buffer. Get some more buffer and try again. */
3140 if (p[-1] != '\n')
3141 goto more_buffer;
3142
3143 /* We got a newline, so add one to the count of lines. */
3144 ++nlines;
3145
3146#if !defined(WINDOWS32) && !defined(__MSDOS__) && !defined(__EMX__)
3147 /* Check to see if the line was really ended with CRLF; if so ignore
3148 the CR. */
3149 if ((p - start) > 1 && p[-2] == '\r')
3150 {
3151 --p;
3152 p[-1] = '\n';
3153 }
3154#endif
3155
3156 backslash = 0;
3157 for (p2 = p - 2; p2 >= start; --p2)
3158 {
3159 if (*p2 != '\\')
3160 break;
3161 backslash = !backslash;
3162 }
3163
3164 if (!backslash)
3165 {
3166 p[-1] = '\0';
3167#ifdef CONFIG_WITH_VALUE_LENGTH
3168 ebuf->eol = p - 1;
3169#endif
3170 break;
3171 }
3172
3173 /* It was a backslash/newline combo. If we have more space, read
3174 another line. */
3175 if (end - p >= 80)
3176 {
3177#ifdef CONFIG_WITH_VALUE_LENGTH
3178 ebuf->eol = p;
3179#endif
3180 continue;
3181 }
3182
3183 /* We need more space at the end of our buffer, so realloc it.
3184 Make sure to preserve the current offset of p. */
3185 more_buffer:
3186 {
3187 unsigned long off = p - start;
3188 ebuf->size *= 2;
3189 start = ebuf->buffer = ebuf->bufstart = xrealloc (start, ebuf->size);
3190 p = start + off;
3191 end = start + ebuf->size;
3192 *p = '\0';
3193#ifdef CONFIG_WITH_VALUE_LENGTH
3194 ebuf->eol = p;
3195#endif
3196 }
3197 }
3198
3199 if (ferror (ebuf->fp))
3200 pfatal_with_name (ebuf->floc.filenm);
3201
3202 /* If we found some lines, return how many.
3203 If we didn't, but we did find _something_, that indicates we read the last
3204 line of a file with no final newline; return 1.
3205 If we read nothing, we're at EOF; return -1. */
3206
3207 return nlines ? nlines : p == ebuf->bufstart ? -1 : 1;
3208}
3209
3210
3211/* Parse the next "makefile word" from the input buffer, and return info
3212 about it.
3213
3214 A "makefile word" is one of:
3215
3216 w_bogus Should never happen
3217 w_eol End of input
3218 w_static A static word; cannot be expanded
3219 w_variable A word containing one or more variables/functions
3220 w_colon A colon
3221 w_dcolon A double-colon
3222 w_semicolon A semicolon
3223 w_varassign A variable assignment operator (=, :=, +=, >=, or ?=)
3224
3225 Note that this function is only used when reading certain parts of the
3226 makefile. Don't use it where special rules hold sway (RHS of a variable,
3227 in a command list, etc.) */
3228
3229static enum make_word_type
3230get_next_mword (char *buffer, char *delim, char **startp, unsigned int *length)
3231{
3232 enum make_word_type wtype = w_bogus;
3233 char *p = buffer, *beg;
3234 char c;
3235
3236 /* Skip any leading whitespace. */
3237 while (isblank ((unsigned char)*p))
3238 ++p;
3239
3240 beg = p;
3241 c = *(p++);
3242 switch (c)
3243 {
3244 case '\0':
3245 wtype = w_eol;
3246 break;
3247
3248 case ';':
3249 wtype = w_semicolon;
3250 break;
3251
3252 case '=':
3253 wtype = w_varassign;
3254 break;
3255
3256 case ':':
3257 wtype = w_colon;
3258 switch (*p)
3259 {
3260 case ':':
3261 ++p;
3262 wtype = w_dcolon;
3263 break;
3264
3265 case '=':
3266 ++p;
3267 wtype = w_varassign;
3268 break;
3269 }
3270 break;
3271
3272 case '+':
3273 case '?':
3274#ifdef CONFIG_WITH_PREPEND_ASSIGNMENT
3275 case '>':
3276#endif
3277 if (*p == '=')
3278 {
3279 ++p;
3280 wtype = w_varassign;
3281 break;
3282 }
3283
3284 default:
3285 if (delim && strchr (delim, c))
3286 wtype = w_static;
3287 break;
3288 }
3289
3290 /* Did we find something? If so, return now. */
3291 if (wtype != w_bogus)
3292 goto done;
3293
3294 /* This is some non-operator word. A word consists of the longest
3295 string of characters that doesn't contain whitespace, one of [:=#],
3296 or [?+]=, or one of the chars in the DELIM string. */
3297
3298 /* We start out assuming a static word; if we see a variable we'll
3299 adjust our assumptions then. */
3300 wtype = w_static;
3301
3302 /* We already found the first value of "c", above. */
3303 while (1)
3304 {
3305 char closeparen;
3306 int count;
3307
3308 switch (c)
3309 {
3310 case '\0':
3311 case ' ':
3312 case '\t':
3313 case '=':
3314 goto done_word;
3315
3316 case ':':
3317#ifdef HAVE_DOS_PATHS
3318 /* A word CAN include a colon in its drive spec. The drive
3319 spec is allowed either at the beginning of a word, or as part
3320 of the archive member name, like in "libfoo.a(d:/foo/bar.o)". */
3321 if (!(p - beg >= 2
3322 && (*p == '/' || *p == '\\') && isalpha ((unsigned char)p[-2])
3323 && (p - beg == 2 || p[-3] == '(')))
3324#endif
3325 goto done_word;
3326
3327 case '$':
3328 c = *(p++);
3329 if (c == '$')
3330 break;
3331
3332 /* This is a variable reference, so note that it's expandable.
3333 Then read it to the matching close paren. */
3334 wtype = w_variable;
3335
3336 if (c == '(')
3337 closeparen = ')';
3338 else if (c == '{')
3339 closeparen = '}';
3340 else
3341 /* This is a single-letter variable reference. */
3342 break;
3343
3344 for (count=0; *p != '\0'; ++p)
3345 {
3346 if (*p == c)
3347 ++count;
3348 else if (*p == closeparen && --count < 0)
3349 {
3350 ++p;
3351 break;
3352 }
3353 }
3354 break;
3355
3356 case '?':
3357 case '+':
3358#ifdef CONFIG_WITH_PREPEND_ASSIGNMENT
3359 case '>':
3360#endif
3361 if (*p == '=')
3362 goto done_word;
3363 break;
3364
3365 case '\\':
3366 switch (*p)
3367 {
3368 case ':':
3369 case ';':
3370 case '=':
3371 case '\\':
3372 ++p;
3373 break;
3374 }
3375 break;
3376
3377 default:
3378 if (delim && strchr (delim, c))
3379 goto done_word;
3380 break;
3381 }
3382
3383 c = *(p++);
3384 }
3385 done_word:
3386 --p;
3387
3388 done:
3389 if (startp)
3390 *startp = beg;
3391 if (length)
3392 *length = p - beg;
3393 return wtype;
3394}
3395
3396
3397/* Construct the list of include directories
3398 from the arguments and the default list. */
3399
3400void
3401construct_include_path (const char **arg_dirs)
3402{
3403#ifdef VAXC /* just don't ask ... */
3404 stat_t stbuf;
3405#else
3406 struct stat stbuf;
3407#endif
3408 const char **dirs;
3409 const char **cpp;
3410 unsigned int idx;
3411
3412 /* Compute the number of pointers we need in the table. */
3413 idx = sizeof (default_include_directories) / sizeof (const char *);
3414 if (arg_dirs)
3415 for (cpp = arg_dirs; *cpp != 0; ++cpp)
3416 ++idx;
3417
3418#ifdef __MSDOS__
3419 /* Add one for $DJDIR. */
3420 ++idx;
3421#endif
3422#ifdef KMK
3423 /* Add one for the kBuild directory. */
3424 ++idx;
3425#endif
3426
3427 dirs = xmalloc (idx * sizeof (const char *));
3428
3429 idx = 0;
3430 max_incl_len = 0;
3431
3432 /* First consider any dirs specified with -I switches.
3433 Ignore any that don't exist. Remember the maximum string length. */
3434
3435 if (arg_dirs)
3436 while (*arg_dirs != 0)
3437 {
3438 const char *dir = *(arg_dirs++);
3439 char *expanded = 0;
3440 int e;
3441
3442 if (dir[0] == '~')
3443 {
3444 expanded = tilde_expand (dir);
3445 if (expanded != 0)
3446 dir = expanded;
3447 }
3448
3449 EINTRLOOP (e, stat (dir, &stbuf));
3450 if (e == 0 && S_ISDIR (stbuf.st_mode))
3451 {
3452 unsigned int len = strlen (dir);
3453 /* If dir name is written with trailing slashes, discard them. */
3454 while (len > 1 && dir[len - 1] == '/')
3455 --len;
3456 if (len > max_incl_len)
3457 max_incl_len = len;
3458 dirs[idx++] = strcache_add_len (dir, len);
3459 }
3460
3461 if (expanded)
3462 free (expanded);
3463 }
3464
3465 /* Now add the standard default dirs at the end. */
3466
3467#ifdef __MSDOS__
3468 {
3469 /* The environment variable $DJDIR holds the root of the DJGPP directory
3470 tree; add ${DJDIR}/include. */
3471 struct variable *djdir = lookup_variable ("DJDIR", 5);
3472
3473 if (djdir)
3474 {
3475 unsigned int len = strlen (djdir->value) + 8;
3476 char *defdir = alloca (len + 1);
3477
3478 strcat (strcpy (defdir, djdir->value), "/include");
3479 dirs[idx++] = strcache_add (defdir);
3480
3481 if (len > max_incl_len)
3482 max_incl_len = len;
3483 }
3484 }
3485#endif
3486#ifdef KMK
3487 /* Add $(KBUILD_PATH). */
3488 {
3489 size_t len = strlen (get_kbuild_path ());
3490 dirs[idx++] = strcache_add_len (get_kbuild_path (), len);
3491 if (len > max_incl_len)
3492 max_incl_len = len;
3493 }
3494#endif
3495
3496 for (cpp = default_include_directories; *cpp != 0; ++cpp)
3497 {
3498 int e;
3499
3500 EINTRLOOP (e, stat (*cpp, &stbuf));
3501 if (e == 0 && S_ISDIR (stbuf.st_mode))
3502 {
3503 unsigned int len = strlen (*cpp);
3504 /* If dir name is written with trailing slashes, discard them. */
3505 while (len > 1 && (*cpp)[len - 1] == '/')
3506 --len;
3507 if (len > max_incl_len)
3508 max_incl_len = len;
3509 dirs[idx++] = strcache_add_len (*cpp, len);
3510 }
3511 }
3512
3513 dirs[idx] = 0;
3514
3515 /* Now add each dir to the .INCLUDE_DIRS variable. */
3516
3517 for (cpp = dirs; *cpp != 0; ++cpp)
3518 do_variable_definition (NILF, ".INCLUDE_DIRS", *cpp,
3519 o_default, f_append, 0);
3520
3521 include_directories = dirs;
3522}
3523
3524
3525/* Expand ~ or ~USER at the beginning of NAME.
3526 Return a newly malloc'd string or 0. */
3527
3528char *
3529tilde_expand (const char *name)
3530{
3531#ifndef VMS
3532 if (name[1] == '/' || name[1] == '\0')
3533 {
3534 extern char *getenv ();
3535 char *home_dir;
3536 int is_variable;
3537
3538 {
3539 /* Turn off --warn-undefined-variables while we expand HOME. */
3540 int save = warn_undefined_variables_flag;
3541 warn_undefined_variables_flag = 0;
3542
3543#ifndef CONFIG_WITH_VALUE_LENGTH
3544 home_dir = allocated_variable_expand ("$(HOME)");
3545#else
3546 home_dir = allocated_variable_expand_2 (STRING_SIZE_TUPLE("$(HOME)"), NULL);
3547#endif
3548
3549 warn_undefined_variables_flag = save;
3550 }
3551
3552 is_variable = home_dir[0] != '\0';
3553 if (!is_variable)
3554 {
3555 free (home_dir);
3556 home_dir = getenv ("HOME");
3557 }
3558# if !defined(_AMIGA) && !defined(WINDOWS32)
3559 if (home_dir == 0 || home_dir[0] == '\0')
3560 {
3561 extern char *getlogin ();
3562 char *logname = getlogin ();
3563 home_dir = 0;
3564 if (logname != 0)
3565 {
3566 struct passwd *p = getpwnam (logname);
3567 if (p != 0)
3568 home_dir = p->pw_dir;
3569 }
3570 }
3571# endif /* !AMIGA && !WINDOWS32 */
3572 if (home_dir != 0)
3573 {
3574 char *new = xstrdup (concat (2, home_dir, name + 1));
3575 if (is_variable)
3576 free (home_dir);
3577 return new;
3578 }
3579 }
3580# if !defined(_AMIGA) && !defined(WINDOWS32)
3581 else
3582 {
3583 struct passwd *pwent;
3584 char *userend = strchr (name + 1, '/');
3585 if (userend != 0)
3586 *userend = '\0';
3587 pwent = getpwnam (name + 1);
3588 if (pwent != 0)
3589 {
3590 if (userend == 0)
3591 return xstrdup (pwent->pw_dir);
3592 else
3593 return xstrdup (concat (3, pwent->pw_dir, "/", userend + 1));
3594 }
3595 else if (userend != 0)
3596 *userend = '/';
3597 }
3598# endif /* !AMIGA && !WINDOWS32 */
3599#endif /* !VMS */
3600 return 0;
3601}
3602
3603
3604/* Parse a string into a sequence of filenames represented as a chain of
3605 struct nameseq's and return that chain. Optionally expand the strings via
3606 glob().
3607
3608 The string is passed as STRINGP, the address of a string pointer.
3609 The string pointer is updated to point at the first character
3610 not parsed, which either is a null char or equals STOPCHAR.
3611
3612 SIZE is how big to construct chain elements.
3613 This is useful if we want them actually to be other structures
3614 that have room for additional info.
3615
3616 PREFIX, if non-null, is added to the beginning of each filename.
3617
3618 FLAGS allows one or more of the following bitflags to be set:
3619 PARSEFS_NOSTRIP - Do no strip './'s off the beginning
3620 PARSEFS_NOAR - Do not check filenames for archive references
3621 PARSEFS_NOGLOB - Do not expand globbing characters
3622 PARSEFS_EXISTS - Only return globbed files that actually exist
3623 (cannot also set NOGLOB)
3624 PARSEFS_NOCACHE - Do not add filenames to the strcache (caller frees)
3625 */
3626
3627void *
3628parse_file_seq (char **stringp, unsigned int size, int stopchar,
3629 const char *prefix, int flags
3630 IF_WITH_ALLOC_CACHES_PARAM(struct alloccache *alloc_cache) )
3631{
3632 extern void dir_setup_glob (glob_t *glob);
3633
3634 /* tmp points to tmpbuf after the prefix, if any.
3635 tp is the end of the buffer. */
3636 static char *tmpbuf = NULL;
3637 static int tmpbuf_len = 0;
3638
3639 int cachep = (! (flags & PARSEFS_NOCACHE));
3640
3641 struct nameseq *new = 0;
3642 struct nameseq **newp = &new;
3643#ifndef CONFIG_WITH_ALLOC_CACHES
3644#define NEWELT(_n) do { \
3645 const char *__n = (_n); \
3646 *newp = xcalloc (size); \
3647 (*newp)->name = (cachep ? strcache_add (__n) : xstrdup (__n)); \
3648 newp = &(*newp)->next; \
3649 } while(0)
3650#else
3651# define NEWELT(_n) do { \
3652 const char *__n = (_n); \
3653 *newp = alloccache_calloc (alloc_cache); \
3654 (*newp)->name = (cachep ? strcache_add (__n) : xstrdup (__n)); \
3655 newp = &(*newp)->next; \
3656 } while(0)
3657#endif
3658
3659 char *p;
3660 glob_t gl;
3661 char *tp;
3662
3663#ifdef VMS
3664# define VMS_COMMA ','
3665#else
3666# define VMS_COMMA 0
3667#endif
3668
3669 if (size < sizeof (struct nameseq))
3670 size = sizeof (struct nameseq);
3671
3672 if (! (flags & PARSEFS_NOGLOB))
3673 dir_setup_glob (&gl);
3674
3675 /* Get enough temporary space to construct the largest possible target. */
3676 {
3677 int l = strlen (*stringp) + 1;
3678 if (l > tmpbuf_len)
3679 {
3680 tmpbuf = xrealloc (tmpbuf, l);
3681 tmpbuf_len = l;
3682 }
3683 }
3684 tp = tmpbuf;
3685
3686 /* Parse STRING. P will always point to the end of the parsed content. */
3687 p = *stringp;
3688 while (1)
3689 {
3690 const char *name;
3691 const char **nlist = 0;
3692 char *tildep = 0;
3693#ifndef NO_ARCHIVES
3694 char *arname = 0;
3695 char *memname = 0;
3696#endif
3697 char *s;
3698 int nlen;
3699 int i;
3700
3701 /* Skip whitespace; at the end of the string or STOPCHAR we're done. */
3702 p = next_token (p);
3703 if (*p == '\0' || *p == stopchar)
3704 break;
3705
3706 /* There are names left, so find the end of the next name.
3707 Throughout this iteration S points to the start. */
3708 s = p;
3709 p = find_char_unquote (p, stopchar, VMS_COMMA, 1, 0);
3710#ifdef VMS
3711 /* convert comma separated list to space separated */
3712 if (p && *p == ',')
3713 *p =' ';
3714#endif
3715#ifdef _AMIGA
3716 if (stopchar == ':' && p && *p == ':'
3717 && !(isspace ((unsigned char)p[1]) || !p[1]
3718 || isspace ((unsigned char)p[-1])))
3719 p = find_char_unquote (p+1, stopchar, VMS_COMMA, 1, 0);
3720#endif
3721#ifdef HAVE_DOS_PATHS
3722 /* For DOS paths, skip a "C:\..." or a "C:/..." until we find the
3723 first colon which isn't followed by a slash or a backslash.
3724 Note that tokens separated by spaces should be treated as separate
3725 tokens since make doesn't allow path names with spaces */
3726 if (stopchar == ':')
3727 while (p != 0 && !isspace ((unsigned char)*p) &&
3728 (p[1] == '\\' || p[1] == '/') && isalpha ((unsigned char)p[-1]))
3729 p = find_char_unquote (p + 1, stopchar, VMS_COMMA, 1, 0);
3730#endif
3731 if (p == 0)
3732 p = s + strlen (s);
3733
3734 /* Strip leading "this directory" references. */
3735 if (! (flags & PARSEFS_NOSTRIP))
3736#ifdef VMS
3737 /* Skip leading `[]'s. */
3738 while (p - s > 2 && s[0] == '[' && s[1] == ']')
3739#else
3740 /* Skip leading `./'s. */
3741 while (p - s > 2 && s[0] == '.' && s[1] == '/')
3742#endif
3743 {
3744 /* Skip "./" and all following slashes. */
3745 s += 2;
3746 while (*s == '/')
3747 ++s;
3748 }
3749
3750 /* Extract the filename just found, and skip it.
3751 Set NAME to the string, and NLEN to its length. */
3752
3753 if (s == p)
3754 {
3755 /* The name was stripped to empty ("./"). */
3756#if defined(VMS)
3757 continue;
3758#elif defined(_AMIGA)
3759 /* PDS-- This cannot be right!! */
3760 tp[0] = '\0';
3761 nlen = 0;
3762#else
3763 tp[0] = '.';
3764 tp[1] = '/';
3765 tp[2] = '\0';
3766 nlen = 2;
3767#endif
3768 }
3769 else
3770 {
3771#ifdef VMS
3772/* VMS filenames can have a ':' in them but they have to be '\'ed but we need
3773 * to remove this '\' before we can use the filename.
3774 * xstrdup called because S may be read-only string constant.
3775 */
3776 char *n = tp;
3777 while (s < p)
3778 {
3779 if (s[0] == '\\' && s[1] == ':')
3780 ++s;
3781 *(n++) = *(s++);
3782 }
3783 n[0] = '\0';
3784 nlen = strlen (tp);
3785#else
3786 nlen = p - s;
3787 memcpy (tp, s, nlen);
3788 tp[nlen] = '\0';
3789#endif
3790 }
3791
3792 /* At this point, TP points to the element and NLEN is its length. */
3793
3794#ifndef NO_ARCHIVES
3795 /* If this is the start of an archive group that isn't complete, set up
3796 to add the archive prefix for future files. A file list like:
3797 "libf.a(x.o y.o z.o)" needs to be expanded as:
3798 "libf.a(x.o) libf.a(y.o) libf.a(z.o)"
3799
3800 TP == TMP means we're not already in an archive group. Ignore
3801 something starting with `(', as that cannot actually be an
3802 archive-member reference (and treating it as such results in an empty
3803 file name, which causes much lossage). Also if it ends in ")" then
3804 it's a complete reference so we don't need to treat it specially.
3805
3806 Finally, note that archive groups must end with ')' as the last
3807 character, so ensure there's some word ending like that before
3808 considering this an archive group. */
3809 if (! (flags & PARSEFS_NOAR)
3810 && tp == tmpbuf && tp[0] != '(' && tp[nlen-1] != ')')
3811 {
3812 char *n = strchr (tp, '(');
3813 if (n)
3814 {
3815 /* This looks like the first element in an open archive group.
3816 A valid group MUST have ')' as the last character. */
3817 const char *e = p + nlen;
3818 do
3819 {
3820 e = next_token (e);
3821 /* Find the end of this word. We don't want to unquote and
3822 we don't care about quoting since we're looking for the
3823 last char in the word. */
3824 while (*e != '\0' && *e != stopchar && *e != VMS_COMMA
3825 && ! isblank ((unsigned char) *e))
3826 ++e;
3827 if (e[-1] == ')')
3828 {
3829 /* Found the end, so this is the first element in an
3830 open archive group. It looks like "lib(mem".
3831 Reset TP past the open paren. */
3832 nlen -= (n + 1) - tp;
3833 tp = n + 1;
3834
3835 /* If we have just "lib(", part of something like
3836 "lib( a b)", go to the next item. */
3837 if (! nlen)
3838 continue;
3839
3840 /* We can stop looking now. */
3841 break;
3842 }
3843 }
3844 while (*e != '\0');
3845 }
3846 }
3847
3848 /* If we are inside an archive group, make sure it has an end. */
3849 if (tp > tmpbuf)
3850 {
3851 if (tp[nlen-1] == ')')
3852 {
3853 /* This is the natural end; reset TP. */
3854 tp = tmpbuf;
3855
3856 /* This is just ")", something like "lib(a b )": skip it. */
3857 if (nlen == 1)
3858 continue;
3859 }
3860 else
3861 {
3862 /* Not the end, so add a "fake" end. */
3863 tp[nlen++] = ')';
3864 tp[nlen] = '\0';
3865 }
3866 }
3867#endif
3868
3869 /* If we're not globbing we're done: add it to the end of the chain.
3870 Go to the next item in the string. */
3871 if (flags & PARSEFS_NOGLOB)
3872 {
3873 NEWELT (concat (2, prefix, tp));
3874 continue;
3875 }
3876
3877 /* If we get here we know we're doing glob expansion.
3878 TP is a string in tmpbuf. NLEN is no longer used.
3879 We may need to do more work: after this NAME will be set. */
3880 name = tp;
3881
3882 /* Expand tilde if applicable. */
3883 if (tp[0] == '~')
3884 {
3885 tildep = tilde_expand (tp);
3886 if (tildep != 0)
3887 name = tildep;
3888 }
3889
3890#ifndef NO_ARCHIVES
3891 /* If NAME is an archive member reference replace it with the archive
3892 file name, and save the member name in MEMNAME. We will glob on the
3893 archive name and then reattach MEMNAME later. */
3894 if (! (flags & PARSEFS_NOAR) && ar_name (name))
3895 {
3896 ar_parse_name (name, &arname, &memname);
3897 name = arname;
3898 }
3899#endif /* !NO_ARCHIVES */
3900
3901 switch (glob (name, GLOB_NOSORT|GLOB_ALTDIRFUNC, NULL, &gl))
3902 {
3903 case GLOB_NOSPACE:
3904 fatal (NILF, _("virtual memory exhausted"));
3905
3906 case 0:
3907 /* Success. */
3908 i = gl.gl_pathc;
3909 nlist = (const char **)gl.gl_pathv;
3910 break;
3911
3912 case GLOB_NOMATCH:
3913 /* If we want only existing items, skip this one. */
3914 if (flags & PARSEFS_EXISTS)
3915 {
3916 i = 0;
3917 break;
3918 }
3919 /* FALLTHROUGH */
3920
3921 default:
3922 /* By default keep this name. */
3923 i = 1;
3924 nlist = &name;
3925 break;
3926 }
3927
3928 /* For each matched element, add it to the list. */
3929 while (i-- > 0)
3930#ifndef NO_ARCHIVES
3931 if (memname != 0)
3932 {
3933 /* Try to glob on MEMNAME within the archive. */
3934 struct nameseq *found = ar_glob (nlist[i], memname, size);
3935 if (! found)
3936 /* No matches. Use MEMNAME as-is. */
3937 NEWELT (concat (5, prefix, nlist[i], "(", memname, ")"));
3938 else
3939 {
3940 /* We got a chain of items. Attach them. */
3941 (*newp)->next = found;
3942
3943 /* Find and set the new end. Massage names if necessary. */
3944 while (1)
3945 {
3946 if (! cachep)
3947 found->name = xstrdup (concat (2, prefix, name));
3948 else if (prefix)
3949 found->name = strcache_add (concat (2, prefix, name));
3950
3951 if (found->next == 0)
3952 break;
3953
3954 found = found->next;
3955 }
3956 newp = &found->next;
3957 }
3958 }
3959 else
3960#endif /* !NO_ARCHIVES */
3961 NEWELT (concat (2, prefix, nlist[i]));
3962
3963 globfree (&gl);
3964
3965#ifndef NO_ARCHIVES
3966 if (arname)
3967 free (arname);
3968#endif
3969
3970 if (tildep)
3971 free (tildep);
3972 }
3973
3974 *stringp = p;
3975 return new;
3976}
3977
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette