var.c revision 1.526 1 /* $NetBSD: var.c,v 1.526 2020/09/22 06:06:18 rillig Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35 /*
36 * Copyright (c) 1989 by Berkeley Softworks
37 * All rights reserved.
38 *
39 * This code is derived from software contributed to Berkeley by
40 * Adam de Boor.
41 *
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. All advertising materials mentioning features or use of this software
51 * must display the following acknowledgement:
52 * This product includes software developed by the University of
53 * California, Berkeley and its contributors.
54 * 4. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
57 *
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * SUCH DAMAGE.
69 */
70
71 /*-
72 * var.c --
73 * Variable-handling functions
74 *
75 * Interface:
76 * Var_Set Set the value of a variable in the given
77 * context. The variable is created if it doesn't
78 * yet exist.
79 *
80 * Var_Append Append more characters to an existing variable
81 * in the given context. The variable needn't
82 * exist already -- it will be created if it doesn't.
83 * A space is placed between the old value and the
84 * new one.
85 *
86 * Var_Exists See if a variable exists.
87 *
88 * Var_Value Return the unexpanded value of a variable in a
89 * context or NULL if the variable is undefined.
90 *
91 * Var_Subst Substitute either a single variable or all
92 * variables in a string, using the given context.
93 *
94 * Var_Parse Parse a variable expansion from a string and
95 * return the result and the number of characters
96 * consumed.
97 *
98 * Var_Delete Delete a variable in a context.
99 *
100 * Var_Init Initialize this module.
101 *
102 * Debugging:
103 * Var_Dump Print out all variables defined in the given
104 * context.
105 *
106 * XXX: There's a lot of duplication in these functions.
107 */
108
109 #include <sys/stat.h>
110 #ifndef NO_REGEX
111 #include <sys/types.h>
112 #include <regex.h>
113 #endif
114 #include <inttypes.h>
115 #include <limits.h>
116 #include <time.h>
117
118 #include "make.h"
119 #include "dir.h"
120 #include "job.h"
121 #include "metachar.h"
122
123 /* "@(#)var.c 8.3 (Berkeley) 3/19/94" */
124 MAKE_RCSID("$NetBSD: var.c,v 1.526 2020/09/22 06:06:18 rillig Exp $");
125
126 #define VAR_DEBUG_IF(cond, fmt, ...) \
127 if (!(DEBUG(VAR) && (cond))) \
128 (void) 0; \
129 else \
130 fprintf(debug_file, fmt, __VA_ARGS__)
131
132 #define VAR_DEBUG(fmt, ...) VAR_DEBUG_IF(TRUE, fmt, __VA_ARGS__)
133
134 ENUM_FLAGS_RTTI_3(VarEvalFlags,
135 VARE_UNDEFERR, VARE_WANTRES, VARE_ASSIGN);
136
137 /*
138 * This lets us tell if we have replaced the original environ
139 * (which we cannot free).
140 */
141 char **savedEnv = NULL;
142
143 /*
144 * This is a harmless return value for Var_Parse that can be used by Var_Subst
145 * to determine if there was an error in parsing -- easier than returning
146 * a flag, as things outside this module don't give a hoot.
147 */
148 char var_Error[] = "";
149
150 /*
151 * Similar to var_Error, but returned when the 'VARE_UNDEFERR' flag for
152 * Var_Parse is not set.
153 *
154 * Why not just use a constant? Well, GCC likes to condense identical string
155 * instances...
156 */
157 static char varNoError[] = "";
158
159 /*
160 * Traditionally we consume $$ during := like any other expansion.
161 * Other make's do not.
162 * This knob allows controlling the behavior.
163 * FALSE to consume $$ during := assignment.
164 * TRUE to preserve $$ during := assignment.
165 */
166 #define SAVE_DOLLARS ".MAKE.SAVE_DOLLARS"
167 static Boolean save_dollars = TRUE;
168
169 /*
170 * Internally, variables are contained in four different contexts.
171 * 1) the environment. They cannot be changed. If an environment
172 * variable is appended to, the result is placed in the global
173 * context.
174 * 2) the global context. Variables set in the Makefile are located in
175 * the global context.
176 * 3) the command-line context. All variables set on the command line
177 * are placed in this context. They are UNALTERABLE once placed here.
178 * 4) the local context. Each target has associated with it a context
179 * list. On this list are located the structures describing such
180 * local variables as $(@) and $(*)
181 * The four contexts are searched in the reverse order from which they are
182 * listed (but see checkEnvFirst).
183 */
184 GNode *VAR_INTERNAL; /* variables from make itself */
185 GNode *VAR_GLOBAL; /* variables from the makefile */
186 GNode *VAR_CMD; /* variables defined on the command-line */
187
188 typedef enum {
189 FIND_CMD = 0x01, /* look in VAR_CMD when searching */
190 FIND_GLOBAL = 0x02, /* look in VAR_GLOBAL as well */
191 FIND_ENV = 0x04 /* look in the environment also */
192 } VarFindFlags;
193
194 typedef enum {
195 /* The variable's value is currently being used by Var_Parse or Var_Subst.
196 * This marker is used to avoid endless recursion. */
197 VAR_IN_USE = 0x01,
198 /* The variable comes from the environment.
199 * These variables are not registered in any GNode, therefore they must
200 * be freed as soon as they are not used anymore. */
201 VAR_FROM_ENV = 0x02,
202 /* The variable is a junk variable that should be destroyed when done with
203 * it. Used by Var_Parse for undefined, modified variables. */
204 VAR_JUNK = 0x04,
205 /* Variable is VAR_JUNK, but we found a use for it in some modifier and
206 * the value is therefore valid. */
207 VAR_KEEP = 0x08,
208 /* The variable is exported to the environment, to be used by child
209 * processes. */
210 VAR_EXPORTED = 0x10,
211 /* At the point where this variable was exported, it contained an
212 * unresolved reference to another variable. Before any child process is
213 * started, it needs to be exported again, in the hope that the referenced
214 * variable can then be resolved. */
215 VAR_REEXPORT = 0x20,
216 /* The variable came from command line. */
217 VAR_FROM_CMD = 0x40,
218 VAR_READONLY = 0x80
219 } VarFlags;
220
221 ENUM_FLAGS_RTTI_8(VarFlags,
222 VAR_IN_USE, VAR_FROM_ENV, VAR_JUNK, VAR_KEEP,
223 VAR_EXPORTED, VAR_REEXPORT, VAR_FROM_CMD, VAR_READONLY);
224
225 typedef struct Var {
226 char *name; /* the variable's name; it is allocated for
227 * environment variables and aliased to the
228 * Hash_Entry name for all other variables,
229 * and thus must not be modified */
230 Buffer val; /* its value */
231 VarFlags flags; /* miscellaneous status flags */
232 } Var;
233
234 /*
235 * Exporting vars is expensive so skip it if we can
236 */
237 typedef enum {
238 VAR_EXPORTED_NONE,
239 VAR_EXPORTED_YES,
240 VAR_EXPORTED_ALL
241 } VarExportedMode;
242
243 static VarExportedMode var_exportedVars = VAR_EXPORTED_NONE;
244
245 typedef enum {
246 /*
247 * We pass this to Var_Export when doing the initial export
248 * or after updating an exported var.
249 */
250 VAR_EXPORT_PARENT = 0x01,
251 /*
252 * We pass this to Var_Export1 to tell it to leave the value alone.
253 */
254 VAR_EXPORT_LITERAL = 0x02
255 } VarExportFlags;
256
257 /* Flags for pattern matching in the :S and :C modifiers */
258 typedef enum {
259 VARP_SUB_GLOBAL = 0x01, /* Apply substitution globally */
260 VARP_SUB_ONE = 0x02, /* Apply substitution to one word */
261 VARP_ANCHOR_START = 0x04, /* Match at start of word */
262 VARP_ANCHOR_END = 0x08 /* Match at end of word */
263 } VarPatternFlags;
264
265 /*-
266 *-----------------------------------------------------------------------
267 * VarFind --
268 * Find the given variable in the given context and any other contexts
269 * indicated.
270 *
271 * Input:
272 * name name to find
273 * ctxt context in which to find it
274 * flags FIND_GLOBAL look in VAR_GLOBAL as well
275 * FIND_CMD look in VAR_CMD as well
276 * FIND_ENV look in the environment as well
277 *
278 * Results:
279 * A pointer to the structure describing the desired variable or
280 * NULL if the variable does not exist.
281 *-----------------------------------------------------------------------
282 */
283 static Var *
284 VarFind(const char *name, GNode *ctxt, VarFindFlags flags)
285 {
286 Hash_Entry *var;
287
288 /*
289 * If the variable name begins with a '.', it could very well be one of
290 * the local ones. We check the name against all the local variables
291 * and substitute the short version in for 'name' if it matches one of
292 * them.
293 */
294 if (*name == '.' && ch_isupper(name[1])) {
295 switch (name[1]) {
296 case 'A':
297 if (strcmp(name, ".ALLSRC") == 0)
298 name = ALLSRC;
299 if (strcmp(name, ".ARCHIVE") == 0)
300 name = ARCHIVE;
301 break;
302 case 'I':
303 if (strcmp(name, ".IMPSRC") == 0)
304 name = IMPSRC;
305 break;
306 case 'M':
307 if (strcmp(name, ".MEMBER") == 0)
308 name = MEMBER;
309 break;
310 case 'O':
311 if (strcmp(name, ".OODATE") == 0)
312 name = OODATE;
313 break;
314 case 'P':
315 if (strcmp(name, ".PREFIX") == 0)
316 name = PREFIX;
317 break;
318 case 'S':
319 if (strcmp(name, ".SHELL") == 0 ) {
320 if (!shellPath)
321 Shell_Init();
322 }
323 break;
324 case 'T':
325 if (strcmp(name, ".TARGET") == 0)
326 name = TARGET;
327 break;
328 }
329 }
330
331 #ifdef notyet
332 /* for compatibility with gmake */
333 if (name[0] == '^' && name[1] == '\0')
334 name = ALLSRC;
335 #endif
336
337 /*
338 * First look for the variable in the given context. If it's not there,
339 * look for it in VAR_CMD, VAR_GLOBAL and the environment, in that order,
340 * depending on the FIND_* flags in 'flags'
341 */
342 var = Hash_FindEntry(&ctxt->context, name);
343
344 if (var == NULL && (flags & FIND_CMD) && ctxt != VAR_CMD)
345 var = Hash_FindEntry(&VAR_CMD->context, name);
346
347 if (!checkEnvFirst && var == NULL && (flags & FIND_GLOBAL) &&
348 ctxt != VAR_GLOBAL)
349 {
350 var = Hash_FindEntry(&VAR_GLOBAL->context, name);
351 if (var == NULL && ctxt != VAR_INTERNAL) {
352 /* VAR_INTERNAL is subordinate to VAR_GLOBAL */
353 var = Hash_FindEntry(&VAR_INTERNAL->context, name);
354 }
355 }
356
357 if (var == NULL && (flags & FIND_ENV)) {
358 char *env;
359
360 if ((env = getenv(name)) != NULL) {
361 Var *v = bmake_malloc(sizeof(Var));
362 size_t len;
363 v->name = bmake_strdup(name);
364
365 len = strlen(env);
366 Buf_Init(&v->val, len + 1);
367 Buf_AddBytes(&v->val, env, len);
368
369 v->flags = VAR_FROM_ENV;
370 return v;
371 }
372
373 if (checkEnvFirst && (flags & FIND_GLOBAL) && ctxt != VAR_GLOBAL) {
374 var = Hash_FindEntry(&VAR_GLOBAL->context, name);
375 if (var == NULL && ctxt != VAR_INTERNAL)
376 var = Hash_FindEntry(&VAR_INTERNAL->context, name);
377 if (var == NULL)
378 return NULL;
379 else
380 return (Var *)Hash_GetValue(var);
381 }
382
383 return NULL;
384 }
385
386 if (var == NULL)
387 return NULL;
388 else
389 return (Var *)Hash_GetValue(var);
390 }
391
392 /*-
393 *-----------------------------------------------------------------------
394 * VarFreeEnv --
395 * If the variable is an environment variable, free it
396 *
397 * Input:
398 * v the variable
399 * destroy true if the value buffer should be destroyed.
400 *
401 * Results:
402 * TRUE if it is an environment variable, FALSE otherwise.
403 *-----------------------------------------------------------------------
404 */
405 static Boolean
406 VarFreeEnv(Var *v, Boolean destroy)
407 {
408 if (!(v->flags & VAR_FROM_ENV))
409 return FALSE;
410 free(v->name);
411 Buf_Destroy(&v->val, destroy);
412 free(v);
413 return TRUE;
414 }
415
416 /* Add a new variable of the given name and value to the given context.
417 * The name and val arguments are duplicated so they may safely be freed. */
418 static void
419 VarAdd(const char *name, const char *val, GNode *ctxt, VarSet_Flags flags)
420 {
421 Var *v = bmake_malloc(sizeof(Var));
422 size_t len = strlen(val);
423 Hash_Entry *he;
424
425 Buf_Init(&v->val, len + 1);
426 Buf_AddBytes(&v->val, val, len);
427
428 v->flags = 0;
429 if (flags & VAR_SET_READONLY)
430 v->flags |= VAR_READONLY;
431
432 he = Hash_CreateEntry(&ctxt->context, name, NULL);
433 Hash_SetValue(he, v);
434 v->name = he->name;
435 VAR_DEBUG_IF(!(ctxt->flags & INTERNAL),
436 "%s:%s = %s\n", ctxt->name, name, val);
437 }
438
439 /* Remove a variable from a context, freeing the Var structure as well. */
440 void
441 Var_Delete(const char *name, GNode *ctxt)
442 {
443 char *name_freeIt = NULL;
444 Hash_Entry *he;
445
446 if (strchr(name, '$') != NULL)
447 name = name_freeIt = Var_Subst(name, VAR_GLOBAL, VARE_WANTRES);
448 he = Hash_FindEntry(&ctxt->context, name);
449 VAR_DEBUG("%s:delete %s%s\n",
450 ctxt->name, name, he != NULL ? "" : " (not found)");
451 free(name_freeIt);
452
453 if (he != NULL) {
454 Var *v = (Var *)Hash_GetValue(he);
455 if (v->flags & VAR_EXPORTED)
456 unsetenv(v->name);
457 if (strcmp(v->name, MAKE_EXPORTED) == 0)
458 var_exportedVars = VAR_EXPORTED_NONE;
459 if (v->name != he->name)
460 free(v->name);
461 Hash_DeleteEntry(&ctxt->context, he);
462 Buf_Destroy(&v->val, TRUE);
463 free(v);
464 }
465 }
466
467
468 /*
469 * Export a single variable.
470 * We ignore make internal variables (those which start with '.').
471 * Also we jump through some hoops to avoid calling setenv
472 * more than necessary since it can leak.
473 * We only manipulate flags of vars if 'parent' is set.
474 */
475 static Boolean
476 Var_Export1(const char *name, VarExportFlags flags)
477 {
478 VarExportFlags parent = flags & VAR_EXPORT_PARENT;
479 Var *v;
480 char *val;
481
482 if (name[0] == '.')
483 return FALSE; /* skip internals */
484 if (name[1] == '\0') {
485 /*
486 * A single char.
487 * If it is one of the vars that should only appear in
488 * local context, skip it, else we can get Var_Subst
489 * into a loop.
490 */
491 switch (name[0]) {
492 case '@':
493 case '%':
494 case '*':
495 case '!':
496 return FALSE;
497 }
498 }
499
500 v = VarFind(name, VAR_GLOBAL, 0);
501 if (v == NULL)
502 return FALSE;
503
504 if (!parent && (v->flags & VAR_EXPORTED) && !(v->flags & VAR_REEXPORT))
505 return FALSE; /* nothing to do */
506
507 val = Buf_GetAll(&v->val, NULL);
508 if (!(flags & VAR_EXPORT_LITERAL) && strchr(val, '$') != NULL) {
509 char *expr;
510
511 if (parent) {
512 /*
513 * Flag this as something we need to re-export.
514 * No point actually exporting it now though,
515 * the child can do it at the last minute.
516 */
517 v->flags |= VAR_EXPORTED | VAR_REEXPORT;
518 return TRUE;
519 }
520 if (v->flags & VAR_IN_USE) {
521 /*
522 * We recursed while exporting in a child.
523 * This isn't going to end well, just skip it.
524 */
525 return FALSE;
526 }
527
528 expr = str_concat3("${", name, "}");
529 val = Var_Subst(expr, VAR_GLOBAL, VARE_WANTRES);
530 setenv(name, val, 1);
531 free(val);
532 free(expr);
533 } else {
534 if (parent)
535 v->flags &= ~(unsigned)VAR_REEXPORT; /* once will do */
536 if (parent || !(v->flags & VAR_EXPORTED))
537 setenv(name, val, 1);
538 }
539 /*
540 * This is so Var_Set knows to call Var_Export again...
541 */
542 if (parent) {
543 v->flags |= VAR_EXPORTED;
544 }
545 return TRUE;
546 }
547
548 static void
549 Var_ExportVars_callback(void *entry, void *unused MAKE_ATTR_UNUSED)
550 {
551 Var *var = entry;
552 Var_Export1(var->name, 0);
553 }
554
555 /*
556 * This gets called from our children.
557 */
558 void
559 Var_ExportVars(void)
560 {
561 char *val;
562
563 /*
564 * Several make's support this sort of mechanism for tracking
565 * recursion - but each uses a different name.
566 * We allow the makefiles to update MAKELEVEL and ensure
567 * children see a correctly incremented value.
568 */
569 char tmp[BUFSIZ];
570 snprintf(tmp, sizeof(tmp), "%d", makelevel + 1);
571 setenv(MAKE_LEVEL_ENV, tmp, 1);
572
573 if (var_exportedVars == VAR_EXPORTED_NONE)
574 return;
575
576 if (var_exportedVars == VAR_EXPORTED_ALL) {
577 /* Ouch! This is crazy... */
578 Hash_ForEach(&VAR_GLOBAL->context, Var_ExportVars_callback, NULL);
579 return;
580 }
581
582 val = Var_Subst("${" MAKE_EXPORTED ":O:u}", VAR_GLOBAL, VARE_WANTRES);
583 if (*val) {
584 Words words = Str_Words(val, FALSE);
585 size_t i;
586
587 for (i = 0; i < words.len; i++)
588 Var_Export1(words.words[i], 0);
589 Words_Free(words);
590 }
591 free(val);
592 }
593
594 /*
595 * This is called when .export is seen or .MAKE.EXPORTED is modified.
596 *
597 * It is also called when any exported variable is modified.
598 * XXX: Is it really?
599 *
600 * str has the format "[-env|-literal] varname...".
601 */
602 void
603 Var_Export(const char *str, Boolean isExport)
604 {
605 VarExportFlags flags;
606 char *val;
607
608 if (isExport && str[0] == '\0') {
609 var_exportedVars = VAR_EXPORTED_ALL; /* use with caution! */
610 return;
611 }
612
613 flags = 0;
614 if (strncmp(str, "-env", 4) == 0) {
615 str += 4;
616 } else if (strncmp(str, "-literal", 8) == 0) {
617 str += 8;
618 flags |= VAR_EXPORT_LITERAL;
619 } else {
620 flags |= VAR_EXPORT_PARENT;
621 }
622
623 val = Var_Subst(str, VAR_GLOBAL, VARE_WANTRES);
624 if (val[0] != '\0') {
625 Words words = Str_Words(val, FALSE);
626
627 size_t i;
628 for (i = 0; i < words.len; i++) {
629 const char *name = words.words[i];
630 if (Var_Export1(name, flags)) {
631 if (var_exportedVars != VAR_EXPORTED_ALL)
632 var_exportedVars = VAR_EXPORTED_YES;
633 if (isExport && (flags & VAR_EXPORT_PARENT)) {
634 Var_Append(MAKE_EXPORTED, name, VAR_GLOBAL);
635 }
636 }
637 }
638 Words_Free(words);
639 }
640 free(val);
641 }
642
643
644 extern char **environ;
645
646 /*
647 * This is called when .unexport[-env] is seen.
648 *
649 * str must have the form "unexport[-env] varname...".
650 */
651 void
652 Var_UnExport(const char *str)
653 {
654 const char *varnames;
655 char *varnames_freeIt;
656 Boolean unexport_env;
657
658 varnames = NULL;
659 varnames_freeIt = NULL;
660
661 str += strlen("unexport");
662 unexport_env = strncmp(str, "-env", 4) == 0;
663 if (unexport_env) {
664 const char *cp;
665 char **newenv;
666
667 cp = getenv(MAKE_LEVEL_ENV); /* we should preserve this */
668 if (environ == savedEnv) {
669 /* we have been here before! */
670 newenv = bmake_realloc(environ, 2 * sizeof(char *));
671 } else {
672 if (savedEnv) {
673 free(savedEnv);
674 savedEnv = NULL;
675 }
676 newenv = bmake_malloc(2 * sizeof(char *));
677 }
678
679 /* Note: we cannot safely free() the original environ. */
680 environ = savedEnv = newenv;
681 newenv[0] = NULL;
682 newenv[1] = NULL;
683 if (cp && *cp)
684 setenv(MAKE_LEVEL_ENV, cp, 1);
685 } else {
686 for (; ch_isspace(*str); str++)
687 continue;
688 if (str[0] != '\0')
689 varnames = str;
690 }
691
692 if (varnames == NULL) {
693 /* Using .MAKE.EXPORTED */
694 varnames = varnames_freeIt = Var_Subst("${" MAKE_EXPORTED ":O:u}",
695 VAR_GLOBAL, VARE_WANTRES);
696 }
697
698 {
699 Var *v;
700 size_t i;
701
702 Words words = Str_Words(varnames, FALSE);
703 for (i = 0; i < words.len; i++) {
704 const char *varname = words.words[i];
705 v = VarFind(varname, VAR_GLOBAL, 0);
706 if (v == NULL) {
707 VAR_DEBUG("Not unexporting \"%s\" (not found)\n", varname);
708 continue;
709 }
710
711 VAR_DEBUG("Unexporting \"%s\"\n", varname);
712 if (!unexport_env && (v->flags & VAR_EXPORTED) &&
713 !(v->flags & VAR_REEXPORT))
714 unsetenv(v->name);
715 v->flags &= ~(unsigned)(VAR_EXPORTED | VAR_REEXPORT);
716
717 /*
718 * If we are unexporting a list,
719 * remove each one from .MAKE.EXPORTED.
720 * If we are removing them all,
721 * just delete .MAKE.EXPORTED below.
722 */
723 if (varnames == str) {
724 char *expr = str_concat3("${" MAKE_EXPORTED ":N", v->name, "}");
725 char *cp = Var_Subst(expr, VAR_GLOBAL, VARE_WANTRES);
726 Var_Set(MAKE_EXPORTED, cp, VAR_GLOBAL);
727 free(cp);
728 free(expr);
729 }
730 }
731 Words_Free(words);
732 if (varnames != str) {
733 Var_Delete(MAKE_EXPORTED, VAR_GLOBAL);
734 free(varnames_freeIt);
735 }
736 }
737 }
738
739 /* See Var_Set for documentation. */
740 void
741 Var_Set_with_flags(const char *name, const char *val, GNode *ctxt,
742 VarSet_Flags flags)
743 {
744 const char *unexpanded_name = name;
745 char *name_freeIt = NULL;
746 Var *v;
747
748 assert(val != NULL);
749
750 /*
751 * We only look for a variable in the given context since anything set
752 * here will override anything in a lower context, so there's not much
753 * point in searching them all just to save a bit of memory...
754 */
755 if (strchr(name, '$') != NULL)
756 name = name_freeIt = Var_Subst(name, ctxt, VARE_WANTRES);
757
758 if (name[0] == '\0') {
759 VAR_DEBUG("Var_Set(\"%s\", \"%s\", ...) "
760 "name expands to empty string - ignored\n",
761 unexpanded_name, val);
762 free(name_freeIt);
763 return;
764 }
765
766 if (ctxt == VAR_GLOBAL) {
767 v = VarFind(name, VAR_CMD, 0);
768 if (v != NULL) {
769 if (v->flags & VAR_FROM_CMD) {
770 VAR_DEBUG("%s:%s = %s ignored!\n", ctxt->name, name, val);
771 goto out;
772 }
773 VarFreeEnv(v, TRUE);
774 }
775 }
776
777 v = VarFind(name, ctxt, 0);
778 if (v == NULL) {
779 if (ctxt == VAR_CMD && !(flags & VAR_NO_EXPORT)) {
780 /*
781 * This var would normally prevent the same name being added
782 * to VAR_GLOBAL, so delete it from there if needed.
783 * Otherwise -V name may show the wrong value.
784 */
785 Var_Delete(name, VAR_GLOBAL);
786 }
787 VarAdd(name, val, ctxt, flags);
788 } else {
789 if ((v->flags & VAR_READONLY) && !(flags & VAR_SET_READONLY)) {
790 VAR_DEBUG("%s:%s = %s ignored (read-only)\n",
791 ctxt->name, name, val);
792 goto out;
793 }
794 Buf_Empty(&v->val);
795 if (val)
796 Buf_AddStr(&v->val, val);
797
798 VAR_DEBUG("%s:%s = %s\n", ctxt->name, name, val);
799 if (v->flags & VAR_EXPORTED) {
800 Var_Export1(name, VAR_EXPORT_PARENT);
801 }
802 }
803 /*
804 * Any variables given on the command line are automatically exported
805 * to the environment (as per POSIX standard)
806 * Other than internals.
807 */
808 if (ctxt == VAR_CMD && !(flags & VAR_NO_EXPORT) && name[0] != '.') {
809 if (v == NULL) {
810 /* we just added it */
811 v = VarFind(name, ctxt, 0);
812 }
813 if (v != NULL)
814 v->flags |= VAR_FROM_CMD;
815 /*
816 * If requested, don't export these in the environment
817 * individually. We still put them in MAKEOVERRIDES so
818 * that the command-line settings continue to override
819 * Makefile settings.
820 */
821 if (!varNoExportEnv)
822 setenv(name, val ? val : "", 1);
823
824 Var_Append(MAKEOVERRIDES, name, VAR_GLOBAL);
825 }
826 if (name[0] == '.' && strcmp(name, SAVE_DOLLARS) == 0)
827 save_dollars = s2Boolean(val, save_dollars);
828
829 out:
830 free(name_freeIt);
831 if (v != NULL)
832 VarFreeEnv(v, TRUE);
833 }
834
835 /*-
836 *-----------------------------------------------------------------------
837 * Var_Set --
838 * Set the variable name to the value val in the given context.
839 *
840 * If the variable doesn't yet exist, it is created.
841 * Otherwise the new value overwrites and replaces the old value.
842 *
843 * Input:
844 * name name of variable to set
845 * val value to give to the variable
846 * ctxt context in which to set it
847 *
848 * Notes:
849 * The variable is searched for only in its context before being
850 * created in that context. I.e. if the context is VAR_GLOBAL,
851 * only VAR_GLOBAL->context is searched. Likewise if it is VAR_CMD, only
852 * VAR_CMD->context is searched. This is done to avoid the literally
853 * thousands of unnecessary strcmp's that used to be done to
854 * set, say, $(@) or $(<).
855 * If the context is VAR_GLOBAL though, we check if the variable
856 * was set in VAR_CMD from the command line and skip it if so.
857 *-----------------------------------------------------------------------
858 */
859 void
860 Var_Set(const char *name, const char *val, GNode *ctxt)
861 {
862 Var_Set_with_flags(name, val, ctxt, 0);
863 }
864
865 /*-
866 *-----------------------------------------------------------------------
867 * Var_Append --
868 * The variable of the given name has the given value appended to it in
869 * the given context.
870 *
871 * If the variable doesn't exist, it is created. Otherwise the strings
872 * are concatenated, with a space in between.
873 *
874 * Input:
875 * name name of variable to modify
876 * val string to append to it
877 * ctxt context in which this should occur
878 *
879 * Notes:
880 * Only if the variable is being sought in the global context is the
881 * environment searched.
882 * XXX: Knows its calling circumstances in that if called with ctxt
883 * an actual target, it will only search that context since only
884 * a local variable could be being appended to. This is actually
885 * a big win and must be tolerated.
886 *-----------------------------------------------------------------------
887 */
888 void
889 Var_Append(const char *name, const char *val, GNode *ctxt)
890 {
891 char *name_freeIt = NULL;
892 Var *v;
893
894 assert(val != NULL);
895
896 if (strchr(name, '$') != NULL) {
897 const char *unexpanded_name = name;
898 name = name_freeIt = Var_Subst(name, ctxt, VARE_WANTRES);
899 if (name[0] == '\0') {
900 VAR_DEBUG("Var_Append(\"%s\", \"%s\", ...) "
901 "name expands to empty string - ignored\n",
902 unexpanded_name, val);
903 free(name_freeIt);
904 return;
905 }
906 }
907
908 v = VarFind(name, ctxt, ctxt == VAR_GLOBAL ? (FIND_CMD | FIND_ENV) : 0);
909
910 if (v == NULL) {
911 Var_Set(name, val, ctxt);
912 } else if (ctxt == VAR_CMD || !(v->flags & VAR_FROM_CMD)) {
913 Buf_AddByte(&v->val, ' ');
914 Buf_AddStr(&v->val, val);
915
916 VAR_DEBUG("%s:%s = %s\n", ctxt->name, name,
917 Buf_GetAll(&v->val, NULL));
918
919 if (v->flags & VAR_FROM_ENV) {
920 Hash_Entry *h;
921
922 /*
923 * If the original variable came from the environment, we
924 * have to install it in the global context (we could place
925 * it in the environment, but then we should provide a way to
926 * export other variables...)
927 */
928 v->flags &= ~(unsigned)VAR_FROM_ENV;
929 h = Hash_CreateEntry(&ctxt->context, name, NULL);
930 Hash_SetValue(h, v);
931 }
932 }
933 free(name_freeIt);
934 }
935
936 /* See if the given variable exists, in the given context or in other
937 * fallback contexts.
938 *
939 * Input:
940 * name Variable to find
941 * ctxt Context in which to start search
942 */
943 Boolean
944 Var_Exists(const char *name, GNode *ctxt)
945 {
946 char *name_freeIt = NULL;
947 Var *v;
948
949 if (strchr(name, '$') != NULL)
950 name = name_freeIt = Var_Subst(name, ctxt, VARE_WANTRES);
951
952 v = VarFind(name, ctxt, FIND_CMD | FIND_GLOBAL | FIND_ENV);
953 free(name_freeIt);
954 if (v == NULL)
955 return FALSE;
956
957 (void)VarFreeEnv(v, TRUE);
958 return TRUE;
959 }
960
961 /*-
962 *-----------------------------------------------------------------------
963 * Var_Value --
964 * Return the unexpanded value of the given variable in the given
965 * context, or the usual contexts.
966 *
967 * Input:
968 * name name to find
969 * ctxt context in which to search for it
970 *
971 * Results:
972 * The value if the variable exists, NULL if it doesn't.
973 * If the returned value is not NULL, the caller must free *freeIt
974 * as soon as the returned value is no longer needed.
975 *-----------------------------------------------------------------------
976 */
977 const char *
978 Var_Value(const char *name, GNode *ctxt, char **freeIt)
979 {
980 Var *v = VarFind(name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
981 char *p;
982
983 *freeIt = NULL;
984 if (v == NULL)
985 return NULL;
986
987 p = Buf_GetAll(&v->val, NULL);
988 if (VarFreeEnv(v, FALSE))
989 *freeIt = p;
990 return p;
991 }
992
993
994 /* SepBuf is a string being built from "words", interleaved with separators. */
995 typedef struct {
996 Buffer buf;
997 Boolean needSep;
998 char sep; /* usually ' ', but see the :ts modifier */
999 } SepBuf;
1000
1001 static void
1002 SepBuf_Init(SepBuf *buf, char sep)
1003 {
1004 Buf_Init(&buf->buf, 32 /* bytes */);
1005 buf->needSep = FALSE;
1006 buf->sep = sep;
1007 }
1008
1009 static void
1010 SepBuf_Sep(SepBuf *buf)
1011 {
1012 buf->needSep = TRUE;
1013 }
1014
1015 static void
1016 SepBuf_AddBytes(SepBuf *buf, const char *mem, size_t mem_size)
1017 {
1018 if (mem_size == 0)
1019 return;
1020 if (buf->needSep && buf->sep != '\0') {
1021 Buf_AddByte(&buf->buf, buf->sep);
1022 buf->needSep = FALSE;
1023 }
1024 Buf_AddBytes(&buf->buf, mem, mem_size);
1025 }
1026
1027 static void
1028 SepBuf_AddBytesBetween(SepBuf *buf, const char *start, const char *end)
1029 {
1030 SepBuf_AddBytes(buf, start, (size_t)(end - start));
1031 }
1032
1033 static void
1034 SepBuf_AddStr(SepBuf *buf, const char *str)
1035 {
1036 SepBuf_AddBytes(buf, str, strlen(str));
1037 }
1038
1039 static char *
1040 SepBuf_Destroy(SepBuf *buf, Boolean free_buf)
1041 {
1042 return Buf_Destroy(&buf->buf, free_buf);
1043 }
1044
1045
1046 /* This callback for ModifyWords gets a single word from an expression and
1047 * typically adds a modification of this word to the buffer. It may also do
1048 * nothing or add several words. */
1049 typedef void (*ModifyWordsCallback)(const char *word, SepBuf *buf, void *data);
1050
1051
1052 /* Callback for ModifyWords to implement the :H modifier.
1053 * Add the dirname of the given word to the buffer. */
1054 static void
1055 ModifyWord_Head(const char *word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1056 {
1057 const char *slash = strrchr(word, '/');
1058 if (slash != NULL)
1059 SepBuf_AddBytesBetween(buf, word, slash);
1060 else
1061 SepBuf_AddStr(buf, ".");
1062 }
1063
1064 /* Callback for ModifyWords to implement the :T modifier.
1065 * Add the basename of the given word to the buffer. */
1066 static void
1067 ModifyWord_Tail(const char *word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1068 {
1069 const char *slash = strrchr(word, '/');
1070 const char *base = slash != NULL ? slash + 1 : word;
1071 SepBuf_AddStr(buf, base);
1072 }
1073
1074 /* Callback for ModifyWords to implement the :E modifier.
1075 * Add the filename suffix of the given word to the buffer, if it exists. */
1076 static void
1077 ModifyWord_Suffix(const char *word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1078 {
1079 const char *dot = strrchr(word, '.');
1080 if (dot != NULL)
1081 SepBuf_AddStr(buf, dot + 1);
1082 }
1083
1084 /* Callback for ModifyWords to implement the :R modifier.
1085 * Add the basename of the given word to the buffer. */
1086 static void
1087 ModifyWord_Root(const char *word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1088 {
1089 const char *dot = strrchr(word, '.');
1090 size_t len = dot != NULL ? (size_t)(dot - word) : strlen(word);
1091 SepBuf_AddBytes(buf, word, len);
1092 }
1093
1094 /* Callback for ModifyWords to implement the :M modifier.
1095 * Place the word in the buffer if it matches the given pattern. */
1096 static void
1097 ModifyWord_Match(const char *word, SepBuf *buf, void *data)
1098 {
1099 const char *pattern = data;
1100 VAR_DEBUG("VarMatch [%s] [%s]\n", word, pattern);
1101 if (Str_Match(word, pattern))
1102 SepBuf_AddStr(buf, word);
1103 }
1104
1105 /* Callback for ModifyWords to implement the :N modifier.
1106 * Place the word in the buffer if it doesn't match the given pattern. */
1107 static void
1108 ModifyWord_NoMatch(const char *word, SepBuf *buf, void *data)
1109 {
1110 const char *pattern = data;
1111 if (!Str_Match(word, pattern))
1112 SepBuf_AddStr(buf, word);
1113 }
1114
1115 #ifdef SYSVVARSUB
1116 /*-
1117 *-----------------------------------------------------------------------
1118 * Str_SYSVMatch --
1119 * Check word against pattern for a match (% is wild),
1120 *
1121 * Input:
1122 * word Word to examine
1123 * pattern Pattern to examine against
1124 *
1125 * Results:
1126 * Returns the start of the match, or NULL.
1127 * *match_len returns the length of the match, if any.
1128 * *hasPercent returns whether the pattern contains a percent.
1129 *-----------------------------------------------------------------------
1130 */
1131 static const char *
1132 Str_SYSVMatch(const char *word, const char *pattern, size_t *match_len,
1133 Boolean *hasPercent)
1134 {
1135 const char *p = pattern;
1136 const char *w = word;
1137 const char *percent;
1138 size_t w_len;
1139 size_t p_len;
1140 const char *w_tail;
1141
1142 *hasPercent = FALSE;
1143 if (*p == '\0') { /* ${VAR:=suffix} */
1144 *match_len = strlen(w); /* Null pattern is the whole string */
1145 return w;
1146 }
1147
1148 percent = strchr(p, '%');
1149 if (percent != NULL) { /* ${VAR:...%...=...} */
1150 *hasPercent = TRUE;
1151 if (*w == '\0')
1152 return NULL; /* empty word does not match pattern */
1153
1154 /* check that the prefix matches */
1155 for (; p != percent && *w != '\0' && *w == *p; w++, p++)
1156 continue;
1157 if (p != percent)
1158 return NULL; /* No match */
1159
1160 p++; /* Skip the percent */
1161 if (*p == '\0') {
1162 /* No more pattern, return the rest of the string */
1163 *match_len = strlen(w);
1164 return w;
1165 }
1166 }
1167
1168 /* Test whether the tail matches */
1169 w_len = strlen(w);
1170 p_len = strlen(p);
1171 if (w_len < p_len)
1172 return NULL;
1173
1174 w_tail = w + w_len - p_len;
1175 if (memcmp(p, w_tail, p_len) != 0)
1176 return NULL;
1177
1178 *match_len = (size_t)(w_tail - w);
1179 return w;
1180 }
1181
1182 typedef struct {
1183 GNode *ctx;
1184 const char *lhs;
1185 const char *rhs;
1186 } ModifyWord_SYSVSubstArgs;
1187
1188 /* Callback for ModifyWords to implement the :%.from=%.to modifier. */
1189 static void
1190 ModifyWord_SYSVSubst(const char *word, SepBuf *buf, void *data)
1191 {
1192 const ModifyWord_SYSVSubstArgs *args = data;
1193 char *rhs_expanded;
1194 const char *rhs;
1195 const char *percent;
1196
1197 size_t match_len;
1198 Boolean lhsPercent;
1199 const char *match = Str_SYSVMatch(word, args->lhs, &match_len, &lhsPercent);
1200 if (match == NULL) {
1201 SepBuf_AddStr(buf, word);
1202 return;
1203 }
1204
1205 /* Append rhs to the buffer, substituting the first '%' with the
1206 * match, but only if the lhs had a '%' as well. */
1207
1208 rhs_expanded = Var_Subst(args->rhs, args->ctx, VARE_WANTRES);
1209
1210 rhs = rhs_expanded;
1211 percent = strchr(rhs, '%');
1212
1213 if (percent != NULL && lhsPercent) {
1214 /* Copy the prefix of the replacement pattern */
1215 SepBuf_AddBytesBetween(buf, rhs, percent);
1216 rhs = percent + 1;
1217 }
1218 if (percent != NULL || !lhsPercent)
1219 SepBuf_AddBytes(buf, match, match_len);
1220
1221 /* Append the suffix of the replacement pattern */
1222 SepBuf_AddStr(buf, rhs);
1223
1224 free(rhs_expanded);
1225 }
1226 #endif
1227
1228
1229 typedef struct {
1230 const char *lhs;
1231 size_t lhsLen;
1232 const char *rhs;
1233 size_t rhsLen;
1234 VarPatternFlags pflags;
1235 Boolean matched;
1236 } ModifyWord_SubstArgs;
1237
1238 /* Callback for ModifyWords to implement the :S,from,to, modifier.
1239 * Perform a string substitution on the given word. */
1240 static void
1241 ModifyWord_Subst(const char *word, SepBuf *buf, void *data)
1242 {
1243 size_t wordLen = strlen(word);
1244 ModifyWord_SubstArgs *args = data;
1245 const char *match;
1246
1247 if ((args->pflags & VARP_SUB_ONE) && args->matched)
1248 goto nosub;
1249
1250 if (args->pflags & VARP_ANCHOR_START) {
1251 if (wordLen < args->lhsLen ||
1252 memcmp(word, args->lhs, args->lhsLen) != 0)
1253 goto nosub;
1254
1255 if (args->pflags & VARP_ANCHOR_END) {
1256 if (wordLen != args->lhsLen)
1257 goto nosub;
1258
1259 /* :S,^whole$,replacement, */
1260 SepBuf_AddBytes(buf, args->rhs, args->rhsLen);
1261 args->matched = TRUE;
1262 } else {
1263 /* :S,^prefix,replacement, */
1264 SepBuf_AddBytes(buf, args->rhs, args->rhsLen);
1265 SepBuf_AddBytes(buf, word + args->lhsLen, wordLen - args->lhsLen);
1266 args->matched = TRUE;
1267 }
1268 return;
1269 }
1270
1271 if (args->pflags & VARP_ANCHOR_END) {
1272 const char *start;
1273
1274 if (wordLen < args->lhsLen)
1275 goto nosub;
1276
1277 start = word + (wordLen - args->lhsLen);
1278 if (memcmp(start, args->lhs, args->lhsLen) != 0)
1279 goto nosub;
1280
1281 /* :S,suffix$,replacement, */
1282 SepBuf_AddBytesBetween(buf, word, start);
1283 SepBuf_AddBytes(buf, args->rhs, args->rhsLen);
1284 args->matched = TRUE;
1285 return;
1286 }
1287
1288 /* unanchored case, may match more than once */
1289 while ((match = Str_FindSubstring(word, args->lhs)) != NULL) {
1290 SepBuf_AddBytesBetween(buf, word, match);
1291 SepBuf_AddBytes(buf, args->rhs, args->rhsLen);
1292 args->matched = TRUE;
1293 wordLen -= (size_t)(match - word) + args->lhsLen;
1294 word += (size_t)(match - word) + args->lhsLen;
1295 if (wordLen == 0 || !(args->pflags & VARP_SUB_GLOBAL))
1296 break;
1297 }
1298 nosub:
1299 SepBuf_AddBytes(buf, word, wordLen);
1300 }
1301
1302 #ifndef NO_REGEX
1303 /* Print the error caused by a regcomp or regexec call. */
1304 static void
1305 VarREError(int reerr, regex_t *pat, const char *str)
1306 {
1307 size_t errlen = regerror(reerr, pat, 0, 0);
1308 char *errbuf = bmake_malloc(errlen);
1309 regerror(reerr, pat, errbuf, errlen);
1310 Error("%s: %s", str, errbuf);
1311 free(errbuf);
1312 }
1313
1314 typedef struct {
1315 regex_t re;
1316 size_t nsub;
1317 char *replace;
1318 VarPatternFlags pflags;
1319 Boolean matched;
1320 } ModifyWord_SubstRegexArgs;
1321
1322 /* Callback for ModifyWords to implement the :C/from/to/ modifier.
1323 * Perform a regex substitution on the given word. */
1324 static void
1325 ModifyWord_SubstRegex(const char *word, SepBuf *buf, void *data)
1326 {
1327 ModifyWord_SubstRegexArgs *args = data;
1328 int xrv;
1329 const char *wp = word;
1330 char *rp;
1331 int flags = 0;
1332 regmatch_t m[10];
1333
1334 if ((args->pflags & VARP_SUB_ONE) && args->matched)
1335 goto nosub;
1336
1337 tryagain:
1338 xrv = regexec(&args->re, wp, args->nsub, m, flags);
1339
1340 switch (xrv) {
1341 case 0:
1342 args->matched = TRUE;
1343 SepBuf_AddBytes(buf, wp, (size_t)m[0].rm_so);
1344
1345 for (rp = args->replace; *rp; rp++) {
1346 if (*rp == '\\' && (rp[1] == '&' || rp[1] == '\\')) {
1347 SepBuf_AddBytes(buf, rp + 1, 1);
1348 rp++;
1349 continue;
1350 }
1351
1352 if (*rp == '&') {
1353 SepBuf_AddBytesBetween(buf, wp + m[0].rm_so, wp + m[0].rm_eo);
1354 continue;
1355 }
1356
1357 if (*rp != '\\' || !ch_isdigit(rp[1])) {
1358 SepBuf_AddBytes(buf, rp, 1);
1359 continue;
1360 }
1361
1362 { /* \0 to \9 backreference */
1363 size_t n = (size_t)(rp[1] - '0');
1364 rp++;
1365
1366 if (n >= args->nsub) {
1367 Error("No subexpression \\%zu", n);
1368 } else if (m[n].rm_so == -1 && m[n].rm_eo == -1) {
1369 Error("No match for subexpression \\%zu", n);
1370 } else {
1371 SepBuf_AddBytesBetween(buf, wp + m[n].rm_so,
1372 wp + m[n].rm_eo);
1373 }
1374 }
1375 }
1376
1377 wp += m[0].rm_eo;
1378 if (args->pflags & VARP_SUB_GLOBAL) {
1379 flags |= REG_NOTBOL;
1380 if (m[0].rm_so == 0 && m[0].rm_eo == 0) {
1381 SepBuf_AddBytes(buf, wp, 1);
1382 wp++;
1383 }
1384 if (*wp)
1385 goto tryagain;
1386 }
1387 if (*wp) {
1388 SepBuf_AddStr(buf, wp);
1389 }
1390 break;
1391 default:
1392 VarREError(xrv, &args->re, "Unexpected regex error");
1393 /* fall through */
1394 case REG_NOMATCH:
1395 nosub:
1396 SepBuf_AddStr(buf, wp);
1397 break;
1398 }
1399 }
1400 #endif
1401
1402
1403 typedef struct {
1404 GNode *ctx;
1405 char *tvar; /* name of temporary variable */
1406 char *str; /* string to expand */
1407 VarEvalFlags eflags;
1408 } ModifyWord_LoopArgs;
1409
1410 /* Callback for ModifyWords to implement the :@var (at) ...@ modifier of ODE make. */
1411 static void
1412 ModifyWord_Loop(const char *word, SepBuf *buf, void *data)
1413 {
1414 const ModifyWord_LoopArgs *args;
1415 char *s;
1416
1417 if (word[0] == '\0')
1418 return;
1419
1420 args = data;
1421 Var_Set_with_flags(args->tvar, word, args->ctx, VAR_NO_EXPORT);
1422 s = Var_Subst(args->str, args->ctx, args->eflags);
1423
1424 VAR_DEBUG("ModifyWord_Loop: in \"%s\", replace \"%s\" with \"%s\" "
1425 "to \"%s\"\n",
1426 word, args->tvar, args->str, s);
1427
1428 if (s[0] == '\n' || (buf->buf.count > 0 &&
1429 buf->buf.buffer[buf->buf.count - 1] == '\n'))
1430 buf->needSep = FALSE;
1431 SepBuf_AddStr(buf, s);
1432 free(s);
1433 }
1434
1435
1436 /*-
1437 * Implements the :[first..last] modifier.
1438 * This is a special case of ModifyWords since we want to be able
1439 * to scan the list backwards if first > last.
1440 */
1441 static char *
1442 VarSelectWords(char sep, Boolean oneBigWord, const char *str, int first,
1443 int last)
1444 {
1445 Words words;
1446 int start, end, step;
1447 int i;
1448
1449 SepBuf buf;
1450 SepBuf_Init(&buf, sep);
1451
1452 if (oneBigWord) {
1453 /* fake what Str_Words() would do if there were only one word */
1454 words.len = 1;
1455 words.words = bmake_malloc((words.len + 1) * sizeof(char *));
1456 words.freeIt = bmake_strdup(str);
1457 words.words[0] = words.freeIt;
1458 words.words[1] = NULL;
1459 } else {
1460 words = Str_Words(str, FALSE);
1461 }
1462
1463 /*
1464 * Now sanitize the given range.
1465 * If first or last are negative, convert them to the positive equivalents
1466 * (-1 gets converted to ac, -2 gets converted to (ac - 1), etc.).
1467 */
1468 if (first < 0)
1469 first += (int)words.len + 1;
1470 if (last < 0)
1471 last += (int)words.len + 1;
1472
1473 /*
1474 * We avoid scanning more of the list than we need to.
1475 */
1476 if (first > last) {
1477 start = MIN((int)words.len, first) - 1;
1478 end = MAX(0, last - 1);
1479 step = -1;
1480 } else {
1481 start = MAX(0, first - 1);
1482 end = MIN((int)words.len, last);
1483 step = 1;
1484 }
1485
1486 for (i = start; (step < 0) == (i >= end); i += step) {
1487 SepBuf_AddStr(&buf, words.words[i]);
1488 SepBuf_Sep(&buf);
1489 }
1490
1491 Words_Free(words);
1492
1493 return SepBuf_Destroy(&buf, FALSE);
1494 }
1495
1496
1497 /* Callback for ModifyWords to implement the :tA modifier.
1498 * Replace each word with the result of realpath() if successful. */
1499 static void
1500 ModifyWord_Realpath(const char *word, SepBuf *buf, void *data MAKE_ATTR_UNUSED)
1501 {
1502 struct stat st;
1503 char rbuf[MAXPATHLEN];
1504
1505 const char *rp = cached_realpath(word, rbuf);
1506 if (rp != NULL && *rp == '/' && stat(rp, &st) == 0)
1507 word = rp;
1508
1509 SepBuf_AddStr(buf, word);
1510 }
1511
1512 /*-
1513 *-----------------------------------------------------------------------
1514 * Modify each of the words of the passed string using the given function.
1515 *
1516 * Input:
1517 * str String whose words should be modified
1518 * modifyWord Function that modifies a single word
1519 * modifyWord_args Custom arguments for modifyWord
1520 *
1521 * Results:
1522 * A string of all the words modified appropriately.
1523 *-----------------------------------------------------------------------
1524 */
1525 static char *
1526 ModifyWords(GNode *ctx, char sep, Boolean oneBigWord, const char *str,
1527 ModifyWordsCallback modifyWord, void *modifyWord_args)
1528 {
1529 SepBuf result;
1530 Words words;
1531 size_t i;
1532
1533 if (oneBigWord) {
1534 SepBuf_Init(&result, sep);
1535 modifyWord(str, &result, modifyWord_args);
1536 return SepBuf_Destroy(&result, FALSE);
1537 }
1538
1539 SepBuf_Init(&result, sep);
1540
1541 words = Str_Words(str, FALSE);
1542
1543 VAR_DEBUG("ModifyWords: split \"%s\" into %zu words\n", str, words.len);
1544
1545 for (i = 0; i < words.len; i++) {
1546 modifyWord(words.words[i], &result, modifyWord_args);
1547 if (result.buf.count > 0)
1548 SepBuf_Sep(&result);
1549 }
1550
1551 Words_Free(words);
1552
1553 return SepBuf_Destroy(&result, FALSE);
1554 }
1555
1556
1557 static char *
1558 Words_JoinFree(Words words)
1559 {
1560 Buffer buf;
1561 size_t i;
1562
1563 Buf_Init(&buf, 0);
1564
1565 for (i = 0; i < words.len; i++) {
1566 if (i != 0)
1567 Buf_AddByte(&buf, ' '); /* XXX: st->sep, for consistency */
1568 Buf_AddStr(&buf, words.words[i]);
1569 }
1570
1571 Words_Free(words);
1572
1573 return Buf_Destroy(&buf, FALSE);
1574 }
1575
1576 /* Remove adjacent duplicate words. */
1577 static char *
1578 VarUniq(const char *str)
1579 {
1580 Words words = Str_Words(str, FALSE);
1581
1582 if (words.len > 1) {
1583 size_t i, j;
1584 for (j = 0, i = 1; i < words.len; i++)
1585 if (strcmp(words.words[i], words.words[j]) != 0 && (++j != i))
1586 words.words[j] = words.words[i];
1587 words.len = j + 1;
1588 }
1589
1590 return Words_JoinFree(words);
1591 }
1592
1593
1594 /*-
1595 * Parse a part of a modifier such as the "from" and "to" in :S/from/to/
1596 * or the "var" or "replacement" in :@var@replacement+${var}@, up to and
1597 * including the next unescaped delimiter. The delimiter, as well as the
1598 * backslash or the dollar, can be escaped with a backslash.
1599 *
1600 * Return the parsed (and possibly expanded) string, or NULL if no delimiter
1601 * was found. On successful return, the parsing position pp points right
1602 * after the delimiter. The delimiter is not included in the returned
1603 * value though.
1604 */
1605 static char *
1606 ParseModifierPart(
1607 const char **pp, /* The parsing position, updated upon return */
1608 int delim, /* Parsing stops at this delimiter */
1609 VarEvalFlags eflags, /* Flags for evaluating nested variables;
1610 * if VARE_WANTRES is not set, the text is
1611 * only parsed */
1612 GNode *ctxt, /* For looking up nested variables */
1613 size_t *out_length, /* Optionally stores the length of the returned
1614 * string, just to save another strlen call. */
1615 VarPatternFlags *out_pflags,/* For the first part of the :S modifier,
1616 * sets the VARP_ANCHOR_END flag if the last
1617 * character of the pattern is a $. */
1618 ModifyWord_SubstArgs *subst /* For the second part of the :S modifier,
1619 * allow ampersands to be escaped and replace
1620 * unescaped ampersands with subst->lhs. */
1621 ) {
1622 Buffer buf;
1623 const char *p;
1624 char *rstr;
1625
1626 Buf_Init(&buf, 0);
1627
1628 /*
1629 * Skim through until the matching delimiter is found;
1630 * pick up variable substitutions on the way. Also allow
1631 * backslashes to quote the delimiter, $, and \, but don't
1632 * touch other backslashes.
1633 */
1634 p = *pp;
1635 while (*p != '\0' && *p != delim) {
1636 const char *varstart;
1637
1638 Boolean is_escaped = p[0] == '\\' && (
1639 p[1] == delim || p[1] == '\\' || p[1] == '$' ||
1640 (p[1] == '&' && subst != NULL));
1641 if (is_escaped) {
1642 Buf_AddByte(&buf, p[1]);
1643 p += 2;
1644 continue;
1645 }
1646
1647 if (*p != '$') { /* Unescaped, simple text */
1648 if (subst != NULL && *p == '&')
1649 Buf_AddBytes(&buf, subst->lhs, subst->lhsLen);
1650 else
1651 Buf_AddByte(&buf, *p);
1652 p++;
1653 continue;
1654 }
1655
1656 if (p[1] == delim) { /* Unescaped $ at end of pattern */
1657 if (out_pflags != NULL)
1658 *out_pflags |= VARP_ANCHOR_END;
1659 else
1660 Buf_AddByte(&buf, *p);
1661 p++;
1662 continue;
1663 }
1664
1665 if (eflags & VARE_WANTRES) { /* Nested variable, evaluated */
1666 const char *nested_p = p;
1667 const char *nested_val;
1668 void *nested_val_freeIt;
1669 VarEvalFlags nested_eflags = eflags & ~(unsigned)VARE_ASSIGN;
1670
1671 (void)Var_Parse(&nested_p, ctxt, nested_eflags,
1672 &nested_val, &nested_val_freeIt);
1673 /* TODO: handle errors */
1674 Buf_AddStr(&buf, nested_val);
1675 free(nested_val_freeIt);
1676 p += nested_p - p;
1677 continue;
1678 }
1679
1680 /* XXX: This whole block is very similar to Var_Parse without
1681 * VARE_WANTRES. There may be subtle edge cases though that are
1682 * not yet covered in the unit tests and that are parsed differently,
1683 * depending on whether they are evaluated or not.
1684 *
1685 * This subtle difference is not documented in the manual page,
1686 * neither is the difference between parsing :D and :M documented.
1687 * No code should ever depend on these details, but who knows. */
1688
1689 varstart = p; /* Nested variable, only parsed */
1690 if (p[1] == '(' || p[1] == '{') {
1691 /*
1692 * Find the end of this variable reference
1693 * and suck it in without further ado.
1694 * It will be interpreted later.
1695 */
1696 int have = p[1];
1697 int want = have == '(' ? ')' : '}';
1698 int depth = 1;
1699
1700 for (p += 2; *p != '\0' && depth > 0; p++) {
1701 if (p[-1] != '\\') {
1702 if (*p == have)
1703 depth++;
1704 if (*p == want)
1705 depth--;
1706 }
1707 }
1708 Buf_AddBytesBetween(&buf, varstart, p);
1709 } else {
1710 Buf_AddByte(&buf, *varstart);
1711 p++;
1712 }
1713 }
1714
1715 if (*p != delim) {
1716 *pp = p;
1717 return NULL;
1718 }
1719
1720 *pp = ++p;
1721 if (out_length != NULL)
1722 *out_length = Buf_Size(&buf);
1723
1724 rstr = Buf_Destroy(&buf, FALSE);
1725 VAR_DEBUG("Modifier part: \"%s\"\n", rstr);
1726 return rstr;
1727 }
1728
1729 /* Quote shell meta-characters and space characters in the string.
1730 * If quoteDollar is set, also quote and double any '$' characters. */
1731 static char *
1732 VarQuote(const char *str, Boolean quoteDollar)
1733 {
1734 char *res;
1735 Buffer buf;
1736 Buf_Init(&buf, 0);
1737
1738 for (; *str != '\0'; str++) {
1739 if (*str == '\n') {
1740 const char *newline = Shell_GetNewline();
1741 if (newline == NULL)
1742 newline = "\\\n";
1743 Buf_AddStr(&buf, newline);
1744 continue;
1745 }
1746 if (ch_isspace(*str) || ismeta((unsigned char)*str))
1747 Buf_AddByte(&buf, '\\');
1748 Buf_AddByte(&buf, *str);
1749 if (quoteDollar && *str == '$')
1750 Buf_AddStr(&buf, "\\$");
1751 }
1752
1753 res = Buf_Destroy(&buf, FALSE);
1754 VAR_DEBUG("QuoteMeta: [%s]\n", res);
1755 return res;
1756 }
1757
1758 /* Compute the 32-bit hash of the given string, using the MurmurHash3
1759 * algorithm. Output is encoded as 8 hex digits, in Little Endian order. */
1760 static char *
1761 VarHash(const char *str)
1762 {
1763 static const char hexdigits[16] = "0123456789abcdef";
1764 const unsigned char *ustr = (const unsigned char *)str;
1765
1766 uint32_t h = 0x971e137bU;
1767 uint32_t c1 = 0x95543787U;
1768 uint32_t c2 = 0x2ad7eb25U;
1769 size_t len2 = strlen(str);
1770
1771 char *buf;
1772 size_t i;
1773
1774 size_t len;
1775 for (len = len2; len; ) {
1776 uint32_t k = 0;
1777 switch (len) {
1778 default:
1779 k = ((uint32_t)ustr[3] << 24) |
1780 ((uint32_t)ustr[2] << 16) |
1781 ((uint32_t)ustr[1] << 8) |
1782 (uint32_t)ustr[0];
1783 len -= 4;
1784 ustr += 4;
1785 break;
1786 case 3:
1787 k |= (uint32_t)ustr[2] << 16;
1788 /* FALLTHROUGH */
1789 case 2:
1790 k |= (uint32_t)ustr[1] << 8;
1791 /* FALLTHROUGH */
1792 case 1:
1793 k |= (uint32_t)ustr[0];
1794 len = 0;
1795 }
1796 c1 = c1 * 5 + 0x7b7d159cU;
1797 c2 = c2 * 5 + 0x6bce6396U;
1798 k *= c1;
1799 k = (k << 11) ^ (k >> 21);
1800 k *= c2;
1801 h = (h << 13) ^ (h >> 19);
1802 h = h * 5 + 0x52dce729U;
1803 h ^= k;
1804 }
1805 h ^= (uint32_t)len2;
1806 h *= 0x85ebca6b;
1807 h ^= h >> 13;
1808 h *= 0xc2b2ae35;
1809 h ^= h >> 16;
1810
1811 buf = bmake_malloc(9);
1812 for (i = 0; i < 8; i++) {
1813 buf[i] = hexdigits[h & 0x0f];
1814 h >>= 4;
1815 }
1816 buf[8] = '\0';
1817 return buf;
1818 }
1819
1820 static char *
1821 VarStrftime(const char *fmt, Boolean zulu, time_t tim)
1822 {
1823 char buf[BUFSIZ];
1824
1825 if (!tim)
1826 time(&tim);
1827 if (!*fmt)
1828 fmt = "%c";
1829 strftime(buf, sizeof(buf), fmt, zulu ? gmtime(&tim) : localtime(&tim));
1830
1831 buf[sizeof(buf) - 1] = '\0';
1832 return bmake_strdup(buf);
1833 }
1834
1835 /* The ApplyModifier functions all work in the same way. They get the
1836 * current parsing position (pp) and parse the modifier from there. The
1837 * modifier typically lasts until the next ':', or a closing '}' or ')'
1838 * (taken from st->endc), or the end of the string (parse error).
1839 *
1840 * The high-level behavior of these functions is:
1841 *
1842 * 1. parse the modifier
1843 * 2. evaluate the modifier
1844 * 3. housekeeping
1845 *
1846 * Parsing the modifier
1847 *
1848 * If parsing succeeds, the parsing position *pp is updated to point to the
1849 * first character following the modifier, which typically is either ':' or
1850 * st->endc.
1851 *
1852 * If parsing fails because of a missing delimiter (as in the :S, :C or :@
1853 * modifiers), set st->missing_delim and return AMR_CLEANUP.
1854 *
1855 * If parsing fails because the modifier is unknown, return AMR_UNKNOWN to
1856 * try the SysV modifier ${VAR:from=to} as fallback. This should only be
1857 * done as long as there have been no side effects from evaluating nested
1858 * variables, to avoid evaluating them more than once. In this case, the
1859 * parsing position must not be updated. (XXX: Why not? The original parsing
1860 * position is well-known in ApplyModifiers.)
1861 *
1862 * If parsing fails and the SysV modifier ${VAR:from=to} should not be used
1863 * as a fallback, either issue an error message using Error or Parse_Error
1864 * and then return AMR_CLEANUP, or return AMR_BAD for the default error
1865 * message. Both of these return values will stop processing the variable
1866 * expression. (XXX: As of 2020-08-23, evaluation of the whole string
1867 * continues nevertheless after skipping a few bytes, which essentially is
1868 * undefined behavior. Not in the sense of C, but still it's impossible to
1869 * predict what happens in the parser.)
1870 *
1871 * Evaluating the modifier
1872 *
1873 * After parsing, the modifier is evaluated. The side effects from evaluating
1874 * nested variable expressions in the modifier text often already happen
1875 * during parsing though.
1876 *
1877 * Evaluating the modifier usually takes the current value of the variable
1878 * expression from st->val, or the variable name from st->v->name and stores
1879 * the result in st->newVal.
1880 *
1881 * If evaluating fails (as of 2020-08-23), an error message is printed using
1882 * Error. This function has no side-effects, it really just prints the error
1883 * message. Processing the expression continues as if everything were ok.
1884 * XXX: This should be fixed by adding proper error handling to Var_Subst,
1885 * Var_Parse, ApplyModifiers and ModifyWords.
1886 *
1887 * Housekeeping
1888 *
1889 * Some modifiers such as :D and :U turn undefined variables into useful
1890 * variables (VAR_JUNK, VAR_KEEP).
1891 *
1892 * Some modifiers need to free some memory.
1893 */
1894
1895 typedef struct {
1896 const char startc; /* '\0' or '{' or '(' */
1897 const char endc; /* '\0' or '}' or ')' */
1898 Var * const v;
1899 GNode * const ctxt;
1900 const VarEvalFlags eflags;
1901
1902 char *val; /* The old value of the expression,
1903 * before applying the modifier, never NULL */
1904 char *newVal; /* The new value of the expression,
1905 * after applying the modifier, never NULL */
1906 char missing_delim; /* For error reporting */
1907
1908 char sep; /* Word separator in expansions
1909 * (see the :ts modifier) */
1910 Boolean oneBigWord; /* TRUE if some modifiers that otherwise split
1911 * the variable value into words, like :S and
1912 * :C, treat the variable value as a single big
1913 * word, possibly containing spaces. */
1914 } ApplyModifiersState;
1915
1916 static void
1917 ApplyModifiersState_Keep(ApplyModifiersState *st)
1918 {
1919 if (st->v->flags & VAR_JUNK)
1920 st->v->flags |= VAR_KEEP;
1921 }
1922
1923 typedef enum {
1924 AMR_OK, /* Continue parsing */
1925 AMR_UNKNOWN, /* Not a match, try other modifiers as well */
1926 AMR_BAD, /* Error out with "Bad modifier" message */
1927 AMR_CLEANUP /* Error out, with "Unfinished modifier"
1928 * if st->missing_delim is set. */
1929 } ApplyModifierResult;
1930
1931 /* Test whether mod starts with modname, followed by a delimiter. */
1932 static Boolean
1933 ModMatch(const char *mod, const char *modname, char endc)
1934 {
1935 size_t n = strlen(modname);
1936 return strncmp(mod, modname, n) == 0 &&
1937 (mod[n] == endc || mod[n] == ':');
1938 }
1939
1940 /* Test whether mod starts with modname, followed by a delimiter or '='. */
1941 static inline Boolean
1942 ModMatchEq(const char *mod, const char *modname, char endc)
1943 {
1944 size_t n = strlen(modname);
1945 return strncmp(mod, modname, n) == 0 &&
1946 (mod[n] == endc || mod[n] == ':' || mod[n] == '=');
1947 }
1948
1949 /* :@var (at) ...${var}...@ */
1950 static ApplyModifierResult
1951 ApplyModifier_Loop(const char **pp, ApplyModifiersState *st)
1952 {
1953 ModifyWord_LoopArgs args;
1954 char delim;
1955 char prev_sep;
1956 VarEvalFlags eflags = st->eflags & ~(unsigned)VARE_WANTRES;
1957
1958 args.ctx = st->ctxt;
1959
1960 (*pp)++; /* Skip the first '@' */
1961 delim = '@';
1962 args.tvar = ParseModifierPart(pp, delim, eflags,
1963 st->ctxt, NULL, NULL, NULL);
1964 if (args.tvar == NULL) {
1965 st->missing_delim = delim;
1966 return AMR_CLEANUP;
1967 }
1968 if (DEBUG(LINT) && strchr(args.tvar, '$') != NULL) {
1969 Parse_Error(PARSE_FATAL,
1970 "In the :@ modifier of \"%s\", the variable name \"%s\" "
1971 "must not contain a dollar.",
1972 st->v->name, args.tvar);
1973 return AMR_CLEANUP;
1974 }
1975
1976 args.str = ParseModifierPart(pp, delim, eflags,
1977 st->ctxt, NULL, NULL, NULL);
1978 if (args.str == NULL) {
1979 st->missing_delim = delim;
1980 return AMR_CLEANUP;
1981 }
1982
1983 args.eflags = st->eflags & (VARE_UNDEFERR | VARE_WANTRES);
1984 prev_sep = st->sep;
1985 st->sep = ' '; /* XXX: should be st->sep for consistency */
1986 st->newVal = ModifyWords(st->ctxt, st->sep, st->oneBigWord, st->val,
1987 ModifyWord_Loop, &args);
1988 st->sep = prev_sep;
1989 Var_Delete(args.tvar, st->ctxt);
1990 free(args.tvar);
1991 free(args.str);
1992 return AMR_OK;
1993 }
1994
1995 /* :Ddefined or :Uundefined */
1996 static ApplyModifierResult
1997 ApplyModifier_Defined(const char **pp, ApplyModifiersState *st)
1998 {
1999 Buffer buf;
2000 const char *p;
2001
2002 VarEvalFlags eflags = st->eflags & ~(unsigned)VARE_WANTRES;
2003 if (st->eflags & VARE_WANTRES) {
2004 if ((**pp == 'D') == !(st->v->flags & VAR_JUNK))
2005 eflags |= VARE_WANTRES;
2006 }
2007
2008 Buf_Init(&buf, 0);
2009 p = *pp + 1;
2010 while (*p != st->endc && *p != ':' && *p != '\0') {
2011
2012 /* Escaped delimiter or other special character */
2013 if (*p == '\\') {
2014 char c = p[1];
2015 if (c == st->endc || c == ':' || c == '$' || c == '\\') {
2016 Buf_AddByte(&buf, c);
2017 p += 2;
2018 continue;
2019 }
2020 }
2021
2022 /* Nested variable expression */
2023 if (*p == '$') {
2024 const char *nested_val;
2025 void *nested_val_freeIt;
2026
2027 (void)Var_Parse(&p, st->ctxt, eflags,
2028 &nested_val, &nested_val_freeIt);
2029 /* TODO: handle errors */
2030 Buf_AddStr(&buf, nested_val);
2031 free(nested_val_freeIt);
2032 continue;
2033 }
2034
2035 /* Ordinary text */
2036 Buf_AddByte(&buf, *p);
2037 p++;
2038 }
2039 *pp = p;
2040
2041 ApplyModifiersState_Keep(st);
2042
2043 if (eflags & VARE_WANTRES) {
2044 st->newVal = Buf_Destroy(&buf, FALSE);
2045 } else {
2046 st->newVal = st->val;
2047 Buf_Destroy(&buf, TRUE);
2048 }
2049 return AMR_OK;
2050 }
2051
2052 /* :gmtime */
2053 static ApplyModifierResult
2054 ApplyModifier_Gmtime(const char **pp, ApplyModifiersState *st)
2055 {
2056 time_t utc;
2057
2058 const char *mod = *pp;
2059 if (!ModMatchEq(mod, "gmtime", st->endc))
2060 return AMR_UNKNOWN;
2061
2062 if (mod[6] == '=') {
2063 char *ep;
2064 utc = (time_t)strtoul(mod + 7, &ep, 10);
2065 *pp = ep;
2066 } else {
2067 utc = 0;
2068 *pp = mod + 6;
2069 }
2070 st->newVal = VarStrftime(st->val, TRUE, utc);
2071 return AMR_OK;
2072 }
2073
2074 /* :localtime */
2075 static ApplyModifierResult
2076 ApplyModifier_Localtime(const char **pp, ApplyModifiersState *st)
2077 {
2078 time_t utc;
2079
2080 const char *mod = *pp;
2081 if (!ModMatchEq(mod, "localtime", st->endc))
2082 return AMR_UNKNOWN;
2083
2084 if (mod[9] == '=') {
2085 char *ep;
2086 utc = (time_t)strtoul(mod + 10, &ep, 10);
2087 *pp = ep;
2088 } else {
2089 utc = 0;
2090 *pp = mod + 9;
2091 }
2092 st->newVal = VarStrftime(st->val, FALSE, utc);
2093 return AMR_OK;
2094 }
2095
2096 /* :hash */
2097 static ApplyModifierResult
2098 ApplyModifier_Hash(const char **pp, ApplyModifiersState *st)
2099 {
2100 if (!ModMatch(*pp, "hash", st->endc))
2101 return AMR_UNKNOWN;
2102
2103 st->newVal = VarHash(st->val);
2104 *pp += 4;
2105 return AMR_OK;
2106 }
2107
2108 /* :P */
2109 static ApplyModifierResult
2110 ApplyModifier_Path(const char **pp, ApplyModifiersState *st)
2111 {
2112 GNode *gn;
2113 char *path;
2114
2115 ApplyModifiersState_Keep(st);
2116
2117 gn = Targ_FindNode(st->v->name, TARG_NOCREATE);
2118 if (gn == NULL || gn->type & OP_NOPATH) {
2119 path = NULL;
2120 } else if (gn->path) {
2121 path = bmake_strdup(gn->path);
2122 } else {
2123 SearchPath *searchPath = Suff_FindPath(gn);
2124 path = Dir_FindFile(st->v->name, searchPath);
2125 }
2126 if (path == NULL)
2127 path = bmake_strdup(st->v->name);
2128 st->newVal = path;
2129
2130 (*pp)++;
2131 return AMR_OK;
2132 }
2133
2134 /* :!cmd! */
2135 static ApplyModifierResult
2136 ApplyModifier_ShellCommand(const char **pp, ApplyModifiersState *st)
2137 {
2138 char delim;
2139 char *cmd;
2140 const char *errfmt;
2141
2142 (*pp)++;
2143 delim = '!';
2144 cmd = ParseModifierPart(pp, delim, st->eflags, st->ctxt,
2145 NULL, NULL, NULL);
2146 if (cmd == NULL) {
2147 st->missing_delim = delim;
2148 return AMR_CLEANUP;
2149 }
2150
2151 errfmt = NULL;
2152 if (st->eflags & VARE_WANTRES)
2153 st->newVal = Cmd_Exec(cmd, &errfmt);
2154 else
2155 st->newVal = varNoError;
2156 free(cmd);
2157
2158 if (errfmt != NULL)
2159 Error(errfmt, st->val); /* XXX: why still return AMR_OK? */
2160
2161 ApplyModifiersState_Keep(st);
2162 return AMR_OK;
2163 }
2164
2165 /* The :range modifier generates an integer sequence as long as the words.
2166 * The :range=7 modifier generates an integer sequence from 1 to 7. */
2167 static ApplyModifierResult
2168 ApplyModifier_Range(const char **pp, ApplyModifiersState *st)
2169 {
2170 size_t n;
2171 Buffer buf;
2172 size_t i;
2173
2174 const char *mod = *pp;
2175 if (!ModMatchEq(mod, "range", st->endc))
2176 return AMR_UNKNOWN;
2177
2178 if (mod[5] == '=') {
2179 char *ep;
2180 n = (size_t)strtoul(mod + 6, &ep, 10);
2181 *pp = ep;
2182 } else {
2183 n = 0;
2184 *pp = mod + 5;
2185 }
2186
2187 if (n == 0) {
2188 Words words = Str_Words(st->val, FALSE);
2189 n = words.len;
2190 Words_Free(words);
2191 }
2192
2193 Buf_Init(&buf, 0);
2194
2195 for (i = 0; i < n; i++) {
2196 if (i != 0)
2197 Buf_AddByte(&buf, ' '); /* XXX: st->sep, for consistency */
2198 Buf_AddInt(&buf, 1 + (int)i);
2199 }
2200
2201 st->newVal = Buf_Destroy(&buf, FALSE);
2202 return AMR_OK;
2203 }
2204
2205 /* :Mpattern or :Npattern */
2206 static ApplyModifierResult
2207 ApplyModifier_Match(const char **pp, ApplyModifiersState *st)
2208 {
2209 const char *mod = *pp;
2210 Boolean copy = FALSE; /* pattern should be, or has been, copied */
2211 Boolean needSubst = FALSE;
2212 const char *endpat;
2213 char *pattern;
2214 ModifyWordsCallback callback;
2215
2216 /*
2217 * In the loop below, ignore ':' unless we are at (or back to) the
2218 * original brace level.
2219 * XXX This will likely not work right if $() and ${} are intermixed.
2220 */
2221 int nest = 0;
2222 const char *p;
2223 for (p = mod + 1; *p != '\0' && !(*p == ':' && nest == 0); p++) {
2224 if (*p == '\\' &&
2225 (p[1] == ':' || p[1] == st->endc || p[1] == st->startc)) {
2226 if (!needSubst)
2227 copy = TRUE;
2228 p++;
2229 continue;
2230 }
2231 if (*p == '$')
2232 needSubst = TRUE;
2233 if (*p == '(' || *p == '{')
2234 nest++;
2235 if (*p == ')' || *p == '}') {
2236 nest--;
2237 if (nest < 0)
2238 break;
2239 }
2240 }
2241 *pp = p;
2242 endpat = p;
2243
2244 if (copy) {
2245 char *dst;
2246 const char *src;
2247
2248 /* Compress the \:'s out of the pattern. */
2249 pattern = bmake_malloc((size_t)(endpat - (mod + 1)) + 1);
2250 dst = pattern;
2251 src = mod + 1;
2252 for (; src < endpat; src++, dst++) {
2253 if (src[0] == '\\' && src + 1 < endpat &&
2254 /* XXX: st->startc is missing here; see above */
2255 (src[1] == ':' || src[1] == st->endc))
2256 src++;
2257 *dst = *src;
2258 }
2259 *dst = '\0';
2260 endpat = dst;
2261 } else {
2262 pattern = bmake_strsedup(mod + 1, endpat);
2263 }
2264
2265 if (needSubst) {
2266 /* pattern contains embedded '$', so use Var_Subst to expand it. */
2267 char *old_pattern = pattern;
2268 pattern = Var_Subst(pattern, st->ctxt, st->eflags);
2269 free(old_pattern);
2270 }
2271
2272 VAR_DEBUG("Pattern[%s] for [%s] is [%s]\n", st->v->name, st->val, pattern);
2273
2274 callback = mod[0] == 'M' ? ModifyWord_Match : ModifyWord_NoMatch;
2275 st->newVal = ModifyWords(st->ctxt, st->sep, st->oneBigWord, st->val,
2276 callback, pattern);
2277 free(pattern);
2278 return AMR_OK;
2279 }
2280
2281 /* :S,from,to, */
2282 static ApplyModifierResult
2283 ApplyModifier_Subst(const char **pp, ApplyModifiersState *st)
2284 {
2285 ModifyWord_SubstArgs args;
2286 char *lhs, *rhs;
2287 Boolean oneBigWord;
2288
2289 char delim = (*pp)[1];
2290 if (delim == '\0') {
2291 Error("Missing delimiter for :S modifier");
2292 (*pp)++;
2293 return AMR_CLEANUP;
2294 }
2295
2296 *pp += 2;
2297
2298 args.pflags = 0;
2299 args.matched = FALSE;
2300
2301 /*
2302 * If pattern begins with '^', it is anchored to the
2303 * start of the word -- skip over it and flag pattern.
2304 */
2305 if (**pp == '^') {
2306 args.pflags |= VARP_ANCHOR_START;
2307 (*pp)++;
2308 }
2309
2310 lhs = ParseModifierPart(pp, delim, st->eflags, st->ctxt,
2311 &args.lhsLen, &args.pflags, NULL);
2312 if (lhs == NULL) {
2313 st->missing_delim = delim;
2314 return AMR_CLEANUP;
2315 }
2316 args.lhs = lhs;
2317
2318 rhs = ParseModifierPart(pp, delim, st->eflags, st->ctxt,
2319 &args.rhsLen, NULL, &args);
2320 if (rhs == NULL) {
2321 st->missing_delim = delim;
2322 return AMR_CLEANUP;
2323 }
2324 args.rhs = rhs;
2325
2326 oneBigWord = st->oneBigWord;
2327 for (;; (*pp)++) {
2328 switch (**pp) {
2329 case 'g':
2330 args.pflags |= VARP_SUB_GLOBAL;
2331 continue;
2332 case '1':
2333 args.pflags |= VARP_SUB_ONE;
2334 continue;
2335 case 'W':
2336 oneBigWord = TRUE;
2337 continue;
2338 }
2339 break;
2340 }
2341
2342 st->newVal = ModifyWords(st->ctxt, st->sep, oneBigWord, st->val,
2343 ModifyWord_Subst, &args);
2344
2345 free(lhs);
2346 free(rhs);
2347 return AMR_OK;
2348 }
2349
2350 #ifndef NO_REGEX
2351
2352 /* :C,from,to, */
2353 static ApplyModifierResult
2354 ApplyModifier_Regex(const char **pp, ApplyModifiersState *st)
2355 {
2356 char *re;
2357 ModifyWord_SubstRegexArgs args;
2358 Boolean oneBigWord;
2359 int error;
2360
2361 char delim = (*pp)[1];
2362 if (delim == '\0') {
2363 Error("Missing delimiter for :C modifier");
2364 (*pp)++;
2365 return AMR_CLEANUP;
2366 }
2367
2368 *pp += 2;
2369
2370 re = ParseModifierPart(pp, delim, st->eflags, st->ctxt, NULL, NULL, NULL);
2371 if (re == NULL) {
2372 st->missing_delim = delim;
2373 return AMR_CLEANUP;
2374 }
2375
2376 args.replace = ParseModifierPart(pp, delim, st->eflags, st->ctxt,
2377 NULL, NULL, NULL);
2378 if (args.replace == NULL) {
2379 free(re);
2380 st->missing_delim = delim;
2381 return AMR_CLEANUP;
2382 }
2383
2384 args.pflags = 0;
2385 args.matched = FALSE;
2386 oneBigWord = st->oneBigWord;
2387 for (;; (*pp)++) {
2388 switch (**pp) {
2389 case 'g':
2390 args.pflags |= VARP_SUB_GLOBAL;
2391 continue;
2392 case '1':
2393 args.pflags |= VARP_SUB_ONE;
2394 continue;
2395 case 'W':
2396 oneBigWord = TRUE;
2397 continue;
2398 }
2399 break;
2400 }
2401
2402 error = regcomp(&args.re, re, REG_EXTENDED);
2403 free(re);
2404 if (error) {
2405 VarREError(error, &args.re, "Regex compilation error");
2406 free(args.replace);
2407 return AMR_CLEANUP;
2408 }
2409
2410 args.nsub = args.re.re_nsub + 1;
2411 if (args.nsub > 10)
2412 args.nsub = 10;
2413 st->newVal = ModifyWords(st->ctxt, st->sep, oneBigWord, st->val,
2414 ModifyWord_SubstRegex, &args);
2415 regfree(&args.re);
2416 free(args.replace);
2417 return AMR_OK;
2418 }
2419 #endif
2420
2421 static void
2422 ModifyWord_Copy(const char *word, SepBuf *buf, void *data MAKE_ATTR_UNUSED)
2423 {
2424 SepBuf_AddStr(buf, word);
2425 }
2426
2427 /* :ts<separator> */
2428 static ApplyModifierResult
2429 ApplyModifier_ToSep(const char **pp, ApplyModifiersState *st)
2430 {
2431 /* XXX: pp points to the 's', for historic reasons only.
2432 * Changing this will influence the error messages. */
2433 const char *sep = *pp + 1;
2434
2435 /* ":ts<any><endc>" or ":ts<any>:" */
2436 if (sep[0] != st->endc && (sep[1] == st->endc || sep[1] == ':')) {
2437 st->sep = sep[0];
2438 *pp = sep + 1;
2439 goto ok;
2440 }
2441
2442 /* ":ts<endc>" or ":ts:" */
2443 if (sep[0] == st->endc || sep[0] == ':') {
2444 st->sep = '\0'; /* no separator */
2445 *pp = sep;
2446 goto ok;
2447 }
2448
2449 /* ":ts<unrecognised><unrecognised>". */
2450 if (sep[0] != '\\')
2451 return AMR_BAD;
2452
2453 /* ":ts\n" */
2454 if (sep[1] == 'n') {
2455 st->sep = '\n';
2456 *pp = sep + 2;
2457 goto ok;
2458 }
2459
2460 /* ":ts\t" */
2461 if (sep[1] == 't') {
2462 st->sep = '\t';
2463 *pp = sep + 2;
2464 goto ok;
2465 }
2466
2467 /* ":ts\x40" or ":ts\100" */
2468 {
2469 const char *numStart = sep + 1;
2470 int base = 8; /* assume octal */
2471 char *end;
2472
2473 if (sep[1] == 'x') {
2474 base = 16;
2475 numStart++;
2476 } else if (!ch_isdigit(sep[1]))
2477 return AMR_BAD; /* ":ts<backslash><unrecognised>". */
2478
2479 st->sep = (char)strtoul(numStart, &end, base);
2480 if (*end != ':' && *end != st->endc)
2481 return AMR_BAD;
2482 *pp = end;
2483 }
2484
2485 ok:
2486 st->newVal = ModifyWords(st->ctxt, st->sep, st->oneBigWord, st->val,
2487 ModifyWord_Copy, NULL);
2488 return AMR_OK;
2489 }
2490
2491 /* :tA, :tu, :tl, :ts<separator>, etc. */
2492 static ApplyModifierResult
2493 ApplyModifier_To(const char **pp, ApplyModifiersState *st)
2494 {
2495 const char *mod = *pp;
2496 assert(mod[0] == 't');
2497
2498 *pp = mod + 1; /* make sure it is set */
2499 if (mod[1] == st->endc || mod[1] == ':' || mod[1] == '\0')
2500 return AMR_BAD; /* Found ":t<endc>" or ":t:". */
2501
2502 if (mod[1] == 's')
2503 return ApplyModifier_ToSep(pp, st);
2504
2505 if (mod[2] != st->endc && mod[2] != ':')
2506 return AMR_BAD; /* Found ":t<unrecognised><unrecognised>". */
2507
2508 /* Check for two-character options: ":tu", ":tl" */
2509 if (mod[1] == 'A') { /* absolute path */
2510 st->newVal = ModifyWords(st->ctxt, st->sep, st->oneBigWord, st->val,
2511 ModifyWord_Realpath, NULL);
2512 *pp = mod + 2;
2513 return AMR_OK;
2514 }
2515
2516 if (mod[1] == 'u') {
2517 size_t i;
2518 size_t len = strlen(st->val);
2519 st->newVal = bmake_malloc(len + 1);
2520 for (i = 0; i < len + 1; i++)
2521 st->newVal[i] = ch_toupper(st->val[i]);
2522 *pp = mod + 2;
2523 return AMR_OK;
2524 }
2525
2526 if (mod[1] == 'l') {
2527 size_t i;
2528 size_t len = strlen(st->val);
2529 st->newVal = bmake_malloc(len + 1);
2530 for (i = 0; i < len + 1; i++)
2531 st->newVal[i] = ch_tolower(st->val[i]);
2532 *pp = mod + 2;
2533 return AMR_OK;
2534 }
2535
2536 if (mod[1] == 'W' || mod[1] == 'w') {
2537 st->oneBigWord = mod[1] == 'W';
2538 st->newVal = st->val;
2539 *pp = mod + 2;
2540 return AMR_OK;
2541 }
2542
2543 /* Found ":t<unrecognised>:" or ":t<unrecognised><endc>". */
2544 return AMR_BAD;
2545 }
2546
2547 /* :[#], :[1], etc. */
2548 static ApplyModifierResult
2549 ApplyModifier_Words(const char **pp, ApplyModifiersState *st)
2550 {
2551 char delim;
2552 char *estr;
2553 char *ep;
2554 int first, last;
2555
2556 (*pp)++; /* skip the '[' */
2557 delim = ']'; /* look for closing ']' */
2558 estr = ParseModifierPart(pp, delim, st->eflags, st->ctxt,
2559 NULL, NULL, NULL);
2560 if (estr == NULL) {
2561 st->missing_delim = delim;
2562 return AMR_CLEANUP;
2563 }
2564
2565 /* now *pp points just after the closing ']' */
2566 if (**pp != ':' && **pp != st->endc)
2567 goto bad_modifier; /* Found junk after ']' */
2568
2569 if (estr[0] == '\0')
2570 goto bad_modifier; /* empty square brackets in ":[]". */
2571
2572 if (estr[0] == '#' && estr[1] == '\0') { /* Found ":[#]" */
2573 if (st->oneBigWord) {
2574 st->newVal = bmake_strdup("1");
2575 } else {
2576 Buffer buf;
2577
2578 Words words = Str_Words(st->val, FALSE);
2579 size_t ac = words.len;
2580 Words_Free(words);
2581
2582 Buf_Init(&buf, 4); /* 3 digits + '\0' is usually enough */
2583 Buf_AddInt(&buf, (int)ac);
2584 st->newVal = Buf_Destroy(&buf, FALSE);
2585 }
2586 goto ok;
2587 }
2588
2589 if (estr[0] == '*' && estr[1] == '\0') {
2590 /* Found ":[*]" */
2591 st->oneBigWord = TRUE;
2592 st->newVal = st->val;
2593 goto ok;
2594 }
2595
2596 if (estr[0] == '@' && estr[1] == '\0') {
2597 /* Found ":[@]" */
2598 st->oneBigWord = FALSE;
2599 st->newVal = st->val;
2600 goto ok;
2601 }
2602
2603 /*
2604 * We expect estr to contain a single integer for :[N], or two integers
2605 * separated by ".." for :[start..end].
2606 */
2607 first = (int)strtol(estr, &ep, 0);
2608 if (ep == estr) /* Found junk instead of a number */
2609 goto bad_modifier;
2610
2611 if (ep[0] == '\0') { /* Found only one integer in :[N] */
2612 last = first;
2613 } else if (ep[0] == '.' && ep[1] == '.' && ep[2] != '\0') {
2614 /* Expecting another integer after ".." */
2615 ep += 2;
2616 last = (int)strtol(ep, &ep, 0);
2617 if (ep[0] != '\0') /* Found junk after ".." */
2618 goto bad_modifier;
2619 } else
2620 goto bad_modifier; /* Found junk instead of ".." */
2621
2622 /*
2623 * Now seldata is properly filled in, but we still have to check for 0 as
2624 * a special case.
2625 */
2626 if (first == 0 && last == 0) {
2627 /* ":[0]" or perhaps ":[0..0]" */
2628 st->oneBigWord = TRUE;
2629 st->newVal = st->val;
2630 goto ok;
2631 }
2632
2633 /* ":[0..N]" or ":[N..0]" */
2634 if (first == 0 || last == 0)
2635 goto bad_modifier;
2636
2637 /* Normal case: select the words described by seldata. */
2638 st->newVal = VarSelectWords(st->sep, st->oneBigWord, st->val, first, last);
2639
2640 ok:
2641 free(estr);
2642 return AMR_OK;
2643
2644 bad_modifier:
2645 free(estr);
2646 return AMR_BAD;
2647 }
2648
2649 static int
2650 str_cmp_asc(const void *a, const void *b)
2651 {
2652 return strcmp(*(const char * const *)a, *(const char * const *)b);
2653 }
2654
2655 static int
2656 str_cmp_desc(const void *a, const void *b)
2657 {
2658 return strcmp(*(const char * const *)b, *(const char * const *)a);
2659 }
2660
2661 /* :O (order ascending) or :Or (order descending) or :Ox (shuffle) */
2662 static ApplyModifierResult
2663 ApplyModifier_Order(const char **pp, ApplyModifiersState *st)
2664 {
2665 const char *mod = (*pp)++; /* skip past the 'O' in any case */
2666
2667 Words words = Str_Words(st->val, FALSE);
2668
2669 if (mod[1] == st->endc || mod[1] == ':') {
2670 /* :O sorts ascending */
2671 qsort(words.words, words.len, sizeof(char *), str_cmp_asc);
2672
2673 } else if ((mod[1] == 'r' || mod[1] == 'x') &&
2674 (mod[2] == st->endc || mod[2] == ':')) {
2675 (*pp)++;
2676
2677 if (mod[1] == 'r') {
2678 /* :Or sorts descending */
2679 qsort(words.words, words.len, sizeof(char *), str_cmp_desc);
2680
2681 } else {
2682 /* :Ox shuffles
2683 *
2684 * We will use [ac..2] range for mod factors. This will produce
2685 * random numbers in [(ac-1)..0] interval, and minimal
2686 * reasonable value for mod factor is 2 (the mod 1 will produce
2687 * 0 with probability 1).
2688 */
2689 size_t i;
2690 for (i = words.len - 1; i > 0; i--) {
2691 size_t rndidx = (size_t)random() % (i + 1);
2692 char *t = words.words[i];
2693 words.words[i] = words.words[rndidx];
2694 words.words[rndidx] = t;
2695 }
2696 }
2697 } else {
2698 Words_Free(words);
2699 return AMR_BAD;
2700 }
2701
2702 st->newVal = Words_JoinFree(words);
2703 return AMR_OK;
2704 }
2705
2706 /* :? then : else */
2707 static ApplyModifierResult
2708 ApplyModifier_IfElse(const char **pp, ApplyModifiersState *st)
2709 {
2710 char delim;
2711 char *then_expr, *else_expr;
2712
2713 Boolean value = FALSE;
2714 VarEvalFlags then_eflags = st->eflags & ~(unsigned)VARE_WANTRES;
2715 VarEvalFlags else_eflags = st->eflags & ~(unsigned)VARE_WANTRES;
2716
2717 int cond_rc = COND_PARSE; /* anything other than COND_INVALID */
2718 if (st->eflags & VARE_WANTRES) {
2719 cond_rc = Cond_EvalCondition(st->v->name, &value);
2720 if (cond_rc != COND_INVALID && value)
2721 then_eflags |= VARE_WANTRES;
2722 if (cond_rc != COND_INVALID && !value)
2723 else_eflags |= VARE_WANTRES;
2724 }
2725
2726 (*pp)++; /* skip past the '?' */
2727 delim = ':';
2728 then_expr = ParseModifierPart(pp, delim, then_eflags, st->ctxt,
2729 NULL, NULL, NULL);
2730 if (then_expr == NULL) {
2731 st->missing_delim = delim;
2732 return AMR_CLEANUP;
2733 }
2734
2735 delim = st->endc; /* BRCLOSE or PRCLOSE */
2736 else_expr = ParseModifierPart(pp, delim, else_eflags, st->ctxt,
2737 NULL, NULL, NULL);
2738 if (else_expr == NULL) {
2739 st->missing_delim = delim;
2740 return AMR_CLEANUP;
2741 }
2742
2743 (*pp)--;
2744 if (cond_rc == COND_INVALID) {
2745 Error("Bad conditional expression `%s' in %s?%s:%s",
2746 st->v->name, st->v->name, then_expr, else_expr);
2747 return AMR_CLEANUP;
2748 }
2749
2750 if (value) {
2751 st->newVal = then_expr;
2752 free(else_expr);
2753 } else {
2754 st->newVal = else_expr;
2755 free(then_expr);
2756 }
2757 ApplyModifiersState_Keep(st);
2758 return AMR_OK;
2759 }
2760
2761 /*
2762 * The ::= modifiers actually assign a value to the variable.
2763 * Their main purpose is in supporting modifiers of .for loop
2764 * iterators and other obscure uses. They always expand to
2765 * nothing. In a target rule that would otherwise expand to an
2766 * empty line they can be preceded with @: to keep make happy.
2767 * Eg.
2768 *
2769 * foo: .USE
2770 * .for i in ${.TARGET} ${.TARGET:R}.gz
2771 * @: ${t::=$i}
2772 * @echo blah ${t:T}
2773 * .endfor
2774 *
2775 * ::=<str> Assigns <str> as the new value of variable.
2776 * ::?=<str> Assigns <str> as value of variable if
2777 * it was not already set.
2778 * ::+=<str> Appends <str> to variable.
2779 * ::!=<cmd> Assigns output of <cmd> as the new value of
2780 * variable.
2781 */
2782 static ApplyModifierResult
2783 ApplyModifier_Assign(const char **pp, ApplyModifiersState *st)
2784 {
2785 GNode *v_ctxt;
2786 char *sv_name;
2787 char delim;
2788 char *val;
2789
2790 const char *mod = *pp;
2791 const char *op = mod + 1;
2792 if (!(op[0] == '=' ||
2793 (op[1] == '=' &&
2794 (op[0] == '!' || op[0] == '+' || op[0] == '?'))))
2795 return AMR_UNKNOWN; /* "::<unrecognised>" */
2796
2797
2798 if (st->v->name[0] == 0) {
2799 *pp = mod + 1;
2800 return AMR_BAD;
2801 }
2802
2803 v_ctxt = st->ctxt; /* context where v belongs */
2804 sv_name = NULL;
2805 if (st->v->flags & VAR_JUNK) {
2806 /*
2807 * We need to bmake_strdup() it in case ParseModifierPart() recurses.
2808 */
2809 sv_name = st->v->name;
2810 st->v->name = bmake_strdup(st->v->name);
2811 } else if (st->ctxt != VAR_GLOBAL) {
2812 Var *gv = VarFind(st->v->name, st->ctxt, 0);
2813 if (gv == NULL)
2814 v_ctxt = VAR_GLOBAL;
2815 else
2816 VarFreeEnv(gv, TRUE);
2817 }
2818
2819 switch (op[0]) {
2820 case '+':
2821 case '?':
2822 case '!':
2823 *pp = mod + 3;
2824 break;
2825 default:
2826 *pp = mod + 2;
2827 break;
2828 }
2829
2830 delim = st->startc == '(' ? ')' : '}';
2831 val = ParseModifierPart(pp, delim, st->eflags, st->ctxt, NULL, NULL, NULL);
2832 if (st->v->flags & VAR_JUNK) {
2833 /* restore original name */
2834 free(st->v->name);
2835 st->v->name = sv_name;
2836 }
2837 if (val == NULL) {
2838 st->missing_delim = delim;
2839 return AMR_CLEANUP;
2840 }
2841
2842 (*pp)--;
2843
2844 if (st->eflags & VARE_WANTRES) {
2845 switch (op[0]) {
2846 case '+':
2847 Var_Append(st->v->name, val, v_ctxt);
2848 break;
2849 case '!': {
2850 const char *errfmt;
2851 char *cmd_output = Cmd_Exec(val, &errfmt);
2852 if (errfmt)
2853 Error(errfmt, val);
2854 else
2855 Var_Set(st->v->name, cmd_output, v_ctxt);
2856 free(cmd_output);
2857 break;
2858 }
2859 case '?':
2860 if (!(st->v->flags & VAR_JUNK))
2861 break;
2862 /* FALLTHROUGH */
2863 default:
2864 Var_Set(st->v->name, val, v_ctxt);
2865 break;
2866 }
2867 }
2868 free(val);
2869 st->newVal = varNoError; /* XXX: varNoError is kind of an error,
2870 * the intention here is to just return
2871 * an empty string. */
2872 return AMR_OK;
2873 }
2874
2875 /* remember current value */
2876 static ApplyModifierResult
2877 ApplyModifier_Remember(const char **pp, ApplyModifiersState *st)
2878 {
2879 const char *mod = *pp;
2880 if (!ModMatchEq(mod, "_", st->endc))
2881 return AMR_UNKNOWN;
2882
2883 if (mod[1] == '=') {
2884 size_t n = strcspn(mod + 2, ":)}");
2885 char *name = bmake_strldup(mod + 2, n);
2886 Var_Set(name, st->val, st->ctxt);
2887 free(name);
2888 *pp = mod + 2 + n;
2889 } else {
2890 Var_Set("_", st->val, st->ctxt);
2891 *pp = mod + 1;
2892 }
2893 st->newVal = st->val;
2894 return AMR_OK;
2895 }
2896
2897 /* Apply the given function to each word of the variable value. */
2898 static ApplyModifierResult
2899 ApplyModifier_WordFunc(const char **pp, ApplyModifiersState *st,
2900 ModifyWordsCallback modifyWord)
2901 {
2902 char delim = (*pp)[1];
2903 if (delim != st->endc && delim != ':')
2904 return AMR_UNKNOWN;
2905
2906 st->newVal = ModifyWords(st->ctxt, st->sep, st->oneBigWord,
2907 st->val, modifyWord, NULL);
2908 (*pp)++;
2909 return AMR_OK;
2910 }
2911
2912 #ifdef SYSVVARSUB
2913 /* :from=to */
2914 static ApplyModifierResult
2915 ApplyModifier_SysV(const char **pp, ApplyModifiersState *st)
2916 {
2917 char delim;
2918 char *lhs, *rhs;
2919
2920 const char *mod = *pp;
2921 Boolean eqFound = FALSE;
2922
2923 /*
2924 * First we make a pass through the string trying
2925 * to verify it is a SYSV-make-style translation:
2926 * it must be: <string1>=<string2>)
2927 */
2928 int nest = 1;
2929 const char *next = mod;
2930 while (*next != '\0' && nest > 0) {
2931 if (*next == '=') {
2932 eqFound = TRUE;
2933 /* continue looking for st->endc */
2934 } else if (*next == st->endc)
2935 nest--;
2936 else if (*next == st->startc)
2937 nest++;
2938 if (nest > 0)
2939 next++;
2940 }
2941 if (*next != st->endc || !eqFound)
2942 return AMR_UNKNOWN;
2943
2944 delim = '=';
2945 *pp = mod;
2946 lhs = ParseModifierPart(pp, delim, st->eflags, st->ctxt, NULL, NULL, NULL);
2947 if (lhs == NULL) {
2948 st->missing_delim = delim;
2949 return AMR_CLEANUP;
2950 }
2951
2952 delim = st->endc;
2953 rhs = ParseModifierPart(pp, delim, st->eflags, st->ctxt, NULL, NULL, NULL);
2954 if (rhs == NULL) {
2955 st->missing_delim = delim;
2956 return AMR_CLEANUP;
2957 }
2958
2959 /*
2960 * SYSV modifications happen through the whole
2961 * string. Note the pattern is anchored at the end.
2962 */
2963 (*pp)--;
2964 if (lhs[0] == '\0' && st->val[0] == '\0') {
2965 st->newVal = st->val; /* special case */
2966 } else {
2967 ModifyWord_SYSVSubstArgs args = {st->ctxt, lhs, rhs};
2968 st->newVal = ModifyWords(st->ctxt, st->sep, st->oneBigWord, st->val,
2969 ModifyWord_SYSVSubst, &args);
2970 }
2971 free(lhs);
2972 free(rhs);
2973 return AMR_OK;
2974 }
2975 #endif
2976
2977 /* Apply any modifiers (such as :Mpattern or :@var@loop@ or :Q or ::=value). */
2978 static char *
2979 ApplyModifiers(
2980 const char **pp, /* the parsing position, updated upon return */
2981 char *val, /* the current value of the variable */
2982 char const startc, /* '(' or '{', or '\0' for indirect modifiers */
2983 char const endc, /* ')' or '}', or '\0' for indirect modifiers */
2984 Var * const v, /* the variable may have its flags changed */
2985 GNode * const ctxt, /* for looking up and modifying variables */
2986 VarEvalFlags const eflags,
2987 void ** const freePtr /* free this after using the return value */
2988 ) {
2989 ApplyModifiersState st = {
2990 startc, endc, v, ctxt, eflags, val,
2991 var_Error, /* .newVal */
2992 '\0', /* .missing_delim */
2993 ' ', /* .sep */
2994 FALSE /* .oneBigWord */
2995 };
2996 const char *p;
2997 const char *mod;
2998 ApplyModifierResult res;
2999
3000 assert(startc == '(' || startc == '{' || startc == '\0');
3001 assert(endc == ')' || endc == '}' || endc == '\0');
3002 assert(val != NULL);
3003
3004 p = *pp;
3005 while (*p != '\0' && *p != endc) {
3006
3007 if (*p == '$') {
3008 /*
3009 * We may have some complex modifiers in a variable.
3010 */
3011 const char *nested_p = p;
3012 void *freeIt;
3013 const char *rval;
3014 int c;
3015
3016 (void)Var_Parse(&nested_p, st.ctxt, st.eflags, &rval, &freeIt);
3017 /* TODO: handle errors */
3018
3019 /*
3020 * If we have not parsed up to st.endc or ':',
3021 * we are not interested.
3022 */
3023 if (rval[0] != '\0' &&
3024 (c = *nested_p) != '\0' && c != ':' && c != st.endc) {
3025 free(freeIt);
3026 /* XXX: apply_mods doesn't sound like "not interested". */
3027 goto apply_mods;
3028 }
3029
3030 VAR_DEBUG("Indirect modifier \"%s\" from \"%.*s\"\n",
3031 rval, (int)(size_t)(nested_p - p), p);
3032
3033 p = nested_p;
3034
3035 if (rval[0] != '\0') {
3036 const char *rval_pp = rval;
3037 st.val = ApplyModifiers(&rval_pp, st.val, '\0', '\0', v,
3038 ctxt, eflags, freePtr);
3039 if (st.val == var_Error
3040 || (st.val == varNoError && !(st.eflags & VARE_UNDEFERR))
3041 || *rval_pp != '\0') {
3042 free(freeIt);
3043 goto out; /* error already reported */
3044 }
3045 }
3046 free(freeIt);
3047 if (*p == ':')
3048 p++;
3049 else if (*p == '\0' && endc != '\0') {
3050 Error("Unclosed variable specification after complex "
3051 "modifier (expecting '%c') for %s", st.endc, st.v->name);
3052 goto out;
3053 }
3054 continue;
3055 }
3056 apply_mods:
3057 st.newVal = var_Error; /* default value, in case of errors */
3058 res = AMR_BAD; /* just a safe fallback */
3059 mod = p;
3060
3061 if (DEBUG(VAR)) {
3062 char eflags_str[VarEvalFlags_ToStringSize];
3063 char vflags_str[VarFlags_ToStringSize];
3064 Boolean is_single_char = mod[0] != '\0' &&
3065 (mod[1] == endc || mod[1] == ':');
3066
3067 /* At this point, only the first character of the modifier can
3068 * be used since the end of the modifier is not yet known. */
3069 VAR_DEBUG("Applying ${%s:%c%s} to \"%s\" (%s, %s)\n",
3070 st.v->name, mod[0], is_single_char ? "" : "...", st.val,
3071 Enum_FlagsToString(eflags_str, sizeof eflags_str,
3072 st.eflags, VarEvalFlags_ToStringSpecs),
3073 Enum_FlagsToString(vflags_str, sizeof vflags_str,
3074 st.v->flags, VarFlags_ToStringSpecs));
3075 }
3076
3077 switch (*mod) {
3078 case ':':
3079 res = ApplyModifier_Assign(&p, &st);
3080 break;
3081 case '@':
3082 res = ApplyModifier_Loop(&p, &st);
3083 break;
3084 case '_':
3085 res = ApplyModifier_Remember(&p, &st);
3086 break;
3087 case 'D':
3088 case 'U':
3089 res = ApplyModifier_Defined(&p, &st);
3090 break;
3091 case 'L':
3092 ApplyModifiersState_Keep(&st);
3093 st.newVal = bmake_strdup(st.v->name);
3094 p++;
3095 res = AMR_OK;
3096 break;
3097 case 'P':
3098 res = ApplyModifier_Path(&p, &st);
3099 break;
3100 case '!':
3101 res = ApplyModifier_ShellCommand(&p, &st);
3102 break;
3103 case '[':
3104 res = ApplyModifier_Words(&p, &st);
3105 break;
3106 case 'g':
3107 res = ApplyModifier_Gmtime(&p, &st);
3108 break;
3109 case 'h':
3110 res = ApplyModifier_Hash(&p, &st);
3111 break;
3112 case 'l':
3113 res = ApplyModifier_Localtime(&p, &st);
3114 break;
3115 case 't':
3116 res = ApplyModifier_To(&p, &st);
3117 break;
3118 case 'N':
3119 case 'M':
3120 res = ApplyModifier_Match(&p, &st);
3121 break;
3122 case 'S':
3123 res = ApplyModifier_Subst(&p, &st);
3124 break;
3125 case '?':
3126 res = ApplyModifier_IfElse(&p, &st);
3127 break;
3128 #ifndef NO_REGEX
3129 case 'C':
3130 res = ApplyModifier_Regex(&p, &st);
3131 break;
3132 #endif
3133 case 'q':
3134 case 'Q':
3135 if (p[1] == st.endc || p[1] == ':') {
3136 st.newVal = VarQuote(st.val, *mod == 'q');
3137 p++;
3138 res = AMR_OK;
3139 } else
3140 res = AMR_UNKNOWN;
3141 break;
3142 case 'T':
3143 res = ApplyModifier_WordFunc(&p, &st, ModifyWord_Tail);
3144 break;
3145 case 'H':
3146 res = ApplyModifier_WordFunc(&p, &st, ModifyWord_Head);
3147 break;
3148 case 'E':
3149 res = ApplyModifier_WordFunc(&p, &st, ModifyWord_Suffix);
3150 break;
3151 case 'R':
3152 res = ApplyModifier_WordFunc(&p, &st, ModifyWord_Root);
3153 break;
3154 case 'r':
3155 res = ApplyModifier_Range(&p, &st);
3156 break;
3157 case 'O':
3158 res = ApplyModifier_Order(&p, &st);
3159 break;
3160 case 'u':
3161 if (p[1] == st.endc || p[1] == ':') {
3162 st.newVal = VarUniq(st.val);
3163 p++;
3164 res = AMR_OK;
3165 } else
3166 res = AMR_UNKNOWN;
3167 break;
3168 #ifdef SUNSHCMD
3169 case 's':
3170 if (p[1] == 'h' && (p[2] == st.endc || p[2] == ':')) {
3171 if (st.eflags & VARE_WANTRES) {
3172 const char *errfmt;
3173 st.newVal = Cmd_Exec(st.val, &errfmt);
3174 if (errfmt)
3175 Error(errfmt, st.val);
3176 } else
3177 st.newVal = varNoError;
3178 p += 2;
3179 res = AMR_OK;
3180 } else
3181 res = AMR_UNKNOWN;
3182 break;
3183 #endif
3184 default:
3185 res = AMR_UNKNOWN;
3186 }
3187
3188 #ifdef SYSVVARSUB
3189 if (res == AMR_UNKNOWN) {
3190 assert(p == mod);
3191 res = ApplyModifier_SysV(&p, &st);
3192 }
3193 #endif
3194
3195 if (res == AMR_UNKNOWN) {
3196 Error("Unknown modifier '%c'", *mod);
3197 for (p++; *p != ':' && *p != st.endc && *p != '\0'; p++)
3198 continue;
3199 st.newVal = var_Error;
3200 }
3201 if (res == AMR_CLEANUP)
3202 goto cleanup;
3203 if (res == AMR_BAD)
3204 goto bad_modifier;
3205
3206 if (DEBUG(VAR)) {
3207 char eflags_str[VarEvalFlags_ToStringSize];
3208 char vflags_str[VarFlags_ToStringSize];
3209 const char *quot = st.newVal == var_Error ? "" : "\"";
3210 const char *newVal = st.newVal == var_Error ? "error" : st.newVal;
3211
3212 VAR_DEBUG("Result of ${%s:%.*s} is %s%s%s (%s, %s)\n",
3213 st.v->name, (int)(p - mod), mod, quot, newVal, quot,
3214 Enum_FlagsToString(eflags_str, sizeof eflags_str,
3215 st.eflags, VarEvalFlags_ToStringSpecs),
3216 Enum_FlagsToString(vflags_str, sizeof vflags_str,
3217 st.v->flags, VarFlags_ToStringSpecs));
3218 }
3219
3220 if (st.newVal != st.val) {
3221 if (*freePtr) {
3222 free(st.val);
3223 *freePtr = NULL;
3224 }
3225 st.val = st.newVal;
3226 if (st.val != var_Error && st.val != varNoError) {
3227 *freePtr = st.val;
3228 }
3229 }
3230 if (*p == '\0' && st.endc != '\0') {
3231 Error("Unclosed variable specification (expecting '%c') "
3232 "for \"%s\" (value \"%s\") modifier %c",
3233 st.endc, st.v->name, st.val, *mod);
3234 } else if (*p == ':') {
3235 p++;
3236 }
3237 mod = p;
3238 }
3239 out:
3240 *pp = p;
3241 assert(st.val != NULL); /* Use var_Error or varNoError instead. */
3242 return st.val;
3243
3244 bad_modifier:
3245 Error("Bad modifier `:%.*s' for %s",
3246 (int)strcspn(mod, ":)}"), mod, st.v->name);
3247
3248 cleanup:
3249 *pp = p;
3250 if (st.missing_delim != '\0')
3251 Error("Unfinished modifier for %s ('%c' missing)",
3252 st.v->name, st.missing_delim);
3253 free(*freePtr);
3254 *freePtr = NULL;
3255 return var_Error;
3256 }
3257
3258 static Boolean
3259 VarIsDynamic(GNode *ctxt, const char *varname, size_t namelen)
3260 {
3261 if ((namelen == 1 ||
3262 (namelen == 2 && (varname[1] == 'F' || varname[1] == 'D'))) &&
3263 (ctxt == VAR_CMD || ctxt == VAR_GLOBAL))
3264 {
3265 /*
3266 * If substituting a local variable in a non-local context,
3267 * assume it's for dynamic source stuff. We have to handle
3268 * this specially and return the longhand for the variable
3269 * with the dollar sign escaped so it makes it back to the
3270 * caller. Only four of the local variables are treated
3271 * specially as they are the only four that will be set
3272 * when dynamic sources are expanded.
3273 */
3274 switch (varname[0]) {
3275 case '@':
3276 case '%':
3277 case '*':
3278 case '!':
3279 return TRUE;
3280 }
3281 return FALSE;
3282 }
3283
3284 if ((namelen == 7 || namelen == 8) && varname[0] == '.' &&
3285 ch_isupper(varname[1]) && (ctxt == VAR_CMD || ctxt == VAR_GLOBAL))
3286 {
3287 return strcmp(varname, ".TARGET") == 0 ||
3288 strcmp(varname, ".ARCHIVE") == 0 ||
3289 strcmp(varname, ".PREFIX") == 0 ||
3290 strcmp(varname, ".MEMBER") == 0;
3291 }
3292
3293 return FALSE;
3294 }
3295
3296 static const char *
3297 ShortVarValue(char varname, const GNode *ctxt, VarEvalFlags eflags)
3298 {
3299 if (ctxt == VAR_CMD || ctxt == VAR_GLOBAL) {
3300 /*
3301 * If substituting a local variable in a non-local context,
3302 * assume it's for dynamic source stuff. We have to handle
3303 * this specially and return the longhand for the variable
3304 * with the dollar sign escaped so it makes it back to the
3305 * caller. Only four of the local variables are treated
3306 * specially as they are the only four that will be set
3307 * when dynamic sources are expanded.
3308 */
3309 switch (varname) {
3310 case '@':
3311 return "$(.TARGET)";
3312 case '%':
3313 return "$(.MEMBER)";
3314 case '*':
3315 return "$(.PREFIX)";
3316 case '!':
3317 return "$(.ARCHIVE)";
3318 }
3319 }
3320 return eflags & VARE_UNDEFERR ? var_Error : varNoError;
3321 }
3322
3323 /* Parse a variable name, until the end character or a colon, whichever
3324 * comes first. */
3325 static char *
3326 ParseVarname(const char **pp, char startc, char endc,
3327 GNode *ctxt, VarEvalFlags eflags,
3328 size_t *out_varname_len)
3329 {
3330 Buffer buf;
3331 const char *p = *pp;
3332 int depth = 1;
3333
3334 Buf_Init(&buf, 0);
3335
3336 while (*p != '\0') {
3337 /* Track depth so we can spot parse errors. */
3338 if (*p == startc)
3339 depth++;
3340 if (*p == endc) {
3341 if (--depth == 0)
3342 break;
3343 }
3344 if (*p == ':' && depth == 1)
3345 break;
3346
3347 /* A variable inside a variable, expand. */
3348 if (*p == '$') {
3349 void *freeIt;
3350 const char *rval;
3351 (void)Var_Parse(&p, ctxt, eflags, &rval, &freeIt);
3352 /* TODO: handle errors */
3353 Buf_AddStr(&buf, rval);
3354 free(freeIt);
3355 } else {
3356 Buf_AddByte(&buf, *p);
3357 p++;
3358 }
3359 }
3360 *pp = p;
3361 *out_varname_len = Buf_Size(&buf);
3362 return Buf_Destroy(&buf, FALSE);
3363 }
3364
3365 static Boolean
3366 ValidShortVarname(char varname, const char *start)
3367 {
3368 switch (varname) {
3369 case '\0':
3370 case ')':
3371 case '}':
3372 case ':':
3373 case '$':
3374 break; /* and continue below */
3375 default:
3376 return TRUE;
3377 }
3378
3379 if (!DEBUG(LINT))
3380 return FALSE;
3381
3382 if (varname == '$')
3383 Parse_Error(PARSE_FATAL,
3384 "To escape a dollar, use \\$, not $$, at \"%s\"", start);
3385 else if (varname == '\0')
3386 Parse_Error(PARSE_FATAL, "Dollar followed by nothing");
3387 else
3388 Parse_Error(PARSE_FATAL,
3389 "Invalid variable name '%c', at \"%s\"", varname, start);
3390
3391 return FALSE;
3392 }
3393
3394 /*-
3395 *-----------------------------------------------------------------------
3396 * Var_Parse --
3397 * Given the start of a variable expression (such as $v, $(VAR),
3398 * ${VAR:Mpattern}), extract the variable name, possibly some
3399 * modifiers and find its value by applying the modifiers to the
3400 * original value.
3401 *
3402 * Input:
3403 * str The string to parse
3404 * ctxt The context for the variable
3405 * flags VARE_UNDEFERR if undefineds are an error
3406 * VARE_WANTRES if we actually want the result
3407 * VARE_ASSIGN if we are in a := assignment
3408 * lengthPtr OUT: The length of the specification
3409 * freePtr OUT: Non-NULL if caller should free *freePtr
3410 *
3411 * Results:
3412 * Returns the value of the variable expression, never NULL.
3413 * var_Error if there was a parse error and VARE_UNDEFERR was set.
3414 * varNoError if there was a parse error and VARE_UNDEFERR was not set.
3415 *
3416 * Parsing should continue at str + *lengthPtr.
3417 * TODO: Document the value of *lengthPtr on parse errors. It might be
3418 * 0, or +1, or the index of the parse error, or the guessed end of the
3419 * variable expression.
3420 *
3421 * If var_Error is returned, a diagnostic may or may not have been
3422 * printed. XXX: This is inconsistent.
3423 *
3424 * If varNoError is returned, a diagnostic may or may not have been
3425 * printed. XXX: This is inconsistent, and as of 2020-09-08, returning
3426 * varNoError is even used to return a regular, non-error empty string.
3427 *
3428 * After using the returned value, *freePtr must be freed, preferably
3429 * using bmake_free since it is NULL in most cases.
3430 *
3431 * Side Effects:
3432 * Any effects from the modifiers, such as :!cmd! or ::=value.
3433 *-----------------------------------------------------------------------
3434 */
3435 /* coverity[+alloc : arg-*4] */
3436 VarParseResult
3437 Var_Parse(const char **pp, GNode *ctxt, VarEvalFlags eflags,
3438 const char **out_val, void **freePtr)
3439 {
3440 const char *const start = *pp;
3441 const char *p;
3442 Boolean haveModifier; /* TRUE if have modifiers for the variable */
3443 char startc; /* Starting character if variable in parens
3444 * or braces */
3445 char endc; /* Ending character if variable in parens
3446 * or braces */
3447 Boolean dynamic; /* TRUE if the variable is local and we're
3448 * expanding it in a non-local context. This
3449 * is done to support dynamic sources. The
3450 * result is just the expression, unaltered */
3451 const char *extramodifiers;
3452 Var *v;
3453 char *nstr;
3454 char eflags_str[VarEvalFlags_ToStringSize];
3455
3456 VAR_DEBUG("%s: %s with %s\n", __func__, start,
3457 Enum_FlagsToString(eflags_str, sizeof eflags_str, eflags,
3458 VarEvalFlags_ToStringSpecs));
3459
3460 *freePtr = NULL;
3461 extramodifiers = NULL; /* extra modifiers to apply first */
3462 dynamic = FALSE;
3463
3464 /* Appease GCC, which thinks that the variable might not be
3465 * initialized. */
3466 endc = '\0';
3467
3468 startc = start[1];
3469 if (startc != '(' && startc != '{') {
3470 char name[2];
3471
3472 /*
3473 * If it's not bounded by braces of some sort, life is much simpler.
3474 * We just need to check for the first character and return the
3475 * value if it exists.
3476 */
3477
3478 if (!ValidShortVarname(startc, start)) {
3479 (*pp)++;
3480 *out_val = var_Error;
3481 return VPR_PARSE_MSG;
3482 }
3483
3484 name[0] = startc;
3485 name[1] = '\0';
3486 v = VarFind(name, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
3487 if (v == NULL) {
3488 *pp += 2;
3489
3490 *out_val = ShortVarValue(startc, ctxt, eflags);
3491 if (DEBUG(LINT) && *out_val == var_Error) {
3492 Parse_Error(PARSE_FATAL, "Variable \"%s\" is undefined", name);
3493 return VPR_UNDEF_MSG;
3494 }
3495 return eflags & VARE_UNDEFERR ? VPR_UNDEF_SILENT : VPR_OK;
3496 } else {
3497 haveModifier = FALSE;
3498 p = start + 1;
3499 }
3500 } else {
3501 size_t namelen;
3502 char *varname;
3503
3504 endc = startc == '(' ? ')' : '}';
3505
3506 p = start + 2;
3507 varname = ParseVarname(&p, startc, endc, ctxt, eflags, &namelen);
3508
3509 if (*p == ':') {
3510 haveModifier = TRUE;
3511 } else if (*p == endc) {
3512 haveModifier = FALSE;
3513 } else {
3514 Parse_Error(PARSE_FATAL, "Unclosed variable \"%s\"", varname);
3515 *pp = p;
3516 free(varname);
3517 *out_val = var_Error;
3518 return VPR_PARSE_MSG;
3519 }
3520
3521 v = VarFind(varname, ctxt, FIND_ENV | FIND_GLOBAL | FIND_CMD);
3522
3523 /* At this point, p points just after the variable name,
3524 * either at ':' or at endc. */
3525
3526 /*
3527 * Check also for bogus D and F forms of local variables since we're
3528 * in a local context and the name is the right length.
3529 */
3530 if (v == NULL && ctxt != VAR_CMD && ctxt != VAR_GLOBAL &&
3531 namelen == 2 && (varname[1] == 'F' || varname[1] == 'D') &&
3532 strchr("@%?*!<>", varname[0]) != NULL)
3533 {
3534 /*
3535 * Well, it's local -- go look for it.
3536 */
3537 char name[] = { varname[0], '\0' };
3538 v = VarFind(name, ctxt, 0);
3539
3540 if (v != NULL) {
3541 if (varname[1] == 'D') {
3542 extramodifiers = "H:";
3543 } else { /* F */
3544 extramodifiers = "T:";
3545 }
3546 }
3547 }
3548
3549 if (v == NULL) {
3550 dynamic = VarIsDynamic(ctxt, varname, namelen);
3551
3552 if (!haveModifier) {
3553 p++; /* skip endc */
3554 *pp = p;
3555 if (dynamic) {
3556 char *pstr = bmake_strsedup(start, p);
3557 *freePtr = pstr;
3558 free(varname);
3559 *out_val = pstr;
3560 return VPR_OK;
3561 }
3562
3563 if ((eflags & VARE_UNDEFERR) && (eflags & VARE_WANTRES) &&
3564 DEBUG(LINT))
3565 {
3566 Parse_Error(PARSE_FATAL, "Variable \"%s\" is undefined",
3567 varname);
3568 free(varname);
3569 *out_val = var_Error;
3570 return VPR_UNDEF_MSG;
3571 }
3572
3573 if (eflags & VARE_UNDEFERR) {
3574 free(varname);
3575 *out_val = var_Error;
3576 return VPR_UNDEF_SILENT;
3577 }
3578
3579 free(varname);
3580 *out_val = varNoError;
3581 return VPR_OK;
3582 }
3583
3584 /* The variable expression is based on an undefined variable.
3585 * Nevertheless it needs a Var, for modifiers that access the
3586 * variable name, such as :L or :?, and for modifiers that access
3587 * the variable flags (VAR_JUNK, VAR_KEEP).
3588 *
3589 * Most modifiers leave this expression in the "undefined" state
3590 * (VAR_JUNK), only a few modifiers like :D, :U, :L, :P turn this
3591 * undefined expression into a defined expression (VAR_KEEP).
3592 *
3593 * At the end, after applying all modifiers, if the expression
3594 * is still !VAR_KEEP, Var_Parse will return var_Error. */
3595 v = bmake_malloc(sizeof(Var));
3596 v->name = varname;
3597 Buf_Init(&v->val, 1);
3598 v->flags = VAR_JUNK;
3599 } else
3600 free(varname);
3601 }
3602
3603 if (v->flags & VAR_IN_USE) {
3604 Fatal("Variable %s is recursive.", v->name);
3605 /*NOTREACHED*/
3606 } else {
3607 v->flags |= VAR_IN_USE;
3608 }
3609
3610 /*
3611 * Before doing any modification, we have to make sure the value
3612 * has been fully expanded. If it looks like recursion might be
3613 * necessary (there's a dollar sign somewhere in the variable's value)
3614 * we just call Var_Subst to do any other substitutions that are
3615 * necessary. Note that the value returned by Var_Subst will have
3616 * been dynamically-allocated, so it will need freeing when we
3617 * return.
3618 */
3619 nstr = Buf_GetAll(&v->val, NULL);
3620 if (strchr(nstr, '$') != NULL && (eflags & VARE_WANTRES)) {
3621 VarEvalFlags nested_eflags = eflags;
3622 if (DEBUG(LINT))
3623 nested_eflags &= ~(unsigned)VARE_UNDEFERR;
3624 nstr = Var_Subst(nstr, ctxt, nested_eflags);
3625 *freePtr = nstr;
3626 }
3627
3628 v->flags &= ~(unsigned)VAR_IN_USE;
3629
3630 if (haveModifier || extramodifiers != NULL) {
3631 void *extraFree;
3632
3633 extraFree = NULL;
3634 if (extramodifiers != NULL) {
3635 const char *em = extramodifiers;
3636 nstr = ApplyModifiers(&em, nstr, '(', ')',
3637 v, ctxt, eflags, &extraFree);
3638 }
3639
3640 if (haveModifier) {
3641 /* Skip initial colon. */
3642 p++;
3643
3644 nstr = ApplyModifiers(&p, nstr, startc, endc,
3645 v, ctxt, eflags, freePtr);
3646 free(extraFree);
3647 } else {
3648 *freePtr = extraFree;
3649 }
3650 }
3651
3652 if (*p != '\0') /* Skip past endc if possible. */
3653 p++;
3654
3655 *pp = p;
3656
3657 if (v->flags & VAR_FROM_ENV) {
3658 /* Free the environment variable now since we own it,
3659 * but don't free the variable value if it will be returned. */
3660 Boolean keepValue = nstr == Buf_GetAll(&v->val, NULL);
3661 if (keepValue)
3662 *freePtr = nstr;
3663 (void)VarFreeEnv(v, !keepValue);
3664
3665 } else if (v->flags & VAR_JUNK) {
3666 /*
3667 * Perform any freeing needed and set *freePtr to NULL so the caller
3668 * doesn't try to free a static pointer.
3669 * If VAR_KEEP is also set then we want to keep str(?) as is.
3670 */
3671 if (!(v->flags & VAR_KEEP)) {
3672 if (*freePtr != NULL) {
3673 free(*freePtr);
3674 *freePtr = NULL;
3675 }
3676 if (dynamic) {
3677 nstr = bmake_strsedup(start, p);
3678 *freePtr = nstr;
3679 } else {
3680 nstr = (eflags & VARE_UNDEFERR) ? var_Error : varNoError;
3681 }
3682 }
3683 if (nstr != Buf_GetAll(&v->val, NULL))
3684 Buf_Destroy(&v->val, TRUE);
3685 free(v->name);
3686 free(v);
3687 }
3688 *out_val = nstr;
3689 return VPR_UNKNOWN;
3690 }
3691
3692 /* Substitute for all variables in the given string in the given context.
3693 *
3694 * If eflags & VARE_UNDEFERR, Parse_Error will be called when an undefined
3695 * variable is encountered.
3696 *
3697 * If eflags & VARE_WANTRES, any effects from the modifiers, such as ::=,
3698 * :sh or !cmd! take place.
3699 *
3700 * Input:
3701 * str the string which to substitute
3702 * ctxt the context wherein to find variables
3703 * eflags VARE_UNDEFERR if undefineds are an error
3704 * VARE_WANTRES if we actually want the result
3705 * VARE_ASSIGN if we are in a := assignment
3706 *
3707 * Results:
3708 * The resulting string.
3709 */
3710 char *
3711 Var_Subst(const char *str, GNode *ctxt, VarEvalFlags eflags)
3712 {
3713 Buffer buf; /* Buffer for forming things */
3714 Boolean trailingBackslash;
3715
3716 /* Set true if an error has already been reported,
3717 * to prevent a plethora of messages when recursing */
3718 static Boolean errorReported;
3719
3720 Buf_Init(&buf, 0);
3721 errorReported = FALSE;
3722 trailingBackslash = FALSE; /* variable ends in \ */
3723
3724 while (*str) {
3725 if (*str == '\n' && trailingBackslash)
3726 Buf_AddByte(&buf, ' ');
3727
3728 if (*str == '$' && str[1] == '$') {
3729 /*
3730 * A dollar sign may be escaped with another dollar sign.
3731 * In such a case, we skip over the escape character and store the
3732 * dollar sign into the buffer directly.
3733 */
3734 if (save_dollars && (eflags & VARE_ASSIGN))
3735 Buf_AddByte(&buf, '$');
3736 Buf_AddByte(&buf, '$');
3737 str += 2;
3738 } else if (*str != '$') {
3739 /*
3740 * Skip as many characters as possible -- either to the end of
3741 * the string or to the next dollar sign (variable expression).
3742 */
3743 const char *cp;
3744
3745 for (cp = str++; *str != '$' && *str != '\0'; str++)
3746 continue;
3747 Buf_AddBytesBetween(&buf, cp, str);
3748 } else {
3749 const char *nested_str = str;
3750 void *freeIt;
3751 const char *val;
3752 (void)Var_Parse(&nested_str, ctxt, eflags, &val, &freeIt);
3753 /* TODO: handle errors */
3754
3755 if (val == var_Error || val == varNoError) {
3756 /*
3757 * If performing old-time variable substitution, skip over
3758 * the variable and continue with the substitution. Otherwise,
3759 * store the dollar sign and advance str so we continue with
3760 * the string...
3761 */
3762 if (oldVars) {
3763 str = nested_str;
3764 } else if ((eflags & VARE_UNDEFERR) || val == var_Error) {
3765 /*
3766 * If variable is undefined, complain and skip the
3767 * variable. The complaint will stop us from doing anything
3768 * when the file is parsed.
3769 */
3770 if (!errorReported) {
3771 Parse_Error(PARSE_FATAL, "Undefined variable \"%.*s\"",
3772 (int)(size_t)(nested_str - str), str);
3773 }
3774 str = nested_str;
3775 errorReported = TRUE;
3776 } else {
3777 Buf_AddByte(&buf, *str);
3778 str++;
3779 }
3780 } else {
3781 size_t val_len;
3782
3783 str = nested_str;
3784
3785 val_len = strlen(val);
3786 Buf_AddBytes(&buf, val, val_len);
3787 trailingBackslash = val_len > 0 && val[val_len - 1] == '\\';
3788 }
3789 free(freeIt);
3790 freeIt = NULL;
3791 }
3792 }
3793
3794 return Buf_DestroyCompact(&buf);
3795 }
3796
3797 /* Initialize the module. */
3798 void
3799 Var_Init(void)
3800 {
3801 VAR_INTERNAL = Targ_NewGN("Internal");
3802 VAR_GLOBAL = Targ_NewGN("Global");
3803 VAR_CMD = Targ_NewGN("Command");
3804 }
3805
3806
3807 void
3808 Var_End(void)
3809 {
3810 Var_Stats();
3811 }
3812
3813 void
3814 Var_Stats(void)
3815 {
3816 Hash_DebugStats(&VAR_GLOBAL->context, "VAR_GLOBAL");
3817 }
3818
3819
3820 /****************** PRINT DEBUGGING INFO *****************/
3821 static void
3822 VarPrintVar(void *vp, void *data MAKE_ATTR_UNUSED)
3823 {
3824 Var *v = (Var *)vp;
3825 fprintf(debug_file, "%-16s = %s\n", v->name, Buf_GetAll(&v->val, NULL));
3826 }
3827
3828 /* Print all variables in a context, unordered. */
3829 void
3830 Var_Dump(GNode *ctxt)
3831 {
3832 Hash_ForEach(&ctxt->context, VarPrintVar, NULL);
3833 }
3834