itime.c revision 1.18 1 1.18 christos /* $NetBSD: itime.c,v 1.18 2010/03/11 01:32:59 christos Exp $ */
2 1.3 cgd
3 1.1 cgd /*-
4 1.2 mycroft * Copyright (c) 1980, 1993
5 1.2 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.15 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.5 lukem #include <sys/cdefs.h>
33 1.1 cgd #ifndef lint
34 1.3 cgd #if 0
35 1.3 cgd static char sccsid[] = "@(#)itime.c 8.1 (Berkeley) 6/5/93";
36 1.3 cgd #else
37 1.18 christos __RCSID("$NetBSD: itime.c,v 1.18 2010/03/11 01:32:59 christos Exp $");
38 1.3 cgd #endif
39 1.1 cgd #endif /* not lint */
40 1.1 cgd
41 1.2 mycroft #include <sys/param.h>
42 1.13 lukem #include <sys/queue.h>
43 1.2 mycroft #include <sys/time.h>
44 1.2 mycroft #include <ufs/ufs/dinode.h>
45 1.2 mycroft
46 1.1 cgd #include <protocols/dumprestore.h>
47 1.2 mycroft
48 1.1 cgd #include <errno.h>
49 1.2 mycroft #include <fcntl.h>
50 1.1 cgd #include <stdio.h>
51 1.1 cgd #include <stdlib.h>
52 1.1 cgd #include <string.h>
53 1.7 kleink #include <time.h>
54 1.2 mycroft #include <unistd.h>
55 1.2 mycroft
56 1.1 cgd #include "dump.h"
57 1.1 cgd
58 1.13 lukem struct dumptime {
59 1.13 lukem struct dumpdates dt_value;
60 1.13 lukem SLIST_ENTRY(dumptime) dt_list;
61 1.13 lukem };
62 1.13 lukem SLIST_HEAD(dthead, dumptime) dthead = SLIST_HEAD_INITIALIZER(dthead);
63 1.1 cgd struct dumpdates **ddatev = 0;
64 1.1 cgd int nddates = 0;
65 1.1 cgd
66 1.9 lukem static void dumprecout(FILE *, struct dumpdates *);
67 1.9 lukem static int getrecord(FILE *, struct dumpdates *);
68 1.9 lukem static int makedumpdate(struct dumpdates *, char *);
69 1.9 lukem static void readdumptimes(FILE *);
70 1.1 cgd
71 1.1 cgd void
72 1.9 lukem initdumptimes(void)
73 1.1 cgd {
74 1.1 cgd FILE *df;
75 1.1 cgd
76 1.1 cgd if ((df = fopen(dumpdates, "r")) == NULL) {
77 1.1 cgd if (errno != ENOENT) {
78 1.13 lukem msg("WARNING: cannot read %s: %s\n", dumpdates,
79 1.1 cgd strerror(errno));
80 1.13 lukem return;
81 1.1 cgd }
82 1.1 cgd /*
83 1.1 cgd * Dumpdates does not exist, make an empty one.
84 1.1 cgd */
85 1.1 cgd msg("WARNING: no file `%s', making an empty one\n", dumpdates);
86 1.1 cgd if ((df = fopen(dumpdates, "w")) == NULL) {
87 1.13 lukem msg("WARNING: cannot create %s: %s\n", dumpdates,
88 1.1 cgd strerror(errno));
89 1.13 lukem return;
90 1.1 cgd }
91 1.1 cgd (void) fclose(df);
92 1.1 cgd if ((df = fopen(dumpdates, "r")) == NULL) {
93 1.1 cgd quit("cannot read %s even after creating it: %s\n",
94 1.1 cgd dumpdates, strerror(errno));
95 1.1 cgd /* NOTREACHED */
96 1.1 cgd }
97 1.1 cgd }
98 1.1 cgd (void) flock(fileno(df), LOCK_SH);
99 1.1 cgd readdumptimes(df);
100 1.1 cgd (void) fclose(df);
101 1.1 cgd }
102 1.1 cgd
103 1.2 mycroft static void
104 1.9 lukem readdumptimes(FILE *df)
105 1.1 cgd {
106 1.4 lukem int i;
107 1.4 lukem struct dumptime *dtwalk;
108 1.1 cgd
109 1.1 cgd for (;;) {
110 1.11 lukem dtwalk = (struct dumptime *)xcalloc(1, sizeof(struct dumptime));
111 1.16 christos if (getrecord(df, &(dtwalk->dt_value)) < 0) {
112 1.16 christos free(dtwalk);
113 1.1 cgd break;
114 1.16 christos }
115 1.1 cgd nddates++;
116 1.13 lukem SLIST_INSERT_HEAD(&dthead, dtwalk, dt_list);
117 1.1 cgd }
118 1.1 cgd
119 1.1 cgd /*
120 1.1 cgd * arrayify the list, leaving enough room for the additional
121 1.1 cgd * record that we may have to add to the ddate structure
122 1.1 cgd */
123 1.1 cgd ddatev = (struct dumpdates **)
124 1.11 lukem xcalloc((unsigned) (nddates + 1), sizeof(struct dumpdates *));
125 1.13 lukem dtwalk = SLIST_FIRST(&dthead);
126 1.13 lukem for (i = nddates - 1; i >= 0; i--, dtwalk = SLIST_NEXT(dtwalk, dt_list))
127 1.1 cgd ddatev[i] = &dtwalk->dt_value;
128 1.1 cgd }
129 1.1 cgd
130 1.1 cgd void
131 1.9 lukem getdumptime(void)
132 1.1 cgd {
133 1.4 lukem struct dumpdates *ddp;
134 1.4 lukem int i;
135 1.1 cgd char *fname;
136 1.1 cgd
137 1.1 cgd fname = disk;
138 1.1 cgd #ifdef FDEBUG
139 1.1 cgd msg("Looking for name %s in dumpdates = %s for level = %c\n",
140 1.1 cgd fname, dumpdates, level);
141 1.1 cgd #endif
142 1.1 cgd spcl.c_ddate = 0;
143 1.1 cgd lastlevel = '0';
144 1.1 cgd
145 1.1 cgd initdumptimes();
146 1.1 cgd /*
147 1.1 cgd * Go find the entry with the same name for a lower increment
148 1.17 christos * and older date. If we are doing a true incremental, then
149 1.18 christos * we can use any level as a ref point.
150 1.1 cgd */
151 1.1 cgd ITITERATE(i, ddp) {
152 1.1 cgd if (strncmp(fname, ddp->dd_name, sizeof (ddp->dd_name)) != 0)
153 1.1 cgd continue;
154 1.18 christos /* trueinc: ostensibly could omit the second clause
155 1.18 christos * since if trueinc is set, we don't care about the level
156 1.18 christos * at all.
157 1.18 christos */
158 1.18 christos /* if ((!trueinc && (ddp->dd_level >= level)) ||
159 1.18 christos (trueinc && (ddp->dd_level > level))) */
160 1.18 christos if (!trueinc && (ddp->dd_level >= level))
161 1.1 cgd continue;
162 1.6 bouyer if (ddp->dd_ddate <= iswap32(spcl.c_ddate))
163 1.1 cgd continue;
164 1.6 bouyer spcl.c_ddate = iswap32(ddp->dd_ddate);
165 1.1 cgd lastlevel = ddp->dd_level;
166 1.1 cgd }
167 1.1 cgd }
168 1.1 cgd
169 1.1 cgd void
170 1.9 lukem putdumptime(void)
171 1.1 cgd {
172 1.1 cgd FILE *df;
173 1.8 bouyer struct dumpdates *dtwalk, *dtfound;
174 1.4 lukem int i;
175 1.1 cgd int fd;
176 1.1 cgd char *fname;
177 1.1 cgd
178 1.1 cgd if(uflag == 0)
179 1.1 cgd return;
180 1.1 cgd if ((df = fopen(dumpdates, "r+")) == NULL)
181 1.1 cgd quit("cannot rewrite %s: %s\n", dumpdates, strerror(errno));
182 1.1 cgd fd = fileno(df);
183 1.1 cgd (void) flock(fd, LOCK_EX);
184 1.1 cgd fname = disk;
185 1.1 cgd free((char *)ddatev);
186 1.1 cgd ddatev = 0;
187 1.1 cgd nddates = 0;
188 1.1 cgd readdumptimes(df);
189 1.1 cgd if (fseek(df, 0L, 0) < 0)
190 1.1 cgd quit("fseek: %s\n", strerror(errno));
191 1.1 cgd spcl.c_ddate = 0;
192 1.1 cgd ITITERATE(i, dtwalk) {
193 1.1 cgd if (strncmp(fname, dtwalk->dd_name,
194 1.1 cgd sizeof (dtwalk->dd_name)) != 0)
195 1.1 cgd continue;
196 1.1 cgd if (dtwalk->dd_level != level)
197 1.1 cgd continue;
198 1.1 cgd goto found;
199 1.1 cgd }
200 1.1 cgd /*
201 1.1 cgd * construct the new upper bound;
202 1.1 cgd * Enough room has been allocated.
203 1.1 cgd */
204 1.1 cgd dtwalk = ddatev[nddates] =
205 1.11 lukem (struct dumpdates *)xcalloc(1, sizeof (struct dumpdates));
206 1.1 cgd nddates += 1;
207 1.1 cgd found:
208 1.14 itojun (void) strlcpy(dtwalk->dd_name, fname, sizeof(dtwalk->dd_name));
209 1.1 cgd dtwalk->dd_level = level;
210 1.6 bouyer dtwalk->dd_ddate = iswap32(spcl.c_date);
211 1.8 bouyer dtfound = dtwalk;
212 1.1 cgd
213 1.1 cgd ITITERATE(i, dtwalk) {
214 1.1 cgd dumprecout(df, dtwalk);
215 1.1 cgd }
216 1.1 cgd if (fflush(df))
217 1.1 cgd quit("%s: %s\n", dumpdates, strerror(errno));
218 1.1 cgd if (ftruncate(fd, ftell(df)))
219 1.1 cgd quit("ftruncate (%s): %s\n", dumpdates, strerror(errno));
220 1.1 cgd (void) fclose(df);
221 1.1 cgd msg("level %c dump on %s", level,
222 1.8 bouyer spcl.c_date == 0 ? "the epoch\n" : ctime(&dtfound->dd_ddate));
223 1.1 cgd }
224 1.1 cgd
225 1.1 cgd static void
226 1.9 lukem dumprecout(FILE *file, struct dumpdates *what)
227 1.1 cgd {
228 1.1 cgd
229 1.1 cgd if (fprintf(file, DUMPOUTFMT,
230 1.1 cgd what->dd_name,
231 1.1 cgd what->dd_level,
232 1.1 cgd ctime(&what->dd_ddate)) < 0)
233 1.1 cgd quit("%s: %s\n", dumpdates, strerror(errno));
234 1.1 cgd }
235 1.1 cgd
236 1.1 cgd int recno;
237 1.2 mycroft
238 1.2 mycroft static int
239 1.9 lukem getrecord(FILE *df, struct dumpdates *ddatep)
240 1.1 cgd {
241 1.1 cgd char tbuf[BUFSIZ];
242 1.1 cgd
243 1.1 cgd recno = 0;
244 1.1 cgd if ( (fgets(tbuf, sizeof (tbuf), df)) != tbuf)
245 1.1 cgd return(-1);
246 1.1 cgd recno++;
247 1.1 cgd if (makedumpdate(ddatep, tbuf) < 0)
248 1.1 cgd msg("Unknown intermediate format in %s, line %d\n",
249 1.1 cgd dumpdates, recno);
250 1.1 cgd
251 1.1 cgd #ifdef FDEBUG
252 1.1 cgd msg("getrecord: %s %c %s", ddatep->dd_name, ddatep->dd_level,
253 1.1 cgd ddatep->dd_ddate == 0 ? "the epoch\n" : ctime(&ddatep->dd_ddate));
254 1.1 cgd #endif
255 1.1 cgd return(0);
256 1.1 cgd }
257 1.1 cgd
258 1.2 mycroft static int
259 1.9 lukem makedumpdate(struct dumpdates *ddp, char *tbuf)
260 1.1 cgd {
261 1.2 mycroft char un_buf[128];
262 1.1 cgd
263 1.1 cgd (void) sscanf(tbuf, DUMPINFMT, ddp->dd_name, &ddp->dd_level, un_buf);
264 1.1 cgd ddp->dd_ddate = unctime(un_buf);
265 1.1 cgd if (ddp->dd_ddate < 0)
266 1.1 cgd return(-1);
267 1.1 cgd return(0);
268 1.1 cgd }
269