#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <vfs/ufs/dinode.h>
#include <vfs/ufs/fs.h>
#include <protocols/dumprestore.h>
#include <ctype.h>
#include <err.h>
#include <fcntl.h>
#include <fstab.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "dump.h"
#include "pathnames.h"
int mapsize;
char *usedinomap;
char *dumpdirmap;
char *dumpinomap;
#ifndef SBOFF
#define SBOFF (SBLOCK * DEV_BSIZE)
#endif
char *disk;
const char *tape;
int level;
int uflag;
int diskfd;
int pipeout;
int density = 0;
long tapesize;
long tsize;
int etapes;
int nonodump;
int unlimited;
int cachesize = 0;
int notify = 0;
int blockswritten = 0;
int tapeno = 0;
int ntrec = NTREC;
long blocksperfile;
int cartridge = 0;
int dokerberos = 0;
long dev_bsize = 1;
const char *host;
time_t tstart_writing;
time_t tend_writing;
int passno;
struct fs *sblock;
int dev_bshift;
int tp_bshift;
char sblock_buf[MAXBSIZE];
static long numarg(const char *, long, long);
static void obsolete(int *, char **[]);
static void usage(void);
int
main(int argc, char **argv)
{
struct stat sb;
ufs1_ino_t ino;
int dirty;
struct ufs1_dinode *dp;
struct fstab *dt;
char *map;
int ch;
int i, anydirskipped, bflag = 0, Tflag = 0, honorlevel = 1;
int just_estimate = 0;
ufs1_ino_t maxino;
spcl.c_date = 0;
time((time_t *)&spcl.c_date);
tsize = 0;
if ((tape = getenv("TAPE")) == NULL)
tape = _PATH_DEFTAPE;
dumpdates = _PATH_DUMPDATES;
if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0)
quit("TP_BSIZE must be a multiple of DEV_BSIZE\n");
level = '0';
if (argc < 2)
usage();
obsolete(&argc, &argv);
#ifdef KERBEROS
#define optstring "0123456789aB:b:cd:f:h:kns:ST:uWwD:C:"
#else
#define optstring "0123456789aB:b:cd:f:h:ns:ST:uWwD:C:"
#endif
while ((ch = getopt(argc, argv, optstring)) != -1)
#undef optstring
switch (ch) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
level = ch;
break;
case 'a':
unlimited = 1;
break;
case 'B':
blocksperfile = numarg("number of blocks per file",
1L, 0L);
break;
case 'b':
ntrec = numarg("number of blocks per write",
1L, 1000L);
break;
case 'c':
cartridge = 1;
break;
case 'd':
density = numarg("density", 10L, 327670L) / 10;
if (density >= 625 && !bflag)
ntrec = HIGHDENSITYTREC;
break;
case 'f':
tape = optarg;
break;
case 'D':
dumpdates = optarg;
break;
case 'C':
cachesize = numarg("cachesize", 0, 0) * 1024 * 1024;
break;
case 'h':
honorlevel = numarg("honor level", 0L, 10L);
break;
#ifdef KERBEROS
case 'k':
dokerberos = 1;
break;
#endif
case 'n':
notify = 1;
break;
case 's':
tsize = numarg("tape size", 1L, 0L) * 12 * 10;
break;
case 'S':
just_estimate = 1;
break;
case 'T':
spcl.c_ddate = unctime(optarg);
if (spcl.c_ddate < 0) {
fprintf(stderr, "bad time \"%s\"\n", optarg);
exit(X_STARTUP);
}
Tflag = 1;
lastlevel = '?';
break;
case 'u':
uflag = 1;
break;
case 'W':
case 'w':
lastdump(ch);
exit(X_FINOK);
default:
usage();
}
argc -= optind;
argv += optind;
if (argc < 1) {
fprintf(stderr, "Must specify disk or filesystem\n");
exit(X_STARTUP);
}
disk = *argv++;
argc--;
if (argc >= 1) {
fprintf(stderr, "Unknown arguments to dump:");
while (argc--)
fprintf(stderr, " %s", *argv++);
fprintf(stderr, "\n");
exit(X_STARTUP);
}
if (Tflag && uflag) {
fprintf(stderr, "You cannot use the T and u flags together.\n");
exit(X_STARTUP);
}
if (strcmp(tape, "-") == 0) {
pipeout++;
tape = "standard output";
}
if (blocksperfile)
blocksperfile = rounddown(blocksperfile, ntrec);
else if (!unlimited) {
if (density == 0)
density = cartridge ? 100 : 160;
if (tsize == 0)
tsize = cartridge ? 1700L*120L : 2300L*120L;
}
if (strchr(tape, ':')) {
char *ehost;
if ((host = strdup(tape)) == NULL)
err(1, "strdup failed");
ehost = strchr(host, ':');
*ehost++ = '\0';
tape = ehost;
#ifdef RDUMP
if (strchr(tape, '\n')) {
fprintf(stderr, "invalid characters in tape\n");
exit(X_STARTUP);
}
if (rmthost(host) == 0)
exit(X_STARTUP);
#else
fprintf(stderr, "remote dump not enabled\n");
exit(X_STARTUP);
#endif
}
setuid(getuid());
if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
signal(SIGHUP, sig);
if (signal(SIGTRAP, SIG_IGN) != SIG_IGN)
signal(SIGTRAP, sig);
if (signal(SIGFPE, SIG_IGN) != SIG_IGN)
signal(SIGFPE, sig);
if (signal(SIGBUS, SIG_IGN) != SIG_IGN)
signal(SIGBUS, sig);
if (signal(SIGSEGV, SIG_IGN) != SIG_IGN)
signal(SIGSEGV, sig);
if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
signal(SIGTERM, sig);
if (signal(SIGINT, interrupt) == SIG_IGN)
signal(SIGINT, SIG_IGN);
dump_getfstab();
dt = fstabsearch(disk);
if (dt != NULL) {
disk = rawname(dt->fs_spec);
strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
} else {
strncpy(spcl.c_dev, disk, NAMELEN);
strncpy(spcl.c_filesys, "an unlisted file system", NAMELEN);
}
spcl.c_dev[NAMELEN-1]='\0';
spcl.c_filesys[NAMELEN-1]='\0';
strcpy(spcl.c_label, "none");
gethostname(spcl.c_host, NAMELEN);
spcl.c_level = level - '0';
spcl.c_type = TS_TAPE;
if (!Tflag)
getdumptime();
msg("Date of this level %c dump: %s", level,
spcl.c_date == 0 ? "the epoch\n" : ctime((const time_t *)&spcl.c_date));
msg("Date of last level %c dump: %s", lastlevel,
spcl.c_ddate == 0 ? "the epoch\n" : ctime((const time_t *)&spcl.c_ddate));
msg("Dumping %s ", disk);
if (dt != NULL)
msgtail("(%s) ", dt->fs_file);
if (host)
msgtail("to %s on host %s\n", tape, host);
else
msgtail("to %s\n", tape);
if ((diskfd = open(disk, O_RDONLY)) < 0)
err(X_STARTUP, "Cannot open %s", disk);
if (fstat(diskfd, &sb) != 0)
err(X_STARTUP, "%s: stat", disk);
if (S_ISDIR(sb.st_mode))
errx(X_STARTUP, "%s: unknown file system", disk);
sync();
sblock = (struct fs *)sblock_buf;
bread(SBOFF, (char *) sblock, SBSIZE);
if (sblock->fs_magic != FS_MAGIC)
quit("bad sblock magic number\n");
dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
dev_bshift = ffs(dev_bsize) - 1;
if (dev_bsize != (1 << dev_bshift))
quit("dev_bsize (%ld) is not a power of 2", dev_bsize);
tp_bshift = ffs(TP_BSIZE) - 1;
if (TP_BSIZE != (1 << tp_bshift))
quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
#ifdef FS_44INODEFMT
if (sblock->fs_inodefmt >= FS_44INODEFMT)
spcl.c_flags |= DR_NEWINODEFMT;
#endif
maxino = sblock->fs_ipg * sblock->fs_ncg;
mapsize = roundup(howmany(maxino, NBBY), TP_BSIZE);
usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char));
dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
tapesize = 3 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
nonodump = spcl.c_level < honorlevel;
passno = 1;
setproctitle("%s: pass 1: regular files", disk);
msg("mapping (Pass I) [regular files]\n");
anydirskipped = mapfiles(maxino, &tapesize);
passno = 2;
setproctitle("%s: pass 2: directories", disk);
msg("mapping (Pass II) [directories]\n");
while (anydirskipped) {
anydirskipped = mapdirs(maxino, &tapesize);
}
if (pipeout || unlimited) {
tapesize += 10;
msg("estimated %ld tape blocks.\n", tapesize);
} else {
double fetapes;
if (blocksperfile)
fetapes = (double) tapesize / blocksperfile;
else if (cartridge) {
fetapes =
( (double) tapesize
* TP_BSIZE
* (1.0/density)
+
(double) tapesize
* (1.0/ntrec)
* 15.48
) * (1.0 / tsize );
} else {
int tenthsperirg = (density == 625) ? 3 : 7;
fetapes =
( (double) tapesize
* TP_BSIZE
* (1.0/density)
+
(double) tapesize
* (1.0/ntrec)
* tenthsperirg
) * (1.0 / tsize );
}
etapes = fetapes;
etapes++;
tapesize += (etapes - 1) *
(howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
tapesize += etapes + 10;
msg("estimated %ld tape blocks on %3.2f tape(s).\n",
tapesize, fetapes);
}
if (just_estimate)
exit(0);
if (!alloctape())
quit(
"can't allocate tape buffers - try a smaller blocking factor.\n");
startnewtape(1);
time((time_t *)&(tstart_writing));
dumpmap(usedinomap, TS_CLRI, maxino - 1);
passno = 3;
setproctitle("%s: pass 3: directories", disk);
msg("dumping (Pass III) [directories]\n");
dirty = 0;
for (map = dumpdirmap, ino = 1; ino < maxino; ino++) {
if (((ino - 1) % NBBY) == 0)
dirty = *map++;
else
dirty >>= 1;
if ((dirty & 1) == 0)
continue;
dp = getino(ino);
if ((dp->di_mode & IFMT) != IFDIR)
continue;
dumpino(dp, ino);
}
passno = 4;
setproctitle("%s: pass 4: regular files", disk);
msg("dumping (Pass IV) [regular files]\n");
for (map = dumpinomap, ino = 1; ino < maxino; ino++) {
int mode;
if (((ino - 1) % NBBY) == 0)
dirty = *map++;
else
dirty >>= 1;
if ((dirty & 1) == 0)
continue;
dp = getino(ino);
mode = dp->di_mode & IFMT;
if (mode == IFDIR)
continue;
dumpino(dp, ino);
}
time(&tend_writing);
spcl.c_type = TS_END;
for (i = 0; i < ntrec; i++)
writeheader(maxino - 1);
if (pipeout)
msg("DUMP: %ld tape blocks\n", (long)spcl.c_tapea);
else
msg("DUMP: %ld tape blocks on %d volume%s\n",
(long)spcl.c_tapea, spcl.c_volume,
(spcl.c_volume == 1) ? "" : "s");
if (tend_writing - tstart_writing == 0)
msg("finished in less than a second\n");
else
msg("finished in %ld seconds, throughput %ld KBytes/sec\n",
(long)(tend_writing - tstart_writing),
spcl.c_tapea / (tend_writing - tstart_writing));
putdumptime();
trewind();
broadcast("DUMP IS DONE!\a\a\n");
msg("DUMP IS DONE\n");
Exit(X_FINOK);
}
static void
usage(void)
{
fprintf(stderr,
"usage: dump [-0123456789ac"
#ifdef KERBEROS
"k"
#endif
"nSu] [-B records] [-b blocksize] [-D dumpdates]\n"
" [-d density] [-f file ] [-h level] [-s feet]\n"
" [-T date] [-C cachesizeMB] filesystem\n"
" dump [-W | -w]\n");
exit(X_STARTUP);
}
static long
numarg(const char *meaning, long vmin, long vmax)
{
char *p;
long val;
val = strtol(optarg, &p, 10);
if (*p)
errx(1, "illegal %s -- %s", meaning, optarg);
if (val < vmin || (vmax && val > vmax))
errx(1, "%s must be between %ld and %ld", meaning, vmin, vmax);
return (val);
}
void
sig(int signo)
{
switch(signo) {
case SIGALRM:
case SIGBUS:
case SIGFPE:
case SIGHUP:
case SIGTERM:
case SIGTRAP:
if (pipeout)
quit("Signal on pipe: cannot recover\n");
msg("Rewriting attempted as response to unknown signal.\n");
fflush(stderr);
fflush(stdout);
close_rewind();
exit(X_REWRITE);
case SIGSEGV:
msg("SIGSEGV: ABORTING!\n");
signal(SIGSEGV, SIG_DFL);
kill(0, SIGSEGV);
}
}
char *
rawname(char *cp)
{
static char rawbuf[MAXPATHLEN];
char *dp;
struct stat sb;
if (stat(cp, &sb) == 0) {
if ((sb.st_mode & S_IFMT) == S_IFCHR)
return (cp);
}
dp = strrchr(cp, '/');
if (dp == NULL)
return (NULL);
*dp = '\0';
strncpy(rawbuf, cp, MAXPATHLEN - 1);
rawbuf[MAXPATHLEN-1] = '\0';
*dp = '/';
strncat(rawbuf, "/r", MAXPATHLEN - 1 - strlen(rawbuf));
strncat(rawbuf, dp + 1, MAXPATHLEN - 1 - strlen(rawbuf));
return (rawbuf);
}
static void
obsolete(int *argcp, char ***argvp)
{
int argc, flags;
char *ap, **argv, *flagsp, **nargv, *p;
argv = *argvp;
argc = *argcp;
ap = argv[1];
if (argc == 1 || *ap == '-')
return;
if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
(p = flagsp = malloc(strlen(ap) + 2)) == NULL)
err(1, NULL);
*nargv++ = *argv;
argv += 2;
for (flags = 0; *ap; ++ap) {
switch (*ap) {
case 'B':
case 'b':
case 'd':
case 'f':
case 'D':
case 'C':
case 'h':
case 's':
case 'T':
if (*argv == NULL) {
warnx("option requires an argument -- %c", *ap);
usage();
}
if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
err(1, NULL);
nargv[0][0] = '-';
nargv[0][1] = *ap;
strcpy(&nargv[0][2], *argv);
++argv;
++nargv;
break;
default:
if (!flags) {
*p++ = '-';
flags = 1;
}
*p++ = *ap;
break;
}
}
if (flags) {
*p = '\0';
*nargv++ = flagsp;
}
while ((*nargv++ = *argv++));
*argcp = nargv - *argvp - 1;
}