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

Annotation of src/usr.bin/cvs/file.c, Revision 1.207

1.207   ! tobias      1: /*     $OpenBSD: file.c,v 1.206 2008/01/10 09:37:26 tobias Exp $       */
1.1       jfb         2: /*
1.138     joris       3:  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
1.1       jfb         4:  * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
1.26      jfb         5:  * All rights reserved.
1.1       jfb         6:  *
1.26      jfb         7:  * Redistribution and use in source and binary forms, with or without
                      8:  * modification, are permitted provided that the following conditions
                      9:  * are met:
1.1       jfb        10:  *
1.26      jfb        11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
1.1       jfb        13:  * 2. The name of the author may not be used to endorse or promote products
1.26      jfb        14:  *    derived from this software without specific prior written permission.
1.1       jfb        15:  *
                     16:  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
                     17:  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                     18:  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
                     19:  * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
                     20:  * EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLUDING, BUT NOT LIMITED TO,
                     21:  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
                     22:  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                     23:  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
                     24:  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
1.26      jfb        25:  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.1       jfb        26:  */
                     27:
1.189     otto       28: #include <sys/types.h>
                     29: #include <sys/mman.h>
                     30: #include <sys/stat.h>
1.1       jfb        31:
1.189     otto       32: #include <errno.h>
                     33: #include <fcntl.h>
                     34: #include <fnmatch.h>
                     35: #include <libgen.h>
                     36: #include <string.h>
                     37: #include <unistd.h>
1.164     xsa        38:
1.197     tobias     39: #include "atomicio.h"
1.1       jfb        40: #include "cvs.h"
1.198     joris      41: #include "remote.h"
1.1       jfb        42:
1.104     xsa        43: #define CVS_IGN_STATIC 0x01    /* pattern is static, no need to glob */
1.1       jfb        44:
1.104     xsa        45: #define CVS_CHAR_ISMETA(c)     ((c == '*') || (c == '?') || (c == '['))
1.1       jfb        46:
1.196     tobias     47: extern int print_stdout;
                     48:
1.1       jfb        49: /*
                     50:  * Standard patterns to ignore.
                     51:  */
                     52: static const char *cvs_ign_std[] = {
                     53:        ".",
                     54:        "..",
                     55:        "*.o",
1.45      xsa        56:        "*.a",
1.1       jfb        57:        "*.bak",
                     58:        "*.orig",
                     59:        "*.rej",
1.45      xsa        60:        "*.old",
1.1       jfb        61:        "*.exe",
                     62:        "*.depend",
1.45      xsa        63:        "*.obj",
                     64:        "*.elc",
                     65:        "*.ln",
                     66:        "*.olb",
1.1       jfb        67:        "CVS",
                     68:        "core",
1.102     joris      69:        "cvslog*",
1.49      jfb        70:        "*.core",
1.8       jfb        71:        ".#*",
1.45      xsa        72:        "*~",
                     73:        "_$*",
                     74:        "*$",
1.1       jfb        75: };
                     76:
1.199     joris      77: char *cvs_directory_tag = NULL;
1.138     joris      78: struct ignore_head cvs_ign_pats;
                     79: struct ignore_head dir_ign_pats;
1.1       jfb        80:
1.138     joris      81: void
1.1       jfb        82: cvs_file_init(void)
                     83: {
1.183     xsa        84:        int i;
1.138     joris      85:        FILE *ifp;
1.176     otto       86:        char path[MAXPATHLEN], buf[MAXNAMLEN];
1.1       jfb        87:
                     88:        TAILQ_INIT(&cvs_ign_pats);
1.138     joris      89:        TAILQ_INIT(&dir_ign_pats);
1.4       jfb        90:
1.1       jfb        91:        /* standard patterns to ignore */
1.10      jfb        92:        for (i = 0; i < (int)(sizeof(cvs_ign_std)/sizeof(char *)); i++)
1.138     joris      93:                cvs_file_ignore(cvs_ign_std[i], &cvs_ign_pats);
1.195     tobias     94:
                     95:        if (cvs_homedir == NULL)
                     96:                return;
1.1       jfb        97:
                     98:        /* read the cvsignore file in the user's home directory, if any */
1.183     xsa        99:        (void)xsnprintf(path, MAXPATHLEN, "%s/.cvsignore", cvs_homedir);
1.61      xsa       100:
1.111     xsa       101:        ifp = fopen(path, "r");
                    102:        if (ifp == NULL) {
                    103:                if (errno != ENOENT)
                    104:                        cvs_log(LP_ERRNO,
                    105:                            "failed to open user's cvsignore file `%s'", path);
                    106:        } else {
1.138     joris     107:                while (fgets(buf, MAXNAMLEN, ifp) != NULL) {
1.203     gilles    108:                        buf[strcspn(buf, "\n")] = '\0';
                    109:                        if (buf[0] == '\0')
1.111     xsa       110:                                continue;
1.138     joris     111:
                    112:                        cvs_file_ignore(buf, &cvs_ign_pats);
1.1       jfb       113:                }
1.138     joris     114:
1.111     xsa       115:                (void)fclose(ifp);
1.1       jfb       116:        }
                    117: }
                    118:
1.138     joris     119: void
                    120: cvs_file_ignore(const char *pat, struct ignore_head *list)
1.1       jfb       121: {
                    122:        char *cp;
1.138     joris     123:        size_t len;
1.1       jfb       124:        struct cvs_ignpat *ip;
                    125:
1.136     ray       126:        ip = xmalloc(sizeof(*ip));
1.138     joris     127:        len = strlcpy(ip->ip_pat, pat, sizeof(ip->ip_pat));
                    128:        if (len >= sizeof(ip->ip_pat))
                    129:                fatal("cvs_file_ignore: truncation of pattern '%s'", pat);
1.1       jfb       130:
                    131:        /* check if we will need globbing for that pattern */
                    132:        ip->ip_flags = CVS_IGN_STATIC;
                    133:        for (cp = ip->ip_pat; *cp != '\0'; cp++) {
                    134:                if (CVS_CHAR_ISMETA(*cp)) {
                    135:                        ip->ip_flags &= ~CVS_IGN_STATIC;
                    136:                        break;
                    137:                }
                    138:        }
                    139:
1.138     joris     140:        TAILQ_INSERT_TAIL(list, ip, ip_list);
1.1       jfb       141: }
                    142:
                    143: int
1.5       jfb       144: cvs_file_chkign(const char *file)
1.1       jfb       145: {
1.23      jfb       146:        int flags;
1.1       jfb       147:        struct cvs_ignpat *ip;
                    148:
1.23      jfb       149:        flags = FNM_PERIOD;
                    150:        if (cvs_nocase)
                    151:                flags |= FNM_CASEFOLD;
                    152:
1.1       jfb       153:        TAILQ_FOREACH(ip, &cvs_ign_pats, ip_list) {
                    154:                if (ip->ip_flags & CVS_IGN_STATIC) {
1.23      jfb       155:                        if (cvs_file_cmpname(file, ip->ip_pat) == 0)
1.1       jfb       156:                                return (1);
1.38      deraadt   157:                } else if (fnmatch(ip->ip_pat, file, flags) == 0)
1.1       jfb       158:                        return (1);
                    159:        }
                    160:
1.138     joris     161:        TAILQ_FOREACH(ip, &dir_ign_pats, ip_list) {
                    162:                if (ip->ip_flags & CVS_IGN_STATIC) {
                    163:                        if (cvs_file_cmpname(file, ip->ip_pat) == 0)
                    164:                                return (1);
                    165:                } else if (fnmatch(ip->ip_pat, file, flags) == 0)
                    166:                        return (1);
                    167:        }
                    168:
1.1       jfb       169:        return (0);
                    170: }
                    171:
1.138     joris     172: void
                    173: cvs_file_run(int argc, char **argv, struct cvs_recursion *cr)
1.1       jfb       174: {
1.138     joris     175:        int i;
                    176:        struct cvs_flisthead fl;
1.84      joris     177:
1.138     joris     178:        TAILQ_INIT(&fl);
1.85      joris     179:
1.138     joris     180:        for (i = 0; i < argc; i++)
1.199     joris     181:                cvs_file_get(argv[i], 1, &fl);
1.1       jfb       182:
1.138     joris     183:        cvs_file_walklist(&fl, cr);
                    184:        cvs_file_freelist(&fl);
1.3       jfb       185: }
                    186:
1.138     joris     187: struct cvs_filelist *
1.199     joris     188: cvs_file_get(const char *name, int check_dir_tag, struct cvs_flisthead *fl)
1.138     joris     189: {
                    190:        const char *p;
                    191:        struct cvs_filelist *l;
1.3       jfb       192:
1.138     joris     193:        for (p = name; p[0] == '.' && p[1] == '/';)
                    194:                p += 2;
1.35      jfb       195:
1.138     joris     196:        TAILQ_FOREACH(l, fl, flist)
                    197:                if (!strcmp(l->file_path, p))
                    198:                        return (l);
1.35      jfb       199:
1.138     joris     200:        l = (struct cvs_filelist *)xmalloc(sizeof(*l));
                    201:        l->file_path = xstrdup(p);
1.199     joris     202:        l->check_dir_tag = check_dir_tag;
1.35      jfb       203:
1.138     joris     204:        TAILQ_INSERT_TAIL(fl, l, flist);
                    205:        return (l);
1.35      jfb       206: }
                    207:
1.138     joris     208: struct cvs_file *
                    209: cvs_file_get_cf(const char *d, const char *f, int fd, int type)
                    210: {
                    211:        struct cvs_file *cf;
1.176     otto      212:        char *p, rpath[MAXPATHLEN];
1.3       jfb       213:
1.183     xsa       214:        (void)xsnprintf(rpath, MAXPATHLEN, "%s/%s", d, f);
1.138     joris     215:
                    216:        for (p = rpath; p[0] == '.' && p[1] == '/';)
                    217:                p += 2;
                    218:
1.207   ! tobias    219:        cf = (struct cvs_file *)xcalloc(1, sizeof(*cf));
1.138     joris     220:
                    221:        cf->file_name = xstrdup(f);
                    222:        cf->file_wd = xstrdup(d);
                    223:        cf->file_path = xstrdup(p);
                    224:        cf->fd = fd;
                    225:        cf->repo_fd = -1;
                    226:        cf->file_type = type;
                    227:        cf->file_status = cf->file_flags = 0;
                    228:        cf->file_ent = NULL;
1.68      joris     229:
1.138     joris     230:        return (cf);
1.9       jfb       231: }
                    232:
1.138     joris     233: void
                    234: cvs_file_walklist(struct cvs_flisthead *fl, struct cvs_recursion *cr)
1.9       jfb       235: {
1.183     xsa       236:        int fd, type;
1.138     joris     237:        struct stat st;
                    238:        struct cvs_file *cf;
                    239:        struct cvs_filelist *l, *nxt;
1.176     otto      240:        char *d, *f, repo[MAXPATHLEN], fpath[MAXPATHLEN];
1.138     joris     241:
                    242:        for (l = TAILQ_FIRST(fl); l != NULL; l = nxt) {
                    243:                if (cvs_quit)
                    244:                        fatal("received signal %d", sig_received);
                    245:
                    246:                cvs_log(LP_TRACE, "cvs_file_walklist: element '%s'",
                    247:                    l->file_path);
                    248:
                    249:                if ((f = basename(l->file_path)) == NULL)
                    250:                        fatal("cvs_file_walklist: basename failed");
                    251:                if ((d = dirname(l->file_path)) == NULL)
                    252:                        fatal("cvs_file_walklist: dirname failed");
                    253:
1.146     joris     254:                type = CVS_FILE;
1.138     joris     255:                if ((fd = open(l->file_path, O_RDONLY)) != -1) {
                    256:                        if (fstat(fd, &st) == -1) {
                    257:                                cvs_log(LP_ERRNO, "%s", l->file_path);
                    258:                                (void)close(fd);
                    259:                                goto next;
                    260:                        }
1.26      jfb       261:
1.138     joris     262:                        if (S_ISDIR(st.st_mode))
                    263:                                type = CVS_DIR;
                    264:                        else if (S_ISREG(st.st_mode))
                    265:                                type = CVS_FILE;
                    266:                        else {
                    267:                                cvs_log(LP_ERR,
                    268:                                    "ignoring bad file type for %s",
                    269:                                    l->file_path);
                    270:                                (void)close(fd);
                    271:                                goto next;
                    272:                        }
1.162     joris     273:                } else if (current_cvsroot->cr_method == CVS_METHOD_LOCAL) {
1.196     tobias    274:                        /*
                    275:                         * During checkout -p, do not use any locally
                    276:                         * available directories.
                    277:                         */
                    278:                        if (cvs_cmdop != CVS_OP_CHECKOUT || !print_stdout)
                    279:                                if (stat(d, &st) == -1) {
                    280:                                        cvs_log(LP_ERRNO, "%s", d);
                    281:                                        goto next;
                    282:                                }
1.87      joris     283:
1.146     joris     284:                        cvs_get_repository_path(d, repo, MAXPATHLEN);
1.183     xsa       285:                        (void)xsnprintf(fpath, MAXPATHLEN, "%s/%s",
1.138     joris     286:                            repo, f);
                    287:
                    288:                        if ((fd = open(fpath, O_RDONLY)) == -1) {
                    289:                                strlcat(fpath, RCS_FILE_EXT, MAXPATHLEN);
                    290:                                fd = open(fpath, O_RDONLY);
                    291:                        }
1.26      jfb       292:
1.138     joris     293:                        if (fd != -1) {
                    294:                                if (fstat(fd, &st) == -1)
                    295:                                        fatal("cvs_file_walklist: %s: %s",
                    296:                                             fpath, strerror(errno));
                    297:
                    298:                                if (S_ISDIR(st.st_mode))
                    299:                                        type = CVS_DIR;
                    300:                                else if (S_ISREG(st.st_mode))
                    301:                                        type = CVS_FILE;
                    302:                                else {
                    303:                                        cvs_log(LP_ERR,
                    304:                                            "ignoring bad file type for %s",
                    305:                                            l->file_path);
                    306:                                        (void)close(fd);
                    307:                                        goto next;
                    308:                                }
                    309:
                    310:                                /* this file is not in our working copy yet */
                    311:                                (void)close(fd);
                    312:                                fd = -1;
                    313:                        }
                    314:                }
1.73      joris     315:
1.138     joris     316:                cf = cvs_file_get_cf(d, f, fd, type);
                    317:                if (cf->file_type == CVS_DIR) {
                    318:                        cvs_file_walkdir(cf, cr);
                    319:                } else {
1.199     joris     320:                        if (l->check_dir_tag) {
                    321:                                cvs_parse_tagfile(cf->file_wd,
                    322:                                    &cvs_directory_tag, NULL, NULL);
                    323:
                    324:                                if (cvs_directory_tag == NULL &&
                    325:                                    cvs_specified_tag != NULL)
                    326:                                        cvs_directory_tag = cvs_specified_tag;
                    327:                        }
                    328:
1.161     joris     329:                        if (cr->fileproc != NULL)
                    330:                                cr->fileproc(cf);
1.128     joris     331:                }
1.100     joris     332:
1.138     joris     333:                cvs_file_free(cf);
1.123     joris     334:
1.138     joris     335: next:
                    336:                nxt = TAILQ_NEXT(l, flist);
                    337:                TAILQ_REMOVE(fl, l, flist);
1.68      joris     338:
1.138     joris     339:                xfree(l->file_path);
                    340:                xfree(l);
1.100     joris     341:        }
                    342: }
                    343:
1.138     joris     344: void
                    345: cvs_file_walkdir(struct cvs_file *cf, struct cvs_recursion *cr)
1.100     joris     346: {
1.171     joris     347:        int l, type;
1.138     joris     348:        FILE *fp;
                    349:        int nbytes;
                    350:        long base;
                    351:        size_t bufsize;
                    352:        struct stat st;
                    353:        struct dirent *dp;
1.100     joris     354:        struct cvs_ent *ent;
1.138     joris     355:        struct cvs_ignpat *ip;
                    356:        struct cvs_ent_line *line;
                    357:        struct cvs_flisthead fl, dl;
                    358:        CVSENTRIES *entlist;
1.194     joris     359:        char *buf, *ebuf, *cp, repo[MAXPATHLEN], fpath[MAXPATHLEN];
1.100     joris     360:
1.138     joris     361:        cvs_log(LP_TRACE, "cvs_file_walkdir(%s)", cf->file_path);
1.100     joris     362:
1.138     joris     363:        if (cr->enterdir != NULL)
                    364:                cr->enterdir(cf);
1.100     joris     365:
1.161     joris     366:        if (cr->fileproc != NULL)
                    367:                cr->fileproc(cf);
1.100     joris     368:
1.146     joris     369:        if (cf->file_status == FILE_SKIP)
                    370:                return;
                    371:
1.100     joris     372:        /*
1.151     joris     373:         * If we do not have a admin directory inside here, dont bother,
                    374:         * unless we are running import.
1.100     joris     375:         */
1.183     xsa       376:        (void)xsnprintf(fpath, MAXPATHLEN, "%s/%s", cf->file_path,
1.138     joris     377:            CVS_PATH_CVSDIR);
1.100     joris     378:
1.146     joris     379:        l = stat(fpath, &st);
1.192     niallo    380:        if (cvs_cmdop != CVS_OP_IMPORT && cvs_cmdop != CVS_OP_RLOG &&
1.151     joris     381:            (l == -1 || (l == 0 && !S_ISDIR(st.st_mode)))) {
1.138     joris     382:                return;
1.100     joris     383:        }
                    384:
1.199     joris     385:        cvs_parse_tagfile(cf->file_path, &cvs_directory_tag, NULL, NULL);
                    386:
1.100     joris     387:        /*
1.138     joris     388:         * check for a local .cvsignore file
1.100     joris     389:         */
1.183     xsa       390:        (void)xsnprintf(fpath, MAXPATHLEN, "%s/.cvsignore", cf->file_path);
1.100     joris     391:
1.138     joris     392:        if ((fp = fopen(fpath, "r")) != NULL) {
1.163     moritz    393:                while (fgets(fpath, MAXPATHLEN, fp) != NULL) {
1.203     gilles    394:                        fpath[strcspn(fpath, "\n")] = '\0';
                    395:                        if (fpath[0] == '\0')
1.163     moritz    396:                                continue;
1.26      jfb       397:
1.138     joris     398:                        cvs_file_ignore(fpath, &dir_ign_pats);
1.68      joris     399:                }
1.26      jfb       400:
1.138     joris     401:                (void)fclose(fp);
1.100     joris     402:        }
                    403:
1.138     joris     404:        if (fstat(cf->fd, &st) == -1)
                    405:                fatal("cvs_file_walkdir: %s %s", cf->file_path,
                    406:                    strerror(errno));
1.100     joris     407:
1.138     joris     408:        bufsize = st.st_size;
                    409:        if (bufsize < st.st_blksize)
                    410:                bufsize = st.st_blksize;
1.116     joris     411:
1.138     joris     412:        buf = xmalloc(bufsize);
                    413:        TAILQ_INIT(&fl);
                    414:        TAILQ_INIT(&dl);
1.87      joris     415:
1.138     joris     416:        while ((nbytes = getdirentries(cf->fd, buf, bufsize, &base)) > 0) {
                    417:                ebuf = buf + nbytes;
                    418:                cp = buf;
1.26      jfb       419:
1.138     joris     420:                while (cp < ebuf) {
                    421:                        dp = (struct dirent *)cp;
                    422:                        if (!strcmp(dp->d_name, ".") ||
                    423:                            !strcmp(dp->d_name, "..") ||
                    424:                            !strcmp(dp->d_name, CVS_PATH_CVSDIR) ||
1.186     joris     425:                            dp->d_fileno == 0) {
1.138     joris     426:                                cp += dp->d_reclen;
                    427:                                continue;
                    428:                        }
1.13      jfb       429:
1.138     joris     430:                        if (cvs_file_chkign(dp->d_name)) {
                    431:                                cp += dp->d_reclen;
1.13      jfb       432:                                continue;
1.138     joris     433:                        }
1.13      jfb       434:
1.203     gilles    435:                        (void)xsnprintf(fpath, MAXPATHLEN, "%s/%s",
1.138     joris     436:                            cf->file_path, dp->d_name);
1.13      jfb       437:
1.138     joris     438:                        /*
1.171     joris     439:                         * nfs and afs will show d_type as DT_UNKNOWN
                    440:                         * for files and/or directories so when we encounter
1.184     todd      441:                         * this we call lstat() on the path to be sure.
1.138     joris     442:                         */
1.171     joris     443:                        if (dp->d_type == DT_UNKNOWN) {
1.184     todd      444:                                if (lstat(fpath, &st) == -1)
1.171     joris     445:                                        fatal("'%s': %s", fpath,
                    446:                                            strerror(errno));
                    447:
                    448:                                switch (st.st_mode & S_IFMT) {
                    449:                                case S_IFDIR:
                    450:                                        type = CVS_DIR;
                    451:                                        break;
                    452:                                case S_IFREG:
                    453:                                        type = CVS_FILE;
                    454:                                        break;
                    455:                                default:
1.175     ray       456:                                        type = FILE_SKIP;
                    457:                                        break;
1.171     joris     458:                                }
                    459:                        } else {
                    460:                                switch (dp->d_type) {
                    461:                                case DT_DIR:
                    462:                                        type = CVS_DIR;
                    463:                                        break;
                    464:                                case DT_REG:
                    465:                                        type = CVS_FILE;
                    466:                                        break;
                    467:                                default:
1.175     ray       468:                                        type = FILE_SKIP;
                    469:                                        break;
1.171     joris     470:                                }
1.175     ray       471:                        }
                    472:
                    473:                        if (type == FILE_SKIP) {
                    474:                                if (verbosity > 1) {
                    475:                                        cvs_log(LP_NOTICE, "ignoring `%s'",
                    476:                                            dp->d_name);
                    477:                                }
                    478:                                cp += dp->d_reclen;
                    479:                                continue;
1.171     joris     480:                        }
                    481:
                    482:                        switch (type) {
                    483:                        case CVS_DIR:
1.192     niallo    484:                                if (cr->flags & CR_RECURSE_DIRS)
1.199     joris     485:                                        cvs_file_get(fpath, 0, &dl);
1.171     joris     486:                                break;
                    487:                        case CVS_FILE:
1.199     joris     488:                                cvs_file_get(fpath, 0, &fl);
1.171     joris     489:                                break;
                    490:                        default:
                    491:                                fatal("type %d unknown, shouldn't happen",
                    492:                                    type);
                    493:                        }
1.13      jfb       494:
1.138     joris     495:                        cp += dp->d_reclen;
                    496:                }
1.34      jfb       497:        }
                    498:
1.138     joris     499:        if (nbytes == -1)
                    500:                fatal("cvs_file_walkdir: %s %s", cf->file_path,
                    501:                    strerror(errno));
1.22      jfb       502:
1.138     joris     503:        xfree(buf);
1.22      jfb       504:
1.138     joris     505:        while ((ip = TAILQ_FIRST(&dir_ign_pats)) != NULL) {
                    506:                TAILQ_REMOVE(&dir_ign_pats, ip, ip_list);
                    507:                xfree(ip);
1.91      joris     508:        }
1.114     xsa       509:
1.138     joris     510:        entlist = cvs_ent_open(cf->file_path);
                    511:        TAILQ_FOREACH(line, &(entlist->cef_ent), entries_list) {
                    512:                ent = cvs_ent_parse(line->buf);
1.61      xsa       513:
1.183     xsa       514:                (void)xsnprintf(fpath, MAXPATHLEN, "%s/%s", cf->file_path,
1.138     joris     515:                    ent->ce_name);
1.100     joris     516:
1.140     joris     517:                if (!(cr->flags & CR_RECURSE_DIRS) &&
                    518:                    ent->ce_type == CVS_ENT_DIR)
                    519:                        continue;
1.138     joris     520:                if (ent->ce_type == CVS_ENT_DIR)
1.199     joris     521:                        cvs_file_get(fpath, 0, &dl);
1.138     joris     522:                else if (ent->ce_type == CVS_ENT_FILE)
1.199     joris     523:                        cvs_file_get(fpath, 0, &fl);
1.68      joris     524:
1.138     joris     525:                cvs_ent_free(ent);
1.128     joris     526:        }
                    527:
1.138     joris     528:        cvs_ent_close(entlist, ENT_NOSYNC);
1.91      joris     529:
1.140     joris     530:        if (cr->flags & CR_REPO) {
1.146     joris     531:                cvs_get_repository_path(cf->file_path, repo, MAXPATHLEN);
1.140     joris     532:                cvs_repository_lock(repo);
1.68      joris     533:
1.140     joris     534:                cvs_repository_getdir(repo, cf->file_path, &fl, &dl,
                    535:                    (cr->flags & CR_RECURSE_DIRS));
                    536:        }
1.68      joris     537:
1.138     joris     538:        cvs_file_walklist(&fl, cr);
                    539:        cvs_file_freelist(&fl);
1.68      joris     540:
1.176     otto      541:        if (cr->flags & CR_REPO)
1.140     joris     542:                cvs_repository_unlock(repo);
1.68      joris     543:
1.138     joris     544:        cvs_file_walklist(&dl, cr);
                    545:        cvs_file_freelist(&dl);
1.34      jfb       546:
1.138     joris     547:        if (cr->leavedir != NULL)
                    548:                cr->leavedir(cf);
1.199     joris     549:
                    550:        if (cvs_directory_tag != NULL) {
                    551:                cvs_write_tagfile(cf->file_path, cvs_directory_tag, NULL, 0);
                    552:                xfree(cvs_directory_tag);
                    553:                cvs_directory_tag = NULL;
                    554:        }
1.3       jfb       555: }
                    556:
                    557: void
1.138     joris     558: cvs_file_freelist(struct cvs_flisthead *fl)
1.3       jfb       559: {
1.138     joris     560:        struct cvs_filelist *f;
1.62      jfb       561:
1.138     joris     562:        while ((f = TAILQ_FIRST(fl)) != NULL) {
                    563:                TAILQ_REMOVE(fl, f, flist);
                    564:                xfree(f->file_path);
                    565:                xfree(f);
1.62      jfb       566:        }
1.5       jfb       567: }
                    568:
1.138     joris     569: void
1.185     joris     570: cvs_file_classify(struct cvs_file *cf, const char *tag)
1.3       jfb       571: {
1.138     joris     572:        size_t len;
                    573:        struct stat st;
1.149     joris     574:        BUF *b1, *b2;
1.199     joris     575:        int server_has_file, notag;
1.183     xsa       576:        int rflags, ismodified, rcsdead;
1.138     joris     577:        CVSENTRIES *entlist = NULL;
                    578:        const char *state;
1.193     xsa       579:        char repo[MAXPATHLEN], rcsfile[MAXPATHLEN];
1.194     joris     580:        char r1[CVS_REV_BUFSZ], r2[CVS_REV_BUFSZ];
1.138     joris     581:
1.198     joris     582:        cvs_log(LP_TRACE, "cvs_file_classify(%s, %s)", cf->file_path,
                    583:            (tag != NULL) ? tag : "none");
1.138     joris     584:
                    585:        if (!strcmp(cf->file_path, ".")) {
                    586:                cf->file_status = FILE_UPTODATE;
                    587:                return;
                    588:        }
                    589:
1.146     joris     590:        cvs_get_repository_path(cf->file_wd, repo, MAXPATHLEN);
1.183     xsa       591:        (void)xsnprintf(rcsfile, MAXPATHLEN, "%s/%s",
1.138     joris     592:            repo, cf->file_name);
                    593:
                    594:        if (cf->file_type == CVS_FILE) {
                    595:                len = strlcat(rcsfile, RCS_FILE_EXT, MAXPATHLEN);
                    596:                if (len >= MAXPATHLEN)
                    597:                        fatal("cvs_file_classify: truncation");
                    598:        }
                    599:
                    600:        cf->file_rpath = xstrdup(rcsfile);
1.151     joris     601:        entlist = cvs_ent_open(cf->file_wd);
1.138     joris     602:        cf->file_ent = cvs_ent_get(entlist, cf->file_name);
                    603:
1.144     joris     604:        if (cf->file_ent != NULL) {
                    605:                if (cf->file_ent->ce_type == CVS_ENT_DIR &&
                    606:                    cf->file_type != CVS_DIR)
1.148     pedro     607:                        fatal("%s is supposed to be a directory, but it is not",
1.144     joris     608:                            cf->file_path);
                    609:                if (cf->file_ent->ce_type == CVS_ENT_FILE &&
                    610:                    cf->file_type != CVS_FILE)
1.148     pedro     611:                        fatal("%s is supposed to be a file, but it is not",
1.144     joris     612:                            cf->file_path);
1.201     joris     613:
                    614:                if (cf->file_ent->ce_tag != NULL)
                    615:                        tag = cf->file_ent->ce_tag;
1.144     joris     616:        }
                    617:
1.138     joris     618:        if (cf->file_type == CVS_DIR) {
                    619:                if (cf->fd == -1 && stat(rcsfile, &st) != -1)
                    620:                        cf->file_status = DIR_CREATE;
1.192     niallo    621:                else if (cf->file_ent != NULL || cvs_cmdop == CVS_OP_RLOG)
1.138     joris     622:                        cf->file_status = FILE_UPTODATE;
1.144     joris     623:                else
                    624:                        cf->file_status = FILE_UNKNOWN;
                    625:
1.138     joris     626:                cvs_ent_close(entlist, ENT_NOSYNC);
                    627:                return;
                    628:        }
                    629:
1.147     joris     630:        rflags = RCS_READ;
                    631:        switch (cvs_cmdop) {
                    632:        case CVS_OP_COMMIT:
                    633:                rflags = RCS_WRITE;
                    634:                break;
1.156     joris     635:        case CVS_OP_IMPORT:
1.147     joris     636:        case CVS_OP_LOG:
1.192     niallo    637:        case CVS_OP_RLOG:
1.147     joris     638:                rflags |= RCS_PARSE_FULLY;
                    639:                break;
                    640:        }
                    641:
1.138     joris     642:        cf->repo_fd = open(cf->file_rpath, O_RDONLY);
                    643:        if (cf->repo_fd != -1) {
                    644:                cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd, rflags);
                    645:                if (cf->file_rcs == NULL)
1.152     joris     646:                        fatal("cvs_file_classify: failed to parse RCS");
1.194     joris     647:        } else {
                    648:                (void)xsnprintf(rcsfile, MAXPATHLEN, "%s/%s/%s%s",
                    649:                     repo, CVS_PATH_ATTIC, cf->file_name, RCS_FILE_EXT);
                    650:
                    651:                cf->repo_fd = open(rcsfile, O_RDONLY);
                    652:                if (cf->repo_fd != -1) {
                    653:                        xfree(cf->file_rpath);
                    654:                        cf->file_rpath = xstrdup(rcsfile);
                    655:                        cf->file_rcs = rcs_open(cf->file_rpath,
                    656:                            cf->repo_fd, rflags);
                    657:                        if (cf->file_rcs == NULL)
                    658:                                fatal("cvs_file_classify: failed to parse RCS");
                    659:                        cf->in_attic = 1;
                    660:                } else {
                    661:                        cf->file_rcs = NULL;
                    662:                }
1.190     niallo    663:        }
                    664:
1.199     joris     665:        notag = 0;
1.200     joris     666:        cf->file_flags |= FILE_HAS_TAG;
1.190     niallo    667:        if (tag != NULL && cf->file_rcs != NULL) {
1.199     joris     668:                if ((cf->file_rcsrev = rcs_translate_tag(tag,
                    669:                    cf->file_rcs)) != NULL) {
                    670:                        rcsnum_tostr(cf->file_rcsrev, r1, sizeof(r1));
                    671:                } else {
                    672:                        cf->file_rcsrev = rcs_head_get(cf->file_rcs);
1.206     tobias    673:                        if (cf->file_rcsrev != NULL) {
                    674:                                notag = 1;
                    675:                                cf->file_flags &= ~FILE_HAS_TAG;
                    676:                        }
1.152     joris     677:                }
1.172     niallo    678:        } else if (cf->file_ent != NULL && cf->file_ent->ce_tag != NULL) {
1.169     joris     679:                cf->file_rcsrev = rcsnum_alloc();
                    680:                rcsnum_cpy(cf->file_ent->ce_rev, cf->file_rcsrev, 0);
1.190     niallo    681:        } else if (cf->file_rcs != NULL) {
1.156     joris     682:                cf->file_rcsrev = rcs_head_get(cf->file_rcs);
1.190     niallo    683:        } else {
1.153     joris     684:                cf->file_rcsrev = NULL;
1.190     niallo    685:        }
1.153     joris     686:
1.138     joris     687:        if (cf->file_ent != NULL)
                    688:                rcsnum_tostr(cf->file_ent->ce_rev, r1, sizeof(r1));
1.190     niallo    689:        if (cf->file_rcsrev != NULL) {
1.153     joris     690:                rcsnum_tostr(cf->file_rcsrev, r2, sizeof(r2));
1.190     niallo    691:        }
1.6       jfb       692:
1.138     joris     693:        ismodified = rcsdead = 0;
                    694:        if (cf->fd != -1 && cf->file_ent != NULL) {
                    695:                if (fstat(cf->fd, &st) == -1)
                    696:                        fatal("cvs_file_classify: %s", strerror(errno));
1.6       jfb       697:
1.177     joris     698:                if (st.st_mtime != cf->file_ent->ce_mtime)
1.138     joris     699:                        ismodified = 1;
1.149     joris     700:        }
                    701:
1.198     joris     702:        server_has_file = 0;
                    703:        if (cvs_server_active == 1 && cf->file_ent != NULL &&
                    704:            cf->file_ent->ce_mtime == CVS_SERVER_UPTODATE) {
                    705:                server_has_file = 1;
                    706:                ismodified = 0;
                    707:        }
                    708:
1.202     joris     709:        if (ismodified == 1 && cf->fd != -1 && cf->file_rcs != NULL &&
                    710:            !RCSNUM_ISBRANCH(cf->file_rcsrev)) {
1.170     joris     711:                b1 = rcs_rev_getbuf(cf->file_rcs, cf->file_rcsrev, 0);
1.149     joris     712:                if (b1 == NULL)
                    713:                        fatal("failed to get HEAD revision for comparison");
                    714:
1.159     joris     715:                b2 = cvs_buf_load_fd(cf->fd, BUF_AUTOEXT);
1.149     joris     716:                if (b2 == NULL)
                    717:                        fatal("failed to get file content for comparison");
                    718:
                    719:                if (cvs_buf_differ(b1, b2))
                    720:                        ismodified = 1;
                    721:                else
                    722:                        ismodified = 0;
1.188     ray       723:                cvs_buf_free(b1);
                    724:                cvs_buf_free(b2);
1.62      jfb       725:        }
                    726:
1.202     joris     727:        if (cf->file_rcs != NULL && cf->file_rcsrev != NULL &&
                    728:            !RCSNUM_ISBRANCH(cf->file_rcsrev)) {
1.153     joris     729:                state = rcs_state_get(cf->file_rcs, cf->file_rcsrev);
1.138     joris     730:                if (state == NULL)
                    731:                        fatal("failed to get state for HEAD for %s",
                    732:                            cf->file_path);
1.139     joris     733:                if (!strcmp(state, RCS_STATE_DEAD))
1.205     tobias    734:                        rcsdead = 1;
                    735:
                    736:                if (cvs_specified_tag == NULL && cf->in_attic &&
                    737:                    !RCSNUM_ISBRANCHREV(cf->file_rcsrev))
1.138     joris     738:                        rcsdead = 1;
1.145     joris     739:
                    740:                cf->file_rcs->rf_dead = rcsdead;
1.128     joris     741:        }
                    742:
1.138     joris     743:        /*
                    744:         * 10 Sin
                    745:         * 20 Goto hell
                    746:         * (I welcome you if-else hell)
                    747:         */
                    748:        if (cf->file_ent == NULL) {
                    749:                if (cf->file_rcs == NULL) {
                    750:                        if (cf->fd == -1) {
1.178     joris     751:                                cvs_log(LP_NOTICE,
                    752:                                    "nothing known about '%s'",
                    753:                                    cf->file_path);
1.138     joris     754:                        }
1.130     joris     755:
1.138     joris     756:                        cf->file_status = FILE_UNKNOWN;
                    757:                } else if (rcsdead == 1) {
                    758:                        if (cf->fd == -1) {
                    759:                                cf->file_status = FILE_UPTODATE;
1.179     joris     760:                        } else if (cvs_cmdop != CVS_OP_ADD) {
1.138     joris     761:                                cf->file_status = FILE_UNKNOWN;
1.44      jfb       762:                        }
1.199     joris     763:                } else if (notag == 0) {
                    764:                        cf->file_status = FILE_CHECKOUT;
1.138     joris     765:                } else {
1.199     joris     766:                        cf->file_status = FILE_UPTODATE;
1.14      jfb       767:                }
1.138     joris     768:        } else if (cf->file_ent->ce_status == CVS_ENT_ADDED) {
                    769:                if (cf->fd == -1) {
1.178     joris     770:                        if (cvs_cmdop != CVS_OP_REMOVE) {
1.138     joris     771:                                cvs_log(LP_NOTICE,
1.157     david     772:                                    "warning: new-born %s has disappeared",
1.138     joris     773:                                    cf->file_path);
1.178     joris     774:                        }
1.138     joris     775:                        cf->file_status = FILE_REMOVE_ENTRY;
                    776:                } else if (cf->file_rcs == NULL || rcsdead == 1) {
                    777:                        cf->file_status = FILE_ADDED;
                    778:                } else {
1.178     joris     779:                        cvs_log(LP_NOTICE,
                    780:                            "conflict: %s already created by others",
                    781:                            cf->file_path);
1.138     joris     782:                        cf->file_status = FILE_CONFLICT;
                    783:                }
                    784:        } else if (cf->file_ent->ce_status == CVS_ENT_REMOVED) {
                    785:                if (cf->fd != -1) {
1.178     joris     786:                        cvs_log(LP_NOTICE,
                    787:                            "%s should be removed but is still there",
                    788:                            cf->file_path);
1.138     joris     789:                        cf->file_status = FILE_REMOVED;
                    790:                } else if (cf->file_rcs == NULL || rcsdead == 1) {
                    791:                        cf->file_status = FILE_REMOVE_ENTRY;
1.66      joris     792:                } else {
1.138     joris     793:                        if (strcmp(r1, r2)) {
1.178     joris     794:                                cvs_log(LP_NOTICE,
                    795:                                    "conflict: removed %s was modified"
                    796:                                    " by a second party",
                    797:                                    cf->file_path);
1.138     joris     798:                                cf->file_status = FILE_CONFLICT;
                    799:                        } else {
                    800:                                cf->file_status = FILE_REMOVED;
                    801:                        }
1.66      joris     802:                }
1.138     joris     803:        } else if (cf->file_ent->ce_status == CVS_ENT_REG) {
1.194     joris     804:                if (cf->file_rcs == NULL || rcsdead == 1 ||
1.199     joris     805:                    (reset_stickies == 1 && cf->in_attic == 1) ||
                    806:                    (notag == 1 && tag != NULL)) {
1.198     joris     807:                        if (cf->fd == -1 && server_has_file == 0) {
1.178     joris     808:                                cvs_log(LP_NOTICE,
                    809:                                    "warning: %s's entry exists but"
                    810:                                    " there is no longer a file"
                    811:                                    " in the repository,"
                    812:                                    " removing entry",
                    813:                                     cf->file_path);
1.138     joris     814:                                cf->file_status = FILE_REMOVE_ENTRY;
                    815:                        } else {
                    816:                                if (ismodified) {
1.178     joris     817:                                        cvs_log(LP_NOTICE,
                    818:                                            "conflict: %s is no longer "
                    819:                                            "in the repository but is "
                    820:                                            "locally modified",
                    821:                                            cf->file_path);
1.138     joris     822:                                        cf->file_status = FILE_CONFLICT;
1.204     tobias    823:                                } else if (cvs_cmdop != CVS_OP_IMPORT) {
1.178     joris     824:                                        cvs_log(LP_NOTICE,
                    825:                                            "%s is no longer in the "
                    826:                                            "repository",
                    827:                                            cf->file_path);
1.128     joris     828:
1.138     joris     829:                                        cf->file_status = FILE_UNLINK;
                    830:                                }
                    831:                        }
1.128     joris     832:                } else {
1.198     joris     833:                        if (cf->fd == -1 && server_has_file == 0) {
1.178     joris     834:                                if (cvs_cmdop != CVS_OP_REMOVE) {
1.138     joris     835:                                        cvs_log(LP_NOTICE,
                    836:                                            "warning: %s was lost",
                    837:                                            cf->file_path);
1.178     joris     838:                                }
1.138     joris     839:                                cf->file_status = FILE_LOST;
                    840:                        } else {
                    841:                                if (ismodified == 1)
                    842:                                        cf->file_status = FILE_MODIFIED;
                    843:                                else
                    844:                                        cf->file_status = FILE_UPTODATE;
                    845:
                    846:                                if (strcmp(r1, r2)) {
                    847:                                        if (cf->file_status == FILE_MODIFIED)
                    848:                                                cf->file_status = FILE_MERGE;
                    849:                                        else
                    850:                                                cf->file_status = FILE_PATCH;
                    851:                                }
                    852:                        }
1.128     joris     853:                }
                    854:        }
                    855:
1.138     joris     856:        cvs_ent_close(entlist, ENT_NOSYNC);
                    857: }
1.14      jfb       858:
1.138     joris     859: void
                    860: cvs_file_free(struct cvs_file *cf)
                    861: {
                    862:        xfree(cf->file_name);
                    863:        xfree(cf->file_wd);
                    864:        xfree(cf->file_path);
                    865:
1.167     joris     866:        if (cf->file_rcsrev != NULL)
                    867:                rcsnum_free(cf->file_rcsrev);
1.138     joris     868:        if (cf->file_rpath != NULL)
                    869:                xfree(cf->file_rpath);
                    870:        if (cf->file_ent != NULL)
                    871:                cvs_ent_free(cf->file_ent);
                    872:        if (cf->file_rcs != NULL)
                    873:                rcs_close(cf->file_rcs);
                    874:        if (cf->fd != -1)
                    875:                (void)close(cf->fd);
                    876:        if (cf->repo_fd != -1)
                    877:                (void)close(cf->repo_fd);
                    878:        xfree(cf);
1.23      jfb       879: }
                    880:
1.165     xsa       881: int
1.23      jfb       882: cvs_file_cmpname(const char *name1, const char *name2)
                    883: {
                    884:        return (cvs_nocase == 0) ? (strcmp(name1, name2)) :
                    885:            (strcasecmp(name1, name2));
1.164     xsa       886: }
                    887:
                    888: int
                    889: cvs_file_cmp(const char *file1, const char *file2)
                    890: {
                    891:        struct stat stb1, stb2;
                    892:        int fd1, fd2, ret;
                    893:
                    894:        ret = 0;
                    895:
                    896:        if ((fd1 = open(file1, O_RDONLY|O_NOFOLLOW, 0)) == -1)
                    897:                fatal("cvs_file_cmp: open: `%s': %s", file1, strerror(errno));
                    898:        if ((fd2 = open(file2, O_RDONLY|O_NOFOLLOW, 0)) == -1)
                    899:                fatal("cvs_file_cmp: open: `%s': %s", file2, strerror(errno));
                    900:
                    901:        if (fstat(fd1, &stb1) == -1)
                    902:                fatal("cvs_file_cmp: `%s': %s", file1, strerror(errno));
                    903:        if (fstat(fd2, &stb2) == -1)
                    904:                fatal("cvs_file_cmp: `%s': %s", file2, strerror(errno));
                    905:
                    906:        if (stb1.st_size != stb2.st_size ||
                    907:            (stb1.st_mode & S_IFMT) != (stb2.st_mode & S_IFMT)) {
                    908:                ret = 1;
                    909:                goto out;
                    910:        }
                    911:
                    912:        if (S_ISBLK(stb1.st_mode) || S_ISCHR(stb1.st_mode)) {
                    913:                if (stb1.st_rdev != stb2.st_rdev)
                    914:                        ret = 1;
                    915:                goto out;
                    916:        }
                    917:
                    918:        if (S_ISREG(stb1.st_mode)) {
                    919:                void *p1, *p2;
                    920:
1.187     otto      921:                if (stb1.st_size > (off_t)SIZE_MAX) {
1.164     xsa       922:                        ret = 1;
                    923:                        goto out;
                    924:                }
                    925:
                    926:                if ((p1 = mmap(NULL, stb1.st_size, PROT_READ,
                    927:                    MAP_FILE, fd1, (off_t)0)) == MAP_FAILED)
                    928:                        fatal("cvs_file_cmp: mmap failed");
                    929:
                    930:                if ((p2 = mmap(NULL, stb1.st_size, PROT_READ,
                    931:                    MAP_FILE, fd2, (off_t)0)) == MAP_FAILED)
                    932:                        fatal("cvs_file_cmp: mmap failed");
                    933:
                    934:                madvise(p1, stb1.st_size, MADV_SEQUENTIAL);
                    935:                madvise(p2, stb1.st_size, MADV_SEQUENTIAL);
                    936:
                    937:                ret = memcmp(p1, p2, stb1.st_size);
                    938:
                    939:                (void)munmap(p1, stb1.st_size);
                    940:                (void)munmap(p2, stb1.st_size);
                    941:        }
                    942:
                    943: out:
                    944:        (void)close(fd1);
                    945:        (void)close(fd2);
1.166     xsa       946:
                    947:        return (ret);
                    948: }
                    949:
                    950: int
                    951: cvs_file_copy(const char *from, const char *to)
                    952: {
                    953:        struct stat st;
                    954:        struct timeval tv[2];
                    955:        time_t atime, mtime;
                    956:        int src, dst, ret;
                    957:
                    958:        ret = 0;
                    959:
                    960:        cvs_log(LP_TRACE, "cvs_file_copy(%s,%s)", from, to);
                    961:
                    962:        if (cvs_noexec == 1)
                    963:                return (0);
                    964:
                    965:        if ((src = open(from, O_RDONLY, 0)) == -1)
                    966:                fatal("cvs_file_copy: open: `%s': %s", from, strerror(errno));
                    967:
                    968:        if (fstat(src, &st) == -1)
                    969:                fatal("cvs_file_copy: `%s': %s", from, strerror(errno));
                    970:
                    971:        atime = st.st_atimespec.tv_sec;
                    972:        mtime = st.st_mtimespec.tv_sec;
                    973:
                    974:        if (S_ISREG(st.st_mode)) {
1.197     tobias    975:                char *p;
1.166     xsa       976:                int saved_errno;
                    977:
1.187     otto      978:                if (st.st_size > (off_t)SIZE_MAX) {
1.166     xsa       979:                        ret = -1;
                    980:                        goto out;
                    981:                }
                    982:
                    983:                if ((dst = open(to, O_CREAT|O_TRUNC|O_WRONLY,
                    984:                    st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO))) == -1)
                    985:                        fatal("cvs_file_copy: open `%s': %s",
                    986:                            to, strerror(errno));
                    987:
                    988:                if ((p = mmap(NULL, st.st_size, PROT_READ,
                    989:                    MAP_FILE, src, (off_t)0)) == MAP_FAILED) {
                    990:                        saved_errno = errno;
                    991:                        (void)unlink(to);
                    992:                        fatal("cvs_file_copy: mmap: %s", strerror(saved_errno));
                    993:                }
                    994:
                    995:                madvise(p, st.st_size, MADV_SEQUENTIAL);
                    996:
1.197     tobias    997:                if (atomicio(vwrite, dst, p, st.st_size) != st.st_size) {
                    998:                        saved_errno = errno;
                    999:                        (void)unlink(to);
                   1000:                        fatal("cvs_file_copy: `%s': %s", from,
                   1001:                            strerror(saved_errno));
1.166     xsa      1002:                }
                   1003:
                   1004:                (void)munmap(p, st.st_size);
                   1005:
                   1006:                tv[0].tv_sec = atime;
                   1007:                tv[1].tv_sec = mtime;
                   1008:
                   1009:                if (futimes(dst, tv) == -1) {
                   1010:                        saved_errno = errno;
                   1011:                        (void)unlink(to);
                   1012:                        fatal("cvs_file_copy: futimes: %s",
                   1013:                            strerror(saved_errno));
                   1014:                }
                   1015:                (void)close(dst);
                   1016:        }
                   1017: out:
                   1018:        (void)close(src);
1.164     xsa      1019:
                   1020:        return (ret);
1.14      jfb      1021: }