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