tape.c revision 1.24 1 1.24 tron /* $NetBSD: tape.c,v 1.24 2001/05/07 21:17:48 tron Exp $ */
2 1.6 cgd
3 1.1 cgd /*-
4 1.3 mycroft * Copyright (c) 1980, 1991, 1993
5 1.3 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.12 lukem #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.6 cgd #if 0
39 1.14 lukem static char sccsid[] = "@(#)tape.c 8.4 (Berkeley) 5/1/95";
40 1.6 cgd #else
41 1.24 tron __RCSID("$NetBSD: tape.c,v 1.24 2001/05/07 21:17:48 tron Exp $");
42 1.6 cgd #endif
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.3 mycroft #include <sys/param.h>
46 1.3 mycroft #include <sys/socket.h>
47 1.3 mycroft #include <sys/time.h>
48 1.3 mycroft #include <sys/wait.h>
49 1.1 cgd #ifdef sunos
50 1.3 mycroft #include <sys/vnode.h>
51 1.3 mycroft
52 1.1 cgd #include <ufs/fs.h>
53 1.3 mycroft #include <ufs/inode.h>
54 1.1 cgd #else
55 1.14 lukem #include <ufs/ufs/dinode.h>
56 1.1 cgd #endif
57 1.24 tron #include <sys/ioctl.h>
58 1.24 tron #include <sys/mtio.h>
59 1.3 mycroft
60 1.1 cgd #include <protocols/dumprestore.h>
61 1.3 mycroft
62 1.1 cgd #include <errno.h>
63 1.3 mycroft #include <fcntl.h>
64 1.1 cgd #include <setjmp.h>
65 1.3 mycroft #include <signal.h>
66 1.3 mycroft #include <stdio.h>
67 1.1 cgd #ifdef __STDC__
68 1.1 cgd #include <stdlib.h>
69 1.1 cgd #include <string.h>
70 1.8 lukem #include <time.h>
71 1.3 mycroft #include <unistd.h>
72 1.3 mycroft #else
73 1.3 mycroft int write(), read();
74 1.1 cgd #endif
75 1.3 mycroft
76 1.1 cgd #include "dump.h"
77 1.1 cgd #include "pathnames.h"
78 1.1 cgd
79 1.1 cgd int writesize; /* size of malloc()ed buffer for tape */
80 1.1 cgd long lastspclrec = -1; /* tape block number of last written header */
81 1.1 cgd int trecno = 0; /* next record to write in current block */
82 1.1 cgd extern long blocksperfile; /* number of blocks per output file */
83 1.1 cgd long blocksthisvol; /* number of blocks on current output file */
84 1.1 cgd extern int ntrec; /* blocking factor on tape */
85 1.1 cgd extern int cartridge;
86 1.1 cgd extern char *host;
87 1.1 cgd char *nexttape;
88 1.3 mycroft
89 1.12 lukem static ssize_t atomic_read __P((int, char *, int));
90 1.12 lukem static ssize_t atomic_write __P((int, char *, int));
91 1.3 mycroft static void doslave __P((int, int));
92 1.3 mycroft static void enslave __P((void));
93 1.3 mycroft static void flushtape __P((void));
94 1.3 mycroft static void killall __P((void));
95 1.12 lukem static void proceed __P((int));
96 1.3 mycroft static void rollforward __P((void));
97 1.12 lukem static void sigpipe __P((int));
98 1.12 lukem static void tperror __P((int));
99 1.1 cgd
100 1.1 cgd /*
101 1.1 cgd * Concurrent dump mods (Caltech) - disk block reading and tape writing
102 1.1 cgd * are exported to several slave processes. While one slave writes the
103 1.1 cgd * tape, the others read disk blocks; they pass control of the tape in
104 1.1 cgd * a ring via signals. The parent process traverses the filesystem and
105 1.1 cgd * sends writeheader()'s and lists of daddr's to the slaves via pipes.
106 1.1 cgd * The following structure defines the instruction packets sent to slaves.
107 1.1 cgd */
108 1.1 cgd struct req {
109 1.1 cgd daddr_t dblk;
110 1.1 cgd int count;
111 1.1 cgd };
112 1.1 cgd int reqsiz;
113 1.1 cgd
114 1.1 cgd #define SLAVES 3 /* 1 slave writing, 1 reading, 1 for slack */
115 1.1 cgd struct slave {
116 1.1 cgd int tapea; /* header number at start of this chunk */
117 1.1 cgd int count; /* count to next header (used for TS_TAPE */
118 1.1 cgd /* after EOT) */
119 1.1 cgd int inode; /* inode that we are currently dealing with */
120 1.1 cgd int fd; /* FD for this slave */
121 1.1 cgd int pid; /* PID for this slave */
122 1.1 cgd int sent; /* 1 == we've sent this slave requests */
123 1.1 cgd int firstrec; /* record number of this block */
124 1.1 cgd char (*tblock)[TP_BSIZE]; /* buffer for data blocks */
125 1.1 cgd struct req *req; /* buffer for requests */
126 1.1 cgd } slaves[SLAVES+1];
127 1.1 cgd struct slave *slp;
128 1.1 cgd
129 1.1 cgd char (*nextblock)[TP_BSIZE];
130 1.1 cgd
131 1.8 lukem static time_t tstart_volume; /* time of volume start */
132 1.8 lukem static int tapea_volume; /* value of spcl.c_tapea at volume start */
133 1.8 lukem
134 1.1 cgd int master; /* pid of master, for sending error signals */
135 1.1 cgd int tenths; /* length of tape used per block written */
136 1.1 cgd static int caught; /* have we caught the signal to proceed? */
137 1.1 cgd static int ready; /* have we reached the lock point without having */
138 1.1 cgd /* received the SIGUSR2 signal from the prev slave? */
139 1.1 cgd static jmp_buf jmpbuf; /* where to jump to if we are ready when the */
140 1.1 cgd /* SIGUSR2 arrives from the previous slave */
141 1.1 cgd
142 1.1 cgd int
143 1.1 cgd alloctape()
144 1.1 cgd {
145 1.1 cgd int pgoff = getpagesize() - 1;
146 1.1 cgd char *buf;
147 1.1 cgd int i;
148 1.1 cgd
149 1.1 cgd writesize = ntrec * TP_BSIZE;
150 1.1 cgd reqsiz = (ntrec + 1) * sizeof(struct req);
151 1.1 cgd /*
152 1.1 cgd * CDC 92181's and 92185's make 0.8" gaps in 1600-bpi start/stop mode
153 1.1 cgd * (see DEC TU80 User's Guide). The shorter gaps of 6250-bpi require
154 1.1 cgd * repositioning after stopping, i.e, streaming mode, where the gap is
155 1.1 cgd * variable, 0.30" to 0.45". The gap is maximal when the tape stops.
156 1.1 cgd */
157 1.1 cgd if (blocksperfile == 0)
158 1.1 cgd tenths = writesize / density +
159 1.1 cgd (cartridge ? 16 : density == 625 ? 5 : 8);
160 1.1 cgd /*
161 1.1 cgd * Allocate tape buffer contiguous with the array of instruction
162 1.1 cgd * packets, so flushtape() can write them together with one write().
163 1.1 cgd * Align tape buffer on page boundary to speed up tape write().
164 1.1 cgd */
165 1.1 cgd for (i = 0; i <= SLAVES; i++) {
166 1.1 cgd buf = (char *)
167 1.1 cgd malloc((unsigned)(reqsiz + writesize + pgoff + TP_BSIZE));
168 1.1 cgd if (buf == NULL)
169 1.1 cgd return(0);
170 1.1 cgd slaves[i].tblock = (char (*)[TP_BSIZE])
171 1.1 cgd (((long)&buf[ntrec + 1] + pgoff) &~ pgoff);
172 1.1 cgd slaves[i].req = (struct req *)slaves[i].tblock - ntrec - 1;
173 1.1 cgd }
174 1.1 cgd slp = &slaves[0];
175 1.1 cgd slp->count = 1;
176 1.1 cgd slp->tapea = 0;
177 1.1 cgd slp->firstrec = 0;
178 1.1 cgd nextblock = slp->tblock;
179 1.1 cgd return(1);
180 1.1 cgd }
181 1.1 cgd
182 1.1 cgd void
183 1.1 cgd writerec(dp, isspcl)
184 1.1 cgd char *dp;
185 1.1 cgd int isspcl;
186 1.1 cgd {
187 1.1 cgd
188 1.1 cgd slp->req[trecno].dblk = (daddr_t)0;
189 1.1 cgd slp->req[trecno].count = 1;
190 1.1 cgd *(union u_spcl *)(*(nextblock)++) = *(union u_spcl *)dp;
191 1.1 cgd if (isspcl)
192 1.16 bouyer lastspclrec = iswap32(spcl.c_tapea);
193 1.1 cgd trecno++;
194 1.16 bouyer spcl.c_tapea = iswap32(iswap32(spcl.c_tapea) +1);
195 1.1 cgd if (trecno >= ntrec)
196 1.1 cgd flushtape();
197 1.1 cgd }
198 1.1 cgd
199 1.1 cgd void
200 1.1 cgd dumpblock(blkno, size)
201 1.1 cgd daddr_t blkno;
202 1.1 cgd int size;
203 1.1 cgd {
204 1.1 cgd int avail, tpblks, dblkno;
205 1.1 cgd
206 1.21 perseant dblkno = fsatoda(ufsib, blkno);
207 1.1 cgd tpblks = size >> tp_bshift;
208 1.1 cgd while ((avail = MIN(tpblks, ntrec - trecno)) > 0) {
209 1.1 cgd slp->req[trecno].dblk = dblkno;
210 1.1 cgd slp->req[trecno].count = avail;
211 1.1 cgd trecno += avail;
212 1.16 bouyer spcl.c_tapea = iswap32(iswap32(spcl.c_tapea) + avail);
213 1.1 cgd if (trecno >= ntrec)
214 1.1 cgd flushtape();
215 1.1 cgd dblkno += avail << (tp_bshift - dev_bshift);
216 1.1 cgd tpblks -= avail;
217 1.1 cgd }
218 1.1 cgd }
219 1.1 cgd
220 1.1 cgd int nogripe = 0;
221 1.1 cgd
222 1.12 lukem static void
223 1.1 cgd tperror(signo)
224 1.1 cgd int signo;
225 1.1 cgd {
226 1.1 cgd
227 1.1 cgd if (pipeout) {
228 1.1 cgd msg("write error on %s\n", tape);
229 1.1 cgd quit("Cannot recover\n");
230 1.1 cgd /* NOTREACHED */
231 1.1 cgd }
232 1.22 briggs msg("write error %ld blocks into volume %d\n", blocksthisvol, tapeno);
233 1.1 cgd broadcast("DUMP WRITE ERROR!\n");
234 1.1 cgd if (!query("Do you want to restart?"))
235 1.1 cgd dumpabort(0);
236 1.1 cgd msg("Closing this volume. Prepare to restart with new media;\n");
237 1.1 cgd msg("this dump volume will be rewritten.\n");
238 1.1 cgd killall();
239 1.1 cgd nogripe = 1;
240 1.1 cgd close_rewind();
241 1.1 cgd Exit(X_REWRITE);
242 1.1 cgd }
243 1.1 cgd
244 1.12 lukem static void
245 1.1 cgd sigpipe(signo)
246 1.1 cgd int signo;
247 1.1 cgd {
248 1.1 cgd
249 1.1 cgd quit("Broken pipe\n");
250 1.1 cgd }
251 1.1 cgd
252 1.8 lukem /*
253 1.8 lukem * do_stats --
254 1.8 lukem * Update xferrate stats
255 1.8 lukem */
256 1.8 lukem time_t
257 1.8 lukem do_stats()
258 1.8 lukem {
259 1.8 lukem time_t tnow, ttaken;
260 1.8 lukem int blocks;
261 1.8 lukem
262 1.8 lukem (void)time(&tnow);
263 1.8 lukem ttaken = tnow - tstart_volume;
264 1.16 bouyer blocks = iswap32(spcl.c_tapea) - tapea_volume;
265 1.8 lukem msg("Volume %d completed at: %s", tapeno, ctime(&tnow));
266 1.8 lukem if (ttaken > 0) {
267 1.23 he msg("Volume %d took %d:%02d:%02d\n", tapeno,
268 1.23 he (int) (ttaken / 3600), (int) ((ttaken % 3600) / 60),
269 1.23 he (int) (ttaken % 60));
270 1.23 he msg("Volume %d transfer rate: %d KB/s\n", tapeno,
271 1.23 he (int) (blocks / ttaken));
272 1.8 lukem xferrate += blocks / ttaken;
273 1.8 lukem }
274 1.8 lukem return(tnow);
275 1.8 lukem }
276 1.8 lukem
277 1.11 lukem /*
278 1.11 lukem * statussig --
279 1.11 lukem * information message upon receipt of SIGINFO
280 1.11 lukem * (derived from optr.c::timeest())
281 1.11 lukem */
282 1.11 lukem void
283 1.11 lukem statussig(notused)
284 1.11 lukem int notused;
285 1.11 lukem {
286 1.11 lukem time_t tnow, deltat;
287 1.11 lukem char msgbuf[128];
288 1.11 lukem
289 1.11 lukem if (blockswritten < 500)
290 1.11 lukem return;
291 1.11 lukem (void) time((time_t *) &tnow);
292 1.11 lukem deltat = tstart_writing - tnow + (1.0 * (tnow - tstart_writing))
293 1.11 lukem / blockswritten * tapesize;
294 1.11 lukem (void)snprintf(msgbuf, sizeof(msgbuf),
295 1.11 lukem "%3.2f%% done at %ld KB/s, finished in %d:%02d\n",
296 1.11 lukem (blockswritten * 100.0) / tapesize,
297 1.16 bouyer (long)((iswap32(spcl.c_tapea) - tapea_volume) / (tnow - tstart_volume)),
298 1.11 lukem (int)(deltat / 3600), (int)((deltat % 3600) / 60));
299 1.11 lukem write(STDERR_FILENO, msgbuf, strlen(msgbuf));
300 1.11 lukem }
301 1.11 lukem
302 1.3 mycroft static void
303 1.1 cgd flushtape()
304 1.1 cgd {
305 1.1 cgd int i, blks, got;
306 1.1 cgd long lastfirstrec;
307 1.1 cgd
308 1.1 cgd int siz = (char *)nextblock - (char *)slp->req;
309 1.1 cgd
310 1.1 cgd slp->req[trecno].count = 0; /* Sentinel */
311 1.1 cgd
312 1.12 lukem if (atomic_write(slp->fd, (char *)slp->req, siz) != siz)
313 1.1 cgd quit("error writing command pipe: %s\n", strerror(errno));
314 1.1 cgd slp->sent = 1; /* we sent a request, read the response later */
315 1.1 cgd
316 1.1 cgd lastfirstrec = slp->firstrec;
317 1.1 cgd
318 1.1 cgd if (++slp >= &slaves[SLAVES])
319 1.1 cgd slp = &slaves[0];
320 1.1 cgd
321 1.1 cgd /* Read results back from next slave */
322 1.1 cgd if (slp->sent) {
323 1.12 lukem if (atomic_read(slp->fd, (char *)&got, sizeof got)
324 1.1 cgd != sizeof got) {
325 1.1 cgd perror(" DUMP: error reading command pipe in master");
326 1.1 cgd dumpabort(0);
327 1.1 cgd }
328 1.1 cgd slp->sent = 0;
329 1.1 cgd
330 1.1 cgd /* Check for end of tape */
331 1.1 cgd if (got < writesize) {
332 1.1 cgd msg("End of tape detected\n");
333 1.1 cgd
334 1.1 cgd /*
335 1.1 cgd * Drain the results, don't care what the values were.
336 1.1 cgd * If we read them here then trewind won't...
337 1.1 cgd */
338 1.1 cgd for (i = 0; i < SLAVES; i++) {
339 1.1 cgd if (slaves[i].sent) {
340 1.12 lukem if (atomic_read(slaves[i].fd,
341 1.1 cgd (char *)&got, sizeof got)
342 1.1 cgd != sizeof got) {
343 1.1 cgd perror(" DUMP: error reading command pipe in master");
344 1.1 cgd dumpabort(0);
345 1.1 cgd }
346 1.1 cgd slaves[i].sent = 0;
347 1.1 cgd }
348 1.1 cgd }
349 1.1 cgd
350 1.1 cgd close_rewind();
351 1.1 cgd rollforward();
352 1.1 cgd return;
353 1.1 cgd }
354 1.1 cgd }
355 1.1 cgd
356 1.1 cgd blks = 0;
357 1.16 bouyer if (iswap32(spcl.c_type) != TS_END) {
358 1.16 bouyer for (i = 0; i < iswap32(spcl.c_count); i++)
359 1.1 cgd if (spcl.c_addr[i] != 0)
360 1.1 cgd blks++;
361 1.1 cgd }
362 1.16 bouyer slp->count = lastspclrec + blks + 1 - iswap32(spcl.c_tapea);
363 1.16 bouyer slp->tapea = iswap32(spcl.c_tapea);
364 1.1 cgd slp->firstrec = lastfirstrec + ntrec;
365 1.1 cgd slp->inode = curino;
366 1.1 cgd nextblock = slp->tblock;
367 1.1 cgd trecno = 0;
368 1.1 cgd asize += tenths;
369 1.1 cgd blockswritten += ntrec;
370 1.1 cgd blocksthisvol += ntrec;
371 1.1 cgd if (!pipeout && (blocksperfile ?
372 1.1 cgd (blocksthisvol >= blocksperfile) : (asize > tsize))) {
373 1.1 cgd close_rewind();
374 1.1 cgd startnewtape(0);
375 1.1 cgd }
376 1.1 cgd timeest();
377 1.1 cgd }
378 1.1 cgd
379 1.1 cgd void
380 1.1 cgd trewind()
381 1.1 cgd {
382 1.1 cgd int f;
383 1.1 cgd int got;
384 1.1 cgd
385 1.1 cgd for (f = 0; f < SLAVES; f++) {
386 1.1 cgd /*
387 1.1 cgd * Drain the results, but unlike EOT we DO (or should) care
388 1.1 cgd * what the return values were, since if we detect EOT after
389 1.1 cgd * we think we've written the last blocks to the tape anyway,
390 1.1 cgd * we have to replay those blocks with rollforward.
391 1.1 cgd *
392 1.1 cgd * fixme: punt for now.
393 1.1 cgd */
394 1.1 cgd if (slaves[f].sent) {
395 1.12 lukem if (atomic_read(slaves[f].fd, (char *)&got, sizeof got)
396 1.1 cgd != sizeof got) {
397 1.1 cgd perror(" DUMP: error reading command pipe in master");
398 1.1 cgd dumpabort(0);
399 1.1 cgd }
400 1.1 cgd slaves[f].sent = 0;
401 1.1 cgd if (got != writesize) {
402 1.1 cgd msg("EOT detected in last 2 tape records!\n");
403 1.1 cgd msg("Use a longer tape, decrease the size estimate\n");
404 1.1 cgd quit("or use no size estimate at all.\n");
405 1.1 cgd }
406 1.1 cgd }
407 1.1 cgd (void) close(slaves[f].fd);
408 1.1 cgd }
409 1.1 cgd while (wait((int *)NULL) >= 0) /* wait for any signals from slaves */
410 1.1 cgd /* void */;
411 1.1 cgd
412 1.1 cgd if (pipeout)
413 1.1 cgd return;
414 1.1 cgd
415 1.1 cgd msg("Closing %s\n", tape);
416 1.1 cgd
417 1.1 cgd #ifdef RDUMP
418 1.1 cgd if (host) {
419 1.1 cgd rmtclose();
420 1.1 cgd while (rmtopen(tape, 0) < 0)
421 1.1 cgd sleep(10);
422 1.1 cgd rmtclose();
423 1.1 cgd return;
424 1.1 cgd }
425 1.1 cgd #endif
426 1.1 cgd (void) close(tapefd);
427 1.1 cgd while ((f = open(tape, 0)) < 0)
428 1.1 cgd sleep (10);
429 1.24 tron if (eflag) {
430 1.24 tron struct mtop offl;
431 1.24 tron
432 1.24 tron msg("Ejecting %s\n", tape);
433 1.24 tron offl.mt_op = MTOFFL;
434 1.24 tron offl.mt_count = 0;
435 1.24 tron (void) ioctl(f, MTIOCTOP, &offl);
436 1.24 tron }
437 1.1 cgd (void) close(f);
438 1.1 cgd }
439 1.1 cgd
440 1.1 cgd void
441 1.1 cgd close_rewind()
442 1.1 cgd {
443 1.1 cgd trewind();
444 1.8 lukem (void)do_stats();
445 1.1 cgd if (nexttape)
446 1.1 cgd return;
447 1.1 cgd if (!nogripe) {
448 1.1 cgd msg("Change Volumes: Mount volume #%d\n", tapeno+1);
449 1.1 cgd broadcast("CHANGE DUMP VOLUMES!\7\7\n");
450 1.1 cgd }
451 1.1 cgd while (!query("Is the new volume mounted and ready to go?"))
452 1.1 cgd if (query("Do you want to abort?")) {
453 1.1 cgd dumpabort(0);
454 1.1 cgd /*NOTREACHED*/
455 1.1 cgd }
456 1.1 cgd }
457 1.1 cgd
458 1.1 cgd void
459 1.1 cgd rollforward()
460 1.1 cgd {
461 1.9 lukem struct req *p, *q, *prev;
462 1.9 lukem struct slave *tslp;
463 1.1 cgd int i, size, savedtapea, got;
464 1.1 cgd union u_spcl *ntb, *otb;
465 1.1 cgd tslp = &slaves[SLAVES];
466 1.1 cgd ntb = (union u_spcl *)tslp->tblock[1];
467 1.1 cgd
468 1.1 cgd /*
469 1.1 cgd * Each of the N slaves should have requests that need to
470 1.1 cgd * be replayed on the next tape. Use the extra slave buffers
471 1.1 cgd * (slaves[SLAVES]) to construct request lists to be sent to
472 1.1 cgd * each slave in turn.
473 1.1 cgd */
474 1.1 cgd for (i = 0; i < SLAVES; i++) {
475 1.1 cgd q = &tslp->req[1];
476 1.1 cgd otb = (union u_spcl *)slp->tblock;
477 1.1 cgd
478 1.1 cgd /*
479 1.1 cgd * For each request in the current slave, copy it to tslp.
480 1.1 cgd */
481 1.1 cgd
482 1.3 mycroft prev = NULL;
483 1.1 cgd for (p = slp->req; p->count > 0; p += p->count) {
484 1.1 cgd *q = *p;
485 1.1 cgd if (p->dblk == 0)
486 1.1 cgd *ntb++ = *otb++; /* copy the datablock also */
487 1.1 cgd prev = q;
488 1.1 cgd q += q->count;
489 1.1 cgd }
490 1.3 mycroft if (prev == NULL)
491 1.3 mycroft quit("rollforward: protocol botch");
492 1.1 cgd if (prev->dblk != 0)
493 1.1 cgd prev->count -= 1;
494 1.1 cgd else
495 1.1 cgd ntb--;
496 1.1 cgd q -= 1;
497 1.1 cgd q->count = 0;
498 1.1 cgd q = &tslp->req[0];
499 1.1 cgd if (i == 0) {
500 1.1 cgd q->dblk = 0;
501 1.1 cgd q->count = 1;
502 1.1 cgd trecno = 0;
503 1.1 cgd nextblock = tslp->tblock;
504 1.16 bouyer savedtapea = iswap32(spcl.c_tapea);
505 1.16 bouyer spcl.c_tapea = iswap32(slp->tapea);
506 1.1 cgd startnewtape(0);
507 1.16 bouyer spcl.c_tapea = iswap32(savedtapea);
508 1.1 cgd lastspclrec = savedtapea - 1;
509 1.1 cgd }
510 1.1 cgd size = (char *)ntb - (char *)q;
511 1.12 lukem if (atomic_write(slp->fd, (char *)q, size) != size) {
512 1.1 cgd perror(" DUMP: error writing command pipe");
513 1.1 cgd dumpabort(0);
514 1.1 cgd }
515 1.1 cgd slp->sent = 1;
516 1.1 cgd if (++slp >= &slaves[SLAVES])
517 1.1 cgd slp = &slaves[0];
518 1.1 cgd
519 1.1 cgd q->count = 1;
520 1.1 cgd
521 1.1 cgd if (prev->dblk != 0) {
522 1.1 cgd /*
523 1.1 cgd * If the last one was a disk block, make the
524 1.1 cgd * first of this one be the last bit of that disk
525 1.1 cgd * block...
526 1.1 cgd */
527 1.1 cgd q->dblk = prev->dblk +
528 1.1 cgd prev->count * (TP_BSIZE / DEV_BSIZE);
529 1.1 cgd ntb = (union u_spcl *)tslp->tblock;
530 1.1 cgd } else {
531 1.1 cgd /*
532 1.1 cgd * It wasn't a disk block. Copy the data to its
533 1.1 cgd * new location in the buffer.
534 1.1 cgd */
535 1.1 cgd q->dblk = 0;
536 1.1 cgd *((union u_spcl *)tslp->tblock) = *ntb;
537 1.1 cgd ntb = (union u_spcl *)tslp->tblock[1];
538 1.1 cgd }
539 1.1 cgd }
540 1.1 cgd slp->req[0] = *q;
541 1.1 cgd nextblock = slp->tblock;
542 1.1 cgd if (q->dblk == 0)
543 1.1 cgd nextblock++;
544 1.1 cgd trecno = 1;
545 1.1 cgd
546 1.1 cgd /*
547 1.1 cgd * Clear the first slaves' response. One hopes that it
548 1.1 cgd * worked ok, otherwise the tape is much too short!
549 1.1 cgd */
550 1.1 cgd if (slp->sent) {
551 1.12 lukem if (atomic_read(slp->fd, (char *)&got, sizeof got)
552 1.1 cgd != sizeof got) {
553 1.1 cgd perror(" DUMP: error reading command pipe in master");
554 1.1 cgd dumpabort(0);
555 1.1 cgd }
556 1.1 cgd slp->sent = 0;
557 1.1 cgd
558 1.1 cgd if (got != writesize) {
559 1.1 cgd quit("EOT detected at start of the tape!\n");
560 1.1 cgd }
561 1.1 cgd }
562 1.1 cgd }
563 1.1 cgd
564 1.1 cgd /*
565 1.1 cgd * We implement taking and restoring checkpoints on the tape level.
566 1.1 cgd * When each tape is opened, a new process is created by forking; this
567 1.1 cgd * saves all of the necessary context in the parent. The child
568 1.1 cgd * continues the dump; the parent waits around, saving the context.
569 1.1 cgd * If the child returns X_REWRITE, then it had problems writing that tape;
570 1.1 cgd * this causes the parent to fork again, duplicating the context, and
571 1.1 cgd * everything continues as if nothing had happened.
572 1.1 cgd */
573 1.1 cgd void
574 1.1 cgd startnewtape(top)
575 1.1 cgd int top;
576 1.1 cgd {
577 1.1 cgd int parentpid;
578 1.1 cgd int childpid;
579 1.1 cgd int status;
580 1.1 cgd int waitpid;
581 1.1 cgd char *p;
582 1.1 cgd #ifdef sunos
583 1.1 cgd void (*interrupt_save)();
584 1.1 cgd #else
585 1.1 cgd sig_t interrupt_save;
586 1.1 cgd #endif
587 1.1 cgd
588 1.1 cgd interrupt_save = signal(SIGINT, SIG_IGN);
589 1.1 cgd parentpid = getpid();
590 1.16 bouyer tapea_volume = iswap32(spcl.c_tapea);
591 1.8 lukem (void)time(&tstart_volume);
592 1.1 cgd
593 1.3 mycroft restore_check_point:
594 1.1 cgd (void)signal(SIGINT, interrupt_save);
595 1.1 cgd /*
596 1.1 cgd * All signals are inherited...
597 1.1 cgd */
598 1.1 cgd childpid = fork();
599 1.1 cgd if (childpid < 0) {
600 1.1 cgd msg("Context save fork fails in parent %d\n", parentpid);
601 1.1 cgd Exit(X_ABORT);
602 1.1 cgd }
603 1.1 cgd if (childpid != 0) {
604 1.1 cgd /*
605 1.1 cgd * PARENT:
606 1.1 cgd * save the context by waiting
607 1.1 cgd * until the child doing all of the work returns.
608 1.1 cgd * don't catch the interrupt
609 1.1 cgd */
610 1.1 cgd signal(SIGINT, SIG_IGN);
611 1.1 cgd #ifdef TDEBUG
612 1.1 cgd msg("Tape: %d; parent process: %d child process %d\n",
613 1.1 cgd tapeno+1, parentpid, childpid);
614 1.3 mycroft #endif /* TDEBUG */
615 1.1 cgd while ((waitpid = wait(&status)) != childpid)
616 1.1 cgd msg("Parent %d waiting for child %d has another child %d return\n",
617 1.1 cgd parentpid, childpid, waitpid);
618 1.1 cgd if (status & 0xFF) {
619 1.1 cgd msg("Child %d returns LOB status %o\n",
620 1.1 cgd childpid, status&0xFF);
621 1.1 cgd }
622 1.1 cgd status = (status >> 8) & 0xFF;
623 1.1 cgd #ifdef TDEBUG
624 1.1 cgd switch(status) {
625 1.1 cgd case X_FINOK:
626 1.1 cgd msg("Child %d finishes X_FINOK\n", childpid);
627 1.1 cgd break;
628 1.1 cgd case X_ABORT:
629 1.1 cgd msg("Child %d finishes X_ABORT\n", childpid);
630 1.1 cgd break;
631 1.1 cgd case X_REWRITE:
632 1.1 cgd msg("Child %d finishes X_REWRITE\n", childpid);
633 1.1 cgd break;
634 1.1 cgd default:
635 1.1 cgd msg("Child %d finishes unknown %d\n",
636 1.1 cgd childpid, status);
637 1.1 cgd break;
638 1.1 cgd }
639 1.3 mycroft #endif /* TDEBUG */
640 1.1 cgd switch(status) {
641 1.1 cgd case X_FINOK:
642 1.1 cgd Exit(X_FINOK);
643 1.1 cgd case X_ABORT:
644 1.1 cgd Exit(X_ABORT);
645 1.1 cgd case X_REWRITE:
646 1.1 cgd goto restore_check_point;
647 1.1 cgd default:
648 1.1 cgd msg("Bad return code from dump: %d\n", status);
649 1.1 cgd Exit(X_ABORT);
650 1.1 cgd }
651 1.1 cgd /*NOTREACHED*/
652 1.1 cgd } else { /* we are the child; just continue */
653 1.1 cgd #ifdef TDEBUG
654 1.1 cgd sleep(4); /* allow time for parent's message to get out */
655 1.1 cgd msg("Child on Tape %d has parent %d, my pid = %d\n",
656 1.1 cgd tapeno+1, parentpid, getpid());
657 1.3 mycroft #endif /* TDEBUG */
658 1.1 cgd /*
659 1.10 lukem * If we have a name like "/dev/rst0,/dev/rst1",
660 1.1 cgd * use the name before the comma first, and save
661 1.1 cgd * the remaining names for subsequent volumes.
662 1.1 cgd */
663 1.1 cgd tapeno++; /* current tape sequence */
664 1.4 mycroft if (nexttape || strchr(tape, ',')) {
665 1.1 cgd if (nexttape && *nexttape)
666 1.1 cgd tape = nexttape;
667 1.4 mycroft if ((p = strchr(tape, ',')) != NULL) {
668 1.1 cgd *p = '\0';
669 1.1 cgd nexttape = p + 1;
670 1.1 cgd } else
671 1.1 cgd nexttape = NULL;
672 1.1 cgd msg("Dumping volume %d on %s\n", tapeno, tape);
673 1.1 cgd }
674 1.1 cgd #ifdef RDUMP
675 1.1 cgd while ((tapefd = (host ? rmtopen(tape, 2) :
676 1.1 cgd pipeout ? 1 : open(tape, O_WRONLY|O_CREAT, 0666))) < 0)
677 1.1 cgd #else
678 1.1 cgd while ((tapefd = (pipeout ? 1 :
679 1.1 cgd open(tape, O_WRONLY|O_CREAT, 0666))) < 0)
680 1.1 cgd #endif
681 1.1 cgd {
682 1.1 cgd msg("Cannot open output \"%s\".\n", tape);
683 1.1 cgd if (!query("Do you want to retry the open?"))
684 1.1 cgd dumpabort(0);
685 1.1 cgd }
686 1.1 cgd
687 1.1 cgd enslave(); /* Share open tape file descriptor with slaves */
688 1.1 cgd
689 1.1 cgd asize = 0;
690 1.1 cgd blocksthisvol = 0;
691 1.1 cgd if (top)
692 1.1 cgd newtape++; /* new tape signal */
693 1.16 bouyer spcl.c_count = iswap32(slp->count);
694 1.1 cgd /*
695 1.1 cgd * measure firstrec in TP_BSIZE units since restore doesn't
696 1.1 cgd * know the correct ntrec value...
697 1.1 cgd */
698 1.16 bouyer spcl.c_firstrec = iswap32(slp->firstrec);
699 1.16 bouyer spcl.c_volume = iswap32(iswap32(spcl.c_volume) + 1);
700 1.16 bouyer spcl.c_type = iswap32(TS_TAPE);
701 1.16 bouyer spcl.c_flags = iswap32(iswap32(spcl.c_flags) | DR_NEWHEADER);
702 1.1 cgd writeheader((ino_t)slp->inode);
703 1.16 bouyer spcl.c_flags = iswap32(iswap32(spcl.c_flags) & ~ DR_NEWHEADER);
704 1.8 lukem msg("Volume %d started at: %s", tapeno, ctime(&tstart_volume));
705 1.1 cgd if (tapeno > 1)
706 1.1 cgd msg("Volume %d begins with blocks from inode %d\n",
707 1.1 cgd tapeno, slp->inode);
708 1.1 cgd }
709 1.1 cgd }
710 1.1 cgd
711 1.1 cgd void
712 1.1 cgd dumpabort(signo)
713 1.1 cgd int signo;
714 1.1 cgd {
715 1.1 cgd
716 1.1 cgd if (master != 0 && master != getpid())
717 1.1 cgd /* Signals master to call dumpabort */
718 1.1 cgd (void) kill(master, SIGTERM);
719 1.1 cgd else {
720 1.1 cgd killall();
721 1.1 cgd msg("The ENTIRE dump is aborted.\n");
722 1.1 cgd }
723 1.2 cgd #ifdef RDUMP
724 1.2 cgd rmtclose();
725 1.2 cgd #endif
726 1.1 cgd Exit(X_ABORT);
727 1.1 cgd }
728 1.1 cgd
729 1.13 lukem void
730 1.1 cgd Exit(status)
731 1.1 cgd int status;
732 1.1 cgd {
733 1.1 cgd
734 1.1 cgd #ifdef TDEBUG
735 1.1 cgd msg("pid = %d exits with status %d\n", getpid(), status);
736 1.3 mycroft #endif /* TDEBUG */
737 1.3 mycroft exit(status);
738 1.1 cgd }
739 1.1 cgd
740 1.1 cgd /*
741 1.1 cgd * proceed - handler for SIGUSR2, used to synchronize IO between the slaves.
742 1.1 cgd */
743 1.12 lukem static void
744 1.1 cgd proceed(signo)
745 1.1 cgd int signo;
746 1.1 cgd {
747 1.1 cgd
748 1.1 cgd if (ready)
749 1.1 cgd longjmp(jmpbuf, 1);
750 1.1 cgd caught++;
751 1.1 cgd }
752 1.1 cgd
753 1.1 cgd void
754 1.1 cgd enslave()
755 1.1 cgd {
756 1.1 cgd int cmd[2];
757 1.9 lukem int i, j;
758 1.1 cgd
759 1.1 cgd master = getpid();
760 1.1 cgd
761 1.1 cgd signal(SIGTERM, dumpabort); /* Slave sends SIGTERM on dumpabort() */
762 1.1 cgd signal(SIGPIPE, sigpipe);
763 1.1 cgd signal(SIGUSR1, tperror); /* Slave sends SIGUSR1 on tape errors */
764 1.1 cgd signal(SIGUSR2, proceed); /* Slave sends SIGUSR2 to next slave */
765 1.1 cgd
766 1.1 cgd for (i = 0; i < SLAVES; i++) {
767 1.1 cgd if (i == slp - &slaves[0]) {
768 1.1 cgd caught = 1;
769 1.1 cgd } else {
770 1.1 cgd caught = 0;
771 1.1 cgd }
772 1.1 cgd
773 1.17 lukem if (socketpair(AF_LOCAL, SOCK_STREAM, 0, cmd) < 0 ||
774 1.1 cgd (slaves[i].pid = fork()) < 0)
775 1.1 cgd quit("too many slaves, %d (recompile smaller): %s\n",
776 1.1 cgd i, strerror(errno));
777 1.1 cgd
778 1.1 cgd slaves[i].fd = cmd[1];
779 1.1 cgd slaves[i].sent = 0;
780 1.1 cgd if (slaves[i].pid == 0) { /* Slave starts up here */
781 1.1 cgd for (j = 0; j <= i; j++)
782 1.1 cgd (void) close(slaves[j].fd);
783 1.1 cgd signal(SIGINT, SIG_IGN); /* Master handles this */
784 1.11 lukem signal(SIGINFO, SIG_IGN);
785 1.1 cgd doslave(cmd[0], i);
786 1.1 cgd Exit(X_FINOK);
787 1.1 cgd }
788 1.1 cgd }
789 1.1 cgd
790 1.1 cgd for (i = 0; i < SLAVES; i++)
791 1.12 lukem (void) atomic_write(slaves[i].fd,
792 1.1 cgd (char *) &slaves[(i + 1) % SLAVES].pid,
793 1.1 cgd sizeof slaves[0].pid);
794 1.1 cgd
795 1.1 cgd master = 0;
796 1.1 cgd }
797 1.1 cgd
798 1.1 cgd void
799 1.1 cgd killall()
800 1.1 cgd {
801 1.9 lukem int i;
802 1.1 cgd
803 1.1 cgd for (i = 0; i < SLAVES; i++)
804 1.1 cgd if (slaves[i].pid > 0)
805 1.1 cgd (void) kill(slaves[i].pid, SIGKILL);
806 1.1 cgd }
807 1.1 cgd
808 1.1 cgd /*
809 1.1 cgd * Synchronization - each process has a lockfile, and shares file
810 1.1 cgd * descriptors to the following process's lockfile. When our write
811 1.1 cgd * completes, we release our lock on the following process's lock-
812 1.1 cgd * file, allowing the following process to lock it and proceed. We
813 1.1 cgd * get the lock back for the next cycle by swapping descriptors.
814 1.1 cgd */
815 1.3 mycroft static void
816 1.1 cgd doslave(cmd, slave_number)
817 1.9 lukem int cmd;
818 1.1 cgd int slave_number;
819 1.1 cgd {
820 1.9 lukem int nread;
821 1.1 cgd int nextslave, size, wrote, eot_count;
822 1.7 mycroft sigset_t sigset;
823 1.1 cgd
824 1.1 cgd /*
825 1.1 cgd * Need our own seek pointer.
826 1.1 cgd */
827 1.1 cgd (void) close(diskfd);
828 1.1 cgd if ((diskfd = open(disk, O_RDONLY)) < 0)
829 1.1 cgd quit("slave couldn't reopen disk: %s\n", strerror(errno));
830 1.1 cgd
831 1.1 cgd /*
832 1.1 cgd * Need the pid of the next slave in the loop...
833 1.1 cgd */
834 1.12 lukem if ((nread = atomic_read(cmd, (char *)&nextslave, sizeof nextslave))
835 1.1 cgd != sizeof nextslave) {
836 1.1 cgd quit("master/slave protocol botched - didn't get pid of next slave.\n");
837 1.1 cgd }
838 1.1 cgd
839 1.1 cgd /*
840 1.1 cgd * Get list of blocks to dump, read the blocks into tape buffer
841 1.1 cgd */
842 1.12 lukem while ((nread = atomic_read(cmd, (char *)slp->req, reqsiz)) == reqsiz) {
843 1.9 lukem struct req *p = slp->req;
844 1.1 cgd
845 1.1 cgd for (trecno = 0; trecno < ntrec;
846 1.1 cgd trecno += p->count, p += p->count) {
847 1.1 cgd if (p->dblk) {
848 1.1 cgd bread(p->dblk, slp->tblock[trecno],
849 1.1 cgd p->count * TP_BSIZE);
850 1.1 cgd } else {
851 1.12 lukem if (p->count != 1 || atomic_read(cmd,
852 1.1 cgd (char *)slp->tblock[trecno],
853 1.1 cgd TP_BSIZE) != TP_BSIZE)
854 1.1 cgd quit("master/slave protocol botched.\n");
855 1.1 cgd }
856 1.1 cgd }
857 1.1 cgd if (setjmp(jmpbuf) == 0) {
858 1.1 cgd ready = 1;
859 1.1 cgd if (!caught)
860 1.1 cgd (void) pause();
861 1.1 cgd }
862 1.1 cgd ready = 0;
863 1.1 cgd caught = 0;
864 1.1 cgd
865 1.1 cgd /* Try to write the data... */
866 1.1 cgd eot_count = 0;
867 1.1 cgd size = 0;
868 1.1 cgd
869 1.1 cgd while (eot_count < 10 && size < writesize) {
870 1.1 cgd #ifdef RDUMP
871 1.1 cgd if (host)
872 1.1 cgd wrote = rmtwrite(slp->tblock[0]+size,
873 1.1 cgd writesize-size);
874 1.1 cgd else
875 1.1 cgd #endif
876 1.1 cgd wrote = write(tapefd, slp->tblock[0]+size,
877 1.1 cgd writesize-size);
878 1.1 cgd #ifdef WRITEDEBUG
879 1.18 bouyer fprintf(stderr, "slave %d wrote %d\n", slave_number, wrote);
880 1.1 cgd #endif
881 1.1 cgd if (wrote < 0)
882 1.1 cgd break;
883 1.1 cgd if (wrote == 0)
884 1.1 cgd eot_count++;
885 1.1 cgd size += wrote;
886 1.1 cgd }
887 1.1 cgd
888 1.1 cgd #ifdef WRITEDEBUG
889 1.1 cgd if (size != writesize)
890 1.18 bouyer fprintf(stderr, "slave %d only wrote %d out of %d bytes and gave up.\n",
891 1.1 cgd slave_number, size, writesize);
892 1.1 cgd #endif
893 1.1 cgd
894 1.1 cgd if (eot_count > 0)
895 1.1 cgd size = 0;
896 1.1 cgd
897 1.1 cgd /*
898 1.1 cgd * fixme: Pyramids running OSx return ENOSPC
899 1.1 cgd * at EOT on 1/2 inch drives.
900 1.1 cgd */
901 1.1 cgd if (size < 0) {
902 1.1 cgd (void) kill(master, SIGUSR1);
903 1.7 mycroft sigemptyset(&sigset);
904 1.1 cgd for (;;)
905 1.7 mycroft sigsuspend(&sigset);
906 1.1 cgd } else {
907 1.1 cgd /*
908 1.1 cgd * pass size of write back to master
909 1.1 cgd * (for EOT handling)
910 1.1 cgd */
911 1.12 lukem (void) atomic_write(cmd, (char *)&size, sizeof size);
912 1.1 cgd }
913 1.1 cgd
914 1.1 cgd /*
915 1.1 cgd * If partial write, don't want next slave to go.
916 1.1 cgd * Also jolts him awake.
917 1.1 cgd */
918 1.1 cgd (void) kill(nextslave, SIGUSR2);
919 1.1 cgd }
920 1.18 bouyer printcachestats();
921 1.1 cgd if (nread != 0)
922 1.1 cgd quit("error reading command pipe: %s\n", strerror(errno));
923 1.1 cgd }
924 1.1 cgd
925 1.1 cgd /*
926 1.1 cgd * Since a read from a pipe may not return all we asked for,
927 1.1 cgd * loop until the count is satisfied (or error).
928 1.1 cgd */
929 1.5 cgd static ssize_t
930 1.12 lukem atomic_read(fd, buf, count)
931 1.12 lukem int fd;
932 1.12 lukem char *buf;
933 1.12 lukem int count;
934 1.12 lukem {
935 1.12 lukem ssize_t got, need = count;
936 1.12 lukem
937 1.12 lukem while ((got = read(fd, buf, need)) > 0 && (need -= got) > 0)
938 1.12 lukem buf += got;
939 1.12 lukem return (got < 0 ? got : count - need);
940 1.12 lukem }
941 1.12 lukem
942 1.12 lukem /*
943 1.12 lukem * Since a write may not write all we ask if we get a signal,
944 1.12 lukem * loop until the count is satisfied (or error).
945 1.12 lukem */
946 1.12 lukem static ssize_t
947 1.12 lukem atomic_write(fd, buf, count)
948 1.5 cgd int fd;
949 1.1 cgd char *buf;
950 1.3 mycroft int count;
951 1.1 cgd {
952 1.5 cgd ssize_t got, need = count;
953 1.1 cgd
954 1.12 lukem while ((got = write(fd, buf, need)) > 0 && (need -= got) > 0)
955 1.1 cgd buf += got;
956 1.1 cgd return (got < 0 ? got : count - need);
957 1.1 cgd }
958