for.c revision 1.92 1 1.92 rillig /* $NetBSD: for.c,v 1.92 2020/10/05 19:27:47 rillig Exp $ */
2 1.3 christos
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1992, The Regents of the University of California.
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.15 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.1 cgd /*-
33 1.80 rillig * Handling of .for/.endfor loops in a makefile.
34 1.80 rillig *
35 1.80 rillig * For loops are of the form:
36 1.80 rillig *
37 1.80 rillig * .for <varname...> in <value...>
38 1.80 rillig * ...
39 1.80 rillig * .endfor
40 1.80 rillig *
41 1.80 rillig * When a .for line is parsed, all following lines are accumulated into a
42 1.80 rillig * buffer, up to but excluding the corresponding .endfor line. To find the
43 1.80 rillig * corresponding .endfor, the number of nested .for and .endfor directives
44 1.80 rillig * are counted.
45 1.80 rillig *
46 1.80 rillig * During parsing, any nested .for loops are just passed through; they get
47 1.80 rillig * handled recursively in For_Eval when the enclosing .for loop is evaluated
48 1.80 rillig * in For_Run.
49 1.80 rillig *
50 1.80 rillig * When the .for loop has been parsed completely, the variable expressions
51 1.80 rillig * for the iteration variables are replaced with expressions of the form
52 1.80 rillig * ${:Uvalue}, and then this modified body is "included" as a special file.
53 1.1 cgd *
54 1.1 cgd * Interface:
55 1.88 rillig * For_Eval Evaluate the loop in the passed line.
56 1.88 rillig *
57 1.1 cgd * For_Run Run accumulated loop
58 1.1 cgd */
59 1.1 cgd
60 1.1 cgd #include "make.h"
61 1.38 dsl #include "strlist.h"
62 1.1 cgd
63 1.83 rillig /* "@(#)for.c 8.1 (Berkeley) 6/6/93" */
64 1.92 rillig MAKE_RCSID("$NetBSD: for.c,v 1.92 2020/10/05 19:27:47 rillig Exp $");
65 1.83 rillig
66 1.75 rillig typedef enum {
67 1.75 rillig FOR_SUB_ESCAPE_CHAR = 0x0001,
68 1.75 rillig FOR_SUB_ESCAPE_BRACE = 0x0002,
69 1.75 rillig FOR_SUB_ESCAPE_PAREN = 0x0004
70 1.75 rillig } ForEscapes;
71 1.42 dsl
72 1.63 rillig static int forLevel = 0; /* Nesting level */
73 1.1 cgd
74 1.1 cgd /*
75 1.1 cgd * State of a for loop.
76 1.1 cgd */
77 1.86 rillig typedef struct For {
78 1.63 rillig Buffer buf; /* Body of loop */
79 1.63 rillig strlist_t vars; /* Iteration variables */
80 1.63 rillig strlist_t items; /* Substitution items */
81 1.63 rillig char *parse_buf;
82 1.69 rillig /* Is any of the names 1 character long? If so, when the variable values
83 1.69 rillig * are substituted, the parser must handle $V expressions as well, not
84 1.69 rillig * only ${V} and $(V). */
85 1.69 rillig Boolean short_var;
86 1.63 rillig int sub_next;
87 1.2 jtc } For;
88 1.1 cgd
89 1.63 rillig static For *accumFor; /* Loop being accumulated */
90 1.1 cgd
91 1.7 christos
92 1.43 dsl static void
93 1.43 dsl For_Free(For *arg)
94 1.43 dsl {
95 1.46 dsl Buf_Destroy(&arg->buf, TRUE);
96 1.43 dsl strlist_clean(&arg->vars);
97 1.43 dsl strlist_clean(&arg->items);
98 1.43 dsl free(arg->parse_buf);
99 1.43 dsl
100 1.43 dsl free(arg);
101 1.43 dsl }
102 1.43 dsl
103 1.70 rillig /* Evaluate the for loop in the passed line. The line looks like this:
104 1.70 rillig * .for <varname...> in <value...>
105 1.1 cgd *
106 1.13 wiz * Input:
107 1.13 wiz * line Line to parse
108 1.13 wiz *
109 1.1 cgd * Results:
110 1.35 dsl * 0: Not a .for statement, parse the line
111 1.35 dsl * 1: We found a for loop
112 1.35 dsl * -1: A .for statement with a bad syntax error, discard.
113 1.1 cgd */
114 1.1 cgd int
115 1.73 rillig For_Eval(const char *line)
116 1.1 cgd {
117 1.43 dsl For *new_for;
118 1.72 rillig const char *ptr;
119 1.67 rillig Words words;
120 1.33 dsl
121 1.43 dsl /* Skip the '.' and any following whitespace */
122 1.92 rillig ptr = line + 1;
123 1.92 rillig cpp_skip_whitespace(&ptr);
124 1.43 dsl
125 1.32 dsl /*
126 1.32 dsl * If we are not in a for loop quickly determine if the statement is
127 1.32 dsl * a for.
128 1.32 dsl */
129 1.32 dsl if (ptr[0] != 'f' || ptr[1] != 'o' || ptr[2] != 'r' ||
130 1.79 rillig !ch_isspace(ptr[3])) {
131 1.63 rillig if (ptr[0] == 'e' && strncmp(ptr + 1, "ndfor", 5) == 0) {
132 1.32 dsl Parse_Error(PARSE_FATAL, "for-less endfor");
133 1.32 dsl return -1;
134 1.32 dsl }
135 1.32 dsl return 0;
136 1.32 dsl }
137 1.32 dsl ptr += 3;
138 1.1 cgd
139 1.32 dsl /*
140 1.32 dsl * we found a for loop, and now we are going to parse it.
141 1.32 dsl */
142 1.1 cgd
143 1.43 dsl new_for = bmake_malloc(sizeof *new_for);
144 1.71 rillig Buf_Init(&new_for->buf, 0);
145 1.71 rillig strlist_init(&new_for->vars);
146 1.71 rillig strlist_init(&new_for->items);
147 1.71 rillig new_for->parse_buf = NULL;
148 1.71 rillig new_for->short_var = FALSE;
149 1.71 rillig new_for->sub_next = 0;
150 1.43 dsl
151 1.33 dsl /* Grab the variables. Terminate on "in". */
152 1.72 rillig while (TRUE) {
153 1.72 rillig size_t len;
154 1.72 rillig
155 1.92 rillig cpp_skip_whitespace(&ptr);
156 1.33 dsl if (*ptr == '\0') {
157 1.33 dsl Parse_Error(PARSE_FATAL, "missing `in' in for");
158 1.43 dsl For_Free(new_for);
159 1.33 dsl return -1;
160 1.33 dsl }
161 1.72 rillig
162 1.79 rillig for (len = 1; ptr[len] && !ch_isspace(ptr[len]); len++)
163 1.33 dsl continue;
164 1.33 dsl if (len == 2 && ptr[0] == 'i' && ptr[1] == 'n') {
165 1.33 dsl ptr += 2;
166 1.33 dsl break;
167 1.33 dsl }
168 1.43 dsl if (len == 1)
169 1.69 rillig new_for->short_var = TRUE;
170 1.69 rillig
171 1.66 rillig strlist_add_str(&new_for->vars, bmake_strldup(ptr, len), len);
172 1.72 rillig ptr += len;
173 1.32 dsl }
174 1.1 cgd
175 1.43 dsl if (strlist_num(&new_for->vars) == 0) {
176 1.32 dsl Parse_Error(PARSE_FATAL, "no iteration variables in for");
177 1.43 dsl For_Free(new_for);
178 1.32 dsl return -1;
179 1.32 dsl }
180 1.4 christos
181 1.92 rillig cpp_skip_whitespace(&ptr);
182 1.32 dsl
183 1.32 dsl /*
184 1.70 rillig * Make a list with the remaining words.
185 1.70 rillig * The values are later substituted as ${:U<value>...} so we must
186 1.70 rillig * backslash-escape characters that break that syntax.
187 1.44 dsl * Variables are fully expanded - so it is safe for escape $.
188 1.44 dsl * We can't do the escapes here - because we don't know whether
189 1.70 rillig * we will be substituting into ${...} or $(...).
190 1.32 dsl */
191 1.72 rillig {
192 1.85 rillig char *items;
193 1.85 rillig (void)Var_Subst(ptr, VAR_GLOBAL, VARE_WANTRES, &items);
194 1.85 rillig /* TODO: handle errors */
195 1.72 rillig words = Str_Words(items, FALSE);
196 1.72 rillig free(items);
197 1.72 rillig }
198 1.54 rillig
199 1.67 rillig {
200 1.72 rillig size_t n;
201 1.65 rillig
202 1.67 rillig for (n = 0; n < words.len; n++) {
203 1.75 rillig ForEscapes escapes;
204 1.72 rillig char ch;
205 1.72 rillig
206 1.67 rillig ptr = words.words[n];
207 1.72 rillig if (ptr[0] == '\0')
208 1.49 sjg continue;
209 1.49 sjg escapes = 0;
210 1.49 sjg while ((ch = *ptr++)) {
211 1.63 rillig switch (ch) {
212 1.49 sjg case ':':
213 1.49 sjg case '$':
214 1.49 sjg case '\\':
215 1.49 sjg escapes |= FOR_SUB_ESCAPE_CHAR;
216 1.49 sjg break;
217 1.49 sjg case ')':
218 1.49 sjg escapes |= FOR_SUB_ESCAPE_PAREN;
219 1.49 sjg break;
220 1.72 rillig case '}':
221 1.49 sjg escapes |= FOR_SUB_ESCAPE_BRACE;
222 1.49 sjg break;
223 1.49 sjg }
224 1.49 sjg }
225 1.49 sjg /*
226 1.49 sjg * We have to dup words[n] to maintain the semantics of
227 1.49 sjg * strlist.
228 1.49 sjg */
229 1.67 rillig strlist_add_str(&new_for->items, bmake_strdup(words.words[n]),
230 1.67 rillig escapes);
231 1.39 dsl }
232 1.72 rillig }
233 1.72 rillig
234 1.72 rillig Words_Free(words);
235 1.1 cgd
236 1.72 rillig {
237 1.82 rillig size_t len, n;
238 1.7 christos
239 1.49 sjg if ((len = strlist_num(&new_for->items)) > 0 &&
240 1.49 sjg len % (n = strlist_num(&new_for->vars))) {
241 1.49 sjg Parse_Error(PARSE_FATAL,
242 1.65 rillig "Wrong number of words (%zu) in .for substitution list"
243 1.65 rillig " with %zu vars", len, n);
244 1.49 sjg /*
245 1.49 sjg * Return 'success' so that the body of the .for loop is
246 1.49 sjg * accumulated.
247 1.49 sjg * Remove all items so that the loop doesn't iterate.
248 1.49 sjg */
249 1.49 sjg strlist_clean(&new_for->items);
250 1.49 sjg }
251 1.32 dsl }
252 1.32 dsl
253 1.43 dsl accumFor = new_for;
254 1.32 dsl forLevel = 1;
255 1.32 dsl return 1;
256 1.32 dsl }
257 1.7 christos
258 1.35 dsl /*
259 1.35 dsl * Add another line to a .for loop.
260 1.81 rillig * Returns FALSE when the matching .endfor is reached.
261 1.35 dsl */
262 1.81 rillig Boolean
263 1.73 rillig For_Accum(const char *line)
264 1.32 dsl {
265 1.73 rillig const char *ptr = line;
266 1.26 dsl
267 1.26 dsl if (*ptr == '.') {
268 1.92 rillig ptr++;
269 1.92 rillig cpp_skip_whitespace(&ptr);
270 1.1 cgd
271 1.79 rillig if (strncmp(ptr, "endfor", 6) == 0 && (ch_isspace(ptr[6]) || !ptr[6])) {
272 1.89 rillig DEBUG1(FOR, "For: end for %d\n", forLevel);
273 1.32 dsl if (--forLevel <= 0)
274 1.81 rillig return FALSE;
275 1.79 rillig } else if (strncmp(ptr, "for", 3) == 0 && ch_isspace(ptr[3])) {
276 1.1 cgd forLevel++;
277 1.89 rillig DEBUG1(FOR, "For: new loop %d\n", forLevel);
278 1.1 cgd }
279 1.1 cgd }
280 1.1 cgd
281 1.59 rillig Buf_AddStr(&accumFor->buf, line);
282 1.46 dsl Buf_AddByte(&accumFor->buf, '\n');
283 1.81 rillig return TRUE;
284 1.1 cgd }
285 1.1 cgd
286 1.42 dsl
287 1.59 rillig static size_t
288 1.45 dsl for_var_len(const char *var)
289 1.45 dsl {
290 1.45 dsl char ch, var_start, var_end;
291 1.61 rillig int depth;
292 1.61 rillig size_t len;
293 1.45 dsl
294 1.45 dsl var_start = *var;
295 1.45 dsl if (var_start == 0)
296 1.45 dsl /* just escape the $ */
297 1.45 dsl return 0;
298 1.45 dsl
299 1.45 dsl if (var_start == '(')
300 1.45 dsl var_end = ')';
301 1.45 dsl else if (var_start == '{')
302 1.45 dsl var_end = '}';
303 1.45 dsl else
304 1.45 dsl /* Single char variable */
305 1.45 dsl return 1;
306 1.45 dsl
307 1.61 rillig depth = 1;
308 1.45 dsl for (len = 1; (ch = var[len++]) != 0;) {
309 1.45 dsl if (ch == var_start)
310 1.45 dsl depth++;
311 1.45 dsl else if (ch == var_end && --depth == 0)
312 1.45 dsl return len;
313 1.45 dsl }
314 1.45 dsl
315 1.45 dsl /* Variable end not found, escape the $ */
316 1.45 dsl return 0;
317 1.45 dsl }
318 1.45 dsl
319 1.42 dsl static void
320 1.46 dsl for_substitute(Buffer *cmds, strlist_t *items, unsigned int item_no, char ech)
321 1.42 dsl {
322 1.74 rillig const char *item = strlist_str(items, item_no);
323 1.75 rillig ForEscapes escapes = strlist_info(items, item_no);
324 1.61 rillig char ch;
325 1.61 rillig
326 1.42 dsl /* If there were no escapes, or the only escape is the other variable
327 1.42 dsl * terminator, then just substitute the full string */
328 1.74 rillig if (!(escapes &
329 1.63 rillig (ech == ')' ? ~FOR_SUB_ESCAPE_BRACE : ~FOR_SUB_ESCAPE_PAREN))) {
330 1.59 rillig Buf_AddStr(cmds, item);
331 1.42 dsl return;
332 1.42 dsl }
333 1.42 dsl
334 1.74 rillig /* Escape ':', '$', '\\' and 'ech' - these will be removed later by
335 1.74 rillig * :U processing, see ApplyModifier_Defined. */
336 1.45 dsl while ((ch = *item++) != 0) {
337 1.45 dsl if (ch == '$') {
338 1.59 rillig size_t len = for_var_len(item);
339 1.45 dsl if (len != 0) {
340 1.62 rillig Buf_AddBytes(cmds, item - 1, len + 1);
341 1.45 dsl item += len;
342 1.45 dsl continue;
343 1.45 dsl }
344 1.45 dsl Buf_AddByte(cmds, '\\');
345 1.45 dsl } else if (ch == ':' || ch == '\\' || ch == ech)
346 1.42 dsl Buf_AddByte(cmds, '\\');
347 1.42 dsl Buf_AddByte(cmds, ch);
348 1.42 dsl }
349 1.42 dsl }
350 1.42 dsl
351 1.43 dsl static char *
352 1.68 rillig ForIterate(void *v_arg, size_t *ret_len)
353 1.1 cgd {
354 1.43 dsl For *arg = v_arg;
355 1.59 rillig int i;
356 1.42 dsl char *var;
357 1.77 rillig const char *cp;
358 1.77 rillig const char *cmd_cp;
359 1.77 rillig const char *body_end;
360 1.39 dsl char ch;
361 1.39 dsl Buffer cmds;
362 1.76 rillig char *cmds_str;
363 1.61 rillig size_t cmd_len;
364 1.7 christos
365 1.43 dsl if (arg->sub_next + strlist_num(&arg->vars) > strlist_num(&arg->items)) {
366 1.43 dsl /* No more iterations */
367 1.43 dsl For_Free(arg);
368 1.43 dsl return NULL;
369 1.43 dsl }
370 1.1 cgd
371 1.43 dsl free(arg->parse_buf);
372 1.43 dsl arg->parse_buf = NULL;
373 1.7 christos
374 1.39 dsl /*
375 1.39 dsl * Scan the for loop body and replace references to the loop variables
376 1.39 dsl * with variable references that expand to the required text.
377 1.39 dsl * Using variable expansions ensures that the .for loop can't generate
378 1.39 dsl * syntax, and that the later parsing will still see a variable.
379 1.39 dsl * We assume that the null variable will never be defined.
380 1.39 dsl *
381 1.74 rillig * The detection of substitutions of the loop control variable is naive.
382 1.39 dsl * Many of the modifiers use \ to escape $ (not $) so it is possible
383 1.39 dsl * to contrive a makefile where an unwanted substitution happens.
384 1.39 dsl */
385 1.43 dsl
386 1.62 rillig cmd_cp = Buf_GetAll(&arg->buf, &cmd_len);
387 1.59 rillig body_end = cmd_cp + cmd_len;
388 1.62 rillig Buf_Init(&cmds, cmd_len + 256);
389 1.43 dsl for (cp = cmd_cp; (cp = strchr(cp, '$')) != NULL;) {
390 1.43 dsl char ech;
391 1.43 dsl ch = *++cp;
392 1.53 riastrad if ((ch == '(' && (ech = ')', 1)) || (ch == '{' && (ech = '}', 1))) {
393 1.43 dsl cp++;
394 1.43 dsl /* Check variable name against the .for loop variables */
395 1.43 dsl STRLIST_FOREACH(var, &arg->vars, i) {
396 1.59 rillig size_t vlen = strlist_info(&arg->vars, i);
397 1.59 rillig if (memcmp(cp, var, vlen) != 0)
398 1.43 dsl continue;
399 1.59 rillig if (cp[vlen] != ':' && cp[vlen] != ech && cp[vlen] != '\\')
400 1.39 dsl continue;
401 1.43 dsl /* Found a variable match. Replace with :U<value> */
402 1.59 rillig Buf_AddBytesBetween(&cmds, cmd_cp, cp);
403 1.59 rillig Buf_AddStr(&cmds, ":U");
404 1.59 rillig cp += vlen;
405 1.43 dsl cmd_cp = cp;
406 1.46 dsl for_substitute(&cmds, &arg->items, arg->sub_next + i, ech);
407 1.39 dsl break;
408 1.39 dsl }
409 1.43 dsl continue;
410 1.43 dsl }
411 1.43 dsl if (ch == 0)
412 1.43 dsl break;
413 1.43 dsl /* Probably a single character name, ignore $$ and stupid ones. {*/
414 1.43 dsl if (!arg->short_var || strchr("}):$", ch) != NULL) {
415 1.43 dsl cp++;
416 1.43 dsl continue;
417 1.43 dsl }
418 1.43 dsl STRLIST_FOREACH(var, &arg->vars, i) {
419 1.43 dsl if (var[0] != ch || var[1] != 0)
420 1.43 dsl continue;
421 1.43 dsl /* Found a variable match. Replace with ${:U<value>} */
422 1.59 rillig Buf_AddBytesBetween(&cmds, cmd_cp, cp);
423 1.59 rillig Buf_AddStr(&cmds, "{:U");
424 1.43 dsl cmd_cp = ++cp;
425 1.84 rillig for_substitute(&cmds, &arg->items, arg->sub_next + i, '}');
426 1.59 rillig Buf_AddByte(&cmds, '}');
427 1.43 dsl break;
428 1.39 dsl }
429 1.43 dsl }
430 1.59 rillig Buf_AddBytesBetween(&cmds, cmd_cp, body_end);
431 1.43 dsl
432 1.87 rillig *ret_len = Buf_Len(&cmds);
433 1.76 rillig cmds_str = Buf_Destroy(&cmds, FALSE);
434 1.89 rillig DEBUG1(FOR, "For: loop body:\n%s", cmds_str);
435 1.39 dsl
436 1.43 dsl arg->sub_next += strlist_num(&arg->vars);
437 1.43 dsl
438 1.76 rillig arg->parse_buf = cmds_str;
439 1.76 rillig return cmds_str;
440 1.43 dsl }
441 1.7 christos
442 1.60 rillig /* Run the for loop, imitating the actions of an include file. */
443 1.43 dsl void
444 1.43 dsl For_Run(int lineno)
445 1.54 rillig {
446 1.43 dsl For *arg;
447 1.54 rillig
448 1.43 dsl arg = accumFor;
449 1.43 dsl accumFor = NULL;
450 1.1 cgd
451 1.43 dsl if (strlist_num(&arg->items) == 0) {
452 1.58 rillig /* Nothing to expand - possibly due to an earlier syntax error. */
453 1.58 rillig For_Free(arg);
454 1.58 rillig return;
455 1.43 dsl }
456 1.54 rillig
457 1.68 rillig Parse_SetInput(NULL, lineno, -1, ForIterate, arg);
458 1.1 cgd }
459