var.c revision 1.1017 1 1.1017 rillig /* $NetBSD: var.c,v 1.1017 2022/03/26 14:17:46 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.798 rillig * Var_Set
84 1.798 rillig * Var_SetExpand
85 1.798 rillig * Set the value of the variable, creating it if
86 1.592 rillig * necessary.
87 1.592 rillig *
88 1.794 rillig * Var_Append
89 1.794 rillig * Var_AppendExpand
90 1.794 rillig * Append more characters to the variable, creating it if
91 1.592 rillig * necessary. A space is placed between the old value and
92 1.592 rillig * the new one.
93 1.1 cgd *
94 1.796 rillig * Var_Exists
95 1.796 rillig * Var_ExistsExpand
96 1.796 rillig * See if a variable exists.
97 1.1 cgd *
98 1.592 rillig * Var_Value Return the unexpanded value of a variable, or NULL if
99 1.592 rillig * the variable is undefined.
100 1.592 rillig *
101 1.592 rillig * Var_Subst Substitute all variable expressions in a string.
102 1.592 rillig *
103 1.592 rillig * Var_Parse Parse a variable expression such as ${VAR:Mpattern}.
104 1.1 cgd *
105 1.797 rillig * Var_Delete
106 1.797 rillig * Delete a variable.
107 1.1 cgd *
108 1.725 rillig * Var_ReexportVars
109 1.725 rillig * Export some or even all variables to the environment
110 1.592 rillig * of this process and its child processes.
111 1.1 cgd *
112 1.592 rillig * Var_Export Export the variable to the environment of this process
113 1.592 rillig * and its child processes.
114 1.1 cgd *
115 1.592 rillig * Var_UnExport Don't export the variable anymore.
116 1.1 cgd *
117 1.1 cgd * Debugging:
118 1.592 rillig * Var_Stats Print out hashing statistics if in -dh mode.
119 1.592 rillig *
120 1.802 rillig * Var_Dump Print out all variables defined in the given scope.
121 1.1 cgd *
122 1.827 rillig * XXX: There's a lot of almost duplicate code in these functions that only
123 1.827 rillig * differs in subtle details that are not mentioned in the manual page.
124 1.1 cgd */
125 1.1 cgd
126 1.630 rillig #include <sys/stat.h>
127 1.31 gwr #ifndef NO_REGEX
128 1.630 rillig #include <sys/types.h>
129 1.630 rillig #include <regex.h>
130 1.17 christos #endif
131 1.631 rillig #include <errno.h>
132 1.630 rillig #include <inttypes.h>
133 1.630 rillig #include <limits.h>
134 1.630 rillig #include <time.h>
135 1.630 rillig
136 1.630 rillig #include "make.h"
137 1.630 rillig #include "dir.h"
138 1.630 rillig #include "job.h"
139 1.630 rillig #include "metachar.h"
140 1.1 cgd
141 1.512 rillig /* "@(#)var.c 8.3 (Berkeley) 3/19/94" */
142 1.1017 rillig MAKE_RCSID("$NetBSD: var.c,v 1.1017 2022/03/26 14:17:46 rillig Exp $");
143 1.228 rillig
144 1.778 rillig /*
145 1.778 rillig * Variables are defined using one of the VAR=value assignments. Their
146 1.570 rillig * value can be queried by expressions such as $V, ${VAR}, or with modifiers
147 1.570 rillig * such as ${VAR:S,from,to,g:Q}.
148 1.570 rillig *
149 1.802 rillig * There are 3 kinds of variables: scope variables, environment variables,
150 1.570 rillig * undefined variables.
151 1.570 rillig *
152 1.802 rillig * Scope variables are stored in a GNode.scope. The only way to undefine
153 1.802 rillig * a scope variable is using the .undef directive. In particular, it must
154 1.570 rillig * not be possible to undefine a variable during the evaluation of an
155 1.996 rillig * expression, or Var.name might point nowhere. (There is another,
156 1.996 rillig * unintended way to undefine a scope variable, see varmod-loop-delete.mk.)
157 1.570 rillig *
158 1.977 rillig * Environment variables are short-lived. They are returned by VarFind, and
159 1.977 rillig * after using them, they must be freed using VarFreeShortLived.
160 1.570 rillig *
161 1.570 rillig * Undefined variables occur during evaluation of variable expressions such
162 1.570 rillig * as ${UNDEF:Ufallback} in Var_Parse and ApplyModifiers.
163 1.570 rillig */
164 1.1 cgd typedef struct Var {
165 1.703 rillig /*
166 1.703 rillig * The name of the variable, once set, doesn't change anymore.
167 1.802 rillig * For scope variables, it aliases the corresponding HashEntry name.
168 1.703 rillig * For environment and undefined variables, it is allocated.
169 1.703 rillig */
170 1.711 rillig FStr name;
171 1.570 rillig
172 1.703 rillig /* The unexpanded value of the variable. */
173 1.703 rillig Buffer val;
174 1.902 rillig
175 1.902 rillig /* The variable came from the command line. */
176 1.987 rillig bool fromCmd:1;
177 1.902 rillig
178 1.902 rillig /*
179 1.978 rillig * The variable is short-lived.
180 1.978 rillig * These variables are not registered in any GNode, therefore they
181 1.978 rillig * must be freed after use.
182 1.978 rillig */
183 1.987 rillig bool shortLived:1;
184 1.978 rillig
185 1.978 rillig /*
186 1.902 rillig * The variable comes from the environment.
187 1.978 rillig * Appending to its value moves the variable to the global scope.
188 1.902 rillig */
189 1.987 rillig bool fromEnvironment:1;
190 1.902 rillig
191 1.902 rillig /*
192 1.902 rillig * The variable value cannot be changed anymore, and the variable
193 1.902 rillig * cannot be deleted. Any attempts to do so are silently ignored,
194 1.902 rillig * they are logged with -dv though.
195 1.902 rillig *
196 1.902 rillig * See VAR_SET_READONLY.
197 1.902 rillig */
198 1.987 rillig bool readOnly:1;
199 1.902 rillig
200 1.902 rillig /*
201 1.902 rillig * The variable's value is currently being used by Var_Parse or
202 1.902 rillig * Var_Subst. This marker is used to avoid endless recursion.
203 1.902 rillig */
204 1.987 rillig bool inUse:1;
205 1.902 rillig
206 1.902 rillig /*
207 1.902 rillig * The variable is exported to the environment, to be used by child
208 1.902 rillig * processes.
209 1.902 rillig */
210 1.987 rillig bool exported:1;
211 1.902 rillig
212 1.902 rillig /*
213 1.902 rillig * At the point where this variable was exported, it contained an
214 1.902 rillig * unresolved reference to another variable. Before any child
215 1.902 rillig * process is started, it needs to be exported again, in the hope
216 1.902 rillig * that the referenced variable can then be resolved.
217 1.902 rillig */
218 1.987 rillig bool reexport:1;
219 1.417 rillig } Var;
220 1.1 cgd
221 1.710 rillig /*
222 1.830 rillig * Exporting variables is expensive and may leak memory, so skip it if we
223 1.830 rillig * can.
224 1.830 rillig *
225 1.830 rillig * To avoid this, it might be worth encapsulating the environment variables
226 1.830 rillig * in a separate data structure called EnvVars.
227 1.710 rillig */
228 1.710 rillig typedef enum VarExportedMode {
229 1.710 rillig VAR_EXPORTED_NONE,
230 1.710 rillig VAR_EXPORTED_SOME,
231 1.710 rillig VAR_EXPORTED_ALL
232 1.710 rillig } VarExportedMode;
233 1.710 rillig
234 1.713 rillig typedef enum UnexportWhat {
235 1.830 rillig /* Unexport the variables given by name. */
236 1.713 rillig UNEXPORT_NAMED,
237 1.830 rillig /*
238 1.830 rillig * Unexport all globals previously exported, but keep the environment
239 1.830 rillig * inherited from the parent.
240 1.830 rillig */
241 1.713 rillig UNEXPORT_ALL,
242 1.830 rillig /*
243 1.830 rillig * Unexport all globals previously exported and clear the environment
244 1.830 rillig * inherited from the parent.
245 1.830 rillig */
246 1.713 rillig UNEXPORT_ENV
247 1.713 rillig } UnexportWhat;
248 1.713 rillig
249 1.261 rillig /* Flags for pattern matching in the :S and :C modifiers */
250 1.927 rillig typedef struct PatternFlags {
251 1.987 rillig bool subGlobal:1; /* 'g': replace as often as possible */
252 1.987 rillig bool subOnce:1; /* '1': replace only once */
253 1.987 rillig bool anchorStart:1; /* '^': match only at start of word */
254 1.987 rillig bool anchorEnd:1; /* '$': match only at end of word */
255 1.927 rillig } PatternFlags;
256 1.16 christos
257 1.830 rillig /* SepBuf builds a string from words interleaved with separators. */
258 1.710 rillig typedef struct SepBuf {
259 1.710 rillig Buffer buf;
260 1.895 rillig bool needSep;
261 1.710 rillig /* Usually ' ', but see the ':ts' modifier. */
262 1.710 rillig char sep;
263 1.710 rillig } SepBuf;
264 1.710 rillig
265 1.710 rillig
266 1.710 rillig /*
267 1.710 rillig * This lets us tell if we have replaced the original environ
268 1.710 rillig * (which we cannot free).
269 1.710 rillig */
270 1.710 rillig char **savedEnv = NULL;
271 1.710 rillig
272 1.778 rillig /*
273 1.778 rillig * Special return value for Var_Parse, indicating a parse error. It may be
274 1.710 rillig * caused by an undefined variable, a syntax error in a modifier or
275 1.778 rillig * something entirely different.
276 1.778 rillig */
277 1.710 rillig char var_Error[] = "";
278 1.710 rillig
279 1.778 rillig /*
280 1.778 rillig * Special return value for Var_Parse, indicating an undefined variable in
281 1.917 rillig * a case where VARE_UNDEFERR is not set. This undefined variable is
282 1.710 rillig * typically a dynamic variable such as ${.TARGET}, whose expansion needs to
283 1.778 rillig * be deferred until it is defined in an actual target.
284 1.830 rillig *
285 1.917 rillig * See VARE_EVAL_KEEP_UNDEF.
286 1.778 rillig */
287 1.710 rillig static char varUndefined[] = "";
288 1.710 rillig
289 1.710 rillig /*
290 1.710 rillig * Traditionally this make consumed $$ during := like any other expansion.
291 1.710 rillig * Other make's do not, and this make follows straight since 2016-01-09.
292 1.710 rillig *
293 1.895 rillig * This knob allows controlling the behavior:
294 1.895 rillig * false to consume $$ during := assignment.
295 1.895 rillig * true to preserve $$ during := assignment.
296 1.710 rillig */
297 1.710 rillig #define MAKE_SAVE_DOLLARS ".MAKE.SAVE_DOLLARS"
298 1.895 rillig static bool save_dollars = true;
299 1.710 rillig
300 1.710 rillig /*
301 1.807 rillig * A scope collects variable names and their values.
302 1.807 rillig *
303 1.807 rillig * The main scope is SCOPE_GLOBAL, which contains the variables that are set
304 1.807 rillig * in the makefiles. SCOPE_INTERNAL acts as a fallback for SCOPE_GLOBAL and
305 1.807 rillig * contains some internal make variables. These internal variables can thus
306 1.807 rillig * be overridden, they can also be restored by undefining the overriding
307 1.807 rillig * variable.
308 1.807 rillig *
309 1.807 rillig * SCOPE_CMDLINE contains variables from the command line arguments. These
310 1.807 rillig * override variables from SCOPE_GLOBAL.
311 1.807 rillig *
312 1.807 rillig * There is no scope for environment variables, these are generated on-the-fly
313 1.807 rillig * whenever they are referenced. If there were such a scope, each change to
314 1.807 rillig * environment variables would have to be reflected in that scope, which may
315 1.807 rillig * be simpler or more complex than the current implementation.
316 1.807 rillig *
317 1.807 rillig * Each target has its own scope, containing the 7 target-local variables
318 1.1006 sjg * .TARGET, .ALLSRC, etc. Variables set on dependency lines also go in
319 1.1006 sjg * this scope.
320 1.807 rillig */
321 1.807 rillig
322 1.807 rillig GNode *SCOPE_CMDLINE;
323 1.807 rillig GNode *SCOPE_GLOBAL;
324 1.807 rillig GNode *SCOPE_INTERNAL;
325 1.710 rillig
326 1.710 rillig static VarExportedMode var_exportedVars = VAR_EXPORTED_NONE;
327 1.710 rillig
328 1.951 rillig static const char VarEvalMode_Name[][32] = {
329 1.906 rillig "parse-only",
330 1.906 rillig "eval",
331 1.906 rillig "eval-defined",
332 1.906 rillig "eval-keep-dollar",
333 1.906 rillig "eval-keep-undefined",
334 1.906 rillig "eval-keep-dollar-and-undefined",
335 1.906 rillig };
336 1.711 rillig
337 1.904 rillig
338 1.569 rillig static Var *
339 1.978 rillig VarNew(FStr name, const char *value,
340 1.978 rillig bool shortLived, bool fromEnvironment, bool readOnly)
341 1.569 rillig {
342 1.703 rillig size_t value_len = strlen(value);
343 1.703 rillig Var *var = bmake_malloc(sizeof *var);
344 1.744 rillig var->name = name;
345 1.703 rillig Buf_InitSize(&var->val, value_len + 1);
346 1.703 rillig Buf_AddBytes(&var->val, value, value_len);
347 1.902 rillig var->fromCmd = false;
348 1.978 rillig var->shortLived = shortLived;
349 1.978 rillig var->fromEnvironment = fromEnvironment;
350 1.902 rillig var->readOnly = readOnly;
351 1.902 rillig var->inUse = false;
352 1.902 rillig var->exported = false;
353 1.902 rillig var->reexport = false;
354 1.703 rillig return var;
355 1.569 rillig }
356 1.569 rillig
357 1.916 rillig static Substring
358 1.916 rillig CanonicalVarname(Substring name)
359 1.1 cgd {
360 1.916 rillig
361 1.916 rillig if (!(Substring_Length(name) > 0 && name.start[0] == '.'))
362 1.916 rillig return name;
363 1.916 rillig
364 1.916 rillig if (Substring_Equals(name, ".ALLSRC"))
365 1.916 rillig return Substring_InitStr(ALLSRC);
366 1.916 rillig if (Substring_Equals(name, ".ARCHIVE"))
367 1.916 rillig return Substring_InitStr(ARCHIVE);
368 1.916 rillig if (Substring_Equals(name, ".IMPSRC"))
369 1.916 rillig return Substring_InitStr(IMPSRC);
370 1.916 rillig if (Substring_Equals(name, ".MEMBER"))
371 1.916 rillig return Substring_InitStr(MEMBER);
372 1.916 rillig if (Substring_Equals(name, ".OODATE"))
373 1.916 rillig return Substring_InitStr(OODATE);
374 1.916 rillig if (Substring_Equals(name, ".PREFIX"))
375 1.916 rillig return Substring_InitStr(PREFIX);
376 1.916 rillig if (Substring_Equals(name, ".TARGET"))
377 1.916 rillig return Substring_InitStr(TARGET);
378 1.916 rillig
379 1.916 rillig if (Substring_Equals(name, ".SHELL") && shellPath == NULL)
380 1.916 rillig Shell_Init();
381 1.242 rillig
382 1.703 rillig /* GNU make has an additional alias $^ == ${.ALLSRC}. */
383 1.580 rillig
384 1.703 rillig return name;
385 1.580 rillig }
386 1.580 rillig
387 1.587 rillig static Var *
388 1.916 rillig GNode_FindVar(GNode *scope, Substring varname, unsigned int hash)
389 1.587 rillig {
390 1.916 rillig return HashTable_FindValueBySubstringHash(&scope->vars, varname, hash);
391 1.587 rillig }
392 1.587 rillig
393 1.778 rillig /*
394 1.802 rillig * Find the variable in the scope, and maybe in other scopes as well.
395 1.580 rillig *
396 1.580 rillig * Input:
397 1.607 rillig * name name to find, is not expanded any further
398 1.802 rillig * scope scope in which to look first
399 1.895 rillig * elsewhere true to look in other scopes as well
400 1.580 rillig *
401 1.580 rillig * Results:
402 1.605 rillig * The found variable, or NULL if the variable does not exist.
403 1.977 rillig * If the variable is short-lived (such as environment variables), it
404 1.977 rillig * must be freed using VarFreeShortLived after use.
405 1.580 rillig */
406 1.580 rillig static Var *
407 1.916 rillig VarFindSubstring(Substring name, GNode *scope, bool elsewhere)
408 1.580 rillig {
409 1.703 rillig Var *var;
410 1.703 rillig unsigned int nameHash;
411 1.703 rillig
412 1.830 rillig /* Replace '.TARGET' with '@', likewise for other local variables. */
413 1.703 rillig name = CanonicalVarname(name);
414 1.916 rillig nameHash = Hash_Substring(name);
415 1.580 rillig
416 1.802 rillig var = GNode_FindVar(scope, name, nameHash);
417 1.703 rillig if (!elsewhere)
418 1.703 rillig return var;
419 1.160 christos
420 1.802 rillig if (var == NULL && scope != SCOPE_CMDLINE)
421 1.801 rillig var = GNode_FindVar(SCOPE_CMDLINE, name, nameHash);
422 1.1 cgd
423 1.802 rillig if (!opts.checkEnvFirst && var == NULL && scope != SCOPE_GLOBAL) {
424 1.801 rillig var = GNode_FindVar(SCOPE_GLOBAL, name, nameHash);
425 1.802 rillig if (var == NULL && scope != SCOPE_INTERNAL) {
426 1.801 rillig /* SCOPE_INTERNAL is subordinate to SCOPE_GLOBAL */
427 1.801 rillig var = GNode_FindVar(SCOPE_INTERNAL, name, nameHash);
428 1.703 rillig }
429 1.184 sjg }
430 1.399 rillig
431 1.703 rillig if (var == NULL) {
432 1.916 rillig FStr envName;
433 1.916 rillig const char *envValue;
434 1.703 rillig
435 1.916 rillig envName = Substring_Str(name);
436 1.916 rillig envValue = getenv(envName.str);
437 1.916 rillig if (envValue != NULL)
438 1.978 rillig return VarNew(envName, envValue, true, true, false);
439 1.916 rillig FStr_Done(&envName);
440 1.1 cgd
441 1.802 rillig if (opts.checkEnvFirst && scope != SCOPE_GLOBAL) {
442 1.801 rillig var = GNode_FindVar(SCOPE_GLOBAL, name, nameHash);
443 1.802 rillig if (var == NULL && scope != SCOPE_INTERNAL)
444 1.801 rillig var = GNode_FindVar(SCOPE_INTERNAL, name,
445 1.703 rillig nameHash);
446 1.703 rillig return var;
447 1.703 rillig }
448 1.399 rillig
449 1.703 rillig return NULL;
450 1.1 cgd }
451 1.399 rillig
452 1.703 rillig return var;
453 1.1 cgd }
454 1.1 cgd
455 1.916 rillig /* TODO: Replace these calls with VarFindSubstring, as far as possible. */
456 1.916 rillig static Var *
457 1.916 rillig VarFind(const char *name, GNode *scope, bool elsewhere)
458 1.916 rillig {
459 1.916 rillig return VarFindSubstring(Substring_InitStr(name), scope, elsewhere);
460 1.916 rillig }
461 1.916 rillig
462 1.977 rillig /* If the variable is short-lived, free it, including its value. */
463 1.837 rillig static void
464 1.977 rillig VarFreeShortLived(Var *v)
465 1.105 christos {
466 1.978 rillig if (!v->shortLived)
467 1.837 rillig return;
468 1.605 rillig
469 1.711 rillig FStr_Done(&v->name);
470 1.837 rillig Buf_Done(&v->val);
471 1.703 rillig free(v);
472 1.105 christos }
473 1.105 christos
474 1.831 rillig /* Add a new variable of the given name and value to the given scope. */
475 1.833 rillig static Var *
476 1.831 rillig VarAdd(const char *name, const char *value, GNode *scope, VarSetFlags flags)
477 1.1 cgd {
478 1.802 rillig HashEntry *he = HashTable_CreateEntry(&scope->vars, name, NULL);
479 1.831 rillig Var *v = VarNew(FStr_InitRefer(/* aliased to */ he->key), value,
480 1.978 rillig false, false, (flags & VAR_SET_READONLY) != 0);
481 1.703 rillig HashEntry_Set(he, v);
482 1.911 rillig DEBUG3(VAR, "%s: %s = %s\n", scope->name, name, value);
483 1.833 rillig return v;
484 1.1 cgd }
485 1.1 cgd
486 1.736 rillig /*
487 1.802 rillig * Remove a variable from a scope, freeing all related memory as well.
488 1.736 rillig * The variable name is kept as-is, it is not expanded.
489 1.736 rillig */
490 1.736 rillig void
491 1.805 rillig Var_Delete(GNode *scope, const char *varname)
492 1.736 rillig {
493 1.802 rillig HashEntry *he = HashTable_FindEntry(&scope->vars, varname);
494 1.736 rillig Var *v;
495 1.736 rillig
496 1.736 rillig if (he == NULL) {
497 1.1017 rillig DEBUG2(VAR, "%s: delete %s (not found)\n",
498 1.1017 rillig scope->name, varname);
499 1.736 rillig return;
500 1.736 rillig }
501 1.736 rillig
502 1.1017 rillig DEBUG2(VAR, "%s: delete %s\n", scope->name, varname);
503 1.831 rillig v = he->value;
504 1.963 rillig if (v->inUse) {
505 1.963 rillig Parse_Error(PARSE_FATAL,
506 1.969 rillig "Cannot delete variable \"%s\" while it is used",
507 1.963 rillig v->name.str);
508 1.963 rillig return;
509 1.963 rillig }
510 1.1017 rillig
511 1.902 rillig if (v->exported)
512 1.736 rillig unsetenv(v->name.str);
513 1.736 rillig if (strcmp(v->name.str, MAKE_EXPORTED) == 0)
514 1.736 rillig var_exportedVars = VAR_EXPORTED_NONE;
515 1.1017 rillig
516 1.736 rillig assert(v->name.freeIt == NULL);
517 1.802 rillig HashTable_DeleteEntry(&scope->vars, he);
518 1.784 rillig Buf_Done(&v->val);
519 1.736 rillig free(v);
520 1.736 rillig }
521 1.736 rillig
522 1.778 rillig /*
523 1.762 rillig * Undefine one or more variables from the global scope.
524 1.762 rillig * The argument is expanded exactly once and then split into words.
525 1.737 rillig */
526 1.735 rillig void
527 1.762 rillig Var_Undef(const char *arg)
528 1.735 rillig {
529 1.762 rillig VarParseResult vpr;
530 1.762 rillig char *expanded;
531 1.762 rillig Words varnames;
532 1.762 rillig size_t i;
533 1.762 rillig
534 1.762 rillig if (arg[0] == '\0') {
535 1.762 rillig Parse_Error(PARSE_FATAL,
536 1.762 rillig "The .undef directive requires an argument");
537 1.762 rillig return;
538 1.762 rillig }
539 1.735 rillig
540 1.801 rillig vpr = Var_Subst(arg, SCOPE_GLOBAL, VARE_WANTRES, &expanded);
541 1.762 rillig if (vpr != VPR_OK) {
542 1.737 rillig Parse_Error(PARSE_FATAL,
543 1.762 rillig "Error in variable names to be undefined");
544 1.762 rillig return;
545 1.762 rillig }
546 1.762 rillig
547 1.895 rillig varnames = Str_Words(expanded, false);
548 1.762 rillig if (varnames.len == 1 && varnames.words[0][0] == '\0')
549 1.762 rillig varnames.len = 0;
550 1.762 rillig
551 1.762 rillig for (i = 0; i < varnames.len; i++) {
552 1.762 rillig const char *varname = varnames.words[i];
553 1.804 rillig Global_Delete(varname);
554 1.737 rillig }
555 1.735 rillig
556 1.762 rillig Words_Free(varnames);
557 1.763 rillig free(expanded);
558 1.735 rillig }
559 1.735 rillig
560 1.895 rillig static bool
561 1.598 rillig MayExport(const char *name)
562 1.118 sjg {
563 1.703 rillig if (name[0] == '.')
564 1.895 rillig return false; /* skip internals */
565 1.703 rillig if (name[0] == '-')
566 1.895 rillig return false; /* skip misnamed variables */
567 1.703 rillig if (name[1] == '\0') {
568 1.703 rillig /*
569 1.703 rillig * A single char.
570 1.802 rillig * If it is one of the variables that should only appear in
571 1.802 rillig * local scope, skip it, else we can get Var_Subst
572 1.703 rillig * into a loop.
573 1.703 rillig */
574 1.703 rillig switch (name[0]) {
575 1.703 rillig case '@':
576 1.703 rillig case '%':
577 1.703 rillig case '*':
578 1.703 rillig case '!':
579 1.895 rillig return false;
580 1.703 rillig }
581 1.118 sjg }
582 1.895 rillig return true;
583 1.598 rillig }
584 1.598 rillig
585 1.895 rillig static bool
586 1.776 rillig ExportVarEnv(Var *v)
587 1.776 rillig {
588 1.776 rillig const char *name = v->name.str;
589 1.777 rillig char *val = v->val.data;
590 1.777 rillig char *expr;
591 1.776 rillig
592 1.902 rillig if (v->exported && !v->reexport)
593 1.895 rillig return false; /* nothing to do */
594 1.776 rillig
595 1.777 rillig if (strchr(val, '$') == NULL) {
596 1.902 rillig if (!v->exported)
597 1.776 rillig setenv(name, val, 1);
598 1.895 rillig return true;
599 1.776 rillig }
600 1.776 rillig
601 1.902 rillig if (v->inUse) {
602 1.777 rillig /*
603 1.777 rillig * We recursed while exporting in a child.
604 1.777 rillig * This isn't going to end well, just skip it.
605 1.777 rillig */
606 1.895 rillig return false;
607 1.777 rillig }
608 1.776 rillig
609 1.777 rillig /* XXX: name is injected without escaping it */
610 1.777 rillig expr = str_concat3("${", name, "}");
611 1.801 rillig (void)Var_Subst(expr, SCOPE_GLOBAL, VARE_WANTRES, &val);
612 1.777 rillig /* TODO: handle errors */
613 1.777 rillig setenv(name, val, 1);
614 1.777 rillig free(val);
615 1.777 rillig free(expr);
616 1.895 rillig return true;
617 1.776 rillig }
618 1.776 rillig
619 1.895 rillig static bool
620 1.776 rillig ExportVarPlain(Var *v)
621 1.598 rillig {
622 1.777 rillig if (strchr(v->val.data, '$') == NULL) {
623 1.777 rillig setenv(v->name.str, v->val.data, 1);
624 1.902 rillig v->exported = true;
625 1.902 rillig v->reexport = false;
626 1.895 rillig return true;
627 1.776 rillig }
628 1.776 rillig
629 1.777 rillig /*
630 1.777 rillig * Flag the variable as something we need to re-export.
631 1.777 rillig * No point actually exporting it now though,
632 1.777 rillig * the child process can do it at the last minute.
633 1.830 rillig * Avoid calling setenv more often than necessary since it can leak.
634 1.777 rillig */
635 1.902 rillig v->exported = true;
636 1.902 rillig v->reexport = true;
637 1.895 rillig return true;
638 1.776 rillig }
639 1.401 rillig
640 1.895 rillig static bool
641 1.776 rillig ExportVarLiteral(Var *v)
642 1.776 rillig {
643 1.902 rillig if (v->exported && !v->reexport)
644 1.895 rillig return false;
645 1.401 rillig
646 1.902 rillig if (!v->exported)
647 1.777 rillig setenv(v->name.str, v->val.data, 1);
648 1.605 rillig
649 1.895 rillig return true;
650 1.118 sjg }
651 1.118 sjg
652 1.118 sjg /*
653 1.830 rillig * Mark a single variable to be exported later for subprocesses.
654 1.776 rillig *
655 1.830 rillig * Internal variables (those starting with '.') are not exported.
656 1.776 rillig */
657 1.895 rillig static bool
658 1.776 rillig ExportVar(const char *name, VarExportMode mode)
659 1.776 rillig {
660 1.776 rillig Var *v;
661 1.776 rillig
662 1.776 rillig if (!MayExport(name))
663 1.895 rillig return false;
664 1.776 rillig
665 1.895 rillig v = VarFind(name, SCOPE_GLOBAL, false);
666 1.776 rillig if (v == NULL)
667 1.895 rillig return false;
668 1.776 rillig
669 1.776 rillig if (mode == VEM_ENV)
670 1.776 rillig return ExportVarEnv(v);
671 1.776 rillig else if (mode == VEM_PLAIN)
672 1.776 rillig return ExportVarPlain(v);
673 1.776 rillig else
674 1.776 rillig return ExportVarLiteral(v);
675 1.776 rillig }
676 1.776 rillig
677 1.776 rillig /*
678 1.765 rillig * Actually export the variables that have been marked as needing to be
679 1.765 rillig * re-exported.
680 1.118 sjg */
681 1.118 sjg void
682 1.725 rillig Var_ReexportVars(void)
683 1.118 sjg {
684 1.775 rillig char *xvarnames;
685 1.412 rillig
686 1.703 rillig /*
687 1.703 rillig * Several make implementations support this sort of mechanism for
688 1.703 rillig * tracking recursion - but each uses a different name.
689 1.703 rillig * We allow the makefiles to update MAKELEVEL and ensure
690 1.703 rillig * children see a correctly incremented value.
691 1.703 rillig */
692 1.831 rillig char tmp[21];
693 1.703 rillig snprintf(tmp, sizeof tmp, "%d", makelevel + 1);
694 1.703 rillig setenv(MAKE_LEVEL_ENV, tmp, 1);
695 1.182 christos
696 1.703 rillig if (var_exportedVars == VAR_EXPORTED_NONE)
697 1.703 rillig return;
698 1.118 sjg
699 1.703 rillig if (var_exportedVars == VAR_EXPORTED_ALL) {
700 1.703 rillig HashIter hi;
701 1.575 rillig
702 1.831 rillig /* Ouch! Exporting all variables at once is crazy. */
703 1.801 rillig HashIter_Init(&hi, &SCOPE_GLOBAL->vars);
704 1.703 rillig while (HashIter_Next(&hi) != NULL) {
705 1.703 rillig Var *var = hi.entry->value;
706 1.765 rillig ExportVar(var->name.str, VEM_ENV);
707 1.703 rillig }
708 1.703 rillig return;
709 1.575 rillig }
710 1.369 rillig
711 1.801 rillig (void)Var_Subst("${" MAKE_EXPORTED ":O:u}", SCOPE_GLOBAL, VARE_WANTRES,
712 1.775 rillig &xvarnames);
713 1.703 rillig /* TODO: handle errors */
714 1.775 rillig if (xvarnames[0] != '\0') {
715 1.895 rillig Words varnames = Str_Words(xvarnames, false);
716 1.703 rillig size_t i;
717 1.703 rillig
718 1.775 rillig for (i = 0; i < varnames.len; i++)
719 1.775 rillig ExportVar(varnames.words[i], VEM_ENV);
720 1.775 rillig Words_Free(varnames);
721 1.703 rillig }
722 1.775 rillig free(xvarnames);
723 1.118 sjg }
724 1.118 sjg
725 1.726 rillig static void
726 1.895 rillig ExportVars(const char *varnames, bool isExport, VarExportMode mode)
727 1.831 rillig /* TODO: try to combine the parameters 'isExport' and 'mode'. */
728 1.726 rillig {
729 1.895 rillig Words words = Str_Words(varnames, false);
730 1.727 rillig size_t i;
731 1.727 rillig
732 1.727 rillig if (words.len == 1 && words.words[0][0] == '\0')
733 1.727 rillig words.len = 0;
734 1.727 rillig
735 1.727 rillig for (i = 0; i < words.len; i++) {
736 1.727 rillig const char *varname = words.words[i];
737 1.730 rillig if (!ExportVar(varname, mode))
738 1.727 rillig continue;
739 1.727 rillig
740 1.727 rillig if (var_exportedVars == VAR_EXPORTED_NONE)
741 1.727 rillig var_exportedVars = VAR_EXPORTED_SOME;
742 1.726 rillig
743 1.765 rillig if (isExport && mode == VEM_PLAIN)
744 1.795 rillig Global_Append(MAKE_EXPORTED, varname);
745 1.726 rillig }
746 1.727 rillig Words_Free(words);
747 1.726 rillig }
748 1.726 rillig
749 1.728 rillig static void
750 1.895 rillig ExportVarsExpand(const char *uvarnames, bool isExport, VarExportMode mode)
751 1.728 rillig {
752 1.728 rillig char *xvarnames;
753 1.728 rillig
754 1.801 rillig (void)Var_Subst(uvarnames, SCOPE_GLOBAL, VARE_WANTRES, &xvarnames);
755 1.728 rillig /* TODO: handle errors */
756 1.730 rillig ExportVars(xvarnames, isExport, mode);
757 1.728 rillig free(xvarnames);
758 1.728 rillig }
759 1.728 rillig
760 1.731 rillig /* Export the named variables, or all variables. */
761 1.118 sjg void
762 1.731 rillig Var_Export(VarExportMode mode, const char *varnames)
763 1.118 sjg {
764 1.765 rillig if (mode == VEM_PLAIN && varnames[0] == '\0') {
765 1.703 rillig var_exportedVars = VAR_EXPORTED_ALL; /* use with caution! */
766 1.703 rillig return;
767 1.703 rillig }
768 1.118 sjg
769 1.895 rillig ExportVarsExpand(varnames, true, mode);
770 1.729 rillig }
771 1.729 rillig
772 1.729 rillig void
773 1.729 rillig Var_ExportVars(const char *varnames)
774 1.729 rillig {
775 1.895 rillig ExportVarsExpand(varnames, false, VEM_PLAIN);
776 1.118 sjg }
777 1.118 sjg
778 1.155 sjg
779 1.257 rillig extern char **environ;
780 1.257 rillig
781 1.700 rillig static void
782 1.714 rillig ClearEnv(void)
783 1.701 rillig {
784 1.701 rillig const char *cp;
785 1.701 rillig char **newenv;
786 1.701 rillig
787 1.701 rillig cp = getenv(MAKE_LEVEL_ENV); /* we should preserve this */
788 1.701 rillig if (environ == savedEnv) {
789 1.701 rillig /* we have been here before! */
790 1.701 rillig newenv = bmake_realloc(environ, 2 * sizeof(char *));
791 1.701 rillig } else {
792 1.701 rillig if (savedEnv != NULL) {
793 1.701 rillig free(savedEnv);
794 1.701 rillig savedEnv = NULL;
795 1.701 rillig }
796 1.701 rillig newenv = bmake_malloc(2 * sizeof(char *));
797 1.701 rillig }
798 1.701 rillig
799 1.701 rillig /* Note: we cannot safely free() the original environ. */
800 1.701 rillig environ = savedEnv = newenv;
801 1.701 rillig newenv[0] = NULL;
802 1.701 rillig newenv[1] = NULL;
803 1.780 rillig if (cp != NULL && *cp != '\0')
804 1.701 rillig setenv(MAKE_LEVEL_ENV, cp, 1);
805 1.701 rillig }
806 1.701 rillig
807 1.701 rillig static void
808 1.895 rillig GetVarnamesToUnexport(bool isEnv, const char *arg,
809 1.715 rillig FStr *out_varnames, UnexportWhat *out_what)
810 1.714 rillig {
811 1.714 rillig UnexportWhat what;
812 1.739 rillig FStr varnames = FStr_InitRefer("");
813 1.714 rillig
814 1.732 rillig if (isEnv) {
815 1.732 rillig if (arg[0] != '\0') {
816 1.723 rillig Parse_Error(PARSE_FATAL,
817 1.723 rillig "The directive .unexport-env does not take "
818 1.723 rillig "arguments");
819 1.830 rillig /* continue anyway */
820 1.723 rillig }
821 1.714 rillig what = UNEXPORT_ENV;
822 1.723 rillig
823 1.732 rillig } else {
824 1.732 rillig what = arg[0] != '\0' ? UNEXPORT_NAMED : UNEXPORT_ALL;
825 1.714 rillig if (what == UNEXPORT_NAMED)
826 1.739 rillig varnames = FStr_InitRefer(arg);
827 1.714 rillig }
828 1.714 rillig
829 1.714 rillig if (what != UNEXPORT_NAMED) {
830 1.714 rillig char *expanded;
831 1.714 rillig /* Using .MAKE.EXPORTED */
832 1.801 rillig (void)Var_Subst("${" MAKE_EXPORTED ":O:u}", SCOPE_GLOBAL,
833 1.714 rillig VARE_WANTRES, &expanded);
834 1.714 rillig /* TODO: handle errors */
835 1.739 rillig varnames = FStr_InitOwn(expanded);
836 1.714 rillig }
837 1.714 rillig
838 1.714 rillig *out_varnames = varnames;
839 1.714 rillig *out_what = what;
840 1.714 rillig }
841 1.714 rillig
842 1.714 rillig static void
843 1.959 rillig UnexportVar(Substring varname, UnexportWhat what)
844 1.700 rillig {
845 1.959 rillig Var *v = VarFindSubstring(varname, SCOPE_GLOBAL, false);
846 1.700 rillig if (v == NULL) {
847 1.959 rillig DEBUG2(VAR, "Not unexporting \"%.*s\" (not found)\n",
848 1.959 rillig (int)Substring_Length(varname), varname.start);
849 1.700 rillig return;
850 1.700 rillig }
851 1.700 rillig
852 1.959 rillig DEBUG2(VAR, "Unexporting \"%.*s\"\n",
853 1.959 rillig (int)Substring_Length(varname), varname.start);
854 1.902 rillig if (what != UNEXPORT_ENV && v->exported && !v->reexport)
855 1.711 rillig unsetenv(v->name.str);
856 1.902 rillig v->exported = false;
857 1.902 rillig v->reexport = false;
858 1.700 rillig
859 1.713 rillig if (what == UNEXPORT_NAMED) {
860 1.713 rillig /* Remove the variable names from .MAKE.EXPORTED. */
861 1.700 rillig /* XXX: v->name is injected without escaping it */
862 1.711 rillig char *expr = str_concat3("${" MAKE_EXPORTED ":N",
863 1.711 rillig v->name.str, "}");
864 1.700 rillig char *cp;
865 1.801 rillig (void)Var_Subst(expr, SCOPE_GLOBAL, VARE_WANTRES, &cp);
866 1.700 rillig /* TODO: handle errors */
867 1.792 rillig Global_Set(MAKE_EXPORTED, cp);
868 1.700 rillig free(cp);
869 1.700 rillig free(expr);
870 1.700 rillig }
871 1.700 rillig }
872 1.700 rillig
873 1.716 rillig static void
874 1.716 rillig UnexportVars(FStr *varnames, UnexportWhat what)
875 1.716 rillig {
876 1.716 rillig size_t i;
877 1.959 rillig SubstringWords words;
878 1.717 rillig
879 1.717 rillig if (what == UNEXPORT_ENV)
880 1.717 rillig ClearEnv();
881 1.716 rillig
882 1.959 rillig words = Substring_Words(varnames->str, false);
883 1.959 rillig for (i = 0; i < words.len; i++)
884 1.959 rillig UnexportVar(words.words[i], what);
885 1.959 rillig SubstringWords_Free(words);
886 1.716 rillig
887 1.716 rillig if (what != UNEXPORT_NAMED)
888 1.804 rillig Global_Delete(MAKE_EXPORTED);
889 1.716 rillig }
890 1.716 rillig
891 1.155 sjg /*
892 1.155 sjg * This is called when .unexport[-env] is seen.
893 1.338 rillig *
894 1.338 rillig * str must have the form "unexport[-env] varname...".
895 1.155 sjg */
896 1.155 sjg void
897 1.895 rillig Var_UnExport(bool isEnv, const char *arg)
898 1.155 sjg {
899 1.713 rillig UnexportWhat what;
900 1.714 rillig FStr varnames;
901 1.155 sjg
902 1.732 rillig GetVarnamesToUnexport(isEnv, arg, &varnames, &what);
903 1.716 rillig UnexportVars(&varnames, what);
904 1.712 rillig FStr_Done(&varnames);
905 1.155 sjg }
906 1.155 sjg
907 1.834 rillig /*
908 1.834 rillig * When there is a variable of the same name in the command line scope, the
909 1.834 rillig * global variable would not be visible anywhere. Therefore there is no
910 1.834 rillig * point in setting it at all.
911 1.834 rillig *
912 1.834 rillig * See 'scope == SCOPE_CMDLINE' in Var_SetWithFlags.
913 1.834 rillig */
914 1.895 rillig static bool
915 1.834 rillig ExistsInCmdline(const char *name, const char *val)
916 1.834 rillig {
917 1.834 rillig Var *v;
918 1.834 rillig
919 1.895 rillig v = VarFind(name, SCOPE_CMDLINE, false);
920 1.834 rillig if (v == NULL)
921 1.895 rillig return false;
922 1.834 rillig
923 1.902 rillig if (v->fromCmd) {
924 1.911 rillig DEBUG3(VAR, "%s: %s = %s ignored!\n",
925 1.834 rillig SCOPE_GLOBAL->name, name, val);
926 1.895 rillig return true;
927 1.834 rillig }
928 1.834 rillig
929 1.977 rillig VarFreeShortLived(v);
930 1.895 rillig return false;
931 1.834 rillig }
932 1.834 rillig
933 1.747 rillig /* Set the variable to the value; the name is not expanded. */
934 1.800 rillig void
935 1.805 rillig Var_SetWithFlags(GNode *scope, const char *name, const char *val,
936 1.800 rillig VarSetFlags flags)
937 1.1 cgd {
938 1.704 rillig Var *v;
939 1.142 dsl
940 1.793 rillig assert(val != NULL);
941 1.793 rillig if (name[0] == '\0') {
942 1.793 rillig DEBUG0(VAR, "SetVar: variable name is empty - ignored\n");
943 1.793 rillig return;
944 1.793 rillig }
945 1.793 rillig
946 1.834 rillig if (scope == SCOPE_GLOBAL && ExistsInCmdline(name, val))
947 1.834 rillig return;
948 1.400 rillig
949 1.704 rillig /*
950 1.802 rillig * Only look for a variable in the given scope since anything set
951 1.802 rillig * here will override anything in a lower scope, so there's not much
952 1.830 rillig * point in searching them all.
953 1.704 rillig */
954 1.895 rillig v = VarFind(name, scope, false);
955 1.704 rillig if (v == NULL) {
956 1.802 rillig if (scope == SCOPE_CMDLINE && !(flags & VAR_SET_NO_EXPORT)) {
957 1.704 rillig /*
958 1.704 rillig * This var would normally prevent the same name being
959 1.801 rillig * added to SCOPE_GLOBAL, so delete it from there if
960 1.704 rillig * needed. Otherwise -V name may show the wrong value.
961 1.832 rillig *
962 1.835 rillig * See ExistsInCmdline.
963 1.704 rillig */
964 1.835 rillig Var_Delete(SCOPE_GLOBAL, name);
965 1.704 rillig }
966 1.973 sjg if (strcmp(name, ".SUFFIXES") == 0) {
967 1.973 sjg /* special: treat as readOnly */
968 1.973 sjg DEBUG3(VAR, "%s: %s = %s ignored (read-only)\n",
969 1.973 sjg scope->name, name, val);
970 1.973 sjg return;
971 1.973 sjg }
972 1.833 rillig v = VarAdd(name, val, scope, flags);
973 1.704 rillig } else {
974 1.902 rillig if (v->readOnly && !(flags & VAR_SET_READONLY)) {
975 1.911 rillig DEBUG3(VAR, "%s: %s = %s ignored (read-only)\n",
976 1.802 rillig scope->name, name, val);
977 1.747 rillig return;
978 1.704 rillig }
979 1.998 rillig Buf_Clear(&v->val);
980 1.704 rillig Buf_AddStr(&v->val, val);
981 1.704 rillig
982 1.911 rillig DEBUG3(VAR, "%s: %s = %s\n", scope->name, name, val);
983 1.902 rillig if (v->exported)
984 1.765 rillig ExportVar(name, VEM_PLAIN);
985 1.183 sjg }
986 1.833 rillig
987 1.71 thorpej /*
988 1.704 rillig * Any variables given on the command line are automatically exported
989 1.833 rillig * to the environment (as per POSIX standard), except for internals.
990 1.71 thorpej */
991 1.802 rillig if (scope == SCOPE_CMDLINE && !(flags & VAR_SET_NO_EXPORT) &&
992 1.704 rillig name[0] != '.') {
993 1.902 rillig v->fromCmd = true;
994 1.704 rillig
995 1.704 rillig /*
996 1.704 rillig * If requested, don't export these in the environment
997 1.704 rillig * individually. We still put them in MAKEOVERRIDES so
998 1.704 rillig * that the command-line settings continue to override
999 1.704 rillig * Makefile settings.
1000 1.704 rillig */
1001 1.704 rillig if (!opts.varNoExportEnv)
1002 1.704 rillig setenv(name, val, 1);
1003 1.836 rillig /* XXX: What about .MAKE.EXPORTED? */
1004 1.988 rillig /*
1005 1.988 rillig * XXX: Why not just mark the variable for needing export, as
1006 1.988 rillig * in ExportVarPlain?
1007 1.988 rillig */
1008 1.62 sjg
1009 1.795 rillig Global_Append(MAKEOVERRIDES, name);
1010 1.704 rillig }
1011 1.833 rillig
1012 1.704 rillig if (name[0] == '.' && strcmp(name, MAKE_SAVE_DOLLARS) == 0)
1013 1.704 rillig save_dollars = ParseBoolean(val, save_dollars);
1014 1.205 sjg
1015 1.704 rillig if (v != NULL)
1016 1.977 rillig VarFreeShortLived(v);
1017 1.1 cgd }
1018 1.1 cgd
1019 1.798 rillig void
1020 1.805 rillig Var_Set(GNode *scope, const char *name, const char *val)
1021 1.798 rillig {
1022 1.805 rillig Var_SetWithFlags(scope, name, val, VAR_SET_NONE);
1023 1.798 rillig }
1024 1.798 rillig
1025 1.718 rillig /*
1026 1.802 rillig * Set the variable name to the value val in the given scope.
1027 1.230 rillig *
1028 1.718 rillig * If the variable doesn't yet exist, it is created.
1029 1.718 rillig * Otherwise the new value overwrites and replaces the old value.
1030 1.483 rillig *
1031 1.230 rillig * Input:
1032 1.953 rillig * scope scope in which to set it
1033 1.607 rillig * name name of the variable to set, is expanded once
1034 1.230 rillig * val value to give to the variable
1035 1.230 rillig */
1036 1.230 rillig void
1037 1.805 rillig Var_SetExpand(GNode *scope, const char *name, const char *val)
1038 1.230 rillig {
1039 1.1007 rillig const char *unexpanded_name = name;
1040 1.1007 rillig FStr varname = FStr_InitRefer(name);
1041 1.1007 rillig
1042 1.1007 rillig assert(val != NULL);
1043 1.1007 rillig
1044 1.1007 rillig Var_Expand(&varname, scope, VARE_WANTRES);
1045 1.1007 rillig
1046 1.1007 rillig if (varname.str[0] == '\0') {
1047 1.1007 rillig DEBUG2(VAR,
1048 1.1007 rillig "Var_SetExpand: variable name \"%s\" expands "
1049 1.1007 rillig "to empty string, with value \"%s\" - ignored\n",
1050 1.1007 rillig unexpanded_name, val);
1051 1.1007 rillig } else
1052 1.1007 rillig Var_SetWithFlags(scope, varname.str, val, VAR_SET_NONE);
1053 1.1007 rillig
1054 1.1007 rillig FStr_Done(&varname);
1055 1.230 rillig }
1056 1.230 rillig
1057 1.791 rillig void
1058 1.792 rillig Global_Set(const char *name, const char *value)
1059 1.792 rillig {
1060 1.805 rillig Var_Set(SCOPE_GLOBAL, name, value);
1061 1.792 rillig }
1062 1.792 rillig
1063 1.792 rillig void
1064 1.804 rillig Global_Delete(const char *name)
1065 1.804 rillig {
1066 1.805 rillig Var_Delete(SCOPE_GLOBAL, name);
1067 1.804 rillig }
1068 1.804 rillig
1069 1.718 rillig /*
1070 1.794 rillig * Append the value to the named variable.
1071 1.794 rillig *
1072 1.794 rillig * If the variable doesn't exist, it is created. Otherwise a single space
1073 1.794 rillig * and the given value are appended.
1074 1.794 rillig */
1075 1.794 rillig void
1076 1.805 rillig Var_Append(GNode *scope, const char *name, const char *val)
1077 1.794 rillig {
1078 1.794 rillig Var *v;
1079 1.794 rillig
1080 1.802 rillig v = VarFind(name, scope, scope == SCOPE_GLOBAL);
1081 1.794 rillig
1082 1.794 rillig if (v == NULL) {
1083 1.805 rillig Var_SetWithFlags(scope, name, val, VAR_SET_NONE);
1084 1.902 rillig } else if (v->readOnly) {
1085 1.794 rillig DEBUG1(VAR, "Ignoring append to %s since it is read-only\n",
1086 1.794 rillig name);
1087 1.902 rillig } else if (scope == SCOPE_CMDLINE || !v->fromCmd) {
1088 1.794 rillig Buf_AddByte(&v->val, ' ');
1089 1.794 rillig Buf_AddStr(&v->val, val);
1090 1.794 rillig
1091 1.911 rillig DEBUG3(VAR, "%s: %s = %s\n", scope->name, name, v->val.data);
1092 1.794 rillig
1093 1.978 rillig if (v->fromEnvironment) {
1094 1.1014 rillig /* See VarAdd. */
1095 1.1014 rillig HashEntry *he =
1096 1.1014 rillig HashTable_CreateEntry(&scope->vars, name, NULL);
1097 1.1014 rillig HashEntry_Set(he, v);
1098 1.1014 rillig FStr_Done(&v->name);
1099 1.1014 rillig v->name = FStr_InitRefer(/* aliased to */ he->key);
1100 1.1014 rillig v->shortLived = false;
1101 1.978 rillig v->fromEnvironment = false;
1102 1.794 rillig }
1103 1.794 rillig }
1104 1.794 rillig }
1105 1.794 rillig
1106 1.794 rillig /*
1107 1.718 rillig * The variable of the given name has the given value appended to it in the
1108 1.802 rillig * given scope.
1109 1.1 cgd *
1110 1.718 rillig * If the variable doesn't exist, it is created. Otherwise the strings are
1111 1.718 rillig * concatenated, with a space in between.
1112 1.483 rillig *
1113 1.70 wiz * Input:
1114 1.953 rillig * scope scope in which this should occur
1115 1.607 rillig * name name of the variable to modify, is expanded once
1116 1.400 rillig * val string to append to it
1117 1.70 wiz *
1118 1.1 cgd * Notes:
1119 1.802 rillig * Only if the variable is being sought in the global scope is the
1120 1.1 cgd * environment searched.
1121 1.802 rillig * XXX: Knows its calling circumstances in that if called with scope
1122 1.802 rillig * an actual target, it will only search that scope since only
1123 1.1 cgd * a local variable could be being appended to. This is actually
1124 1.1 cgd * a big win and must be tolerated.
1125 1.1 cgd */
1126 1.1 cgd void
1127 1.805 rillig Var_AppendExpand(GNode *scope, const char *name, const char *val)
1128 1.1 cgd {
1129 1.838 rillig FStr xname = FStr_InitRefer(name);
1130 1.1 cgd
1131 1.704 rillig assert(val != NULL);
1132 1.460 rillig
1133 1.1001 rillig Var_Expand(&xname, scope, VARE_WANTRES);
1134 1.1001 rillig if (xname.str != name && xname.str[0] == '\0')
1135 1.1001 rillig DEBUG2(VAR,
1136 1.1001 rillig "Var_AppendExpand: variable name \"%s\" expands "
1137 1.1001 rillig "to empty string, with value \"%s\" - ignored\n",
1138 1.1001 rillig name, val);
1139 1.1001 rillig else
1140 1.1001 rillig Var_Append(scope, xname.str, val);
1141 1.1 cgd
1142 1.838 rillig FStr_Done(&xname);
1143 1.1 cgd }
1144 1.1 cgd
1145 1.791 rillig void
1146 1.795 rillig Global_Append(const char *name, const char *value)
1147 1.791 rillig {
1148 1.805 rillig Var_Append(SCOPE_GLOBAL, name, value);
1149 1.791 rillig }
1150 1.791 rillig
1151 1.895 rillig bool
1152 1.805 rillig Var_Exists(GNode *scope, const char *name)
1153 1.796 rillig {
1154 1.895 rillig Var *v = VarFind(name, scope, true);
1155 1.796 rillig if (v == NULL)
1156 1.895 rillig return false;
1157 1.796 rillig
1158 1.977 rillig VarFreeShortLived(v);
1159 1.895 rillig return true;
1160 1.796 rillig }
1161 1.796 rillig
1162 1.778 rillig /*
1163 1.802 rillig * See if the given variable exists, in the given scope or in other
1164 1.802 rillig * fallback scopes.
1165 1.1 cgd *
1166 1.70 wiz * Input:
1167 1.953 rillig * scope scope in which to start search
1168 1.953 rillig * name name of the variable to find, is expanded once
1169 1.1 cgd */
1170 1.895 rillig bool
1171 1.805 rillig Var_ExistsExpand(GNode *scope, const char *name)
1172 1.1 cgd {
1173 1.747 rillig FStr varname = FStr_InitRefer(name);
1174 1.895 rillig bool exists;
1175 1.412 rillig
1176 1.1001 rillig Var_Expand(&varname, scope, VARE_WANTRES);
1177 1.805 rillig exists = Var_Exists(scope, varname.str);
1178 1.747 rillig FStr_Done(&varname);
1179 1.796 rillig return exists;
1180 1.1 cgd }
1181 1.1 cgd
1182 1.718 rillig /*
1183 1.802 rillig * Return the unexpanded value of the given variable in the given scope,
1184 1.802 rillig * or the usual scopes.
1185 1.1 cgd *
1186 1.70 wiz * Input:
1187 1.953 rillig * scope scope in which to search for it
1188 1.607 rillig * name name to find, is not expanded any further
1189 1.70 wiz *
1190 1.1 cgd * Results:
1191 1.337 rillig * The value if the variable exists, NULL if it doesn't.
1192 1.830 rillig * The value is valid until the next modification to any variable.
1193 1.1 cgd */
1194 1.745 rillig FStr
1195 1.805 rillig Var_Value(GNode *scope, const char *name)
1196 1.1 cgd {
1197 1.895 rillig Var *v = VarFind(name, scope, true);
1198 1.703 rillig char *value;
1199 1.703 rillig
1200 1.703 rillig if (v == NULL)
1201 1.745 rillig return FStr_InitRefer(NULL);
1202 1.412 rillig
1203 1.978 rillig if (!v->shortLived)
1204 1.837 rillig return FStr_InitRefer(v->val.data);
1205 1.837 rillig
1206 1.978 rillig value = v->val.data;
1207 1.978 rillig v->val.data = NULL;
1208 1.978 rillig VarFreeShortLived(v);
1209 1.978 rillig
1210 1.837 rillig return FStr_InitOwn(value);
1211 1.1 cgd }
1212 1.1 cgd
1213 1.778 rillig /*
1214 1.778 rillig * Return the unexpanded variable value from this node, without trying to look
1215 1.802 rillig * up the variable in any other scope.
1216 1.778 rillig */
1217 1.616 rillig const char *
1218 1.803 rillig GNode_ValueDirect(GNode *gn, const char *name)
1219 1.616 rillig {
1220 1.895 rillig Var *v = VarFind(name, gn, false);
1221 1.785 rillig return v != NULL ? v->val.data : NULL;
1222 1.616 rillig }
1223 1.616 rillig
1224 1.906 rillig static VarEvalMode
1225 1.906 rillig VarEvalMode_WithoutKeepDollar(VarEvalMode emode)
1226 1.906 rillig {
1227 1.906 rillig if (emode == VARE_KEEP_DOLLAR_UNDEF)
1228 1.906 rillig return VARE_EVAL_KEEP_UNDEF;
1229 1.906 rillig if (emode == VARE_EVAL_KEEP_DOLLAR)
1230 1.906 rillig return VARE_WANTRES;
1231 1.906 rillig return emode;
1232 1.906 rillig }
1233 1.906 rillig
1234 1.906 rillig static VarEvalMode
1235 1.906 rillig VarEvalMode_UndefOk(VarEvalMode emode)
1236 1.906 rillig {
1237 1.906 rillig return emode == VARE_UNDEFERR ? VARE_WANTRES : emode;
1238 1.906 rillig }
1239 1.244 rillig
1240 1.905 rillig static bool
1241 1.906 rillig VarEvalMode_ShouldEval(VarEvalMode emode)
1242 1.905 rillig {
1243 1.906 rillig return emode != VARE_PARSE_ONLY;
1244 1.906 rillig }
1245 1.906 rillig
1246 1.906 rillig static bool
1247 1.906 rillig VarEvalMode_ShouldKeepUndef(VarEvalMode emode)
1248 1.906 rillig {
1249 1.906 rillig return emode == VARE_EVAL_KEEP_UNDEF ||
1250 1.906 rillig emode == VARE_KEEP_DOLLAR_UNDEF;
1251 1.906 rillig }
1252 1.906 rillig
1253 1.906 rillig static bool
1254 1.906 rillig VarEvalMode_ShouldKeepDollar(VarEvalMode emode)
1255 1.906 rillig {
1256 1.906 rillig return emode == VARE_EVAL_KEEP_DOLLAR ||
1257 1.906 rillig emode == VARE_KEEP_DOLLAR_UNDEF;
1258 1.905 rillig }
1259 1.905 rillig
1260 1.905 rillig
1261 1.278 rillig static void
1262 1.278 rillig SepBuf_Init(SepBuf *buf, char sep)
1263 1.278 rillig {
1264 1.703 rillig Buf_InitSize(&buf->buf, 32);
1265 1.895 rillig buf->needSep = false;
1266 1.703 rillig buf->sep = sep;
1267 1.278 rillig }
1268 1.278 rillig
1269 1.278 rillig static void
1270 1.278 rillig SepBuf_Sep(SepBuf *buf)
1271 1.278 rillig {
1272 1.895 rillig buf->needSep = true;
1273 1.278 rillig }
1274 1.278 rillig
1275 1.278 rillig static void
1276 1.314 rillig SepBuf_AddBytes(SepBuf *buf, const char *mem, size_t mem_size)
1277 1.278 rillig {
1278 1.703 rillig if (mem_size == 0)
1279 1.703 rillig return;
1280 1.703 rillig if (buf->needSep && buf->sep != '\0') {
1281 1.703 rillig Buf_AddByte(&buf->buf, buf->sep);
1282 1.895 rillig buf->needSep = false;
1283 1.703 rillig }
1284 1.703 rillig Buf_AddBytes(&buf->buf, mem, mem_size);
1285 1.278 rillig }
1286 1.278 rillig
1287 1.314 rillig static void
1288 1.314 rillig SepBuf_AddBytesBetween(SepBuf *buf, const char *start, const char *end)
1289 1.314 rillig {
1290 1.703 rillig SepBuf_AddBytes(buf, start, (size_t)(end - start));
1291 1.314 rillig }
1292 1.314 rillig
1293 1.314 rillig static void
1294 1.314 rillig SepBuf_AddStr(SepBuf *buf, const char *str)
1295 1.314 rillig {
1296 1.703 rillig SepBuf_AddBytes(buf, str, strlen(str));
1297 1.314 rillig }
1298 1.314 rillig
1299 1.919 rillig static void
1300 1.919 rillig SepBuf_AddSubstring(SepBuf *buf, Substring sub)
1301 1.919 rillig {
1302 1.919 rillig SepBuf_AddBytesBetween(buf, sub.start, sub.end);
1303 1.919 rillig }
1304 1.919 rillig
1305 1.278 rillig static char *
1306 1.784 rillig SepBuf_DoneData(SepBuf *buf)
1307 1.278 rillig {
1308 1.784 rillig return Buf_DoneData(&buf->buf);
1309 1.278 rillig }
1310 1.278 rillig
1311 1.278 rillig
1312 1.778 rillig /*
1313 1.778 rillig * This callback for ModifyWords gets a single word from a variable expression
1314 1.609 rillig * and typically adds a modification of this word to the buffer. It may also
1315 1.609 rillig * do nothing or add several words.
1316 1.609 rillig *
1317 1.822 rillig * For example, when evaluating the modifier ':M*b' in ${:Ua b c:M*b}, the
1318 1.822 rillig * callback is called 3 times, once for "a", "b" and "c".
1319 1.919 rillig *
1320 1.919 rillig * Some ModifyWord functions assume that they are always passed a
1321 1.919 rillig * null-terminated substring, which is currently guaranteed but may change in
1322 1.919 rillig * the future.
1323 1.778 rillig */
1324 1.919 rillig typedef void (*ModifyWordProc)(Substring word, SepBuf *buf, void *data);
1325 1.244 rillig
1326 1.244 rillig
1327 1.778 rillig /*
1328 1.778 rillig * Callback for ModifyWords to implement the :H modifier.
1329 1.778 rillig * Add the dirname of the given word to the buffer.
1330 1.778 rillig */
1331 1.779 rillig /*ARGSUSED*/
1332 1.278 rillig static void
1333 1.919 rillig ModifyWord_Head(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1334 1.1 cgd {
1335 1.919 rillig SepBuf_AddSubstring(buf, Substring_Dirname(word));
1336 1.1 cgd }
1337 1.1 cgd
1338 1.778 rillig /*
1339 1.778 rillig * Callback for ModifyWords to implement the :T modifier.
1340 1.778 rillig * Add the basename of the given word to the buffer.
1341 1.778 rillig */
1342 1.779 rillig /*ARGSUSED*/
1343 1.278 rillig static void
1344 1.919 rillig ModifyWord_Tail(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1345 1.1 cgd {
1346 1.919 rillig SepBuf_AddSubstring(buf, Substring_Basename(word));
1347 1.1 cgd }
1348 1.1 cgd
1349 1.778 rillig /*
1350 1.778 rillig * Callback for ModifyWords to implement the :E modifier.
1351 1.778 rillig * Add the filename suffix of the given word to the buffer, if it exists.
1352 1.778 rillig */
1353 1.779 rillig /*ARGSUSED*/
1354 1.278 rillig static void
1355 1.919 rillig ModifyWord_Suffix(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1356 1.1 cgd {
1357 1.919 rillig const char *lastDot = Substring_LastIndex(word, '.');
1358 1.703 rillig if (lastDot != NULL)
1359 1.919 rillig SepBuf_AddBytesBetween(buf, lastDot + 1, word.end);
1360 1.1 cgd }
1361 1.1 cgd
1362 1.778 rillig /*
1363 1.778 rillig * Callback for ModifyWords to implement the :R modifier.
1364 1.830 rillig * Add the filename without extension of the given word to the buffer.
1365 1.778 rillig */
1366 1.779 rillig /*ARGSUSED*/
1367 1.278 rillig static void
1368 1.919 rillig ModifyWord_Root(Substring word, SepBuf *buf, void *dummy MAKE_ATTR_UNUSED)
1369 1.1 cgd {
1370 1.919 rillig const char *lastDot, *end;
1371 1.919 rillig
1372 1.919 rillig lastDot = Substring_LastIndex(word, '.');
1373 1.919 rillig end = lastDot != NULL ? lastDot : word.end;
1374 1.919 rillig SepBuf_AddBytesBetween(buf, word.start, end);
1375 1.1 cgd }
1376 1.1 cgd
1377 1.778 rillig /*
1378 1.778 rillig * Callback for ModifyWords to implement the :M modifier.
1379 1.778 rillig * Place the word in the buffer if it matches the given pattern.
1380 1.778 rillig */
1381 1.278 rillig static void
1382 1.919 rillig ModifyWord_Match(Substring word, SepBuf *buf, void *data)
1383 1.1 cgd {
1384 1.703 rillig const char *pattern = data;
1385 1.908 rillig
1386 1.919 rillig assert(word.end[0] == '\0'); /* assume null-terminated word */
1387 1.919 rillig if (Str_Match(word.start, pattern))
1388 1.919 rillig SepBuf_AddSubstring(buf, word);
1389 1.1 cgd }
1390 1.1 cgd
1391 1.778 rillig /*
1392 1.778 rillig * Callback for ModifyWords to implement the :N modifier.
1393 1.778 rillig * Place the word in the buffer if it doesn't match the given pattern.
1394 1.778 rillig */
1395 1.291 rillig static void
1396 1.919 rillig ModifyWord_NoMatch(Substring word, SepBuf *buf, void *data)
1397 1.291 rillig {
1398 1.703 rillig const char *pattern = data;
1399 1.908 rillig
1400 1.919 rillig assert(word.end[0] == '\0'); /* assume null-terminated word */
1401 1.919 rillig if (!Str_Match(word.start, pattern))
1402 1.919 rillig SepBuf_AddSubstring(buf, word);
1403 1.291 rillig }
1404 1.291 rillig
1405 1.13 christos #ifdef SYSVVARSUB
1406 1.926 rillig struct ModifyWord_SysVSubstArgs {
1407 1.806 rillig GNode *scope;
1408 1.925 rillig Substring lhsPrefix;
1409 1.925 rillig bool lhsPercent;
1410 1.925 rillig Substring lhsSuffix;
1411 1.703 rillig const char *rhs;
1412 1.541 rillig };
1413 1.276 rillig
1414 1.291 rillig /* Callback for ModifyWords to implement the :%.from=%.to modifier. */
1415 1.278 rillig static void
1416 1.926 rillig ModifyWord_SysVSubst(Substring word, SepBuf *buf, void *data)
1417 1.5 cgd {
1418 1.926 rillig const struct ModifyWord_SysVSubstArgs *args = data;
1419 1.925 rillig FStr rhs;
1420 1.703 rillig const char *percent;
1421 1.919 rillig
1422 1.925 rillig if (Substring_IsEmpty(word))
1423 1.703 rillig return;
1424 1.925 rillig
1425 1.1011 rillig if (!Substring_HasPrefix(word, args->lhsPrefix) ||
1426 1.1011 rillig !Substring_HasSuffix(word, args->lhsSuffix)) {
1427 1.1011 rillig SepBuf_AddSubstring(buf, word);
1428 1.1011 rillig return;
1429 1.1011 rillig }
1430 1.925 rillig
1431 1.925 rillig rhs = FStr_InitRefer(args->rhs);
1432 1.1001 rillig Var_Expand(&rhs, args->scope, VARE_WANTRES);
1433 1.379 rillig
1434 1.925 rillig percent = args->lhsPercent ? strchr(rhs.str, '%') : NULL;
1435 1.379 rillig
1436 1.925 rillig if (percent != NULL)
1437 1.925 rillig SepBuf_AddBytesBetween(buf, rhs.str, percent);
1438 1.925 rillig if (percent != NULL || !args->lhsPercent)
1439 1.925 rillig SepBuf_AddBytesBetween(buf,
1440 1.925 rillig word.start + Substring_Length(args->lhsPrefix),
1441 1.925 rillig word.end - Substring_Length(args->lhsSuffix));
1442 1.925 rillig SepBuf_AddStr(buf, percent != NULL ? percent + 1 : rhs.str);
1443 1.379 rillig
1444 1.925 rillig FStr_Done(&rhs);
1445 1.5 cgd }
1446 1.13 christos #endif
1447 1.5 cgd
1448 1.1 cgd
1449 1.541 rillig struct ModifyWord_SubstArgs {
1450 1.918 rillig Substring lhs;
1451 1.918 rillig Substring rhs;
1452 1.927 rillig PatternFlags pflags;
1453 1.895 rillig bool matched;
1454 1.541 rillig };
1455 1.291 rillig
1456 1.918 rillig static const char *
1457 1.918 rillig Substring_Find(Substring haystack, Substring needle)
1458 1.918 rillig {
1459 1.918 rillig size_t len, needleLen, i;
1460 1.918 rillig
1461 1.918 rillig len = Substring_Length(haystack);
1462 1.918 rillig needleLen = Substring_Length(needle);
1463 1.918 rillig for (i = 0; i + needleLen <= len; i++)
1464 1.918 rillig if (memcmp(haystack.start + i, needle.start, needleLen) == 0)
1465 1.918 rillig return haystack.start + i;
1466 1.918 rillig return NULL;
1467 1.918 rillig }
1468 1.918 rillig
1469 1.778 rillig /*
1470 1.778 rillig * Callback for ModifyWords to implement the :S,from,to, modifier.
1471 1.778 rillig * Perform a string substitution on the given word.
1472 1.778 rillig */
1473 1.278 rillig static void
1474 1.919 rillig ModifyWord_Subst(Substring word, SepBuf *buf, void *data)
1475 1.1 cgd {
1476 1.703 rillig struct ModifyWord_SubstArgs *args = data;
1477 1.918 rillig size_t wordLen, lhsLen;
1478 1.918 rillig const char *wordEnd, *match;
1479 1.703 rillig
1480 1.919 rillig wordLen = Substring_Length(word);
1481 1.919 rillig wordEnd = word.end;
1482 1.788 rillig if (args->pflags.subOnce && args->matched)
1483 1.703 rillig goto nosub;
1484 1.703 rillig
1485 1.918 rillig lhsLen = Substring_Length(args->lhs);
1486 1.788 rillig if (args->pflags.anchorStart) {
1487 1.918 rillig if (wordLen < lhsLen ||
1488 1.919 rillig memcmp(word.start, args->lhs.start, lhsLen) != 0)
1489 1.703 rillig goto nosub;
1490 1.703 rillig
1491 1.918 rillig if (args->pflags.anchorEnd && wordLen != lhsLen)
1492 1.703 rillig goto nosub;
1493 1.703 rillig
1494 1.703 rillig /* :S,^prefix,replacement, or :S,^whole$,replacement, */
1495 1.919 rillig SepBuf_AddSubstring(buf, args->rhs);
1496 1.919 rillig SepBuf_AddBytesBetween(buf, word.start + lhsLen, wordEnd);
1497 1.895 rillig args->matched = true;
1498 1.703 rillig return;
1499 1.703 rillig }
1500 1.1 cgd
1501 1.788 rillig if (args->pflags.anchorEnd) {
1502 1.918 rillig if (wordLen < lhsLen)
1503 1.703 rillig goto nosub;
1504 1.918 rillig if (memcmp(wordEnd - lhsLen, args->lhs.start, lhsLen) != 0)
1505 1.703 rillig goto nosub;
1506 1.703 rillig
1507 1.703 rillig /* :S,suffix$,replacement, */
1508 1.919 rillig SepBuf_AddBytesBetween(buf, word.start, wordEnd - lhsLen);
1509 1.919 rillig SepBuf_AddSubstring(buf, args->rhs);
1510 1.895 rillig args->matched = true;
1511 1.703 rillig return;
1512 1.703 rillig }
1513 1.315 rillig
1514 1.921 rillig if (Substring_IsEmpty(args->lhs))
1515 1.703 rillig goto nosub;
1516 1.279 rillig
1517 1.703 rillig /* unanchored case, may match more than once */
1518 1.919 rillig while ((match = Substring_Find(word, args->lhs)) != NULL) {
1519 1.919 rillig SepBuf_AddBytesBetween(buf, word.start, match);
1520 1.919 rillig SepBuf_AddSubstring(buf, args->rhs);
1521 1.895 rillig args->matched = true;
1522 1.921 rillig word.start = match + lhsLen;
1523 1.919 rillig if (Substring_IsEmpty(word) || !args->pflags.subGlobal)
1524 1.703 rillig break;
1525 1.703 rillig }
1526 1.242 rillig nosub:
1527 1.919 rillig SepBuf_AddSubstring(buf, word);
1528 1.1 cgd }
1529 1.1 cgd
1530 1.31 gwr #ifndef NO_REGEX
1531 1.400 rillig /* Print the error caused by a regcomp or regexec call. */
1532 1.16 christos static void
1533 1.672 rillig VarREError(int reerr, const regex_t *pat, const char *str)
1534 1.16 christos {
1535 1.703 rillig size_t errlen = regerror(reerr, pat, NULL, 0);
1536 1.703 rillig char *errbuf = bmake_malloc(errlen);
1537 1.703 rillig regerror(reerr, pat, errbuf, errlen);
1538 1.703 rillig Error("%s: %s", str, errbuf);
1539 1.703 rillig free(errbuf);
1540 1.16 christos }
1541 1.16 christos
1542 1.981 rillig /* In the modifier ':C', replace a backreference from \0 to \9. */
1543 1.981 rillig static void
1544 1.981 rillig RegexReplaceBackref(char ref, SepBuf *buf, const char *wp,
1545 1.981 rillig const regmatch_t *m, size_t nsub)
1546 1.981 rillig {
1547 1.981 rillig unsigned int n = ref - '0';
1548 1.981 rillig
1549 1.981 rillig if (n >= nsub)
1550 1.981 rillig Error("No subexpression \\%u", n);
1551 1.981 rillig else if (m[n].rm_so == -1) {
1552 1.981 rillig if (opts.strict)
1553 1.981 rillig Error("No match for subexpression \\%u", n);
1554 1.981 rillig } else {
1555 1.981 rillig SepBuf_AddBytesBetween(buf,
1556 1.981 rillig wp + (size_t)m[n].rm_so,
1557 1.981 rillig wp + (size_t)m[n].rm_eo);
1558 1.981 rillig }
1559 1.981 rillig }
1560 1.981 rillig
1561 1.937 rillig /*
1562 1.983 rillig * The regular expression matches the word; now add the replacement to the
1563 1.983 rillig * buffer, taking back-references from 'wp'.
1564 1.937 rillig */
1565 1.937 rillig static void
1566 1.984 rillig RegexReplace(Substring replace, SepBuf *buf, const char *wp,
1567 1.937 rillig const regmatch_t *m, size_t nsub)
1568 1.937 rillig {
1569 1.937 rillig const char *rp;
1570 1.937 rillig
1571 1.984 rillig for (rp = replace.start; rp != replace.end; rp++) {
1572 1.984 rillig if (*rp == '\\' && rp + 1 != replace.end &&
1573 1.984 rillig (rp[1] == '&' || rp[1] == '\\'))
1574 1.983 rillig SepBuf_AddBytes(buf, ++rp, 1);
1575 1.984 rillig else if (*rp == '\\' && rp + 1 != replace.end &&
1576 1.984 rillig ch_isdigit(rp[1]))
1577 1.983 rillig RegexReplaceBackref(*++rp, buf, wp, m, nsub);
1578 1.983 rillig else if (*rp == '&') {
1579 1.937 rillig SepBuf_AddBytesBetween(buf,
1580 1.948 rillig wp + (size_t)m[0].rm_so,
1581 1.948 rillig wp + (size_t)m[0].rm_eo);
1582 1.983 rillig } else
1583 1.937 rillig SepBuf_AddBytes(buf, rp, 1);
1584 1.937 rillig }
1585 1.937 rillig }
1586 1.937 rillig
1587 1.541 rillig struct ModifyWord_SubstRegexArgs {
1588 1.703 rillig regex_t re;
1589 1.703 rillig size_t nsub;
1590 1.984 rillig Substring replace;
1591 1.927 rillig PatternFlags pflags;
1592 1.895 rillig bool matched;
1593 1.541 rillig };
1594 1.291 rillig
1595 1.778 rillig /*
1596 1.778 rillig * Callback for ModifyWords to implement the :C/from/to/ modifier.
1597 1.778 rillig * Perform a regex substitution on the given word.
1598 1.778 rillig */
1599 1.278 rillig static void
1600 1.919 rillig ModifyWord_SubstRegex(Substring word, SepBuf *buf, void *data)
1601 1.16 christos {
1602 1.704 rillig struct ModifyWord_SubstRegexArgs *args = data;
1603 1.704 rillig int xrv;
1604 1.919 rillig const char *wp;
1605 1.704 rillig int flags = 0;
1606 1.704 rillig regmatch_t m[10];
1607 1.16 christos
1608 1.919 rillig assert(word.end[0] == '\0'); /* assume null-terminated word */
1609 1.919 rillig wp = word.start;
1610 1.936 rillig if (args->pflags.subOnce && args->matched)
1611 1.936 rillig goto no_match;
1612 1.307 rillig
1613 1.935 rillig again:
1614 1.704 rillig xrv = regexec(&args->re, wp, args->nsub, m, flags);
1615 1.935 rillig if (xrv == 0)
1616 1.935 rillig goto ok;
1617 1.935 rillig if (xrv != REG_NOMATCH)
1618 1.935 rillig VarREError(xrv, &args->re, "Unexpected regex error");
1619 1.936 rillig no_match:
1620 1.982 rillig SepBuf_AddBytesBetween(buf, wp, word.end);
1621 1.936 rillig return;
1622 1.16 christos
1623 1.935 rillig ok:
1624 1.935 rillig args->matched = true;
1625 1.935 rillig SepBuf_AddBytes(buf, wp, (size_t)m[0].rm_so);
1626 1.704 rillig
1627 1.937 rillig RegexReplace(args->replace, buf, wp, m, args->nsub);
1628 1.445 rillig
1629 1.948 rillig wp += (size_t)m[0].rm_eo;
1630 1.935 rillig if (args->pflags.subGlobal) {
1631 1.935 rillig flags |= REG_NOTBOL;
1632 1.935 rillig if (m[0].rm_so == 0 && m[0].rm_eo == 0) {
1633 1.935 rillig SepBuf_AddBytes(buf, wp, 1);
1634 1.935 rillig wp++;
1635 1.704 rillig }
1636 1.704 rillig if (*wp != '\0')
1637 1.935 rillig goto again;
1638 1.935 rillig }
1639 1.935 rillig if (*wp != '\0')
1640 1.704 rillig SepBuf_AddStr(buf, wp);
1641 1.16 christos }
1642 1.17 christos #endif
1643 1.16 christos
1644 1.16 christos
1645 1.541 rillig struct ModifyWord_LoopArgs {
1646 1.806 rillig GNode *scope;
1647 1.928 rillig const char *var; /* name of the temporary variable */
1648 1.928 rillig const char *body; /* string to expand */
1649 1.906 rillig VarEvalMode emode;
1650 1.541 rillig };
1651 1.291 rillig
1652 1.291 rillig /* Callback for ModifyWords to implement the :@var (at) ...@ modifier of ODE make. */
1653 1.278 rillig static void
1654 1.919 rillig ModifyWord_Loop(Substring word, SepBuf *buf, void *data)
1655 1.40 sjg {
1656 1.703 rillig const struct ModifyWord_LoopArgs *args;
1657 1.703 rillig char *s;
1658 1.412 rillig
1659 1.919 rillig if (Substring_IsEmpty(word))
1660 1.703 rillig return;
1661 1.278 rillig
1662 1.703 rillig args = data;
1663 1.919 rillig assert(word.end[0] == '\0'); /* assume null-terminated word */
1664 1.928 rillig Var_SetWithFlags(args->scope, args->var, word.start,
1665 1.919 rillig VAR_SET_NO_EXPORT);
1666 1.928 rillig (void)Var_Subst(args->body, args->scope, args->emode, &s);
1667 1.703 rillig /* TODO: handle errors */
1668 1.64 sjg
1669 1.919 rillig assert(word.end[0] == '\0'); /* assume null-terminated word */
1670 1.708 rillig DEBUG4(VAR, "ModifyWord_Loop: "
1671 1.708 rillig "in \"%s\", replace \"%s\" with \"%s\" to \"%s\"\n",
1672 1.928 rillig word.start, args->var, args->body, s);
1673 1.703 rillig
1674 1.703 rillig if (s[0] == '\n' || Buf_EndsWith(&buf->buf, '\n'))
1675 1.895 rillig buf->needSep = false;
1676 1.703 rillig SepBuf_AddStr(buf, s);
1677 1.703 rillig free(s);
1678 1.40 sjg }
1679 1.40 sjg
1680 1.81 sjg
1681 1.778 rillig /*
1682 1.778 rillig * The :[first..last] modifier selects words from the expression.
1683 1.778 rillig * It can also reverse the words.
1684 1.778 rillig */
1685 1.81 sjg static char *
1686 1.840 rillig VarSelectWords(const char *str, int first, int last,
1687 1.895 rillig char sep, bool oneBigWord)
1688 1.81 sjg {
1689 1.960 rillig SubstringWords words;
1690 1.703 rillig int len, start, end, step;
1691 1.703 rillig int i;
1692 1.703 rillig
1693 1.703 rillig SepBuf buf;
1694 1.703 rillig SepBuf_Init(&buf, sep);
1695 1.703 rillig
1696 1.703 rillig if (oneBigWord) {
1697 1.960 rillig /* fake what Substring_Words() would do */
1698 1.703 rillig words.len = 1;
1699 1.960 rillig words.words = bmake_malloc(sizeof(words.words[0]));
1700 1.960 rillig words.freeIt = NULL;
1701 1.960 rillig words.words[0] = Substring_InitStr(str); /* no need to copy */
1702 1.703 rillig } else {
1703 1.960 rillig words = Substring_Words(str, false);
1704 1.703 rillig }
1705 1.81 sjg
1706 1.703 rillig /*
1707 1.703 rillig * Now sanitize the given range. If first or last are negative,
1708 1.703 rillig * convert them to the positive equivalents (-1 gets converted to len,
1709 1.703 rillig * -2 gets converted to (len - 1), etc.).
1710 1.703 rillig */
1711 1.703 rillig len = (int)words.len;
1712 1.703 rillig if (first < 0)
1713 1.703 rillig first += len + 1;
1714 1.703 rillig if (last < 0)
1715 1.703 rillig last += len + 1;
1716 1.703 rillig
1717 1.703 rillig /* We avoid scanning more of the list than we need to. */
1718 1.703 rillig if (first > last) {
1719 1.703 rillig start = (first > len ? len : first) - 1;
1720 1.703 rillig end = last < 1 ? 0 : last - 1;
1721 1.703 rillig step = -1;
1722 1.703 rillig } else {
1723 1.703 rillig start = first < 1 ? 0 : first - 1;
1724 1.703 rillig end = last > len ? len : last;
1725 1.703 rillig step = 1;
1726 1.703 rillig }
1727 1.81 sjg
1728 1.703 rillig for (i = start; (step < 0) == (i >= end); i += step) {
1729 1.960 rillig SepBuf_AddSubstring(&buf, words.words[i]);
1730 1.703 rillig SepBuf_Sep(&buf);
1731 1.703 rillig }
1732 1.81 sjg
1733 1.960 rillig SubstringWords_Free(words);
1734 1.81 sjg
1735 1.784 rillig return SepBuf_DoneData(&buf);
1736 1.81 sjg }
1737 1.81 sjg
1738 1.156 sjg
1739 1.778 rillig /*
1740 1.778 rillig * Callback for ModifyWords to implement the :tA modifier.
1741 1.778 rillig * Replace each word with the result of realpath() if successful.
1742 1.778 rillig */
1743 1.779 rillig /*ARGSUSED*/
1744 1.278 rillig static void
1745 1.919 rillig ModifyWord_Realpath(Substring word, SepBuf *buf, void *data MAKE_ATTR_UNUSED)
1746 1.156 sjg {
1747 1.703 rillig struct stat st;
1748 1.703 rillig char rbuf[MAXPATHLEN];
1749 1.919 rillig const char *rp;
1750 1.231 rillig
1751 1.919 rillig assert(word.end[0] == '\0'); /* assume null-terminated word */
1752 1.919 rillig rp = cached_realpath(word.start, rbuf);
1753 1.703 rillig if (rp != NULL && *rp == '/' && stat(rp, &st) == 0)
1754 1.919 rillig SepBuf_AddStr(buf, rp);
1755 1.919 rillig else
1756 1.919 rillig SepBuf_AddSubstring(buf, word);
1757 1.156 sjg }
1758 1.156 sjg
1759 1.35 christos
1760 1.403 rillig static char *
1761 1.962 rillig SubstringWords_JoinFree(SubstringWords words)
1762 1.403 rillig {
1763 1.703 rillig Buffer buf;
1764 1.703 rillig size_t i;
1765 1.412 rillig
1766 1.703 rillig Buf_Init(&buf);
1767 1.403 rillig
1768 1.703 rillig for (i = 0; i < words.len; i++) {
1769 1.703 rillig if (i != 0) {
1770 1.988 rillig /*
1771 1.988 rillig * XXX: Use ch->sep instead of ' ', for consistency.
1772 1.988 rillig */
1773 1.703 rillig Buf_AddByte(&buf, ' ');
1774 1.703 rillig }
1775 1.962 rillig Buf_AddBytesBetween(&buf,
1776 1.962 rillig words.words[i].start, words.words[i].end);
1777 1.703 rillig }
1778 1.403 rillig
1779 1.962 rillig SubstringWords_Free(words);
1780 1.403 rillig
1781 1.784 rillig return Buf_DoneData(&buf);
1782 1.403 rillig }
1783 1.403 rillig
1784 1.55 christos
1785 1.778 rillig /*
1786 1.778 rillig * Quote shell meta-characters and space characters in the string.
1787 1.778 rillig * If quoteDollar is set, also quote and double any '$' characters.
1788 1.778 rillig */
1789 1.924 rillig static void
1790 1.924 rillig VarQuote(const char *str, bool quoteDollar, LazyBuf *buf)
1791 1.16 christos {
1792 1.924 rillig const char *p;
1793 1.193 christos
1794 1.924 rillig LazyBuf_Init(buf, str);
1795 1.924 rillig for (p = str; *p != '\0'; p++) {
1796 1.924 rillig if (*p == '\n') {
1797 1.703 rillig const char *newline = Shell_GetNewline();
1798 1.703 rillig if (newline == NULL)
1799 1.703 rillig newline = "\\\n";
1800 1.924 rillig LazyBuf_AddStr(buf, newline);
1801 1.703 rillig continue;
1802 1.703 rillig }
1803 1.997 rillig if (ch_isspace(*p) || ch_is_shell_meta(*p))
1804 1.924 rillig LazyBuf_Add(buf, '\\');
1805 1.924 rillig LazyBuf_Add(buf, *p);
1806 1.924 rillig if (quoteDollar && *p == '$')
1807 1.924 rillig LazyBuf_AddStr(buf, "\\$");
1808 1.193 christos }
1809 1.16 christos }
1810 1.16 christos
1811 1.778 rillig /*
1812 1.778 rillig * Compute the 32-bit hash of the given string, using the MurmurHash3
1813 1.778 rillig * algorithm. Output is encoded as 8 hex digits, in Little Endian order.
1814 1.778 rillig */
1815 1.163 joerg static char *
1816 1.252 rillig VarHash(const char *str)
1817 1.163 joerg {
1818 1.703 rillig static const char hexdigits[16] = "0123456789abcdef";
1819 1.703 rillig const unsigned char *ustr = (const unsigned char *)str;
1820 1.703 rillig
1821 1.703 rillig uint32_t h = 0x971e137bU;
1822 1.703 rillig uint32_t c1 = 0x95543787U;
1823 1.703 rillig uint32_t c2 = 0x2ad7eb25U;
1824 1.703 rillig size_t len2 = strlen(str);
1825 1.163 joerg
1826 1.703 rillig char *buf;
1827 1.703 rillig size_t i;
1828 1.703 rillig
1829 1.703 rillig size_t len;
1830 1.781 rillig for (len = len2; len != 0;) {
1831 1.703 rillig uint32_t k = 0;
1832 1.703 rillig switch (len) {
1833 1.703 rillig default:
1834 1.703 rillig k = ((uint32_t)ustr[3] << 24) |
1835 1.703 rillig ((uint32_t)ustr[2] << 16) |
1836 1.703 rillig ((uint32_t)ustr[1] << 8) |
1837 1.703 rillig (uint32_t)ustr[0];
1838 1.703 rillig len -= 4;
1839 1.703 rillig ustr += 4;
1840 1.703 rillig break;
1841 1.703 rillig case 3:
1842 1.703 rillig k |= (uint32_t)ustr[2] << 16;
1843 1.703 rillig /* FALLTHROUGH */
1844 1.703 rillig case 2:
1845 1.703 rillig k |= (uint32_t)ustr[1] << 8;
1846 1.703 rillig /* FALLTHROUGH */
1847 1.703 rillig case 1:
1848 1.703 rillig k |= (uint32_t)ustr[0];
1849 1.703 rillig len = 0;
1850 1.703 rillig }
1851 1.703 rillig c1 = c1 * 5 + 0x7b7d159cU;
1852 1.703 rillig c2 = c2 * 5 + 0x6bce6396U;
1853 1.703 rillig k *= c1;
1854 1.703 rillig k = (k << 11) ^ (k >> 21);
1855 1.703 rillig k *= c2;
1856 1.703 rillig h = (h << 13) ^ (h >> 19);
1857 1.703 rillig h = h * 5 + 0x52dce729U;
1858 1.703 rillig h ^= k;
1859 1.703 rillig }
1860 1.703 rillig h ^= (uint32_t)len2;
1861 1.703 rillig h *= 0x85ebca6b;
1862 1.703 rillig h ^= h >> 13;
1863 1.703 rillig h *= 0xc2b2ae35;
1864 1.703 rillig h ^= h >> 16;
1865 1.703 rillig
1866 1.703 rillig buf = bmake_malloc(9);
1867 1.703 rillig for (i = 0; i < 8; i++) {
1868 1.703 rillig buf[i] = hexdigits[h & 0x0f];
1869 1.703 rillig h >>= 4;
1870 1.703 rillig }
1871 1.703 rillig buf[8] = '\0';
1872 1.703 rillig return buf;
1873 1.163 joerg }
1874 1.163 joerg
1875 1.164 sjg static char *
1876 1.993 rillig VarStrftime(const char *fmt, time_t t, bool gmt)
1877 1.164 sjg {
1878 1.703 rillig char buf[BUFSIZ];
1879 1.164 sjg
1880 1.993 rillig if (t == 0)
1881 1.993 rillig time(&t);
1882 1.703 rillig if (*fmt == '\0')
1883 1.703 rillig fmt = "%c";
1884 1.993 rillig strftime(buf, sizeof buf, fmt, gmt ? gmtime(&t) : localtime(&t));
1885 1.235 rillig
1886 1.703 rillig buf[sizeof buf - 1] = '\0';
1887 1.703 rillig return bmake_strdup(buf);
1888 1.164 sjg }
1889 1.164 sjg
1890 1.687 rillig /*
1891 1.687 rillig * The ApplyModifier functions take an expression that is being evaluated.
1892 1.830 rillig * Their task is to apply a single modifier to the expression. This involves
1893 1.830 rillig * parsing the modifier, evaluating it and finally updating the value of the
1894 1.830 rillig * expression.
1895 1.467 rillig *
1896 1.467 rillig * Parsing the modifier
1897 1.467 rillig *
1898 1.467 rillig * If parsing succeeds, the parsing position *pp is updated to point to the
1899 1.467 rillig * first character following the modifier, which typically is either ':' or
1900 1.891 rillig * ch->endc. The modifier doesn't have to check for this delimiter character,
1901 1.687 rillig * this is done by ApplyModifiers.
1902 1.687 rillig *
1903 1.687 rillig * XXX: As of 2020-11-15, some modifiers such as :S, :C, :P, :L do not
1904 1.687 rillig * need to be followed by a ':' or endc; this was an unintended mistake.
1905 1.467 rillig *
1906 1.467 rillig * If parsing fails because of a missing delimiter (as in the :S, :C or :@
1907 1.530 rillig * modifiers), return AMR_CLEANUP.
1908 1.467 rillig *
1909 1.467 rillig * If parsing fails because the modifier is unknown, return AMR_UNKNOWN to
1910 1.467 rillig * try the SysV modifier ${VAR:from=to} as fallback. This should only be
1911 1.467 rillig * done as long as there have been no side effects from evaluating nested
1912 1.467 rillig * variables, to avoid evaluating them more than once. In this case, the
1913 1.687 rillig * parsing position may or may not be updated. (XXX: Why not? The original
1914 1.687 rillig * parsing position is well-known in ApplyModifiers.)
1915 1.467 rillig *
1916 1.467 rillig * If parsing fails and the SysV modifier ${VAR:from=to} should not be used
1917 1.467 rillig * as a fallback, either issue an error message using Error or Parse_Error
1918 1.467 rillig * and then return AMR_CLEANUP, or return AMR_BAD for the default error
1919 1.467 rillig * message. Both of these return values will stop processing the variable
1920 1.467 rillig * expression. (XXX: As of 2020-08-23, evaluation of the whole string
1921 1.467 rillig * continues nevertheless after skipping a few bytes, which essentially is
1922 1.830 rillig * undefined behavior. Not in the sense of C, but still the resulting string
1923 1.830 rillig * is garbage.)
1924 1.467 rillig *
1925 1.467 rillig * Evaluating the modifier
1926 1.467 rillig *
1927 1.467 rillig * After parsing, the modifier is evaluated. The side effects from evaluating
1928 1.467 rillig * nested variable expressions in the modifier text often already happen
1929 1.830 rillig * during parsing though. For most modifiers this doesn't matter since their
1930 1.949 rillig * only noticeable effect is that they update the value of the expression.
1931 1.830 rillig * Some modifiers such as ':sh' or '::=' have noticeable side effects though.
1932 1.467 rillig *
1933 1.467 rillig * Evaluating the modifier usually takes the current value of the variable
1934 1.891 rillig * expression from ch->expr->value, or the variable name from ch->var->name
1935 1.824 rillig * and stores the result back in expr->value via Expr_SetValueOwn or
1936 1.821 rillig * Expr_SetValueRefer.
1937 1.467 rillig *
1938 1.467 rillig * If evaluating fails (as of 2020-08-23), an error message is printed using
1939 1.467 rillig * Error. This function has no side-effects, it really just prints the error
1940 1.467 rillig * message. Processing the expression continues as if everything were ok.
1941 1.467 rillig * XXX: This should be fixed by adding proper error handling to Var_Subst,
1942 1.467 rillig * Var_Parse, ApplyModifiers and ModifyWords.
1943 1.467 rillig *
1944 1.467 rillig * Housekeeping
1945 1.467 rillig *
1946 1.528 rillig * Some modifiers such as :D and :U turn undefined expressions into defined
1947 1.821 rillig * expressions (see Expr_Define).
1948 1.467 rillig *
1949 1.467 rillig * Some modifiers need to free some memory.
1950 1.350 rillig */
1951 1.409 rillig
1952 1.825 rillig typedef enum ExprDefined {
1953 1.816 rillig /* The variable expression is based on a regular, defined variable. */
1954 1.825 rillig DEF_REGULAR,
1955 1.703 rillig /* The variable expression is based on an undefined variable. */
1956 1.825 rillig DEF_UNDEF,
1957 1.703 rillig /*
1958 1.703 rillig * The variable expression started as an undefined expression, but one
1959 1.825 rillig * of the modifiers (such as ':D' or ':U') has turned the expression
1960 1.825 rillig * from undefined to defined.
1961 1.703 rillig */
1962 1.825 rillig DEF_DEFINED
1963 1.825 rillig } ExprDefined;
1964 1.527 rillig
1965 1.951 rillig static const char ExprDefined_Name[][10] = {
1966 1.826 rillig "regular",
1967 1.826 rillig "undefined",
1968 1.826 rillig "defined"
1969 1.789 rillig };
1970 1.527 rillig
1971 1.897 rillig #if __STDC_VERSION__ >= 199901L
1972 1.989 rillig #define const_member const
1973 1.897 rillig #else
1974 1.989 rillig #define const_member /* no const possible */
1975 1.897 rillig #endif
1976 1.897 rillig
1977 1.966 rillig /* An expression based on a variable, such as $@ or ${VAR:Mpattern:Q}. */
1978 1.823 rillig typedef struct Expr {
1979 1.898 rillig const char *name;
1980 1.823 rillig FStr value;
1981 1.906 rillig VarEvalMode const_member emode;
1982 1.897 rillig GNode *const_member scope;
1983 1.825 rillig ExprDefined defined;
1984 1.823 rillig } Expr;
1985 1.823 rillig
1986 1.823 rillig /*
1987 1.890 rillig * The status of applying a chain of modifiers to an expression.
1988 1.823 rillig *
1989 1.890 rillig * The modifiers of an expression are broken into chains of modifiers,
1990 1.892 rillig * starting a new nested chain whenever an indirect modifier starts. There
1991 1.892 rillig * are at most 2 nesting levels: the outer one for the direct modifiers, and
1992 1.892 rillig * the inner one for the indirect modifiers.
1993 1.890 rillig *
1994 1.892 rillig * For example, the expression ${VAR:M*:${IND1}:${IND2}:O:u} has 3 chains of
1995 1.889 rillig * modifiers:
1996 1.889 rillig *
1997 1.892 rillig * Chain 1 starts with the single modifier ':M*'.
1998 1.892 rillig * Chain 2 starts with all modifiers from ${IND1}.
1999 1.892 rillig * Chain 2 ends at the ':' between ${IND1} and ${IND2}.
2000 1.893 rillig * Chain 3 starts with all modifiers from ${IND2}.
2001 1.893 rillig * Chain 3 ends at the ':' after ${IND2}.
2002 1.942 rillig * Chain 1 continues with the 2 modifiers ':O' and ':u'.
2003 1.892 rillig * Chain 1 ends at the final '}' of the expression.
2004 1.890 rillig *
2005 1.892 rillig * After such a chain ends, its properties no longer have any effect.
2006 1.889 rillig *
2007 1.887 rillig * It may or may not have been intended that 'defined' has scope Expr while
2008 1.887 rillig * 'sep' and 'oneBigWord' have smaller scope.
2009 1.823 rillig *
2010 1.823 rillig * See varmod-indirect.mk.
2011 1.823 rillig */
2012 1.891 rillig typedef struct ModChain {
2013 1.823 rillig Expr *expr;
2014 1.703 rillig /* '\0' or '{' or '(' */
2015 1.897 rillig char const_member startc;
2016 1.703 rillig /* '\0' or '}' or ')' */
2017 1.897 rillig char const_member endc;
2018 1.703 rillig /* Word separator in expansions (see the :ts modifier). */
2019 1.703 rillig char sep;
2020 1.703 rillig /*
2021 1.895 rillig * True if some modifiers that otherwise split the variable value
2022 1.703 rillig * into words, like :S and :C, treat the variable value as a single
2023 1.703 rillig * big word, possibly containing spaces.
2024 1.703 rillig */
2025 1.895 rillig bool oneBigWord;
2026 1.891 rillig } ModChain;
2027 1.236 rillig
2028 1.525 rillig static void
2029 1.812 rillig Expr_Define(Expr *expr)
2030 1.525 rillig {
2031 1.825 rillig if (expr->defined == DEF_UNDEF)
2032 1.825 rillig expr->defined = DEF_DEFINED;
2033 1.525 rillig }
2034 1.525 rillig
2035 1.965 rillig static const char *
2036 1.965 rillig Expr_Str(const Expr *expr)
2037 1.965 rillig {
2038 1.965 rillig return expr->value.str;
2039 1.965 rillig }
2040 1.965 rillig
2041 1.967 rillig static SubstringWords
2042 1.967 rillig Expr_Words(const Expr *expr)
2043 1.967 rillig {
2044 1.967 rillig return Substring_Words(Expr_Str(expr), false);
2045 1.967 rillig }
2046 1.967 rillig
2047 1.813 rillig static void
2048 1.921 rillig Expr_SetValue(Expr *expr, FStr value)
2049 1.921 rillig {
2050 1.921 rillig FStr_Done(&expr->value);
2051 1.921 rillig expr->value = value;
2052 1.921 rillig }
2053 1.921 rillig
2054 1.921 rillig static void
2055 1.813 rillig Expr_SetValueOwn(Expr *expr, char *value)
2056 1.813 rillig {
2057 1.921 rillig Expr_SetValue(expr, FStr_InitOwn(value));
2058 1.813 rillig }
2059 1.813 rillig
2060 1.813 rillig static void
2061 1.813 rillig Expr_SetValueRefer(Expr *expr, const char *value)
2062 1.813 rillig {
2063 1.921 rillig Expr_SetValue(expr, FStr_InitRefer(value));
2064 1.813 rillig }
2065 1.813 rillig
2066 1.905 rillig static bool
2067 1.905 rillig Expr_ShouldEval(const Expr *expr)
2068 1.905 rillig {
2069 1.906 rillig return VarEvalMode_ShouldEval(expr->emode);
2070 1.905 rillig }
2071 1.905 rillig
2072 1.905 rillig static bool
2073 1.905 rillig ModChain_ShouldEval(const ModChain *ch)
2074 1.905 rillig {
2075 1.905 rillig return Expr_ShouldEval(ch->expr);
2076 1.905 rillig }
2077 1.905 rillig
2078 1.905 rillig
2079 1.578 rillig typedef enum ApplyModifierResult {
2080 1.703 rillig /* Continue parsing */
2081 1.703 rillig AMR_OK,
2082 1.830 rillig /* Not a match, try other modifiers as well. */
2083 1.703 rillig AMR_UNKNOWN,
2084 1.830 rillig /* Error out with "Bad modifier" message. */
2085 1.703 rillig AMR_BAD,
2086 1.830 rillig /* Error out without the standard error message. */
2087 1.703 rillig AMR_CLEANUP
2088 1.356 rillig } ApplyModifierResult;
2089 1.356 rillig
2090 1.703 rillig /*
2091 1.703 rillig * Allow backslashes to escape the delimiter, $, and \, but don't touch other
2092 1.703 rillig * backslashes.
2093 1.703 rillig */
2094 1.895 rillig static bool
2095 1.620 rillig IsEscapedModifierPart(const char *p, char delim,
2096 1.620 rillig struct ModifyWord_SubstArgs *subst)
2097 1.620 rillig {
2098 1.703 rillig if (p[0] != '\\')
2099 1.895 rillig return false;
2100 1.703 rillig if (p[1] == delim || p[1] == '\\' || p[1] == '$')
2101 1.895 rillig return true;
2102 1.703 rillig return p[1] == '&' && subst != NULL;
2103 1.620 rillig }
2104 1.620 rillig
2105 1.956 rillig /*
2106 1.957 rillig * In a part of a modifier, parse a subexpression and evaluate it.
2107 1.957 rillig */
2108 1.957 rillig static void
2109 1.957 rillig ParseModifierPartExpr(const char **pp, LazyBuf *part, const ModChain *ch,
2110 1.957 rillig VarEvalMode emode)
2111 1.957 rillig {
2112 1.957 rillig const char *p = *pp;
2113 1.957 rillig FStr nested_val;
2114 1.957 rillig
2115 1.957 rillig (void)Var_Parse(&p, ch->expr->scope,
2116 1.957 rillig VarEvalMode_WithoutKeepDollar(emode), &nested_val);
2117 1.957 rillig /* TODO: handle errors */
2118 1.957 rillig LazyBuf_AddStr(part, nested_val.str);
2119 1.957 rillig FStr_Done(&nested_val);
2120 1.957 rillig *pp = p;
2121 1.957 rillig }
2122 1.957 rillig
2123 1.957 rillig /*
2124 1.956 rillig * In a part of a modifier, parse a subexpression but don't evaluate it.
2125 1.956 rillig *
2126 1.956 rillig * XXX: This whole block is very similar to Var_Parse with VARE_PARSE_ONLY.
2127 1.956 rillig * There may be subtle edge cases though that are not yet covered in the unit
2128 1.956 rillig * tests and that are parsed differently, depending on whether they are
2129 1.956 rillig * evaluated or not.
2130 1.956 rillig *
2131 1.956 rillig * This subtle difference is not documented in the manual page, neither is
2132 1.956 rillig * the difference between parsing ':D' and ':M' documented. No code should
2133 1.956 rillig * ever depend on these details, but who knows.
2134 1.956 rillig */
2135 1.956 rillig static void
2136 1.956 rillig ParseModifierPartDollar(const char **pp, LazyBuf *part)
2137 1.956 rillig {
2138 1.956 rillig const char *p = *pp;
2139 1.956 rillig const char *start = *pp;
2140 1.956 rillig
2141 1.956 rillig if (p[1] == '(' || p[1] == '{') {
2142 1.956 rillig char startc = p[1];
2143 1.956 rillig int endc = startc == '(' ? ')' : '}';
2144 1.956 rillig int depth = 1;
2145 1.956 rillig
2146 1.956 rillig for (p += 2; *p != '\0' && depth > 0; p++) {
2147 1.956 rillig if (p[-1] != '\\') {
2148 1.956 rillig if (*p == startc)
2149 1.956 rillig depth++;
2150 1.956 rillig if (*p == endc)
2151 1.956 rillig depth--;
2152 1.956 rillig }
2153 1.956 rillig }
2154 1.956 rillig LazyBuf_AddBytesBetween(part, start, p);
2155 1.956 rillig *pp = p;
2156 1.956 rillig } else {
2157 1.956 rillig LazyBuf_Add(part, *start);
2158 1.956 rillig *pp = p + 1;
2159 1.956 rillig }
2160 1.956 rillig }
2161 1.956 rillig
2162 1.934 rillig /* See ParseModifierPart for the documentation. */
2163 1.531 rillig static VarParseResult
2164 1.760 rillig ParseModifierPartSubst(
2165 1.703 rillig const char **pp,
2166 1.703 rillig char delim,
2167 1.906 rillig VarEvalMode emode,
2168 1.891 rillig ModChain *ch,
2169 1.921 rillig LazyBuf *part,
2170 1.988 rillig /*
2171 1.988 rillig * For the first part of the modifier ':S', set anchorEnd if the last
2172 1.988 rillig * character of the pattern is a $.
2173 1.988 rillig */
2174 1.927 rillig PatternFlags *out_pflags,
2175 1.988 rillig /*
2176 1.988 rillig * For the second part of the :S modifier, allow ampersands to be escaped
2177 1.988 rillig * and replace unescaped ampersands with subst->lhs.
2178 1.988 rillig */
2179 1.541 rillig struct ModifyWord_SubstArgs *subst
2180 1.704 rillig )
2181 1.704 rillig {
2182 1.704 rillig const char *p;
2183 1.704 rillig
2184 1.921 rillig p = *pp;
2185 1.923 rillig LazyBuf_Init(part, p);
2186 1.704 rillig
2187 1.704 rillig while (*p != '\0' && *p != delim) {
2188 1.704 rillig if (IsEscapedModifierPart(p, delim, subst)) {
2189 1.921 rillig LazyBuf_Add(part, p[1]);
2190 1.704 rillig p += 2;
2191 1.958 rillig } else if (*p != '$') { /* Unescaped, simple text */
2192 1.704 rillig if (subst != NULL && *p == '&')
2193 1.921 rillig LazyBuf_AddSubstring(part, subst->lhs);
2194 1.704 rillig else
2195 1.921 rillig LazyBuf_Add(part, *p);
2196 1.704 rillig p++;
2197 1.958 rillig } else if (p[1] == delim) { /* Unescaped '$' at end */
2198 1.704 rillig if (out_pflags != NULL)
2199 1.895 rillig out_pflags->anchorEnd = true;
2200 1.704 rillig else
2201 1.921 rillig LazyBuf_Add(part, *p);
2202 1.704 rillig p++;
2203 1.958 rillig } else if (VarEvalMode_ShouldEval(emode))
2204 1.957 rillig ParseModifierPartExpr(&p, part, ch, emode);
2205 1.957 rillig else
2206 1.957 rillig ParseModifierPartDollar(&p, part);
2207 1.529 rillig }
2208 1.529 rillig
2209 1.704 rillig if (*p != delim) {
2210 1.704 rillig *pp = p;
2211 1.842 rillig Error("Unfinished modifier for \"%s\" ('%c' missing)",
2212 1.898 rillig ch->expr->name, delim);
2213 1.921 rillig LazyBuf_Done(part);
2214 1.767 rillig return VPR_ERR;
2215 1.704 rillig }
2216 1.704 rillig
2217 1.787 rillig *pp = p + 1;
2218 1.529 rillig
2219 1.921 rillig {
2220 1.921 rillig Substring sub = LazyBuf_Get(part);
2221 1.921 rillig DEBUG2(VAR, "Modifier part: \"%.*s\"\n",
2222 1.921 rillig (int)Substring_Length(sub), sub.start);
2223 1.921 rillig }
2224 1.921 rillig
2225 1.704 rillig return VPR_OK;
2226 1.529 rillig }
2227 1.529 rillig
2228 1.760 rillig /*
2229 1.760 rillig * Parse a part of a modifier such as the "from" and "to" in :S/from/to/ or
2230 1.760 rillig * the "var" or "replacement ${var}" in :@var@replacement ${var}@, up to and
2231 1.760 rillig * including the next unescaped delimiter. The delimiter, as well as the
2232 1.760 rillig * backslash or the dollar, can be escaped with a backslash.
2233 1.760 rillig *
2234 1.934 rillig * Return VPR_OK if parsing succeeded, together with the parsed (and possibly
2235 1.934 rillig * expanded) part. In that case, pp points right after the delimiter. The
2236 1.934 rillig * delimiter is not included in the part though.
2237 1.760 rillig */
2238 1.760 rillig static VarParseResult
2239 1.760 rillig ParseModifierPart(
2240 1.760 rillig /* The parsing position, updated upon return */
2241 1.760 rillig const char **pp,
2242 1.760 rillig /* Parsing stops at this delimiter */
2243 1.760 rillig char delim,
2244 1.906 rillig /* Mode for evaluating nested variables. */
2245 1.906 rillig VarEvalMode emode,
2246 1.891 rillig ModChain *ch,
2247 1.921 rillig LazyBuf *part
2248 1.760 rillig )
2249 1.760 rillig {
2250 1.921 rillig return ParseModifierPartSubst(pp, delim, emode, ch, part, NULL, NULL);
2251 1.760 rillig }
2252 1.760 rillig
2253 1.895 rillig MAKE_INLINE bool
2254 1.891 rillig IsDelimiter(char c, const ModChain *ch)
2255 1.859 rillig {
2256 1.891 rillig return c == ':' || c == ch->endc;
2257 1.859 rillig }
2258 1.859 rillig
2259 1.400 rillig /* Test whether mod starts with modname, followed by a delimiter. */
2260 1.895 rillig MAKE_INLINE bool
2261 1.891 rillig ModMatch(const char *mod, const char *modname, const ModChain *ch)
2262 1.340 rillig {
2263 1.703 rillig size_t n = strlen(modname);
2264 1.891 rillig return strncmp(mod, modname, n) == 0 && IsDelimiter(mod[n], ch);
2265 1.340 rillig }
2266 1.340 rillig
2267 1.400 rillig /* Test whether mod starts with modname, followed by a delimiter or '='. */
2268 1.895 rillig MAKE_INLINE bool
2269 1.891 rillig ModMatchEq(const char *mod, const char *modname, const ModChain *ch)
2270 1.340 rillig {
2271 1.703 rillig size_t n = strlen(modname);
2272 1.703 rillig return strncmp(mod, modname, n) == 0 &&
2273 1.891 rillig (IsDelimiter(mod[n], ch) || mod[n] == '=');
2274 1.340 rillig }
2275 1.236 rillig
2276 1.895 rillig static bool
2277 1.635 rillig TryParseIntBase0(const char **pp, int *out_num)
2278 1.635 rillig {
2279 1.703 rillig char *end;
2280 1.703 rillig long n;
2281 1.635 rillig
2282 1.703 rillig errno = 0;
2283 1.703 rillig n = strtol(*pp, &end, 0);
2284 1.865 rillig
2285 1.865 rillig if (end == *pp)
2286 1.895 rillig return false;
2287 1.703 rillig if ((n == LONG_MIN || n == LONG_MAX) && errno == ERANGE)
2288 1.895 rillig return false;
2289 1.703 rillig if (n < INT_MIN || n > INT_MAX)
2290 1.895 rillig return false;
2291 1.635 rillig
2292 1.703 rillig *pp = end;
2293 1.703 rillig *out_num = (int)n;
2294 1.895 rillig return true;
2295 1.635 rillig }
2296 1.635 rillig
2297 1.895 rillig static bool
2298 1.635 rillig TryParseSize(const char **pp, size_t *out_num)
2299 1.635 rillig {
2300 1.703 rillig char *end;
2301 1.703 rillig unsigned long n;
2302 1.635 rillig
2303 1.703 rillig if (!ch_isdigit(**pp))
2304 1.895 rillig return false;
2305 1.635 rillig
2306 1.703 rillig errno = 0;
2307 1.703 rillig n = strtoul(*pp, &end, 10);
2308 1.703 rillig if (n == ULONG_MAX && errno == ERANGE)
2309 1.895 rillig return false;
2310 1.703 rillig if (n > SIZE_MAX)
2311 1.895 rillig return false;
2312 1.635 rillig
2313 1.703 rillig *pp = end;
2314 1.703 rillig *out_num = (size_t)n;
2315 1.895 rillig return true;
2316 1.635 rillig }
2317 1.635 rillig
2318 1.895 rillig static bool
2319 1.635 rillig TryParseChar(const char **pp, int base, char *out_ch)
2320 1.635 rillig {
2321 1.703 rillig char *end;
2322 1.703 rillig unsigned long n;
2323 1.635 rillig
2324 1.703 rillig if (!ch_isalnum(**pp))
2325 1.895 rillig return false;
2326 1.635 rillig
2327 1.703 rillig errno = 0;
2328 1.703 rillig n = strtoul(*pp, &end, base);
2329 1.703 rillig if (n == ULONG_MAX && errno == ERANGE)
2330 1.895 rillig return false;
2331 1.703 rillig if (n > UCHAR_MAX)
2332 1.895 rillig return false;
2333 1.635 rillig
2334 1.703 rillig *pp = end;
2335 1.703 rillig *out_ch = (char)n;
2336 1.895 rillig return true;
2337 1.635 rillig }
2338 1.635 rillig
2339 1.820 rillig /*
2340 1.822 rillig * Modify each word of the expression using the given function and place the
2341 1.822 rillig * result back in the expression.
2342 1.820 rillig */
2343 1.820 rillig static void
2344 1.891 rillig ModifyWords(ModChain *ch,
2345 1.822 rillig ModifyWordProc modifyWord, void *modifyWord_args,
2346 1.895 rillig bool oneBigWord)
2347 1.820 rillig {
2348 1.891 rillig Expr *expr = ch->expr;
2349 1.965 rillig const char *val = Expr_Str(expr);
2350 1.820 rillig SepBuf result;
2351 1.920 rillig SubstringWords words;
2352 1.820 rillig size_t i;
2353 1.919 rillig Substring word;
2354 1.820 rillig
2355 1.820 rillig if (oneBigWord) {
2356 1.891 rillig SepBuf_Init(&result, ch->sep);
2357 1.919 rillig /* XXX: performance: Substring_InitStr calls strlen */
2358 1.919 rillig word = Substring_InitStr(val);
2359 1.919 rillig modifyWord(word, &result, modifyWord_args);
2360 1.820 rillig goto done;
2361 1.820 rillig }
2362 1.820 rillig
2363 1.920 rillig words = Substring_Words(val, false);
2364 1.820 rillig
2365 1.954 rillig DEBUG3(VAR, "ModifyWords: split \"%s\" into %u %s\n",
2366 1.954 rillig val, (unsigned)words.len, words.len != 1 ? "words" : "word");
2367 1.820 rillig
2368 1.891 rillig SepBuf_Init(&result, ch->sep);
2369 1.820 rillig for (i = 0; i < words.len; i++) {
2370 1.920 rillig modifyWord(words.words[i], &result, modifyWord_args);
2371 1.820 rillig if (result.buf.len > 0)
2372 1.820 rillig SepBuf_Sep(&result);
2373 1.820 rillig }
2374 1.820 rillig
2375 1.920 rillig SubstringWords_Free(words);
2376 1.820 rillig
2377 1.820 rillig done:
2378 1.823 rillig Expr_SetValueOwn(expr, SepBuf_DoneData(&result));
2379 1.820 rillig }
2380 1.820 rillig
2381 1.236 rillig /* :@var (at) ...${var}...@ */
2382 1.356 rillig static ApplyModifierResult
2383 1.891 rillig ApplyModifier_Loop(const char **pp, ModChain *ch)
2384 1.417 rillig {
2385 1.891 rillig Expr *expr = ch->expr;
2386 1.703 rillig struct ModifyWord_LoopArgs args;
2387 1.703 rillig char prev_sep;
2388 1.703 rillig VarParseResult res;
2389 1.921 rillig LazyBuf tvarBuf, strBuf;
2390 1.921 rillig FStr tvar, str;
2391 1.703 rillig
2392 1.823 rillig args.scope = expr->scope;
2393 1.703 rillig
2394 1.703 rillig (*pp)++; /* Skip the first '@' */
2395 1.921 rillig res = ParseModifierPart(pp, '@', VARE_PARSE_ONLY, ch, &tvarBuf);
2396 1.703 rillig if (res != VPR_OK)
2397 1.703 rillig return AMR_CLEANUP;
2398 1.921 rillig tvar = LazyBuf_DoneGet(&tvarBuf);
2399 1.928 rillig args.var = tvar.str;
2400 1.928 rillig if (strchr(args.var, '$') != NULL) {
2401 1.703 rillig Parse_Error(PARSE_FATAL,
2402 1.410 rillig "In the :@ modifier of \"%s\", the variable name \"%s\" "
2403 1.969 rillig "must not contain a dollar",
2404 1.928 rillig expr->name, args.var);
2405 1.703 rillig return AMR_CLEANUP;
2406 1.703 rillig }
2407 1.236 rillig
2408 1.921 rillig res = ParseModifierPart(pp, '@', VARE_PARSE_ONLY, ch, &strBuf);
2409 1.703 rillig if (res != VPR_OK)
2410 1.703 rillig return AMR_CLEANUP;
2411 1.921 rillig str = LazyBuf_DoneGet(&strBuf);
2412 1.928 rillig args.body = str.str;
2413 1.703 rillig
2414 1.906 rillig if (!Expr_ShouldEval(expr))
2415 1.870 rillig goto done;
2416 1.870 rillig
2417 1.906 rillig args.emode = VarEvalMode_WithoutKeepDollar(expr->emode);
2418 1.891 rillig prev_sep = ch->sep;
2419 1.891 rillig ch->sep = ' '; /* XXX: should be ch->sep for consistency */
2420 1.891 rillig ModifyWords(ch, ModifyWord_Loop, &args, ch->oneBigWord);
2421 1.891 rillig ch->sep = prev_sep;
2422 1.928 rillig /* XXX: Consider restoring the previous value instead of deleting. */
2423 1.928 rillig Var_Delete(expr->scope, args.var);
2424 1.870 rillig
2425 1.870 rillig done:
2426 1.921 rillig FStr_Done(&tvar);
2427 1.921 rillig FStr_Done(&str);
2428 1.703 rillig return AMR_OK;
2429 1.236 rillig }
2430 1.236 rillig
2431 1.236 rillig /* :Ddefined or :Uundefined */
2432 1.356 rillig static ApplyModifierResult
2433 1.891 rillig ApplyModifier_Defined(const char **pp, ModChain *ch)
2434 1.236 rillig {
2435 1.891 rillig Expr *expr = ch->expr;
2436 1.929 rillig LazyBuf buf;
2437 1.703 rillig const char *p;
2438 1.412 rillig
2439 1.906 rillig VarEvalMode emode = VARE_PARSE_ONLY;
2440 1.906 rillig if (Expr_ShouldEval(expr))
2441 1.825 rillig if ((**pp == 'D') == (expr->defined == DEF_REGULAR))
2442 1.906 rillig emode = expr->emode;
2443 1.703 rillig
2444 1.703 rillig p = *pp + 1;
2445 1.929 rillig LazyBuf_Init(&buf, p);
2446 1.891 rillig while (!IsDelimiter(*p, ch) && *p != '\0') {
2447 1.703 rillig
2448 1.988 rillig /*
2449 1.988 rillig * XXX: This code is similar to the one in Var_Parse. See if
2450 1.988 rillig * the code can be merged. See also ApplyModifier_Match and
2451 1.988 rillig * ParseModifierPart.
2452 1.988 rillig */
2453 1.703 rillig
2454 1.703 rillig /* Escaped delimiter or other special character */
2455 1.830 rillig /* See Buf_AddEscaped in for.c. */
2456 1.703 rillig if (*p == '\\') {
2457 1.703 rillig char c = p[1];
2458 1.891 rillig if (IsDelimiter(c, ch) || c == '$' || c == '\\') {
2459 1.929 rillig LazyBuf_Add(&buf, c);
2460 1.703 rillig p += 2;
2461 1.703 rillig continue;
2462 1.703 rillig }
2463 1.703 rillig }
2464 1.236 rillig
2465 1.703 rillig /* Nested variable expression */
2466 1.703 rillig if (*p == '$') {
2467 1.743 rillig FStr nested_val;
2468 1.466 rillig
2469 1.906 rillig (void)Var_Parse(&p, expr->scope, emode, &nested_val);
2470 1.703 rillig /* TODO: handle errors */
2471 1.906 rillig if (Expr_ShouldEval(expr))
2472 1.929 rillig LazyBuf_AddStr(&buf, nested_val.str);
2473 1.743 rillig FStr_Done(&nested_val);
2474 1.703 rillig continue;
2475 1.703 rillig }
2476 1.687 rillig
2477 1.703 rillig /* Ordinary text */
2478 1.929 rillig LazyBuf_Add(&buf, *p);
2479 1.703 rillig p++;
2480 1.466 rillig }
2481 1.703 rillig *pp = p;
2482 1.466 rillig
2483 1.823 rillig Expr_Define(expr);
2484 1.236 rillig
2485 1.906 rillig if (VarEvalMode_ShouldEval(emode))
2486 1.929 rillig Expr_SetValue(expr, Substring_Str(LazyBuf_Get(&buf)));
2487 1.821 rillig else
2488 1.929 rillig LazyBuf_Done(&buf);
2489 1.821 rillig
2490 1.703 rillig return AMR_OK;
2491 1.236 rillig }
2492 1.236 rillig
2493 1.567 rillig /* :L */
2494 1.567 rillig static ApplyModifierResult
2495 1.891 rillig ApplyModifier_Literal(const char **pp, ModChain *ch)
2496 1.567 rillig {
2497 1.891 rillig Expr *expr = ch->expr;
2498 1.864 rillig
2499 1.864 rillig (*pp)++;
2500 1.864 rillig
2501 1.905 rillig if (Expr_ShouldEval(expr)) {
2502 1.872 rillig Expr_Define(expr);
2503 1.898 rillig Expr_SetValueOwn(expr, bmake_strdup(expr->name));
2504 1.872 rillig }
2505 1.864 rillig
2506 1.703 rillig return AMR_OK;
2507 1.567 rillig }
2508 1.567 rillig
2509 1.895 rillig static bool
2510 1.633 rillig TryParseTime(const char **pp, time_t *out_time)
2511 1.631 rillig {
2512 1.703 rillig char *end;
2513 1.703 rillig unsigned long n;
2514 1.631 rillig
2515 1.703 rillig if (!ch_isdigit(**pp))
2516 1.895 rillig return false;
2517 1.631 rillig
2518 1.703 rillig errno = 0;
2519 1.703 rillig n = strtoul(*pp, &end, 10);
2520 1.703 rillig if (n == ULONG_MAX && errno == ERANGE)
2521 1.895 rillig return false;
2522 1.631 rillig
2523 1.703 rillig *pp = end;
2524 1.703 rillig *out_time = (time_t)n; /* ignore possible truncation for now */
2525 1.895 rillig return true;
2526 1.631 rillig }
2527 1.631 rillig
2528 1.994 rillig /* :gmtime and :localtime */
2529 1.356 rillig static ApplyModifierResult
2530 1.995 rillig ApplyModifier_Time(const char **pp, ModChain *ch)
2531 1.236 rillig {
2532 1.950 rillig Expr *expr;
2533 1.993 rillig time_t t;
2534 1.994 rillig const char *args;
2535 1.995 rillig const char *mod = *pp;
2536 1.995 rillig bool gmt = mod[0] == 'g';
2537 1.412 rillig
2538 1.994 rillig if (!ModMatchEq(mod, gmt ? "gmtime" : "localtime", ch))
2539 1.703 rillig return AMR_UNKNOWN;
2540 1.994 rillig args = mod + (gmt ? 6 : 9);
2541 1.703 rillig
2542 1.994 rillig if (args[0] == '=') {
2543 1.994 rillig const char *p = args + 1;
2544 1.993 rillig if (!TryParseTime(&p, &t)) {
2545 1.703 rillig Parse_Error(PARSE_FATAL,
2546 1.993 rillig "Invalid time value at \"%s\"", p);
2547 1.703 rillig return AMR_CLEANUP;
2548 1.703 rillig }
2549 1.843 rillig *pp = p;
2550 1.703 rillig } else {
2551 1.993 rillig t = 0;
2552 1.994 rillig *pp = args;
2553 1.631 rillig }
2554 1.864 rillig
2555 1.950 rillig expr = ch->expr;
2556 1.950 rillig if (Expr_ShouldEval(expr))
2557 1.994 rillig Expr_SetValueOwn(expr, VarStrftime(Expr_Str(expr), t, gmt));
2558 1.864 rillig
2559 1.703 rillig return AMR_OK;
2560 1.236 rillig }
2561 1.236 rillig
2562 1.236 rillig /* :hash */
2563 1.356 rillig static ApplyModifierResult
2564 1.891 rillig ApplyModifier_Hash(const char **pp, ModChain *ch)
2565 1.236 rillig {
2566 1.891 rillig if (!ModMatch(*pp, "hash", ch))
2567 1.703 rillig return AMR_UNKNOWN;
2568 1.864 rillig *pp += 4;
2569 1.340 rillig
2570 1.905 rillig if (ModChain_ShouldEval(ch))
2571 1.965 rillig Expr_SetValueOwn(ch->expr, VarHash(Expr_Str(ch->expr)));
2572 1.864 rillig
2573 1.703 rillig return AMR_OK;
2574 1.236 rillig }
2575 1.236 rillig
2576 1.236 rillig /* :P */
2577 1.356 rillig static ApplyModifierResult
2578 1.891 rillig ApplyModifier_Path(const char **pp, ModChain *ch)
2579 1.236 rillig {
2580 1.891 rillig Expr *expr = ch->expr;
2581 1.703 rillig GNode *gn;
2582 1.703 rillig char *path;
2583 1.412 rillig
2584 1.864 rillig (*pp)++;
2585 1.864 rillig
2586 1.950 rillig if (!Expr_ShouldEval(expr))
2587 1.873 rillig return AMR_OK;
2588 1.873 rillig
2589 1.823 rillig Expr_Define(expr);
2590 1.409 rillig
2591 1.898 rillig gn = Targ_FindNode(expr->name);
2592 1.703 rillig if (gn == NULL || gn->type & OP_NOPATH) {
2593 1.703 rillig path = NULL;
2594 1.703 rillig } else if (gn->path != NULL) {
2595 1.703 rillig path = bmake_strdup(gn->path);
2596 1.703 rillig } else {
2597 1.703 rillig SearchPath *searchPath = Suff_FindPath(gn);
2598 1.898 rillig path = Dir_FindFile(expr->name, searchPath);
2599 1.703 rillig }
2600 1.703 rillig if (path == NULL)
2601 1.898 rillig path = bmake_strdup(expr->name);
2602 1.823 rillig Expr_SetValueOwn(expr, path);
2603 1.409 rillig
2604 1.703 rillig return AMR_OK;
2605 1.236 rillig }
2606 1.236 rillig
2607 1.236 rillig /* :!cmd! */
2608 1.356 rillig static ApplyModifierResult
2609 1.891 rillig ApplyModifier_ShellCommand(const char **pp, ModChain *ch)
2610 1.236 rillig {
2611 1.891 rillig Expr *expr = ch->expr;
2612 1.703 rillig VarParseResult res;
2613 1.921 rillig LazyBuf cmdBuf;
2614 1.921 rillig FStr cmd;
2615 1.703 rillig
2616 1.703 rillig (*pp)++;
2617 1.921 rillig res = ParseModifierPart(pp, '!', expr->emode, ch, &cmdBuf);
2618 1.703 rillig if (res != VPR_OK)
2619 1.703 rillig return AMR_CLEANUP;
2620 1.921 rillig cmd = LazyBuf_DoneGet(&cmdBuf);
2621 1.921 rillig
2622 1.1000 rillig if (Expr_ShouldEval(expr)) {
2623 1.1000 rillig char *output, *error;
2624 1.1000 rillig output = Cmd_Exec(cmd.str, &error);
2625 1.1000 rillig Expr_SetValueOwn(expr, output);
2626 1.1000 rillig if (error != NULL) {
2627 1.1000 rillig /* XXX: why still return AMR_OK? */
2628 1.1000 rillig Error("%s", error);
2629 1.1000 rillig free(error);
2630 1.1000 rillig }
2631 1.1000 rillig } else
2632 1.1000 rillig Expr_SetValueRefer(expr, "");
2633 1.703 rillig
2634 1.921 rillig FStr_Done(&cmd);
2635 1.864 rillig Expr_Define(expr);
2636 1.274 rillig
2637 1.703 rillig return AMR_OK;
2638 1.236 rillig }
2639 1.236 rillig
2640 1.778 rillig /*
2641 1.778 rillig * The :range modifier generates an integer sequence as long as the words.
2642 1.778 rillig * The :range=7 modifier generates an integer sequence from 1 to 7.
2643 1.778 rillig */
2644 1.356 rillig static ApplyModifierResult
2645 1.891 rillig ApplyModifier_Range(const char **pp, ModChain *ch)
2646 1.236 rillig {
2647 1.703 rillig size_t n;
2648 1.703 rillig Buffer buf;
2649 1.703 rillig size_t i;
2650 1.412 rillig
2651 1.703 rillig const char *mod = *pp;
2652 1.891 rillig if (!ModMatchEq(mod, "range", ch))
2653 1.703 rillig return AMR_UNKNOWN;
2654 1.703 rillig
2655 1.703 rillig if (mod[5] == '=') {
2656 1.703 rillig const char *p = mod + 6;
2657 1.703 rillig if (!TryParseSize(&p, &n)) {
2658 1.703 rillig Parse_Error(PARSE_FATAL,
2659 1.844 rillig "Invalid number \"%s\" for ':range' modifier",
2660 1.844 rillig mod + 6);
2661 1.703 rillig return AMR_CLEANUP;
2662 1.703 rillig }
2663 1.703 rillig *pp = p;
2664 1.703 rillig } else {
2665 1.703 rillig n = 0;
2666 1.703 rillig *pp = mod + 5;
2667 1.635 rillig }
2668 1.386 rillig
2669 1.905 rillig if (!ModChain_ShouldEval(ch))
2670 1.873 rillig return AMR_OK;
2671 1.873 rillig
2672 1.703 rillig if (n == 0) {
2673 1.967 rillig SubstringWords words = Expr_Words(ch->expr);
2674 1.703 rillig n = words.len;
2675 1.961 rillig SubstringWords_Free(words);
2676 1.703 rillig }
2677 1.386 rillig
2678 1.703 rillig Buf_Init(&buf);
2679 1.386 rillig
2680 1.703 rillig for (i = 0; i < n; i++) {
2681 1.703 rillig if (i != 0) {
2682 1.988 rillig /*
2683 1.988 rillig * XXX: Use ch->sep instead of ' ', for consistency.
2684 1.988 rillig */
2685 1.703 rillig Buf_AddByte(&buf, ' ');
2686 1.703 rillig }
2687 1.703 rillig Buf_AddInt(&buf, 1 + (int)i);
2688 1.703 rillig }
2689 1.386 rillig
2690 1.891 rillig Expr_SetValueOwn(ch->expr, Buf_DoneData(&buf));
2691 1.703 rillig return AMR_OK;
2692 1.236 rillig }
2693 1.236 rillig
2694 1.845 rillig /* Parse a ':M' or ':N' modifier. */
2695 1.1013 rillig static char *
2696 1.1013 rillig ParseModifier_Match(const char **pp, const ModChain *ch)
2697 1.236 rillig {
2698 1.845 rillig const char *mod = *pp;
2699 1.891 rillig Expr *expr = ch->expr;
2700 1.895 rillig bool copy = false; /* pattern should be, or has been, copied */
2701 1.895 rillig bool needSubst = false;
2702 1.703 rillig const char *endpat;
2703 1.703 rillig char *pattern;
2704 1.412 rillig
2705 1.703 rillig /*
2706 1.703 rillig * In the loop below, ignore ':' unless we are at (or back to) the
2707 1.703 rillig * original brace level.
2708 1.703 rillig * XXX: This will likely not work right if $() and ${} are intermixed.
2709 1.703 rillig */
2710 1.845 rillig /*
2711 1.845 rillig * XXX: This code is similar to the one in Var_Parse.
2712 1.703 rillig * See if the code can be merged.
2713 1.845 rillig * See also ApplyModifier_Defined.
2714 1.845 rillig */
2715 1.703 rillig int nest = 0;
2716 1.703 rillig const char *p;
2717 1.703 rillig for (p = mod + 1; *p != '\0' && !(*p == ':' && nest == 0); p++) {
2718 1.703 rillig if (*p == '\\' &&
2719 1.891 rillig (IsDelimiter(p[1], ch) || p[1] == ch->startc)) {
2720 1.703 rillig if (!needSubst)
2721 1.895 rillig copy = true;
2722 1.703 rillig p++;
2723 1.703 rillig continue;
2724 1.703 rillig }
2725 1.703 rillig if (*p == '$')
2726 1.895 rillig needSubst = true;
2727 1.703 rillig if (*p == '(' || *p == '{')
2728 1.703 rillig nest++;
2729 1.703 rillig if (*p == ')' || *p == '}') {
2730 1.703 rillig nest--;
2731 1.703 rillig if (nest < 0)
2732 1.703 rillig break;
2733 1.703 rillig }
2734 1.236 rillig }
2735 1.703 rillig *pp = p;
2736 1.703 rillig endpat = p;
2737 1.703 rillig
2738 1.703 rillig if (copy) {
2739 1.703 rillig char *dst;
2740 1.703 rillig const char *src;
2741 1.703 rillig
2742 1.703 rillig /* Compress the \:'s out of the pattern. */
2743 1.703 rillig pattern = bmake_malloc((size_t)(endpat - (mod + 1)) + 1);
2744 1.703 rillig dst = pattern;
2745 1.703 rillig src = mod + 1;
2746 1.703 rillig for (; src < endpat; src++, dst++) {
2747 1.703 rillig if (src[0] == '\\' && src + 1 < endpat &&
2748 1.891 rillig /* XXX: ch->startc is missing here; see above */
2749 1.891 rillig IsDelimiter(src[1], ch))
2750 1.703 rillig src++;
2751 1.703 rillig *dst = *src;
2752 1.703 rillig }
2753 1.703 rillig *dst = '\0';
2754 1.703 rillig } else {
2755 1.703 rillig pattern = bmake_strsedup(mod + 1, endpat);
2756 1.236 rillig }
2757 1.288 rillig
2758 1.703 rillig if (needSubst) {
2759 1.703 rillig char *old_pattern = pattern;
2760 1.1013 rillig /*
2761 1.1013 rillig * XXX: Contrary to ParseModifierPart, a dollar in a ':M' or
2762 1.1013 rillig * ':N' modifier must be escaped as '$$', not as '\$'.
2763 1.1013 rillig */
2764 1.906 rillig (void)Var_Subst(pattern, expr->scope, expr->emode, &pattern);
2765 1.703 rillig /* TODO: handle errors */
2766 1.703 rillig free(old_pattern);
2767 1.236 rillig }
2768 1.346 rillig
2769 1.908 rillig DEBUG2(VAR, "Pattern for ':%c' is \"%s\"\n", mod[0], pattern);
2770 1.346 rillig
2771 1.1013 rillig return pattern;
2772 1.845 rillig }
2773 1.845 rillig
2774 1.845 rillig /* :Mpattern or :Npattern */
2775 1.845 rillig static ApplyModifierResult
2776 1.891 rillig ApplyModifier_Match(const char **pp, ModChain *ch)
2777 1.845 rillig {
2778 1.996 rillig char mod = **pp;
2779 1.845 rillig char *pattern;
2780 1.845 rillig
2781 1.1013 rillig pattern = ParseModifier_Match(pp, ch);
2782 1.845 rillig
2783 1.905 rillig if (ModChain_ShouldEval(ch)) {
2784 1.876 rillig ModifyWordProc modifyWord =
2785 1.876 rillig mod == 'M' ? ModifyWord_Match : ModifyWord_NoMatch;
2786 1.891 rillig ModifyWords(ch, modifyWord, pattern, ch->oneBigWord);
2787 1.876 rillig }
2788 1.876 rillig
2789 1.703 rillig free(pattern);
2790 1.703 rillig return AMR_OK;
2791 1.236 rillig }
2792 1.236 rillig
2793 1.860 rillig static void
2794 1.927 rillig ParsePatternFlags(const char **pp, PatternFlags *pflags, bool *oneBigWord)
2795 1.860 rillig {
2796 1.860 rillig for (;; (*pp)++) {
2797 1.860 rillig if (**pp == 'g')
2798 1.895 rillig pflags->subGlobal = true;
2799 1.860 rillig else if (**pp == '1')
2800 1.895 rillig pflags->subOnce = true;
2801 1.860 rillig else if (**pp == 'W')
2802 1.895 rillig *oneBigWord = true;
2803 1.860 rillig else
2804 1.860 rillig break;
2805 1.860 rillig }
2806 1.860 rillig }
2807 1.860 rillig
2808 1.927 rillig MAKE_INLINE PatternFlags
2809 1.927 rillig PatternFlags_None(void)
2810 1.897 rillig {
2811 1.927 rillig PatternFlags pflags = { false, false, false, false };
2812 1.897 rillig return pflags;
2813 1.897 rillig }
2814 1.897 rillig
2815 1.236 rillig /* :S,from,to, */
2816 1.356 rillig static ApplyModifierResult
2817 1.891 rillig ApplyModifier_Subst(const char **pp, ModChain *ch)
2818 1.236 rillig {
2819 1.703 rillig struct ModifyWord_SubstArgs args;
2820 1.895 rillig bool oneBigWord;
2821 1.703 rillig VarParseResult res;
2822 1.921 rillig LazyBuf lhsBuf, rhsBuf;
2823 1.299 rillig
2824 1.703 rillig char delim = (*pp)[1];
2825 1.703 rillig if (delim == '\0') {
2826 1.846 rillig Error("Missing delimiter for modifier ':S'");
2827 1.703 rillig (*pp)++;
2828 1.703 rillig return AMR_CLEANUP;
2829 1.703 rillig }
2830 1.236 rillig
2831 1.703 rillig *pp += 2;
2832 1.236 rillig
2833 1.927 rillig args.pflags = PatternFlags_None();
2834 1.895 rillig args.matched = false;
2835 1.236 rillig
2836 1.703 rillig if (**pp == '^') {
2837 1.895 rillig args.pflags.anchorStart = true;
2838 1.703 rillig (*pp)++;
2839 1.703 rillig }
2840 1.703 rillig
2841 1.921 rillig res = ParseModifierPartSubst(pp, delim, ch->expr->emode, ch, &lhsBuf,
2842 1.921 rillig &args.pflags, NULL);
2843 1.703 rillig if (res != VPR_OK)
2844 1.703 rillig return AMR_CLEANUP;
2845 1.921 rillig args.lhs = LazyBuf_Get(&lhsBuf);
2846 1.703 rillig
2847 1.921 rillig res = ParseModifierPartSubst(pp, delim, ch->expr->emode, ch, &rhsBuf,
2848 1.921 rillig NULL, &args);
2849 1.921 rillig if (res != VPR_OK) {
2850 1.921 rillig LazyBuf_Done(&lhsBuf);
2851 1.703 rillig return AMR_CLEANUP;
2852 1.921 rillig }
2853 1.921 rillig args.rhs = LazyBuf_Get(&rhsBuf);
2854 1.703 rillig
2855 1.891 rillig oneBigWord = ch->oneBigWord;
2856 1.860 rillig ParsePatternFlags(pp, &args.pflags, &oneBigWord);
2857 1.236 rillig
2858 1.891 rillig ModifyWords(ch, ModifyWord_Subst, &args, oneBigWord);
2859 1.236 rillig
2860 1.921 rillig LazyBuf_Done(&lhsBuf);
2861 1.921 rillig LazyBuf_Done(&rhsBuf);
2862 1.703 rillig return AMR_OK;
2863 1.236 rillig }
2864 1.236 rillig
2865 1.236 rillig #ifndef NO_REGEX
2866 1.291 rillig
2867 1.236 rillig /* :C,from,to, */
2868 1.356 rillig static ApplyModifierResult
2869 1.891 rillig ApplyModifier_Regex(const char **pp, ModChain *ch)
2870 1.236 rillig {
2871 1.703 rillig struct ModifyWord_SubstRegexArgs args;
2872 1.895 rillig bool oneBigWord;
2873 1.703 rillig int error;
2874 1.703 rillig VarParseResult res;
2875 1.921 rillig LazyBuf reBuf, replaceBuf;
2876 1.984 rillig FStr re;
2877 1.703 rillig
2878 1.703 rillig char delim = (*pp)[1];
2879 1.703 rillig if (delim == '\0') {
2880 1.703 rillig Error("Missing delimiter for :C modifier");
2881 1.703 rillig (*pp)++;
2882 1.703 rillig return AMR_CLEANUP;
2883 1.703 rillig }
2884 1.703 rillig
2885 1.703 rillig *pp += 2;
2886 1.236 rillig
2887 1.921 rillig res = ParseModifierPart(pp, delim, ch->expr->emode, ch, &reBuf);
2888 1.703 rillig if (res != VPR_OK)
2889 1.703 rillig return AMR_CLEANUP;
2890 1.921 rillig re = LazyBuf_DoneGet(&reBuf);
2891 1.703 rillig
2892 1.921 rillig res = ParseModifierPart(pp, delim, ch->expr->emode, ch, &replaceBuf);
2893 1.921 rillig if (res != VPR_OK) {
2894 1.921 rillig FStr_Done(&re);
2895 1.703 rillig return AMR_CLEANUP;
2896 1.703 rillig }
2897 1.984 rillig args.replace = LazyBuf_Get(&replaceBuf);
2898 1.703 rillig
2899 1.927 rillig args.pflags = PatternFlags_None();
2900 1.895 rillig args.matched = false;
2901 1.891 rillig oneBigWord = ch->oneBigWord;
2902 1.860 rillig ParsePatternFlags(pp, &args.pflags, &oneBigWord);
2903 1.236 rillig
2904 1.905 rillig if (!ModChain_ShouldEval(ch)) {
2905 1.984 rillig LazyBuf_Done(&replaceBuf);
2906 1.921 rillig FStr_Done(&re);
2907 1.856 rillig return AMR_OK;
2908 1.856 rillig }
2909 1.856 rillig
2910 1.921 rillig error = regcomp(&args.re, re.str, REG_EXTENDED);
2911 1.703 rillig if (error != 0) {
2912 1.703 rillig VarREError(error, &args.re, "Regex compilation error");
2913 1.984 rillig LazyBuf_Done(&replaceBuf);
2914 1.921 rillig FStr_Done(&re);
2915 1.703 rillig return AMR_CLEANUP;
2916 1.236 rillig }
2917 1.236 rillig
2918 1.703 rillig args.nsub = args.re.re_nsub + 1;
2919 1.703 rillig if (args.nsub > 10)
2920 1.703 rillig args.nsub = 10;
2921 1.820 rillig
2922 1.891 rillig ModifyWords(ch, ModifyWord_SubstRegex, &args, oneBigWord);
2923 1.820 rillig
2924 1.703 rillig regfree(&args.re);
2925 1.984 rillig LazyBuf_Done(&replaceBuf);
2926 1.921 rillig FStr_Done(&re);
2927 1.703 rillig return AMR_OK;
2928 1.703 rillig }
2929 1.236 rillig
2930 1.236 rillig #endif
2931 1.236 rillig
2932 1.555 rillig /* :Q, :q */
2933 1.555 rillig static ApplyModifierResult
2934 1.891 rillig ApplyModifier_Quote(const char **pp, ModChain *ch)
2935 1.555 rillig {
2936 1.924 rillig LazyBuf buf;
2937 1.924 rillig bool quoteDollar;
2938 1.924 rillig
2939 1.924 rillig quoteDollar = **pp == 'q';
2940 1.891 rillig if (!IsDelimiter((*pp)[1], ch))
2941 1.703 rillig return AMR_UNKNOWN;
2942 1.861 rillig (*pp)++;
2943 1.861 rillig
2944 1.924 rillig if (!ModChain_ShouldEval(ch))
2945 1.924 rillig return AMR_OK;
2946 1.924 rillig
2947 1.965 rillig VarQuote(Expr_Str(ch->expr), quoteDollar, &buf);
2948 1.924 rillig if (buf.data != NULL)
2949 1.924 rillig Expr_SetValue(ch->expr, LazyBuf_DoneGet(&buf));
2950 1.924 rillig else
2951 1.924 rillig LazyBuf_Done(&buf);
2952 1.861 rillig
2953 1.861 rillig return AMR_OK;
2954 1.555 rillig }
2955 1.555 rillig
2956 1.779 rillig /*ARGSUSED*/
2957 1.278 rillig static void
2958 1.919 rillig ModifyWord_Copy(Substring word, SepBuf *buf, void *data MAKE_ATTR_UNUSED)
2959 1.278 rillig {
2960 1.919 rillig SepBuf_AddSubstring(buf, word);
2961 1.275 rillig }
2962 1.275 rillig
2963 1.289 rillig /* :ts<separator> */
2964 1.356 rillig static ApplyModifierResult
2965 1.891 rillig ApplyModifier_ToSep(const char **pp, ModChain *ch)
2966 1.289 rillig {
2967 1.703 rillig const char *sep = *pp + 2;
2968 1.703 rillig
2969 1.873 rillig /*
2970 1.885 rillig * Even in parse-only mode, proceed as normal since there is
2971 1.873 rillig * neither any observable side effect nor a performance penalty.
2972 1.885 rillig * Checking for wantRes for every single piece of code in here
2973 1.873 rillig * would make the code in this function too hard to read.
2974 1.873 rillig */
2975 1.873 rillig
2976 1.703 rillig /* ":ts<any><endc>" or ":ts<any>:" */
2977 1.891 rillig if (sep[0] != ch->endc && IsDelimiter(sep[1], ch)) {
2978 1.864 rillig *pp = sep + 1;
2979 1.891 rillig ch->sep = sep[0];
2980 1.703 rillig goto ok;
2981 1.703 rillig }
2982 1.468 rillig
2983 1.703 rillig /* ":ts<endc>" or ":ts:" */
2984 1.891 rillig if (IsDelimiter(sep[0], ch)) {
2985 1.864 rillig *pp = sep;
2986 1.891 rillig ch->sep = '\0'; /* no separator */
2987 1.703 rillig goto ok;
2988 1.703 rillig }
2989 1.468 rillig
2990 1.703 rillig /* ":ts<unrecognised><unrecognised>". */
2991 1.703 rillig if (sep[0] != '\\') {
2992 1.703 rillig (*pp)++; /* just for backwards compatibility */
2993 1.703 rillig return AMR_BAD;
2994 1.703 rillig }
2995 1.468 rillig
2996 1.703 rillig /* ":ts\n" */
2997 1.703 rillig if (sep[1] == 'n') {
2998 1.864 rillig *pp = sep + 2;
2999 1.891 rillig ch->sep = '\n';
3000 1.703 rillig goto ok;
3001 1.703 rillig }
3002 1.468 rillig
3003 1.703 rillig /* ":ts\t" */
3004 1.703 rillig if (sep[1] == 't') {
3005 1.864 rillig *pp = sep + 2;
3006 1.891 rillig ch->sep = '\t';
3007 1.703 rillig goto ok;
3008 1.703 rillig }
3009 1.468 rillig
3010 1.703 rillig /* ":ts\x40" or ":ts\100" */
3011 1.703 rillig {
3012 1.703 rillig const char *p = sep + 1;
3013 1.703 rillig int base = 8; /* assume octal */
3014 1.468 rillig
3015 1.703 rillig if (sep[1] == 'x') {
3016 1.703 rillig base = 16;
3017 1.703 rillig p++;
3018 1.703 rillig } else if (!ch_isdigit(sep[1])) {
3019 1.703 rillig (*pp)++; /* just for backwards compatibility */
3020 1.703 rillig return AMR_BAD; /* ":ts<backslash><unrecognised>". */
3021 1.703 rillig }
3022 1.289 rillig
3023 1.891 rillig if (!TryParseChar(&p, base, &ch->sep)) {
3024 1.703 rillig Parse_Error(PARSE_FATAL,
3025 1.970 rillig "Invalid character number at \"%s\"", p);
3026 1.703 rillig return AMR_CLEANUP;
3027 1.703 rillig }
3028 1.891 rillig if (!IsDelimiter(*p, ch)) {
3029 1.703 rillig (*pp)++; /* just for backwards compatibility */
3030 1.703 rillig return AMR_BAD;
3031 1.703 rillig }
3032 1.468 rillig
3033 1.703 rillig *pp = p;
3034 1.556 rillig }
3035 1.635 rillig
3036 1.468 rillig ok:
3037 1.891 rillig ModifyWords(ch, ModifyWord_Copy, NULL, ch->oneBigWord);
3038 1.703 rillig return AMR_OK;
3039 1.289 rillig }
3040 1.289 rillig
3041 1.738 rillig static char *
3042 1.738 rillig str_toupper(const char *str)
3043 1.738 rillig {
3044 1.738 rillig char *res;
3045 1.738 rillig size_t i, len;
3046 1.738 rillig
3047 1.738 rillig len = strlen(str);
3048 1.738 rillig res = bmake_malloc(len + 1);
3049 1.738 rillig for (i = 0; i < len + 1; i++)
3050 1.738 rillig res[i] = ch_toupper(str[i]);
3051 1.738 rillig
3052 1.738 rillig return res;
3053 1.738 rillig }
3054 1.738 rillig
3055 1.738 rillig static char *
3056 1.738 rillig str_tolower(const char *str)
3057 1.738 rillig {
3058 1.738 rillig char *res;
3059 1.738 rillig size_t i, len;
3060 1.738 rillig
3061 1.738 rillig len = strlen(str);
3062 1.738 rillig res = bmake_malloc(len + 1);
3063 1.738 rillig for (i = 0; i < len + 1; i++)
3064 1.738 rillig res[i] = ch_tolower(str[i]);
3065 1.738 rillig
3066 1.738 rillig return res;
3067 1.738 rillig }
3068 1.738 rillig
3069 1.289 rillig /* :tA, :tu, :tl, :ts<separator>, etc. */
3070 1.356 rillig static ApplyModifierResult
3071 1.891 rillig ApplyModifier_To(const char **pp, ModChain *ch)
3072 1.236 rillig {
3073 1.891 rillig Expr *expr = ch->expr;
3074 1.703 rillig const char *mod = *pp;
3075 1.703 rillig assert(mod[0] == 't');
3076 1.363 rillig
3077 1.891 rillig if (IsDelimiter(mod[1], ch) || mod[1] == '\0') {
3078 1.703 rillig *pp = mod + 1;
3079 1.703 rillig return AMR_BAD; /* Found ":t<endc>" or ":t:". */
3080 1.703 rillig }
3081 1.289 rillig
3082 1.703 rillig if (mod[1] == 's')
3083 1.891 rillig return ApplyModifier_ToSep(pp, ch);
3084 1.289 rillig
3085 1.891 rillig if (!IsDelimiter(mod[2], ch)) { /* :t<unrecognized> */
3086 1.703 rillig *pp = mod + 1;
3087 1.810 rillig return AMR_BAD;
3088 1.703 rillig }
3089 1.236 rillig
3090 1.810 rillig if (mod[1] == 'A') { /* :tA */
3091 1.864 rillig *pp = mod + 2;
3092 1.891 rillig ModifyWords(ch, ModifyWord_Realpath, NULL, ch->oneBigWord);
3093 1.703 rillig return AMR_OK;
3094 1.703 rillig }
3095 1.475 rillig
3096 1.810 rillig if (mod[1] == 'u') { /* :tu */
3097 1.864 rillig *pp = mod + 2;
3098 1.950 rillig if (Expr_ShouldEval(expr))
3099 1.965 rillig Expr_SetValueOwn(expr, str_toupper(Expr_Str(expr)));
3100 1.703 rillig return AMR_OK;
3101 1.703 rillig }
3102 1.475 rillig
3103 1.810 rillig if (mod[1] == 'l') { /* :tl */
3104 1.864 rillig *pp = mod + 2;
3105 1.950 rillig if (Expr_ShouldEval(expr))
3106 1.965 rillig Expr_SetValueOwn(expr, str_tolower(Expr_Str(expr)));
3107 1.703 rillig return AMR_OK;
3108 1.703 rillig }
3109 1.475 rillig
3110 1.810 rillig if (mod[1] == 'W' || mod[1] == 'w') { /* :tW, :tw */
3111 1.864 rillig *pp = mod + 2;
3112 1.891 rillig ch->oneBigWord = mod[1] == 'W';
3113 1.703 rillig return AMR_OK;
3114 1.703 rillig }
3115 1.475 rillig
3116 1.703 rillig /* Found ":t<unrecognised>:" or ":t<unrecognised><endc>". */
3117 1.864 rillig *pp = mod + 1; /* XXX: unnecessary but observable */
3118 1.703 rillig return AMR_BAD;
3119 1.236 rillig }
3120 1.236 rillig
3121 1.634 rillig /* :[#], :[1], :[-1..1], etc. */
3122 1.356 rillig static ApplyModifierResult
3123 1.891 rillig ApplyModifier_Words(const char **pp, ModChain *ch)
3124 1.236 rillig {
3125 1.891 rillig Expr *expr = ch->expr;
3126 1.921 rillig const char *estr;
3127 1.703 rillig int first, last;
3128 1.703 rillig VarParseResult res;
3129 1.703 rillig const char *p;
3130 1.921 rillig LazyBuf estrBuf;
3131 1.921 rillig FStr festr;
3132 1.412 rillig
3133 1.703 rillig (*pp)++; /* skip the '[' */
3134 1.921 rillig res = ParseModifierPart(pp, ']', expr->emode, ch, &estrBuf);
3135 1.703 rillig if (res != VPR_OK)
3136 1.703 rillig return AMR_CLEANUP;
3137 1.921 rillig festr = LazyBuf_DoneGet(&estrBuf);
3138 1.921 rillig estr = festr.str;
3139 1.703 rillig
3140 1.891 rillig if (!IsDelimiter(**pp, ch))
3141 1.810 rillig goto bad_modifier; /* Found junk after ']' */
3142 1.703 rillig
3143 1.905 rillig if (!ModChain_ShouldEval(ch))
3144 1.877 rillig goto ok;
3145 1.877 rillig
3146 1.703 rillig if (estr[0] == '\0')
3147 1.810 rillig goto bad_modifier; /* Found ":[]". */
3148 1.703 rillig
3149 1.810 rillig if (estr[0] == '#' && estr[1] == '\0') { /* Found ":[#]" */
3150 1.891 rillig if (ch->oneBigWord) {
3151 1.823 rillig Expr_SetValueRefer(expr, "1");
3152 1.703 rillig } else {
3153 1.703 rillig Buffer buf;
3154 1.412 rillig
3155 1.967 rillig SubstringWords words = Expr_Words(expr);
3156 1.703 rillig size_t ac = words.len;
3157 1.961 rillig SubstringWords_Free(words);
3158 1.703 rillig
3159 1.703 rillig /* 3 digits + '\0' is usually enough */
3160 1.703 rillig Buf_InitSize(&buf, 4);
3161 1.703 rillig Buf_AddInt(&buf, (int)ac);
3162 1.823 rillig Expr_SetValueOwn(expr, Buf_DoneData(&buf));
3163 1.703 rillig }
3164 1.703 rillig goto ok;
3165 1.703 rillig }
3166 1.494 rillig
3167 1.810 rillig if (estr[0] == '*' && estr[1] == '\0') { /* Found ":[*]" */
3168 1.895 rillig ch->oneBigWord = true;
3169 1.703 rillig goto ok;
3170 1.236 rillig }
3171 1.288 rillig
3172 1.810 rillig if (estr[0] == '@' && estr[1] == '\0') { /* Found ":[@]" */
3173 1.895 rillig ch->oneBigWord = false;
3174 1.703 rillig goto ok;
3175 1.703 rillig }
3176 1.288 rillig
3177 1.703 rillig /*
3178 1.703 rillig * We expect estr to contain a single integer for :[N], or two
3179 1.703 rillig * integers separated by ".." for :[start..end].
3180 1.703 rillig */
3181 1.703 rillig p = estr;
3182 1.703 rillig if (!TryParseIntBase0(&p, &first))
3183 1.703 rillig goto bad_modifier; /* Found junk instead of a number */
3184 1.703 rillig
3185 1.703 rillig if (p[0] == '\0') { /* Found only one integer in :[N] */
3186 1.703 rillig last = first;
3187 1.703 rillig } else if (p[0] == '.' && p[1] == '.' && p[2] != '\0') {
3188 1.703 rillig /* Expecting another integer after ".." */
3189 1.703 rillig p += 2;
3190 1.703 rillig if (!TryParseIntBase0(&p, &last) || *p != '\0')
3191 1.703 rillig goto bad_modifier; /* Found junk after ".." */
3192 1.703 rillig } else
3193 1.703 rillig goto bad_modifier; /* Found junk instead of ".." */
3194 1.288 rillig
3195 1.703 rillig /*
3196 1.703 rillig * Now first and last are properly filled in, but we still have to
3197 1.703 rillig * check for 0 as a special case.
3198 1.703 rillig */
3199 1.703 rillig if (first == 0 && last == 0) {
3200 1.703 rillig /* ":[0]" or perhaps ":[0..0]" */
3201 1.895 rillig ch->oneBigWord = true;
3202 1.703 rillig goto ok;
3203 1.703 rillig }
3204 1.288 rillig
3205 1.703 rillig /* ":[0..N]" or ":[N..0]" */
3206 1.703 rillig if (first == 0 || last == 0)
3207 1.703 rillig goto bad_modifier;
3208 1.703 rillig
3209 1.703 rillig /* Normal case: select the words described by first and last. */
3210 1.823 rillig Expr_SetValueOwn(expr,
3211 1.965 rillig VarSelectWords(Expr_Str(expr), first, last,
3212 1.891 rillig ch->sep, ch->oneBigWord));
3213 1.288 rillig
3214 1.288 rillig ok:
3215 1.921 rillig FStr_Done(&festr);
3216 1.703 rillig return AMR_OK;
3217 1.288 rillig
3218 1.288 rillig bad_modifier:
3219 1.921 rillig FStr_Done(&festr);
3220 1.703 rillig return AMR_BAD;
3221 1.236 rillig }
3222 1.236 rillig
3223 1.1016 rillig #if __STDC_VERSION__ >= 199901L
3224 1.939 sjg # define NUM_TYPE long long
3225 1.1009 rillig # define PARSE_NUM_TYPE strtoll
3226 1.1009 rillig #else
3227 1.1009 rillig # define NUM_TYPE long
3228 1.1009 rillig # define PARSE_NUM_TYPE strtol
3229 1.939 sjg #endif
3230 1.939 sjg
3231 1.939 sjg static NUM_TYPE
3232 1.964 rillig num_val(Substring s)
3233 1.939 sjg {
3234 1.939 sjg NUM_TYPE val;
3235 1.939 sjg char *ep;
3236 1.939 sjg
3237 1.1009 rillig val = PARSE_NUM_TYPE(s.start, &ep, 0);
3238 1.964 rillig if (ep != s.start) {
3239 1.939 sjg switch (*ep) {
3240 1.939 sjg case 'K':
3241 1.939 sjg case 'k':
3242 1.939 sjg val <<= 10;
3243 1.939 sjg break;
3244 1.939 sjg case 'M':
3245 1.939 sjg case 'm':
3246 1.939 sjg val <<= 20;
3247 1.939 sjg break;
3248 1.939 sjg case 'G':
3249 1.939 sjg case 'g':
3250 1.939 sjg val <<= 30;
3251 1.939 sjg break;
3252 1.939 sjg }
3253 1.939 sjg }
3254 1.939 sjg return val;
3255 1.939 sjg }
3256 1.939 sjg
3257 1.939 sjg static int
3258 1.964 rillig SubNumAsc(const void *sa, const void *sb)
3259 1.939 sjg {
3260 1.939 sjg NUM_TYPE a, b;
3261 1.939 sjg
3262 1.964 rillig a = num_val(*((const Substring *)sa));
3263 1.964 rillig b = num_val(*((const Substring *)sb));
3264 1.939 sjg return (a > b) ? 1 : (b > a) ? -1 : 0;
3265 1.939 sjg }
3266 1.940 rillig
3267 1.939 sjg static int
3268 1.964 rillig SubNumDesc(const void *sa, const void *sb)
3269 1.939 sjg {
3270 1.964 rillig return SubNumAsc(sb, sa);
3271 1.939 sjg }
3272 1.940 rillig
3273 1.404 rillig static int
3274 1.964 rillig SubStrAsc(const void *sa, const void *sb)
3275 1.404 rillig {
3276 1.964 rillig return strcmp(
3277 1.964 rillig ((const Substring *)sa)->start, ((const Substring *)sb)->start);
3278 1.404 rillig }
3279 1.404 rillig
3280 1.404 rillig static int
3281 1.964 rillig SubStrDesc(const void *sa, const void *sb)
3282 1.404 rillig {
3283 1.964 rillig return SubStrAsc(sb, sa);
3284 1.404 rillig }
3285 1.404 rillig
3286 1.705 rillig static void
3287 1.962 rillig ShuffleSubstrings(Substring *strs, size_t n)
3288 1.705 rillig {
3289 1.705 rillig size_t i;
3290 1.705 rillig
3291 1.705 rillig for (i = n - 1; i > 0; i--) {
3292 1.705 rillig size_t rndidx = (size_t)random() % (i + 1);
3293 1.962 rillig Substring t = strs[i];
3294 1.705 rillig strs[i] = strs[rndidx];
3295 1.705 rillig strs[rndidx] = t;
3296 1.705 rillig }
3297 1.705 rillig }
3298 1.705 rillig
3299 1.943 rillig /*
3300 1.943 rillig * :O order ascending
3301 1.943 rillig * :Or order descending
3302 1.943 rillig * :Ox shuffle
3303 1.943 rillig * :On numeric ascending
3304 1.943 rillig * :Onr, :Orn numeric descending
3305 1.939 sjg */
3306 1.356 rillig static ApplyModifierResult
3307 1.891 rillig ApplyModifier_Order(const char **pp, ModChain *ch)
3308 1.236 rillig {
3309 1.942 rillig const char *mod = *pp;
3310 1.962 rillig SubstringWords words;
3311 1.946 rillig int (*cmp)(const void *, const void *);
3312 1.401 rillig
3313 1.942 rillig if (IsDelimiter(mod[1], ch) || mod[1] == '\0') {
3314 1.964 rillig cmp = SubStrAsc;
3315 1.939 sjg (*pp)++;
3316 1.942 rillig } else if (IsDelimiter(mod[2], ch) || mod[2] == '\0') {
3317 1.942 rillig if (mod[1] == 'n')
3318 1.964 rillig cmp = SubNumAsc;
3319 1.942 rillig else if (mod[1] == 'r')
3320 1.964 rillig cmp = SubStrDesc;
3321 1.942 rillig else if (mod[1] == 'x')
3322 1.944 rillig cmp = NULL;
3323 1.942 rillig else
3324 1.942 rillig goto bad;
3325 1.942 rillig *pp += 2;
3326 1.942 rillig } else if (IsDelimiter(mod[3], ch) || mod[3] == '\0') {
3327 1.942 rillig if ((mod[1] == 'n' && mod[2] == 'r') ||
3328 1.944 rillig (mod[1] == 'r' && mod[2] == 'n'))
3329 1.964 rillig cmp = SubNumDesc;
3330 1.944 rillig else
3331 1.942 rillig goto bad;
3332 1.942 rillig *pp += 3;
3333 1.996 rillig } else
3334 1.942 rillig goto bad;
3335 1.402 rillig
3336 1.905 rillig if (!ModChain_ShouldEval(ch))
3337 1.879 rillig return AMR_OK;
3338 1.879 rillig
3339 1.967 rillig words = Expr_Words(ch->expr);
3340 1.944 rillig if (cmp == NULL)
3341 1.962 rillig ShuffleSubstrings(words.words, words.len);
3342 1.964 rillig else {
3343 1.964 rillig assert(words.words[0].end[0] == '\0');
3344 1.944 rillig qsort(words.words, words.len, sizeof(words.words[0]), cmp);
3345 1.964 rillig }
3346 1.962 rillig Expr_SetValueOwn(ch->expr, SubstringWords_JoinFree(words));
3347 1.878 rillig
3348 1.705 rillig return AMR_OK;
3349 1.942 rillig
3350 1.942 rillig bad:
3351 1.942 rillig (*pp)++;
3352 1.942 rillig return AMR_BAD;
3353 1.236 rillig }
3354 1.236 rillig
3355 1.236 rillig /* :? then : else */
3356 1.356 rillig static ApplyModifierResult
3357 1.891 rillig ApplyModifier_IfElse(const char **pp, ModChain *ch)
3358 1.236 rillig {
3359 1.891 rillig Expr *expr = ch->expr;
3360 1.703 rillig VarParseResult res;
3361 1.985 rillig LazyBuf thenBuf;
3362 1.985 rillig LazyBuf elseBuf;
3363 1.412 rillig
3364 1.906 rillig VarEvalMode then_emode = VARE_PARSE_ONLY;
3365 1.906 rillig VarEvalMode else_emode = VARE_PARSE_ONLY;
3366 1.236 rillig
3367 1.991 rillig CondResult cond_rc = CR_TRUE; /* just not CR_ERROR */
3368 1.905 rillig if (Expr_ShouldEval(expr)) {
3369 1.990 rillig cond_rc = Cond_EvalCondition(expr->name);
3370 1.990 rillig if (cond_rc == CR_TRUE)
3371 1.906 rillig then_emode = expr->emode;
3372 1.990 rillig if (cond_rc == CR_FALSE)
3373 1.906 rillig else_emode = expr->emode;
3374 1.703 rillig }
3375 1.703 rillig
3376 1.988 rillig (*pp)++; /* skip past the '?' */
3377 1.985 rillig res = ParseModifierPart(pp, ':', then_emode, ch, &thenBuf);
3378 1.703 rillig if (res != VPR_OK)
3379 1.703 rillig return AMR_CLEANUP;
3380 1.703 rillig
3381 1.985 rillig res = ParseModifierPart(pp, ch->endc, else_emode, ch, &elseBuf);
3382 1.921 rillig if (res != VPR_OK) {
3383 1.985 rillig LazyBuf_Done(&thenBuf);
3384 1.703 rillig return AMR_CLEANUP;
3385 1.921 rillig }
3386 1.703 rillig
3387 1.891 rillig (*pp)--; /* Go back to the ch->endc. */
3388 1.809 rillig
3389 1.990 rillig if (cond_rc == CR_ERROR) {
3390 1.985 rillig Substring thenExpr = LazyBuf_Get(&thenBuf);
3391 1.985 rillig Substring elseExpr = LazyBuf_Get(&elseBuf);
3392 1.985 rillig Error("Bad conditional expression '%s' in '%s?%.*s:%.*s'",
3393 1.985 rillig expr->name, expr->name,
3394 1.985 rillig (int)Substring_Length(thenExpr), thenExpr.start,
3395 1.985 rillig (int)Substring_Length(elseExpr), elseExpr.start);
3396 1.985 rillig LazyBuf_Done(&thenBuf);
3397 1.985 rillig LazyBuf_Done(&elseBuf);
3398 1.703 rillig return AMR_CLEANUP;
3399 1.703 rillig }
3400 1.703 rillig
3401 1.950 rillig if (!Expr_ShouldEval(expr)) {
3402 1.985 rillig LazyBuf_Done(&thenBuf);
3403 1.985 rillig LazyBuf_Done(&elseBuf);
3404 1.990 rillig } else if (cond_rc == CR_TRUE) {
3405 1.985 rillig Expr_SetValue(expr, LazyBuf_DoneGet(&thenBuf));
3406 1.985 rillig LazyBuf_Done(&elseBuf);
3407 1.703 rillig } else {
3408 1.985 rillig LazyBuf_Done(&thenBuf);
3409 1.985 rillig Expr_SetValue(expr, LazyBuf_DoneGet(&elseBuf));
3410 1.703 rillig }
3411 1.823 rillig Expr_Define(expr);
3412 1.703 rillig return AMR_OK;
3413 1.236 rillig }
3414 1.236 rillig
3415 1.283 rillig /*
3416 1.808 rillig * The ::= modifiers are special in that they do not read the variable value
3417 1.808 rillig * but instead assign to that variable. They always expand to an empty
3418 1.808 rillig * string.
3419 1.808 rillig *
3420 1.808 rillig * Their main purpose is in supporting .for loops that generate shell commands
3421 1.808 rillig * since an ordinary variable assignment at that point would terminate the
3422 1.808 rillig * dependency group for these targets. For example:
3423 1.283 rillig *
3424 1.808 rillig * list-targets: .USE
3425 1.283 rillig * .for i in ${.TARGET} ${.TARGET:R}.gz
3426 1.808 rillig * @${t::=$i}
3427 1.808 rillig * @echo 'The target is ${t:T}.'
3428 1.283 rillig * .endfor
3429 1.283 rillig *
3430 1.283 rillig * ::=<str> Assigns <str> as the new value of variable.
3431 1.283 rillig * ::?=<str> Assigns <str> as value of variable if
3432 1.283 rillig * it was not already set.
3433 1.283 rillig * ::+=<str> Appends <str> to variable.
3434 1.283 rillig * ::!=<cmd> Assigns output of <cmd> as the new value of
3435 1.283 rillig * variable.
3436 1.283 rillig */
3437 1.356 rillig static ApplyModifierResult
3438 1.891 rillig ApplyModifier_Assign(const char **pp, ModChain *ch)
3439 1.236 rillig {
3440 1.891 rillig Expr *expr = ch->expr;
3441 1.802 rillig GNode *scope;
3442 1.921 rillig FStr val;
3443 1.703 rillig VarParseResult res;
3444 1.921 rillig LazyBuf buf;
3445 1.272 rillig
3446 1.703 rillig const char *mod = *pp;
3447 1.703 rillig const char *op = mod + 1;
3448 1.272 rillig
3449 1.703 rillig if (op[0] == '=')
3450 1.992 rillig goto found_op;
3451 1.992 rillig if ((op[0] == '+' || op[0] == '?' || op[0] == '!') && op[1] == '=')
3452 1.992 rillig goto found_op;
3453 1.703 rillig return AMR_UNKNOWN; /* "::<unrecognised>" */
3454 1.862 rillig
3455 1.992 rillig found_op:
3456 1.898 rillig if (expr->name[0] == '\0') {
3457 1.703 rillig *pp = mod + 1;
3458 1.703 rillig return AMR_BAD;
3459 1.703 rillig }
3460 1.272 rillig
3461 1.992 rillig *pp = mod + (op[0] == '+' || op[0] == '?' || op[0] == '!' ? 3 : 2);
3462 1.703 rillig
3463 1.921 rillig res = ParseModifierPart(pp, ch->endc, expr->emode, ch, &buf);
3464 1.703 rillig if (res != VPR_OK)
3465 1.703 rillig return AMR_CLEANUP;
3466 1.921 rillig val = LazyBuf_DoneGet(&buf);
3467 1.703 rillig
3468 1.891 rillig (*pp)--; /* Go back to the ch->endc. */
3469 1.703 rillig
3470 1.905 rillig if (!Expr_ShouldEval(expr))
3471 1.882 rillig goto done;
3472 1.882 rillig
3473 1.881 rillig scope = expr->scope; /* scope where v belongs */
3474 1.881 rillig if (expr->defined == DEF_REGULAR && expr->scope != SCOPE_GLOBAL) {
3475 1.1010 rillig Var *v = VarFind(expr->name, expr->scope, false);
3476 1.1010 rillig if (v == NULL)
3477 1.881 rillig scope = SCOPE_GLOBAL;
3478 1.881 rillig else
3479 1.1010 rillig VarFreeShortLived(v);
3480 1.881 rillig }
3481 1.881 rillig
3482 1.999 rillig if (op[0] == '+')
3483 1.921 rillig Var_Append(scope, expr->name, val.str);
3484 1.999 rillig else if (op[0] == '!') {
3485 1.1000 rillig char *output, *error;
3486 1.1000 rillig output = Cmd_Exec(val.str, &error);
3487 1.1000 rillig if (error != NULL) {
3488 1.1000 rillig Error("%s", error);
3489 1.1000 rillig free(error);
3490 1.1000 rillig } else
3491 1.1000 rillig Var_Set(scope, expr->name, output);
3492 1.1000 rillig free(output);
3493 1.999 rillig } else if (op[0] == '?' && expr->defined == DEF_REGULAR) {
3494 1.999 rillig /* Do nothing. */
3495 1.999 rillig } else
3496 1.921 rillig Var_Set(scope, expr->name, val.str);
3497 1.999 rillig
3498 1.882 rillig Expr_SetValueRefer(expr, "");
3499 1.882 rillig
3500 1.882 rillig done:
3501 1.921 rillig FStr_Done(&val);
3502 1.703 rillig return AMR_OK;
3503 1.236 rillig }
3504 1.236 rillig
3505 1.778 rillig /*
3506 1.778 rillig * :_=...
3507 1.778 rillig * remember current value
3508 1.778 rillig */
3509 1.356 rillig static ApplyModifierResult
3510 1.891 rillig ApplyModifier_Remember(const char **pp, ModChain *ch)
3511 1.236 rillig {
3512 1.891 rillig Expr *expr = ch->expr;
3513 1.703 rillig const char *mod = *pp;
3514 1.868 rillig FStr name;
3515 1.866 rillig
3516 1.891 rillig if (!ModMatchEq(mod, "_", ch))
3517 1.703 rillig return AMR_UNKNOWN;
3518 1.703 rillig
3519 1.868 rillig name = FStr_InitRefer("_");
3520 1.703 rillig if (mod[1] == '=') {
3521 1.847 rillig /*
3522 1.847 rillig * XXX: This ad-hoc call to strcspn deviates from the usual
3523 1.847 rillig * behavior defined in ParseModifierPart. This creates an
3524 1.847 rillig * unnecessary, undocumented inconsistency in make.
3525 1.847 rillig */
3526 1.869 rillig const char *arg = mod + 2;
3527 1.869 rillig size_t argLen = strcspn(arg, ":)}");
3528 1.869 rillig *pp = arg + argLen;
3529 1.869 rillig name = FStr_InitOwn(bmake_strldup(arg, argLen));
3530 1.868 rillig } else
3531 1.868 rillig *pp = mod + 1;
3532 1.864 rillig
3533 1.905 rillig if (Expr_ShouldEval(expr))
3534 1.965 rillig Var_Set(expr->scope, name.str, Expr_Str(expr));
3535 1.868 rillig FStr_Done(&name);
3536 1.864 rillig
3537 1.703 rillig return AMR_OK;
3538 1.236 rillig }
3539 1.236 rillig
3540 1.778 rillig /*
3541 1.778 rillig * Apply the given function to each word of the variable value,
3542 1.778 rillig * for a single-letter modifier such as :H, :T.
3543 1.778 rillig */
3544 1.434 rillig static ApplyModifierResult
3545 1.891 rillig ApplyModifier_WordFunc(const char **pp, ModChain *ch,
3546 1.822 rillig ModifyWordProc modifyWord)
3547 1.434 rillig {
3548 1.891 rillig if (!IsDelimiter((*pp)[1], ch))
3549 1.703 rillig return AMR_UNKNOWN;
3550 1.864 rillig (*pp)++;
3551 1.703 rillig
3552 1.905 rillig if (ModChain_ShouldEval(ch))
3553 1.891 rillig ModifyWords(ch, modifyWord, NULL, ch->oneBigWord);
3554 1.864 rillig
3555 1.703 rillig return AMR_OK;
3556 1.434 rillig }
3557 1.434 rillig
3558 1.931 rillig /* Remove adjacent duplicate words. */
3559 1.567 rillig static ApplyModifierResult
3560 1.891 rillig ApplyModifier_Unique(const char **pp, ModChain *ch)
3561 1.567 rillig {
3562 1.962 rillig SubstringWords words;
3563 1.931 rillig
3564 1.891 rillig if (!IsDelimiter((*pp)[1], ch))
3565 1.703 rillig return AMR_UNKNOWN;
3566 1.862 rillig (*pp)++;
3567 1.862 rillig
3568 1.931 rillig if (!ModChain_ShouldEval(ch))
3569 1.931 rillig return AMR_OK;
3570 1.931 rillig
3571 1.967 rillig words = Expr_Words(ch->expr);
3572 1.931 rillig
3573 1.931 rillig if (words.len > 1) {
3574 1.932 rillig size_t si, di;
3575 1.932 rillig
3576 1.932 rillig di = 0;
3577 1.932 rillig for (si = 1; si < words.len; si++) {
3578 1.962 rillig if (!Substring_Eq(words.words[si], words.words[di])) {
3579 1.932 rillig di++;
3580 1.932 rillig if (di != si)
3581 1.932 rillig words.words[di] = words.words[si];
3582 1.932 rillig }
3583 1.932 rillig }
3584 1.932 rillig words.len = di + 1;
3585 1.931 rillig }
3586 1.931 rillig
3587 1.962 rillig Expr_SetValueOwn(ch->expr, SubstringWords_JoinFree(words));
3588 1.862 rillig
3589 1.862 rillig return AMR_OK;
3590 1.567 rillig }
3591 1.567 rillig
3592 1.236 rillig #ifdef SYSVVARSUB
3593 1.236 rillig /* :from=to */
3594 1.356 rillig static ApplyModifierResult
3595 1.891 rillig ApplyModifier_SysV(const char **pp, ModChain *ch)
3596 1.236 rillig {
3597 1.891 rillig Expr *expr = ch->expr;
3598 1.703 rillig VarParseResult res;
3599 1.925 rillig LazyBuf lhsBuf, rhsBuf;
3600 1.925 rillig FStr rhs;
3601 1.926 rillig struct ModifyWord_SysVSubstArgs args;
3602 1.925 rillig Substring lhs;
3603 1.925 rillig const char *lhsSuffix;
3604 1.412 rillig
3605 1.703 rillig const char *mod = *pp;
3606 1.895 rillig bool eqFound = false;
3607 1.245 rillig
3608 1.703 rillig /*
3609 1.703 rillig * First we make a pass through the string trying to verify it is a
3610 1.703 rillig * SysV-make-style translation. It must be: <lhs>=<rhs>
3611 1.703 rillig */
3612 1.703 rillig int depth = 1;
3613 1.703 rillig const char *p = mod;
3614 1.703 rillig while (*p != '\0' && depth > 0) {
3615 1.703 rillig if (*p == '=') { /* XXX: should also test depth == 1 */
3616 1.895 rillig eqFound = true;
3617 1.891 rillig /* continue looking for ch->endc */
3618 1.891 rillig } else if (*p == ch->endc)
3619 1.703 rillig depth--;
3620 1.891 rillig else if (*p == ch->startc)
3621 1.703 rillig depth++;
3622 1.703 rillig if (depth > 0)
3623 1.703 rillig p++;
3624 1.703 rillig }
3625 1.891 rillig if (*p != ch->endc || !eqFound)
3626 1.703 rillig return AMR_UNKNOWN;
3627 1.236 rillig
3628 1.925 rillig res = ParseModifierPart(pp, '=', expr->emode, ch, &lhsBuf);
3629 1.703 rillig if (res != VPR_OK)
3630 1.703 rillig return AMR_CLEANUP;
3631 1.703 rillig
3632 1.988 rillig /*
3633 1.988 rillig * The SysV modifier lasts until the end of the variable expression.
3634 1.988 rillig */
3635 1.925 rillig res = ParseModifierPart(pp, ch->endc, expr->emode, ch, &rhsBuf);
3636 1.921 rillig if (res != VPR_OK) {
3637 1.925 rillig LazyBuf_Done(&lhsBuf);
3638 1.703 rillig return AMR_CLEANUP;
3639 1.921 rillig }
3640 1.925 rillig rhs = LazyBuf_DoneGet(&rhsBuf);
3641 1.703 rillig
3642 1.891 rillig (*pp)--; /* Go back to the ch->endc. */
3643 1.809 rillig
3644 1.925 rillig /* Do not turn an empty expression into non-empty. */
3645 1.965 rillig if (lhsBuf.len == 0 && Expr_Str(expr)[0] == '\0')
3646 1.925 rillig goto done;
3647 1.925 rillig
3648 1.925 rillig lhs = LazyBuf_Get(&lhsBuf);
3649 1.925 rillig lhsSuffix = Substring_SkipFirst(lhs, '%');
3650 1.925 rillig
3651 1.925 rillig args.scope = expr->scope;
3652 1.925 rillig args.lhsPrefix = Substring_Init(lhs.start,
3653 1.925 rillig lhsSuffix != lhs.start ? lhsSuffix - 1 : lhs.start);
3654 1.925 rillig args.lhsPercent = lhsSuffix != lhs.start;
3655 1.925 rillig args.lhsSuffix = Substring_Init(lhsSuffix, lhs.end);
3656 1.925 rillig args.rhs = rhs.str;
3657 1.925 rillig
3658 1.926 rillig ModifyWords(ch, ModifyWord_SysVSubst, &args, ch->oneBigWord);
3659 1.897 rillig
3660 1.925 rillig done:
3661 1.925 rillig LazyBuf_Done(&lhsBuf);
3662 1.703 rillig return AMR_OK;
3663 1.236 rillig }
3664 1.236 rillig #endif
3665 1.236 rillig
3666 1.548 rillig #ifdef SUNSHCMD
3667 1.548 rillig /* :sh */
3668 1.548 rillig static ApplyModifierResult
3669 1.891 rillig ApplyModifier_SunShell(const char **pp, ModChain *ch)
3670 1.548 rillig {
3671 1.891 rillig Expr *expr = ch->expr;
3672 1.703 rillig const char *p = *pp;
3673 1.891 rillig if (!(p[1] == 'h' && IsDelimiter(p[2], ch)))
3674 1.703 rillig return AMR_UNKNOWN;
3675 1.864 rillig *pp = p + 2;
3676 1.863 rillig
3677 1.905 rillig if (Expr_ShouldEval(expr)) {
3678 1.1000 rillig char *output, *error;
3679 1.1000 rillig output = Cmd_Exec(Expr_Str(expr), &error);
3680 1.1000 rillig if (error != NULL) {
3681 1.1000 rillig Error("%s", error);
3682 1.1000 rillig free(error);
3683 1.1000 rillig }
3684 1.863 rillig Expr_SetValueOwn(expr, output);
3685 1.863 rillig }
3686 1.864 rillig
3687 1.863 rillig return AMR_OK;
3688 1.548 rillig }
3689 1.548 rillig #endif
3690 1.548 rillig
3691 1.549 rillig static void
3692 1.891 rillig LogBeforeApply(const ModChain *ch, const char *mod)
3693 1.549 rillig {
3694 1.891 rillig const Expr *expr = ch->expr;
3695 1.895 rillig bool is_single_char = mod[0] != '\0' && IsDelimiter(mod[1], ch);
3696 1.703 rillig
3697 1.909 rillig /*
3698 1.909 rillig * At this point, only the first character of the modifier can
3699 1.909 rillig * be used since the end of the modifier is not yet known.
3700 1.909 rillig */
3701 1.909 rillig
3702 1.909 rillig if (!Expr_ShouldEval(expr)) {
3703 1.909 rillig debug_printf("Parsing modifier ${%s:%c%s}\n",
3704 1.909 rillig expr->name, mod[0], is_single_char ? "" : "...");
3705 1.909 rillig return;
3706 1.909 rillig }
3707 1.909 rillig
3708 1.910 rillig if ((expr->emode == VARE_WANTRES || expr->emode == VARE_UNDEFERR) &&
3709 1.910 rillig expr->defined == DEF_REGULAR) {
3710 1.910 rillig debug_printf(
3711 1.910 rillig "Evaluating modifier ${%s:%c%s} on value \"%s\"\n",
3712 1.910 rillig expr->name, mod[0], is_single_char ? "" : "...",
3713 1.965 rillig Expr_Str(expr));
3714 1.910 rillig return;
3715 1.910 rillig }
3716 1.910 rillig
3717 1.909 rillig debug_printf(
3718 1.909 rillig "Evaluating modifier ${%s:%c%s} on value \"%s\" (%s, %s)\n",
3719 1.965 rillig expr->name, mod[0], is_single_char ? "" : "...", Expr_Str(expr),
3720 1.910 rillig VarEvalMode_Name[expr->emode], ExprDefined_Name[expr->defined]);
3721 1.549 rillig }
3722 1.549 rillig
3723 1.549 rillig static void
3724 1.891 rillig LogAfterApply(const ModChain *ch, const char *p, const char *mod)
3725 1.549 rillig {
3726 1.891 rillig const Expr *expr = ch->expr;
3727 1.965 rillig const char *value = Expr_Str(expr);
3728 1.823 rillig const char *quot = value == var_Error ? "" : "\"";
3729 1.703 rillig
3730 1.912 rillig if ((expr->emode == VARE_WANTRES || expr->emode == VARE_UNDEFERR) &&
3731 1.912 rillig expr->defined == DEF_REGULAR) {
3732 1.912 rillig
3733 1.912 rillig debug_printf("Result of ${%s:%.*s} is %s%s%s\n",
3734 1.912 rillig expr->name, (int)(p - mod), mod,
3735 1.912 rillig quot, value == var_Error ? "error" : value, quot);
3736 1.912 rillig return;
3737 1.912 rillig }
3738 1.912 rillig
3739 1.899 rillig debug_printf("Result of ${%s:%.*s} is %s%s%s (%s, %s)\n",
3740 1.898 rillig expr->name, (int)(p - mod), mod,
3741 1.823 rillig quot, value == var_Error ? "error" : value, quot,
3742 1.906 rillig VarEvalMode_Name[expr->emode],
3743 1.825 rillig ExprDefined_Name[expr->defined]);
3744 1.549 rillig }
3745 1.549 rillig
3746 1.551 rillig static ApplyModifierResult
3747 1.891 rillig ApplyModifier(const char **pp, ModChain *ch)
3748 1.551 rillig {
3749 1.703 rillig switch (**pp) {
3750 1.857 rillig case '!':
3751 1.891 rillig return ApplyModifier_ShellCommand(pp, ch);
3752 1.703 rillig case ':':
3753 1.891 rillig return ApplyModifier_Assign(pp, ch);
3754 1.857 rillig case '?':
3755 1.891 rillig return ApplyModifier_IfElse(pp, ch);
3756 1.703 rillig case '@':
3757 1.891 rillig return ApplyModifier_Loop(pp, ch);
3758 1.857 rillig case '[':
3759 1.891 rillig return ApplyModifier_Words(pp, ch);
3760 1.703 rillig case '_':
3761 1.891 rillig return ApplyModifier_Remember(pp, ch);
3762 1.857 rillig #ifndef NO_REGEX
3763 1.857 rillig case 'C':
3764 1.891 rillig return ApplyModifier_Regex(pp, ch);
3765 1.857 rillig #endif
3766 1.703 rillig case 'D':
3767 1.968 rillig case 'U':
3768 1.891 rillig return ApplyModifier_Defined(pp, ch);
3769 1.857 rillig case 'E':
3770 1.891 rillig return ApplyModifier_WordFunc(pp, ch, ModifyWord_Suffix);
3771 1.703 rillig case 'g':
3772 1.995 rillig case 'l':
3773 1.995 rillig return ApplyModifier_Time(pp, ch);
3774 1.857 rillig case 'H':
3775 1.891 rillig return ApplyModifier_WordFunc(pp, ch, ModifyWord_Head);
3776 1.703 rillig case 'h':
3777 1.891 rillig return ApplyModifier_Hash(pp, ch);
3778 1.857 rillig case 'L':
3779 1.891 rillig return ApplyModifier_Literal(pp, ch);
3780 1.857 rillig case 'M':
3781 1.703 rillig case 'N':
3782 1.891 rillig return ApplyModifier_Match(pp, ch);
3783 1.857 rillig case 'O':
3784 1.891 rillig return ApplyModifier_Order(pp, ch);
3785 1.857 rillig case 'P':
3786 1.891 rillig return ApplyModifier_Path(pp, ch);
3787 1.857 rillig case 'Q':
3788 1.703 rillig case 'q':
3789 1.891 rillig return ApplyModifier_Quote(pp, ch);
3790 1.703 rillig case 'R':
3791 1.891 rillig return ApplyModifier_WordFunc(pp, ch, ModifyWord_Root);
3792 1.703 rillig case 'r':
3793 1.891 rillig return ApplyModifier_Range(pp, ch);
3794 1.857 rillig case 'S':
3795 1.891 rillig return ApplyModifier_Subst(pp, ch);
3796 1.551 rillig #ifdef SUNSHCMD
3797 1.703 rillig case 's':
3798 1.891 rillig return ApplyModifier_SunShell(pp, ch);
3799 1.551 rillig #endif
3800 1.857 rillig case 'T':
3801 1.891 rillig return ApplyModifier_WordFunc(pp, ch, ModifyWord_Tail);
3802 1.857 rillig case 't':
3803 1.891 rillig return ApplyModifier_To(pp, ch);
3804 1.857 rillig case 'u':
3805 1.891 rillig return ApplyModifier_Unique(pp, ch);
3806 1.703 rillig default:
3807 1.703 rillig return AMR_UNKNOWN;
3808 1.703 rillig }
3809 1.551 rillig }
3810 1.551 rillig
3811 1.823 rillig static void ApplyModifiers(Expr *, const char **, char, char);
3812 1.641 rillig
3813 1.641 rillig typedef enum ApplyModifiersIndirectResult {
3814 1.752 rillig /* The indirect modifiers have been applied successfully. */
3815 1.703 rillig AMIR_CONTINUE,
3816 1.752 rillig /* Fall back to the SysV modifier. */
3817 1.849 rillig AMIR_SYSV,
3818 1.752 rillig /* Error out. */
3819 1.703 rillig AMIR_OUT
3820 1.641 rillig } ApplyModifiersIndirectResult;
3821 1.641 rillig
3822 1.752 rillig /*
3823 1.752 rillig * While expanding a variable expression, expand and apply indirect modifiers,
3824 1.752 rillig * such as in ${VAR:${M_indirect}}.
3825 1.752 rillig *
3826 1.752 rillig * All indirect modifiers of a group must come from a single variable
3827 1.752 rillig * expression. ${VAR:${M1}} is valid but ${VAR:${M1}${M2}} is not.
3828 1.752 rillig *
3829 1.752 rillig * Multiple groups of indirect modifiers can be chained by separating them
3830 1.752 rillig * with colons. ${VAR:${M1}:${M2}} contains 2 indirect modifiers.
3831 1.752 rillig *
3832 1.891 rillig * If the variable expression is not followed by ch->endc or ':', fall
3833 1.752 rillig * back to trying the SysV modifier, such as in ${VAR:${FROM}=${TO}}.
3834 1.752 rillig */
3835 1.641 rillig static ApplyModifiersIndirectResult
3836 1.891 rillig ApplyModifiersIndirect(ModChain *ch, const char **pp)
3837 1.703 rillig {
3838 1.891 rillig Expr *expr = ch->expr;
3839 1.721 rillig const char *p = *pp;
3840 1.743 rillig FStr mods;
3841 1.641 rillig
3842 1.906 rillig (void)Var_Parse(&p, expr->scope, expr->emode, &mods);
3843 1.703 rillig /* TODO: handle errors */
3844 1.641 rillig
3845 1.891 rillig if (mods.str[0] != '\0' && *p != '\0' && !IsDelimiter(*p, ch)) {
3846 1.743 rillig FStr_Done(&mods);
3847 1.849 rillig return AMIR_SYSV;
3848 1.703 rillig }
3849 1.703 rillig
3850 1.708 rillig DEBUG3(VAR, "Indirect modifier \"%s\" from \"%.*s\"\n",
3851 1.743 rillig mods.str, (int)(p - *pp), *pp);
3852 1.703 rillig
3853 1.743 rillig if (mods.str[0] != '\0') {
3854 1.743 rillig const char *modsp = mods.str;
3855 1.823 rillig ApplyModifiers(expr, &modsp, '\0', '\0');
3856 1.965 rillig if (Expr_Str(expr) == var_Error || *modsp != '\0') {
3857 1.743 rillig FStr_Done(&mods);
3858 1.721 rillig *pp = p;
3859 1.703 rillig return AMIR_OUT; /* error already reported */
3860 1.703 rillig }
3861 1.703 rillig }
3862 1.743 rillig FStr_Done(&mods);
3863 1.641 rillig
3864 1.703 rillig if (*p == ':')
3865 1.703 rillig p++;
3866 1.891 rillig else if (*p == '\0' && ch->endc != '\0') {
3867 1.852 rillig Error("Unclosed variable expression after indirect "
3868 1.852 rillig "modifier, expecting '%c' for variable \"%s\"",
3869 1.898 rillig ch->endc, expr->name);
3870 1.721 rillig *pp = p;
3871 1.703 rillig return AMIR_OUT;
3872 1.641 rillig }
3873 1.641 rillig
3874 1.721 rillig *pp = p;
3875 1.703 rillig return AMIR_CONTINUE;
3876 1.641 rillig }
3877 1.641 rillig
3878 1.750 rillig static ApplyModifierResult
3879 1.891 rillig ApplySingleModifier(const char **pp, ModChain *ch)
3880 1.750 rillig {
3881 1.750 rillig ApplyModifierResult res;
3882 1.850 rillig const char *mod = *pp;
3883 1.750 rillig const char *p = *pp;
3884 1.750 rillig
3885 1.750 rillig if (DEBUG(VAR))
3886 1.891 rillig LogBeforeApply(ch, mod);
3887 1.750 rillig
3888 1.891 rillig res = ApplyModifier(&p, ch);
3889 1.750 rillig
3890 1.750 rillig #ifdef SYSVVARSUB
3891 1.750 rillig if (res == AMR_UNKNOWN) {
3892 1.750 rillig assert(p == mod);
3893 1.891 rillig res = ApplyModifier_SysV(&p, ch);
3894 1.750 rillig }
3895 1.750 rillig #endif
3896 1.750 rillig
3897 1.750 rillig if (res == AMR_UNKNOWN) {
3898 1.750 rillig /*
3899 1.750 rillig * Guess the end of the current modifier.
3900 1.750 rillig * XXX: Skipping the rest of the modifier hides
3901 1.750 rillig * errors and leads to wrong results.
3902 1.750 rillig * Parsing should rather stop here.
3903 1.750 rillig */
3904 1.891 rillig for (p++; !IsDelimiter(*p, ch) && *p != '\0'; p++)
3905 1.750 rillig continue;
3906 1.851 rillig Parse_Error(PARSE_FATAL, "Unknown modifier \"%.*s\"",
3907 1.851 rillig (int)(p - mod), mod);
3908 1.891 rillig Expr_SetValueRefer(ch->expr, var_Error);
3909 1.750 rillig }
3910 1.750 rillig if (res == AMR_CLEANUP || res == AMR_BAD) {
3911 1.750 rillig *pp = p;
3912 1.750 rillig return res;
3913 1.750 rillig }
3914 1.750 rillig
3915 1.750 rillig if (DEBUG(VAR))
3916 1.891 rillig LogAfterApply(ch, p, mod);
3917 1.750 rillig
3918 1.891 rillig if (*p == '\0' && ch->endc != '\0') {
3919 1.750 rillig Error(
3920 1.852 rillig "Unclosed variable expression, expecting '%c' for "
3921 1.852 rillig "modifier \"%.*s\" of variable \"%s\" with value \"%s\"",
3922 1.891 rillig ch->endc,
3923 1.852 rillig (int)(p - mod), mod,
3924 1.965 rillig ch->expr->name, Expr_Str(ch->expr));
3925 1.750 rillig } else if (*p == ':') {
3926 1.750 rillig p++;
3927 1.891 rillig } else if (opts.strict && *p != '\0' && *p != ch->endc) {
3928 1.750 rillig Parse_Error(PARSE_FATAL,
3929 1.750 rillig "Missing delimiter ':' after modifier \"%.*s\"",
3930 1.750 rillig (int)(p - mod), mod);
3931 1.750 rillig /*
3932 1.750 rillig * TODO: propagate parse error to the enclosing
3933 1.750 rillig * expression
3934 1.750 rillig */
3935 1.750 rillig }
3936 1.750 rillig *pp = p;
3937 1.750 rillig return AMR_OK;
3938 1.750 rillig }
3939 1.750 rillig
3940 1.897 rillig #if __STDC_VERSION__ >= 199901L
3941 1.897 rillig #define ModChain_Literal(expr, startc, endc, sep, oneBigWord) \
3942 1.897 rillig (ModChain) { expr, startc, endc, sep, oneBigWord }
3943 1.897 rillig #else
3944 1.897 rillig MAKE_INLINE ModChain
3945 1.897 rillig ModChain_Literal(Expr *expr, char startc, char endc, char sep, bool oneBigWord)
3946 1.897 rillig {
3947 1.897 rillig ModChain ch;
3948 1.897 rillig ch.expr = expr;
3949 1.897 rillig ch.startc = startc;
3950 1.897 rillig ch.endc = endc;
3951 1.897 rillig ch.sep = sep;
3952 1.897 rillig ch.oneBigWord = oneBigWord;
3953 1.897 rillig return ch;
3954 1.897 rillig }
3955 1.897 rillig #endif
3956 1.897 rillig
3957 1.419 rillig /* Apply any modifiers (such as :Mpattern or :@var@loop@ or :Q or ::=value). */
3958 1.823 rillig static void
3959 1.357 rillig ApplyModifiers(
3960 1.823 rillig Expr *expr,
3961 1.821 rillig const char **pp, /* the parsing position, updated upon return */
3962 1.821 rillig char startc, /* '(' or '{'; or '\0' for indirect modifiers */
3963 1.823 rillig char endc /* ')' or '}'; or '\0' for indirect modifiers */
3964 1.703 rillig )
3965 1.703 rillig {
3966 1.897 rillig ModChain ch = ModChain_Literal(expr, startc, endc, ' ', false);
3967 1.703 rillig const char *p;
3968 1.703 rillig const char *mod;
3969 1.703 rillig
3970 1.703 rillig assert(startc == '(' || startc == '{' || startc == '\0');
3971 1.703 rillig assert(endc == ')' || endc == '}' || endc == '\0');
3972 1.965 rillig assert(Expr_Str(expr) != NULL);
3973 1.703 rillig
3974 1.703 rillig p = *pp;
3975 1.703 rillig
3976 1.703 rillig if (*p == '\0' && endc != '\0') {
3977 1.703 rillig Error(
3978 1.703 rillig "Unclosed variable expression (expecting '%c') for \"%s\"",
3979 1.898 rillig ch.endc, expr->name);
3980 1.703 rillig goto cleanup;
3981 1.703 rillig }
3982 1.703 rillig
3983 1.703 rillig while (*p != '\0' && *p != endc) {
3984 1.750 rillig ApplyModifierResult res;
3985 1.703 rillig
3986 1.703 rillig if (*p == '$') {
3987 1.849 rillig ApplyModifiersIndirectResult amir =
3988 1.891 rillig ApplyModifiersIndirect(&ch, &p);
3989 1.703 rillig if (amir == AMIR_CONTINUE)
3990 1.703 rillig continue;
3991 1.703 rillig if (amir == AMIR_OUT)
3992 1.752 rillig break;
3993 1.849 rillig /*
3994 1.849 rillig * It's neither '${VAR}:' nor '${VAR}}'. Try to parse
3995 1.849 rillig * it as a SysV modifier, as that is the only modifier
3996 1.849 rillig * that can start with '$'.
3997 1.849 rillig */
3998 1.703 rillig }
3999 1.752 rillig
4000 1.703 rillig mod = p;
4001 1.649 rillig
4002 1.891 rillig res = ApplySingleModifier(&p, &ch);
4003 1.703 rillig if (res == AMR_CLEANUP)
4004 1.703 rillig goto cleanup;
4005 1.703 rillig if (res == AMR_BAD)
4006 1.703 rillig goto bad_modifier;
4007 1.356 rillig }
4008 1.752 rillig
4009 1.703 rillig *pp = p;
4010 1.988 rillig assert(Expr_Str(expr) != NULL); /* Use var_Error or varUndefined. */
4011 1.823 rillig return;
4012 1.25 christos
4013 1.240 rillig bad_modifier:
4014 1.703 rillig /* XXX: The modifier end is only guessed. */
4015 1.853 rillig Error("Bad modifier \":%.*s\" for variable \"%s\"",
4016 1.898 rillig (int)strcspn(mod, ":)}"), mod, expr->name);
4017 1.25 christos
4018 1.240 rillig cleanup:
4019 1.858 rillig /*
4020 1.858 rillig * TODO: Use p + strlen(p) instead, to stop parsing immediately.
4021 1.858 rillig *
4022 1.1015 rillig * In the unit tests, this generates a few shell commands with
4023 1.1015 rillig * unbalanced quotes. Instead of producing these incomplete strings,
4024 1.1015 rillig * commands with evaluation errors should not be run at all.
4025 1.858 rillig *
4026 1.858 rillig * To make that happen, Var_Subst must report the actual errors
4027 1.858 rillig * instead of returning VPR_OK unconditionally.
4028 1.858 rillig */
4029 1.703 rillig *pp = p;
4030 1.823 rillig Expr_SetValueRefer(expr, var_Error);
4031 1.108 sjg }
4032 1.25 christos
4033 1.778 rillig /*
4034 1.1015 rillig * Only 4 of the 7 built-in local variables are treated specially as they are
4035 1.1015 rillig * the only ones that will be set when dynamic sources are expanded.
4036 1.778 rillig */
4037 1.895 rillig static bool
4038 1.916 rillig VarnameIsDynamic(Substring varname)
4039 1.335 rillig {
4040 1.916 rillig const char *name;
4041 1.916 rillig size_t len;
4042 1.916 rillig
4043 1.916 rillig name = varname.start;
4044 1.916 rillig len = Substring_Length(varname);
4045 1.703 rillig if (len == 1 || (len == 2 && (name[1] == 'F' || name[1] == 'D'))) {
4046 1.703 rillig switch (name[0]) {
4047 1.703 rillig case '@':
4048 1.703 rillig case '%':
4049 1.703 rillig case '*':
4050 1.703 rillig case '!':
4051 1.895 rillig return true;
4052 1.703 rillig }
4053 1.895 rillig return false;
4054 1.335 rillig }
4055 1.335 rillig
4056 1.703 rillig if ((len == 7 || len == 8) && name[0] == '.' && ch_isupper(name[1])) {
4057 1.916 rillig return Substring_Equals(varname, ".TARGET") ||
4058 1.916 rillig Substring_Equals(varname, ".ARCHIVE") ||
4059 1.916 rillig Substring_Equals(varname, ".PREFIX") ||
4060 1.916 rillig Substring_Equals(varname, ".MEMBER");
4061 1.703 rillig }
4062 1.335 rillig
4063 1.895 rillig return false;
4064 1.335 rillig }
4065 1.335 rillig
4066 1.502 rillig static const char *
4067 1.802 rillig UndefinedShortVarValue(char varname, const GNode *scope)
4068 1.502 rillig {
4069 1.802 rillig if (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL) {
4070 1.703 rillig /*
4071 1.802 rillig * If substituting a local variable in a non-local scope,
4072 1.703 rillig * assume it's for dynamic source stuff. We have to handle
4073 1.703 rillig * this specially and return the longhand for the variable
4074 1.703 rillig * with the dollar sign escaped so it makes it back to the
4075 1.703 rillig * caller. Only four of the local variables are treated
4076 1.703 rillig * specially as they are the only four that will be set
4077 1.703 rillig * when dynamic sources are expanded.
4078 1.703 rillig */
4079 1.703 rillig switch (varname) {
4080 1.703 rillig case '@':
4081 1.703 rillig return "$(.TARGET)";
4082 1.703 rillig case '%':
4083 1.703 rillig return "$(.MEMBER)";
4084 1.703 rillig case '*':
4085 1.703 rillig return "$(.PREFIX)";
4086 1.703 rillig case '!':
4087 1.703 rillig return "$(.ARCHIVE)";
4088 1.703 rillig }
4089 1.502 rillig }
4090 1.769 rillig return NULL;
4091 1.502 rillig }
4092 1.502 rillig
4093 1.778 rillig /*
4094 1.778 rillig * Parse a variable name, until the end character or a colon, whichever
4095 1.778 rillig * comes first.
4096 1.778 rillig */
4097 1.916 rillig static void
4098 1.501 rillig ParseVarname(const char **pp, char startc, char endc,
4099 1.906 rillig GNode *scope, VarEvalMode emode,
4100 1.916 rillig LazyBuf *buf)
4101 1.501 rillig {
4102 1.703 rillig const char *p = *pp;
4103 1.854 rillig int depth = 0; /* Track depth so we can spot parse errors. */
4104 1.703 rillig
4105 1.923 rillig LazyBuf_Init(buf, p);
4106 1.703 rillig
4107 1.703 rillig while (*p != '\0') {
4108 1.854 rillig if ((*p == endc || *p == ':') && depth == 0)
4109 1.854 rillig break;
4110 1.703 rillig if (*p == startc)
4111 1.703 rillig depth++;
4112 1.854 rillig if (*p == endc)
4113 1.854 rillig depth--;
4114 1.501 rillig
4115 1.703 rillig /* A variable inside a variable, expand. */
4116 1.703 rillig if (*p == '$') {
4117 1.743 rillig FStr nested_val;
4118 1.906 rillig (void)Var_Parse(&p, scope, emode, &nested_val);
4119 1.703 rillig /* TODO: handle errors */
4120 1.916 rillig LazyBuf_AddStr(buf, nested_val.str);
4121 1.743 rillig FStr_Done(&nested_val);
4122 1.703 rillig } else {
4123 1.916 rillig LazyBuf_Add(buf, *p);
4124 1.703 rillig p++;
4125 1.703 rillig }
4126 1.501 rillig }
4127 1.703 rillig *pp = p;
4128 1.501 rillig }
4129 1.501 rillig
4130 1.652 rillig static VarParseResult
4131 1.507 rillig ValidShortVarname(char varname, const char *start)
4132 1.507 rillig {
4133 1.818 rillig if (varname != '$' && varname != ':' && varname != '}' &&
4134 1.818 rillig varname != ')' && varname != '\0')
4135 1.703 rillig return VPR_OK;
4136 1.507 rillig
4137 1.771 rillig if (!opts.strict)
4138 1.771 rillig return VPR_ERR; /* XXX: Missing error message */
4139 1.507 rillig
4140 1.703 rillig if (varname == '$')
4141 1.703 rillig Parse_Error(PARSE_FATAL,
4142 1.507 rillig "To escape a dollar, use \\$, not $$, at \"%s\"", start);
4143 1.703 rillig else if (varname == '\0')
4144 1.703 rillig Parse_Error(PARSE_FATAL, "Dollar followed by nothing");
4145 1.703 rillig else
4146 1.703 rillig Parse_Error(PARSE_FATAL,
4147 1.507 rillig "Invalid variable name '%c', at \"%s\"", varname, start);
4148 1.507 rillig
4149 1.767 rillig return VPR_ERR;
4150 1.507 rillig }
4151 1.507 rillig
4152 1.778 rillig /*
4153 1.817 rillig * Parse a single-character variable name such as in $V or $@.
4154 1.778 rillig * Return whether to continue parsing.
4155 1.778 rillig */
4156 1.895 rillig static bool
4157 1.817 rillig ParseVarnameShort(char varname, const char **pp, GNode *scope,
4158 1.906 rillig VarEvalMode emode,
4159 1.896 rillig VarParseResult *out_false_res, const char **out_false_val,
4160 1.896 rillig Var **out_true_var)
4161 1.667 rillig {
4162 1.703 rillig char name[2];
4163 1.703 rillig Var *v;
4164 1.703 rillig VarParseResult vpr;
4165 1.622 rillig
4166 1.817 rillig vpr = ValidShortVarname(varname, *pp);
4167 1.703 rillig if (vpr != VPR_OK) {
4168 1.703 rillig (*pp)++;
4169 1.896 rillig *out_false_res = vpr;
4170 1.896 rillig *out_false_val = var_Error;
4171 1.895 rillig return false;
4172 1.703 rillig }
4173 1.622 rillig
4174 1.817 rillig name[0] = varname;
4175 1.703 rillig name[1] = '\0';
4176 1.895 rillig v = VarFind(name, scope, true);
4177 1.703 rillig if (v == NULL) {
4178 1.770 rillig const char *val;
4179 1.703 rillig *pp += 2;
4180 1.622 rillig
4181 1.817 rillig val = UndefinedShortVarValue(varname, scope);
4182 1.770 rillig if (val == NULL)
4183 1.906 rillig val = emode == VARE_UNDEFERR
4184 1.906 rillig ? var_Error : varUndefined;
4185 1.769 rillig
4186 1.770 rillig if (opts.strict && val == var_Error) {
4187 1.703 rillig Parse_Error(PARSE_FATAL,
4188 1.703 rillig "Variable \"%s\" is undefined", name);
4189 1.896 rillig *out_false_res = VPR_ERR;
4190 1.896 rillig *out_false_val = val;
4191 1.895 rillig return false;
4192 1.703 rillig }
4193 1.767 rillig
4194 1.767 rillig /*
4195 1.767 rillig * XXX: This looks completely wrong.
4196 1.767 rillig *
4197 1.767 rillig * If undefined expressions are not allowed, this should
4198 1.767 rillig * rather be VPR_ERR instead of VPR_UNDEF, together with an
4199 1.767 rillig * error message.
4200 1.767 rillig *
4201 1.767 rillig * If undefined expressions are allowed, this should rather
4202 1.767 rillig * be VPR_UNDEF instead of VPR_OK.
4203 1.767 rillig */
4204 1.906 rillig *out_false_res = emode == VARE_UNDEFERR
4205 1.906 rillig ? VPR_UNDEF : VPR_OK;
4206 1.896 rillig *out_false_val = val;
4207 1.895 rillig return false;
4208 1.622 rillig }
4209 1.622 rillig
4210 1.896 rillig *out_true_var = v;
4211 1.895 rillig return true;
4212 1.622 rillig }
4213 1.622 rillig
4214 1.662 rillig /* Find variables like @F or <D. */
4215 1.662 rillig static Var *
4216 1.916 rillig FindLocalLegacyVar(Substring varname, GNode *scope,
4217 1.662 rillig const char **out_extraModifiers)
4218 1.662 rillig {
4219 1.916 rillig Var *v;
4220 1.916 rillig
4221 1.802 rillig /* Only resolve these variables if scope is a "real" target. */
4222 1.802 rillig if (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL)
4223 1.703 rillig return NULL;
4224 1.703 rillig
4225 1.916 rillig if (Substring_Length(varname) != 2)
4226 1.703 rillig return NULL;
4227 1.916 rillig if (varname.start[1] != 'F' && varname.start[1] != 'D')
4228 1.703 rillig return NULL;
4229 1.916 rillig if (strchr("@%?*!<>", varname.start[0]) == NULL)
4230 1.703 rillig return NULL;
4231 1.703 rillig
4232 1.916 rillig v = VarFindSubstring(Substring_Sub(varname, 0, 1), scope, false);
4233 1.916 rillig if (v == NULL)
4234 1.916 rillig return NULL;
4235 1.897 rillig
4236 1.916 rillig *out_extraModifiers = varname.start[1] == 'D' ? "H:" : "T:";
4237 1.916 rillig return v;
4238 1.662 rillig }
4239 1.662 rillig
4240 1.663 rillig static VarParseResult
4241 1.916 rillig EvalUndefined(bool dynamic, const char *start, const char *p,
4242 1.916 rillig Substring varname, VarEvalMode emode, FStr *out_val)
4243 1.667 rillig {
4244 1.703 rillig if (dynamic) {
4245 1.740 rillig *out_val = FStr_InitOwn(bmake_strsedup(start, p));
4246 1.703 rillig return VPR_OK;
4247 1.703 rillig }
4248 1.703 rillig
4249 1.906 rillig if (emode == VARE_UNDEFERR && opts.strict) {
4250 1.703 rillig Parse_Error(PARSE_FATAL,
4251 1.916 rillig "Variable \"%.*s\" is undefined",
4252 1.916 rillig (int)Substring_Length(varname), varname.start);
4253 1.740 rillig *out_val = FStr_InitRefer(var_Error);
4254 1.767 rillig return VPR_ERR;
4255 1.703 rillig }
4256 1.703 rillig
4257 1.906 rillig if (emode == VARE_UNDEFERR) {
4258 1.740 rillig *out_val = FStr_InitRefer(var_Error);
4259 1.767 rillig return VPR_UNDEF; /* XXX: Should be VPR_ERR instead. */
4260 1.703 rillig }
4261 1.703 rillig
4262 1.740 rillig *out_val = FStr_InitRefer(varUndefined);
4263 1.663 rillig return VPR_OK;
4264 1.663 rillig }
4265 1.663 rillig
4266 1.778 rillig /*
4267 1.778 rillig * Parse a long variable name enclosed in braces or parentheses such as $(VAR)
4268 1.623 rillig * or ${VAR}, up to the closing brace or parenthesis, or in the case of
4269 1.623 rillig * ${VAR:Modifiers}, up to the ':' that starts the modifiers.
4270 1.778 rillig * Return whether to continue parsing.
4271 1.778 rillig */
4272 1.895 rillig static bool
4273 1.623 rillig ParseVarnameLong(
4274 1.922 rillig const char **pp,
4275 1.624 rillig char startc,
4276 1.802 rillig GNode *scope,
4277 1.906 rillig VarEvalMode emode,
4278 1.624 rillig
4279 1.896 rillig const char **out_false_pp,
4280 1.896 rillig VarParseResult *out_false_res,
4281 1.896 rillig FStr *out_false_val,
4282 1.896 rillig
4283 1.896 rillig char *out_true_endc,
4284 1.896 rillig Var **out_true_v,
4285 1.896 rillig bool *out_true_haveModifier,
4286 1.896 rillig const char **out_true_extraModifiers,
4287 1.896 rillig bool *out_true_dynamic,
4288 1.896 rillig ExprDefined *out_true_exprDefined
4289 1.703 rillig )
4290 1.703 rillig {
4291 1.916 rillig LazyBuf varname;
4292 1.972 sjg Substring name;
4293 1.703 rillig Var *v;
4294 1.895 rillig bool haveModifier;
4295 1.895 rillig bool dynamic = false;
4296 1.703 rillig
4297 1.922 rillig const char *p = *pp;
4298 1.703 rillig const char *const start = p;
4299 1.703 rillig char endc = startc == '(' ? ')' : '}';
4300 1.703 rillig
4301 1.703 rillig p += 2; /* skip "${" or "$(" or "y(" */
4302 1.916 rillig ParseVarname(&p, startc, endc, scope, emode, &varname);
4303 1.972 sjg name = LazyBuf_Get(&varname);
4304 1.703 rillig
4305 1.703 rillig if (*p == ':') {
4306 1.895 rillig haveModifier = true;
4307 1.703 rillig } else if (*p == endc) {
4308 1.895 rillig haveModifier = false;
4309 1.703 rillig } else {
4310 1.916 rillig Parse_Error(PARSE_FATAL, "Unclosed variable \"%.*s\"",
4311 1.916 rillig (int)Substring_Length(name), name.start);
4312 1.916 rillig LazyBuf_Done(&varname);
4313 1.896 rillig *out_false_pp = p;
4314 1.896 rillig *out_false_val = FStr_InitRefer(var_Error);
4315 1.896 rillig *out_false_res = VPR_ERR;
4316 1.895 rillig return false;
4317 1.703 rillig }
4318 1.623 rillig
4319 1.972 sjg v = VarFindSubstring(name, scope, true);
4320 1.623 rillig
4321 1.988 rillig /*
4322 1.988 rillig * At this point, p points just after the variable name, either at
4323 1.988 rillig * ':' or at endc.
4324 1.988 rillig */
4325 1.623 rillig
4326 1.974 rillig if (v == NULL && Substring_Equals(name, ".SUFFIXES")) {
4327 1.974 rillig char *suffixes = Suff_NamesStr();
4328 1.975 rillig v = VarNew(FStr_InitRefer(".SUFFIXES"), suffixes,
4329 1.979 rillig true, false, true);
4330 1.974 rillig free(suffixes);
4331 1.974 rillig } else if (v == NULL)
4332 1.974 rillig v = FindLocalLegacyVar(name, scope, out_true_extraModifiers);
4333 1.623 rillig
4334 1.703 rillig if (v == NULL) {
4335 1.703 rillig /*
4336 1.703 rillig * Defer expansion of dynamic variables if they appear in
4337 1.802 rillig * non-local scope since they are not defined there.
4338 1.703 rillig */
4339 1.972 sjg dynamic = VarnameIsDynamic(name) &&
4340 1.802 rillig (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL);
4341 1.703 rillig
4342 1.703 rillig if (!haveModifier) {
4343 1.703 rillig p++; /* skip endc */
4344 1.896 rillig *out_false_pp = p;
4345 1.896 rillig *out_false_res = EvalUndefined(dynamic, start, p,
4346 1.972 sjg name, emode, out_false_val);
4347 1.986 rillig LazyBuf_Done(&varname);
4348 1.895 rillig return false;
4349 1.703 rillig }
4350 1.623 rillig
4351 1.703 rillig /*
4352 1.703 rillig * The variable expression is based on an undefined variable.
4353 1.703 rillig * Nevertheless it needs a Var, for modifiers that access the
4354 1.703 rillig * variable name, such as :L or :?.
4355 1.703 rillig *
4356 1.703 rillig * Most modifiers leave this expression in the "undefined"
4357 1.821 rillig * state (VES_UNDEF), only a few modifiers like :D, :U, :L,
4358 1.703 rillig * :P turn this undefined expression into a defined
4359 1.821 rillig * expression (VES_DEF).
4360 1.703 rillig *
4361 1.830 rillig * In the end, after applying all modifiers, if the expression
4362 1.703 rillig * is still undefined, Var_Parse will return an empty string
4363 1.703 rillig * instead of the actually computed value.
4364 1.703 rillig */
4365 1.978 rillig v = VarNew(LazyBuf_DoneGet(&varname), "",
4366 1.980 rillig true, false, false);
4367 1.896 rillig *out_true_exprDefined = DEF_UNDEF;
4368 1.703 rillig } else
4369 1.916 rillig LazyBuf_Done(&varname);
4370 1.623 rillig
4371 1.922 rillig *pp = p;
4372 1.896 rillig *out_true_endc = endc;
4373 1.896 rillig *out_true_v = v;
4374 1.896 rillig *out_true_haveModifier = haveModifier;
4375 1.896 rillig *out_true_dynamic = dynamic;
4376 1.895 rillig return true;
4377 1.623 rillig }
4378 1.623 rillig
4379 1.897 rillig #if __STDC_VERSION__ >= 199901L
4380 1.917 rillig #define Expr_Literal(name, value, emode, scope, defined) \
4381 1.917 rillig { name, value, emode, scope, defined }
4382 1.897 rillig #else
4383 1.897 rillig MAKE_INLINE Expr
4384 1.900 rillig Expr_Literal(const char *name, FStr value,
4385 1.917 rillig VarEvalMode emode, GNode *scope, ExprDefined defined)
4386 1.897 rillig {
4387 1.897 rillig Expr expr;
4388 1.897 rillig
4389 1.898 rillig expr.name = name;
4390 1.897 rillig expr.value = value;
4391 1.917 rillig expr.emode = emode;
4392 1.897 rillig expr.scope = scope;
4393 1.897 rillig expr.defined = defined;
4394 1.897 rillig return expr;
4395 1.897 rillig }
4396 1.897 rillig #endif
4397 1.897 rillig
4398 1.666 rillig /*
4399 1.913 rillig * Expressions of the form ${:U...} with a trivial value are often generated
4400 1.913 rillig * by .for loops and are boring, therefore parse and evaluate them in a fast
4401 1.913 rillig * lane without debug logging.
4402 1.913 rillig */
4403 1.913 rillig static bool
4404 1.913 rillig Var_Parse_FastLane(const char **pp, VarEvalMode emode, FStr *out_value)
4405 1.913 rillig {
4406 1.913 rillig const char *p;
4407 1.913 rillig
4408 1.913 rillig p = *pp;
4409 1.913 rillig if (!(p[0] == '$' && p[1] == '{' && p[2] == ':' && p[3] == 'U'))
4410 1.913 rillig return false;
4411 1.913 rillig
4412 1.913 rillig p += 4;
4413 1.915 rillig while (*p != '$' && *p != '{' && *p != ':' && *p != '\\' &&
4414 1.915 rillig *p != '}' && *p != '\0')
4415 1.913 rillig p++;
4416 1.913 rillig if (*p != '}')
4417 1.913 rillig return false;
4418 1.913 rillig
4419 1.913 rillig if (emode == VARE_PARSE_ONLY)
4420 1.913 rillig *out_value = FStr_InitRefer("");
4421 1.913 rillig else
4422 1.913 rillig *out_value = FStr_InitOwn(bmake_strsedup(*pp + 4, p));
4423 1.913 rillig *pp = p + 1;
4424 1.913 rillig return true;
4425 1.913 rillig }
4426 1.913 rillig
4427 1.913 rillig /*
4428 1.666 rillig * Given the start of a variable expression (such as $v, $(VAR),
4429 1.666 rillig * ${VAR:Mpattern}), extract the variable name and value, and the modifiers,
4430 1.666 rillig * if any. While doing that, apply the modifiers to the value of the
4431 1.666 rillig * expression, forming its final value. A few of the modifiers such as :!cmd!
4432 1.666 rillig * or ::= have side effects.
4433 1.579 rillig *
4434 1.108 sjg * Input:
4435 1.666 rillig * *pp The string to parse.
4436 1.971 rillig * In CondParser_FuncCallEmpty, it may also point to the
4437 1.971 rillig * "y" of "empty(VARNAME:Modifiers)", which is
4438 1.971 rillig * syntactically the same.
4439 1.802 rillig * scope The scope for finding variables
4440 1.917 rillig * emode Controls the exact details of parsing and evaluation
4441 1.666 rillig *
4442 1.666 rillig * Output:
4443 1.666 rillig * *pp The position where to continue parsing.
4444 1.666 rillig * TODO: After a parse error, the value of *pp is
4445 1.666 rillig * unspecified. It may not have been updated at all,
4446 1.666 rillig * point to some random character in the string, to the
4447 1.666 rillig * location of the parse error, or at the end of the
4448 1.666 rillig * string.
4449 1.666 rillig * *out_val The value of the variable expression, never NULL.
4450 1.666 rillig * *out_val var_Error if there was a parse error.
4451 1.666 rillig * *out_val var_Error if the base variable of the expression was
4452 1.917 rillig * undefined, emode is VARE_UNDEFERR, and none of
4453 1.666 rillig * the modifiers turned the undefined expression into a
4454 1.666 rillig * defined expression.
4455 1.666 rillig * XXX: It is not guaranteed that an error message has
4456 1.666 rillig * been printed.
4457 1.666 rillig * *out_val varUndefined if the base variable of the expression
4458 1.917 rillig * was undefined, emode was not VARE_UNDEFERR,
4459 1.666 rillig * and none of the modifiers turned the undefined
4460 1.666 rillig * expression into a defined expression.
4461 1.666 rillig * XXX: It is not guaranteed that an error message has
4462 1.666 rillig * been printed.
4463 1.108 sjg */
4464 1.526 rillig VarParseResult
4465 1.906 rillig Var_Parse(const char **pp, GNode *scope, VarEvalMode emode, FStr *out_val)
4466 1.108 sjg {
4467 1.703 rillig const char *p = *pp;
4468 1.703 rillig const char *const start = p;
4469 1.895 rillig /* true if have modifiers for the variable. */
4470 1.895 rillig bool haveModifier;
4471 1.703 rillig /* Starting character if variable in parens or braces. */
4472 1.703 rillig char startc;
4473 1.703 rillig /* Ending character if variable in parens or braces. */
4474 1.703 rillig char endc;
4475 1.703 rillig /*
4476 1.895 rillig * true if the variable is local and we're expanding it in a
4477 1.802 rillig * non-local scope. This is done to support dynamic sources.
4478 1.703 rillig * The result is just the expression, unaltered.
4479 1.703 rillig */
4480 1.895 rillig bool dynamic;
4481 1.703 rillig const char *extramodifiers;
4482 1.703 rillig Var *v;
4483 1.906 rillig Expr expr = Expr_Literal(NULL, FStr_InitRefer(NULL), emode,
4484 1.898 rillig scope, DEF_REGULAR);
4485 1.703 rillig
4486 1.913 rillig if (Var_Parse_FastLane(pp, emode, out_val))
4487 1.913 rillig return VPR_OK;
4488 1.913 rillig
4489 1.906 rillig DEBUG2(VAR, "Var_Parse: %s (%s)\n", start, VarEvalMode_Name[emode]);
4490 1.703 rillig
4491 1.743 rillig *out_val = FStr_InitRefer(NULL);
4492 1.703 rillig extramodifiers = NULL; /* extra modifiers to apply first */
4493 1.895 rillig dynamic = false;
4494 1.473 rillig
4495 1.703 rillig /*
4496 1.703 rillig * Appease GCC, which thinks that the variable might not be
4497 1.703 rillig * initialized.
4498 1.703 rillig */
4499 1.703 rillig endc = '\0';
4500 1.108 sjg
4501 1.703 rillig startc = p[1];
4502 1.703 rillig if (startc != '(' && startc != '{') {
4503 1.703 rillig VarParseResult res;
4504 1.906 rillig if (!ParseVarnameShort(startc, pp, scope, emode, &res,
4505 1.898 rillig &out_val->str, &v))
4506 1.703 rillig return res;
4507 1.895 rillig haveModifier = false;
4508 1.703 rillig p++;
4509 1.703 rillig } else {
4510 1.703 rillig VarParseResult res;
4511 1.922 rillig if (!ParseVarnameLong(&p, startc, scope, emode,
4512 1.743 rillig pp, &res, out_val,
4513 1.922 rillig &endc, &v, &haveModifier, &extramodifiers,
4514 1.825 rillig &dynamic, &expr.defined))
4515 1.703 rillig return res;
4516 1.703 rillig }
4517 1.401 rillig
4518 1.898 rillig expr.name = v->name.str;
4519 1.1008 rillig if (v->inUse) {
4520 1.1008 rillig if (scope->fname != NULL) {
4521 1.1008 rillig fprintf(stderr, "In a command near ");
4522 1.1008 rillig PrintLocation(stderr, false,
4523 1.1008 rillig scope->fname, scope->lineno);
4524 1.1008 rillig }
4525 1.711 rillig Fatal("Variable %s is recursive.", v->name.str);
4526 1.1008 rillig }
4527 1.187 christos
4528 1.703 rillig /*
4529 1.703 rillig * XXX: This assignment creates an alias to the current value of the
4530 1.703 rillig * variable. This means that as long as the value of the expression
4531 1.703 rillig * stays the same, the value of the variable must not change.
4532 1.703 rillig * Using the '::=' modifier, it could be possible to do exactly this.
4533 1.703 rillig * At the bottom of this function, the resulting value is compared to
4534 1.703 rillig * the then-current value of the variable. This might also invoke
4535 1.703 rillig * undefined behavior.
4536 1.703 rillig */
4537 1.823 rillig expr.value = FStr_InitRefer(v->val.data);
4538 1.108 sjg
4539 1.703 rillig /*
4540 1.703 rillig * Before applying any modifiers, expand any nested expressions from
4541 1.703 rillig * the variable value.
4542 1.703 rillig */
4543 1.1003 rillig if (VarEvalMode_ShouldEval(emode) &&
4544 1.1003 rillig strchr(Expr_Str(&expr), '$') != NULL) {
4545 1.743 rillig char *expanded;
4546 1.906 rillig VarEvalMode nested_emode = emode;
4547 1.764 rillig if (opts.strict)
4548 1.906 rillig nested_emode = VarEvalMode_UndefOk(nested_emode);
4549 1.902 rillig v->inUse = true;
4550 1.966 rillig (void)Var_Subst(Expr_Str(&expr), scope, nested_emode,
4551 1.823 rillig &expanded);
4552 1.902 rillig v->inUse = false;
4553 1.703 rillig /* TODO: handle errors */
4554 1.823 rillig Expr_SetValueOwn(&expr, expanded);
4555 1.191 dholland }
4556 1.191 dholland
4557 1.855 rillig if (extramodifiers != NULL) {
4558 1.855 rillig const char *em = extramodifiers;
4559 1.855 rillig ApplyModifiers(&expr, &em, '\0', '\0');
4560 1.855 rillig }
4561 1.191 dholland
4562 1.855 rillig if (haveModifier) {
4563 1.988 rillig p++; /* Skip initial colon. */
4564 1.855 rillig ApplyModifiers(&expr, &p, startc, endc);
4565 1.191 dholland }
4566 1.438 rillig
4567 1.703 rillig if (*p != '\0') /* Skip past endc if possible. */
4568 1.703 rillig p++;
4569 1.519 rillig
4570 1.703 rillig *pp = p;
4571 1.15 christos
4572 1.980 rillig if (expr.defined == DEF_UNDEF) {
4573 1.980 rillig if (dynamic)
4574 1.980 rillig Expr_SetValueOwn(&expr, bmake_strsedup(start, p));
4575 1.980 rillig else {
4576 1.980 rillig /*
4577 1.980 rillig * The expression is still undefined, therefore
4578 1.980 rillig * discard the actual value and return an error marker
4579 1.980 rillig * instead.
4580 1.980 rillig */
4581 1.980 rillig Expr_SetValueRefer(&expr,
4582 1.980 rillig emode == VARE_UNDEFERR
4583 1.980 rillig ? var_Error : varUndefined);
4584 1.980 rillig }
4585 1.980 rillig }
4586 1.980 rillig
4587 1.978 rillig if (v->shortLived) {
4588 1.980 rillig if (expr.value.str == v->val.data) {
4589 1.980 rillig /* move ownership */
4590 1.980 rillig expr.value.freeIt = v->val.data;
4591 1.980 rillig v->val.data = NULL;
4592 1.703 rillig }
4593 1.980 rillig VarFreeShortLived(v);
4594 1.34 christos }
4595 1.980 rillig
4596 1.823 rillig *out_val = expr.value;
4597 1.766 rillig return VPR_OK; /* XXX: Is not correct in all cases */
4598 1.1 cgd }
4599 1.1 cgd
4600 1.678 rillig static void
4601 1.906 rillig VarSubstDollarDollar(const char **pp, Buffer *res, VarEvalMode emode)
4602 1.768 rillig {
4603 1.830 rillig /* A dollar sign may be escaped with another dollar sign. */
4604 1.906 rillig if (save_dollars && VarEvalMode_ShouldKeepDollar(emode))
4605 1.768 rillig Buf_AddByte(res, '$');
4606 1.768 rillig Buf_AddByte(res, '$');
4607 1.768 rillig *pp += 2;
4608 1.768 rillig }
4609 1.768 rillig
4610 1.768 rillig static void
4611 1.802 rillig VarSubstExpr(const char **pp, Buffer *buf, GNode *scope,
4612 1.906 rillig VarEvalMode emode, bool *inout_errorReported)
4613 1.678 rillig {
4614 1.703 rillig const char *p = *pp;
4615 1.703 rillig const char *nested_p = p;
4616 1.743 rillig FStr val;
4617 1.703 rillig
4618 1.906 rillig (void)Var_Parse(&nested_p, scope, emode, &val);
4619 1.703 rillig /* TODO: handle errors */
4620 1.678 rillig
4621 1.743 rillig if (val.str == var_Error || val.str == varUndefined) {
4622 1.906 rillig if (!VarEvalMode_ShouldKeepUndef(emode)) {
4623 1.703 rillig p = nested_p;
4624 1.1004 rillig } else if (val.str == var_Error) {
4625 1.703 rillig
4626 1.703 rillig /*
4627 1.703 rillig * XXX: This condition is wrong. If val == var_Error,
4628 1.703 rillig * this doesn't necessarily mean there was an undefined
4629 1.703 rillig * variable. It could equally well be a parse error;
4630 1.703 rillig * see unit-tests/varmod-order.exp.
4631 1.703 rillig */
4632 1.703 rillig
4633 1.703 rillig /*
4634 1.703 rillig * If variable is undefined, complain and skip the
4635 1.703 rillig * variable. The complaint will stop us from doing
4636 1.703 rillig * anything when the file is parsed.
4637 1.703 rillig */
4638 1.703 rillig if (!*inout_errorReported) {
4639 1.703 rillig Parse_Error(PARSE_FATAL,
4640 1.703 rillig "Undefined variable \"%.*s\"",
4641 1.703 rillig (int)(size_t)(nested_p - p), p);
4642 1.703 rillig }
4643 1.703 rillig p = nested_p;
4644 1.895 rillig *inout_errorReported = true;
4645 1.703 rillig } else {
4646 1.988 rillig /*
4647 1.988 rillig * Copy the initial '$' of the undefined expression,
4648 1.703 rillig * thereby deferring expansion of the expression, but
4649 1.988 rillig * expand nested expressions if already possible. See
4650 1.988 rillig * unit-tests/varparse-undef-partial.mk.
4651 1.988 rillig */
4652 1.703 rillig Buf_AddByte(buf, *p);
4653 1.703 rillig p++;
4654 1.703 rillig }
4655 1.678 rillig } else {
4656 1.703 rillig p = nested_p;
4657 1.743 rillig Buf_AddStr(buf, val.str);
4658 1.678 rillig }
4659 1.678 rillig
4660 1.743 rillig FStr_Done(&val);
4661 1.678 rillig
4662 1.703 rillig *pp = p;
4663 1.678 rillig }
4664 1.678 rillig
4665 1.768 rillig /*
4666 1.768 rillig * Skip as many characters as possible -- either to the end of the string
4667 1.768 rillig * or to the next dollar sign (variable expression).
4668 1.768 rillig */
4669 1.768 rillig static void
4670 1.768 rillig VarSubstPlain(const char **pp, Buffer *res)
4671 1.768 rillig {
4672 1.768 rillig const char *p = *pp;
4673 1.768 rillig const char *start = p;
4674 1.768 rillig
4675 1.768 rillig for (p++; *p != '$' && *p != '\0'; p++)
4676 1.768 rillig continue;
4677 1.768 rillig Buf_AddBytesBetween(res, start, p);
4678 1.768 rillig *pp = p;
4679 1.768 rillig }
4680 1.768 rillig
4681 1.778 rillig /*
4682 1.778 rillig * Expand all variable expressions like $V, ${VAR}, $(VAR:Modifiers) in the
4683 1.660 rillig * given string.
4684 1.1 cgd *
4685 1.70 wiz * Input:
4686 1.660 rillig * str The string in which the variable expressions are
4687 1.660 rillig * expanded.
4688 1.802 rillig * scope The scope in which to start searching for
4689 1.802 rillig * variables. The other scopes are searched as well.
4690 1.917 rillig * emode The mode for parsing or evaluating subexpressions.
4691 1.1 cgd */
4692 1.533 rillig VarParseResult
4693 1.906 rillig Var_Subst(const char *str, GNode *scope, VarEvalMode emode, char **out_res)
4694 1.1 cgd {
4695 1.703 rillig const char *p = str;
4696 1.703 rillig Buffer res;
4697 1.1 cgd
4698 1.988 rillig /*
4699 1.988 rillig * Set true if an error has already been reported, to prevent a
4700 1.988 rillig * plethora of messages when recursing
4701 1.988 rillig */
4702 1.1005 rillig /* See varparse-errors.mk for why the 'static' is necessary here. */
4703 1.895 rillig static bool errorReported;
4704 1.703 rillig
4705 1.703 rillig Buf_Init(&res);
4706 1.895 rillig errorReported = false;
4707 1.703 rillig
4708 1.703 rillig while (*p != '\0') {
4709 1.768 rillig if (p[0] == '$' && p[1] == '$')
4710 1.906 rillig VarSubstDollarDollar(&p, &res, emode);
4711 1.768 rillig else if (p[0] == '$')
4712 1.906 rillig VarSubstExpr(&p, &res, scope, emode, &errorReported);
4713 1.768 rillig else
4714 1.768 rillig VarSubstPlain(&p, &res);
4715 1.1 cgd }
4716 1.15 christos
4717 1.784 rillig *out_res = Buf_DoneDataCompact(&res);
4718 1.703 rillig return VPR_OK;
4719 1.1 cgd }
4720 1.1 cgd
4721 1.1001 rillig void
4722 1.1001 rillig Var_Expand(FStr *str, GNode *scope, VarEvalMode emode)
4723 1.1001 rillig {
4724 1.1001 rillig char *expanded;
4725 1.1001 rillig
4726 1.1001 rillig if (strchr(str->str, '$') == NULL)
4727 1.1001 rillig return;
4728 1.1001 rillig (void)Var_Subst(str->str, scope, emode, &expanded);
4729 1.1001 rillig /* TODO: handle errors */
4730 1.1001 rillig FStr_Done(str);
4731 1.1001 rillig *str = FStr_InitOwn(expanded);
4732 1.1001 rillig }
4733 1.1001 rillig
4734 1.572 rillig /* Initialize the variables module. */
4735 1.1 cgd void
4736 1.70 wiz Var_Init(void)
4737 1.1 cgd {
4738 1.801 rillig SCOPE_INTERNAL = GNode_New("Internal");
4739 1.801 rillig SCOPE_GLOBAL = GNode_New("Global");
4740 1.801 rillig SCOPE_CMDLINE = GNode_New("Command");
4741 1.6 jtc }
4742 1.6 jtc
4743 1.572 rillig /* Clean up the variables module. */
4744 1.6 jtc void
4745 1.70 wiz Var_End(void)
4746 1.6 jtc {
4747 1.703 rillig Var_Stats();
4748 1.286 sjg }
4749 1.286 sjg
4750 1.286 sjg void
4751 1.286 sjg Var_Stats(void)
4752 1.286 sjg {
4753 1.802 rillig HashTable_DebugStats(&SCOPE_GLOBAL->vars, "Global variables");
4754 1.1 cgd }
4755 1.15 christos
4756 1.964 rillig static int
4757 1.964 rillig StrAsc(const void *sa, const void *sb)
4758 1.964 rillig {
4759 1.964 rillig return strcmp(
4760 1.964 rillig *((const char *const *)sa), *((const char *const *)sb));
4761 1.964 rillig }
4762 1.964 rillig
4763 1.964 rillig
4764 1.802 rillig /* Print all variables in a scope, sorted by name. */
4765 1.5 cgd void
4766 1.802 rillig Var_Dump(GNode *scope)
4767 1.1 cgd {
4768 1.703 rillig Vector /* of const char * */ vec;
4769 1.703 rillig HashIter hi;
4770 1.703 rillig size_t i;
4771 1.703 rillig const char **varnames;
4772 1.703 rillig
4773 1.703 rillig Vector_Init(&vec, sizeof(const char *));
4774 1.703 rillig
4775 1.802 rillig HashIter_Init(&hi, &scope->vars);
4776 1.703 rillig while (HashIter_Next(&hi) != NULL)
4777 1.703 rillig *(const char **)Vector_Push(&vec) = hi.entry->key;
4778 1.703 rillig varnames = vec.items;
4779 1.703 rillig
4780 1.964 rillig qsort(varnames, vec.len, sizeof varnames[0], StrAsc);
4781 1.703 rillig
4782 1.703 rillig for (i = 0; i < vec.len; i++) {
4783 1.703 rillig const char *varname = varnames[i];
4784 1.802 rillig Var *var = HashTable_FindValue(&scope->vars, varname);
4785 1.785 rillig debug_printf("%-16s = %s\n", varname, var->val.data);
4786 1.703 rillig }
4787 1.573 rillig
4788 1.703 rillig Vector_Done(&vec);
4789 1.1 cgd }
4790