]> git.wh0rd.org - dump.git/blob - dump/tape.c
Changed ino_t to dump_ino_t.
[dump.git] / dump / tape.c
1 /*
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
7 */
8
9 /*-
10 * Copyright (c) 1980, 1991, 1993
11 * The Regents of the University of California. All rights reserved.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
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.
28 *
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
39 * SUCH DAMAGE.
40 */
41
42 #ifndef lint
43 static const char rcsid[] =
44 "$Id: tape.c,v 1.36 2001/03/20 10:02:48 stelian Exp $";
45 #endif /* not lint */
46
47 #include <config.h>
48 #include <errno.h>
49 #include <fcntl.h>
50 #include <setjmp.h>
51 #include <signal.h>
52 #include <stdio.h>
53 #include <compaterr.h>
54 #ifdef __STDC__
55 #include <stdlib.h>
56 #include <string.h>
57 #include <unistd.h>
58 #else
59 int write(), read();
60 #endif
61
62 #ifdef __linux__
63 #include <sys/types.h>
64 #include <time.h>
65 #include <linux/types.h>
66 #endif
67 #include <sys/param.h>
68 #include <sys/socket.h>
69 #include <sys/time.h>
70 #include <sys/wait.h>
71 #ifdef __linux__
72 #include <linux/ext2_fs.h>
73 #include <ext2fs/ext2fs.h>
74 #include <bsdcompat.h>
75 #elif defined sunos
76 #include <sys/vnode.h>
77
78 #include <ufs/fs.h>
79 #include <ufs/inode.h>
80 #else
81 #include <ufs/ufs/dinode.h>
82 #include <ufs/ffs/fs.h>
83 #endif /* __linux__ */
84
85 #include <protocols/dumprestore.h>
86
87 #ifdef HAVE_ZLIB
88 #include <zlib.h>
89 #endif /* HAVE_ZLIB */
90
91 #include "dump.h"
92
93 int writesize; /* size of malloc()ed buffer for tape */
94 long lastspclrec = -1; /* tape block number of last written header */
95 int trecno = 0; /* next record to write in current block */
96 extern long blocksperfile; /* number of blocks per output file */
97 long blocksthisvol; /* number of blocks on current output file */
98 extern int ntrec; /* blocking factor on tape */
99 extern int cartridge;
100 extern char *host;
101 char *nexttape;
102 extern pid_t rshpid;
103 int eot_code = 1;
104 long long tapea_bytes = 0; /* bytes_written at start of current volume */
105
106 static ssize_t atomic_read __P((int, void *, size_t));
107 static ssize_t atomic_write __P((int, const void *, size_t));
108 static void doslave __P((int, int));
109 static void enslave __P((void));
110 static void flushtape __P((void));
111 static void killall __P((void));
112 static void rollforward __P((void));
113 static int system_command __P((const char *, const char *, int));
114
115 /*
116 * Concurrent dump mods (Caltech) - disk block reading and tape writing
117 * are exported to several slave processes. While one slave writes the
118 * tape, the others read disk blocks; they pass control of the tape in
119 * a ring via signals. The parent process traverses the filesystem and
120 * sends writeheader()'s and lists of daddr's to the slaves via pipes.
121 * The following structure defines the instruction packets sent to slaves.
122 */
123 struct req {
124 daddr_t dblk;
125 int count;
126 };
127 int reqsiz;
128
129 struct slave_results {
130 ssize_t unclen; /* uncompressed length */
131 ssize_t clen; /* compressed length */
132 };
133
134 #define SLAVES 3 /* 1 slave writing, 1 reading, 1 for slack */
135 struct slave {
136 int tapea; /* header number at start of this chunk */
137 int count; /* count to next header (used for TS_TAPE */
138 /* after EOT) */
139 int inode; /* inode that we are currently dealing with */
140 int fd; /* FD for this slave */
141 int pid; /* PID for this slave */
142 int sent; /* 1 == we've sent this slave requests */
143 int firstrec; /* record number of this block */
144 char (*tblock)[TP_BSIZE]; /* buffer for data blocks */
145 struct req *req; /* buffer for requests */
146 } slaves[SLAVES+1];
147 struct slave *slp;
148
149 char (*nextblock)[TP_BSIZE];
150
151 static time_t tstart_volume; /* time of volume start */
152 static int tapea_volume; /* value of spcl.c_tapea at volume start */
153
154 int master; /* pid of master, for sending error signals */
155 int tenths; /* length of tape overhead per block written */
156 static int caught; /* have we caught the signal to proceed? */
157 static int ready; /* have we reached the lock point without having */
158 /* received the SIGUSR2 signal from the prev slave? */
159 static sigjmp_buf jmpbuf; /* where to jump to if we are ready when the */
160 /* SIGUSR2 arrives from the previous slave */
161
162 int
163 alloctape(void)
164 {
165 int pgoff = getpagesize() - 1;
166 char *buf;
167 int i;
168
169 writesize = ntrec * TP_BSIZE;
170 reqsiz = (ntrec + 1) * sizeof(struct req);
171 /*
172 * CDC 92181's and 92185's make 0.8" gaps in 1600-bpi start/stop mode
173 * (see DEC TU80 User's Guide). The shorter gaps of 6250-bpi require
174 * repositioning after stopping, i.e, streaming mode, where the gap is
175 * variable, 0.30" to 0.45". The gap is maximal when the tape stops.
176 */
177 if (blocksperfile == 0 && !unlimited)
178 tenths = (cartridge ? 16 : density == 625 ? 5 : 8);
179 else {
180 tenths = 0;
181 density = 1;
182 }
183 /*
184 * Allocate tape buffer contiguous with the array of instruction
185 * packets, so flushtape() can write them together with one write().
186 * Align tape buffer on page boundary to speed up tape write().
187 */
188 for (i = 0; i <= SLAVES; i++) {
189 buf = (char *)
190 malloc((unsigned)(reqsiz + writesize + pgoff + TP_BSIZE));
191 if (buf == NULL)
192 return(0);
193 slaves[i].tblock = (char (*)[TP_BSIZE])
194 #ifdef __linux__
195 (((long)&buf[reqsiz] + pgoff) &~ pgoff);
196 #else
197 (((long)&buf[ntrec + 1] + pgoff) &~ pgoff);
198 #endif
199 slaves[i].req = (struct req *)slaves[i].tblock - ntrec - 1;
200 }
201 slp = &slaves[0];
202 slp->count = 1;
203 slp->tapea = 0;
204 slp->firstrec = 0;
205 nextblock = slp->tblock;
206 return(1);
207 }
208
209 void
210 writerec(const void *dp, int isspcl)
211 {
212
213 slp->req[trecno].dblk = (daddr_t)0;
214 slp->req[trecno].count = 1;
215 /* XXX post increment triggers an egcs-1.1.2-12 bug on alpha/sparc */
216 *(union u_spcl *)(*(nextblock)) = *(union u_spcl *)dp;
217 nextblock++;
218 if (isspcl)
219 lastspclrec = spcl.c_tapea;
220 trecno++;
221 spcl.c_tapea++;
222 if (trecno >= ntrec)
223 flushtape();
224 }
225
226 void
227 dumpblock(daddr_t blkno, int size)
228 {
229 int avail, tpblks, dblkno;
230
231 dblkno = fsbtodb(sblock, blkno);
232 tpblks = size >> tp_bshift;
233 while ((avail = MIN(tpblks, ntrec - trecno)) > 0) {
234 slp->req[trecno].dblk = dblkno;
235 slp->req[trecno].count = avail;
236 trecno += avail;
237 spcl.c_tapea += avail;
238 if (trecno >= ntrec)
239 flushtape();
240 dblkno += avail << (tp_bshift - dev_bshift);
241 tpblks -= avail;
242 }
243 }
244
245 int nogripe = 0;
246
247 static void
248 tperror(int errnum)
249 {
250
251 if (pipeout) {
252 msg("write error on %s: %s\n", tape, strerror(errnum));
253 quit("Cannot recover\n");
254 /* NOTREACHED */
255 }
256 msg("write error %d blocks into volume %d: %s\n", blocksthisvol, tapeno, strerror(errnum));
257 broadcast("DUMP WRITE ERROR!\n");
258 if (query("Do you want to rewrite this volume?")) {
259 msg("Closing this volume. Prepare to restart with new media;\n");
260 msg("this dump volume will be rewritten.\n");
261 killall();
262 nogripe = 1;
263 close_rewind();
264 Exit(X_REWRITE);
265 }
266 if (query("Do you want to start the next tape?"))
267 return;
268 dumpabort(0);
269 }
270
271 static void
272 sigpipe(int signo)
273 {
274
275 quit("Broken pipe\n");
276 }
277
278 /*
279 * do_stats --
280 * Update xferrate stats
281 */
282 time_t
283 do_stats(void)
284 {
285 time_t tnow, ttaken;
286 int blocks;
287
288 tnow = time(NULL);
289 ttaken = tnow - tstart_volume;
290 blocks = spcl.c_tapea - tapea_volume;
291 msg("Volume %d completed at: %s", tapeno, ctime(&tnow));
292 if (! compressed)
293 msg("Volume %d %ld tape blocks (%.2fMB)\n", tapeno,
294 blocks, ((double)blocks * TP_BSIZE / 1048576));
295 if (ttaken > 0) {
296 long volkb = (bytes_written - tapea_bytes) / 1024;
297 long txfrate = volkb / ttaken;
298 msg("Volume %d took %d:%02d:%02d\n", tapeno,
299 ttaken / 3600, (ttaken % 3600) / 60, ttaken % 60);
300 msg("Volume %d transfer rate: %ld KB/s\n", tapeno,
301 txfrate);
302 xferrate += txfrate;
303 if (compressed) {
304 double rate = .0005 + (double) blocks / (double) volkb;
305 msg("Volume %d %ldKB uncompressed, %ldKB compressed,"
306 " compression ratio %1.3f\n",
307 tapeno, blocks, volkb, rate);
308 }
309 }
310 return(tnow);
311 }
312
313 char *
314 mktimeest(time_t tnow)
315 {
316 static char msgbuf[128];
317 time_t deltat;
318
319 msgbuf[0] = '\0';
320
321 if (blockswritten < 500)
322 return NULL;
323 if (blockswritten > tapesize)
324 tapesize = blockswritten;
325 deltat = tstart_writing - tnow + (1.0 * (tnow - tstart_writing))
326 / blockswritten * tapesize;
327 if (tnow > tstart_volume)
328 (void)snprintf(msgbuf, sizeof(msgbuf),
329 "%3.2f%% done at %ld KB/s, finished in %d:%02d\n",
330 (blockswritten * 100.0) / tapesize,
331 (spcl.c_tapea - tapea_volume) / (tnow - tstart_volume),
332 (int)(deltat / 3600), (int)((deltat % 3600) / 60));
333 else
334 (void)snprintf(msgbuf, sizeof(msgbuf),
335 "%3.2f%% done, finished in %d:%02d\n",
336 (blockswritten * 100.0) / tapesize,
337 (int)(deltat / 3600), (int)((deltat % 3600) / 60));
338
339 return msgbuf;
340 }
341
342 #if defined(SIGINFO)
343 /*
344 * statussig --
345 * information message upon receipt of SIGINFO
346 */
347 void
348 statussig(int notused)
349 {
350 int save_errno = errno;
351 char *buf;
352
353 buf = mktimeest(time(NULL));
354 if (buf)
355 write(STDERR_FILENO, buf, strlen(buf));
356 errno = save_errno;
357 }
358 #endif
359
360 static void
361 flushtape(void)
362 {
363 int i, blks, got;
364 long lastfirstrec;
365 struct slave_results returned;
366
367 int siz = (char *)nextblock - (char *)slp->req;
368
369 slp->req[trecno].count = 0; /* Sentinel */
370
371 if (atomic_write( slp->fd, (char *)slp->req, siz) != siz)
372 quit("error writing command pipe: %s\n", strerror(errno));
373 slp->sent = 1; /* we sent a request, read the response later */
374
375 lastfirstrec = slp->firstrec;
376
377 if (++slp >= &slaves[SLAVES])
378 slp = &slaves[0];
379
380 /* Read results back from next slave */
381 if (slp->sent) {
382 if (atomic_read( slp->fd, (char *)&returned, sizeof returned)
383 != sizeof returned) {
384 perror(" DUMP: error reading command pipe in master");
385 dumpabort(0);
386 }
387 got = returned.unclen;
388 bytes_written += returned.clen;
389 if (returned.unclen == returned.clen)
390 uncomprblks++;
391 slp->sent = 0;
392
393 /* Check for errors or end of tape */
394 if (got <= 0) {
395 /* Check for errors */
396 if (got < 0)
397 tperror(-got);
398 else
399 msg("End of tape detected\n");
400
401 /*
402 * Drain the results, don't care what the values were.
403 * If we read them here then trewind won't...
404 */
405 for (i = 0; i < SLAVES; i++) {
406 if (slaves[i].sent) {
407 if (atomic_read( slaves[i].fd,
408 (char *)&returned, sizeof returned)
409 != sizeof returned) {
410 perror(" DUMP: error reading command pipe in master");
411 dumpabort(0);
412 }
413 slaves[i].sent = 0;
414 }
415 }
416
417 close_rewind();
418 rollforward();
419 return;
420 }
421 }
422
423 blks = 0;
424 if (spcl.c_type != TS_END) {
425 for (i = 0; i < spcl.c_count; i++)
426 if (spcl.c_addr[i] != 0)
427 blks++;
428 }
429 slp->count = lastspclrec + blks + 1 - spcl.c_tapea;
430 slp->tapea = spcl.c_tapea;
431 slp->firstrec = lastfirstrec + ntrec;
432 slp->inode = curino;
433 nextblock = slp->tblock;
434 trecno = 0;
435 asize += tenths + returned.clen / density;
436 blockswritten += ntrec;
437 blocksthisvol += ntrec;
438 if (!pipeout && !unlimited && (blocksperfile ?
439 (blocksthisvol >= blocksperfile) : (asize > tsize))) {
440 close_rewind();
441 startnewtape(0);
442 }
443 timeest();
444 }
445
446 /*
447 * Executes the command in a shell.
448 * Returns -1 if an error occured, the exit status of
449 * the command on success.
450 */
451 int system_command(const char *command, const char *device, int volnum) {
452 int pid, status;
453 char commandstr[4096];
454
455 pid = fork();
456 if (pid == -1) {
457 perror(" DUMP: unable to fork");
458 return -1;
459 }
460 if (pid == 0) {
461 setuid(getuid());
462 setgid(getgid());
463 #if OLD_STYLE_FSCRIPT
464 snprintf(commandstr, sizeof(commandstr), "%s", command);
465 #else
466 snprintf(commandstr, sizeof(commandstr), "%s %s %d", command, device, volnum);
467 #endif
468 commandstr[sizeof(commandstr) - 1] = '\0';
469 execl("/bin/sh", "sh", "-c", commandstr, NULL);
470 perror(" DUMP: unable to execute shell");
471 exit(-1);
472 }
473 do {
474 if (waitpid(pid, &status, 0) == -1) {
475 if (errno != EINTR) {
476 perror(" DUMP: waitpid error");
477 return -1;
478 }
479 } else {
480 if (WIFEXITED(status))
481 return WEXITSTATUS(status);
482 else
483 return -1;
484 }
485 } while(1);
486 }
487
488 time_t
489 trewind(void)
490 {
491 int f;
492 int got;
493 struct slave_results returned;
494
495 for (f = 0; f < SLAVES; f++) {
496 /*
497 * Drain the results, but unlike EOT we DO (or should) care
498 * what the return values were, since if we detect EOT after
499 * we think we've written the last blocks to the tape anyway,
500 * we have to replay those blocks with rollforward.
501 *
502 * fixme: punt for now.
503 */
504 if (slaves[f].sent) {
505 if (atomic_read( slaves[f].fd, (char *)&returned, sizeof returned)
506 != sizeof returned) {
507 perror(" DUMP: error reading command pipe in master");
508 dumpabort(0);
509 }
510 got = returned.unclen;
511 bytes_written += returned.clen;
512 if (returned.unclen == returned.clen)
513 uncomprblks++;
514 slaves[f].sent = 0;
515
516 if (got < 0)
517 tperror(-got);
518
519 if (got == 0) {
520 msg("EOT detected in last 2 tape records!\n");
521 msg("Use a longer tape, decrease the size estimate\n");
522 quit("or use no size estimate at all.\n");
523 }
524 }
525 (void) close(slaves[f].fd);
526 }
527 while (wait((int *)NULL) >= 0) /* wait for any signals from slaves */
528 /* void */;
529
530 if (!pipeout) {
531
532 msg("Closing %s\n", tape);
533
534 #ifdef RDUMP
535 if (host) {
536 rmtclose();
537 while (rmtopen(tape, 0) < 0)
538 sleep(10);
539 rmtclose();
540 }
541 else
542 #endif
543 {
544 (void) close(tapefd);
545 while ((f = open(tape, 0)) < 0)
546 sleep (10);
547 (void) close(f);
548 }
549 eot_code = 1;
550 if (eot_script && spcl.c_type != TS_END) {
551 msg("Launching %s\n", eot_script);
552 eot_code = system_command(eot_script, tape, tapeno);
553 }
554 if (eot_code != 0 && eot_code != 1) {
555 msg("Dump aborted by the end of tape script\n");
556 dumpabort(0);
557 }
558 }
559 return do_stats();
560 }
561
562
563 void
564 close_rewind(void)
565 {
566 (void)trewind();
567 if (nexttape || Mflag || (eot_code == 0) )
568 return;
569 if (!nogripe) {
570 msg("Change Volumes: Mount volume #%d\n", tapeno+1);
571 broadcast("CHANGE DUMP VOLUMES!\7\7\n");
572 }
573 while (!query("Is the new volume mounted and ready to go?"))
574 if (query("Do you want to abort?")) {
575 dumpabort(0);
576 /*NOTREACHED*/
577 }
578 }
579
580 void
581 rollforward(void)
582 {
583 register struct req *p, *q, *prev;
584 register struct slave *tslp;
585 int i, size, savedtapea, got;
586 union u_spcl *ntb, *otb;
587 struct slave_results returned;
588 #ifdef __linux__
589 int blks;
590 long lastfirstrec;
591 #endif
592 tslp = &slaves[SLAVES];
593 ntb = (union u_spcl *)tslp->tblock[1];
594
595 /*
596 * Each of the N slaves should have requests that need to
597 * be replayed on the next tape. Use the extra slave buffers
598 * (slaves[SLAVES]) to construct request lists to be sent to
599 * each slave in turn.
600 */
601 for (i = 0; i < SLAVES; i++) {
602 q = &tslp->req[1];
603 otb = (union u_spcl *)slp->tblock;
604
605 /*
606 * For each request in the current slave, copy it to tslp.
607 */
608
609 prev = NULL;
610 for (p = slp->req; p->count > 0; p += p->count) {
611 *q = *p;
612 if (p->dblk == 0)
613 *ntb++ = *otb++; /* copy the datablock also */
614 prev = q;
615 q += q->count;
616 }
617 if (prev == NULL)
618 quit("rollforward: protocol botch");
619 if (prev->dblk != 0)
620 prev->count -= 1;
621 else
622 ntb--;
623 q -= 1;
624 q->count = 0;
625 q = &tslp->req[0];
626 if (i == 0) {
627 q->dblk = 0;
628 q->count = 1;
629 trecno = 0;
630 nextblock = tslp->tblock;
631 savedtapea = spcl.c_tapea;
632 spcl.c_tapea = slp->tapea;
633 startnewtape(0);
634 spcl.c_tapea = savedtapea;
635 lastspclrec = savedtapea - 1;
636 }
637 size = (char *)ntb - (char *)q;
638 if (atomic_write( slp->fd, (char *)q, size) != size) {
639 perror(" DUMP: error writing command pipe");
640 dumpabort(0);
641 }
642 slp->sent = 1;
643 #ifdef __linux__
644 lastfirstrec = slp->firstrec;
645 #endif
646 if (++slp >= &slaves[SLAVES])
647 slp = &slaves[0];
648
649 q->count = 1;
650
651 if (prev->dblk != 0) {
652 /*
653 * If the last one was a disk block, make the
654 * first of this one be the last bit of that disk
655 * block...
656 */
657 q->dblk = prev->dblk +
658 prev->count * (TP_BSIZE / DEV_BSIZE);
659 ntb = (union u_spcl *)tslp->tblock;
660 } else {
661 /*
662 * It wasn't a disk block. Copy the data to its
663 * new location in the buffer.
664 */
665 q->dblk = 0;
666 *((union u_spcl *)tslp->tblock) = *ntb;
667 ntb = (union u_spcl *)tslp->tblock[1];
668 }
669 }
670 slp->req[0] = *q;
671 nextblock = slp->tblock;
672 if (q->dblk == 0) {
673 #ifdef __linux__
674 /* XXX post increment triggers an egcs-1.1.2-12 bug on alpha/sparc */
675 *(union u_spcl *)(*nextblock) = *(union u_spcl *)tslp->tblock;
676 #endif
677 nextblock++;
678 }
679 trecno = 1;
680
681 /*
682 * Clear the first slaves' response. One hopes that it
683 * worked ok, otherwise the tape is much too short!
684 */
685 if (slp->sent) {
686 if (atomic_read( slp->fd, (char *)&returned, sizeof returned)
687 != sizeof returned) {
688 perror(" DUMP: error reading command pipe in master");
689 dumpabort(0);
690 }
691 got = returned.unclen;
692 bytes_written += returned.clen;
693 if (returned.clen == returned.unclen)
694 uncomprblks++;
695 slp->sent = 0;
696
697 if (got < 0)
698 tperror(-got);
699
700 if (got == 0) {
701 quit("EOT detected at start of the tape!\n");
702 }
703 }
704
705 #ifdef __linux__
706 blks = 0;
707 if (spcl.c_type != TS_END) {
708 for (i = 0; i < spcl.c_count; i++)
709 if (spcl.c_addr[i] != 0)
710 blks++;
711 }
712
713 slp->firstrec = lastfirstrec + ntrec;
714 slp->count = lastspclrec + blks + 1 - spcl.c_tapea;
715 slp->inode = curino;
716 asize += tenths + returned.clen / density;
717 blockswritten += ntrec;
718 blocksthisvol += ntrec;
719 #endif
720 }
721
722 /*
723 * We implement taking and restoring checkpoints on the tape level.
724 * When each tape is opened, a new process is created by forking; this
725 * saves all of the necessary context in the parent. The child
726 * continues the dump; the parent waits around, saving the context.
727 * If the child returns X_REWRITE, then it had problems writing that tape;
728 * this causes the parent to fork again, duplicating the context, and
729 * everything continues as if nothing had happened.
730 */
731 void
732 startnewtape(int top)
733 {
734 int parentpid;
735 int childpid;
736 int status;
737 int waitpid;
738 char *p;
739
740 #ifdef __linux__
741 sigset_t sigs;
742 sigemptyset(&sigs);
743 sigaddset(&sigs, SIGINT);
744 sigprocmask(SIG_BLOCK, &sigs, NULL);
745 #else /* __linux__ */
746 #ifdef sunos
747 void (*interrupt_save)();
748 #else
749 sig_t interrupt_save;
750 #endif
751 interrupt_save = signal(SIGINT, SIG_IGN);
752 #endif /* __linux__ */
753
754 parentpid = getpid();
755 tapea_volume = spcl.c_tapea;
756 tapea_bytes = bytes_written;
757 tstart_volume = time(NULL);
758
759 restore_check_point:
760 #ifdef __linux__
761 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
762 #else
763 (void)signal(SIGINT, interrupt_save);
764 #endif
765 /*
766 * All signals are inherited...
767 */
768 childpid = fork();
769 if (childpid < 0) {
770 msg("Context save fork fails in parent %d\n", parentpid);
771 Exit(X_ABORT);
772 }
773 if (childpid != 0) {
774 /*
775 * PARENT:
776 * save the context by waiting
777 * until the child doing all of the work returns.
778 * don't catch the interrupt
779 */
780 #ifdef __linux__
781 sigprocmask(SIG_BLOCK, &sigs, NULL);
782 #else
783 signal(SIGINT, SIG_IGN);
784 #endif
785 #ifdef TDEBUG
786 msg("Tape: %d; parent process: %d child process %d\n",
787 tapeno+1, parentpid, childpid);
788 #endif /* TDEBUG */
789 while ((waitpid = wait(&status)) != childpid)
790 if (waitpid != rshpid)
791 msg("Parent %d waiting for child %d has another child %d return\n",
792 parentpid, childpid, waitpid);
793 if (status & 0xFF) {
794 msg("Child %d returns LOB status %o\n",
795 childpid, status&0xFF);
796 }
797 status = (status >> 8) & 0xFF;
798 #ifdef TDEBUG
799 switch(status) {
800 case X_FINOK:
801 msg("Child %d finishes X_FINOK\n", childpid);
802 break;
803 case X_ABORT:
804 msg("Child %d finishes X_ABORT\n", childpid);
805 break;
806 case X_REWRITE:
807 msg("Child %d finishes X_REWRITE\n", childpid);
808 break;
809 default:
810 msg("Child %d finishes unknown %d\n",
811 childpid, status);
812 break;
813 }
814 #endif /* TDEBUG */
815 switch(status) {
816 case X_FINOK:
817 Exit(X_FINOK);
818 case X_ABORT:
819 Exit(X_ABORT);
820 case X_REWRITE:
821 goto restore_check_point;
822 default:
823 msg("Bad return code from dump: %d\n", status);
824 Exit(X_ABORT);
825 }
826 /*NOTREACHED*/
827 } else { /* we are the child; just continue */
828 #ifdef TDEBUG
829 sleep(4); /* allow time for parent's message to get out */
830 msg("Child on Tape %d has parent %d, my pid = %d\n",
831 tapeno+1, parentpid, getpid());
832 #endif /* TDEBUG */
833 /*
834 * If we have a name like "/dev/rmt0,/dev/rmt1",
835 * use the name before the comma first, and save
836 * the remaining names for subsequent volumes.
837 */
838 tapeno++; /* current tape sequence */
839 if (Mflag) {
840 snprintf(tape, MAXPATHLEN, "%s%03d", tapeprefix, tapeno);
841 tape[MAXPATHLEN - 1] = '\0';
842 msg("Dumping volume %d on %s\n", tapeno, tape);
843 }
844 else if (nexttape || strchr(tapeprefix, ',')) {
845 if (nexttape && *nexttape)
846 tapeprefix = nexttape;
847 if ((p = strchr(tapeprefix, ',')) != NULL) {
848 *p = '\0';
849 nexttape = p + 1;
850 } else
851 nexttape = NULL;
852 strncpy(tape, tapeprefix, MAXPATHLEN);
853 tape[MAXPATHLEN - 1] = '\0';
854 msg("Dumping volume %d on %s\n", tapeno, tape);
855 }
856 #ifdef RDUMP
857 while ((tapefd = (host ? rmtopen(tape, 2) : pipeout ?
858 fileno(stdout) :
859 open(tape, O_WRONLY|O_CREAT, 0666))) < 0)
860 #else
861 while ((tapefd = (pipeout ? fileno(stdout) :
862 open(tape, O_WRONLY|O_CREAT, 0666))) < 0)
863 #endif
864 {
865 msg("Cannot open output \"%s\".\n", tape);
866 if (!query("Do you want to retry the open?"))
867 dumpabort(0);
868 }
869
870 enslave(); /* Share open tape file descriptor with slaves */
871
872 asize = 0;
873 blocksthisvol = 0;
874 if (top)
875 newtape++; /* new tape signal */
876 spcl.c_count = slp->count;
877 /*
878 * measure firstrec in TP_BSIZE units since restore doesn't
879 * know the correct ntrec value...
880 */
881 spcl.c_firstrec = slp->firstrec;
882 spcl.c_volume++;
883 spcl.c_type = TS_TAPE;
884 spcl.c_flags |= DR_NEWHEADER;
885 if (compressed)
886 spcl.c_flags |= DR_COMPRESSED;
887 writeheader((dump_ino_t)slp->inode);
888 spcl.c_flags &=~ DR_NEWHEADER;
889 msg("Volume %d started with block %ld at: %s", tapeno,
890 spcl.c_tapea, ctime(&tstart_volume));
891 if (tapeno > 1)
892 msg("Volume %d begins with blocks from inode %d\n",
893 tapeno, slp->inode);
894 }
895 }
896
897 void
898 dumpabort(int signo)
899 {
900
901 if (master != 0 && master != getpid())
902 /* Signals master to call dumpabort */
903 (void) kill(master, SIGTERM);
904 else {
905 killall();
906 msg("The ENTIRE dump is aborted.\n");
907 }
908 #ifdef RDUMP
909 rmtclose();
910 #endif
911 Exit(X_ABORT);
912 }
913
914 void
915 Exit(int status)
916 {
917
918 #ifdef TDEBUG
919 msg("pid = %d exits with status %d\n", getpid(), status);
920 #endif /* TDEBUG */
921 exit(status);
922 }
923
924 /*
925 * proceed - handler for SIGUSR2, used to synchronize IO between the slaves.
926 */
927 static void
928 proceed(int signo)
929 {
930 if (ready)
931 siglongjmp(jmpbuf, 1);
932 caught++;
933 }
934
935 void
936 enslave(void)
937 {
938 int cmd[2];
939 #ifdef LINUX_FORK_BUG
940 int i, j;
941 #else
942 register int i, j;
943 #endif
944
945 master = getpid();
946
947 { struct sigaction sa;
948 memset(&sa, 0, sizeof sa);
949 sigemptyset(&sa.sa_mask);
950 sa.sa_handler = dumpabort;
951 sigaction(SIGTERM, &sa, NULL); /* Slave sends SIGTERM on dumpabort() */
952 sa.sa_handler = sigpipe;
953 sigaction(SIGPIPE, &sa, NULL);
954 sa.sa_handler = proceed;
955 sa.sa_flags = SA_RESTART;
956 sigaction(SIGUSR2, &sa, NULL); /* Slave sends SIGUSR2 to next slave */
957 }
958
959 for (i = 0; i < SLAVES; i++) {
960 if (i == slp - &slaves[0]) {
961 caught = 1;
962 } else {
963 caught = 0;
964 }
965
966 if (socketpair(AF_UNIX, SOCK_STREAM, 0, cmd) < 0 ||
967 (slaves[i].pid = fork()) < 0)
968 quit("too many slaves, %d (recompile smaller): %s\n",
969 i, strerror(errno));
970
971 slaves[i].fd = cmd[1];
972 slaves[i].sent = 0;
973 if (slaves[i].pid == 0) { /* Slave starts up here */
974 sigset_t sigs;
975 for (j = 0; j <= i; j++)
976 (void) close(slaves[j].fd);
977 sigemptyset(&sigs);
978 sigaddset(&sigs, SIGINT); /* Master handles this */
979 #if defined(SIGINFO)
980 sigaddset(&sigs, SIGINFO);
981 #endif
982 sigprocmask(SIG_BLOCK, &sigs, NULL);
983
984 #ifdef LINUX_FORK_BUG
985 if (atomic_write( cmd[0], (char *) &i, sizeof i)
986 != sizeof i)
987 quit("master/slave protocol botched 3\n");
988 #endif
989 doslave(cmd[0], i);
990 Exit(X_FINOK);
991 }
992 }
993
994 #ifdef LINUX_FORK_BUG
995 /*
996 * Wait for all slaves to _actually_ start to circumvent a bug in
997 * Linux kernels >= 2.1.3 where a signal sent to a child that hasn't
998 * returned from fork() causes a SEGV in the child process
999 */
1000 for (i = 0; i < SLAVES; i++)
1001 if (atomic_read( slaves[i].fd, (char *) &j, sizeof j) != sizeof j)
1002 quit("master/slave protocol botched 4\n");
1003 #endif
1004
1005 for (i = 0; i < SLAVES; i++)
1006 (void) atomic_write( slaves[i].fd,
1007 (char *) &slaves[(i + 1) % SLAVES].pid,
1008 sizeof slaves[0].pid);
1009
1010 master = 0;
1011 }
1012
1013 void
1014 killall(void)
1015 {
1016 register int i;
1017
1018 for (i = 0; i < SLAVES; i++)
1019 if (slaves[i].pid > 0) {
1020 (void) kill(slaves[i].pid, SIGKILL);
1021 slaves[i].sent = 0;
1022 }
1023 }
1024
1025 /*
1026 * Synchronization - each process waits for a SIGUSR2 from the
1027 * previous process before writing to the tape, and sends SIGUSR2
1028 * to the next process when the tape write completes. On tape errors
1029 * a SIGUSR1 is sent to the master which then terminates all of the
1030 * slaves.
1031 */
1032 static void
1033 doslave(int cmd, int slave_number)
1034 {
1035 register int nread;
1036 int nextslave, size, eot_count, bufsize;
1037 volatile int wrote = 0;
1038 char *buffer;
1039 #ifdef HAVE_ZLIB
1040 struct tapebuf *comp_buf = NULL;
1041 int compresult, complevel = 6, do_compress = 0;
1042 unsigned long worklen;
1043 #endif /* HAVE_ZLIB */
1044 struct slave_results returns;
1045 #ifdef __linux__
1046 errcode_t retval;
1047 #endif
1048
1049 /*
1050 * Need our own seek pointer.
1051 */
1052 (void) close(diskfd);
1053 if ((diskfd = open(disk, O_RDONLY)) < 0)
1054 quit("slave couldn't reopen disk: %s\n", strerror(errno));
1055 #ifdef __linux__
1056 ext2fs_close(fs);
1057 retval = dump_fs_open(disk, &fs);
1058 if (retval)
1059 quit("slave couldn't reopen disk: %s\n", error_message(retval));
1060 #endif /* __linux__ */
1061
1062 /*
1063 * Need the pid of the next slave in the loop...
1064 */
1065 if ((nread = atomic_read( cmd, (char *)&nextslave, sizeof nextslave))
1066 != sizeof nextslave) {
1067 quit("master/slave protocol botched - didn't get pid of next slave.\n");
1068 }
1069
1070 #ifdef HAVE_ZLIB
1071 /* if we're doing a compressed dump, allocate the compress buffer */
1072 if (compressed) {
1073 comp_buf = malloc(sizeof(struct tapebuf) + TP_BSIZE + writesize);
1074 if (comp_buf == NULL)
1075 quit("couldn't allocate a compress buffer.\n");
1076 comp_buf->flags = 0;
1077 }
1078 #endif /* HAVE_ZLIB */
1079
1080 /*
1081 * Get list of blocks to dump, read the blocks into tape buffer
1082 */
1083 while ((nread = atomic_read( cmd, (char *)slp->req, reqsiz)) == reqsiz) {
1084 register struct req *p = slp->req;
1085
1086 for (trecno = 0; trecno < ntrec;
1087 trecno += p->count, p += p->count) {
1088 if (p->dblk) { /* read a disk block */
1089 bread(p->dblk, slp->tblock[trecno],
1090 p->count * TP_BSIZE);
1091 } else { /* read record from pipe */
1092 if (p->count != 1 || atomic_read( cmd,
1093 (char *)slp->tblock[trecno],
1094 TP_BSIZE) != TP_BSIZE)
1095 quit("master/slave protocol botched.\n");
1096 }
1097 }
1098 if (sigsetjmp(jmpbuf, 1) == 0) {
1099 ready = 1;
1100 if (!caught)
1101 (void) pause();
1102 }
1103 ready = 0;
1104 caught = 0;
1105
1106 /* Try to write the data... */
1107 wrote = 0;
1108 eot_count = 0;
1109 size = 0;
1110 buffer = (char *) slp->tblock[0]; /* set write pointer */
1111 bufsize = writesize; /* length to write */
1112 returns.clen = returns.unclen = bufsize;
1113
1114 #ifdef HAVE_ZLIB
1115 /*
1116 * The first NR_SLAVE blocks are not compressed.
1117 * When writing a compressed dump, each block is
1118 * written from struct tapebuf with an 4 byte prefix
1119 * followed by the data. This can be less than
1120 * writesize. Restore, on a short read, can compare the
1121 * length read to the compressed length in the header
1122 * to verify that the read was good. Blocks which don't
1123 * compress well are written uncompressed.
1124 */
1125
1126 if (compressed) {
1127 comp_buf->length = bufsize;
1128 worklen = TP_BSIZE + writesize;
1129 if (do_compress)
1130 compresult = compress2(comp_buf->buf, &worklen,
1131 (char *)slp->tblock[0], writesize, complevel);
1132 if (compresult == Z_OK && worklen <= writesize-32) {
1133 /* write the compressed buffer */
1134 comp_buf->length = worklen;
1135 comp_buf->compressed = 1;
1136 buffer = (char *) comp_buf;
1137 returns.clen = bufsize = worklen + sizeof(struct tapebuf);
1138 }
1139 else {
1140 /* write the data uncompressed */
1141 comp_buf->length = writesize;
1142 comp_buf->compressed = 0;
1143 buffer = (char *) comp_buf;
1144 returns.clen = bufsize = writesize + sizeof(struct tapebuf);
1145 returns.unclen = returns.clen;
1146 memcpy(comp_buf->buf, (char *)slp->tblock[0], writesize);
1147 }
1148 }
1149 /* compress the remaining blocks */
1150 do_compress = compressed;
1151 #endif /* HAVE_ZLIB */
1152
1153 while (eot_count < 10 && size < bufsize) {
1154 #ifdef RDUMP
1155 if (host)
1156 wrote = rmtwrite(buffer + size, bufsize - size);
1157 else
1158 #endif
1159 wrote = write(tapefd, buffer + size, bufsize - size);
1160 #ifdef WRITEDEBUG
1161 printf("slave %d wrote %d\n", slave_number, wrote);
1162 #endif
1163 if (wrote < 0)
1164 break;
1165 if (wrote == 0)
1166 eot_count++;
1167 size += wrote;
1168 }
1169
1170 #ifdef WRITEDEBUG
1171 if (size != bufsize)
1172 printf("slave %d only wrote %d out of %d bytes and gave up.\n",
1173 slave_number, size, bufsize);
1174 #endif
1175
1176 /*
1177 * Handle ENOSPC as an EOT condition.
1178 */
1179 if (wrote < 0 && errno == ENOSPC) {
1180 wrote = 0;
1181 eot_count++;
1182 }
1183
1184 if (eot_count > 0)
1185 returns.clen = returns.unclen = 0;
1186
1187 /*
1188 * pass errno back to master for special handling
1189 */
1190 if (wrote < 0)
1191 returns.unclen = -errno;
1192
1193 /*
1194 * pass size of data and size of write back to master
1195 * (for EOT handling)
1196 */
1197 (void) atomic_write( cmd, (char *)&returns, sizeof returns);
1198
1199 /*
1200 * Signal the next slave to go.
1201 */
1202 (void) kill(nextslave, SIGUSR2);
1203 }
1204 if (nread != 0)
1205 quit("error reading command pipe: %s\n", strerror(errno));
1206 }
1207
1208 /*
1209 * Since a read from a pipe may not return all we asked for,
1210 * or a write may not write all we ask if we get a signal,
1211 * loop until the count is satisfied (or error).
1212 */
1213 static ssize_t
1214 atomic_read(int fd, void *buf, size_t count)
1215 {
1216 int got, need = count;
1217
1218 do {
1219 while ((got = read(fd, buf, need)) > 0 && (need -= got) > 0)
1220 (char *)buf += got;
1221 } while (got == -1 && errno == EINTR);
1222 return (got < 0 ? got : count - need);
1223 }
1224
1225 /*
1226 * Since a read from a pipe may not return all we asked for,
1227 * or a write may not write all we ask if we get a signal,
1228 * loop until the count is satisfied (or error).
1229 */
1230 static ssize_t
1231 atomic_write(int fd, const void *buf, size_t count)
1232 {
1233 int got, need = count;
1234
1235 do {
1236 while ((got = write(fd, buf, need)) > 0 && (need -= got) > 0)
1237 (char *)buf += got;
1238 } while (got == -1 && errno == EINTR);
1239 return (got < 0 ? got : count - need);
1240 }