arch.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
4 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Adam de Boor.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.1 cgd #ifndef lint
40 1.1 cgd static char sccsid[] = "@(#)arch.c 5.7 (Berkeley) 12/28/90";
41 1.1 cgd #endif /* not lint */
42 1.1 cgd
43 1.1 cgd /*-
44 1.1 cgd * arch.c --
45 1.1 cgd * Functions to manipulate libraries, archives and their members.
46 1.1 cgd *
47 1.1 cgd * Once again, cacheing/hashing comes into play in the manipulation
48 1.1 cgd * of archives. The first time an archive is referenced, all of its members'
49 1.1 cgd * headers are read and hashed and the archive closed again. All hashed
50 1.1 cgd * archives are kept on a list which is searched each time an archive member
51 1.1 cgd * is referenced.
52 1.1 cgd *
53 1.1 cgd * The interface to this module is:
54 1.1 cgd * Arch_ParseArchive Given an archive specification, return a list
55 1.1 cgd * of GNode's, one for each member in the spec.
56 1.1 cgd * FAILURE is returned if the specification is
57 1.1 cgd * invalid for some reason.
58 1.1 cgd *
59 1.1 cgd * Arch_Touch Alter the modification time of the archive
60 1.1 cgd * member described by the given node to be
61 1.1 cgd * the current time.
62 1.1 cgd *
63 1.1 cgd * Arch_TouchLib Update the modification time of the library
64 1.1 cgd * described by the given node. This is special
65 1.1 cgd * because it also updates the modification time
66 1.1 cgd * of the library's table of contents.
67 1.1 cgd *
68 1.1 cgd * Arch_MTime Find the modification time of a member of
69 1.1 cgd * an archive *in the archive*. The time is also
70 1.1 cgd * placed in the member's GNode. Returns the
71 1.1 cgd * modification time.
72 1.1 cgd *
73 1.1 cgd * Arch_MemTime Find the modification time of a member of
74 1.1 cgd * an archive. Called when the member doesn't
75 1.1 cgd * already exist. Looks in the archive for the
76 1.1 cgd * modification time. Returns the modification
77 1.1 cgd * time.
78 1.1 cgd *
79 1.1 cgd * Arch_FindLib Search for a library along a path. The
80 1.1 cgd * library name in the GNode should be in
81 1.1 cgd * -l<name> format.
82 1.1 cgd *
83 1.1 cgd * Arch_LibOODate Special function to decide if a library node
84 1.1 cgd * is out-of-date.
85 1.1 cgd *
86 1.1 cgd * Arch_Init Initialize this module.
87 1.1 cgd */
88 1.1 cgd
89 1.1 cgd #include <sys/types.h>
90 1.1 cgd #include <sys/stat.h>
91 1.1 cgd #include <sys/time.h>
92 1.1 cgd #include <ctype.h>
93 1.1 cgd #include <ar.h>
94 1.1 cgd #include <ranlib.h>
95 1.1 cgd #include <stdio.h>
96 1.1 cgd #include "make.h"
97 1.1 cgd #include "hash.h"
98 1.1 cgd
99 1.1 cgd static Lst archives; /* Lst of archives we've already examined */
100 1.1 cgd
101 1.1 cgd typedef struct Arch {
102 1.1 cgd char *name; /* Name of archive */
103 1.1 cgd Hash_Table members; /* All the members of the archive described
104 1.1 cgd * by <name, struct ar_hdr *> key/value pairs */
105 1.1 cgd } Arch;
106 1.1 cgd
107 1.1 cgd static FILE *ArchFindMember();
108 1.1 cgd
109 1.1 cgd /*-
110 1.1 cgd *-----------------------------------------------------------------------
111 1.1 cgd * Arch_ParseArchive --
112 1.1 cgd * Parse the archive specification in the given line and find/create
113 1.1 cgd * the nodes for the specified archive members, placing their nodes
114 1.1 cgd * on the given list.
115 1.1 cgd *
116 1.1 cgd * Results:
117 1.1 cgd * SUCCESS if it was a valid specification. The linePtr is updated
118 1.1 cgd * to point to the first non-space after the archive spec. The
119 1.1 cgd * nodes for the members are placed on the given list.
120 1.1 cgd *
121 1.1 cgd * Side Effects:
122 1.1 cgd * Some nodes may be created. The given list is extended.
123 1.1 cgd *
124 1.1 cgd *-----------------------------------------------------------------------
125 1.1 cgd */
126 1.1 cgd ReturnStatus
127 1.1 cgd Arch_ParseArchive (linePtr, nodeLst, ctxt)
128 1.1 cgd char **linePtr; /* Pointer to start of specification */
129 1.1 cgd Lst nodeLst; /* Lst on which to place the nodes */
130 1.1 cgd GNode *ctxt; /* Context in which to expand variables */
131 1.1 cgd {
132 1.1 cgd register char *cp; /* Pointer into line */
133 1.1 cgd GNode *gn; /* New node */
134 1.1 cgd char *libName; /* Library-part of specification */
135 1.1 cgd char *memName; /* Member-part of specification */
136 1.1 cgd char nameBuf[BSIZE]; /* temporary place for node name */
137 1.1 cgd char saveChar; /* Ending delimiter of member-name */
138 1.1 cgd Boolean subLibName; /* TRUE if libName should have/had
139 1.1 cgd * variable substitution performed on it */
140 1.1 cgd
141 1.1 cgd libName = *linePtr;
142 1.1 cgd
143 1.1 cgd subLibName = FALSE;
144 1.1 cgd
145 1.1 cgd for (cp = libName; *cp != '(' && *cp != '\0'; cp++) {
146 1.1 cgd if (*cp == '$') {
147 1.1 cgd /*
148 1.1 cgd * Variable spec, so call the Var module to parse the puppy
149 1.1 cgd * so we can safely advance beyond it...
150 1.1 cgd */
151 1.1 cgd int length;
152 1.1 cgd Boolean freeIt;
153 1.1 cgd char *result;
154 1.1 cgd
155 1.1 cgd result=Var_Parse(cp, ctxt, TRUE, &length, &freeIt);
156 1.1 cgd if (result == var_Error) {
157 1.1 cgd return(FAILURE);
158 1.1 cgd } else {
159 1.1 cgd subLibName = TRUE;
160 1.1 cgd }
161 1.1 cgd
162 1.1 cgd if (freeIt) {
163 1.1 cgd free(result);
164 1.1 cgd }
165 1.1 cgd cp += length-1;
166 1.1 cgd }
167 1.1 cgd }
168 1.1 cgd
169 1.1 cgd *cp++ = '\0';
170 1.1 cgd if (subLibName) {
171 1.1 cgd libName = Var_Subst(libName, ctxt, TRUE);
172 1.1 cgd }
173 1.1 cgd
174 1.1 cgd
175 1.1 cgd while (1) {
176 1.1 cgd /*
177 1.1 cgd * First skip to the start of the member's name, mark that
178 1.1 cgd * place and skip to the end of it (either white-space or
179 1.1 cgd * a close paren).
180 1.1 cgd */
181 1.1 cgd Boolean doSubst = FALSE; /* TRUE if need to substitute in memName */
182 1.1 cgd
183 1.1 cgd while (*cp != '\0' && *cp != ')' && isspace (*cp)) {
184 1.1 cgd cp++;
185 1.1 cgd }
186 1.1 cgd memName = cp;
187 1.1 cgd while (*cp != '\0' && *cp != ')' && !isspace (*cp)) {
188 1.1 cgd if (*cp == '$') {
189 1.1 cgd /*
190 1.1 cgd * Variable spec, so call the Var module to parse the puppy
191 1.1 cgd * so we can safely advance beyond it...
192 1.1 cgd */
193 1.1 cgd int length;
194 1.1 cgd Boolean freeIt;
195 1.1 cgd char *result;
196 1.1 cgd
197 1.1 cgd result=Var_Parse(cp, ctxt, TRUE, &length, &freeIt);
198 1.1 cgd if (result == var_Error) {
199 1.1 cgd return(FAILURE);
200 1.1 cgd } else {
201 1.1 cgd doSubst = TRUE;
202 1.1 cgd }
203 1.1 cgd
204 1.1 cgd if (freeIt) {
205 1.1 cgd free(result);
206 1.1 cgd }
207 1.1 cgd cp += length;
208 1.1 cgd } else {
209 1.1 cgd cp++;
210 1.1 cgd }
211 1.1 cgd }
212 1.1 cgd
213 1.1 cgd /*
214 1.1 cgd * If the specification ends without a closing parenthesis,
215 1.1 cgd * chances are there's something wrong (like a missing backslash),
216 1.1 cgd * so it's better to return failure than allow such things to happen
217 1.1 cgd */
218 1.1 cgd if (*cp == '\0') {
219 1.1 cgd printf("No closing parenthesis in archive specification\n");
220 1.1 cgd return (FAILURE);
221 1.1 cgd }
222 1.1 cgd
223 1.1 cgd /*
224 1.1 cgd * If we didn't move anywhere, we must be done
225 1.1 cgd */
226 1.1 cgd if (cp == memName) {
227 1.1 cgd break;
228 1.1 cgd }
229 1.1 cgd
230 1.1 cgd saveChar = *cp;
231 1.1 cgd *cp = '\0';
232 1.1 cgd
233 1.1 cgd /*
234 1.1 cgd * XXX: This should be taken care of intelligently by
235 1.1 cgd * SuffExpandChildren, both for the archive and the member portions.
236 1.1 cgd */
237 1.1 cgd /*
238 1.1 cgd * If member contains variables, try and substitute for them.
239 1.1 cgd * This will slow down archive specs with dynamic sources, of course,
240 1.1 cgd * since we'll be (non-)substituting them three times, but them's
241 1.1 cgd * the breaks -- we need to do this since SuffExpandChildren calls
242 1.1 cgd * us, otherwise we could assume the thing would be taken care of
243 1.1 cgd * later.
244 1.1 cgd */
245 1.1 cgd if (doSubst) {
246 1.1 cgd char *buf;
247 1.1 cgd char *sacrifice;
248 1.1 cgd char *oldMemName = memName;
249 1.1 cgd
250 1.1 cgd memName = Var_Subst(memName, ctxt, TRUE);
251 1.1 cgd
252 1.1 cgd /*
253 1.1 cgd * Now form an archive spec and recurse to deal with nested
254 1.1 cgd * variables and multi-word variable values.... The results
255 1.1 cgd * are just placed at the end of the nodeLst we're returning.
256 1.1 cgd */
257 1.1 cgd buf = sacrifice = emalloc(strlen(memName)+strlen(libName)+3);
258 1.1 cgd
259 1.1 cgd sprintf(buf, "%s(%s)", libName, memName);
260 1.1 cgd
261 1.1 cgd if (index(memName, '$') && strcmp(memName, oldMemName) == 0) {
262 1.1 cgd /*
263 1.1 cgd * Must contain dynamic sources, so we can't deal with it now.
264 1.1 cgd * Just create an ARCHV node for the thing and let
265 1.1 cgd * SuffExpandChildren handle it...
266 1.1 cgd */
267 1.1 cgd gn = Targ_FindNode(buf, TARG_CREATE);
268 1.1 cgd
269 1.1 cgd if (gn == NILGNODE) {
270 1.1 cgd free(buf);
271 1.1 cgd return(FAILURE);
272 1.1 cgd } else {
273 1.1 cgd gn->type |= OP_ARCHV;
274 1.1 cgd (void)Lst_AtEnd(nodeLst, (ClientData)gn);
275 1.1 cgd }
276 1.1 cgd } else if (Arch_ParseArchive(&sacrifice, nodeLst, ctxt)!=SUCCESS) {
277 1.1 cgd /*
278 1.1 cgd * Error in nested call -- free buffer and return FAILURE
279 1.1 cgd * ourselves.
280 1.1 cgd */
281 1.1 cgd free(buf);
282 1.1 cgd return(FAILURE);
283 1.1 cgd }
284 1.1 cgd /*
285 1.1 cgd * Free buffer and continue with our work.
286 1.1 cgd */
287 1.1 cgd free(buf);
288 1.1 cgd } else if (Dir_HasWildcards(memName)) {
289 1.1 cgd Lst members = Lst_Init(FALSE);
290 1.1 cgd char *member;
291 1.1 cgd
292 1.1 cgd Dir_Expand(memName, dirSearchPath, members);
293 1.1 cgd while (!Lst_IsEmpty(members)) {
294 1.1 cgd member = (char *)Lst_DeQueue(members);
295 1.1 cgd
296 1.1 cgd sprintf(nameBuf, "%s(%s)", libName, member);
297 1.1 cgd free(member);
298 1.1 cgd gn = Targ_FindNode (nameBuf, TARG_CREATE);
299 1.1 cgd if (gn == NILGNODE) {
300 1.1 cgd return (FAILURE);
301 1.1 cgd } else {
302 1.1 cgd /*
303 1.1 cgd * We've found the node, but have to make sure the rest of
304 1.1 cgd * the world knows it's an archive member, without having
305 1.1 cgd * to constantly check for parentheses, so we type the
306 1.1 cgd * thing with the OP_ARCHV bit before we place it on the
307 1.1 cgd * end of the provided list.
308 1.1 cgd */
309 1.1 cgd gn->type |= OP_ARCHV;
310 1.1 cgd (void) Lst_AtEnd (nodeLst, (ClientData)gn);
311 1.1 cgd }
312 1.1 cgd }
313 1.1 cgd Lst_Destroy(members, NOFREE);
314 1.1 cgd } else {
315 1.1 cgd sprintf(nameBuf, "%s(%s)", libName, memName);
316 1.1 cgd gn = Targ_FindNode (nameBuf, TARG_CREATE);
317 1.1 cgd if (gn == NILGNODE) {
318 1.1 cgd return (FAILURE);
319 1.1 cgd } else {
320 1.1 cgd /*
321 1.1 cgd * We've found the node, but have to make sure the rest of the
322 1.1 cgd * world knows it's an archive member, without having to
323 1.1 cgd * constantly check for parentheses, so we type the thing with
324 1.1 cgd * the OP_ARCHV bit before we place it on the end of the
325 1.1 cgd * provided list.
326 1.1 cgd */
327 1.1 cgd gn->type |= OP_ARCHV;
328 1.1 cgd (void) Lst_AtEnd (nodeLst, (ClientData)gn);
329 1.1 cgd }
330 1.1 cgd }
331 1.1 cgd if (doSubst) {
332 1.1 cgd free(memName);
333 1.1 cgd }
334 1.1 cgd
335 1.1 cgd *cp = saveChar;
336 1.1 cgd }
337 1.1 cgd
338 1.1 cgd /*
339 1.1 cgd * If substituted libName, free it now, since we need it no longer.
340 1.1 cgd */
341 1.1 cgd if (subLibName) {
342 1.1 cgd free(libName);
343 1.1 cgd }
344 1.1 cgd
345 1.1 cgd /*
346 1.1 cgd * We promised the pointer would be set up at the next non-space, so
347 1.1 cgd * we must advance cp there before setting *linePtr... (note that on
348 1.1 cgd * entrance to the loop, cp is guaranteed to point at a ')')
349 1.1 cgd */
350 1.1 cgd do {
351 1.1 cgd cp++;
352 1.1 cgd } while (*cp != '\0' && isspace (*cp));
353 1.1 cgd
354 1.1 cgd *linePtr = cp;
355 1.1 cgd return (SUCCESS);
356 1.1 cgd }
357 1.1 cgd
358 1.1 cgd /*-
359 1.1 cgd *-----------------------------------------------------------------------
360 1.1 cgd * ArchFindArchive --
361 1.1 cgd * See if the given archive is the one we are looking for. Called
362 1.1 cgd * From ArchStatMember and ArchFindMember via Lst_Find.
363 1.1 cgd *
364 1.1 cgd * Results:
365 1.1 cgd * 0 if it is, non-zero if it isn't.
366 1.1 cgd *
367 1.1 cgd * Side Effects:
368 1.1 cgd * None.
369 1.1 cgd *
370 1.1 cgd *-----------------------------------------------------------------------
371 1.1 cgd */
372 1.1 cgd static int
373 1.1 cgd ArchFindArchive (ar, archName)
374 1.1 cgd Arch *ar; /* Current list element */
375 1.1 cgd char *archName; /* Name we want */
376 1.1 cgd {
377 1.1 cgd return (strcmp (archName, ar->name));
378 1.1 cgd }
379 1.1 cgd
380 1.1 cgd /*-
381 1.1 cgd *-----------------------------------------------------------------------
382 1.1 cgd * ArchStatMember --
383 1.1 cgd * Locate a member of an archive, given the path of the archive and
384 1.1 cgd * the path of the desired member.
385 1.1 cgd *
386 1.1 cgd * Results:
387 1.1 cgd * A pointer to the current struct ar_hdr structure for the member. Note
388 1.1 cgd * That no position is returned, so this is not useful for touching
389 1.1 cgd * archive members. This is mostly because we have no assurances that
390 1.1 cgd * The archive will remain constant after we read all the headers, so
391 1.1 cgd * there's not much point in remembering the position...
392 1.1 cgd *
393 1.1 cgd * Side Effects:
394 1.1 cgd *
395 1.1 cgd *-----------------------------------------------------------------------
396 1.1 cgd */
397 1.1 cgd static struct ar_hdr *
398 1.1 cgd ArchStatMember (archive, member, hash)
399 1.1 cgd char *archive; /* Path to the archive */
400 1.1 cgd char *member; /* Name of member. If it is a path, only the
401 1.1 cgd * last component is used. */
402 1.1 cgd Boolean hash; /* TRUE if archive should be hashed if not
403 1.1 cgd * already so. */
404 1.1 cgd {
405 1.1 cgd #define AR_MAX_NAME_LEN (sizeof(arh.ar_name)-1)
406 1.1 cgd FILE * arch; /* Stream to archive */
407 1.1 cgd int size; /* Size of archive member */
408 1.1 cgd char *cp; /* Useful character pointer */
409 1.1 cgd char magic[SARMAG];
410 1.1 cgd int len;
411 1.1 cgd LstNode ln; /* Lst member containing archive descriptor */
412 1.1 cgd Arch *ar; /* Archive descriptor */
413 1.1 cgd Hash_Entry *he; /* Entry containing member's description */
414 1.1 cgd struct ar_hdr arh; /* archive-member header for reading archive */
415 1.1 cgd char memName[AR_MAX_NAME_LEN+1];
416 1.1 cgd /* Current member name while hashing. The name is
417 1.1 cgd * truncated to AR_MAX_NAME_LEN bytes, but we need
418 1.1 cgd * room for the null byte... */
419 1.1 cgd char copy[AR_MAX_NAME_LEN+1];
420 1.1 cgd /* Holds copy of last path element from member, if
421 1.1 cgd * it has to be truncated, so we don't have to
422 1.1 cgd * figure it out again once the table is hashed. */
423 1.1 cgd
424 1.1 cgd /*
425 1.1 cgd * Because of space constraints and similar things, files are archived
426 1.1 cgd * using their final path components, not the entire thing, so we need
427 1.1 cgd * to point 'member' to the final component, if there is one, to make
428 1.1 cgd * the comparisons easier...
429 1.1 cgd */
430 1.1 cgd cp = rindex (member, '/');
431 1.1 cgd if (cp != (char *) NULL) {
432 1.1 cgd member = cp + 1;
433 1.1 cgd }
434 1.1 cgd len = strlen (member);
435 1.1 cgd if (len > AR_MAX_NAME_LEN) {
436 1.1 cgd len = AR_MAX_NAME_LEN;
437 1.1 cgd strncpy(copy, member, AR_MAX_NAME_LEN);
438 1.1 cgd copy[AR_MAX_NAME_LEN] = '\0';
439 1.1 cgd member = copy;
440 1.1 cgd }
441 1.1 cgd
442 1.1 cgd ln = Lst_Find (archives, (ClientData) archive, ArchFindArchive);
443 1.1 cgd if (ln != NILLNODE) {
444 1.1 cgd ar = (Arch *) Lst_Datum (ln);
445 1.1 cgd
446 1.1 cgd he = Hash_FindEntry (&ar->members, member);
447 1.1 cgd
448 1.1 cgd if (he != (Hash_Entry *) NULL) {
449 1.1 cgd return ((struct ar_hdr *) Hash_GetValue (he));
450 1.1 cgd } else {
451 1.1 cgd return ((struct ar_hdr *) NULL);
452 1.1 cgd }
453 1.1 cgd }
454 1.1 cgd
455 1.1 cgd if (!hash) {
456 1.1 cgd /*
457 1.1 cgd * Caller doesn't want the thing hashed, just use ArchFindMember
458 1.1 cgd * to read the header for the member out and close down the stream
459 1.1 cgd * again. Since the archive is not to be hashed, we assume there's
460 1.1 cgd * no need to allocate extra room for the header we're returning,
461 1.1 cgd * so just declare it static.
462 1.1 cgd */
463 1.1 cgd static struct ar_hdr sarh;
464 1.1 cgd
465 1.1 cgd arch = ArchFindMember(archive, member, &sarh, "r");
466 1.1 cgd
467 1.1 cgd if (arch == (FILE *)NULL) {
468 1.1 cgd return ((struct ar_hdr *)NULL);
469 1.1 cgd } else {
470 1.1 cgd fclose(arch);
471 1.1 cgd return (&sarh);
472 1.1 cgd }
473 1.1 cgd }
474 1.1 cgd
475 1.1 cgd /*
476 1.1 cgd * We don't have this archive on the list yet, so we want to find out
477 1.1 cgd * everything that's in it and cache it so we can get at it quickly.
478 1.1 cgd */
479 1.1 cgd arch = fopen (archive, "r");
480 1.1 cgd if (arch == (FILE *) NULL) {
481 1.1 cgd return ((struct ar_hdr *) NULL);
482 1.1 cgd }
483 1.1 cgd
484 1.1 cgd /*
485 1.1 cgd * We use the ARMAG string to make sure this is an archive we
486 1.1 cgd * can handle...
487 1.1 cgd */
488 1.1 cgd if ((fread (magic, SARMAG, 1, arch) != 1) ||
489 1.1 cgd (strncmp (magic, ARMAG, SARMAG) != 0)) {
490 1.1 cgd fclose (arch);
491 1.1 cgd return ((struct ar_hdr *) NULL);
492 1.1 cgd }
493 1.1 cgd
494 1.1 cgd ar = (Arch *)emalloc (sizeof (Arch));
495 1.1 cgd ar->name = strdup (archive);
496 1.1 cgd Hash_InitTable (&ar->members, -1);
497 1.1 cgd memName[AR_MAX_NAME_LEN] = '\0';
498 1.1 cgd
499 1.1 cgd while (fread ((char *)&arh, sizeof (struct ar_hdr), 1, arch) == 1) {
500 1.1 cgd if (strncmp ( arh.ar_fmag, ARFMAG, sizeof (arh.ar_fmag)) != 0) {
501 1.1 cgd /*
502 1.1 cgd * The header is bogus, so the archive is bad
503 1.1 cgd * and there's no way we can recover...
504 1.1 cgd */
505 1.1 cgd fclose (arch);
506 1.1 cgd Hash_DeleteTable (&ar->members);
507 1.1 cgd free ((Address)ar);
508 1.1 cgd return ((struct ar_hdr *) NULL);
509 1.1 cgd } else {
510 1.1 cgd (void) strncpy (memName, arh.ar_name, sizeof(arh.ar_name));
511 1.1 cgd for (cp = &memName[AR_MAX_NAME_LEN]; *cp == ' '; cp--) {
512 1.1 cgd continue;
513 1.1 cgd }
514 1.1 cgd cp[1] = '\0';
515 1.1 cgd
516 1.1 cgd he = Hash_CreateEntry (&ar->members, strdup (memName),
517 1.1 cgd (Boolean *)NULL);
518 1.1 cgd Hash_SetValue (he, (ClientData)emalloc (sizeof (struct ar_hdr)));
519 1.1 cgd bcopy ((Address)&arh, (Address)Hash_GetValue (he),
520 1.1 cgd sizeof (struct ar_hdr));
521 1.1 cgd }
522 1.1 cgd /*
523 1.1 cgd * We need to advance the stream's pointer to the start of the
524 1.1 cgd * next header. Files are padded with newlines to an even-byte
525 1.1 cgd * boundary, so we need to extract the size of the file from the
526 1.1 cgd * 'size' field of the header and round it up during the seek.
527 1.1 cgd */
528 1.1 cgd arh.ar_size[sizeof(arh.ar_size)-1] = '\0';
529 1.1 cgd (void) sscanf (arh.ar_size, "%10d", &size);
530 1.1 cgd fseek (arch, (size + 1) & ~1, 1);
531 1.1 cgd }
532 1.1 cgd
533 1.1 cgd fclose (arch);
534 1.1 cgd
535 1.1 cgd (void) Lst_AtEnd (archives, (ClientData) ar);
536 1.1 cgd
537 1.1 cgd /*
538 1.1 cgd * Now that the archive has been read and cached, we can look into
539 1.1 cgd * the hash table to find the desired member's header.
540 1.1 cgd */
541 1.1 cgd he = Hash_FindEntry (&ar->members, member);
542 1.1 cgd
543 1.1 cgd if (he != (Hash_Entry *) NULL) {
544 1.1 cgd return ((struct ar_hdr *) Hash_GetValue (he));
545 1.1 cgd } else {
546 1.1 cgd return ((struct ar_hdr *) NULL);
547 1.1 cgd }
548 1.1 cgd }
549 1.1 cgd
550 1.1 cgd /*-
551 1.1 cgd *-----------------------------------------------------------------------
552 1.1 cgd * ArchFindMember --
553 1.1 cgd * Locate a member of an archive, given the path of the archive and
554 1.1 cgd * the path of the desired member. If the archive is to be modified,
555 1.1 cgd * the mode should be "r+", if not, it should be "r".
556 1.1 cgd *
557 1.1 cgd * Results:
558 1.1 cgd * An FILE *, opened for reading and writing, positioned at the
559 1.1 cgd * start of the member's struct ar_hdr, or NULL if the member was
560 1.1 cgd * nonexistent. The current struct ar_hdr for member.
561 1.1 cgd *
562 1.1 cgd * Side Effects:
563 1.1 cgd * The passed struct ar_hdr structure is filled in.
564 1.1 cgd *
565 1.1 cgd *-----------------------------------------------------------------------
566 1.1 cgd */
567 1.1 cgd static FILE *
568 1.1 cgd ArchFindMember (archive, member, arhPtr, mode)
569 1.1 cgd char *archive; /* Path to the archive */
570 1.1 cgd char *member; /* Name of member. If it is a path, only the
571 1.1 cgd * last component is used. */
572 1.1 cgd struct ar_hdr *arhPtr; /* Pointer to header structure to be filled in */
573 1.1 cgd char *mode; /* The mode for opening the stream */
574 1.1 cgd {
575 1.1 cgd FILE * arch; /* Stream to archive */
576 1.1 cgd int size; /* Size of archive member */
577 1.1 cgd char *cp; /* Useful character pointer */
578 1.1 cgd char magic[SARMAG];
579 1.1 cgd int len;
580 1.1 cgd
581 1.1 cgd arch = fopen (archive, mode);
582 1.1 cgd if (arch == (FILE *) NULL) {
583 1.1 cgd return ((FILE *) NULL);
584 1.1 cgd }
585 1.1 cgd
586 1.1 cgd /*
587 1.1 cgd * We use the ARMAG string to make sure this is an archive we
588 1.1 cgd * can handle...
589 1.1 cgd */
590 1.1 cgd if ((fread (magic, SARMAG, 1, arch) != 1) ||
591 1.1 cgd (strncmp (magic, ARMAG, SARMAG) != 0)) {
592 1.1 cgd fclose (arch);
593 1.1 cgd return ((FILE *) NULL);
594 1.1 cgd }
595 1.1 cgd
596 1.1 cgd /*
597 1.1 cgd * Because of space constraints and similar things, files are archived
598 1.1 cgd * using their final path components, not the entire thing, so we need
599 1.1 cgd * to point 'member' to the final component, if there is one, to make
600 1.1 cgd * the comparisons easier...
601 1.1 cgd */
602 1.1 cgd cp = rindex (member, '/');
603 1.1 cgd if (cp != (char *) NULL) {
604 1.1 cgd member = cp + 1;
605 1.1 cgd }
606 1.1 cgd len = strlen (member);
607 1.1 cgd if (len > sizeof (arhPtr->ar_name)) {
608 1.1 cgd len = sizeof (arhPtr->ar_name);
609 1.1 cgd }
610 1.1 cgd
611 1.1 cgd while (fread ((char *)arhPtr, sizeof (struct ar_hdr), 1, arch) == 1) {
612 1.1 cgd if (strncmp(arhPtr->ar_fmag, ARFMAG, sizeof (arhPtr->ar_fmag) ) != 0) {
613 1.1 cgd /*
614 1.1 cgd * The header is bogus, so the archive is bad
615 1.1 cgd * and there's no way we can recover...
616 1.1 cgd */
617 1.1 cgd fclose (arch);
618 1.1 cgd return ((FILE *) NULL);
619 1.1 cgd } else if (strncmp (member, arhPtr->ar_name, len) == 0) {
620 1.1 cgd /*
621 1.1 cgd * If the member's name doesn't take up the entire 'name' field,
622 1.1 cgd * we have to be careful of matching prefixes. Names are space-
623 1.1 cgd * padded to the right, so if the character in 'name' at the end
624 1.1 cgd * of the matched string is anything but a space, this isn't the
625 1.1 cgd * member we sought.
626 1.1 cgd */
627 1.1 cgd if (len != sizeof(arhPtr->ar_name) && arhPtr->ar_name[len] != ' '){
628 1.1 cgd continue;
629 1.1 cgd } else {
630 1.1 cgd /*
631 1.1 cgd * To make life easier, we reposition the file at the start
632 1.1 cgd * of the header we just read before we return the stream.
633 1.1 cgd * In a more general situation, it might be better to leave
634 1.1 cgd * the file at the actual member, rather than its header, but
635 1.1 cgd * not here...
636 1.1 cgd */
637 1.1 cgd fseek (arch, -sizeof(struct ar_hdr), 1);
638 1.1 cgd return (arch);
639 1.1 cgd }
640 1.1 cgd } else {
641 1.1 cgd /*
642 1.1 cgd * This isn't the member we're after, so we need to advance the
643 1.1 cgd * stream's pointer to the start of the next header. Files are
644 1.1 cgd * padded with newlines to an even-byte boundary, so we need to
645 1.1 cgd * extract the size of the file from the 'size' field of the
646 1.1 cgd * header and round it up during the seek.
647 1.1 cgd */
648 1.1 cgd arhPtr->ar_size[sizeof(arhPtr->ar_size)-1] = '\0';
649 1.1 cgd (void)sscanf (arhPtr->ar_size, "%10d", &size);
650 1.1 cgd fseek (arch, (size + 1) & ~1, 1);
651 1.1 cgd }
652 1.1 cgd }
653 1.1 cgd
654 1.1 cgd /*
655 1.1 cgd * We've looked everywhere, but the member is not to be found. Close the
656 1.1 cgd * archive and return NULL -- an error.
657 1.1 cgd */
658 1.1 cgd fclose (arch);
659 1.1 cgd return ((FILE *) NULL);
660 1.1 cgd }
661 1.1 cgd
662 1.1 cgd /*-
663 1.1 cgd *-----------------------------------------------------------------------
664 1.1 cgd * Arch_Touch --
665 1.1 cgd * Touch a member of an archive.
666 1.1 cgd *
667 1.1 cgd * Results:
668 1.1 cgd * The 'time' field of the member's header is updated.
669 1.1 cgd *
670 1.1 cgd * Side Effects:
671 1.1 cgd * The modification time of the entire archive is also changed.
672 1.1 cgd * For a library, this could necessitate the re-ranlib'ing of the
673 1.1 cgd * whole thing.
674 1.1 cgd *
675 1.1 cgd *-----------------------------------------------------------------------
676 1.1 cgd */
677 1.1 cgd void
678 1.1 cgd Arch_Touch (gn)
679 1.1 cgd GNode *gn; /* Node of member to touch */
680 1.1 cgd {
681 1.1 cgd FILE * arch; /* Stream open to archive, positioned properly */
682 1.1 cgd struct ar_hdr arh; /* Current header describing member */
683 1.1 cgd
684 1.1 cgd arch = ArchFindMember(Var_Value (ARCHIVE, gn),
685 1.1 cgd Var_Value (TARGET, gn),
686 1.1 cgd &arh, "r+");
687 1.1 cgd sprintf(arh.ar_date, "%-12d", now);
688 1.1 cgd
689 1.1 cgd if (arch != (FILE *) NULL) {
690 1.1 cgd (void)fwrite ((char *)&arh, sizeof (struct ar_hdr), 1, arch);
691 1.1 cgd fclose (arch);
692 1.1 cgd }
693 1.1 cgd }
694 1.1 cgd
695 1.1 cgd /*-
696 1.1 cgd *-----------------------------------------------------------------------
697 1.1 cgd * Arch_TouchLib --
698 1.1 cgd * Given a node which represents a library, touch the thing, making
699 1.1 cgd * sure that the table of contents also is touched.
700 1.1 cgd *
701 1.1 cgd * Results:
702 1.1 cgd * None.
703 1.1 cgd *
704 1.1 cgd * Side Effects:
705 1.1 cgd * Both the modification time of the library and of the RANLIBMAG
706 1.1 cgd * member are set to 'now'.
707 1.1 cgd *
708 1.1 cgd *-----------------------------------------------------------------------
709 1.1 cgd */
710 1.1 cgd void
711 1.1 cgd Arch_TouchLib (gn)
712 1.1 cgd GNode *gn; /* The node of the library to touch */
713 1.1 cgd {
714 1.1 cgd FILE * arch; /* Stream open to archive */
715 1.1 cgd struct ar_hdr arh; /* Header describing table of contents */
716 1.1 cgd struct timeval times[2]; /* Times for utimes() call */
717 1.1 cgd
718 1.1 cgd arch = ArchFindMember (gn->path, RANLIBMAG, &arh, "r+");
719 1.1 cgd sprintf(arh.ar_date, "%-12d", now);
720 1.1 cgd
721 1.1 cgd if (arch != (FILE *) NULL) {
722 1.1 cgd (void)fwrite ((char *)&arh, sizeof (struct ar_hdr), 1, arch);
723 1.1 cgd fclose (arch);
724 1.1 cgd
725 1.1 cgd times[0].tv_sec = times[1].tv_sec = now;
726 1.1 cgd times[0].tv_usec = times[1].tv_usec = 0;
727 1.1 cgd utimes(gn->path, times);
728 1.1 cgd }
729 1.1 cgd }
730 1.1 cgd
731 1.1 cgd /*-
732 1.1 cgd *-----------------------------------------------------------------------
733 1.1 cgd * Arch_MTime --
734 1.1 cgd * Return the modification time of a member of an archive.
735 1.1 cgd *
736 1.1 cgd * Results:
737 1.1 cgd * The modification time (seconds).
738 1.1 cgd *
739 1.1 cgd * Side Effects:
740 1.1 cgd * The mtime field of the given node is filled in with the value
741 1.1 cgd * returned by the function.
742 1.1 cgd *
743 1.1 cgd *-----------------------------------------------------------------------
744 1.1 cgd */
745 1.1 cgd int
746 1.1 cgd Arch_MTime (gn)
747 1.1 cgd GNode *gn; /* Node describing archive member */
748 1.1 cgd {
749 1.1 cgd struct ar_hdr *arhPtr; /* Header of desired member */
750 1.1 cgd int modTime; /* Modification time as an integer */
751 1.1 cgd
752 1.1 cgd arhPtr = ArchStatMember (Var_Value (ARCHIVE, gn),
753 1.1 cgd Var_Value (TARGET, gn),
754 1.1 cgd TRUE);
755 1.1 cgd if (arhPtr != (struct ar_hdr *) NULL) {
756 1.1 cgd (void)sscanf (arhPtr->ar_date, "%12d", &modTime);
757 1.1 cgd } else {
758 1.1 cgd modTime = 0;
759 1.1 cgd }
760 1.1 cgd
761 1.1 cgd gn->mtime = modTime;
762 1.1 cgd return (modTime);
763 1.1 cgd }
764 1.1 cgd
765 1.1 cgd /*-
766 1.1 cgd *-----------------------------------------------------------------------
767 1.1 cgd * Arch_MemMTime --
768 1.1 cgd * Given a non-existent archive member's node, get its modification
769 1.1 cgd * time from its archived form, if it exists.
770 1.1 cgd *
771 1.1 cgd * Results:
772 1.1 cgd * The modification time.
773 1.1 cgd *
774 1.1 cgd * Side Effects:
775 1.1 cgd * The mtime field is filled in.
776 1.1 cgd *
777 1.1 cgd *-----------------------------------------------------------------------
778 1.1 cgd */
779 1.1 cgd int
780 1.1 cgd Arch_MemMTime (gn)
781 1.1 cgd GNode *gn;
782 1.1 cgd {
783 1.1 cgd LstNode ln;
784 1.1 cgd GNode *pgn;
785 1.1 cgd char *nameStart,
786 1.1 cgd *nameEnd;
787 1.1 cgd
788 1.1 cgd if (Lst_Open (gn->parents) != SUCCESS) {
789 1.1 cgd gn->mtime = 0;
790 1.1 cgd return (0);
791 1.1 cgd }
792 1.1 cgd while ((ln = Lst_Next (gn->parents)) != NILLNODE) {
793 1.1 cgd pgn = (GNode *) Lst_Datum (ln);
794 1.1 cgd
795 1.1 cgd if (pgn->type & OP_ARCHV) {
796 1.1 cgd /*
797 1.1 cgd * If the parent is an archive specification and is being made
798 1.1 cgd * and its member's name matches the name of the node we were
799 1.1 cgd * given, record the modification time of the parent in the
800 1.1 cgd * child. We keep searching its parents in case some other
801 1.1 cgd * parent requires this child to exist...
802 1.1 cgd */
803 1.1 cgd nameStart = index (pgn->name, '(') + 1;
804 1.1 cgd nameEnd = index (nameStart, ')');
805 1.1 cgd
806 1.1 cgd if (pgn->make &&
807 1.1 cgd strncmp(nameStart, gn->name, nameEnd - nameStart) == 0) {
808 1.1 cgd gn->mtime = Arch_MTime(pgn);
809 1.1 cgd }
810 1.1 cgd } else if (pgn->make) {
811 1.1 cgd /*
812 1.1 cgd * Something which isn't a library depends on the existence of
813 1.1 cgd * this target, so it needs to exist.
814 1.1 cgd */
815 1.1 cgd gn->mtime = 0;
816 1.1 cgd break;
817 1.1 cgd }
818 1.1 cgd }
819 1.1 cgd
820 1.1 cgd Lst_Close (gn->parents);
821 1.1 cgd
822 1.1 cgd return (gn->mtime);
823 1.1 cgd }
824 1.1 cgd
825 1.1 cgd /*-
826 1.1 cgd *-----------------------------------------------------------------------
827 1.1 cgd * Arch_FindLib --
828 1.1 cgd * Search for a library along the given search path.
829 1.1 cgd *
830 1.1 cgd * Results:
831 1.1 cgd * None.
832 1.1 cgd *
833 1.1 cgd * Side Effects:
834 1.1 cgd * The node's 'path' field is set to the found path (including the
835 1.1 cgd * actual file name, not -l...). If the system can handle the -L
836 1.1 cgd * flag when linking (or we cannot find the library), we assume that
837 1.1 cgd * the user has placed the .LIBRARIES variable in the final linking
838 1.1 cgd * command (or the linker will know where to find it) and set the
839 1.1 cgd * TARGET variable for this node to be the node's name. Otherwise,
840 1.1 cgd * we set the TARGET variable to be the full path of the library,
841 1.1 cgd * as returned by Dir_FindFile.
842 1.1 cgd *
843 1.1 cgd *-----------------------------------------------------------------------
844 1.1 cgd */
845 1.1 cgd void
846 1.1 cgd Arch_FindLib (gn, path)
847 1.1 cgd GNode *gn; /* Node of library to find */
848 1.1 cgd Lst path; /* Search path */
849 1.1 cgd {
850 1.1 cgd char *libName; /* file name for archive */
851 1.1 cgd
852 1.1 cgd libName = (char *)emalloc (strlen (gn->name) + 6 - 2);
853 1.1 cgd sprintf(libName, "lib%s.a", &gn->name[2]);
854 1.1 cgd
855 1.1 cgd gn->path = Dir_FindFile (libName, path);
856 1.1 cgd
857 1.1 cgd free (libName);
858 1.1 cgd
859 1.1 cgd #ifdef LIBRARIES
860 1.1 cgd Var_Set (TARGET, gn->name, gn);
861 1.1 cgd #else
862 1.1 cgd Var_Set (TARGET, gn->path == (char *) NULL ? gn->name : gn->path, gn);
863 1.1 cgd #endif LIBRARIES
864 1.1 cgd }
865 1.1 cgd
866 1.1 cgd /*-
867 1.1 cgd *-----------------------------------------------------------------------
868 1.1 cgd * Arch_LibOODate --
869 1.1 cgd * Decide if a node with the OP_LIB attribute is out-of-date. Called
870 1.1 cgd * from Make_OODate to make its life easier.
871 1.1 cgd *
872 1.1 cgd * There are several ways for a library to be out-of-date that are
873 1.1 cgd * not available to ordinary files. In addition, there are ways
874 1.1 cgd * that are open to regular files that are not available to
875 1.1 cgd * libraries. A library that is only used as a source is never
876 1.1 cgd * considered out-of-date by itself. This does not preclude the
877 1.1 cgd * library's modification time from making its parent be out-of-date.
878 1.1 cgd * A library will be considered out-of-date for any of these reasons,
879 1.1 cgd * given that it is a target on a dependency line somewhere:
880 1.1 cgd * Its modification time is less than that of one of its
881 1.1 cgd * sources (gn->mtime < gn->cmtime).
882 1.1 cgd * Its modification time is greater than the time at which the
883 1.1 cgd * make began (i.e. it's been modified in the course
884 1.1 cgd * of the make, probably by archiving).
885 1.1 cgd * Its modification time doesn't agree with the modification
886 1.1 cgd * time of its RANLIBMAG member (i.e. its table of contents
887 1.1 cgd * is out-of-date).
888 1.1 cgd *
889 1.1 cgd *
890 1.1 cgd * Results:
891 1.1 cgd * TRUE if the library is out-of-date. FALSE otherwise.
892 1.1 cgd *
893 1.1 cgd * Side Effects:
894 1.1 cgd * The library will be hashed if it hasn't been already.
895 1.1 cgd *
896 1.1 cgd *-----------------------------------------------------------------------
897 1.1 cgd */
898 1.1 cgd Boolean
899 1.1 cgd Arch_LibOODate (gn)
900 1.1 cgd GNode *gn; /* The library's graph node */
901 1.1 cgd {
902 1.1 cgd Boolean oodate;
903 1.1 cgd
904 1.1 cgd if (OP_NOP(gn->type) && Lst_IsEmpty(gn->children)) {
905 1.1 cgd oodate = FALSE;
906 1.1 cgd } else if ((gn->mtime > now) || (gn->mtime < gn->cmtime)) {
907 1.1 cgd oodate = TRUE;
908 1.1 cgd } else {
909 1.1 cgd struct ar_hdr *arhPtr; /* Header for __.SYMDEF */
910 1.1 cgd int modTimeTOC; /* The table-of-contents's mod time */
911 1.1 cgd
912 1.1 cgd arhPtr = ArchStatMember (gn->path, RANLIBMAG, FALSE);
913 1.1 cgd
914 1.1 cgd if (arhPtr != (struct ar_hdr *)NULL) {
915 1.1 cgd (void)sscanf (arhPtr->ar_date, "%12d", &modTimeTOC);
916 1.1 cgd
917 1.1 cgd if (DEBUG(ARCH) || DEBUG(MAKE)) {
918 1.1 cgd printf("%s modified %s...", RANLIBMAG, Targ_FmtTime(modTimeTOC));
919 1.1 cgd }
920 1.1 cgd oodate = (gn->mtime > modTimeTOC);
921 1.1 cgd } else {
922 1.1 cgd /*
923 1.1 cgd * A library w/o a table of contents is out-of-date
924 1.1 cgd */
925 1.1 cgd if (DEBUG(ARCH) || DEBUG(MAKE)) {
926 1.1 cgd printf("No t.o.c....");
927 1.1 cgd }
928 1.1 cgd oodate = TRUE;
929 1.1 cgd }
930 1.1 cgd }
931 1.1 cgd return (oodate);
932 1.1 cgd }
933 1.1 cgd
934 1.1 cgd /*-
935 1.1 cgd *-----------------------------------------------------------------------
936 1.1 cgd * Arch_Init --
937 1.1 cgd * Initialize things for this module.
938 1.1 cgd *
939 1.1 cgd * Results:
940 1.1 cgd * None.
941 1.1 cgd *
942 1.1 cgd * Side Effects:
943 1.1 cgd * The 'archives' list is initialized.
944 1.1 cgd *
945 1.1 cgd *-----------------------------------------------------------------------
946 1.1 cgd */
947 1.1 cgd void
948 1.1 cgd Arch_Init ()
949 1.1 cgd {
950 1.1 cgd archives = Lst_Init (FALSE);
951 1.1 cgd }
952