Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / ar / replace.c
1 /*-
2  * Copyright (c) 1990, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Hugh Smith at The University of Guelph.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * @(#)replace.c        8.3 (Berkeley) 4/2/94
37  */
38
39 #include <sys/param.h>
40 #include <sys/stat.h>
41
42 #include <ar.h>
43 #include <dirent.h>
44 #include <err.h>
45 #include <fcntl.h>
46 #include <stdio.h>
47 #include <string.h>
48 #include <unistd.h>
49
50 #include "archive.h"
51 #include "extern.h"
52
53 /*
54  * replace --
55  *      Replace or add named members to archive.  Entries already in the
56  *      archive are swapped in place.  Others are added before or after
57  *      the key entry, based on the a, b and i options.  If the u option
58  *      is specified, modification dates select for replacement.
59  */
60 int
61 replace(argv)
62         char **argv;
63 {
64         char *file;
65         int afd, curfd, errflg, exists, mods, sfd, tfd1, tfd2;
66         struct stat sb;
67         CF cf;
68         off_t size, tsize;
69
70         errflg = 0;
71         /*
72          * If doesn't exist, simply append to the archive.  There's
73          * a race here, but it's pretty short, and not worth fixing.
74          */
75         exists = !stat(archive, &sb);
76         afd = open_archive(O_CREAT|O_RDWR);
77
78         if (!exists) {
79                 tfd1 = -1;
80                 tfd2 = tmp();
81                 goto append;
82         }
83
84         tfd1 = tmp();                   /* Files before key file. */
85         tfd2 = tmp();                   /* Files after key file. */
86
87         /*
88          * Break archive into two parts -- entries before and after the key
89          * entry.  If positioning before the key, place the key at the
90          * beginning of the after key entries and if positioning after the
91          * key, place the key at the end of the before key entries.  Put it
92          * all back together at the end.
93          */
94         mods = (options & (AR_A|AR_B));
95         for (curfd = tfd1; get_arobj(afd);) {
96                 if (*argv && (file = files(argv))) {
97                         if ((sfd = open(file, O_RDONLY)) < 0) {
98                                 errflg = 1;
99                                 warn("%s", file);
100                                 goto useold;
101                         }
102                         (void)fstat(sfd, &sb);
103                         if (options & AR_U && sb.st_mtime <= chdr.date) {
104                                 (void) close(sfd);
105                                 goto useold;
106                         }
107
108                         if (options & AR_V)
109                              (void)printf("r - %s\n", file);
110
111                         /* Read from disk, write to an archive; pad on write */
112                         SETCF(sfd, file, curfd, tname, WPAD);
113                         put_arobj(&cf, &sb);
114                         (void)close(sfd);
115                         skip_arobj(afd);
116                         continue;
117                 }
118
119                 if (mods && compare(posname)) {
120                         mods = 0;
121                         if (options & AR_B)
122                                 curfd = tfd2;
123                         /* Read and write to an archive; pad on both. */
124                         SETCF(afd, archive, curfd, tname, RPAD|WPAD);
125                         put_arobj(&cf, (struct stat *)NULL);
126                         if (options & AR_A)
127                                 curfd = tfd2;
128                 } else {
129                         /* Read and write to an archive; pad on both. */
130 useold:                 SETCF(afd, archive, curfd, tname, RPAD|WPAD);
131                         put_arobj(&cf, (struct stat *)NULL);
132                 }
133         }
134
135         if (mods) {
136                 warnx("%s: archive member not found", posarg);
137                 close_archive(afd);
138                 return (1);
139         }
140
141         /* Append any left-over arguments to the end of the after file. */
142 append: while ( (file = *argv++) ) {
143                 if (options & AR_V)
144                         (void)printf("a - %s\n", file);
145                 if ((sfd = open(file, O_RDONLY)) < 0) {
146                         errflg = 1;
147                         warn("%s", file);
148                         continue;
149                 }
150                 (void)fstat(sfd, &sb);
151                 /* Read from disk, write to an archive; pad on write. */
152                 SETCF(sfd, file,
153                     options & (AR_A|AR_B) ? tfd1 : tfd2, tname, WPAD);
154                 put_arobj(&cf, &sb);
155                 (void)close(sfd);
156         }
157
158         (void)lseek(afd, (off_t)SARMAG, SEEK_SET);
159
160         SETCF(tfd1, tname, afd, archive, NOPAD);
161         if (tfd1 != -1) {
162                 tsize = size = lseek(tfd1, (off_t)0, SEEK_CUR);
163                 (void)lseek(tfd1, (off_t)0, SEEK_SET);
164                 copy_ar(&cf, size);
165         } else
166                 tsize = 0;
167
168         tsize += size = lseek(tfd2, (off_t)0, SEEK_CUR);
169         (void)lseek(tfd2, (off_t)0, SEEK_SET);
170         cf.rfd = tfd2;
171         copy_ar(&cf, size);
172
173         (void)ftruncate(afd, tsize + SARMAG);
174         close_archive(afd);
175         return (errflg);
176 }