2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
4 * Remy Card <card@Linux.EU.Org>, 1994-1997
5 * Stelian Pop <pop@noos.fr>, 1999-2000
6 * Stelian Pop <pop@noos.fr> - AlcĂ´ve <www.alcove.fr>, 2000
10 * Copyright (c) 1980, 1993
11 * The Regents of the University of California. All rights reserved.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgement:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 static const char rcsid[] =
44 "$Id: itime.c,v 1.16 2001/03/19 13:22:48 stelian Exp $";
56 #include <sys/param.h>
59 #include <linux/ext2_fs.h>
60 #include <ext2fs/ext2fs.h>
62 #include <bsdcompat.h>
66 #include <sys/vnode.h>
68 #include <ufs/fsdir.h>
69 #include <ufs/inode.h>
72 #include <ufs/ufs/dinode.h>
75 #include <protocols/dumprestore.h>
79 struct dumpdates **ddatev;
82 struct dumptime *dthead;
84 static void dumprecout __P((FILE *, struct dumpdates *));
85 static int getrecord __P((FILE *, struct dumpdates *));
86 static int makedumpdate __P((struct dumpdates *, char *));
87 static void readdumptimes __P((FILE *));
90 initdumptimes(int createdumpdates)
94 if ((df = fopen(dumpdates, "r")) == NULL) {
95 if (errno != ENOENT) {
96 quit("cannot read %s: %s\n", dumpdates,
100 if (createdumpdates) {
102 * Dumpdates does not exist, make an empty one.
104 msg("WARNING: no file `%s', making an empty one\n", dumpdates);
105 if ((df = fopen(dumpdates, "w")) == NULL) {
106 quit("cannot create %s: %s\n", dumpdates,
111 if ((df = fopen(dumpdates, "r")) == NULL) {
112 quit("cannot read %s even after creating it: %s\n",
113 dumpdates, strerror(errno));
118 msg("WARNING: no file `%s'\n", dumpdates);
121 (void) flock(fileno(df), LOCK_SH);
128 readdumptimes(FILE *df)
131 register struct dumptime *dtwalk;
134 dtwalk = (struct dumptime *)calloc(1, sizeof (struct dumptime));
135 if (getrecord(df, &(dtwalk->dt_value)) < 0)
138 dtwalk->dt_next = dthead;
144 * arrayify the list, leaving enough room for the additional
145 * record that we may have to add to the ddate structure
147 ddatev = (struct dumpdates **)
148 calloc((unsigned) (nddates + 1), sizeof (struct dumpdates *));
150 for (i = nddates - 1; i >= 0; i--, dtwalk = dtwalk->dt_next)
151 ddatev[i] = &dtwalk->dt_value;
155 getdumptime(int createdumpdates)
157 register struct dumpdates *ddp;
161 msg("Looking for name %s in dumpdates = %s for level = %c\n",
162 disk, dumpdates, level);
167 /* If this is a level 0 dump, and we're not updating
168 dumpdates, there's no point in trying to read
169 dumpdates. It may not exist yet, or may not be mounted. For
170 incrementals, we *must* read dumpdates (fail if it's not there!) */
171 if ( (level == lastlevel) && !createdumpdates)
173 initdumptimes(createdumpdates);
177 * Go find the entry with the same name for a lower increment
181 if (strncmp(disk, ddp->dd_name, sizeof (ddp->dd_name)) != 0)
183 if (ddp->dd_level >= level)
186 if (ddp->dd_ddate <= (time_t)spcl.c_ddate)
188 if (ddp->dd_ddate <= spcl.c_ddate)
191 spcl.c_ddate = ddp->dd_ddate;
192 lastlevel = ddp->dd_level;
200 register struct dumpdates *dtwalk;
206 if ((df = fopen(dumpdates, "r+")) == NULL)
207 quit("cannot rewrite %s: %s\n", dumpdates, strerror(errno));
209 (void) flock(fd, LOCK_EX);
210 free((char *)ddatev);
216 if (fseek(df, 0L, 0) < 0)
217 quit("fseek: %s\n", strerror(errno));
219 ITITERATE(i, dtwalk) {
220 if (strncmp(disk, dtwalk->dd_name,
221 sizeof (dtwalk->dd_name)) != 0)
223 if (dtwalk->dd_level != level)
228 * construct the new upper bound;
229 * Enough room has been allocated.
231 dtwalk = ddatev[nddates] =
232 (struct dumpdates *)calloc(1, sizeof (struct dumpdates));
235 (void) strncpy(dtwalk->dd_name, disk, sizeof (dtwalk->dd_name));
236 dtwalk->dd_level = level;
237 dtwalk->dd_ddate = spcl.c_date;
239 ITITERATE(i, dtwalk) {
240 dumprecout(df, dtwalk);
243 quit("%s: %s\n", dumpdates, strerror(errno));
244 if (ftruncate(fd, ftell(df)))
245 quit("ftruncate (%s): %s\n", dumpdates, strerror(errno));
247 msg("level %c dump on %s", level,
249 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
251 spcl.c_date == 0 ? "the epoch\n" : ctime(&spcl.c_date));
256 dumprecout(FILE *file, struct dumpdates *what)
259 if (fprintf(file, "%s %c %s",
262 ctime(&what->dd_ddate)) < 0)
263 quit("%s: %s\n", dumpdates, strerror(errno));
269 getrecord(FILE *df, struct dumpdates *ddatep)
274 if (fgets(tbuf, sizeof (tbuf), df) == NULL)
277 if (makedumpdate(ddatep, tbuf) < 0)
278 msg("Unknown intermediate format in %s, line %d\n",
282 msg("getrecord: %s %c %s", ddatep->dd_name, ddatep->dd_level,
283 ddatep->dd_ddate == 0 ? "the epoch\n" : ctime(&ddatep->dd_ddate));
289 makedumpdate(struct dumpdates *ddp, char *tbuf)
294 if ( NULL == (tok = strsep( &tbuf, " ")) )
296 if ( strlen(tok) > MAXPATHLEN )
298 strcpy(ddp->dd_name, tok);
301 for( ; *tbuf == ' ' ; tbuf++);
304 ddp->dd_level = *tbuf;
308 for( ; *tbuf == ' ' ; tbuf++);
311 ddp->dd_ddate = unctime(tbuf);
312 if (ddp->dd_ddate < 0)
315 ddp->dd_fstab = fstabsearch(ddp->dd_name);