[BACK]Return to arch.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Annotation of src/usr.bin/make/arch.c, Revision 1.73

1.44      espie       1: /*     $OpenPackages$ */
1.73    ! deraadt     2: /*     $OpenBSD: arch.c,v 1.72 2007/11/02 17:27:24 espie Exp $ */
1.9       millert     3: /*     $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $       */
1.1       deraadt     4:
                      5: /*
1.44      espie       6:  * Copyright (c) 1999,2000 Marc Espie.
1.38      espie       7:  *
                      8:  * Extensive code changes for the OpenBSD project.
                      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:  *
                     19:  * THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS
                     20:  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
                     21:  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
                     22:  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OPENBSD
                     23:  * PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
                     24:  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
                     25:  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     26:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     27:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     28:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
                     29:  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     30:  */
                     31: /*
1.9       millert    32:  * Copyright (c) 1988, 1989, 1990, 1993
                     33:  *     The Regents of the University of California.  All rights reserved.
1.1       deraadt    34:  * Copyright (c) 1989 by Berkeley Softworks
                     35:  * All rights reserved.
                     36:  *
                     37:  * This code is derived from software contributed to Berkeley by
                     38:  * Adam de Boor.
                     39:  *
                     40:  * Redistribution and use in source and binary forms, with or without
                     41:  * modification, are permitted provided that the following conditions
                     42:  * are met:
                     43:  * 1. Redistributions of source code must retain the above copyright
                     44:  *    notice, this list of conditions and the following disclaimer.
                     45:  * 2. Redistributions in binary form must reproduce the above copyright
                     46:  *    notice, this list of conditions and the following disclaimer in the
                     47:  *    documentation and/or other materials provided with the distribution.
1.53      millert    48:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    49:  *    may be used to endorse or promote products derived from this software
                     50:  *    without specific prior written permission.
                     51:  *
                     52:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     53:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     54:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     55:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     56:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     57:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     58:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     59:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     60:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     61:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     62:  * SUCH DAMAGE.
                     63:  */
                     64:
1.45      espie      65: /*
1.1       deraadt    66:  *     Once again, cacheing/hashing comes into play in the manipulation
                     67:  * of archives. The first time an archive is referenced, all of its members'
                     68:  * headers are read and hashed and the archive closed again. All hashed
1.69      espie      69:  * archives are kept in a hash (archives) which is searched each time
1.45      espie      70:  * an archive member is referenced.
1.1       deraadt    71:  *
                     72:  */
                     73:
1.46      espie      74: #include <sys/param.h>
1.45      espie      75: #include <ar.h>
                     76: #include <assert.h>
                     77: #include <ctype.h>
                     78: #include <fcntl.h>
                     79: #include <limits.h>
                     80: #include <stddef.h>
                     81: #include <stdio.h>
1.55      espie      82: #include <stdint.h>
1.45      espie      83: #include <stdlib.h>
                     84: #include <string.h>
                     85: #include <unistd.h>
                     86: #include "ohash.h"
                     87: #include "config.h"
                     88: #include "defines.h"
1.70      espie      89: #include "buf.h"
1.45      espie      90: #include "dir.h"
1.63      espie      91: #include "direxpand.h"
1.45      espie      92: #include "arch.h"
                     93: #include "var.h"
                     94: #include "targ.h"
                     95: #include "memory.h"
                     96: #include "gnode.h"
                     97: #include "timestamp.h"
                     98: #include "lst.h"
1.44      espie      99:
1.48      espie     100: #ifndef PATH_MAX
                    101: # ifdef MAXPATHLEN
                    102: #  define PATH_MAX (MAXPATHLEN+1)
                    103: # else
                    104: #  define PATH_MAX     1024
                    105: # endif
                    106: #endif
                    107:
1.14      espie     108: #ifdef TARGET_MACHINE
                    109: #undef MACHINE
                    110: #define MACHINE TARGET_MACHINE
                    111: #endif
                    112: #ifdef TARGET_MACHINE_ARCH
                    113: #undef MACHINE_ARCH
                    114: #define MACHINE_ARCH TARGET_MACHINE_ARCH
                    115: #endif
                    116:
1.70      espie     117: static struct ohash archives;  /* Archives we've already examined.  */
1.1       deraadt   118:
1.35      espie     119: typedef struct Arch_ {
1.64      espie     120:        struct ohash members;   /* All the members of this archive, as
1.70      espie     121:                                 * struct arch_member entries.  */
1.64      espie     122:        char name[1];           /* Archive name. */
1.1       deraadt   123: } Arch;
                    124:
1.35      espie     125: /* Used to get to ar's field sizes.  */
                    126: static struct ar_hdr *dummy;
1.44      espie     127: #define AR_NAME_SIZE           (sizeof(dummy->ar_name))
1.35      espie     128: #define AR_DATE_SIZE           (sizeof(dummy->ar_date))
                    129:
1.44      espie     130: /* Each archive member is tied to an arch_member structure,
1.35      espie     131:  * suitable for hashing.  */
                    132: struct arch_member {
1.70      espie     133:        TIMESTAMP mtime;                /* Member modification date.  */
                    134:        char date[AR_DATE_SIZE+1];      /* Same, before conversion to numeric
                    135:                                         * value.  */
                    136:        char name[1];                   /* Member name.  */
1.35      espie     137: };
                    138:
1.43      espie     139: static struct ohash_info members_info = {
1.64      espie     140:        offsetof(struct arch_member, name), NULL,
                    141:        hash_alloc, hash_free, element_alloc
1.35      espie     142: };
                    143:
1.43      espie     144: static struct ohash_info arch_info = {
1.64      espie     145:        offsetof(Arch, name), NULL, hash_alloc, hash_free, element_alloc
1.38      espie     146: };
                    147:
1.44      espie     148:
                    149:
                    150: static struct arch_member *new_arch_member(struct ar_hdr *, const char *);
                    151: static TIMESTAMP mtime_of_member(struct arch_member *);
                    152: static long field2long(const char *, size_t);
                    153: static Arch *read_archive(const char *, const char *);
1.35      espie     154:
1.16      espie     155: #ifdef CLEANUP
1.44      espie     156: static void ArchFree(Arch *);
1.16      espie     157: #endif
1.45      espie     158: static TIMESTAMP ArchMTimeMember(const char *, const char *, bool);
1.44      espie     159: static FILE *ArchFindMember(const char *, const char *, struct ar_hdr *, const char *);
                    160: static void ArchTouch(const char *, const char *);
1.7       niklas    161: #if defined(__svr4__) || defined(__SVR4) || \
1.51      matthieu  162:     (defined(__OpenBSD__) && defined(__ELF__))
1.6       briggs    163: #define SVR4ARCHIVES
1.40      espie     164: #endif
1.70      espie     165: static bool parse_archive(Buffer, const char **, Lst, SymTable *);
                    166: static void add_archive_node(Lst, const char *);
1.40      espie     167:
                    168: struct SVR4namelist {
1.70      espie     169:        char *fnametab;         /* Extended name table strings */
                    170:        size_t fnamesize;       /* Size of the string table */
1.40      espie     171: };
                    172:
1.73    ! deraadt   173: #ifdef SVR4ARCHIVES
1.40      espie     174: static const char *svr4list = "Archive list";
                    175:
1.54      espie     176: static char *ArchSVR4Entry(struct SVR4namelist *, const char *, size_t, FILE *);
1.73    ! deraadt   177: #endif
1.1       deraadt   178:
1.35      espie     179: static struct arch_member *
1.54      espie     180: new_arch_member(struct ar_hdr *hdr, const char *name)
1.35      espie     181: {
1.64      espie     182:        const char *end = NULL;
                    183:        struct arch_member *n;
1.35      espie     184:
1.64      espie     185:        n = ohash_create_entry(&members_info, name, &end);
                    186:        /* XXX ar entries are NOT null terminated.      */
                    187:        memcpy(n->date, &(hdr->ar_date), AR_DATE_SIZE);
                    188:        n->date[AR_DATE_SIZE] = '\0';
                    189:        /* Don't compute mtime before it is needed. */
                    190:        ts_set_out_of_date(n->mtime);
                    191:        return n;
1.35      espie     192: }
                    193:
                    194: static TIMESTAMP
1.54      espie     195: mtime_of_member(struct arch_member *m)
1.35      espie     196: {
1.64      espie     197:        if (is_out_of_date(m->mtime))
1.69      espie     198:                ts_set_from_time_t((time_t) strtol(m->date, NULL, 10),
1.64      espie     199:                    m->mtime);
                    200:        return m->mtime;
1.35      espie     201: }
                    202:
1.16      espie     203: #ifdef CLEANUP
1.1       deraadt   204: static void
1.54      espie     205: ArchFree(Arch *a)
1.1       deraadt   206: {
1.64      espie     207:        /* Free memory from hash entries */
1.65      espie     208:        free_hash(&a->members);
1.64      espie     209:        free(a);
1.1       deraadt   210: }
1.16      espie     211: #endif
1.9       millert   212:
1.70      espie     213: bool
                    214: Arch_ParseArchive(const char **line, Lst nodes, SymTable *ctxt)
                    215: {
                    216:        bool result;
                    217:        BUFFER expand;
1.1       deraadt   218:
1.70      espie     219:        Buf_Init(&expand, MAKE_BSIZE);
                    220:        result = parse_archive(&expand, line, nodes, ctxt);
                    221:        Buf_Destroy(&expand);
                    222:        return result;
                    223: }
                    224:
                    225: static void
                    226: add_archive_node(Lst nodes, const char *name)
                    227: {
                    228:        GNode *gn;
1.1       deraadt   229:
1.70      espie     230:        gn = Targ_FindNode(name, TARG_CREATE);
                    231:        gn->type |= OP_ARCHV;
                    232:        Lst_AtEnd(nodes, gn);
                    233: }
1.64      espie     234:
1.70      espie     235: static bool
                    236: parse_archive(Buffer expand, const char **linePtr, Lst nodeLst, SymTable *ctxt)
                    237: {
                    238:        const char *cp;         /* Pointer into line */
                    239:        const char *lib;        /* Library-part of specification */
                    240:        const char *elib;
                    241:        const char *member;     /* Member-part of specification */
                    242:        const char *emember;
                    243:        bool subst_lib;
1.64      espie     244:
1.70      espie     245:        /* figure out the library name part */
                    246:        lib = *linePtr;
                    247:        subst_lib = false;
1.64      espie     248:
1.70      espie     249:        for (cp = lib; *cp != '(' && *cp != '\0';) {
1.64      espie     250:                if (*cp == '$') {
                    251:                        if (!Var_ParseSkip(&cp, ctxt))
                    252:                                return false;
1.70      espie     253:                        subst_lib = true;
1.64      espie     254:                } else
                    255:                        cp++;
                    256:        }
                    257:
1.70      espie     258:        elib = cp;
                    259:        if (subst_lib) {
                    260:                lib = Var_Substi(lib, elib, ctxt, true);
                    261:                elib = lib + strlen(lib);
                    262:        }
1.64      espie     263:
1.70      espie     264:        cp++;
                    265:        /* iterate on members, that may be separated by spaces */
1.64      espie     266:        for (;;) {
                    267:                /* First skip to the start of the member's name, mark that
                    268:                 * place and skip to the end of it (either white-space or
                    269:                 * a close paren).  */
1.70      espie     270:                bool subst_member = false;
1.64      espie     271:
                    272:                while (isspace(*cp))
                    273:                        cp++;
1.70      espie     274:                member = cp;
1.64      espie     275:                while (*cp != '\0' && *cp != ')' && !isspace(*cp)) {
                    276:                        if (*cp == '$') {
                    277:                                if (!Var_ParseSkip(&cp, ctxt))
                    278:                                        return false;
1.70      espie     279:                                subst_member = true;
1.64      espie     280:                        } else
                    281:                                cp++;
                    282:                }
                    283:
                    284:                /* If the specification ends without a closing parenthesis,
                    285:                 * chances are there's something wrong (like a missing
                    286:                 * backslash), so it's better to return failure than allow such
                    287:                 * things to happen.  */
                    288:                if (*cp == '\0') {
                    289:                        printf("No closing parenthesis in archive specification\n");
                    290:                        return false;
                    291:                }
1.1       deraadt   292:
1.64      espie     293:                /* If we didn't move anywhere, we must be done.  */
1.70      espie     294:                if (cp == member)
1.64      espie     295:                        break;
1.1       deraadt   296:
1.70      espie     297:                emember = cp;
1.1       deraadt   298:
1.64      espie     299:                /* XXX: This should be taken care of intelligently by
                    300:                 * SuffExpandChildren, both for the archive and the member
                    301:                 * portions.  */
                    302:
                    303:                /* If member contains variables, try and substitute for them.
                    304:                 * This will slow down archive specs with dynamic sources, of
                    305:                 * course, since we'll be (non-)substituting them three times,
                    306:                 * but them's the breaks -- we need to do this since
                    307:                 * SuffExpandChildren calls us, otherwise we could assume the
                    308:                 * thing would be taken care of later.  */
1.70      espie     309:                if (subst_member) {
                    310:                        const char *oldMemberName = member;
                    311:                        const char *result;
1.64      espie     312:
1.70      espie     313:                        member = Var_Substi(member, emember, ctxt, true);
1.64      espie     314:
                    315:                        /* Now form an archive spec and recurse to deal with
                    316:                         * nested variables and multi-word variable values....
                    317:                         * The results are just placed at the end of the
                    318:                         * nodeLst we're returning.  */
1.70      espie     319:                        Buf_Addi(expand, lib, elib);
                    320:                        Buf_AddChar(expand, '(');
                    321:                        Buf_AddString(expand, member);
                    322:                        Buf_AddChar(expand, ')');
                    323:                        result = Buf_Retrieve(expand);
                    324:
                    325:                        if (strchr(member, '$') &&
                    326:                            memcmp(member, oldMemberName,
                    327:                                emember - oldMemberName) == 0) {
1.64      espie     328:                                /* Must contain dynamic sources, so we can't
1.70      espie     329:                                 * deal with it now.  let SuffExpandChildren
                    330:                                 * handle it later  */
                    331:                                add_archive_node(nodeLst, result);
                    332:                        } else if (!Arch_ParseArchive(&result, nodeLst, ctxt))
1.64      espie     333:                                return false;
1.70      espie     334:                        Buf_Reset(expand);
                    335:                } else if (Dir_HasWildcardsi(member, emember)) {
                    336:                        LIST  members;
                    337:                        char  *m;
1.64      espie     338:
                    339:                        Lst_Init(&members);
                    340:
1.70      espie     341:                        Dir_Expandi(member, emember, defaultPath, &members);
                    342:                        while ((m = (char *)Lst_DeQueue(&members)) != NULL) {
                    343:                                Buf_Addi(expand, lib, elib);
                    344:                                Buf_AddChar(expand, '(');
                    345:                                Buf_AddString(expand, m);
                    346:                                Buf_AddChar(expand, ')');
                    347:                                free(m);
                    348:                                add_archive_node(nodeLst, Buf_Retrieve(expand));
                    349:                                Buf_Reset(expand);
1.64      espie     350:                        }
1.1       deraadt   351:                } else {
1.70      espie     352:                        Buf_Addi(expand, lib, elib);
                    353:                        Buf_AddChar(expand, '(');
                    354:                        Buf_Addi(expand, member, emember);
                    355:                        Buf_AddChar(expand, ')');
                    356:                        add_archive_node(nodeLst, Buf_Retrieve(expand));
                    357:                        Buf_Reset(expand);
                    358:                }
                    359:                if (subst_member)
                    360:                        free((char *)member);
                    361:
                    362:        }
                    363:
                    364:        if (subst_lib)
                    365:                free((char *)lib);
1.64      espie     366:
                    367:        /* We promised the pointer would be set up at the next non-space, so
                    368:         * we must advance cp there before setting *linePtr... (note that on
                    369:         * entrance to the loop, cp is guaranteed to point at a ')') */
                    370:        do {
                    371:                cp++;
                    372:        } while (isspace(*cp));
1.1       deraadt   373:
1.64      espie     374:        *linePtr = cp;
                    375:        return true;
1.1       deraadt   376: }
                    377:
1.44      espie     378: /* Helper function: ar fields are not null terminated. */
1.41      espie     379: static long
1.54      espie     380: field2long(const char *field, size_t length)
1.41      espie     381: {
1.64      espie     382:        static char enough[32];
1.41      espie     383:
1.64      espie     384:        assert(length < sizeof(enough));
                    385:        memcpy(enough, field, length);
                    386:        enough[length] = '\0';
                    387:        return strtol(enough, NULL, 10);
1.41      espie     388: }
                    389:
1.38      espie     390: static Arch *
1.54      espie     391: read_archive(const char *archive, const char *earchive)
1.1       deraadt   392: {
1.70      espie     393:        FILE *arch;       /* Stream to archive */
1.64      espie     394:        char magic[SARMAG];
                    395:        Arch *ar;
                    396:        struct SVR4namelist list;
1.40      espie     397:
1.64      espie     398:        list.fnametab = NULL;
1.35      espie     399:
1.64      espie     400:        /* When we encounter an archive for the first time, we read its
                    401:         * whole contents, to place it in the cache.  */
                    402:        arch = fopen(archive, "r");
                    403:        if (arch == NULL)
                    404:                return NULL;
1.9       millert   405:
1.64      espie     406:        /* Make sure this is an archive we can handle.  */
                    407:        if ((fread(magic, SARMAG, 1, arch) != 1) ||
                    408:            (strncmp(magic, ARMAG, SARMAG) != 0)) {
                    409:                fclose(arch);
                    410:                return NULL;
                    411:        }
1.1       deraadt   412:
1.64      espie     413:        ar = ohash_create_entry(&arch_info, archive, &earchive);
                    414:        ohash_init(&ar->members, 8, &members_info);
1.38      espie     415:
1.64      espie     416:        for (;;) {
                    417:                size_t n;
1.70      espie     418:                struct ar_hdr arHeader; /* Archive-member header */
                    419:                off_t size;             /* Size of archive member */
1.64      espie     420:                char buffer[PATH_MAX];
1.70      espie     421:                char *memberName;       /* Current member name while hashing. */
1.64      espie     422:                char *cp;
1.41      espie     423:
1.64      espie     424:                memberName = buffer;
                    425:                n = fread(&arHeader, 1, sizeof(struct ar_hdr), arch);
1.41      espie     426:
1.64      espie     427:                /*  Whole archive read ok.  */
                    428:                if (n == 0 && feof(arch)) {
                    429:                        efree(list.fnametab);
                    430:                        fclose(arch);
                    431:                        return ar;
                    432:                }
                    433:                if (n < sizeof(struct ar_hdr))
                    434:                        break;
1.40      espie     435:
1.69      espie     436:                if (memcmp(arHeader.ar_fmag, ARFMAG, sizeof(arHeader.ar_fmag))
1.64      espie     437:                    != 0) {
1.70      espie     438:                        /* header is bogus.  */
1.64      espie     439:                        break;
                    440:                } else {
                    441:                        /* We need to advance the stream's pointer to the start
                    442:                         * of the next header.  Records are padded with
                    443:                         * newlines to an even-byte boundary, so we need to
                    444:                         * extract the size of the record and round it up
                    445:                         * during the seek.  */
1.69      espie     446:                        size = (off_t) field2long(arHeader.ar_size,
1.64      espie     447:                            sizeof(arHeader.ar_size));
                    448:
1.69      espie     449:                        (void)memcpy(memberName, arHeader.ar_name,
1.64      espie     450:                            AR_NAME_SIZE);
                    451:                        /* Find real end of name (strip extranous ' ')  */
                    452:                        for (cp = memberName + AR_NAME_SIZE - 1; *cp == ' ';)
                    453:                                cp--;
                    454:                        cp[1] = '\0';
1.1       deraadt   455:
1.6       briggs    456: #ifdef SVR4ARCHIVES
1.64      espie     457:                        /* SVR4 names are slash terminated.  Also svr4 extended
                    458:                         * AR format.
                    459:                         */
                    460:                        if (memberName[0] == '/') {
                    461:                                /* SVR4 magic mode.  */
1.69      espie     462:                                memberName = ArchSVR4Entry(&list, memberName,
1.64      espie     463:                                    size, arch);
1.70      espie     464:                                if (memberName == NULL)
                    465:                                        /* Invalid data */
1.64      espie     466:                                        break;
                    467:                                else if (memberName == svr4list)
1.70      espie     468:                                        /* List of files entry */
1.64      espie     469:                                        continue;
                    470:                                /* Got the entry.  */
                    471:                                /* XXX this assumes further processing, such as
                    472:                                 * AR_EFMT1, also applies to SVR4ARCHIVES.  */
                    473:                        }
                    474:                        else {
                    475:                                if (cp[0] == '/')
                    476:                                        cp[0] = '\0';
                    477:                        }
1.3       niklas    478: #endif
                    479:
1.1       deraadt   480: #ifdef AR_EFMT1
1.64      espie     481:                        /* BSD 4.4 extended AR format: #1/<namelen>, with name
                    482:                         * as the first <namelen> bytes of the file.  */
1.69      espie     483:                        if (memcmp(memberName, AR_EFMT1, sizeof(AR_EFMT1) - 1)
1.64      espie     484:                            == 0 && isdigit(memberName[sizeof(AR_EFMT1) - 1])) {
                    485:
1.69      espie     486:                                int elen = atoi(memberName +
1.64      espie     487:                                    sizeof(AR_EFMT1)-1);
                    488:
                    489:                                if (elen <= 0 || elen >= PATH_MAX)
                    490:                                        break;
                    491:                                memberName = buffer;
                    492:                                if (fread(memberName, elen, 1, arch) != 1)
                    493:                                        break;
                    494:                                memberName[elen] = '\0';
                    495:                                if (fseek(arch, -elen, SEEK_CUR) != 0)
                    496:                                        break;
                    497:                                if (DEBUG(ARCH) || DEBUG(MAKE))
1.69      espie     498:                                        printf("ArchStat: Extended format entry for %s\n",
1.64      espie     499:                                            memberName);
                    500:                        }
                    501: #endif
                    502:
                    503:                        ohash_insert(&ar->members,
                    504:                            ohash_qlookup(&ar->members, memberName),
                    505:                                new_arch_member(&arHeader, memberName));
                    506:                }
                    507:                if (fseek(arch, (size + 1) & ~1, SEEK_CUR) != 0)
1.41      espie     508:                        break;
1.1       deraadt   509:        }
                    510:
1.64      espie     511:        fclose(arch);
                    512:        ohash_delete(&ar->members);
                    513:        efree(list.fnametab);
                    514:        free(ar);
                    515:        return NULL;
1.38      espie     516: }
                    517:
                    518: /*-
                    519:  *-----------------------------------------------------------------------
                    520:  * ArchMTimeMember --
                    521:  *     Find the modification time of an archive's member, given the
                    522:  *     path to the archive and the path to the desired member.
                    523:  *
                    524:  * Results:
1.44      espie     525:  *     The archive member's modification time, or OUT_OF_DATE if member
                    526:  *     was not found (convenient, so that missing members are always
1.38      espie     527:  *     out of date).
                    528:  *
                    529:  * Side Effects:
1.45      espie     530:  *     Cache the whole archive contents if hash is true.
1.38      espie     531:  *-----------------------------------------------------------------------
                    532:  */
                    533: static TIMESTAMP
1.54      espie     534: ArchMTimeMember(
1.70      espie     535:     const char *archive,       /* Path to the archive */
                    536:     const char *member,        /* Name of member. If it is a path, only the
                    537:                                 * last component is used. */
                    538:     bool hash)                 /* true if archive should be hashed if not
                    539:                                 * already so. */
1.38      espie     540: {
1.70      espie     541:        FILE *arch;             /* Stream to archive */
                    542:        Arch *ar;               /* Archive descriptor */
1.64      espie     543:        unsigned int slot;      /* Place of archive in the archives hash */
                    544:        const char *end = NULL;
                    545:        const char *cp;
                    546:        TIMESTAMP result;
                    547:
                    548:        ts_set_out_of_date(result);
                    549:        /* Because of space constraints and similar things, files are archived
                    550:         * using their final path components, not the entire thing, so we need
                    551:         * to point 'member' to the final component, if there is one, to make
                    552:         * the comparisons easier...  */
                    553:        cp = strrchr(member, '/');
                    554:        if (cp != NULL)
                    555:                member = cp + 1;
                    556:
                    557:        /* Try to find archive in cache.  */
                    558:        slot = ohash_qlookupi(&archives, archive, &end);
                    559:        ar = ohash_find(&archives, slot);
                    560:
                    561:        /* If not found, get it now.  */
                    562:        if (ar == NULL) {
                    563:                if (!hash) {
1.67      espie     564:                        /* Quick path:  no need to hash the whole archive, just
                    565:                         * use ArchFindMember to get the member's header and
                    566:                         * close the stream again.  */
                    567:                        struct ar_hdr arHeader;
                    568:
                    569:                        arch = ArchFindMember(archive, member, &arHeader, "r");
                    570:
                    571:                        if (arch != NULL) {
                    572:                                fclose(arch);
1.69      espie     573:                                ts_set_from_time_t(
                    574:                                    (time_t)strtol(arHeader.ar_date, NULL, 10),
1.67      espie     575:                                    result);
                    576:                        }
                    577:                        return result;
1.64      espie     578:                }
                    579:                ar = read_archive(archive, end);
                    580:                if (ar != NULL)
                    581:                        ohash_insert(&archives, slot, ar);
                    582:        }
1.38      espie     583:
1.64      espie     584:        /* If archive was found, get entry we seek.  */
                    585:        if (ar != NULL) {
                    586:                struct arch_member *he;
                    587:                end = NULL;
1.38      espie     588:
1.70      espie     589:                he = ohash_find(&ar->members, ohash_qlookupi(&ar->members,
                    590:                    member, &end));
1.38      espie     591:                if (he != NULL)
1.64      espie     592:                        return mtime_of_member(he);
                    593:                else {
                    594:                        if ((size_t)(end - member) > AR_NAME_SIZE) {
                    595:                                /* Try truncated name.  */
                    596:                                end = member + AR_NAME_SIZE;
                    597:                                he = ohash_find(&ar->members,
                    598:                                    ohash_qlookupi(&ar->members, member, &end));
                    599:                                if (he != NULL)
                    600:                                        return mtime_of_member(he);
                    601:                        }
                    602:                }
1.38      espie     603:        }
1.64      espie     604:        return result;
1.1       deraadt   605: }
1.6       briggs    606:
                    607: #ifdef SVR4ARCHIVES
                    608: /*-
                    609:  *-----------------------------------------------------------------------
                    610:  * ArchSVR4Entry --
                    611:  *     Parse an SVR4 style entry that begins with a slash.
                    612:  *     If it is "//", then load the table of filenames
                    613:  *     If it is "/<offset>", then try to substitute the long file name
                    614:  *     from offset of a table previously read.
                    615:  *
                    616:  * Results:
1.40      espie     617:  *     svr4list: just read a list of names
1.50      mpech     618:  *     NULL:     error occurred
1.40      espie     619:  *     extended name
1.6       briggs    620:  *
1.40      espie     621:  * Side-effect:
                    622:  *     For a list of names, store the list in l.
1.6       briggs    623:  *-----------------------------------------------------------------------
                    624:  */
1.44      espie     625:
1.40      espie     626: static char *
1.54      espie     627: ArchSVR4Entry(struct SVR4namelist *l, const char *name, size_t size, FILE *arch)
1.6       briggs    628: {
1.40      espie     629: #define ARLONGNAMES1 "/"
                    630: #define ARLONGNAMES2 "ARFILENAMES"
1.64      espie     631:        size_t entry;
                    632:        char *ptr, *eptr;
1.6       briggs    633:
1.64      espie     634:        assert(name[0] == '/');
                    635:        name++;
                    636:        /* First comes a table of archive names, to be used by subsequent
                    637:         * calls.  */
                    638:        if (memcmp(name, ARLONGNAMES1, sizeof(ARLONGNAMES1) - 1) == 0 ||
                    639:            memcmp(name, ARLONGNAMES2, sizeof(ARLONGNAMES2) - 1) == 0) {
                    640:
                    641:                if (l->fnametab != NULL) {
                    642:                        if (DEBUG(ARCH))
                    643:                                printf("Attempted to redefine an SVR4 name table\n");
                    644:                        return NULL;
                    645:                }
1.6       briggs    646:
1.64      espie     647:                l->fnametab = emalloc(size);
                    648:                l->fnamesize = size;
1.6       briggs    649:
1.64      espie     650:                if (fread(l->fnametab, size, 1, arch) != 1) {
                    651:                        if (DEBUG(ARCH))
                    652:                                printf("Reading an SVR4 name table failed\n");
                    653:                        return NULL;
                    654:                }
                    655:
                    656:                eptr = l->fnametab + size;
                    657:                for (entry = 0, ptr = l->fnametab; ptr < eptr; ptr++)
                    658:                        switch (*ptr) {
                    659:                        case '/':
                    660:                                entry++;
                    661:                                *ptr = '\0';
                    662:                                break;
                    663:
                    664:                        case '\n':
                    665:                                break;
                    666:
                    667:                        default:
                    668:                                break;
                    669:                        }
                    670:                if (DEBUG(ARCH))
                    671:                        printf("Found svr4 archive name table with %lu entries\n",
                    672:                            (u_long)entry);
                    673:                return (char *)svr4list;
                    674:        }
                    675:        /* Then the names themselves are given as offsets in this table.  */
                    676:        if (*name == ' ' || *name == '\0')
                    677:                return NULL;
                    678:
                    679:        entry = (size_t) strtol(name, &eptr, 0);
                    680:        if ((*eptr != ' ' && *eptr != '\0') || eptr == name) {
                    681:                if (DEBUG(ARCH))
                    682:                        printf("Could not parse SVR4 name /%s\n", name);
                    683:                return NULL;
                    684:        }
                    685:        if (entry >= l->fnamesize) {
                    686:                if (DEBUG(ARCH))
                    687:                        printf("SVR4 entry offset /%s is greater than %lu\n",
1.70      espie     688:                            name, (u_long)l->fnamesize);
1.64      espie     689:                return NULL;
1.6       briggs    690:        }
1.44      espie     691:
1.40      espie     692:        if (DEBUG(ARCH))
1.64      espie     693:                printf("Replaced /%s with %s\n", name, l->fnametab + entry);
1.6       briggs    694:
1.64      espie     695:        return l->fnametab + entry;
1.6       briggs    696: }
                    697: #endif
                    698:
1.1       deraadt   699:
                    700: /*-
                    701:  *-----------------------------------------------------------------------
                    702:  * ArchFindMember --
                    703:  *     Locate a member of an archive, given the path of the archive and
                    704:  *     the path of the desired member. If the archive is to be modified,
                    705:  *     the mode should be "r+", if not, it should be "r".
                    706:  *
                    707:  * Results:
1.42      espie     708:  *     A FILE *, opened for reading and writing, positioned right after
1.44      espie     709:  *     the member's header, or NULL if the member was nonexistent.
1.1       deraadt   710:  *
                    711:  * Side Effects:
1.54      espie     712:  *     Fill the struct ar_hdr pointed by arHeaderPtr.
1.1       deraadt   713:  *-----------------------------------------------------------------------
                    714:  */
                    715: static FILE *
1.54      espie     716: ArchFindMember(
                    717:     const char   *archive,   /* Path to the archive */
                    718:     const char   *member,    /* Name of member. If it is a path, only the
1.1       deraadt   719:                               * last component is used. */
1.54      espie     720:     struct ar_hdr *arHeaderPtr,/* Pointer to header structure to be filled in */
                    721:     const char   *mode)      /* mode for opening the stream */
1.1       deraadt   722: {
1.70      espie     723:        FILE *    arch;       /* Stream to archive */
                    724:        char      *cp;
                    725:        char      magic[SARMAG];
                    726:        size_t    length;
1.64      espie     727:        struct SVR4namelist list;
1.42      espie     728:
1.64      espie     729:        list.fnametab = NULL;
1.42      espie     730:
1.64      espie     731:        arch = fopen(archive, mode);
                    732:        if (arch == NULL)
                    733:                return NULL;
1.9       millert   734:
1.64      espie     735:        /* Make sure this is an archive we can handle.  */
                    736:        if (fread(magic, SARMAG, 1, arch) != 1 ||
                    737:            strncmp(magic, ARMAG, SARMAG) != 0) {
                    738:                fclose(arch);
                    739:                return NULL;
                    740:        }
1.1       deraadt   741:
1.64      espie     742:        /* Because of space constraints and similar things, files are archived
                    743:         * using their final path components, not the entire thing, so we need
                    744:         * to point 'member' to the final component, if there is one, to make
                    745:         * the comparisons easier...  */
                    746:        cp = strrchr(member, '/');
                    747:        if (cp != NULL)
                    748:                member = cp + 1;
                    749:
                    750:        length = strlen(member);
                    751:        if (length >= AR_NAME_SIZE)
                    752:                length = AR_NAME_SIZE;
                    753:
                    754:        /* Error handling is simpler than for read_archive, since we just
                    755:         * look for a given member.  */
                    756:        while (fread(arHeaderPtr, sizeof(struct ar_hdr), 1, arch) == 1) {
1.70      espie     757:                off_t size;       /* Size of archive member */
1.64      espie     758:                char *memberName;
                    759:
1.69      espie     760:                if (memcmp(arHeaderPtr->ar_fmag, ARFMAG,
1.64      espie     761:                    sizeof(arHeaderPtr->ar_fmag) ) != 0)
                    762:                         /* The header is bogus, so the archive is bad.  */
                    763:                         break;
                    764:
                    765:                memberName = arHeaderPtr->ar_name;
                    766:                if (memcmp(member, memberName, length) == 0) {
                    767:                        /* If the member's name doesn't take up the entire
                    768:                         * 'name' field, we have to be careful of matching
                    769:                         * prefixes. Names are space- padded to the right, so
                    770:                         * if the character in 'name' at the end of the matched
                    771:                         * string is anything but a space, this isn't the
                    772:                         * member we sought.  */
1.42      espie     773: #ifdef SVR4ARCHIVES
1.69      espie     774:                        if (length < sizeof(arHeaderPtr->ar_name) &&
1.64      espie     775:                            memberName[length] == '/')
                    776:                                length++;
1.42      espie     777: #endif
1.64      espie     778:                        if (length == sizeof(arHeaderPtr->ar_name) ||
                    779:                            memberName[length] == ' ') {
                    780:                                efree(list.fnametab);
                    781:                                return arch;
                    782:                        }
                    783:                }
1.42      espie     784:
1.69      espie     785:                size = (off_t) field2long(arHeaderPtr->ar_size,
1.64      espie     786:                    sizeof(arHeaderPtr->ar_size));
1.9       millert   787:
1.42      espie     788: #ifdef SVR4ARCHIVES
1.67      espie     789:                /* svr4 names are slash terminated. Also svr4 extended AR
                    790:                 * format.
                    791:                 */
                    792:                if (memberName[0] == '/') {
                    793:                        /* svr4 magic mode.  */
1.70      espie     794:                        memberName = ArchSVR4Entry(&list, arHeaderPtr->ar_name,
                    795:                            size, arch);
                    796:                        if (memberName == NULL)
                    797:                                /* Invalid data */
1.67      espie     798:                                break;
                    799:                        else if (memberName == svr4list)
1.70      espie     800:                                /* List of files entry */
1.67      espie     801:                                continue;
                    802:                        /* Got the entry.  */
                    803:                        if (strcmp(memberName, member) == 0) {
                    804:                                efree(list.fnametab);
                    805:                                return arch;
                    806:                        }
                    807:                }
1.42      espie     808: #endif
                    809:
1.1       deraadt   810: #ifdef AR_EFMT1
1.64      espie     811:                /* BSD 4.4 extended AR format: #1/<namelen>, with name as the
                    812:                 * first <namelen> bytes of the file.  */
                    813:                if (memcmp(memberName, AR_EFMT1, sizeof(AR_EFMT1) - 1) == 0 &&
                    814:                    isdigit(memberName[sizeof(AR_EFMT1) - 1])) {
                    815:                        char ename[PATH_MAX];
                    816:
                    817:                        int elength = atoi(memberName + sizeof(AR_EFMT1)-1);
                    818:
                    819:                        if (elength <= 0 || elength >= PATH_MAX)
                    820:                                break;
                    821:                        if (fread(ename, elength, 1, arch) != 1)
                    822:                                break;
                    823:                        if (fseek(arch, -elength, SEEK_CUR) != 0)
                    824:                                break;
                    825:                        ename[elength] = '\0';
                    826:                        if (DEBUG(ARCH) || DEBUG(MAKE))
                    827:                                printf("ArchFind: Extended format entry for %s\n", ename);
                    828:                        /* Found as extended name.      */
                    829:                        if (strcmp(ename, member) == 0) {
                    830:                                efree(list.fnametab);
                    831:                                return arch;
                    832:                        }
1.1       deraadt   833:                }
1.64      espie     834: #endif
                    835:                /* This isn't the member we're after, so we need to advance the
                    836:                 * stream's pointer to the start of the next header.  */
                    837:                if (fseek(arch, (size + 1) & ~1, SEEK_CUR) != 0)
                    838:                        break;
1.42      espie     839:        }
1.1       deraadt   840:
1.64      espie     841:        /* We did not find the member, or we ran into an error while reading
                    842:         * the archive.  */
1.42      espie     843: #ifdef SVRARCHIVES
1.64      espie     844:        efree(list.fnametab);
1.42      espie     845: #endif
1.64      espie     846:        fclose(arch);
                    847:        return NULL;
1.1       deraadt   848: }
                    849:
1.39      espie     850: static void
1.54      espie     851: ArchTouch(const char *archive, const char *member)
1.39      espie     852: {
1.67      espie     853:        FILE *arch;
                    854:        struct ar_hdr arHeader;
1.39      espie     855:
1.64      espie     856:        arch = ArchFindMember(archive, member, &arHeader, "r+");
                    857:        if (arch != NULL) {
1.70      espie     858:                snprintf(arHeader.ar_date, sizeof(arHeader.ar_date),
                    859:                    "%-12ld", (long) timestamp2time_t(now));
1.64      espie     860:                if (fseek(arch, -sizeof(struct ar_hdr), SEEK_CUR) == 0)
                    861:                        (void)fwrite(&arHeader, sizeof(struct ar_hdr), 1, arch);
                    862:                fclose(arch);
                    863:        }
1.39      espie     864: }
                    865:
1.45      espie     866: /*
1.39      espie     867:  * Side Effects:
1.1       deraadt   868:  *     The modification time of the entire archive is also changed.
                    869:  *     For a library, this could necessitate the re-ranlib'ing of the
                    870:  *     whole thing.
                    871:  */
                    872: void
1.54      espie     873: Arch_Touch(GNode *gn)
1.1       deraadt   874: {
1.64      espie     875:        ArchTouch(Varq_Value(ARCHIVE_INDEX, gn), Varq_Value(MEMBER_INDEX, gn));
1.1       deraadt   876: }
                    877:
1.47      deraadt   878: /*ARGSUSED*/
1.1       deraadt   879: void
1.54      espie     880: Arch_TouchLib(GNode *gn UNUSED)
1.49      espie     881:                      /* ^          Non RANLIBMAG does nothing with it */
1.1       deraadt   882: {
1.3       niklas    883: #ifdef RANLIBMAG
1.64      espie     884:        if (gn->path != NULL) {
                    885:                ArchTouch(gn->path, RANLIBMAG);
                    886:                set_times(gn->path);
1.70      espie     887:        }
1.3       niklas    888: #endif
1.1       deraadt   889: }
                    890:
1.34      espie     891: TIMESTAMP
1.54      espie     892: Arch_MTime(GNode *gn)
1.1       deraadt   893: {
1.64      espie     894:        gn->mtime = ArchMTimeMember(Varq_Value(ARCHIVE_INDEX, gn),
                    895:             Varq_Value(MEMBER_INDEX, gn), true);
1.1       deraadt   896:
1.64      espie     897:        return gn->mtime;
1.1       deraadt   898: }
                    899:
1.36      espie     900: TIMESTAMP
1.54      espie     901: Arch_MemMTime(GNode *gn)
1.1       deraadt   902: {
1.64      espie     903:        LstNode ln;
1.1       deraadt   904:
1.64      espie     905:        for (ln = Lst_First(&gn->parents); ln != NULL; ln = Lst_Adv(ln)) {
                    906:                GNode *pgn;
                    907:                char *nameStart;
                    908:                char *nameEnd;
                    909:
                    910:                pgn = (GNode *)Lst_Datum(ln);
                    911:
                    912:                if (pgn->type & OP_ARCHV) {
                    913:                        /* If the parent is an archive specification and is
                    914:                         * being made and its member's name matches the name of
                    915:                         * the node we were given, record the modification time
                    916:                         * of the parent in the child. We keep searching its
                    917:                         * parents in case some other parent requires this
                    918:                         * child to exist...  */
                    919:                        if ((nameStart = strchr(pgn->name, '(') ) != NULL) {
                    920:                                nameStart++;
                    921:                                nameEnd = strchr(nameStart, ')');
                    922:                        } else
                    923:                                nameEnd = NULL;
                    924:
                    925:                        if (pgn->make && nameEnd != NULL &&
1.69      espie     926:                            strncmp(nameStart, gn->name, nameEnd - nameStart)
1.64      espie     927:                            == 0 && gn->name[nameEnd-nameStart] == '\0')
                    928:                                gn->mtime = Arch_MTime(pgn);
                    929:                } else if (pgn->make) {
                    930:                        /* Something which isn't a library depends on the
                    931:                         * existence of this target, so it needs to exist.  */
                    932:                        ts_set_out_of_date(gn->mtime);
                    933:                        break;
                    934:                }
1.1       deraadt   935:        }
1.64      espie     936:        return gn->mtime;
1.1       deraadt   937: }
                    938:
1.72      espie     939: /* we assume the system knows how to find libraries */
1.1       deraadt   940: void
1.72      espie     941: Arch_FindLib(GNode *gn, Lst path UNUSED)
1.1       deraadt   942: {
1.64      espie     943:        Varq_Set(TARGET_INDEX, gn->name, gn);
1.1       deraadt   944: }
                    945:
                    946: /*-
                    947:  *-----------------------------------------------------------------------
                    948:  * Arch_LibOODate --
                    949:  *     Decide if a node with the OP_LIB attribute is out-of-date. Called
                    950:  *     from Make_OODate to make its life easier.
                    951:  *
                    952:  *     There are several ways for a library to be out-of-date that are
                    953:  *     not available to ordinary files. In addition, there are ways
                    954:  *     that are open to regular files that are not available to
                    955:  *     libraries. A library that is only used as a source is never
                    956:  *     considered out-of-date by itself. This does not preclude the
                    957:  *     library's modification time from making its parent be out-of-date.
                    958:  *     A library will be considered out-of-date for any of these reasons,
                    959:  *     given that it is a target on a dependency line somewhere:
                    960:  *         Its modification time is less than that of one of its
1.44      espie     961:  *               sources (gn->mtime < gn->cmtime).
1.1       deraadt   962:  *         Its modification time is greater than the time at which the
1.44      espie     963:  *               make began (i.e. it's been modified in the course
                    964:  *               of the make, probably by archiving).
1.1       deraadt   965:  *         The modification time of one of its sources is greater than
                    966:  *               the one of its RANLIBMAG member (i.e. its table of contents
1.44      espie     967:  *               is out-of-date). We don't compare of the archive time
1.1       deraadt   968:  *               vs. TOC time because they can be too close. In my
                    969:  *               opinion we should not bother with the TOC at all since
                    970:  *               this is used by 'ar' rules that affect the data contents
                    971:  *               of the archive, not by ranlib rules, which affect the
1.9       millert   972:  *               TOC.
1.1       deraadt   973:  *
                    974:  * Results:
1.45      espie     975:  *     true if the library is out-of-date. false otherwise.
1.1       deraadt   976:  *
                    977:  * Side Effects:
                    978:  *     The library will be hashed if it hasn't been already.
                    979:  *-----------------------------------------------------------------------
                    980:  */
1.45      espie     981: bool
1.54      espie     982: Arch_LibOODate(GNode *gn)
1.1       deraadt   983: {
1.47      deraadt   984: #ifdef RANLIBMAG
1.64      espie     985:        TIMESTAMP modTimeTOC;   /* mod time of __.SYMDEF */
1.47      deraadt   986: #endif
1.9       millert   987:
1.64      espie     988:        if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->children))
                    989:                return false;
1.69      espie     990:        if (is_strictly_before(now, gn->mtime) ||
1.64      espie     991:            is_strictly_before(gn->mtime, gn->cmtime) ||
                    992:            is_out_of_date(gn->mtime))
                    993:                return true;
1.2       deraadt   994: #ifdef RANLIBMAG
1.64      espie     995:        /* non existent libraries are always out-of-date.  */
                    996:        if (gn->path == NULL)
                    997:                return true;
                    998:        modTimeTOC = ArchMTimeMember(gn->path, RANLIBMAG, false);
1.37      espie     999:
1.64      espie    1000:        if (!is_out_of_date(modTimeTOC)) {
                   1001:                if (DEBUG(ARCH) || DEBUG(MAKE))
1.69      espie    1002:                        printf("%s modified %s...", RANLIBMAG,
1.66      espie    1003:                            time_to_string(modTimeTOC));
1.64      espie    1004:                return is_strictly_before(modTimeTOC, gn->cmtime);
                   1005:        }
                   1006:        /* A library w/o a table of contents is out-of-date.  */
1.37      espie    1007:        if (DEBUG(ARCH) || DEBUG(MAKE))
1.64      espie    1008:                printf("No t.o.c....");
                   1009:        return true;
1.2       deraadt  1010: #else
1.64      espie    1011:        return false;
1.2       deraadt  1012: #endif
1.1       deraadt  1013: }
                   1014:
                   1015: void
1.54      espie    1016: Arch_Init(void)
1.1       deraadt  1017: {
1.64      espie    1018:        ohash_init(&archives, 4, &arch_info);
1.1       deraadt  1019: }
                   1020:
1.45      espie    1021: #ifdef CLEANUP
1.1       deraadt  1022: void
1.54      espie    1023: Arch_End(void)
1.1       deraadt  1024: {
1.64      espie    1025:        Arch *e;
                   1026:        unsigned int i;
1.38      espie    1027:
1.64      espie    1028:        for (e = ohash_first(&archives, &i); e != NULL;
                   1029:            e = ohash_next(&archives, &i))
                   1030:                ArchFree(e);
                   1031:        ohash_delete(&archives);
1.45      espie    1032: }
1.16      espie    1033: #endif
1.9       millert  1034:
1.45      espie    1035: bool
1.54      espie    1036: Arch_IsLib(GNode *gn)
1.9       millert  1037: {
1.64      espie    1038:        char buf[SARMAG];
                   1039:        int fd;
                   1040:
                   1041:        if (gn->path == NULL || (fd = open(gn->path, O_RDONLY)) == -1)
                   1042:                return false;
1.9       millert  1043:
1.64      espie    1044:        if (read(fd, buf, SARMAG) != SARMAG) {
                   1045:                (void)close(fd);
                   1046:                return false;
                   1047:        }
1.9       millert  1048:
1.44      espie    1049:        (void)close(fd);
1.9       millert  1050:
1.64      espie    1051:        return memcmp(buf, ARMAG, SARMAG) == 0;
1.1       deraadt  1052: }