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 <stelian@popies.net>, 1999-2000
6 * Stelian Pop <stelian@popies.net> - AlcĂ´ve <www.alcove.com>, 2000-2002
10 * Copyright (c) 1980, 1991, 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. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 static const char rcsid[] =
40 "$Id: tape.c,v 1.87 2004/11/22 10:32:32 stelian Exp $";
44 #include <compatlfs.h>
50 #include <compaterr.h>
61 #include <sys/types.h>
63 #include <sys/ioctl.h>
64 #include <sys/mount.h> /* for definition of BLKFLSBUF */
65 #ifndef BLKFLSBUF /* last resort... */
66 #define BLKFLSBUF _IO(0x12, 97) /* Flush buffer cache. */
70 #include <sys/param.h>
71 #include <sys/socket.h>
75 #ifdef HAVE_EXT2FS_EXT2_FS_H
76 #include <ext2fs/ext2_fs.h>
78 #include <linux/ext2_fs.h>
80 #include <ext2fs/ext2fs.h>
82 #include <bsdcompat.h>
84 #include <sys/vnode.h>
87 #include <ufs/inode.h>
89 #include <ufs/ufs/dinode.h>
90 #include <ufs/ffs/fs.h>
91 #endif /* __linux__ */
93 #include <protocols/dumprestore.h>
97 #endif /* HAVE_ZLIB */
101 #endif /* HAVE_BZLIB */
105 #endif /* HAVE_LZO */
109 int writesize; /* size of malloc()ed buffer for tape */
110 long lastspclrec = -1; /* tape block number of last written header */
111 int trecno = 0; /* next record to write in current block */
112 extern long *blocksperfiles; /* number of blocks per output file(s) */
113 long blocksperfiles_current; /* current position in blocksperfiles */
114 long blocksthisvol; /* number of blocks on current output file */
115 extern int ntrec; /* blocking factor on tape */
116 extern int cartridge;
120 long long tapea_bytes = 0; /* bytes_written at start of current volume */
121 static int magtapeout; /* output is really a tape */
123 static ssize_t dump_atomic_read __P((int, char *, size_t));
124 static ssize_t dump_atomic_write __P((int, const char *, size_t));
126 static void doslave __P((int, int, int));
128 static void doslave __P((int, int));
130 static void enslave __P((void));
131 static void flushtape __P((void));
132 static void killall __P((void));
133 static void rollforward __P((void));
135 static int GetTapePos __P((long long *));
136 static int MkTapeString __P((struct s_spcl *, long long));
137 #define FILESQFAPOS 20
141 * Concurrent dump mods (Caltech) - disk block reading and tape writing
142 * are exported to several slave processes. While one slave writes the
143 * tape, the others read disk blocks; they pass control of the tape in
144 * a ring via signals. The parent process traverses the filesystem and
145 * sends writeheader()'s and lists of daddr's to the slaves via pipes.
146 * The following structure defines the instruction packets sent to slaves.
154 struct slave_results {
155 ssize_t unclen; /* uncompressed length */
156 ssize_t clen; /* compressed length */
159 #define SLAVES 3 /* 1 slave writing, 1 reading, 1 for slack */
161 int tapea; /* header number at start of this chunk */
162 int count; /* count to next header (used for TS_TAPE */
164 int inode; /* inode that we are currently dealing with */
165 int fd; /* FD for this slave */
166 int pid; /* PID for this slave */
167 int sent; /* 1 == we've sent this slave requests */
168 int firstrec; /* record number of this block */
169 char (*tblock)[TP_BSIZE]; /* buffer for data blocks */
170 struct req *req; /* buffer for requests */
174 char (*nextblock)[TP_BSIZE];
176 static time_t tstart_volume; /* time of volume start */
177 static int tapea_volume; /* value of spcl.c_tapea at volume start */
179 int master; /* pid of master, for sending error signals */
180 int tenths; /* length of tape overhead per block written */
181 static int caught; /* have we caught the signal to proceed? */
182 static int ready; /* have we reached the lock point without having */
183 /* received the SIGUSR2 signal from the prev slave? */
184 static sigjmp_buf jmpbuf; /* where to jump to if we are ready when the */
185 /* SIGUSR2 arrives from the previous slave */
187 static int gtperr = 0;
193 int pgoff = getpagesize() - 1;
197 writesize = ntrec * TP_BSIZE;
198 reqsiz = (ntrec + 1) * sizeof(struct req);
200 * CDC 92181's and 92185's make 0.8" gaps in 1600-bpi start/stop mode
201 * (see DEC TU80 User's Guide). The shorter gaps of 6250-bpi require
202 * repositioning after stopping, i.e, streaming mode, where the gap is
203 * variable, 0.30" to 0.45". The gap is maximal when the tape stops.
205 if (!blocksperfiles && !unlimited)
206 tenths = (cartridge ? 16 : density == 625 ? 5 : 8);
212 * Allocate tape buffer contiguous with the array of instruction
213 * packets, so flushtape() can write them together with one write().
214 * Align tape buffer on page boundary to speed up tape write().
216 for (i = 0; i <= SLAVES; i++) {
218 malloc((unsigned)(reqsiz + writesize + pgoff + TP_BSIZE));
221 slaves[i].tblock = (char (*)[TP_BSIZE])
223 (((long)&buf[reqsiz] + pgoff) &~ pgoff);
225 (((long)&buf[ntrec + 1] + pgoff) &~ pgoff);
227 slaves[i].req = (struct req *)slaves[i].tblock - ntrec - 1;
233 nextblock = slp->tblock;
238 writerec(const void *dp, int isspcl)
241 slp->req[trecno].dblk = (ext2_loff_t)0;
242 slp->req[trecno].count = 1;
243 /* XXX post increment triggers an egcs-1.1.2-12 bug on alpha/sparc */
244 *(union u_spcl *)(*(nextblock)) = *(union u_spcl *)dp;
246 /* Need to write it to the archive file */
247 if (! AfileActive && isspcl && (spcl.c_type == TS_END))
249 if (AfileActive && Afile >= 0) {
250 /* When we dump an inode which is not a directory,
251 * it means we ended the archive contents */
252 if (isspcl && (spcl.c_type == TS_INODE) &&
253 ((spcl.c_dinode.di_mode & S_IFMT) != IFDIR))
257 tmp = *(union u_spcl *)dp;
258 /* Write the record, _uncompressed_ */
260 tmp.s_spcl.c_flags &= ~DR_COMPRESSED;
263 if (write(Afile, &tmp, TP_BSIZE) != TP_BSIZE)
264 msg("error writing archive file: %s\n",
271 lastspclrec = spcl.c_tapea;
279 dumpblock(blk_t blkno, int size)
284 dblkno = fsbtodb(sblock, blkno);
285 tpblks = size >> tp_bshift;
286 while ((avail = MIN(tpblks, ntrec - trecno)) > 0) {
287 slp->req[trecno].dblk = dblkno;
288 slp->req[trecno].count = avail;
290 spcl.c_tapea += avail;
293 dblkno += avail << (tp_bshift - dev_bshift);
305 msg("write error on %s: %s\n", tape, strerror(errnum));
306 quit("Cannot recover\n");
309 msg("write error %d blocks into volume %d: %s\n",
310 blocksthisvol, tapeno, strerror(errnum));
311 broadcast("DUMP WRITE ERROR!\n");
312 if (query("Do you want to rewrite this volume?")) {
313 msg("Closing this volume. Prepare to restart with new media;\n");
314 msg("this dump volume will be rewritten.\n");
320 if (query("Do you want to start the next tape?"))
326 sigpipe(UNUSED(int signo))
329 quit("Broken pipe\n");
334 * Update xferrate stats
343 ttaken = tnow - tstart_volume;
344 blocks = spcl.c_tapea - tapea_volume;
345 msg("Volume %d completed at: %s", tapeno, ctime(&tnow));
347 msg("Volume %d %ld blocks (%.2fMB)\n", tapeno,
348 blocks, ((double)blocks * TP_BSIZE / 1048576));
350 long volkb = (bytes_written - tapea_bytes) / 1024;
351 long txfrate = volkb / ttaken;
352 msg("Volume %d took %d:%02d:%02d\n", tapeno,
353 ttaken / 3600, (ttaken % 3600) / 60, ttaken % 60);
354 msg("Volume %d transfer rate: %ld kB/s\n", tapeno,
358 double rate = .0005 + (double) blocks / (double) volkb;
359 msg("Volume %d %ldkB uncompressed, %ldkB compressed,"
361 tapeno, blocks, volkb, rate);
368 mktimeest(time_t tnow)
370 static char msgbuf[128];
375 if (blockswritten < 500)
377 if (blockswritten > tapesize)
378 tapesize = blockswritten;
379 deltat = tstart_writing - tnow + (1.0 * (tnow - tstart_writing))
380 / blockswritten * tapesize;
381 if (tnow > tstart_volume)
382 (void)snprintf(msgbuf, sizeof(msgbuf),
383 "%3.2f%% done at %ld kB/s, finished in %d:%02d\n",
384 (blockswritten * 100.0) / tapesize,
385 (spcl.c_tapea - tapea_volume) / (tnow - tstart_volume),
386 (int)(deltat / 3600), (int)((deltat % 3600) / 60));
388 (void)snprintf(msgbuf, sizeof(msgbuf),
389 "%3.2f%% done, finished in %d:%02d\n",
390 (blockswritten * 100.0) / tapesize,
391 (int)(deltat / 3600), (int)((deltat % 3600) / 60));
399 * information message upon receipt of SIGINFO
402 statussig(int notused)
404 int save_errno = errno;
407 buf = mktimeest(time(NULL));
409 write(STDERR_FILENO, buf, strlen(buf));
419 struct slave_results returned;
421 int siz = (char *)nextblock - (char *)slp->req;
423 slp->req[trecno].count = 0; /* Sentinel */
425 if (dump_atomic_write( slp->fd, (char *)slp->req, siz) != siz)
426 quit("error writing command pipe: %s\n", strerror(errno));
427 slp->sent = 1; /* we sent a request, read the response later */
429 lastfirstrec = slp->firstrec;
431 if (++slp >= &slaves[SLAVES])
434 /* Read results back from next slave */
436 if (dump_atomic_read( slp->fd, (char *)&returned, sizeof returned)
437 != sizeof returned) {
438 perror(" DUMP: error reading command pipe in master");
441 got = returned.unclen;
442 bytes_written += returned.clen;
443 if (returned.unclen == returned.clen)
447 /* Check for errors or end of tape */
449 /* Check for errors */
453 msg("End of tape detected\n");
456 * Drain the results, don't care what the values were.
457 * If we read them here then trewind won't...
459 for (i = 0; i < SLAVES; i++) {
460 if (slaves[i].sent) {
461 if (dump_atomic_read( slaves[i].fd,
462 (char *)&returned, sizeof returned)
463 != sizeof returned) {
464 perror(" DUMP: error reading command pipe in master");
478 if (spcl.c_type == TS_CLRI || spcl.c_type == TS_BITS)
481 if (spcl.c_type != TS_END) {
482 for (i = 0; i < spcl.c_count; i++)
483 if (spcl.c_addr[i] != 0)
487 slp->count = lastspclrec + blks + 1 - spcl.c_tapea;
488 slp->tapea = spcl.c_tapea;
489 slp->firstrec = lastfirstrec + ntrec;
491 nextblock = slp->tblock;
493 asize += tenths + returned.clen / density;
494 blockswritten += ntrec;
495 blocksthisvol += ntrec;
496 if (!pipeout && !unlimited) {
497 if (blocksperfiles && blocksperfiles[blocksperfiles_current]) {
498 if ( compressed ? (bytes_written - tapea_bytes + SLAVES * (writesize + sizeof(struct tapebuf))) >= (((long long)blocksperfiles[blocksperfiles_current]) * 1024)
499 : blocksthisvol >= blocksperfiles[blocksperfiles_current] ) {
504 else if (asize > tsize) {
517 struct slave_results returned;
519 for (f = 0; f < SLAVES; f++) {
521 * Drain the results, but unlike EOT we DO (or should) care
522 * what the return values were, since if we detect EOT after
523 * we think we've written the last blocks to the tape anyway,
524 * we have to replay those blocks with rollforward.
526 * fixme: punt for now.
528 if (slaves[f].sent) {
529 if (dump_atomic_read( slaves[f].fd, (char *)&returned, sizeof returned)
530 != sizeof returned) {
531 perror(" DUMP: error reading command pipe in master");
534 got = returned.unclen;
535 bytes_written += returned.clen;
536 if (returned.unclen == returned.clen)
544 msg("EOT detected in last 2 tape records!\n");
545 msg("Use a longer tape, decrease the size estimate\n");
546 quit("or use no size estimate at all.\n");
549 (void) close(slaves[f].fd);
551 while (wait((int *)NULL) >= 0) /* wait for any signals from slaves */
556 msg("Closing %s\n", tape);
561 while (rmtopen(tape, O_RDONLY) < 0)
568 (void) close(tapefd);
570 while ((f = OPEN(tape, O_RDONLY)) < 0)
586 msg("Launching %s\n", eot_script);
587 eot_code = system_command(eot_script, tape, tapeno);
589 if (eot_code != 0 && eot_code != 1) {
590 msg("Dump aborted by the end of tape script\n");
595 if (nexttape || Mflag)
598 msg("Change Volumes: Mount volume #%d\n", tapeno+1);
599 broadcast("CHANGE DUMP VOLUMES!\7\7\n");
601 while (!query("Is the new volume mounted and ready to go?"))
602 if (query("Do you want to abort?")) {
611 struct req *p, *q = NULL, *prev;
613 int i, size, savedtapea, got;
614 union u_spcl *ntb, *otb;
615 struct slave_results returned;
620 tslp = &slaves[SLAVES];
621 ntb = (union u_spcl *)tslp->tblock[1];
624 * Each of the N slaves should have requests that need to
625 * be replayed on the next tape. Use the extra slave buffers
626 * (slaves[SLAVES]) to construct request lists to be sent to
627 * each slave in turn.
629 for (i = 0; i < SLAVES; i++) {
631 otb = (union u_spcl *)slp->tblock;
634 * For each request in the current slave, copy it to tslp.
638 for (p = slp->req; p->count > 0; p += p->count) {
641 *ntb++ = *otb++; /* copy the datablock also */
646 quit("rollforward: protocol botch");
658 nextblock = tslp->tblock;
659 savedtapea = spcl.c_tapea;
660 spcl.c_tapea = slp->tapea;
662 spcl.c_tapea = savedtapea;
663 lastspclrec = savedtapea - 1;
665 size = (char *)ntb - (char *)q;
666 if (dump_atomic_write( slp->fd, (char *)q, size) != size) {
667 perror(" DUMP: error writing command pipe");
672 lastfirstrec = slp->firstrec;
674 if (++slp >= &slaves[SLAVES])
679 if (prev->dblk != 0) {
681 * If the last one was a disk block, make the
682 * first of this one be the last bit of that disk
685 q->dblk = prev->dblk +
686 prev->count * (TP_BSIZE / DEV_BSIZE);
687 ntb = (union u_spcl *)tslp->tblock;
690 * It wasn't a disk block. Copy the data to its
691 * new location in the buffer.
694 *((union u_spcl *)tslp->tblock) = *ntb;
695 ntb = (union u_spcl *)tslp->tblock[1];
699 nextblock = slp->tblock;
702 /* XXX post increment triggers an egcs-1.1.2-12 bug on alpha/sparc */
703 *(union u_spcl *)(*nextblock) = *(union u_spcl *)tslp->tblock;
710 * Clear the first slaves' response. One hopes that it
711 * worked ok, otherwise the tape is much too short!
714 if (dump_atomic_read( slp->fd, (char *)&returned, sizeof returned)
715 != sizeof returned) {
716 perror(" DUMP: error reading command pipe in master");
719 got = returned.unclen;
720 bytes_written += returned.clen;
721 if (returned.clen == returned.unclen)
729 quit("EOT detected at start of the tape!\n");
735 if (spcl.c_type != TS_END) {
736 for (i = 0; i < spcl.c_count; i++)
737 if (spcl.c_addr[i] != 0)
741 slp->firstrec = lastfirstrec + ntrec;
742 slp->count = lastspclrec + blks + 1 - spcl.c_tapea;
744 asize += tenths + returned.clen / density;
745 blockswritten += ntrec;
746 blocksthisvol += ntrec;
751 * We implement taking and restoring checkpoints on the tape level.
752 * When each tape is opened, a new process is created by forking; this
753 * saves all of the necessary context in the parent. The child
754 * continues the dump; the parent waits around, saving the context.
755 * If the child returns X_REWRITE, then it had problems writing that tape;
756 * this causes the parent to fork again, duplicating the context, and
757 * everything continues as if nothing had happened.
760 startnewtape(int top)
771 sigaddset(&sigs, SIGINT);
772 sigprocmask(SIG_BLOCK, &sigs, NULL);
773 #else /* __linux__ */
775 void (*interrupt_save)();
777 sig_t interrupt_save;
779 interrupt_save = signal(SIGINT, SIG_IGN);
780 #endif /* __linux__ */
782 parentpid = getpid();
783 tapea_volume = spcl.c_tapea;
784 tapea_bytes = bytes_written;
785 tstart_volume = time(NULL);
789 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
791 (void)signal(SIGINT, interrupt_save);
794 * All signals are inherited...
798 msg("Context save fork fails in parent %d\n", parentpid);
804 * save the context by waiting
805 * until the child doing all of the work returns.
806 * don't catch the interrupt
809 sigprocmask(SIG_BLOCK, &sigs, NULL);
811 signal(SIGINT, SIG_IGN);
814 msg("Tape: %d; parent process: %d child process %d\n",
815 tapeno+1, parentpid, childpid);
817 while ((waitpid = wait(&status)) != childpid)
818 if (waitpid != rshpid)
819 msg("Parent %d waiting for child %d has another child %d return\n",
820 parentpid, childpid, waitpid);
822 msg("Child %d returns LOB status %o\n",
823 childpid, status&0xFF);
825 status = (status >> 8) & 0xFF;
829 msg("Child %d finishes X_FINOK\n", childpid);
832 msg("Child %d finishes X_ABORT\n", childpid);
835 msg("Child %d finishes X_REWRITE\n", childpid);
838 msg("Child %d finishes unknown %d\n",
849 goto restore_check_point;
851 msg("Bad return code from dump: %d\n", status);
855 } else { /* we are the child; just continue */
857 sleep(4); /* allow time for parent's message to get out */
858 msg("Child on Tape %d has parent %d, my pid = %d\n",
859 tapeno+1, parentpid, getpid());
862 * If we have a name like "/dev/rmt0,/dev/rmt1",
863 * use the name before the comma first, and save
864 * the remaining names for subsequent volumes.
866 tapeno++; /* current tape sequence */
868 snprintf(tape, MAXPATHLEN, "%s%03d", tapeprefix, tapeno);
869 tape[MAXPATHLEN - 1] = '\0';
870 msg("Dumping volume %d on %s\n", tapeno, tape);
872 else if (nexttape || strchr(tapeprefix, ',')) {
873 if (nexttape && *nexttape)
874 tapeprefix = nexttape;
875 if ((p = strchr(tapeprefix, ',')) != NULL) {
880 strncpy(tape, tapeprefix, MAXPATHLEN);
881 tape[MAXPATHLEN - 1] = '\0';
882 msg("Dumping volume %d on %s\n", tapeno, tape);
884 if (blocksperfiles && blocksperfiles_current < *blocksperfiles)
885 blocksperfiles_current++;
887 while ((tapefd = (host ? rmtopen(tape, O_WRONLY|O_CREAT|O_TRUNC) : pipeout ?
889 OPEN(tape, O_WRONLY|O_CREAT|O_TRUNC, 0666))) < 0)
891 while ((tapefd = (pipeout ? fileno(stdout) :
892 OPEN(tape, O_WRONLY|O_CREAT|O_TRUNC, 0666))) < 0)
895 msg("Cannot open output \"%s\": %s\n", tape,
897 if (!query("Do you want to retry the open?"))
904 struct mtget mt_stat;
905 magtapeout = ioctl(tapefd, MTIOCGET, (char *)&mt_stat) == 0;
907 msg("Output is to %s\n",
908 magtapeout ? "tape" : "file/pipe");
912 enslave(); /* Share open tape file descriptor with slaves */
917 newtape++; /* new tape signal */
918 spcl.c_count = slp->count;
920 * measure firstrec in TP_BSIZE units since restore doesn't
921 * know the correct ntrec value...
923 spcl.c_firstrec = slp->firstrec;
925 spcl.c_type = TS_TAPE;
926 spcl.c_flags |= DR_NEWHEADER;
927 spcl.c_ntrec = ntrec;
929 spcl.c_flags |= DR_COMPRESSED;
930 writeheader((dump_ino_t)slp->inode);
931 spcl.c_flags &=~ DR_NEWHEADER;
932 msg("Volume %d started with block %ld at: %s", tapeno,
933 spcl.c_tapea, ctime(&tstart_volume));
935 msg("Volume %d begins with blocks from inode %d\n",
937 if (tapeno < (int)TP_NINOS)
938 volinfo[tapeno] = slp->inode;
943 dumpabort(UNUSED(int signo))
946 if (master != 0 && master != getpid())
947 /* Signals master to call dumpabort */
948 (void) kill(master, SIGTERM);
951 msg("The ENTIRE dump is aborted.\n");
964 msg("pid = %d exits with status %d\n", getpid(), status);
970 * proceed - handler for SIGUSR2, used to synchronize IO between the slaves.
973 proceed(UNUSED(int signo))
976 siglongjmp(jmpbuf, 1);
984 #ifdef LINUX_FORK_BUG
992 { struct sigaction sa;
993 memset(&sa, 0, sizeof sa);
994 sigemptyset(&sa.sa_mask);
995 sa.sa_handler = dumpabort;
996 sigaction(SIGTERM, &sa, NULL); /* Slave sends SIGTERM on dumpabort() */
997 sa.sa_handler = sigpipe;
998 sigaction(SIGPIPE, &sa, NULL);
999 sa.sa_handler = proceed;
1000 sa.sa_flags = SA_RESTART;
1001 sigaction(SIGUSR2, &sa, NULL); /* Slave sends SIGUSR2 to next slave */
1004 for (i = 0; i < SLAVES; i++) {
1005 if (i == slp - &slaves[0]) {
1011 if (socketpair(AF_UNIX, SOCK_STREAM, 0, cmd) < 0 ||
1012 (slaves[i].pid = fork()) < 0)
1013 quit("too many slaves, %d (recompile smaller): %s\n",
1014 i, strerror(errno));
1016 slaves[i].fd = cmd[1];
1018 if (slaves[i].pid == 0) { /* Slave starts up here */
1020 for (j = 0; j <= i; j++)
1021 (void) close(slaves[j].fd);
1023 sigaddset(&sigs, SIGINT); /* Master handles this */
1024 #if defined(SIGINFO)
1025 sigaddset(&sigs, SIGINFO);
1027 sigprocmask(SIG_BLOCK, &sigs, NULL);
1029 #ifdef LINUX_FORK_BUG
1030 if (dump_atomic_write( cmd[0], (char *) &i, sizeof i)
1032 quit("master/slave protocol botched 3\n");
1038 (slaves[i].pid == slp->pid));
1045 #ifdef LINUX_FORK_BUG
1047 * Wait for all slaves to _actually_ start to circumvent a bug in
1048 * Linux kernels >= 2.1.3 where a signal sent to a child that hasn't
1049 * returned from fork() causes a SEGV in the child process
1051 for (i = 0; i < SLAVES; i++)
1052 if (dump_atomic_read( slaves[i].fd, (char *) &j, sizeof j) != sizeof j)
1053 quit("master/slave protocol botched 4\n");
1056 for (i = 0; i < SLAVES; i++)
1057 (void) dump_atomic_write( slaves[i].fd,
1058 (char *) &slaves[(i + 1) % SLAVES].pid,
1059 sizeof slaves[0].pid);
1069 for (i = 0; i < SLAVES; i++)
1070 if (slaves[i].pid > 0) {
1071 (void) kill(slaves[i].pid, SIGKILL);
1077 * Synchronization - each process waits for a SIGUSR2 from the
1078 * previous process before writing to the tape, and sends SIGUSR2
1079 * to the next process when the tape write completes. On tape errors
1080 * a SIGUSR1 is sent to the master which then terminates all of the
1092 volatile int wrote = 0, size, eot_count, bufsize;
1093 char * volatile buffer;
1094 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
1095 struct tapebuf * volatile comp_buf = NULL;
1097 volatile int do_compress = !first;
1098 unsigned long worklen;
1100 lzo_align_t __LZO_MMODEL *LZO_WorkMem;
1102 #endif /* HAVE_ZLIB || HAVE_BZLIB || HAVE_LZO */
1103 struct slave_results returns;
1108 long long curtapepos;
1109 union u_spcl *uspclptr;
1110 struct s_spcl *spclptr;
1111 /* long maxntrecs = 300000000 / (ntrec * 1024); last tested: 50 000 000 */
1112 long maxntrecs = 50000; /* every 50MB */
1113 long cntntrecs = maxntrecs;
1114 #endif /* USE_QFA */
1118 sigaddset(&set, SIGUSR2);
1119 sigprocmask(SIG_BLOCK, &set, NULL);
1123 * Need our own seek pointer.
1125 (void) close(diskfd);
1126 if ((diskfd = OPEN(disk, O_RDONLY)) < 0)
1127 quit("slave couldn't reopen disk: %s\n", strerror(errno));
1130 (void)ioctl(diskfd, BLKFLSBUF, 0);
1133 retval = dump_fs_open(disk, &fs);
1135 quit("slave couldn't reopen disk: %s\n", error_message(retval));
1136 #endif /* __linux__ */
1139 * Need the pid of the next slave in the loop...
1141 if ((nread = dump_atomic_read( cmd, (char *)&nextslave, sizeof nextslave))
1142 != sizeof nextslave) {
1143 quit("master/slave protocol botched - didn't get pid of next slave.\n");
1146 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
1147 /* if we're doing a compressed dump, allocate the compress buffer */
1149 int bsiz = sizeof(struct tapebuf) + writesize;
1150 /* Add extra space to deal with compression enlarging the buffer */
1151 if (TP_BSIZE > writesize/16 + 67)
1154 bsiz += writesize/16 + 67;
1155 comp_buf = malloc(bsiz);
1156 if (comp_buf == NULL)
1157 quit("couldn't allocate a compress buffer.\n");
1158 if (zipflag == COMPRESS_ZLIB)
1159 comp_buf->flags = COMPRESS_ZLIB;
1160 else if (zipflag == COMPRESS_BZLIB)
1161 comp_buf->flags = COMPRESS_BZLIB;
1162 else if (zipflag == COMPRESS_LZO) {
1163 comp_buf->flags = COMPRESS_LZO;
1164 if (lzo_init() != LZO_E_OK) quit("lzo_init failed\n");
1166 quit("internal error - unknown compression method: %d\n", zipflag);
1169 LZO_WorkMem = malloc(LZO1X_1_MEM_COMPRESS);
1171 quit("couldn't allocate a compress buffer.\n");
1173 #endif /* HAVE_ZLIB || HAVE_BZLIB || HAVE_LZO */
1176 * Get list of blocks to dump, read the blocks into tape buffer
1178 while ((nread = dump_atomic_read( cmd, (char *)slp->req, reqsiz)) == reqsiz) {
1179 struct req *p = slp->req;
1181 for (trecno = 0; trecno < ntrec;
1182 trecno += p->count, p += p->count) {
1183 if (p->dblk) { /* read a disk block */
1184 bread(p->dblk, slp->tblock[trecno],
1185 p->count * TP_BSIZE);
1186 } else { /* read record from pipe */
1187 if (p->count != 1 || dump_atomic_read( cmd,
1188 (char *)slp->tblock[trecno],
1189 TP_BSIZE) != TP_BSIZE)
1190 quit("master/slave protocol botched.\n");
1194 /* Try to write the data... */
1198 buffer = (char *) slp->tblock[0]; /* set write pointer */
1199 bufsize = writesize; /* length to write */
1200 returns.clen = returns.unclen = bufsize;
1202 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
1204 * When writing a compressed dump, each block except
1205 * the first one on each tape is written
1206 * from struct tapebuf with an 4 byte prefix
1207 * followed by the data. This can be less than
1208 * writesize. Restore, on a short read, can compare the
1209 * length read to the compressed length in the header
1210 * to verify that the read was good. Blocks which don't
1211 * compress well are written uncompressed.
1212 * The first block written by each slave is not compressed
1213 * and does not have a prefix.
1216 if (compressed && do_compress) {
1217 comp_buf->length = bufsize;
1218 worklen = TP_BSIZE + writesize;
1221 if (zipflag == COMPRESS_ZLIB) {
1222 compresult = compress2(comp_buf->buf,
1224 (char *)slp->tblock[0],
1227 if (compresult == Z_OK)
1232 #endif /* HAVE_ZLIB */
1234 if (zipflag == COMPRESS_BZLIB) {
1235 unsigned int worklen2 = worklen;
1236 compresult = BZ2_bzBuffToBuffCompress(
1239 (char *)slp->tblock[0],
1244 if (compresult == BZ_OK)
1250 #endif /* HAVE_BZLIB */
1252 if (zipflag == COMPRESS_LZO) {
1253 lzo_uint worklen2 = worklen;
1254 compresult = lzo1x_1_compress((char *)slp->tblock[0],writesize,
1259 if (compresult == LZO_E_OK)
1264 #endif /* HAVE_LZO */
1265 if (compresult && worklen <= ((unsigned long)writesize - 16)) {
1266 /* write the compressed buffer */
1267 comp_buf->length = worklen;
1268 comp_buf->compressed = 1;
1269 buffer = (char *) comp_buf;
1270 returns.clen = bufsize = worklen + sizeof(struct tapebuf);
1273 /* write the data uncompressed */
1274 comp_buf->length = writesize;
1275 comp_buf->compressed = 0;
1276 buffer = (char *) comp_buf;
1277 returns.clen = bufsize = writesize + sizeof(struct tapebuf);
1278 returns.unclen = returns.clen;
1279 memcpy(comp_buf->buf, (char *)slp->tblock[0], writesize);
1282 /* compress the remaining blocks if we're compressing */
1283 do_compress = compressed;
1284 #endif /* HAVE_ZLIB || HAVE_BZLIB || HAVE_LZO */
1286 if (sigsetjmp(jmpbuf, 1) == 0) {
1295 if (gTapeposfd >= 0) {
1299 for (i = 0; (i < ntrec) && !foundone; ++i) {
1300 uspclptr = (union u_spcl *)&slp->tblock[i];
1301 spclptr = &uspclptr->s_spcl;
1302 if ((spclptr->c_magic == NFS_MAGIC) &&
1303 (spclptr->c_type == TS_INODE) &&
1304 (spclptr->c_date == gThisDumpDate) &&
1305 !(spclptr->c_dinode.di_mode & S_IFDIR)
1308 /* if (cntntrecs >= maxntrecs) { only write every maxntrecs amount of data */
1311 gtperr = GetTapePos(&curtapepos);
1312 /* if an error occured previously don't
1316 msg("inode %ld at tapepos %ld\n", spclptr->c_inumber, curtapepos);
1318 gtperr = MkTapeString(spclptr, curtapepos);
1324 #endif /* USE_QFA */
1326 while (eot_count < 10 && size < bufsize) {
1329 wrote = rmtwrite(buffer + size, bufsize - size);
1332 wrote = write(tapefd, buffer + size, bufsize - size);
1334 printf("slave %d wrote %d\n", slave_number, wrote);
1336 if (wrote < 0 && errno != ENOSPC)
1338 if (wrote == 0 || (wrote < 0 && errno == ENOSPC))
1345 if (size != bufsize)
1346 printf("slave %d only wrote %d out of %d bytes and gave up.\n",
1347 slave_number, size, bufsize);
1351 * Handle ENOSPC as an EOT condition.
1353 if (wrote < 0 && errno == ENOSPC) {
1359 returns.clen = returns.unclen = 0;
1362 * pass errno back to master for special handling
1365 returns.unclen = -errno;
1368 * pass size of data and size of write back to master
1369 * (for EOT handling)
1371 (void) dump_atomic_write( cmd, (char *)&returns, sizeof returns);
1374 * Signal the next slave to go.
1376 (void) kill(nextslave, SIGUSR2);
1378 if (gTapeposfd >= 0) {
1381 #endif /* USE_QFA */
1384 quit("error reading command pipe: %s\n", strerror(errno));
1388 * Since a read from a pipe may not return all we asked for,
1389 * or a write may not write all we ask if we get a signal,
1390 * loop until the count is satisfied (or error).
1393 dump_atomic_read(int fd, char *buf, size_t count)
1395 int got, need = count;
1398 while ((got = read(fd, buf, need)) > 0 && (need -= got) > 0)
1400 } while (got == -1 && errno == EINTR);
1401 return (got < 0 ? got : (ssize_t)count - need);
1405 * Since a read from a pipe may not return all we asked for,
1406 * or a write may not write all we ask if we get a signal,
1407 * loop until the count is satisfied (or error).
1410 dump_atomic_write(int fd, const char *buf, size_t count)
1412 int got, need = count;
1415 while ((got = write(fd, buf, need)) > 0 && (need -= got) > 0)
1417 } while (got == -1 && errno == EINTR);
1418 return (got < 0 ? got : (ssize_t)count - need);
1429 buf.mt_op = MTSETDRVBUFFER;
1430 buf.mt_count = MT_ST_BOOLEANS | MT_ST_SCSI2LOGICAL;
1431 if (ioctl(tapefd, MTIOCTOP, &buf) == -1) {
1433 msg("[%ld] error: %d (setting logical)\n",
1434 (unsigned long)getpid(), err);
1441 #define LSEEK_GET_TAPEPOS 10
1442 #define LSEEK_GO2_TAPEPOS 11
1444 * read the current tape position
1447 GetTapePos(long long *pos)
1453 *pos = (long long) rmtseek((OFF_T)0, (int)LSEEK_GET_TAPEPOS);
1462 err = (ioctl(tapefd, MTIOCPOS, &mtpos) < 0);
1463 *pos = (long long)mtpos;
1466 *pos = LSEEK(tapefd, 0, SEEK_CUR);
1472 msg("[%ld] error: %d (getting tapepos: %lld)\n", getpid(),
1480 MkTapeString(struct s_spcl *spclptr, long long curtapepos)
1485 msg("inode %ld at tapepos %lld\n", spclptr->c_inumber, curtapepos);
1488 snprintf(gTps, sizeof(gTps), "%ld\t%d\t%lld\n",
1489 (unsigned long)spclptr->c_inumber,
1492 gTps[sizeof(gTps) - 1] = '\0';
1493 if (write(gTapeposfd, gTps, strlen(gTps)) != (ssize_t)strlen(gTps)) {
1495 warn("error writing tapepos file. (error %d)\n", errno);
1499 #endif /* USE_QFA */