Import of FreeBSD rev. 1.2 by mlaier:
[dragonfly.git] / usr.bin / make / var.c
1 /*-
2  * Copyright (c) 1988, 1989, 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (c) 1989 by Berkeley Softworks
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Adam de Boor.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  * @(#)var.c    8.3 (Berkeley) 3/19/94
39  * $FreeBSD: src/usr.bin/make/var.c,v 1.83 2005/02/11 10:49:01 harti Exp $
40  * $DragonFly: src/usr.bin/make/var.c,v 1.100 2005/02/15 11:15:11 okumoto Exp $
41  */
42
43 /*-
44  * var.c --
45  *      Variable-handling functions
46  *
47  * Interface:
48  *      Var_Set             Set the value of a variable in the given
49  *                          context. The variable is created if it doesn't
50  *                          yet exist. The value and variable name need not
51  *                          be preserved.
52  *
53  *      Var_Append          Append more characters to an existing variable
54  *                          in the given context. The variable needn't
55  *                          exist already -- it will be created if it doesn't.
56  *                          A space is placed between the old value and the
57  *                          new one.
58  *
59  *      Var_Exists          See if a variable exists.
60  *
61  *      Var_Value           Return the value of a variable in a context or
62  *                          NULL if the variable is undefined.
63  *
64  *      Var_Subst           Substitute named variable, or all variables if
65  *                          NULL in a string using
66  *                          the given context as the top-most one. If the
67  *                          third argument is non-zero, Parse_Error is
68  *                          called if any variables are undefined.
69  *
70  *      Var_Parse           Parse a variable expansion from a string and
71  *                          return the result and the number of characters
72  *                          consumed.
73  *
74  *      Var_Delete          Delete a variable in a context.
75  *
76  *      Var_Init            Initialize this module.
77  *
78  * Debugging:
79  *      Var_Dump            Print out all variables defined in the given
80  *                          context.
81  *
82  * XXX: There's a lot of duplication in these functions.
83  */
84
85 #include <ctype.h>
86 #include <stdlib.h>
87 #include <string.h>
88
89 #include "buf.h"
90 #include "config.h"
91 #include "globals.h"
92 #include "GNode.h"
93 #include "make.h"
94 #include "nonints.h"
95 #include "parse.h"
96 #include "str.h"
97 #include "targ.h"
98 #include "util.h"
99 #include "var.h"
100
101 /*
102  * This is a harmless return value for Var_Parse that can be used by Var_Subst
103  * to determine if there was an error in parsing -- easier than returning
104  * a flag, as things outside this module don't give a hoot.
105  */
106 char    var_Error[] = "";
107
108 /*
109  * Similar to var_Error, but returned when the 'err' flag for Var_Parse is
110  * set false. Why not just use a constant? Well, gcc likes to condense
111  * identical string instances...
112  */
113 static char     varNoError[] = "";
114
115 /*
116  * Internally, variables are contained in four different contexts.
117  *      1) the environment. They may not be changed. If an environment
118  *          variable is appended-to, the result is placed in the global
119  *          context.
120  *      2) the global context. Variables set in the Makefile are located in
121  *          the global context. It is the penultimate context searched when
122  *          substituting.
123  *      3) the command-line context. All variables set on the command line
124  *         are placed in this context. They are UNALTERABLE once placed here.
125  *      4) the local context. Each target has associated with it a context
126  *         list. On this list are located the structures describing such
127  *         local variables as $(@) and $(*)
128  * The four contexts are searched in the reverse order from which they are
129  * listed.
130  */
131 GNode          *VAR_GLOBAL;   /* variables from the makefile */
132 GNode          *VAR_CMD;      /* variables defined on the command-line */
133
134 #define FIND_CMD        0x1   /* look in VAR_CMD when searching */
135 #define FIND_GLOBAL     0x2   /* look in VAR_GLOBAL as well */
136 #define FIND_ENV        0x4   /* look in the environment also */
137
138 #define OPEN_PAREN              '('
139 #define CLOSE_PAREN             ')'
140 #define OPEN_BRACE              '{'
141 #define CLOSE_BRACE             '}'
142
143 static char *VarGetPattern(GNode *, int, char **, int, int *, size_t *,
144                            VarPattern *);
145 static int VarPrintVar(void *, void *);
146
147 /*
148  * Create a Var object.
149  *
150  * @param name          Name of variable.
151  * @param value         Value of variable.
152  * @param flags         Flags set on variable.
153  */
154 static Var *
155 VarCreate(const char name[], const char value[], int flags)
156 {
157         Var *v;
158
159         v = emalloc(sizeof(Var));
160         v->name = estrdup(name);
161         v->val  = Buf_Init(0);
162         v->flags        = flags;
163
164         if (value != NULL) {
165                 Buf_Append(v->val, value);
166         }
167         return (v);
168 }
169
170 /*
171  * Destroy a Var object.
172  *
173  * @param v     Object to destroy.
174  * @param f     true if internal buffer in Buffer object is to be
175  *              removed.
176  */
177 static void
178 VarDestroy(Var *v, Boolean f)
179 {
180
181         Buf_Destroy(v->val, f);
182         free(v->name);
183         free(v);
184 }
185
186 /*-
187  *-----------------------------------------------------------------------
188  * VarCmp  --
189  *      See if the given variable matches the named one. Called from
190  *      Lst_Find when searching for a variable of a given name.
191  *
192  * Results:
193  *      0 if they match. non-zero otherwise.
194  *
195  * Side Effects:
196  *      none
197  *-----------------------------------------------------------------------
198  */
199 static int
200 VarCmp(const void *v, const void *name)
201 {
202
203     return (strcmp(name, ((const Var *)v)->name));
204 }
205
206 /*-
207  *-----------------------------------------------------------------------
208  * VarPossiblyExpand --
209  *      Expand a variable name's embedded variables in the given context.
210  *
211  * Results:
212  *      The contents of name, possibly expanded.
213  *-----------------------------------------------------------------------
214  */
215 static char *
216 VarPossiblyExpand(const char *name, GNode *ctxt)
217 {
218         char    *tmp;
219
220         /*
221          * XXX make a temporary copy of the name because Var_Subst insists
222          * on writing into the string.
223          */
224         tmp = estrdup(name);
225         if (strchr(name, '$') != NULL) {
226                 Buffer  *buf;
227                 char    *str;
228
229                 buf = Var_Subst(NULL, tmp, ctxt, 0);
230                 str = Buf_GetAll(buf, NULL);
231                 Buf_Destroy(buf, FALSE);
232
233                 return(str);
234         } else {
235                 return(tmp);
236         }
237 }
238
239 /*-
240  *-----------------------------------------------------------------------
241  * VarFind --
242  *      Find the given variable in the given context and any other contexts
243  *      indicated.
244  *
245  *      Flags:
246  *              FIND_GLOBAL     set means look in the VAR_GLOBAL context too
247  *              FIND_CMD        set means to look in the VAR_CMD context too
248  *              FIND_ENV        set means to look in the environment
249  *
250  * Results:
251  *      A pointer to the structure describing the desired variable or
252  *      NULL if the variable does not exist.
253  *
254  * Side Effects:
255  *      None
256  *-----------------------------------------------------------------------
257  */
258 static Var *
259 VarFind(const char *name, GNode *ctxt, int flags)
260 {
261         Boolean localCheckEnvFirst;
262         LstNode *var;
263         char    *env;
264
265         /*
266          * If the variable name begins with a '.', it could very well be one of
267          * the local ones.  We check the name against all the local variables
268          * and substitute the short version in for 'name' if it matches one of
269          * them.
270          */
271         if (name[0] == '.') {
272                 switch (name[1]) {
273                 case 'A':
274                         if (!strcmp(name, ".ALLSRC"))
275                                 name = ALLSRC;
276                         if (!strcmp(name, ".ARCHIVE"))
277                                 name = ARCHIVE;
278                         break;
279                 case 'I':
280                         if (!strcmp(name, ".IMPSRC"))
281                                 name = IMPSRC;
282                         break;
283                 case 'M':
284                         if (!strcmp(name, ".MEMBER"))
285                                 name = MEMBER;
286                         break;
287                 case 'O':
288                         if (!strcmp(name, ".OODATE"))
289                                 name = OODATE;
290                         break;
291                 case 'P':
292                         if (!strcmp(name, ".PREFIX"))
293                                 name = PREFIX;
294                         break;
295                 case 'T':
296                         if (!strcmp(name, ".TARGET"))
297                                 name = TARGET;
298                         break;
299                 default:
300                         break;
301                 }
302         }
303
304         /*
305          * Note whether this is one of the specific variables we were told
306          * through the -E flag to use environment-variable-override for.
307          */
308         if (Lst_Find(&envFirstVars, name, (CompareProc *)strcmp) != NULL) {
309                 localCheckEnvFirst = TRUE;
310         } else {
311                 localCheckEnvFirst = FALSE;
312         }
313
314         /*
315          * First look for the variable in the given context. If it's not there,
316          * look for it in VAR_CMD, VAR_GLOBAL and the environment,
317          * in that order, depending on the FIND_* flags in 'flags'
318          */
319         var = Lst_Find(&ctxt->context, name, VarCmp);
320         if (var != NULL) {
321                 /* got it */
322                 return (Lst_Datum(var));
323         }
324
325         /* not there - try command line context */
326         if ((flags & FIND_CMD) && (ctxt != VAR_CMD)) {
327                 var = Lst_Find(&VAR_CMD->context, name, VarCmp);
328                 if (var != NULL)
329                         return (Lst_Datum(var));
330         }
331
332         /* not there - try global context, but only if not -e/-E */
333         if ((flags & FIND_GLOBAL) && (ctxt != VAR_GLOBAL) &&
334             !checkEnvFirst && !localCheckEnvFirst) {
335                 var = Lst_Find(&VAR_GLOBAL->context, name, VarCmp);
336                 if (var != NULL)
337                         return (Lst_Datum(var));
338         }
339
340         if (!(flags & FIND_ENV))
341                 /* we were not told to look into the environment */
342                 return (NULL);
343
344         /* look in the environment */
345         if ((env = getenv(name)) != NULL) {
346                 /* craft this variable from the environment value */
347                 return (VarCreate(name, env, VAR_FROM_ENV));
348         }
349
350         /* deferred check for the environment (in case of -e/-E) */
351         if ((checkEnvFirst || localCheckEnvFirst) &&
352             (flags & FIND_GLOBAL) && (ctxt != VAR_GLOBAL)) {
353                 var = Lst_Find(&VAR_GLOBAL->context, name, VarCmp);
354                 if (var != NULL)
355                         return (Lst_Datum(var));
356         }
357         return (NULL);
358 }
359
360 /*-
361  *-----------------------------------------------------------------------
362  * VarAdd  --
363  *      Add a new variable of name name and value val to the given context.
364  *
365  * Results:
366  *      None
367  *
368  * Side Effects:
369  *      The new variable is placed at the front of the given context
370  *      The name and val arguments are duplicated so they may
371  *      safely be freed.
372  *-----------------------------------------------------------------------
373  */
374 static void
375 VarAdd(const char *name, const char *val, GNode *ctxt)
376 {
377
378     Lst_AtFront(&ctxt->context, VarCreate(name, val, 0));
379
380     DEBUGF(VAR, ("%s:%s = %s\n", ctxt->name, name, val));
381 }
382
383 /*-
384  *-----------------------------------------------------------------------
385  * Var_Delete --
386  *      Remove a variable from a context.
387  *
388  * Results:
389  *      None.
390  *
391  * Side Effects:
392  *      The Var structure is removed and freed.
393  *
394  *-----------------------------------------------------------------------
395  */
396 void
397 Var_Delete(const char *name, GNode *ctxt)
398 {
399     LstNode *ln;
400
401     DEBUGF(VAR, ("%s:delete %s\n", ctxt->name, name));
402     ln = Lst_Find(&ctxt->context, name, VarCmp);
403     if (ln != NULL) {
404         VarDestroy(Lst_Datum(ln), TRUE);
405         Lst_Remove(&ctxt->context, ln);
406     }
407 }
408
409 /*-
410  *-----------------------------------------------------------------------
411  * Var_Set --
412  *      Set the variable name to the value val in the given context.
413  *
414  * Results:
415  *      None.
416  *
417  * Side Effects:
418  *      If the variable doesn't yet exist, a new record is created for it.
419  *      Else the old value is freed and the new one stuck in its place
420  *
421  * Notes:
422  *      The variable is searched for only in its context before being
423  *      created in that context. I.e. if the context is VAR_GLOBAL,
424  *      only VAR_GLOBAL->context is searched. Likewise if it is VAR_CMD, only
425  *      VAR_CMD->context is searched. This is done to avoid the literally
426  *      thousands of unnecessary strcmp's that used to be done to
427  *      set, say, $(@) or $(<).
428  *-----------------------------------------------------------------------
429  */
430 void
431 Var_Set(const char *name, const char *val, GNode *ctxt)
432 {
433     Var         *v;
434     char        *n;
435
436     /*
437      * We only look for a variable in the given context since anything set
438      * here will override anything in a lower context, so there's not much
439      * point in searching them all just to save a bit of memory...
440      */
441     n = VarPossiblyExpand(name, ctxt);
442     v = VarFind(n, ctxt, 0);
443     if (v == NULL) {
444         VarAdd(n, val, ctxt);
445     } else {
446         Buf_Clear(v->val);
447         Buf_Append(v->val, val);
448
449         DEBUGF(VAR, ("%s:%s = %s\n", ctxt->name, n, val));
450     }
451     /*
452      * Any variables given on the command line are automatically exported
453      * to the environment (as per POSIX standard)
454      */
455     if (ctxt == VAR_CMD || (v != (Var *)NULL && (v->flags & VAR_TO_ENV))) {
456         setenv(n, val, 1);
457     }
458     free(n);
459 }
460
461 /*
462  * Var_SetEnv --
463  *      Set the VAR_TO_ENV flag on a variable
464  */
465 void
466 Var_SetEnv(const char *name, GNode *ctxt)
467 {
468     Var *v;
469
470     v = VarFind(name, ctxt, FIND_CMD|FIND_GLOBAL|FIND_ENV);
471     if (v) {
472         if ((v->flags & VAR_TO_ENV) == 0) {
473             v->flags |= VAR_TO_ENV;
474             setenv(v->name, Buf_GetAll(v->val, NULL), 1);
475         }
476     } else {
477         Error("Cannot set environment flag on non-existant variable %s", name);
478     }
479 }
480
481 /*-
482  *-----------------------------------------------------------------------
483  * Var_Append --
484  *      The variable of the given name has the given value appended to it in
485  *      the given context.
486  *
487  * Results:
488  *      None
489  *
490  * Side Effects:
491  *      If the variable doesn't exist, it is created. Else the strings
492  *      are concatenated (with a space in between).
493  *
494  * Notes:
495  *      Only if the variable is being sought in the global context is the
496  *      environment searched.
497  *      XXX: Knows its calling circumstances in that if called with ctxt
498  *      an actual target, it will only search that context since only
499  *      a local variable could be being appended to. This is actually
500  *      a big win and must be tolerated.
501  *-----------------------------------------------------------------------
502  */
503 void
504 Var_Append(const char *name, const char *val, GNode *ctxt)
505 {
506     Var         *v;
507     char        *n;
508
509     n = VarPossiblyExpand(name, ctxt);
510     v = VarFind(n, ctxt, (ctxt == VAR_GLOBAL) ? FIND_ENV : 0);
511
512     if (v == NULL) {
513         VarAdd(n, val, ctxt);
514     } else {
515         Buf_AddByte(v->val, (Byte)' ');
516         Buf_Append(v->val, val);
517
518         DEBUGF(VAR, ("%s:%s = %s\n", ctxt->name, n,
519                (char *)Buf_GetAll(v->val, (size_t *)NULL)));
520
521         if (v->flags & VAR_FROM_ENV) {
522             /*
523              * If the original variable came from the environment, we
524              * have to install it in the global context (we could place
525              * it in the environment, but then we should provide a way to
526              * export other variables...)
527              */
528             v->flags &= ~VAR_FROM_ENV;
529             Lst_AtFront(&ctxt->context, v);
530         }
531     }
532     free(n);
533 }
534
535 /*-
536  *-----------------------------------------------------------------------
537  * Var_Exists --
538  *      See if the given variable exists.
539  *
540  * Results:
541  *      TRUE if it does, FALSE if it doesn't
542  *
543  * Side Effects:
544  *      None.
545  *
546  *-----------------------------------------------------------------------
547  */
548 Boolean
549 Var_Exists(const char *name, GNode *ctxt)
550 {
551     Var         *v;
552     char        *n;
553
554     n = VarPossiblyExpand(name, ctxt);
555     v = VarFind(n, ctxt, FIND_CMD|FIND_GLOBAL|FIND_ENV);
556     free(n);
557
558     if (v == NULL) {
559         return (FALSE);
560     } else if (v->flags & VAR_FROM_ENV) {
561         VarDestroy(v, TRUE);
562     }
563     return (TRUE);
564 }
565
566 /*-
567  *-----------------------------------------------------------------------
568  * Var_Value --
569  *      Return the value of the named variable in the given context
570  *
571  * Results:
572  *      The value if the variable exists, NULL if it doesn't
573  *
574  * Side Effects:
575  *      None
576  *-----------------------------------------------------------------------
577  */
578 char *
579 Var_Value(const char *name, GNode *ctxt, char **frp)
580 {
581     Var         *v;
582     char        *n;
583
584     n = VarPossiblyExpand(name, ctxt);
585     v = VarFind(n, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
586     free(n);
587     *frp = NULL;
588     if (v != NULL) {
589         char *p = (char *)Buf_GetAll(v->val, (size_t *)NULL);
590
591         if (v->flags & VAR_FROM_ENV) {
592             VarDestroy(v, FALSE);
593             *frp = p;
594         }
595         return (p);
596     } else {
597         return (NULL);
598     }
599 }
600
601 /*-
602  *-----------------------------------------------------------------------
603  * VarModify --
604  *      Modify each of the words of the passed string using the given
605  *      function. Used to implement all modifiers.
606  *
607  * Results:
608  *      A string of all the words modified appropriately.
609  *
610  * Side Effects:
611  *      None.
612  *
613  *-----------------------------------------------------------------------
614  */
615 static char *
616 VarModify(char *str, VarModifyProc *modProc, void *datum)
617 {
618     Buffer        *buf;             /* Buffer for the new string */
619     Boolean       addSpace;         /* TRUE if need to add a space to the
620                                      * buffer before adding the trimmed
621                                      * word */
622     char **av;                      /* word list [first word does not count] */
623     int ac, i;
624
625     buf = Buf_Init(0);
626     addSpace = FALSE;
627
628     av = brk_string(str, &ac, FALSE);
629
630     for (i = 1; i < ac; i++)
631         addSpace = (*modProc)(av[i], addSpace, buf, datum);
632
633     Buf_AddByte(buf, '\0');
634     str = (char *)Buf_GetAll(buf, (size_t *)NULL);
635     Buf_Destroy(buf, FALSE);
636     return (str);
637 }
638
639 /*-
640  *-----------------------------------------------------------------------
641  * VarSortWords --
642  *      Sort the words in the string.
643  *
644  * Input:
645  *      str             String whose words should be sorted
646  *      cmp             A comparison function to control the ordering
647  *
648  * Results:
649  *      A string containing the words sorted
650  *
651  * Side Effects:
652  *      None.
653  *
654  *-----------------------------------------------------------------------
655  */
656 static char *
657 VarSortWords(char *str, int (*cmp)(const void *, const void *))
658 {
659         Buffer *buf;
660         char **av;
661         int ac, i;
662
663         buf = Buf_Init(0);
664         av = brk_string(str, &ac, FALSE);
665         qsort(av + 1, ac - 1, sizeof(char *), cmp);
666         for (i = 1; i < ac; i++) {
667                 Buf_Append(buf, av[i]);
668                 Buf_AddByte(buf, (Byte)((i < ac - 1) ? ' ' : '\0'));
669         }
670         str = (char *)Buf_GetAll(buf, (size_t *)NULL);
671         Buf_Destroy(buf, FALSE);
672         return (str);
673 }
674
675 static int
676 SortIncreasing(const void *l, const void *r)
677 {
678
679         return (strcmp(*(const char* const*)l, *(const char* const*)r));
680 }
681
682 /*-
683  *-----------------------------------------------------------------------
684  * VarGetPattern --
685  *      Pass through the tstr looking for 1) escaped delimiters,
686  *      '$'s and backslashes (place the escaped character in
687  *      uninterpreted) and 2) unescaped $'s that aren't before
688  *      the delimiter (expand the variable substitution unless flags
689  *      has VAR_NOSUBST set).
690  *      Return the expanded string or NULL if the delimiter was missing
691  *      If pattern is specified, handle escaped ampersands, and replace
692  *      unescaped ampersands with the lhs of the pattern.
693  *
694  * Results:
695  *      A string of all the words modified appropriately.
696  *      If length is specified, return the string length of the buffer
697  *      If flags is specified and the last character of the pattern is a
698  *      $ set the VAR_MATCH_END bit of flags.
699  *
700  * Side Effects:
701  *      None.
702  *-----------------------------------------------------------------------
703  */
704 static char *
705 VarGetPattern(GNode *ctxt, int err, char **tstr, int delim, int *flags,
706     size_t *length, VarPattern *pattern)
707 {
708     char *cp;
709     Buffer *buf = Buf_Init(0);
710     size_t junk;
711
712     if (length == NULL)
713         length = &junk;
714
715 #define IS_A_MATCH(cp, delim) \
716     ((cp[0] == '\\') && ((cp[1] == delim) ||  \
717      (cp[1] == '\\') || (cp[1] == '$') || (pattern && (cp[1] == '&'))))
718
719     /*
720      * Skim through until the matching delimiter is found;
721      * pick up variable substitutions on the way. Also allow
722      * backslashes to quote the delimiter, $, and \, but don't
723      * touch other backslashes.
724      */
725     for (cp = *tstr; *cp && (*cp != delim); cp++) {
726         if (IS_A_MATCH(cp, delim)) {
727             Buf_AddByte(buf, (Byte)cp[1]);
728             cp++;
729         } else if (*cp == '$') {
730             if (cp[1] == delim) {
731                 if (flags == NULL)
732                     Buf_AddByte(buf, (Byte)*cp);
733                 else
734                     /*
735                      * Unescaped $ at end of pattern => anchor
736                      * pattern at end.
737                      */
738                     *flags |= VAR_MATCH_END;
739             } else {
740                 if (flags == NULL || (*flags & VAR_NOSUBST) == 0) {
741                     char   *cp2;
742                     size_t len;
743                     Boolean freeIt;
744
745                     /*
746                      * If unescaped dollar sign not before the
747                      * delimiter, assume it's a variable
748                      * substitution and recurse.
749                      */
750                     cp2 = Var_Parse(cp, ctxt, err, &len, &freeIt);
751                     Buf_Append(buf, cp2);
752                     if (freeIt)
753                         free(cp2);
754                     cp += len - 1;
755                 } else {
756                     char *cp2 = &cp[1];
757
758                     if (*cp2 == OPEN_PAREN || *cp2 == OPEN_BRACE) {
759                         /*
760                          * Find the end of this variable reference
761                          * and suck it in without further ado.
762                          * It will be interperated later.
763                          */
764                         int have = *cp2;
765                         int want = (*cp2 == OPEN_PAREN) ? CLOSE_PAREN : CLOSE_BRACE;
766                         int depth = 1;
767
768                         for (++cp2; *cp2 != '\0' && depth > 0; ++cp2) {
769                             if (cp2[-1] != '\\') {
770                                 if (*cp2 == have)
771                                     ++depth;
772                                 if (*cp2 == want)
773                                     --depth;
774                             }
775                         }
776                         Buf_AppendRange(buf, cp, cp2);
777                         cp = --cp2;
778                     } else
779                         Buf_AddByte(buf, (Byte)*cp);
780                 }
781             }
782         }
783         else if (pattern && *cp == '&')
784             Buf_AddBytes(buf, pattern->leftLen, (Byte *)pattern->lhs);
785         else
786             Buf_AddByte(buf, (Byte)*cp);
787     }
788
789     Buf_AddByte(buf, (Byte)'\0');
790
791     if (*cp != delim) {
792         *tstr = cp;
793         *length = 0;
794         return (NULL);
795     } else {
796         *tstr = ++cp;
797         cp = (char *)Buf_GetAll(buf, length);
798         *length -= 1;   /* Don't count the NULL */
799         Buf_Destroy(buf, FALSE);
800         return (cp);
801     }
802 }
803
804 /*-
805  *-----------------------------------------------------------------------
806  * Var_Quote --
807  *      Quote shell meta-characters in the string
808  *
809  * Results:
810  *      The quoted string
811  *
812  * Side Effects:
813  *      None.
814  *
815  *-----------------------------------------------------------------------
816  */
817 char *
818 Var_Quote(const char *str)
819 {
820     Buffer       *buf;
821     /* This should cover most shells :-( */
822     static char meta[] = "\n \t'`\";&<>()|*?{}[]\\$!#^~";
823     char          *ret;
824
825     buf = Buf_Init(MAKE_BSIZE);
826     for (; *str; str++) {
827         if (strchr(meta, *str) != NULL)
828             Buf_AddByte(buf, (Byte)'\\');
829         Buf_AddByte(buf, (Byte)*str);
830     }
831     Buf_AddByte(buf, (Byte)'\0');
832     ret = Buf_GetAll(buf, NULL);
833     Buf_Destroy(buf, FALSE);
834     return (ret);
835 }
836
837 /*-
838  *-----------------------------------------------------------------------
839  * VarREError --
840  *      Print the error caused by a regcomp or regexec call.
841  *
842  * Results:
843  *      None.
844  *
845  * Side Effects:
846  *      An error gets printed.
847  *
848  *-----------------------------------------------------------------------
849  */
850 void
851 VarREError(int err, regex_t *pat, const char *str)
852 {
853     char *errbuf;
854     int errlen;
855
856     errlen = regerror(err, pat, 0, 0);
857     errbuf = emalloc(errlen);
858     regerror(err, pat, errbuf, errlen);
859     Error("%s: %s", str, errbuf);
860     free(errbuf);
861 }
862
863 /*
864  * Make sure this variable is fully expanded.
865  */
866 char *
867 VarExpand(Var *v, GNode *ctxt, Boolean err)
868 {
869         char    *value;
870         char    *result;
871
872         if (v->flags & VAR_IN_USE) {
873                 Fatal("Variable %s is recursive.", v->name);
874                 /* NOTREACHED */
875         }
876
877         v->flags |= VAR_IN_USE;
878
879         /*
880          * Before doing any modification, we have to make sure the
881          * value has been fully expanded. If it looks like recursion
882          * might be necessary (there's a dollar sign somewhere in the
883          * variable's value) we just call Var_Subst to do any other
884          * substitutions that are necessary. Note that the value
885          * returned by Var_Subst will have been
886          * dynamically-allocated, so it will need freeing when we
887          * return.
888          */
889         value = (char *)Buf_GetAll(v->val, (size_t *)NULL);
890         if (strchr(value, '$') == NULL) {
891                 result = strdup(value);
892         } else {
893                 Buffer  *buf;
894
895                 buf = Var_Subst(NULL, value, ctxt, err);
896                 result = Buf_GetAll(buf, NULL);
897                 Buf_Destroy(buf, FALSE);
898         }
899
900         v->flags &= ~VAR_IN_USE;
901
902         return (result);
903 }
904
905 /*
906  * Check if brackets contain a variable name.
907  */
908 static char *
909 VarParseLong(char foo[], GNode *ctxt, Boolean err, size_t *lengthPtr,
910         Boolean *freePtr)
911 {
912         const char      *input = foo;
913         char            *rw_str = foo;
914
915         Var     *v;             /* Variable in invocation */
916         const char      *vname;
917         size_t  vlen;   /* length of variable name, after embedded variable
918                          * expansion */
919         Boolean haveModifier;   /* TRUE if have modifiers for the variable */
920         char    endc;           /* Ending character when variable in parens
921                                  * or braces */
922         char    startc;         /* Starting character when variable in parens
923                                  * or braces */
924         char    *tstr;          /* Pointer into str */
925         Boolean dynamic;        /* TRUE if the variable is local and we're
926                                  * expanding it in a non-local context. This
927                                  * is done to support dynamic sources. The
928                                  * result is just the invocation, unaltered */
929
930         /* build up expanded variable name in this buffer */
931         Buffer  *buf = Buf_Init(MAKE_BSIZE);
932
933         /*
934          * Skip to the end character or a colon, whichever comes first,
935          * replacing embedded variables as we go.
936          */
937         startc = input[1];
938         endc = (startc == OPEN_PAREN) ? CLOSE_PAREN : CLOSE_BRACE;
939         tstr = rw_str + 2;
940
941         while (*tstr != '\0' && *tstr != endc && *tstr != ':') {
942             if (*tstr == '$') {
943                 size_t  rlen;
944                 Boolean rfree;
945                 char    *rval;
946
947                 rval = Var_Parse(tstr, ctxt, err, &rlen, &rfree);
948                 if (rval == var_Error) {
949                         Fatal("Error expanding embedded variable.");
950                 }
951                 if (rval != NULL) {
952                         Buf_Append(buf, rval);
953                         if (rfree)
954                                 free(rval);
955                 }
956                 tstr += rlen - 1;
957             } else {
958                 Buf_AddByte(buf, (Byte)*tstr);
959             }
960             tstr++;
961         }
962
963         if (*tstr == '\0') {
964             /*
965              * If we never did find the end character, return NULL
966              * right now, setting the length to be the distance to
967              * the end of the string, since that's what make does.
968              */
969             *freePtr = FALSE;
970             *lengthPtr = tstr - input;
971             return (var_Error);
972         }
973
974         haveModifier = (*tstr == ':');
975         *tstr = '\0';                   /* modify input string */
976
977         vname = Buf_GetAll(buf, (size_t *)NULL);        /* REPLACE str */ 
978         vlen = strlen(vname);
979
980         v = VarFind(vname, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
981
982         if ((v == NULL) &&
983             (ctxt != VAR_CMD) && (ctxt != VAR_GLOBAL) &&
984             (vlen == 2) && (vname[1] == 'F' || vname[1] == 'D'))
985         {
986             /*
987              * Check for bogus D and F forms of local variables since we're
988              * in a local context and the name is the right length.
989              */
990             if (strchr("!%*<>@", vname[0]) != NULL) {
991                 char    name[2];
992                 char    *val;
993
994                 /*
995                  * Well, it's local -- go look for it.
996                  */
997                 name[0] = vname[0];
998                 name[1] = '\0';
999
1000                 v = VarFind(name, ctxt, 0);
1001                 if (v != NULL && !haveModifier) {
1002                     /*
1003                      * No need for nested expansion or anything, as we're
1004                      * the only one who sets these things and we sure don't
1005                      * put nested invocations in them...
1006                      */
1007                     val = (char *)Buf_GetAll(v->val, (size_t *)NULL);
1008
1009                     if (vname[1] == 'D') {
1010                         val = VarModify(val, VarHead, (void *)NULL);
1011                     } else {
1012                         val = VarModify(val, VarTail, (void *)NULL);
1013                     }
1014                     /*
1015                      * Resulting string is dynamically allocated, so
1016                      * tell caller to free it.
1017                      */
1018                     *freePtr = TRUE;
1019                     *lengthPtr = tstr - input + 1;
1020                     *tstr = endc;
1021                     Buf_Destroy(buf, TRUE);
1022                     return (val);
1023                 }
1024             }
1025         }
1026
1027         if (v == NULL) {
1028             if (((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)) &&
1029                 ((vlen == 1) ||
1030                  ((vlen == 2) && (vname[1] == 'F' || vname[1] == 'D'))))
1031             {
1032                 /*
1033                  * If substituting a local variable in a non-local context,
1034                  * assume it's for dynamic source stuff. We have to handle
1035                  * this specially and return the longhand for the variable
1036                  * with the dollar sign escaped so it makes it back to the
1037                  * caller. Only four of the local variables are treated
1038                  * specially as they are the only four that will be set
1039                  * when dynamic sources are expanded.
1040                  */
1041                 if (strchr("!%*@", vname[0]) != NULL) {
1042                     dynamic = TRUE;
1043                 } else {
1044                     dynamic = FALSE;
1045                 }
1046             } else if (((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)) &&
1047                        (vlen > 2) &&
1048                        (vname[0] == '.') &&
1049                        isupper((unsigned char)vname[1]))
1050             {
1051                 int     len;
1052
1053                 len = vlen - 1;
1054                 if ((strncmp(vname, ".TARGET", len) == 0) ||
1055                     (strncmp(vname, ".ARCHIVE", len) == 0) ||
1056                     (strncmp(vname, ".PREFIX", len) == 0) ||
1057                     (strncmp(vname, ".MEMBER", len) == 0))
1058                 {
1059                     dynamic = TRUE;
1060                 } else {
1061                     dynamic = FALSE;
1062                 }
1063             } else {
1064                 dynamic = FALSE;
1065             }
1066
1067             if (haveModifier) {
1068                 /*
1069                  * Still need to get to the end of the variable specification,
1070                  * so kludge up a Var structure for the modifications
1071                  */
1072                 v = VarCreate(vname, NULL, VAR_JUNK);
1073
1074             } else {
1075                 /*
1076                  * No modifiers -- have specification length so we can return
1077                  * now.
1078                  */
1079                 if (dynamic) {
1080                     char        *result;
1081                     size_t      rlen = tstr - input + 1;
1082
1083                     result = emalloc(rlen + 1);
1084                     strncpy(result, input, rlen);
1085                     result[rlen] = '\0';
1086
1087                     *freePtr = TRUE;
1088                     *lengthPtr = rlen;
1089                     *tstr = endc;
1090
1091                     Buf_Destroy(buf, TRUE);
1092                     return (result);
1093                 } else {
1094                     *freePtr = FALSE;
1095                     *lengthPtr = tstr - input + 1;
1096                     *tstr = endc;
1097
1098                     Buf_Destroy(buf, TRUE);
1099                     return (err ? var_Error : varNoError);
1100                 }
1101             }
1102         } else {
1103             dynamic = FALSE;
1104         }
1105         *freePtr = FALSE;
1106         Buf_Destroy(buf, TRUE);
1107
1108         rw_str = VarExpand(v, ctxt, err);
1109         *freePtr = TRUE;
1110
1111         /*
1112          * Now we need to apply any modifiers the user wants applied.
1113          * These are:
1114          *      :M<pattern>
1115          *              words which match the given <pattern>.
1116          *              <pattern> is of the standard file
1117          *              wildcarding form.
1118          *      :S<d><pat1><d><pat2><d>[g]
1119          *              Substitute <pat2> for <pat1> in the value
1120          *      :C<d><pat1><d><pat2><d>[g]
1121          *              Substitute <pat2> for regex <pat1> in the value
1122          *      :H      Substitute the head of each word
1123          *      :T      Substitute the tail of each word
1124          *      :E      Substitute the extension (minus '.') of
1125          *              each word
1126          *      :R      Substitute the root of each word
1127          *              (pathname minus the suffix).
1128          *      :lhs=rhs
1129          *              Like :S, but the rhs goes to the end of
1130          *              the invocation.
1131          *      :U      Converts variable to upper-case.
1132          *      :L      Converts variable to lower-case.
1133          */
1134         if (haveModifier) {
1135             char        *cp;
1136             /*
1137              * Skip initial colon while putting it back.
1138              */
1139             *tstr++ = ':';
1140             while (*tstr != endc) {
1141                 char    *newStr;    /* New value to return */
1142                 char    termc;      /* Character which terminated scan */
1143
1144                 DEBUGF(VAR, ("Applying :%c to \"%s\"\n", *tstr, rw_str));
1145                 switch (*tstr) {
1146                     case 'N':
1147                     case 'M':
1148                     {
1149                         char    *pattern;
1150                         char    *cp2;
1151                         Boolean copy;
1152
1153                         copy = FALSE;
1154                         for (cp = tstr + 1;
1155                              *cp != '\0' && *cp != ':' && *cp != endc;
1156                              cp++)
1157                         {
1158                             if (*cp == '\\' && (cp[1] == ':' || cp[1] == endc)) {
1159                                 copy = TRUE;
1160                                 cp++;
1161                             }
1162                         }
1163                         termc = *cp;
1164                         *cp = '\0';
1165                         if (copy) {
1166                             /*
1167                              * Need to compress the \:'s out of the pattern, so
1168                              * allocate enough room to hold the uncompressed
1169                              * pattern (note that cp started at tstr+1, so
1170                              * cp - tstr takes the null byte into account) and
1171                              * compress the pattern into the space.
1172                              */
1173                             pattern = emalloc(cp - tstr);
1174                             for (cp2 = pattern, cp = tstr + 1;
1175                                  *cp != '\0';
1176                                  cp++, cp2++)
1177                             {
1178                                 if ((*cp == '\\') &&
1179                                     (cp[1] == ':' || cp[1] == endc)) {
1180                                         cp++;
1181                                 }
1182                                 *cp2 = *cp;
1183                             }
1184                             *cp2 = '\0';
1185                         } else {
1186                             pattern = &tstr[1];
1187                         }
1188                         if (*tstr == 'M' || *tstr == 'm') {
1189                             newStr = VarModify(rw_str, VarMatch, pattern);
1190                         } else {
1191                             newStr = VarModify(rw_str, VarNoMatch, pattern);
1192                         }
1193                         if (copy) {
1194                             free(pattern);
1195                         }
1196                         break;
1197                     }
1198                     case 'S':
1199                     {
1200                         VarPattern          pattern;
1201                         char        del;
1202                         Buffer              *buf;       /* Buffer for patterns */
1203
1204                         pattern.flags = 0;
1205                         del = tstr[1];
1206                         tstr += 2;
1207
1208                         /*
1209                          * If pattern begins with '^', it is anchored to the
1210                          * start of the word -- skip over it and flag pattern.
1211                          */
1212                         if (*tstr == '^') {
1213                             pattern.flags |= VAR_MATCH_START;
1214                             tstr += 1;
1215                         }
1216
1217                         buf = Buf_Init(0);
1218
1219                         /*
1220                          * Pass through the lhs looking for 1) escaped delimiters,
1221                          * '$'s and backslashes (place the escaped character in
1222                          * uninterpreted) and 2) unescaped $'s that aren't before
1223                          * the delimiter (expand the variable substitution).
1224                          * The result is left in the Buffer buf.
1225                          */
1226                         for (cp = tstr; *cp != '\0' && *cp != del; cp++) {
1227                             if ((*cp == '\\') &&
1228                                 ((cp[1] == del) ||
1229                                  (cp[1] == '$') ||
1230                                  (cp[1] == '\\')))
1231                             {
1232                                 Buf_AddByte(buf, (Byte)cp[1]);
1233                                 cp++;
1234                             } else if (*cp == '$') {
1235                                 if (cp[1] != del) {
1236                                     /*
1237                                      * If unescaped dollar sign not before the
1238                                      * delimiter, assume it's a variable
1239                                      * substitution and recurse.
1240                                      */
1241                                     char            *cp2;
1242                                     size_t len;
1243                                     Boolean         freeIt;
1244
1245                                     cp2 = Var_Parse(cp, ctxt, err, &len, &freeIt);
1246                                     Buf_Append(buf, cp2);
1247                                     if (freeIt) {
1248                                         free(cp2);
1249                                     }
1250                                     cp += len - 1;
1251                                 } else {
1252                                     /*
1253                                      * Unescaped $ at end of pattern => anchor
1254                                      * pattern at end.
1255                                      */
1256                                     pattern.flags |= VAR_MATCH_END;
1257                                 }
1258                             } else {
1259                                 Buf_AddByte(buf, (Byte)*cp);
1260                             }
1261                         }
1262
1263                         Buf_AddByte(buf, (Byte)'\0');
1264
1265                         /*
1266                          * If lhs didn't end with the delimiter, complain and
1267                          * exit.
1268                          */
1269                         if (*cp != del) {
1270                             Fatal("Unclosed substitution for %s (%c missing)",
1271                                   v->name, del);
1272                         }
1273
1274                         /*
1275                          * Fetch pattern and destroy buffer, but preserve the data
1276                          * in it, since that's our lhs. Note that Buf_GetAll
1277                          * will return the actual number of bytes, which includes
1278                          * the null byte, so we have to decrement the length by
1279                          * one.
1280                          */
1281                         pattern.lhs = (char *)Buf_GetAll(buf, &pattern.leftLen);
1282                         pattern.leftLen--;
1283                         Buf_Destroy(buf, FALSE);
1284
1285                         /*
1286                          * Now comes the replacement string. Three things need to
1287                          * be done here: 1) need to compress escaped delimiters and
1288                          * ampersands and 2) need to replace unescaped ampersands
1289                          * with the l.h.s. (since this isn't regexp, we can do
1290                          * it right here) and 3) expand any variable substitutions.
1291                          */
1292                         buf = Buf_Init(0);
1293
1294                         tstr = cp + 1;
1295                         for (cp = tstr; *cp != '\0' && *cp != del; cp++) {
1296                             if ((*cp == '\\') &&
1297                                 ((cp[1] == del) ||
1298                                  (cp[1] == '&') ||
1299                                  (cp[1] == '\\') ||
1300                                  (cp[1] == '$')))
1301                             {
1302                                 Buf_AddByte(buf, (Byte)cp[1]);
1303                                 cp++;
1304                             } else if ((*cp == '$') && (cp[1] != del)) {
1305                                 char    *cp2;
1306                                 size_t len;
1307                                 Boolean freeIt;
1308
1309                                 cp2 = Var_Parse(cp, ctxt, err, &len, &freeIt);
1310                                 Buf_Append(buf, cp2);
1311                                 cp += len - 1;
1312                                 if (freeIt) {
1313                                     free(cp2);
1314                                 }
1315                             } else if (*cp == '&') {
1316                                 Buf_AddBytes(buf, pattern.leftLen,
1317                                              (Byte *)pattern.lhs);
1318                             } else {
1319                                 Buf_AddByte(buf, (Byte)*cp);
1320                             }
1321                         }
1322
1323                         Buf_AddByte(buf, (Byte)'\0');
1324
1325                         /*
1326                          * If didn't end in delimiter character, complain
1327                          */
1328                         if (*cp != del) {
1329                             Fatal("Unclosed substitution for %s (%c missing)",
1330                                   v->name, del);
1331                         }
1332
1333                         pattern.rhs = (char *)Buf_GetAll(buf, &pattern.rightLen);
1334                         pattern.rightLen--;
1335                         Buf_Destroy(buf, FALSE);
1336
1337                         /*
1338                          * Check for global substitution. If 'g' after the final
1339                          * delimiter, substitution is global and is marked that
1340                          * way.
1341                          */
1342                         cp++;
1343                         if (*cp == 'g') {
1344                             pattern.flags |= VAR_SUB_GLOBAL;
1345                             cp++;
1346                         }
1347
1348                         /*
1349                          * Global substitution of the empty string causes an
1350                          * infinite number of matches, unless anchored by '^'
1351                          * (start of string) or '$' (end of string). Catch the
1352                          * infinite substitution here.
1353                          * Note that flags can only contain the 3 bits we're
1354                          * interested in so we don't have to mask unrelated
1355                          * bits. We can test for equality.
1356                          */
1357                         if (!pattern.leftLen && pattern.flags == VAR_SUB_GLOBAL)
1358                             Fatal("Global substitution of the empty string");
1359
1360                         termc = *cp;
1361                         newStr = VarModify(rw_str, VarSubstitute, &pattern);
1362                         /*
1363                          * Free the two strings.
1364                          */
1365                         free(pattern.lhs);
1366                         free(pattern.rhs);
1367                         break;
1368                     }
1369                     case 'C':
1370                     {
1371                         int             delim;
1372                         VarREPattern    pattern;
1373                         char       *re;
1374                         int                 error;
1375
1376                         pattern.flags = 0;
1377                         delim = tstr[1];
1378                         tstr += 2;
1379
1380                         cp = tstr;
1381
1382                         if ((re = VarGetPattern(ctxt, err, &cp, delim, NULL,
1383                             NULL, NULL)) == NULL) {
1384                             /* was: goto cleanup */
1385                             *lengthPtr = cp - input + 1;
1386                             if (*freePtr)
1387                                 free(rw_str);
1388                             if (delim != '\0')
1389                                 Fatal("Unclosed substitution for %s (%c missing)",
1390                                       v->name, delim);
1391                             return (var_Error);
1392                         }
1393
1394                         if ((pattern.replace = VarGetPattern(ctxt, err, &cp,
1395                             delim, NULL, NULL, NULL)) == NULL){
1396                             free(re);
1397
1398                             /* was: goto cleanup */
1399                             *lengthPtr = cp - input + 1;
1400                             if (*freePtr)
1401                                 free(rw_str);
1402                             if (delim != '\0')
1403                                 Fatal("Unclosed substitution for %s (%c missing)",
1404                                       v->name, delim);
1405                             return (var_Error);
1406                         }
1407
1408                         for (;; cp++) {
1409                             switch (*cp) {
1410                             case 'g':
1411                                 pattern.flags |= VAR_SUB_GLOBAL;
1412                                 continue;
1413                             case '1':
1414                                 pattern.flags |= VAR_SUB_ONE;
1415                                 continue;
1416                             default:
1417                                 break;
1418                             }
1419                             break;
1420                         }
1421
1422                         termc = *cp;
1423
1424                         error = regcomp(&pattern.re, re, REG_EXTENDED);
1425                         free(re);
1426                         if (error)      {
1427                             *lengthPtr = cp - input + 1;
1428                             VarREError(error, &pattern.re, "RE substitution error");
1429                             free(pattern.replace);
1430                             return (var_Error);
1431                         }
1432
1433                         pattern.nsub = pattern.re.re_nsub + 1;
1434                         if (pattern.nsub < 1)
1435                             pattern.nsub = 1;
1436                         if (pattern.nsub > 10)
1437                             pattern.nsub = 10;
1438                         pattern.matches = emalloc(pattern.nsub *
1439                                                   sizeof(regmatch_t));
1440                         newStr = VarModify(rw_str, VarRESubstitute, &pattern);
1441                         regfree(&pattern.re);
1442                         free(pattern.replace);
1443                         free(pattern.matches);
1444                         break;
1445                     }
1446                     case 'L':
1447                         if (tstr[1] == endc || tstr[1] == ':') {
1448                             Buffer *buf;
1449                             buf = Buf_Init(MAKE_BSIZE);
1450                             for (cp = rw_str; *cp ; cp++)
1451                                 Buf_AddByte(buf, (Byte)tolower(*cp));
1452
1453                             Buf_AddByte(buf, (Byte)'\0');
1454                             newStr = (char *)Buf_GetAll(buf, (size_t *)NULL);
1455                             Buf_Destroy(buf, FALSE);
1456
1457                             cp = tstr + 1;
1458                             termc = *cp;
1459                             break;
1460                         }
1461                         /* FALLTHROUGH */
1462                     case 'O':
1463                         if (tstr[1] == endc || tstr[1] == ':') {
1464                             newStr = VarSortWords(rw_str, SortIncreasing);
1465                             cp = tstr + 1;
1466                             termc = *cp;
1467                             break;
1468                         }
1469                         /* FALLTHROUGH */
1470                     case 'Q':
1471                         if (tstr[1] == endc || tstr[1] == ':') {
1472                             newStr = Var_Quote(rw_str);
1473                             cp = tstr + 1;
1474                             termc = *cp;
1475                             break;
1476                         }
1477                         /*FALLTHRU*/
1478                     case 'T':
1479                         if (tstr[1] == endc || tstr[1] == ':') {
1480                             newStr = VarModify(rw_str, VarTail, (void *)NULL);
1481                             cp = tstr + 1;
1482                             termc = *cp;
1483                             break;
1484                         }
1485                         /*FALLTHRU*/
1486                     case 'U':
1487                         if (tstr[1] == endc || tstr[1] == ':') {
1488                             Buffer *buf;
1489                             buf = Buf_Init(MAKE_BSIZE);
1490                             for (cp = rw_str; *cp ; cp++)
1491                                 Buf_AddByte(buf, (Byte)toupper(*cp));
1492
1493                             Buf_AddByte(buf, (Byte)'\0');
1494                             newStr = (char *)Buf_GetAll(buf, (size_t *)NULL);
1495                             Buf_Destroy(buf, FALSE);
1496
1497                             cp = tstr + 1;
1498                             termc = *cp;
1499                             break;
1500                         }
1501                         /* FALLTHROUGH */
1502                     case 'H':
1503                         if (tstr[1] == endc || tstr[1] == ':') {
1504                             newStr = VarModify(rw_str, VarHead, (void *)NULL);
1505                             cp = tstr + 1;
1506                             termc = *cp;
1507                             break;
1508                         }
1509                         /*FALLTHRU*/
1510                     case 'E':
1511                         if (tstr[1] == endc || tstr[1] == ':') {
1512                             newStr = VarModify(rw_str, VarSuffix, (void *)NULL);
1513                             cp = tstr + 1;
1514                             termc = *cp;
1515                             break;
1516                         }
1517                         /*FALLTHRU*/
1518                     case 'R':
1519                         if (tstr[1] == endc || tstr[1] == ':') {
1520                             newStr = VarModify(rw_str, VarRoot, (void *)NULL);
1521                             cp = tstr + 1;
1522                             termc = *cp;
1523                             break;
1524                         }
1525                         /*FALLTHRU*/
1526     #ifdef SUNSHCMD
1527                     case 's':
1528                         if (tstr[1] == 'h' && (tstr[2] == endc || tstr[2] == ':')) {
1529                             const char *error;
1530                             Buffer *buf;
1531
1532                             buf = Cmd_Exec(rw_str, &error);
1533                             newStr = Buf_GetAll(buf, NULL);
1534                             Buf_Destroy(buf, FALSE);
1535
1536                             if (error)
1537                                 Error(error, rw_str);
1538                             cp = tstr + 2;
1539                             termc = *cp;
1540                             break;
1541                         }
1542                         /*FALLTHRU*/
1543     #endif
1544                     default:
1545                     {
1546     #ifdef SYSVVARSUB
1547                         /*
1548                          * This can either be a bogus modifier or a System-V
1549                          * substitution command.
1550                          */
1551                         VarPattern      pattern;
1552                         Boolean eqFound;
1553                         int             cnt;
1554
1555                         pattern.flags = 0;
1556                         eqFound = FALSE;
1557                         /*
1558                          * First we make a pass through the string trying
1559                          * to verify it is a SYSV-make-style translation:
1560                          * it must be: <string1>=<string2>)
1561                          */
1562                         cp = tstr;
1563                         cnt = 1;
1564                         while (*cp != '\0' && cnt) {
1565                             if (*cp == '=') {
1566                                 eqFound = TRUE;
1567                                 /* continue looking for endc */
1568                             }
1569                             else if (*cp == endc)
1570                                 cnt--;
1571                             else if (*cp == startc)
1572                                 cnt++;
1573                             if (cnt)
1574                                 cp++;
1575                         }
1576                         if (*cp == endc && eqFound) {
1577                             int delim;
1578
1579                             /*
1580                              * Now we break this sucker into the lhs and
1581                              * rhs. We must null terminate them of course.
1582                              */
1583                             cp = tstr;
1584
1585                             delim = '=';
1586                             if ((pattern.lhs = VarGetPattern(ctxt,
1587                                 err, &cp, delim, &pattern.flags, &pattern.leftLen,
1588                                 NULL)) == NULL) {
1589                                     /* was: goto cleanup */
1590                                     *lengthPtr = cp - input + 1;
1591                                     if (*freePtr)
1592                                         free(rw_str);
1593                                     if (delim != '\0')
1594                                         Fatal("Unclosed substitution for %s (%c missing)",
1595                                               v->name, delim);
1596                                     return (var_Error);
1597                             }
1598
1599                             delim = endc;
1600                             if ((pattern.rhs = VarGetPattern(ctxt,
1601                                 err, &cp, delim, NULL, &pattern.rightLen,
1602                                 &pattern)) == NULL) {
1603                                     /* was: goto cleanup */
1604                                     *lengthPtr = cp - input + 1;
1605                                     if (*freePtr)
1606                                         free(rw_str);
1607                                     if (delim != '\0')
1608                                         Fatal("Unclosed substitution for %s (%c missing)",
1609                                               v->name, delim);
1610                                     return (var_Error);
1611                             }
1612
1613                             /*
1614                              * SYSV modifications happen through the whole
1615                              * string. Note the pattern is anchored at the end.
1616                              */
1617                             termc = *--cp;
1618                             delim = '\0';
1619                             newStr = VarModify(rw_str, VarSYSVMatch, &pattern);
1620
1621                             free(pattern.lhs);
1622                             free(pattern.rhs);
1623
1624                             termc = endc;
1625                         } else
1626     #endif
1627                         {
1628                             Error("Unknown modifier '%c'\n", *tstr);
1629                             for (cp = tstr+1;
1630                                  *cp != ':' && *cp != endc && *cp != '\0';
1631                                  cp++)
1632                                      continue;
1633                             termc = *cp;
1634                             newStr = var_Error;
1635                         }
1636                     }
1637                 }
1638                 DEBUGF(VAR, ("Result is \"%s\"\n", newStr));
1639
1640                 if (*freePtr) {
1641                     free(rw_str);
1642                 }
1643                 rw_str = newStr;
1644                 if (rw_str != var_Error) {
1645                     *freePtr = TRUE;
1646                 } else {
1647                     *freePtr = FALSE;
1648                 }
1649                 if (termc == '\0') {
1650                     Error("Unclosed variable specification for %s", v->name);
1651                 } else if (termc == ':') {
1652                     *cp++ = termc;
1653                 } else {
1654                     *cp = termc;
1655                 }
1656                 tstr = cp;
1657             }
1658             *lengthPtr = tstr - input + 1;
1659         } else {
1660             *lengthPtr = tstr - input + 1;
1661             *tstr = endc;
1662         }
1663
1664         if (v->flags & VAR_FROM_ENV) {
1665             if (rw_str == (char *)Buf_GetAll(v->val, (size_t *)NULL)) {
1666                 /*
1667                  * Returning the value unmodified, so tell the caller to free
1668                  * the thing.
1669                  */
1670                 *freePtr = TRUE;
1671                 VarDestroy(v, FALSE);
1672                 return (rw_str);
1673             } else {
1674                 VarDestroy(v, TRUE);
1675                 return (rw_str);
1676             }
1677         } else if (v->flags & VAR_JUNK) {
1678             /*
1679              * Perform any free'ing needed and set *freePtr to FALSE so the caller
1680              * doesn't try to free a static pointer.
1681              */
1682             if (*freePtr) {
1683                 free(rw_str);
1684             }
1685             if (dynamic) {
1686                 *freePtr = FALSE;
1687                 VarDestroy(v, TRUE);
1688                 rw_str = emalloc(*lengthPtr + 1);
1689                 strncpy(rw_str, input, *lengthPtr);
1690                 rw_str[*lengthPtr] = '\0';
1691                 *freePtr = TRUE;
1692                 return (rw_str);
1693             } else {
1694                 *freePtr = FALSE;
1695                 VarDestroy(v, TRUE);
1696                 return (err ? var_Error : varNoError);
1697             }
1698         } else {
1699             return (rw_str);
1700         }
1701 }
1702
1703 static char *
1704 VarParseShort(const char input[], GNode *ctxt, Boolean err, size_t *lengthPtr,
1705         Boolean *freePtr)
1706 {
1707         /*
1708          * If it's not bounded by braces of some sort, life is much simpler.
1709          * We just need to check for the first character and return the value
1710          * if it exists.
1711          */
1712         Var     *v;             /* Variable in invocation */
1713         char    name[2];
1714
1715         name[0] = input[1];
1716         name[1] = '\0';
1717
1718         v = VarFind(name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
1719         if (v == NULL) {
1720                 if ((ctxt == VAR_CMD) || (ctxt == VAR_GLOBAL)) {
1721                         /*
1722                          * If substituting a local variable in a non-local
1723                          * context, assume it's for dynamic source stuff. We
1724                          * have to handle this specially and return the
1725                          * longhand for the variable with the dollar sign
1726                          * escaped so it makes it back to the caller. Only
1727                          * four of the local variables are treated specially
1728                          * as they are the only four that will be set when
1729                          * dynamic sources are expanded.
1730                          */
1731                         /* XXX: It looks like $% and $! are reversed here */
1732                         *freePtr = FALSE;
1733                         *lengthPtr = 2;
1734                         switch (input[1]) {
1735                         case '@':
1736                                 return ("$(.TARGET)");
1737                         case '%':
1738                                 return ("$(.ARCHIVE)");
1739                         case '*':
1740                                 return ("$(.PREFIX)");
1741                         case '!':
1742                                 return ("$(.MEMBER)");
1743                         default:
1744                                 return (err ? var_Error : varNoError);
1745                         }
1746                 } else {
1747                         *freePtr = FALSE;
1748                         *lengthPtr = 2;
1749                         return (err ? var_Error : varNoError);
1750                 }
1751         } else {
1752                 char   *result;
1753
1754                 result = VarExpand(v, ctxt, err);
1755
1756                 if (v->flags & VAR_FROM_ENV) {
1757                         VarDestroy(v, TRUE);
1758                 }
1759
1760                 *freePtr = TRUE;
1761                 *lengthPtr = 2;
1762                 return (result);
1763         }
1764 }
1765
1766 /*-
1767  *-----------------------------------------------------------------------
1768  * Var_Parse --
1769  *      Given the start of a variable invocation, extract the variable
1770  *      name and find its value, then modify it according to the
1771  *      specification.
1772  *
1773  * Results:
1774  *      The (possibly-modified) value of the variable or var_Error if the
1775  *      specification is invalid. The length of the specification is
1776  *      placed in *lengthPtr (for invalid specifications, this is just
1777  *      2 to skip the '$' and the following letter, or 1 if '$' was the
1778  *      last character in the string).
1779  *      A Boolean in *freePtr telling whether the returned string should
1780  *      be freed by the caller.
1781  *
1782  * Side Effects:
1783  *      None.
1784  *
1785  * Assumption:
1786  *      It is assumed that Var_Parse() is called with str[0] == '$'.
1787  *
1788  *-----------------------------------------------------------------------
1789  */
1790 char *
1791 Var_Parse(char *foo, GNode *ctxt, Boolean err, size_t *lengthPtr,
1792     Boolean *freePtr)
1793 {
1794         const char *input = foo;
1795
1796         if (input[1] == '\0') {
1797                 /* Error, there is only a dollar sign in the input string. */
1798                 *freePtr = FALSE;
1799                 *lengthPtr = 1;
1800                 return (err ? var_Error : varNoError);
1801
1802         } else if (input[1] == OPEN_PAREN || input[1] == OPEN_BRACE) {
1803                 /* multi letter variable name */
1804                 return (VarParseLong(foo, ctxt, err, lengthPtr, freePtr));
1805
1806         } else {
1807                 /* single letter variable name */
1808                 return (VarParseShort(input, ctxt, err, lengthPtr, freePtr));
1809         }
1810 }
1811
1812 /*-
1813  *-----------------------------------------------------------------------
1814  * Var_Subst  --
1815  *      Substitute for all variables in the given string in the given context
1816  *      If undefErr is TRUE, Parse_Error will be called when an undefined
1817  *      variable is encountered.
1818  *
1819  * Results:
1820  *      The resulting string.
1821  *
1822  * Side Effects:
1823  *      None. The old string must be freed by the caller
1824  *-----------------------------------------------------------------------
1825  */
1826 Buffer *
1827 Var_Subst(const char *var, const char *str, GNode *ctxt, Boolean undefErr)
1828 {
1829     Boolean     errorReported;
1830     Buffer      *buf;           /* Buffer for forming things */
1831
1832     /*
1833      * Set TRUE if an error has already been reported to prevent a
1834      * plethora of messages when recursing.
1835      */
1836     errorReported = FALSE;
1837
1838     buf = Buf_Init(0);
1839     while (*str) {
1840         if (var == NULL && (str[0] == '$') && (str[1] == '$')) {
1841             /*
1842              * A dollar sign may be escaped either with another dollar sign.
1843              * In such a case, we skip over the escape character and store the
1844              * dollar sign into the buffer directly.
1845              */
1846             Buf_AddByte(buf, (Byte)str[0]);
1847             str += 2;
1848
1849         } else if (str[0] == '$') {
1850             char        *val;   /* Value to substitute for a variable */
1851             size_t      length; /* Length of the variable invocation */
1852             Boolean     doFree; /* Set true if val should be freed */
1853             /*
1854              * Variable invocation.
1855              */
1856             if (var != NULL) {
1857                 int expand;
1858                 for (;;) {
1859                     if (str[1] == OPEN_PAREN || str[1] == OPEN_BRACE) {
1860                         size_t          ln;
1861                         const char      *p = str + 2;
1862
1863                         /*
1864                          * Scan up to the end of the variable name.
1865                          */
1866                         while (*p != '\0' &&
1867                                *p != ':' &&
1868                                *p != CLOSE_PAREN &&
1869                                *p != CLOSE_BRACE &&
1870                                *p != '$') {
1871                             ++p;
1872                         }
1873
1874                         /*
1875                          * A variable inside the variable. We cannot expand
1876                          * the external variable yet, so we try again with
1877                          * the nested one
1878                          */
1879                         if (*p == '$') {
1880                             Buf_AppendRange(buf, str, p);
1881                             str = p;
1882                             continue;
1883                         }
1884
1885                         ln = p - (str + 2);
1886                         if (var[ln] == '\0' && strncmp(var, str + 2, ln) == 0) {
1887                             expand = TRUE;
1888                         } else {
1889                             /*
1890                              * Not the variable we want to expand, scan
1891                              * until the next variable
1892                              */
1893                             while (*p != '$' && *p != '\0')
1894                                 ++p;
1895
1896                             Buf_AppendRange(buf, str, p);
1897                             str = p;
1898                             expand = FALSE;
1899                         }
1900                     } else {
1901                         /*
1902                          * Single letter variable name
1903                          */
1904                         if (var[1] == '\0' && var[0] == str[1]) {
1905                             expand = TRUE;
1906                         } else {
1907                             Buf_AddBytes(buf, 2, (const Byte *)str);
1908                             str += 2;
1909                             expand = FALSE;
1910                         }
1911                     }
1912                     break;
1913                 }
1914                 if (!expand)
1915                     continue;
1916             }
1917
1918             val = Var_Parse(str, ctxt, undefErr, &length, &doFree);
1919
1920             /*
1921              * When we come down here, val should either point to the
1922              * value of this variable, suitably modified, or be NULL.
1923              * Length should be the total length of the potential
1924              * variable invocation (from $ to end character...)
1925              */
1926             if (val == var_Error || val == varNoError) {
1927                 /*
1928                  * If performing old-time variable substitution, skip over
1929                  * the variable and continue with the substitution. Otherwise,
1930                  * store the dollar sign and advance str so we continue with
1931                  * the string...
1932                  */
1933                 if (oldVars) {
1934                     str += length;
1935                 } else if (undefErr) {
1936                     /*
1937                      * If variable is undefined, complain and skip the
1938                      * variable. The complaint will stop us from doing anything
1939                      * when the file is parsed.
1940                      */
1941                     if (!errorReported) {
1942                         Parse_Error(PARSE_FATAL,
1943                                      "Undefined variable \"%.*s\"",length,str);
1944                     }
1945                     str += length;
1946                     errorReported = TRUE;
1947                 } else {
1948                     Buf_AddByte(buf, (Byte)*str);
1949                     str += 1;
1950                 }
1951             } else {
1952                 /*
1953                  * We've now got a variable structure to store in. But first,
1954                  * advance the string pointer.
1955                  */
1956                 str += length;
1957
1958                 /*
1959                  * Copy all the characters from the variable value straight
1960                  * into the new string.
1961                  */
1962                 Buf_Append(buf, val);
1963                 if (doFree) {
1964                     free(val);
1965                 }
1966             }
1967         } else {
1968             /*
1969              * Skip as many characters as possible -- either to the end of
1970              * the string or to the next dollar sign (variable invocation).
1971              */
1972             const char *cp = str;
1973
1974             do {
1975                 str++;
1976             } while (str[0] != '$' && str[0] != '\0');
1977
1978             Buf_AppendRange(buf, cp, str);
1979         }
1980     }
1981
1982     return (buf);
1983 }
1984
1985 /*-
1986  *-----------------------------------------------------------------------
1987  * Var_GetTail --
1988  *      Return the tail from each of a list of words. Used to set the
1989  *      System V local variables.
1990  *
1991  * Results:
1992  *      The resulting string.
1993  *
1994  * Side Effects:
1995  *      None.
1996  *
1997  *-----------------------------------------------------------------------
1998  */
1999 char *
2000 Var_GetTail(char *file)
2001 {
2002
2003     return (VarModify(file, VarTail, (void *)NULL));
2004 }
2005
2006 /*-
2007  *-----------------------------------------------------------------------
2008  * Var_GetHead --
2009  *      Find the leading components of a (list of) filename(s).
2010  *      XXX: VarHead does not replace foo by ., as (sun) System V make
2011  *      does.
2012  *
2013  * Results:
2014  *      The leading components.
2015  *
2016  * Side Effects:
2017  *      None.
2018  *
2019  *-----------------------------------------------------------------------
2020  */
2021 char *
2022 Var_GetHead(char *file)
2023 {
2024
2025     return (VarModify(file, VarHead, (void *)NULL));
2026 }
2027
2028 /*-
2029  *-----------------------------------------------------------------------
2030  * Var_Init --
2031  *      Initialize the module
2032  *
2033  * Results:
2034  *      None
2035  *
2036  * Side Effects:
2037  *      The VAR_CMD and VAR_GLOBAL contexts are created
2038  *-----------------------------------------------------------------------
2039  */
2040 void
2041 Var_Init(void)
2042 {
2043
2044     VAR_GLOBAL = Targ_NewGN("Global");
2045     VAR_CMD = Targ_NewGN("Command");
2046 }
2047
2048 /****************** PRINT DEBUGGING INFO *****************/
2049 static int
2050 VarPrintVar(void *vp, void *dummy __unused)
2051 {
2052     Var    *v = (Var *) vp;
2053
2054     printf("%-16s = %s\n", v->name, (char *)Buf_GetAll(v->val, (size_t *)NULL));
2055     return (0);
2056 }
2057
2058 /*-
2059  *-----------------------------------------------------------------------
2060  * Var_Dump --
2061  *      print all variables in a context
2062  *-----------------------------------------------------------------------
2063  */
2064 void
2065 Var_Dump(GNode *ctxt)
2066 {
2067
2068     Lst_ForEach(&ctxt->context, VarPrintVar, (void *)NULL);
2069 }