#include <sys/param.h>
#include <sys/time.h>
#include <ufs/ufs/dinode.h>
#include <protocols/dumprestore.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <limits.h>
#include "dump.h"
int nddates = 0;
struct dumpdates **ddatev = NULL;
char *dumpdates = NULL;
char lastlevel = 0;
int ddates_in = 0;
struct dumptime *dthead = NULL;
static void dumprecout(FILE *, struct dumpdates *);
static int getrecord(FILE *, struct dumpdates *);
static int makedumpdate(struct dumpdates *, char *);
static void readdumptimes(FILE *);
void
initdumptimes(void)
{
FILE *df;
if ((df = fopen(dumpdates, "r")) == NULL) {
if (errno != ENOENT) {
quit("cannot read %s: %s\n", dumpdates,
strerror(errno));
}
msg("WARNING: no file `%s', making an empty one\n", dumpdates);
if ((df = fopen(dumpdates, "w")) == NULL) {
quit("cannot create %s: %s\n", dumpdates,
strerror(errno));
}
(void) fclose(df);
if ((df = fopen(dumpdates, "r")) == NULL) {
quit("cannot read %s even after creating it: %s\n",
dumpdates, strerror(errno));
}
}
(void) flock(fileno(df), LOCK_SH);
readdumptimes(df);
(void) fclose(df);
}
static void
readdumptimes(FILE *df)
{
int i;
struct dumptime *dtwalk;
for (;;) {
dtwalk = calloc(1, sizeof(struct dumptime));
if (dtwalk == NULL)
quit("allocation failed");
if (getrecord(df, &(dtwalk->dt_value)) < 0) {
free(dtwalk);
break;
}
nddates++;
dtwalk->dt_next = dthead;
dthead = dtwalk;
}
ddates_in = 1;
ddatev = calloc((unsigned) (nddates + 1), sizeof(struct dumpdates *));
if (ddatev == NULL)
quit("allocation failed");
dtwalk = dthead;
for (i = nddates - 1; i >= 0; i--, dtwalk = dtwalk->dt_next)
ddatev[i] = &dtwalk->dt_value;
}
void
getdumptime(void)
{
struct dumpdates *ddp;
int i;
char *fname;
fname = duid ? duid : disk;
#ifdef FDEBUG
msg("Looking for name %s in dumpdates = %s for level = %c\n",
fname, dumpdates, level);
#endif
spcl.c_ddate = 0;
lastlevel = '0';
initdumptimes();
ITITERATE(i, ddp) {
if ((strncmp(fname, ddp->dd_name, sizeof(ddp->dd_name)) != 0) &&
(strncmp(disk, ddp->dd_name, sizeof(ddp->dd_name)) != 0))
continue;
if (ddp->dd_level >= level)
continue;
if (ddp->dd_ddate <= (time_t)spcl.c_ddate)
continue;
spcl.c_ddate = (int64_t)ddp->dd_ddate;
lastlevel = ddp->dd_level;
}
}
void
putdumptime(void)
{
FILE *df;
struct dumpdates *dtwalk;
int fd, i;
char *fname, *ct;
time_t t;
if(uflag == 0)
return;
if ((df = fopen(dumpdates, "r+")) == NULL)
quit("cannot rewrite %s: %s\n", dumpdates, strerror(errno));
fd = fileno(df);
(void) flock(fd, LOCK_EX);
fname = duid ? duid : disk;
free(ddatev);
ddatev = NULL;
nddates = 0;
dthead = NULL;
ddates_in = 0;
readdumptimes(df);
if (fseek(df, 0L, SEEK_SET) == -1)
quit("fseek: %s\n", strerror(errno));
spcl.c_ddate = 0;
ITITERATE(i, dtwalk) {
if ((strncmp(fname, dtwalk->dd_name,
sizeof(dtwalk->dd_name)) != 0) &&
(strncmp(disk, dtwalk->dd_name,
sizeof(dtwalk->dd_name)) != 0))
continue;
if (dtwalk->dd_level != level)
continue;
goto found;
}
dtwalk = ddatev[nddates] = calloc(1, sizeof(struct dumpdates));
if (dtwalk == NULL)
quit("allocation failed");
nddates += 1;
found:
(void) strlcpy(dtwalk->dd_name, fname, sizeof(dtwalk->dd_name));
dtwalk->dd_level = level;
dtwalk->dd_ddate = (time_t)spcl.c_date;
ITITERATE(i, dtwalk) {
dumprecout(df, dtwalk);
}
if (fflush(df))
quit("%s: %s\n", dumpdates, strerror(errno));
if (ftruncate(fd, ftello(df)))
quit("ftruncate (%s): %s\n", dumpdates, strerror(errno));
(void) fclose(df);
t = (time_t)spcl.c_date;
if (t == 0)
ct = "the epoch\n";
else if ((ct = ctime(&t)) == NULL)
ct = "?\n";
msg("level %c dump on %s", level, ct);
}
static void
dumprecout(FILE *file, struct dumpdates *what)
{
char *ct;
ct = ctime(&what->dd_ddate);
if (ct == NULL)
quit("Cannot convert date\n");
if (fprintf(file, DUMPOUTFMT,
what->dd_name,
what->dd_level,
ctime(&what->dd_ddate)) < 0)
quit("%s: %s\n", dumpdates, strerror(errno));
}
int recno;
static int
getrecord(FILE *df, struct dumpdates *ddatep)
{
char tbuf[BUFSIZ];
recno = 0;
if (fgets(tbuf, sizeof(tbuf), df) == NULL)
return(-1);
recno++;
if (makedumpdate(ddatep, tbuf) < 0)
msg("Unknown intermediate format in %s, line %d\n",
dumpdates, recno);
#ifdef FDEBUG
{
char *ct;
if (ddatep->dd_ddate == 0)
ct = "the epoch\n";
else
ct = ctime(&ddatep->dd_ddate);
if (ct)
msg("getrecord: %s %c %s", ddatep->dd_name,
ddatep->dd_level, ct);
else
msg("getrecord: %s %c %lld seconds after the epoch\n",
ddatep->dd_name, ddatep->dd_level,
ddatep->dd_ddate);
}
#endif
return(0);
}
static int
makedumpdate(struct dumpdates *ddp, char *tbuf)
{
char un_buf[BUFSIZ], *str;
struct tm then;
if (sscanf(tbuf, DUMPINFMT, ddp->dd_name, &ddp->dd_level, un_buf) != 3)
return(-1);
str = getduid(ddp->dd_name);
if (str != NULL) {
strlcpy(ddp->dd_name, str, sizeof(ddp->dd_name));
free(str);
}
str = strptime(un_buf, "%a %b %e %H:%M:%S %Y", &then);
then.tm_isdst = -1;
if (str == NULL || (*str != '\n' && *str != '\0'))
ddp->dd_ddate = (time_t) -1;
else
ddp->dd_ddate = mktime(&then);
if (ddp->dd_ddate < 0)
return(-1);
return(0);
}