suff.c revision 1.207 1 /* $NetBSD: suff.c,v 1.207 2020/10/21 07:05:52 rillig Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35 /*
36 * Copyright (c) 1989 by Berkeley Softworks
37 * All rights reserved.
38 *
39 * This code is derived from software contributed to Berkeley by
40 * Adam de Boor.
41 *
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. All advertising materials mentioning features or use of this software
51 * must display the following acknowledgement:
52 * This product includes software developed by the University of
53 * California, Berkeley and its contributors.
54 * 4. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
57 *
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * SUCH DAMAGE.
69 */
70
71 /*-
72 * suff.c --
73 * Functions to maintain suffix lists and find implicit dependents
74 * using suffix transformation rules
75 *
76 * Interface:
77 * Suff_Init Initialize all things to do with suffixes.
78 *
79 * Suff_End Clean up the module
80 *
81 * Suff_DoPaths This function is used to make life easier
82 * when searching for a file according to its
83 * suffix. It takes the global search path,
84 * as defined using the .PATH: target, and appends
85 * its directories to the path of each of the
86 * defined suffixes, as specified using
87 * .PATH<suffix>: targets. In addition, all
88 * directories given for suffixes labeled as
89 * include files or libraries, using the .INCLUDES
90 * or .LIBS targets, are played with using
91 * Dir_MakeFlags to create the .INCLUDES and
92 * .LIBS global variables.
93 *
94 * Suff_ClearSuffixes
95 * Clear out all the suffixes and defined
96 * transformations.
97 *
98 * Suff_IsTransform
99 * Return TRUE if the passed string is the lhs
100 * of a transformation rule.
101 *
102 * Suff_AddSuffix Add the passed string as another known suffix.
103 *
104 * Suff_GetPath Return the search path for the given suffix.
105 *
106 * Suff_AddInclude
107 * Mark the given suffix as denoting an include file.
108 *
109 * Suff_AddLib Mark the given suffix as denoting a library.
110 *
111 * Suff_AddTransform
112 * Add another transformation to the suffix
113 * graph. Returns GNode suitable for framing, I
114 * mean, tacking commands, attributes, etc. on.
115 *
116 * Suff_SetNull Define the suffix to consider the suffix of
117 * any file that doesn't have a known one.
118 *
119 * Suff_FindDeps Find implicit sources for and the location of
120 * a target based on its suffix. Returns the
121 * bottom-most node added to the graph or NULL
122 * if the target had no implicit sources.
123 *
124 * Suff_FindPath Return the appropriate path to search in order to
125 * find the node.
126 */
127
128 #include "make.h"
129 #include "dir.h"
130
131 /* "@(#)suff.c 8.4 (Berkeley) 3/21/94" */
132 MAKE_RCSID("$NetBSD: suff.c,v 1.207 2020/10/21 07:05:52 rillig Exp $");
133
134 #define SUFF_DEBUG0(text) DEBUG0(SUFF, text)
135 #define SUFF_DEBUG1(fmt, arg1) DEBUG1(SUFF, fmt, arg1)
136 #define SUFF_DEBUG2(fmt, arg1, arg2) DEBUG2(SUFF, fmt, arg1, arg2)
137 #define SUFF_DEBUG3(fmt, arg1, arg2, arg3) DEBUG3(SUFF, fmt, arg1, arg2, arg3)
138 #define SUFF_DEBUG4(fmt, arg1, arg2, arg3, arg4) \
139 DEBUG4(SUFF, fmt, arg1, arg2, arg3, arg4)
140
141 typedef List SuffList;
142 typedef ListNode SuffListNode;
143
144 typedef List SrcList;
145 typedef ListNode SrcListNode;
146
147 static SuffList *sufflist; /* List of suffixes */
148 #ifdef CLEANUP
149 static SuffList *suffClean; /* List of suffixes to be cleaned */
150 #endif
151 static SrcList *srclist; /* List of sources */
152 static GNodeList *transforms; /* List of transformation rules */
153
154 static int sNum = 0; /* Counter for assigning suffix numbers */
155
156 typedef enum SuffFlags {
157 SUFF_INCLUDE = 0x01, /* One which is #include'd */
158 SUFF_LIBRARY = 0x02, /* One which contains a library */
159 SUFF_NULL = 0x04 /* The empty suffix */
160 /* XXX: Why is SUFF_NULL needed? Wouldn't nameLen == 0 mean the same? */
161 } SuffFlags;
162
163 ENUM_FLAGS_RTTI_3(SuffFlags,
164 SUFF_INCLUDE, SUFF_LIBRARY, SUFF_NULL);
165
166 typedef List SuffListList;
167
168 /*
169 * Structure describing an individual suffix.
170 */
171 typedef struct Suff {
172 char *name; /* The suffix itself, such as ".c" */
173 size_t nameLen; /* Length of the name, to avoid strlen calls */
174 SuffFlags flags; /* Type of suffix */
175 SearchPath *searchPath; /* The path along which files of this suffix
176 * may be found */
177 int sNum; /* The suffix number */
178 int refCount; /* Reference count of list membership
179 * and several other places */
180 SuffList *parents; /* Suffixes we have a transformation to */
181 SuffList *children; /* Suffixes we have a transformation from */
182 SuffListList *ref; /* Lists in which this suffix is referenced */
183 } Suff;
184
185 /*
186 * Structure used in the search for implied sources.
187 */
188 typedef struct Src {
189 char *file; /* The file to look for */
190 char *pref; /* Prefix from which file was formed */
191 Suff *suff; /* The suffix on the file */
192 struct Src *parent; /* The Src for which this is a source */
193 GNode *node; /* The node describing the file */
194 int children; /* Count of existing children (so we don't free
195 * this thing too early or never nuke it) */
196 #ifdef DEBUG_SRC
197 SrcList *cp; /* Debug; children list */
198 #endif
199 } Src;
200
201 static Suff *suffNull; /* The NULL suffix for this run */
202 static Suff *emptySuff; /* The empty suffix required for POSIX
203 * single-suffix transformation rules */
204
205
206 static void SuffFindDeps(GNode *, SrcList *);
207 static void SuffExpandWildcards(GNodeListNode *, GNode *);
208
209 /*************** Lst Predicates ****************/
210 /*-
211 *-----------------------------------------------------------------------
212 * SuffStrIsPrefix --
213 * See if pref is a prefix of str.
214 *
215 * Input:
216 * pref possible prefix
217 * str string to check
218 *
219 * Results:
220 * NULL if it ain't, pointer to character in str after prefix if so
221 *
222 * Side Effects:
223 * None
224 *-----------------------------------------------------------------------
225 */
226 static const char *
227 SuffStrIsPrefix(const char *pref, const char *str)
228 {
229 while (*str && *pref == *str) {
230 pref++;
231 str++;
232 }
233
234 return *pref ? NULL : str;
235 }
236
237 /* See if suff is a suffix of str.
238 *
239 * Input:
240 * s possible suffix
241 * nameLen length of the string to examine
242 * nameEnd end of the string to examine
243 *
244 * Results:
245 * NULL if it ain't, pointer to the start of suffix in str if it is.
246 */
247 static char *
248 SuffSuffGetSuffix(const Suff *s, size_t nameLen, char *nameEnd)
249 {
250 char *p1; /* Pointer into suffix name */
251 char *p2; /* Pointer into string being examined */
252
253 if (nameLen < s->nameLen)
254 return NULL; /* this string is shorter than the suffix */
255
256 p1 = s->name + s->nameLen;
257 p2 = nameEnd;
258
259 while (p1 >= s->name && *p1 == *p2) {
260 p1--;
261 p2--;
262 }
263
264 /* XXX: s->name - 1 invokes undefined behavior */
265 return p1 == s->name - 1 ? p2 + 1 : NULL;
266 }
267
268 /* Predicate form of SuffSuffGetSuffix, for Lst_Find. */
269 static Boolean
270 SuffSuffIsSuffix(const Suff *suff, size_t nameLen, char *nameEnd)
271 {
272 return SuffSuffGetSuffix(suff, nameLen, nameEnd) != NULL;
273 }
274
275 static Suff *
276 FindSuffByName(const char *name)
277 {
278 SuffListNode *ln;
279
280 for (ln = sufflist->first; ln != NULL; ln = ln->next) {
281 Suff *suff = ln->datum;
282 if (strcmp(suff->name, name) == 0)
283 return suff;
284 }
285 return NULL;
286 }
287
288 /* See if the graph node has the desired name. */
289 static Boolean
290 SuffGNHasName(const void *gn, const void *desiredName)
291 {
292 return strcmp(((const GNode *)gn)->name, desiredName) == 0;
293 }
294
295 /*********** Maintenance Functions ************/
296
297 static void
298 SuffUnRef(SuffList *list, Suff *suff)
299 {
300 SuffListNode *ln = Lst_FindDatum(list, suff);
301 if (ln != NULL) {
302 Lst_Remove(list, ln);
303 suff->refCount--;
304 }
305 }
306
307 /* Free up all memory associated with the given suffix structure. */
308 static void
309 SuffFree(void *sp)
310 {
311 Suff *s = (Suff *)sp;
312
313 if (s == suffNull)
314 suffNull = NULL;
315
316 if (s == emptySuff)
317 emptySuff = NULL;
318
319 #if 0
320 /* We don't delete suffixes in order, so we cannot use this */
321 if (s->refCount)
322 Punt("Internal error deleting suffix `%s' with refcount = %d", s->name,
323 s->refCount);
324 #endif
325
326 Lst_Free(s->ref);
327 Lst_Free(s->children);
328 Lst_Free(s->parents);
329 Lst_Destroy(s->searchPath, Dir_Destroy);
330
331 free(s->name);
332 free(s);
333 }
334
335 /* Remove the suffix from the list, and free if it is otherwise unused. */
336 static void
337 SuffRemove(SuffList *list, Suff *suff)
338 {
339 SuffUnRef(list, suff);
340 if (suff->refCount == 0) {
341 SuffUnRef(sufflist, suff);
342 SuffFree(suff);
343 }
344 }
345
346 /* Insert the suffix into the list, keeping the list ordered by suffix
347 * numbers. */
348 static void
349 SuffInsert(SuffList *list, Suff *suff)
350 {
351 SuffListNode *ln;
352 Suff *listSuff = NULL;
353
354 for (ln = list->first; ln != NULL; ln = ln->next) {
355 listSuff = ln->datum;
356 if (listSuff->sNum >= suff->sNum)
357 break;
358 }
359
360 if (ln == NULL) {
361 SUFF_DEBUG2("inserting \"%s\" (%d) at end of list\n",
362 suff->name, suff->sNum);
363 Lst_Append(list, suff);
364 suff->refCount++;
365 Lst_Append(suff->ref, list);
366 } else if (listSuff->sNum != suff->sNum) {
367 SUFF_DEBUG4("inserting \"%s\" (%d) before \"%s\" (%d)\n",
368 suff->name, suff->sNum, listSuff->name, listSuff->sNum);
369 Lst_InsertBefore(list, ln, suff);
370 suff->refCount++;
371 Lst_Append(suff->ref, list);
372 } else {
373 SUFF_DEBUG2("\"%s\" (%d) is already there\n", suff->name, suff->sNum);
374 }
375 }
376
377 static Suff *
378 SuffNew(const char *name)
379 {
380 Suff *s = bmake_malloc(sizeof(Suff));
381
382 s->name = bmake_strdup(name);
383 s->nameLen = strlen(s->name);
384 s->searchPath = Lst_New();
385 s->children = Lst_New();
386 s->parents = Lst_New();
387 s->ref = Lst_New();
388 s->sNum = sNum++;
389 s->flags = 0;
390 s->refCount = 1;
391
392 return s;
393 }
394
395 /* This is gross. Nuke the list of suffixes but keep all transformation
396 * rules around. The transformation graph is destroyed in this process, but
397 * we leave the list of rules so when a new graph is formed the rules will
398 * remain. This function is called from the parse module when a .SUFFIXES:\n
399 * line is encountered. */
400 void
401 Suff_ClearSuffixes(void)
402 {
403 #ifdef CLEANUP
404 Lst_MoveAll(suffClean, sufflist);
405 #endif
406 sufflist = Lst_New();
407 sNum = 0;
408 if (suffNull)
409 SuffFree(suffNull);
410 emptySuff = suffNull = SuffNew("");
411
412 Dir_Concat(suffNull->searchPath, dirSearchPath);
413 suffNull->flags = SUFF_NULL;
414 }
415
416 /* Parse a transformation string such as ".c.o" to find its two component
417 * suffixes (the source ".c" and the target ".o"). If there are no such
418 * suffixes, try a single-suffix transformation as well.
419 *
420 * Return TRUE if the string is a valid transformation.
421 */
422 static Boolean
423 SuffParseTransform(const char *str, Suff **out_src, Suff **out_targ)
424 {
425 SuffListNode *ln;
426 Suff *singleSrc = NULL;
427
428 /*
429 * Loop looking first for a suffix that matches the start of the
430 * string and then for one that exactly matches the rest of it. If
431 * we can find two that meet these criteria, we've successfully
432 * parsed the string.
433 */
434 for (ln = sufflist->first; ln != NULL; ln = ln->next) {
435 Suff *src = ln->datum;
436
437 if (SuffStrIsPrefix(src->name, str) == NULL)
438 continue;
439
440 if (str[src->nameLen] == '\0') {
441 singleSrc = src;
442 } else {
443 Suff *targ = FindSuffByName(str + src->nameLen);
444 if (targ != NULL) {
445 *out_src = src;
446 *out_targ = targ;
447 return TRUE;
448 }
449 }
450 }
451
452 if (singleSrc != NULL) {
453 /*
454 * Not so fast Mr. Smith! There was a suffix that encompassed
455 * the entire string, so we assume it was a transformation
456 * to the null suffix (thank you POSIX). We still prefer to
457 * find a double rule over a singleton, hence we leave this
458 * check until the end.
459 *
460 * XXX: Use emptySuff over suffNull?
461 */
462 *out_src = singleSrc;
463 *out_targ = suffNull;
464 return TRUE;
465 }
466 return FALSE;
467 }
468
469 /* Return TRUE if the given string is a transformation rule, that is, a
470 * concatenation of two known suffixes. */
471 Boolean
472 Suff_IsTransform(const char *str)
473 {
474 Suff *src, *targ;
475
476 return SuffParseTransform(str, &src, &targ);
477 }
478
479 /* Add the transformation rule described by the line to the list of rules
480 * and place the transformation itself in the graph.
481 *
482 * The node is placed on the end of the transforms Lst and links are made
483 * between the two suffixes mentioned in the target name.
484
485 * Input:
486 * line name of transformation to add
487 *
488 * Results:
489 * The node created for the transformation in the transforms list
490 */
491 GNode *
492 Suff_AddTransform(const char *line)
493 {
494 GNode *gn; /* GNode of transformation rule */
495 Suff *s, /* source suffix */
496 *t; /* target suffix */
497 GNodeListNode *ln; /* Node for existing transformation */
498 Boolean ok;
499
500 ln = Lst_Find(transforms, SuffGNHasName, line);
501 if (ln == NULL) {
502 /*
503 * Make a new graph node for the transformation. It will be filled in
504 * by the Parse module.
505 */
506 gn = Targ_NewGN(line);
507 Lst_Append(transforms, gn);
508 } else {
509 /*
510 * New specification for transformation rule. Just nuke the old list
511 * of commands so they can be filled in again... We don't actually
512 * free the commands themselves, because a given command can be
513 * attached to several different transformations.
514 */
515 gn = ln->datum;
516 Lst_Free(gn->commands);
517 Lst_Free(gn->children);
518 gn->commands = Lst_New();
519 gn->children = Lst_New();
520 }
521
522 gn->type = OP_TRANSFORM;
523
524 ok = SuffParseTransform(line, &s, &t);
525 assert(ok);
526 (void)ok;
527
528 /*
529 * link the two together in the proper relationship and order
530 */
531 SUFF_DEBUG2("defining transformation from `%s' to `%s'\n",
532 s->name, t->name);
533 SuffInsert(t->children, s);
534 SuffInsert(s->parents, t);
535
536 return gn;
537 }
538
539 /* Handle the finish of a transformation definition, removing the
540 * transformation from the graph if it has neither commands nor sources.
541 *
542 * If the node has no commands or children, the children and parents lists
543 * of the affected suffixes are altered.
544 *
545 * Input:
546 * gn Node for transformation
547 */
548 void
549 Suff_EndTransform(GNode *gn)
550 {
551 if ((gn->type & OP_DOUBLEDEP) && !Lst_IsEmpty(gn->cohorts))
552 gn = gn->cohorts->last->datum;
553 if ((gn->type & OP_TRANSFORM) && Lst_IsEmpty(gn->commands) &&
554 Lst_IsEmpty(gn->children))
555 {
556 Suff *s, *t;
557
558 /*
559 * SuffParseTransform() may fail for special rules which are not
560 * actual transformation rules. (e.g. .DEFAULT)
561 */
562 if (SuffParseTransform(gn->name, &s, &t)) {
563 SuffList *p;
564
565 SUFF_DEBUG2("deleting transformation from `%s' to `%s'\n",
566 s->name, t->name);
567
568 /*
569 * Store s->parents because s could be deleted in SuffRemove
570 */
571 p = s->parents;
572
573 /*
574 * Remove the source from the target's children list. We check for a
575 * nil return to handle a beanhead saying something like
576 * .c.o .c.o:
577 *
578 * We'll be called twice when the next target is seen, but .c and .o
579 * are only linked once...
580 */
581 SuffRemove(t->children, s);
582
583 /*
584 * Remove the target from the source's parents list
585 */
586 SuffRemove(p, t);
587 }
588 } else if (gn->type & OP_TRANSFORM) {
589 SUFF_DEBUG1("transformation %s complete\n", gn->name);
590 }
591 }
592
593 /* Called from Suff_AddSuffix via Lst_ForEachUntil to search through the list of
594 * existing transformation rules and rebuild the transformation graph when
595 * it has been destroyed by Suff_ClearSuffixes. If the given rule is a
596 * transformation involving this suffix and another, existing suffix, the
597 * proper relationship is established between the two.
598 *
599 * The appropriate links will be made between this suffix and others if
600 * transformation rules exist for it.
601 *
602 * Input:
603 * transform Transformation to test
604 * s Suffix to rebuild
605 */
606 static void
607 SuffRebuildGraph(GNode *transform, Suff *s)
608 {
609 char *name = transform->name;
610 size_t nameLen = strlen(name);
611 char *cp;
612
613 /*
614 * First see if it is a transformation from this suffix.
615 */
616 cp = UNCONST(SuffStrIsPrefix(s->name, name));
617 if (cp != NULL) {
618 Suff *s2 = FindSuffByName(cp);
619 if (s2 != NULL) {
620 /* Link in and return, since it can't be anything else. */
621 SuffInsert(s2->children, s);
622 SuffInsert(s->parents, s2);
623 return;
624 }
625 }
626
627 /*
628 * Not from, maybe to?
629 */
630 cp = SuffSuffGetSuffix(s, nameLen, name + nameLen);
631 if (cp != NULL) {
632 Suff *s2;
633
634 /* Null-terminate the source suffix in order to find it. */
635 /* XXX: don't modify strings, not even temporarily */
636 cp[0] = '\0';
637 s2 = FindSuffByName(name);
638 cp[0] = s->name[0]; /* restore */
639
640 if (s2 != NULL) {
641 /* establish the proper relationship */
642 SuffInsert(s->children, s2);
643 SuffInsert(s2->parents, s);
644 }
645 }
646 }
647
648 /* During Suff_AddSuffix, search through the list of existing targets and find
649 * if any of the existing targets can be turned into a transformation rule.
650 *
651 * If such a target is found and the target is the current main target, the
652 * main target is set to NULL and the next target examined (if that exists)
653 * becomes the main target.
654 *
655 * Results:
656 * TRUE iff a new main target has been selected.
657 */
658 static Boolean
659 SuffScanTargets(GNode *target, GNode **inout_main, Suff *gs_s, Boolean *gs_r)
660 {
661 Suff *s, *t;
662 char *ptr;
663
664 if (*inout_main == NULL && *gs_r && !(target->type & OP_NOTARGET)) {
665 *inout_main = target;
666 Targ_SetMain(target);
667 return TRUE;
668 }
669
670 if (target->type == OP_TRANSFORM)
671 return FALSE;
672
673 if ((ptr = strstr(target->name, gs_s->name)) == NULL ||
674 ptr == target->name)
675 return FALSE;
676
677 if (SuffParseTransform(target->name, &s, &t)) {
678 if (*inout_main == target) {
679 *gs_r = TRUE;
680 *inout_main = NULL;
681 Targ_SetMain(NULL);
682 }
683 Lst_Free(target->children);
684 target->children = Lst_New();
685 target->type = OP_TRANSFORM;
686 /*
687 * link the two together in the proper relationship and order
688 */
689 SUFF_DEBUG2("defining transformation from `%s' to `%s'\n",
690 s->name, t->name);
691 SuffInsert(t->children, s);
692 SuffInsert(s->parents, t);
693 }
694 return FALSE;
695 }
696
697 /* Look at all existing targets to see if adding this suffix will make one
698 * of the current targets mutate into a suffix rule.
699 *
700 * This is ugly, but other makes treat all targets that start with a '.' as
701 * suffix rules. */
702 static void
703 UpdateTargets(GNode **inout_main, Suff *s)
704 {
705 Boolean r = FALSE;
706 GNodeListNode *ln;
707 for (ln = Targ_List()->first; ln != NULL; ln = ln->next) {
708 GNode *gn = ln->datum;
709 if (SuffScanTargets(gn, inout_main, s, &r))
710 break;
711 }
712 }
713
714 /* Add the suffix to the end of the list of known suffixes.
715 * Should we restructure the suffix graph? Make doesn't...
716 *
717 * A GNode is created for the suffix and a Suff structure is created and
718 * added to the suffixes list unless the suffix was already known.
719 * The mainNode passed can be modified if a target mutated into a
720 * transform and that target happened to be the main target.
721 *
722 * Input:
723 * name the name of the suffix to add
724 */
725 void
726 Suff_AddSuffix(const char *name, GNode **inout_main)
727 {
728 GNodeListNode *ln;
729
730 Suff *s = FindSuffByName(name);
731 if (s != NULL)
732 return;
733
734 s = SuffNew(name);
735 Lst_Append(sufflist, s);
736
737 UpdateTargets(inout_main, s);
738
739 /*
740 * Look for any existing transformations from or to this suffix.
741 * XXX: Only do this after a Suff_ClearSuffixes?
742 */
743 for (ln = transforms->first; ln != NULL; ln = ln->next)
744 SuffRebuildGraph(ln->datum, s);
745 }
746
747 /* Return the search path for the given suffix, or NULL. */
748 SearchPath *
749 Suff_GetPath(const char *sname)
750 {
751 Suff *s = FindSuffByName(sname);
752 return s != NULL ? s->searchPath : NULL;
753 }
754
755 /* Extend the search paths for all suffixes to include the default search
756 * path.
757 *
758 * The searchPath field of all the suffixes is extended by the directories
759 * in dirSearchPath. If paths were specified for the ".h" suffix, the
760 * directories are stuffed into a global variable called ".INCLUDES" with
761 * each directory preceded by a -I. The same is done for the ".a" suffix,
762 * except the variable is called ".LIBS" and the flag is -L.
763 */
764 void
765 Suff_DoPaths(void)
766 {
767 SuffListNode *ln;
768 char *ptr;
769 SearchPath *inIncludes; /* Cumulative .INCLUDES path */
770 SearchPath *inLibs; /* Cumulative .LIBS path */
771
772 inIncludes = Lst_New();
773 inLibs = Lst_New();
774
775 for (ln = sufflist->first; ln != NULL; ln = ln->next) {
776 Suff *s = ln->datum;
777 if (!Lst_IsEmpty(s->searchPath)) {
778 #ifdef INCLUDES
779 if (s->flags & SUFF_INCLUDE) {
780 Dir_Concat(inIncludes, s->searchPath);
781 }
782 #endif
783 #ifdef LIBRARIES
784 if (s->flags & SUFF_LIBRARY) {
785 Dir_Concat(inLibs, s->searchPath);
786 }
787 #endif
788 Dir_Concat(s->searchPath, dirSearchPath);
789 } else {
790 Lst_Destroy(s->searchPath, Dir_Destroy);
791 s->searchPath = Lst_Copy(dirSearchPath, Dir_CopyDir);
792 }
793 }
794
795 Var_Set(".INCLUDES", ptr = Dir_MakeFlags("-I", inIncludes), VAR_GLOBAL);
796 free(ptr);
797 Var_Set(".LIBS", ptr = Dir_MakeFlags("-L", inLibs), VAR_GLOBAL);
798 free(ptr);
799
800 Lst_Destroy(inIncludes, Dir_Destroy);
801 Lst_Destroy(inLibs, Dir_Destroy);
802 }
803
804 /* Add the given suffix as a type of file which gets included.
805 * Called from the parse module when a .INCLUDES line is parsed.
806 * The suffix must have already been defined.
807 * The SUFF_INCLUDE bit is set in the suffix's flags field.
808 *
809 * Input:
810 * sname Name of the suffix to mark
811 */
812 void
813 Suff_AddInclude(const char *sname)
814 {
815 Suff *suff = FindSuffByName(sname);
816 if (suff != NULL)
817 suff->flags |= SUFF_INCLUDE;
818 }
819
820 /* Add the given suffix as a type of file which is a library.
821 * Called from the parse module when parsing a .LIBS line.
822 * The suffix must have been defined via .SUFFIXES before this is called.
823 * The SUFF_LIBRARY bit is set in the suffix's flags field.
824 *
825 * Input:
826 * sname Name of the suffix to mark
827 */
828 void
829 Suff_AddLib(const char *sname)
830 {
831 Suff *suff = FindSuffByName(sname);
832 if (suff != NULL)
833 suff->flags |= SUFF_LIBRARY;
834 }
835
836 /********** Implicit Source Search Functions *********/
837
838 #ifdef DEBUG_SRC
839 static void
840 SrcList_PrintAddrs(SrcList *srcList)
841 {
842 SrcListNode *ln;
843 for (ln = srcList->first; ln != NULL; ln = ln->next)
844 debug_printf(" %p", ln->datum);
845 debug_printf("\n");
846 }
847 #endif
848
849 static void
850 SuffAddSrc(Suff *suff, SrcList *srcList, Src *targ, char *srcName,
851 const char *debug_tag)
852 {
853 Src *s2 = bmake_malloc(sizeof(Src));
854 s2->file = srcName;
855 s2->pref = targ->pref;
856 s2->parent = targ;
857 s2->node = NULL;
858 s2->suff = suff;
859 suff->refCount++;
860 s2->children = 0;
861 targ->children++;
862 Lst_Append(srcList, s2);
863 #ifdef DEBUG_SRC
864 s2->cp = Lst_New();
865 Lst_Append(targ->cp, s2);
866 debug_printf("%s add %p %p to %p:", debug_tag, targ, s2, srcList);
867 SrcList_PrintAddrs(srcList);
868 #endif
869 }
870
871 /* Add a suffix as a Src structure to the given list with its parent
872 * being the given Src structure. If the suffix is the null suffix,
873 * the prefix is used unaltered as the file name in the Src structure.
874 *
875 * Input:
876 * suff suffix for which to create a Src structure
877 * srcList list for the new Src
878 * targ parent for the new Src
879 */
880 static void
881 SuffAddSources(Suff *suff, SrcList *srcList, Src *targ)
882 {
883 if ((suff->flags & SUFF_NULL) && suff->name[0] != '\0') {
884 /*
885 * If the suffix has been marked as the NULL suffix, also create a Src
886 * structure for a file with no suffix attached. Two birds, and all
887 * that...
888 */
889 SuffAddSrc(suff, srcList, targ, bmake_strdup(targ->pref), "1");
890 }
891 SuffAddSrc(suff, srcList, targ, str_concat2(targ->pref, suff->name), "2");
892 }
893
894 /* Add all the children of targ as Src structures to the given list.
895 *
896 * Input:
897 * l list to which to add the new level
898 * targ Src structure to use as the parent
899 */
900 static void
901 SuffAddLevel(SrcList *l, Src *targ)
902 {
903 SrcListNode *ln;
904 for (ln = targ->suff->children->first; ln != NULL; ln = ln->next) {
905 Suff *childSuff = ln->datum;
906 SuffAddSources(childSuff, l, targ);
907 }
908 }
909
910 /* Free the first Src in the list that doesn't have a reference count.
911 * Return whether a Src was removed. */
912 static Boolean
913 SuffRemoveSrc(SrcList *l)
914 {
915 SrcListNode *ln;
916
917 Lst_Open(l);
918
919 #ifdef DEBUG_SRC
920 debug_printf("cleaning %p:", l);
921 SrcList_PrintAddrs(l);
922 #endif
923
924 while ((ln = Lst_Next(l)) != NULL) {
925 Src *s = ln->datum;
926 if (s->children == 0) {
927 free(s->file);
928 if (!s->parent)
929 free(s->pref);
930 else {
931 #ifdef DEBUG_SRC
932 SrcListNode *ln2 = Lst_FindDatum(s->parent->cp, s);
933 if (ln2 != NULL)
934 Lst_Remove(s->parent->cp, ln2);
935 #endif
936 --s->parent->children;
937 }
938 #ifdef DEBUG_SRC
939 debug_printf("free: [l=%p] p=%p %d\n", l, s, s->children);
940 Lst_Free(s->cp);
941 #endif
942 Lst_Remove(l, ln);
943 free(s);
944 Lst_Close(l);
945 return TRUE;
946 }
947 #ifdef DEBUG_SRC
948 else {
949 debug_printf("keep: [l=%p] p=%p %d:", l, s, s->children);
950 SrcList_PrintAddrs(s->cp);
951 }
952 #endif
953 }
954
955 Lst_Close(l);
956
957 return FALSE;
958 }
959
960 /* Find the first existing file/target in the list srcs.
961 *
962 * Input:
963 * srcs list of Src structures to search through
964 *
965 * Results:
966 * The lowest structure in the chain of transformations, or NULL.
967 */
968 static Src *
969 SuffFindThem(SrcList *srcs, SrcList *slst)
970 {
971 Src *s; /* current Src */
972 Src *rs; /* returned Src */
973 char *ptr;
974
975 rs = NULL;
976
977 while (!Lst_IsEmpty(srcs)) {
978 s = Lst_Dequeue(srcs);
979
980 SUFF_DEBUG1("\ttrying %s...", s->file);
981
982 /*
983 * A file is considered to exist if either a node exists in the
984 * graph for it or the file actually exists.
985 */
986 if (Targ_FindNode(s->file) != NULL) {
987 #ifdef DEBUG_SRC
988 debug_printf("remove %p from %p\n", s, srcs);
989 #endif
990 rs = s;
991 break;
992 }
993
994 if ((ptr = Dir_FindFile(s->file, s->suff->searchPath)) != NULL) {
995 rs = s;
996 #ifdef DEBUG_SRC
997 debug_printf("remove %p from %p\n", s, srcs);
998 #endif
999 free(ptr);
1000 break;
1001 }
1002
1003 SUFF_DEBUG0("not there\n");
1004
1005 SuffAddLevel(srcs, s);
1006 Lst_Append(slst, s);
1007 }
1008
1009 if (rs) {
1010 SUFF_DEBUG0("got it\n");
1011 }
1012 return rs;
1013 }
1014
1015 /* See if any of the children of the target in the Src structure is one from
1016 * which the target can be transformed. If there is one, a Src structure is
1017 * put together for it and returned.
1018 *
1019 * Input:
1020 * targ Src to play with
1021 *
1022 * Results:
1023 * The Src of the "winning" child, or NULL.
1024 */
1025 static Src *
1026 SuffFindCmds(Src *targ, SrcList *slst)
1027 {
1028 GNodeListNode *gln;
1029 GNode *t; /* Target GNode */
1030 GNode *s; /* Source GNode */
1031 size_t prefLen; /* The length of the defined prefix */
1032 Suff *suff; /* Suffix on matching beastie */
1033 Src *ret; /* Return value */
1034 char *cp;
1035
1036 t = targ->node;
1037 Lst_Open(t->children);
1038 prefLen = strlen(targ->pref);
1039
1040 for (;;) {
1041 gln = Lst_Next(t->children);
1042 if (gln == NULL) {
1043 Lst_Close(t->children);
1044 return NULL;
1045 }
1046 s = gln->datum;
1047
1048 if (s->type & OP_OPTIONAL && Lst_IsEmpty(t->commands)) {
1049 /*
1050 * We haven't looked to see if .OPTIONAL files exist yet, so
1051 * don't use one as the implicit source.
1052 * This allows us to use .OPTIONAL in .depend files so make won't
1053 * complain "don't know how to make xxx.h' when a dependent file
1054 * has been moved/deleted.
1055 */
1056 continue;
1057 }
1058
1059 cp = strrchr(s->name, '/');
1060 if (cp == NULL) {
1061 cp = s->name;
1062 } else {
1063 cp++;
1064 }
1065 if (strncmp(cp, targ->pref, prefLen) != 0)
1066 continue;
1067 /*
1068 * The node matches the prefix ok, see if it has a known
1069 * suffix.
1070 */
1071 suff = FindSuffByName(cp + prefLen);
1072 if (suff == NULL)
1073 continue;
1074
1075 /*
1076 * It even has a known suffix, see if there's a transformation
1077 * defined between the node's suffix and the target's suffix.
1078 *
1079 * XXX: Handle multi-stage transformations here, too.
1080 */
1081
1082 /* XXX: Can targ->suff be NULL here? */
1083 if (targ->suff != NULL &&
1084 Lst_FindDatum(suff->parents, targ->suff) != NULL)
1085 break;
1086 }
1087
1088 /*
1089 * Hot Damn! Create a new Src structure to describe
1090 * this transformation (making sure to duplicate the
1091 * source node's name so Suff_FindDeps can free it
1092 * again (ick)), and return the new structure.
1093 */
1094 ret = bmake_malloc(sizeof(Src));
1095 ret->file = bmake_strdup(s->name);
1096 ret->pref = targ->pref;
1097 ret->suff = suff;
1098 suff->refCount++;
1099 ret->parent = targ;
1100 ret->node = s;
1101 ret->children = 0;
1102 targ->children++;
1103 #ifdef DEBUG_SRC
1104 ret->cp = Lst_New();
1105 debug_printf("3 add %p %p\n", targ, ret);
1106 Lst_Append(targ->cp, ret);
1107 #endif
1108 Lst_Append(slst, ret);
1109 SUFF_DEBUG1("\tusing existing source %s\n", s->name);
1110 Lst_Close(t->children);
1111 return ret;
1112 }
1113
1114 /* Expand the names of any children of a given node that contain variable
1115 * expressions or file wildcards into actual targets.
1116 *
1117 * The expanded node is removed from the parent's list of children, and the
1118 * parent's unmade counter is decremented, but other nodes may be added.
1119 *
1120 * Input:
1121 * cln Child to examine
1122 * pgn Parent node being processed
1123 */
1124 static void
1125 SuffExpandChildren(GNodeListNode *cln, GNode *pgn)
1126 {
1127 GNode *cgn = cln->datum;
1128 GNode *gn; /* New source 8) */
1129 char *cp; /* Expanded value */
1130
1131 if (!Lst_IsEmpty(cgn->order_pred) || !Lst_IsEmpty(cgn->order_succ))
1132 /* It is all too hard to process the result of .ORDER */
1133 return;
1134
1135 if (cgn->type & OP_WAIT)
1136 /* Ignore these (& OP_PHONY ?) */
1137 return;
1138
1139 /*
1140 * First do variable expansion -- this takes precedence over
1141 * wildcard expansion. If the result contains wildcards, they'll be gotten
1142 * to later since the resulting words are tacked on to the end of
1143 * the children list.
1144 */
1145 if (strchr(cgn->name, '$') == NULL) {
1146 SuffExpandWildcards(cln, pgn);
1147 return;
1148 }
1149
1150 SUFF_DEBUG1("Expanding \"%s\"...", cgn->name);
1151 (void)Var_Subst(cgn->name, pgn, VARE_UNDEFERR|VARE_WANTRES, &cp);
1152 /* TODO: handle errors */
1153
1154 {
1155 GNodeList *members = Lst_New();
1156
1157 if (cgn->type & OP_ARCHV) {
1158 /*
1159 * Node was an archive(member) target, so we want to call
1160 * on the Arch module to find the nodes for us, expanding
1161 * variables in the parent's context.
1162 */
1163 char *sacrifice = cp;
1164
1165 (void)Arch_ParseArchive(&sacrifice, members, pgn);
1166 } else {
1167 /*
1168 * Break the result into a vector of strings whose nodes
1169 * we can find, then add those nodes to the members list.
1170 * Unfortunately, we can't use brk_string b/c it
1171 * doesn't understand about variable specifications with
1172 * spaces in them...
1173 */
1174 char *start;
1175 char *initcp = cp; /* For freeing... */
1176
1177 for (start = cp; *start == ' ' || *start == '\t'; start++)
1178 continue;
1179 cp = start;
1180 while (*cp != '\0') {
1181 if (*cp == ' ' || *cp == '\t') {
1182 /*
1183 * White-space -- terminate element, find the node,
1184 * add it, skip any further spaces.
1185 */
1186 *cp++ = '\0';
1187 gn = Targ_GetNode(start);
1188 Lst_Append(members, gn);
1189 while (*cp == ' ' || *cp == '\t') {
1190 cp++;
1191 }
1192 start = cp; /* Continue at the next non-space. */
1193 } else if (*cp == '$') {
1194 /*
1195 * Start of a variable spec -- contact variable module
1196 * to find the end so we can skip over it.
1197 */
1198 const char *nested_p = cp;
1199 const char *junk;
1200 void *freeIt;
1201
1202 /* XXX: Why VARE_WANTRES when the result is not used? */
1203 (void)Var_Parse(&nested_p, pgn,
1204 VARE_UNDEFERR|VARE_WANTRES,
1205 &junk, &freeIt);
1206 /* TODO: handle errors */
1207 if (junk == var_Error) {
1208 Parse_Error(PARSE_FATAL,
1209 "Malformed variable expression at \"%s\"",
1210 cp);
1211 cp++;
1212 } else {
1213 cp += nested_p - cp;
1214 }
1215
1216 free(freeIt);
1217 } else if (*cp == '\\' && cp[1] != '\0') {
1218 /*
1219 * Escaped something -- skip over it
1220 */
1221 /* XXX: In other places, escaping at this syntactical
1222 * position is done by a '$', not a '\'. The '\' is only
1223 * used in variable modifiers. */
1224 cp += 2;
1225 } else {
1226 cp++;
1227 }
1228 }
1229
1230 if (cp != start) {
1231 /*
1232 * Stuff left over -- add it to the list too
1233 */
1234 gn = Targ_GetNode(start);
1235 Lst_Append(members, gn);
1236 }
1237 /*
1238 * Point cp back at the beginning again so the variable value
1239 * can be freed.
1240 */
1241 cp = initcp;
1242 }
1243
1244 /*
1245 * Add all elements of the members list to the parent node.
1246 */
1247 while(!Lst_IsEmpty(members)) {
1248 gn = Lst_Dequeue(members);
1249
1250 SUFF_DEBUG1("%s...", gn->name);
1251 /* Add gn to the parents child list before the original child */
1252 Lst_InsertBefore(pgn->children, cln, gn);
1253 Lst_Append(gn->parents, pgn);
1254 pgn->unmade++;
1255 /* Expand wildcards on new node */
1256 SuffExpandWildcards(cln->prev, pgn);
1257 }
1258 Lst_Free(members);
1259
1260 /*
1261 * Free the result
1262 */
1263 free(cp);
1264 }
1265
1266 SUFF_DEBUG0("\n");
1267
1268 /*
1269 * Now the source is expanded, remove it from the list of children to
1270 * keep it from being processed.
1271 */
1272 pgn->unmade--;
1273 Lst_Remove(pgn->children, cln);
1274 Lst_Remove(cgn->parents, Lst_FindDatum(cgn->parents, pgn));
1275 }
1276
1277 static void
1278 SuffExpandWildcards(GNodeListNode *cln, GNode *pgn)
1279 {
1280 GNode *cgn = cln->datum;
1281 StringList *explist;
1282
1283 if (!Dir_HasWildcards(cgn->name))
1284 return;
1285
1286 /*
1287 * Expand the word along the chosen path
1288 */
1289 explist = Lst_New();
1290 Dir_Expand(cgn->name, Suff_FindPath(cgn), explist);
1291
1292 while (!Lst_IsEmpty(explist)) {
1293 GNode *gn;
1294 /*
1295 * Fetch next expansion off the list and find its GNode
1296 */
1297 char *cp = Lst_Dequeue(explist);
1298
1299 SUFF_DEBUG1("%s...", cp);
1300 gn = Targ_GetNode(cp);
1301
1302 /* Add gn to the parents child list before the original child */
1303 Lst_InsertBefore(pgn->children, cln, gn);
1304 Lst_Append(gn->parents, pgn);
1305 pgn->unmade++;
1306 }
1307
1308 Lst_Free(explist);
1309
1310 SUFF_DEBUG0("\n");
1311
1312 /*
1313 * Now the source is expanded, remove it from the list of children to
1314 * keep it from being processed.
1315 */
1316 pgn->unmade--;
1317 Lst_Remove(pgn->children, cln);
1318 Lst_Remove(cgn->parents, Lst_FindDatum(cgn->parents, pgn));
1319 }
1320
1321 /* Find a path along which to expand the node.
1322 *
1323 * If the word has a known suffix, use that path.
1324 * If it has no known suffix, use the default system search path.
1325 *
1326 * Input:
1327 * gn Node being examined
1328 *
1329 * Results:
1330 * The appropriate path to search for the GNode.
1331 */
1332 SearchPath *
1333 Suff_FindPath(GNode* gn)
1334 {
1335 Suff *suff = gn->suffix;
1336
1337 if (suff == NULL) {
1338 char *name = gn->name;
1339 size_t nameLen = strlen(gn->name);
1340 SuffListNode *ln;
1341 for (ln = sufflist->first; ln != NULL; ln = ln->next)
1342 if (SuffSuffIsSuffix(ln->datum, nameLen, name + nameLen))
1343 break;
1344
1345 SUFF_DEBUG1("Wildcard expanding \"%s\"...", gn->name);
1346 if (ln != NULL)
1347 suff = ln->datum;
1348 /* XXX: Here we can save the suffix so we don't have to do this again */
1349 }
1350
1351 if (suff != NULL) {
1352 SUFF_DEBUG1("suffix is \"%s\"...", suff->name);
1353 return suff->searchPath;
1354 } else {
1355 /*
1356 * Use default search path
1357 */
1358 return dirSearchPath;
1359 }
1360 }
1361
1362 /* Apply a transformation rule, given the source and target nodes and
1363 * suffixes.
1364 *
1365 * Input:
1366 * tGn Target node
1367 * sGn Source node
1368 * t Target suffix
1369 * s Source suffix
1370 *
1371 * Results:
1372 * TRUE if successful, FALSE if not.
1373 *
1374 * Side Effects:
1375 * The source and target are linked and the commands from the
1376 * transformation are added to the target node's commands list.
1377 * All attributes but OP_DEPMASK and OP_TRANSFORM are applied
1378 * to the target. The target also inherits all the sources for
1379 * the transformation rule.
1380 */
1381 static Boolean
1382 SuffApplyTransform(GNode *tGn, GNode *sGn, Suff *t, Suff *s)
1383 {
1384 GNodeListNode *ln, *nln; /* General node */
1385 char *tname; /* Name of transformation rule */
1386 GNode *gn; /* Node for same */
1387
1388 /*
1389 * Form the proper links between the target and source.
1390 */
1391 Lst_Append(tGn->children, sGn);
1392 Lst_Append(sGn->parents, tGn);
1393 tGn->unmade++;
1394
1395 /*
1396 * Locate the transformation rule itself
1397 */
1398 tname = str_concat2(s->name, t->name);
1399 ln = Lst_Find(transforms, SuffGNHasName, tname);
1400 free(tname);
1401
1402 if (ln == NULL) {
1403 /*
1404 * Not really such a transformation rule (can happen when we're
1405 * called to link an OP_MEMBER and OP_ARCHV node), so return
1406 * FALSE.
1407 */
1408 return FALSE;
1409 }
1410
1411 gn = ln->datum;
1412
1413 SUFF_DEBUG3("\tapplying %s -> %s to \"%s\"\n", s->name, t->name, tGn->name);
1414
1415 /*
1416 * Record last child for expansion purposes
1417 */
1418 ln = tGn->children->last;
1419
1420 /*
1421 * Pass the buck to Make_HandleUse to apply the rule
1422 */
1423 (void)Make_HandleUse(gn, tGn);
1424
1425 /*
1426 * Deal with wildcards and variables in any acquired sources
1427 */
1428 for (ln = ln != NULL ? ln->next : NULL; ln != NULL; ln = nln) {
1429 nln = ln->next;
1430 SuffExpandChildren(ln, tGn);
1431 }
1432
1433 /*
1434 * Keep track of another parent to which this beast is transformed so
1435 * the .IMPSRC variable can be set correctly for the parent.
1436 */
1437 Lst_Append(sGn->implicitParents, tGn);
1438
1439 return TRUE;
1440 }
1441
1442
1443 /* Locate dependencies for an OP_ARCHV node.
1444 *
1445 * Input:
1446 * gn Node for which to locate dependencies
1447 *
1448 * Side Effects:
1449 * Same as Suff_FindDeps
1450 */
1451 static void
1452 SuffFindArchiveDeps(GNode *gn, SrcList *slst)
1453 {
1454 char *eoarch; /* End of archive portion */
1455 char *eoname; /* End of member portion */
1456 GNode *mem; /* Node for member */
1457 SuffListNode *ln, *nln; /* Next suffix node to check */
1458 Suff *ms; /* Suffix descriptor for member */
1459 char *name; /* Start of member's name */
1460
1461 /*
1462 * The node is an archive(member) pair. so we must find a
1463 * suffix for both of them.
1464 */
1465 eoarch = strchr(gn->name, '(');
1466 eoname = strchr(eoarch, ')');
1467
1468 /*
1469 * Caller guarantees the format `libname(member)', via
1470 * Arch_ParseArchive.
1471 */
1472 assert(eoarch != NULL);
1473 assert(eoname != NULL);
1474
1475 *eoname = '\0'; /* Nuke parentheses during suffix search */
1476 *eoarch = '\0'; /* So a suffix can be found */
1477
1478 name = eoarch + 1;
1479
1480 /*
1481 * To simplify things, call Suff_FindDeps recursively on the member now,
1482 * so we can simply compare the member's .PREFIX and .TARGET variables
1483 * to locate its suffix. This allows us to figure out the suffix to
1484 * use for the archive without having to do a quadratic search over the
1485 * suffix list, backtracking for each one...
1486 */
1487 mem = Targ_GetNode(name);
1488 SuffFindDeps(mem, slst);
1489
1490 /*
1491 * Create the link between the two nodes right off
1492 */
1493 Lst_Append(gn->children, mem);
1494 Lst_Append(mem->parents, gn);
1495 gn->unmade++;
1496
1497 /*
1498 * Copy in the variables from the member node to this one.
1499 */
1500 {
1501 char *freeIt;
1502 Var_Set(PREFIX, Var_Value(PREFIX, mem, &freeIt), gn);
1503 bmake_free(freeIt);
1504 Var_Set(TARGET, Var_Value(TARGET, mem, &freeIt), gn);
1505 bmake_free(freeIt);
1506 }
1507
1508 ms = mem->suffix;
1509 if (ms == NULL) {
1510 /*
1511 * Didn't know what it was -- use .NULL suffix if not in make mode
1512 */
1513 SUFF_DEBUG0("using null suffix\n");
1514 ms = suffNull;
1515 }
1516
1517
1518 /*
1519 * Set the other two local variables required for this target.
1520 */
1521 Var_Set(MEMBER, name, gn);
1522 Var_Set(ARCHIVE, gn->name, gn);
1523
1524 /*
1525 * Set $@ for compatibility with other makes
1526 */
1527 Var_Set(TARGET, gn->name, gn);
1528
1529 /*
1530 * Now we've got the important local variables set, expand any sources
1531 * that still contain variables or wildcards in their names.
1532 */
1533 for (ln = gn->children->first; ln != NULL; ln = nln) {
1534 nln = ln->next;
1535 SuffExpandChildren(ln, gn);
1536 }
1537
1538 if (ms != NULL) {
1539 /*
1540 * Member has a known suffix, so look for a transformation rule from
1541 * it to a possible suffix of the archive. Rather than searching
1542 * through the entire list, we just look at suffixes to which the
1543 * member's suffix may be transformed...
1544 */
1545 size_t nameLen = (size_t)(eoarch - gn->name);
1546
1547 /* Use first matching suffix... */
1548 for (ln = ms->parents->first; ln != NULL; ln = ln->next)
1549 if (SuffSuffIsSuffix(ln->datum, nameLen, eoarch))
1550 break;
1551
1552 if (ln != NULL) {
1553 /*
1554 * Got one -- apply it
1555 */
1556 Suff *suff = ln->datum;
1557 if (!SuffApplyTransform(gn, mem, suff, ms)) {
1558 SUFF_DEBUG2("\tNo transformation from %s -> %s\n",
1559 ms->name, suff->name);
1560 }
1561 }
1562 }
1563
1564 /*
1565 * Replace the opening and closing parens now we've no need of the separate
1566 * pieces.
1567 */
1568 *eoarch = '('; *eoname = ')';
1569
1570 /*
1571 * Pretend gn appeared to the left of a dependency operator so
1572 * the user needn't provide a transformation from the member to the
1573 * archive.
1574 */
1575 if (OP_NOP(gn->type)) {
1576 gn->type |= OP_DEPENDS;
1577 }
1578
1579 /*
1580 * Flag the member as such so we remember to look in the archive for
1581 * its modification time. The OP_JOIN | OP_MADE is needed because this
1582 * target should never get made.
1583 */
1584 mem->type |= OP_MEMBER | OP_JOIN | OP_MADE;
1585 }
1586
1587 static void
1588 SuffFindNormalDepsKnown(size_t nameLen, char *nameEnd, GNode *gn,
1589 const char *sopref, SrcList *srcs, SrcList *targs)
1590 {
1591 SuffListNode *ln;
1592 const char *eopref;
1593 Src *targ;
1594
1595 for (ln = sufflist->first; ln != NULL; ln = ln->next) {
1596 if (!SuffSuffIsSuffix(ln->datum, nameLen, nameEnd))
1597 continue;
1598
1599 targ = bmake_malloc(sizeof(Src));
1600 targ->file = bmake_strdup(gn->name);
1601 targ->suff = ln->datum;
1602 targ->suff->refCount++;
1603 targ->node = gn;
1604 targ->parent = NULL;
1605 targ->children = 0;
1606 #ifdef DEBUG_SRC
1607 targ->cp = Lst_New();
1608 #endif
1609
1610 eopref = nameEnd - targ->suff->nameLen;
1611 targ->pref = bmake_strsedup(sopref, eopref);
1612
1613 /*
1614 * Add nodes from which the target can be made
1615 */
1616 SuffAddLevel(srcs, targ);
1617
1618 /*
1619 * Record the target so we can nuke it
1620 */
1621 Lst_Append(targs, targ);
1622 }
1623 }
1624
1625 static void
1626 SuffFindNormalDepsUnknown(GNode *gn, const char *sopref,
1627 SrcList *srcs, SrcList *targs)
1628 {
1629 Src *targ;
1630
1631 if (!Lst_IsEmpty(targs) || suffNull == NULL)
1632 return;
1633
1634 SUFF_DEBUG1("\tNo known suffix on %s. Using .NULL suffix\n", gn->name);
1635
1636 targ = bmake_malloc(sizeof *targ);
1637 targ->file = bmake_strdup(gn->name);
1638 targ->suff = suffNull;
1639 targ->suff->refCount++;
1640 targ->node = gn;
1641 targ->parent = NULL;
1642 targ->children = 0;
1643 targ->pref = bmake_strdup(sopref);
1644 #ifdef DEBUG_SRC
1645 targ->cp = Lst_New();
1646 #endif
1647
1648 /*
1649 * Only use the default suffix rules if we don't have commands
1650 * defined for this gnode; traditional make programs used to
1651 * not define suffix rules if the gnode had children but we
1652 * don't do this anymore.
1653 */
1654 if (Lst_IsEmpty(gn->commands))
1655 SuffAddLevel(srcs, targ);
1656 else {
1657 SUFF_DEBUG0("not ");
1658 }
1659
1660 SUFF_DEBUG0("adding suffix rules\n");
1661
1662 Lst_Append(targs, targ);
1663 }
1664
1665 /*
1666 * Deal with finding the thing on the default search path. We
1667 * always do that, not only if the node is only a source (not
1668 * on the lhs of a dependency operator or [XXX] it has neither
1669 * children or commands) as the old pmake did.
1670 */
1671 static void
1672 SuffFindNormalDepsPath(GNode *gn, Src *targ)
1673 {
1674 if (gn->type & (OP_PHONY | OP_NOPATH))
1675 return;
1676
1677 free(gn->path);
1678 gn->path = Dir_FindFile(gn->name,
1679 (targ == NULL ? dirSearchPath :
1680 targ->suff->searchPath));
1681 if (gn->path == NULL)
1682 return;
1683
1684 Var_Set(TARGET, gn->path, gn);
1685
1686 if (targ != NULL) {
1687 /*
1688 * Suffix known for the thing -- trim the suffix off
1689 * the path to form the proper .PREFIX variable.
1690 */
1691 size_t savep = strlen(gn->path) - targ->suff->nameLen;
1692 char savec;
1693 char *ptr;
1694
1695 if (gn->suffix)
1696 gn->suffix->refCount--;
1697 gn->suffix = targ->suff;
1698 gn->suffix->refCount++;
1699
1700 savec = gn->path[savep];
1701 gn->path[savep] = '\0';
1702
1703 if ((ptr = strrchr(gn->path, '/')) != NULL)
1704 ptr++;
1705 else
1706 ptr = gn->path;
1707
1708 Var_Set(PREFIX, ptr, gn);
1709
1710 gn->path[savep] = savec;
1711 } else {
1712 char *ptr;
1713
1714 /* The .PREFIX gets the full path if the target has no known suffix. */
1715 if (gn->suffix)
1716 gn->suffix->refCount--;
1717 gn->suffix = NULL;
1718
1719 if ((ptr = strrchr(gn->path, '/')) != NULL)
1720 ptr++;
1721 else
1722 ptr = gn->path;
1723
1724 Var_Set(PREFIX, ptr, gn);
1725 }
1726 }
1727
1728 /* Locate implicit dependencies for regular targets.
1729 *
1730 * Input:
1731 * gn Node for which to find sources
1732 *
1733 * Side Effects:
1734 * Same as Suff_FindDeps
1735 */
1736 static void
1737 SuffFindNormalDeps(GNode *gn, SrcList *slst)
1738 {
1739 SrcList *srcs; /* List of sources at which to look */
1740 SrcList *targs; /* List of targets to which things can be
1741 * transformed. They all have the same file,
1742 * but different suff and pref fields */
1743 Src *bottom; /* Start of found transformation path */
1744 Src *src; /* General Src pointer */
1745 char *pref; /* Prefix to use */
1746 Src *targ; /* General Src target pointer */
1747
1748 size_t nameLen = strlen(gn->name);
1749 char *eoname = gn->name + nameLen;
1750 char *sopref = gn->name;
1751
1752 /*
1753 * Begin at the beginning...
1754 */
1755 srcs = Lst_New();
1756 targs = Lst_New();
1757
1758 /*
1759 * We're caught in a catch-22 here. On the one hand, we want to use any
1760 * transformation implied by the target's sources, but we can't examine
1761 * the sources until we've expanded any variables/wildcards they may hold,
1762 * and we can't do that until we've set up the target's local variables
1763 * and we can't do that until we know what the proper suffix for the
1764 * target is (in case there are two suffixes one of which is a suffix of
1765 * the other) and we can't know that until we've found its implied
1766 * source, which we may not want to use if there's an existing source
1767 * that implies a different transformation.
1768 *
1769 * In an attempt to get around this, which may not work all the time,
1770 * but should work most of the time, we look for implied sources first,
1771 * checking transformations to all possible suffixes of the target,
1772 * use what we find to set the target's local variables, expand the
1773 * children, then look for any overriding transformations they imply.
1774 * Should we find one, we discard the one we found before.
1775 */
1776 bottom = NULL;
1777 targ = NULL;
1778
1779 if (!(gn->type & OP_PHONY)) {
1780
1781 SuffFindNormalDepsKnown(nameLen, eoname, gn, sopref, srcs, targs);
1782
1783 /* Handle target of unknown suffix... */
1784 SuffFindNormalDepsUnknown(gn, sopref, srcs, targs);
1785
1786 /*
1787 * Using the list of possible sources built up from the target
1788 * suffix(es), try and find an existing file/target that matches.
1789 */
1790 bottom = SuffFindThem(srcs, slst);
1791
1792 if (bottom == NULL) {
1793 /*
1794 * No known transformations -- use the first suffix found
1795 * for setting the local variables.
1796 */
1797 if (!Lst_IsEmpty(targs)) {
1798 targ = targs->first->datum;
1799 } else {
1800 targ = NULL;
1801 }
1802 } else {
1803 /*
1804 * Work up the transformation path to find the suffix of the
1805 * target to which the transformation was made.
1806 */
1807 for (targ = bottom; targ->parent != NULL; targ = targ->parent)
1808 continue;
1809 }
1810 }
1811
1812 Var_Set(TARGET, gn->path ? gn->path : gn->name, gn);
1813
1814 pref = (targ != NULL) ? targ->pref : gn->name;
1815 Var_Set(PREFIX, pref, gn);
1816
1817 /*
1818 * Now we've got the important local variables set, expand any sources
1819 * that still contain variables or wildcards in their names.
1820 */
1821 {
1822 SuffListNode *ln, *nln;
1823 for (ln = gn->children->first; ln != NULL; ln = nln) {
1824 nln = ln->next;
1825 SuffExpandChildren(ln, gn);
1826 }
1827 }
1828
1829 if (targ == NULL) {
1830 SUFF_DEBUG1("\tNo valid suffix on %s\n", gn->name);
1831
1832 sfnd_abort:
1833 SuffFindNormalDepsPath(gn, targ);
1834 goto sfnd_return;
1835 }
1836
1837 /*
1838 * If the suffix indicates that the target is a library, mark that in
1839 * the node's type field.
1840 */
1841 if (targ->suff->flags & SUFF_LIBRARY) {
1842 gn->type |= OP_LIB;
1843 }
1844
1845 /*
1846 * Check for overriding transformation rule implied by sources
1847 */
1848 if (!Lst_IsEmpty(gn->children)) {
1849 src = SuffFindCmds(targ, slst);
1850
1851 if (src != NULL) {
1852 /*
1853 * Free up all the Src structures in the transformation path
1854 * up to, but not including, the parent node.
1855 */
1856 while (bottom && bottom->parent != NULL) {
1857 if (Lst_FindDatum(slst, bottom) == NULL) {
1858 Lst_Append(slst, bottom);
1859 }
1860 bottom = bottom->parent;
1861 }
1862 bottom = src;
1863 }
1864 }
1865
1866 if (bottom == NULL) {
1867 /*
1868 * No idea from where it can come -- return now.
1869 */
1870 goto sfnd_abort;
1871 }
1872
1873 /*
1874 * We now have a list of Src structures headed by 'bottom' and linked via
1875 * their 'parent' pointers. What we do next is create links between
1876 * source and target nodes (which may or may not have been created)
1877 * and set the necessary local variables in each target. The
1878 * commands for each target are set from the commands of the
1879 * transformation rule used to get from the src suffix to the targ
1880 * suffix. Note that this causes the commands list of the original
1881 * node, gn, to be replaced by the commands of the final
1882 * transformation rule. Also, the unmade field of gn is incremented.
1883 * Etc.
1884 */
1885 if (bottom->node == NULL) {
1886 bottom->node = Targ_GetNode(bottom->file);
1887 }
1888
1889 for (src = bottom; src->parent != NULL; src = src->parent) {
1890 targ = src->parent;
1891
1892 if (src->node->suffix)
1893 src->node->suffix->refCount--;
1894 src->node->suffix = src->suff;
1895 src->node->suffix->refCount++;
1896
1897 if (targ->node == NULL) {
1898 targ->node = Targ_GetNode(targ->file);
1899 }
1900
1901 SuffApplyTransform(targ->node, src->node,
1902 targ->suff, src->suff);
1903
1904 if (targ->node != gn) {
1905 /*
1906 * Finish off the dependency-search process for any nodes
1907 * between bottom and gn (no point in questing around the
1908 * filesystem for their implicit source when it's already
1909 * known). Note that the node can't have any sources that
1910 * need expanding, since SuffFindThem will stop on an existing
1911 * node, so all we need to do is set the standard and System V
1912 * variables.
1913 */
1914 targ->node->type |= OP_DEPS_FOUND;
1915
1916 Var_Set(PREFIX, targ->pref, targ->node);
1917
1918 Var_Set(TARGET, targ->node->name, targ->node);
1919 }
1920 }
1921
1922 if (gn->suffix)
1923 gn->suffix->refCount--;
1924 gn->suffix = src->suff;
1925 gn->suffix->refCount++;
1926
1927 /*
1928 * Nuke the transformation path and the Src structures left over in the
1929 * two lists.
1930 */
1931 sfnd_return:
1932 if (bottom)
1933 if (Lst_FindDatum(slst, bottom) == NULL)
1934 Lst_Append(slst, bottom);
1935
1936 while (SuffRemoveSrc(srcs) || SuffRemoveSrc(targs))
1937 continue;
1938
1939 Lst_MoveAll(slst, srcs);
1940 Lst_MoveAll(slst, targs);
1941 }
1942
1943
1944 /* Find implicit sources for the target described by the graph node.
1945 *
1946 * Nodes are added to the graph below the passed-in node. The nodes are
1947 * marked to have their IMPSRC variable filled in. The PREFIX variable is set
1948 * for the given node and all its implied children.
1949 *
1950 * The path found by this target is the shortest path in the transformation
1951 * graph, which may pass through non-existent targets, to an existing target.
1952 * The search continues on all paths from the root suffix until a file is
1953 * found. I.e. if there's a path .o -> .c -> .l -> .l,v from the root and the
1954 * .l,v file exists but the .c and .l files don't, the search will branch out
1955 * in all directions from .o and again from all the nodes on the next level
1956 * until the .l,v node is encountered.
1957 */
1958 void
1959 Suff_FindDeps(GNode *gn)
1960 {
1961
1962 SuffFindDeps(gn, srclist);
1963 while (SuffRemoveSrc(srclist))
1964 continue;
1965 }
1966
1967 static void
1968 SuffFindDeps(GNode *gn, SrcList *slst)
1969 {
1970 if (gn->type & OP_DEPS_FOUND)
1971 return;
1972 gn->type |= OP_DEPS_FOUND;
1973
1974 /*
1975 * Make sure we have these set, may get revised below.
1976 */
1977 Var_Set(TARGET, gn->path ? gn->path : gn->name, gn);
1978 Var_Set(PREFIX, gn->name, gn);
1979
1980 SUFF_DEBUG1("SuffFindDeps (%s)\n", gn->name);
1981
1982 if (gn->type & OP_ARCHV) {
1983 SuffFindArchiveDeps(gn, slst);
1984 } else if (gn->type & OP_LIB) {
1985 /*
1986 * If the node is a library, it is the arch module's job to find it
1987 * and set the TARGET variable accordingly. We merely provide the
1988 * search path, assuming all libraries end in ".a" (if the suffix
1989 * hasn't been defined, there's nothing we can do for it, so we just
1990 * set the TARGET variable to the node's name in order to give it a
1991 * value).
1992 */
1993 Suff *s = FindSuffByName(LIBSUFF);
1994 if (gn->suffix)
1995 gn->suffix->refCount--;
1996 if (s != NULL) {
1997 gn->suffix = s;
1998 gn->suffix->refCount++;
1999 Arch_FindLib(gn, s->searchPath);
2000 } else {
2001 gn->suffix = NULL;
2002 Var_Set(TARGET, gn->name, gn);
2003 }
2004 /*
2005 * Because a library (-lfoo) target doesn't follow the standard
2006 * filesystem conventions, we don't set the regular variables for
2007 * the thing. .PREFIX is simply made empty...
2008 */
2009 Var_Set(PREFIX, "", gn);
2010 } else {
2011 SuffFindNormalDeps(gn, slst);
2012 }
2013 }
2014
2015 /* Define which suffix is the null suffix.
2016 *
2017 * Need to handle the changing of the null suffix gracefully so the old
2018 * transformation rules don't just go away.
2019 *
2020 * Input:
2021 * name Name of null suffix
2022 */
2023 void
2024 Suff_SetNull(const char *name)
2025 {
2026 Suff *s = FindSuffByName(name);
2027 if (s == NULL) {
2028 Parse_Error(PARSE_WARNING, "Desired null suffix %s not defined.",
2029 name);
2030 return;
2031 }
2032
2033 if (suffNull != NULL) {
2034 suffNull->flags &= ~(unsigned)SUFF_NULL;
2035 }
2036 s->flags |= SUFF_NULL;
2037 /*
2038 * XXX: Here's where the transformation mangling would take place
2039 */
2040 suffNull = s;
2041 }
2042
2043 /* Initialize the suffixes module. */
2044 void
2045 Suff_Init(void)
2046 {
2047 #ifdef CLEANUP
2048 suffClean = Lst_New();
2049 sufflist = Lst_New();
2050 #endif
2051 srclist = Lst_New();
2052 transforms = Lst_New();
2053
2054 /*
2055 * Create null suffix for single-suffix rules (POSIX). The thing doesn't
2056 * actually go on the suffix list or everyone will think that's its
2057 * suffix.
2058 */
2059 Suff_ClearSuffixes();
2060 }
2061
2062
2063 /* Clean up the suffixes module. */
2064 void
2065 Suff_End(void)
2066 {
2067 #ifdef CLEANUP
2068 Lst_Destroy(sufflist, SuffFree);
2069 Lst_Destroy(suffClean, SuffFree);
2070 if (suffNull)
2071 SuffFree(suffNull);
2072 Lst_Free(srclist);
2073 Lst_Free(transforms);
2074 #endif
2075 }
2076
2077
2078 /********************* DEBUGGING FUNCTIONS **********************/
2079
2080 static void
2081 PrintSuffNames(const char *prefix, SuffList *suffs)
2082 {
2083 SuffListNode *ln;
2084
2085 debug_printf("#\t%s: ", prefix);
2086 for (ln = suffs->first; ln != NULL; ln = ln->next) {
2087 Suff *suff = ln->datum;
2088 debug_printf("%s ", suff->name);
2089 }
2090 debug_printf("\n");
2091 }
2092
2093 static void
2094 PrintSuff(Suff *s)
2095 {
2096 debug_printf("# `%s' [%d] ", s->name, s->refCount);
2097 if (s->flags != 0) {
2098 char flags_buf[SuffFlags_ToStringSize];
2099
2100 debug_printf(" (%s)",
2101 Enum_FlagsToString(flags_buf, sizeof flags_buf,
2102 s->flags, SuffFlags_ToStringSpecs));
2103 }
2104 debug_printf("\n");
2105
2106 PrintSuffNames("To", s->parents);
2107 PrintSuffNames("From", s->children);
2108
2109 debug_printf("#\tSearch Path: ");
2110 Dir_PrintPath(s->searchPath);
2111 debug_printf("\n");
2112 }
2113
2114 static void
2115 PrintTransformation(GNode *t)
2116 {
2117 debug_printf("%-16s:", t->name);
2118 Targ_PrintType(t->type);
2119 debug_printf("\n");
2120 Targ_PrintCmds(t);
2121 debug_printf("\n");
2122 }
2123
2124 void
2125 Suff_PrintAll(void)
2126 {
2127 debug_printf("#*** Suffixes:\n");
2128 {
2129 SuffListNode *ln;
2130 for (ln = sufflist->first; ln != NULL; ln = ln->next)
2131 PrintSuff(ln->datum);
2132 }
2133
2134 debug_printf("#*** Transformations:\n");
2135 {
2136 GNodeListNode *ln;
2137 for (ln = transforms->first; ln != NULL; ln = ln->next)
2138 PrintTransformation(ln->datum);
2139 }
2140 }
2141