]> git.wh0rd.org - dump.git/blob - restore/tape.c
Fix a couple of gcc 3.3.3 warnings.
[dump.git] / restore / 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 <stelian@popies.net>, 1999-2000
6 * Stelian Pop <stelian@popies.net> - AlcĂ´ve <www.alcove.com>, 2000-2002
7 */
8
9 /*
10 * Copyright (c) 1983, 1993
11 * The Regents of the University of California. All rights reserved.
12 * (c) UNIX System Laboratories, Inc.
13 * All or some portions of this file are derived from material licensed
14 * to the University of California by American Telephone and Telegraph
15 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
16 * the permission of UNIX System Laboratories, Inc.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 * 3. Neither the name of the University nor the names of its contributors
27 * may be used to endorse or promote products derived from this software
28 * without specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
41 */
42
43 #ifndef lint
44 static const char rcsid[] =
45 "$Id: tape.c,v 1.81 2004/05/25 10:39:31 stelian Exp $";
46 #endif /* not lint */
47
48 #include <config.h>
49 #include <compatlfs.h>
50 #include <sys/types.h>
51 #include <errno.h>
52 #include <compaterr.h>
53 #include <system.h>
54 #include <setjmp.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <unistd.h>
59
60 #include <sys/param.h>
61 #include <sys/file.h>
62 #include <sys/mtio.h>
63 #include <sys/stat.h>
64
65 #ifdef __linux__
66 #include <sys/time.h>
67 #include <time.h>
68 #ifdef HAVE_EXT2FS_EXT2_FS_H
69 #include <ext2fs/ext2_fs.h>
70 #else
71 #include <linux/ext2_fs.h>
72 #endif
73 #include <ext2fs/ext2fs.h>
74 #include <bsdcompat.h>
75 #else /* __linux__ */
76 #ifdef sunos
77 #define quad_t int64_t
78 #include <sys/time.h>
79 #include <sys/fcntl.h>
80 #include <bsdcompat.h>
81 #else
82 #include <ufs/ufs/dinode.h>
83 #endif
84 #endif /* __linux__ */
85 #ifdef DUMP_MACOSX
86 #include "darwin.h"
87 #endif
88 #include <protocols/dumprestore.h>
89
90 #ifdef HAVE_ZLIB
91 #include <zlib.h>
92 #endif /* HAVE_ZLIB */
93
94 #ifdef HAVE_BZLIB
95 #include <bzlib.h>
96 #endif /* HAVE_BZLIB */
97
98 #ifdef HAVE_LZO
99 #include <minilzo.h>
100 #endif /* HAVE_LZO */
101
102 #include "restore.h"
103 #include "extern.h"
104 #include "pathnames.h"
105
106 #ifdef USE_QFA
107 int noresyncmesg = 0;
108 #endif /* USE_QFA */
109 static long fssize = MAXBSIZE;
110 static int mt = -1;
111 int pipein = 0;
112 static int magtapein = 0; /* input is from magtape */
113 static char magtape[MAXPATHLEN];
114 static char magtapeprefix[MAXPATHLEN];
115 static int blkcnt;
116 static int numtrec;
117 static char *tapebuf; /* input buffer for read */
118 static int bufsize; /* buffer size without prefix */
119 static char *tbufptr = NULL; /* active tape buffer */
120 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
121 static char *comprbuf; /* uncompress work buf */
122 static size_t comprlen; /* size including prefix */
123 #endif
124 static union u_spcl endoftapemark;
125 static long blksread; /* blocks read since last header */
126 static long tpblksread = 0; /* TP_BSIZE blocks read */
127 static long tapesread;
128 static sigjmp_buf restart;
129 static int gettingfile = 0; /* restart has a valid frame */
130 char *host = NULL;
131
132 static int ofile;
133 static char *map;
134 static char lnkbuf[MAXPATHLEN + 1];
135 static int pathlen;
136
137 int oldinofmt; /* old inode format conversion required */
138 int Bcvt; /* Swap Bytes (for CCI or sun) */
139 static int Qcvt; /* Swap quads (for sun) */
140
141 #define FLUSHTAPEBUF() blkcnt = ntrec + 1
142
143 static void accthdr __P((struct s_spcl *));
144 static int checksum __P((int *));
145 static void findinode __P((struct s_spcl *));
146 static void findtapeblksize __P((void));
147 static int gethead __P((struct s_spcl *));
148 static int converthead __P((struct s_spcl *));
149 static void converttapebuf __P((struct tapebuf *));
150 static void readtape __P((char *));
151 static void setdumpnum __P((void));
152 #ifdef DUMP_MACOSX
153 static void xtrfilefinderinfo __P((char *, size_t));
154 #endif
155
156 static u_int swabi __P((u_int));
157 #if 0
158 static u_long swabl __P((u_long));
159 #endif
160 static u_char *swab64 __P((u_char *, int));
161 static u_char *swab32 __P((u_char *, int));
162 static u_char *swab16 __P((u_char *, int));
163 static void terminateinput __P((void));
164 static void xtrfile __P((char *, size_t));
165 static void xtrlnkfile __P((char *, size_t));
166 static void xtrlnkskip __P((char *, size_t));
167 static void xtrmap __P((char *, size_t));
168 static void xtrmapskip __P((char *, size_t));
169 static void xtrskip __P((char *, size_t));
170 static void setmagtapein __P((void));
171
172 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
173 static void newcomprbuf __P((int));
174 static void (*readtape_func) __P((char *));
175 static void readtape_set __P((char *));
176 static void readtape_uncompr __P((char *));
177 static void readtape_comprfile __P((char *));
178 static void readtape_comprtape __P((char *));
179 static char *decompress_tapebuf __P((struct tapebuf *, int));
180 static void msg_read_error __P((char *));
181 #endif
182 static int read_a_block __P((int, char *, size_t, long *));
183 #define PREFIXSIZE sizeof(struct tapebuf)
184
185 #define COMPARE_ONTHEFLY 1
186
187 #if COMPARE_ONTHEFLY
188 static int ifile; /* input file for compare */
189 static int cmperror; /* compare error */
190 static void xtrcmpfile __P((char *, size_t));
191 static void xtrcmpskip __P((char *, size_t));
192 #endif
193
194 static int readmapflag;
195 static int readingmaps; /* set to 1 while reading the maps */
196
197 #ifdef DUMP_MACOSX
198 static DumpFinderInfo gFndrInfo;
199 #endif
200
201 /*
202 * Set up an input source. This is called from main.c before setup() is.
203 */
204 void
205 setinput(char *source)
206 {
207 int i;
208 char *n;
209
210 FLUSHTAPEBUF();
211 if (bflag)
212 newtapebuf(ntrec);
213 else
214 newtapebuf(NTREC > HIGHDENSITYTREC ? NTREC : HIGHDENSITYTREC);
215 terminal = stdin;
216
217 #ifdef RRESTORE
218 if ((n = strchr(source, ':'))) {
219 for (i = 0; i < (n - source); i++) {
220 if (source[i] == '/')
221 break;
222 }
223 if (source[i] != '/') {
224 host = source;
225 source = strchr(host, ':');
226 *source++ = '\0';
227 if (rmthost(host) == 0)
228 exit(1);
229 }
230 } else
231 #endif
232 if (strcmp(source, "-") == 0) {
233 /*
234 * Since input is coming from a pipe we must establish
235 * our own connection to the terminal.
236 */
237 terminal = fopen(_PATH_TTY, "r");
238 if (terminal == NULL) {
239 warn("cannot open %s", _PATH_TTY);
240 terminal = fopen(_PATH_DEVNULL, "r");
241 if (terminal == NULL)
242 err(1, "cannot open %s", _PATH_DEVNULL);
243 }
244 pipein++;
245 }
246 setuid(getuid()); /* no longer need or want root privileges */
247 if (Mflag) {
248 strncpy(magtapeprefix, source, MAXPATHLEN);
249 magtapeprefix[MAXPATHLEN-1] = '\0';
250 snprintf(magtape, MAXPATHLEN, "%s%03d", source, 1);
251 }
252 else
253 strncpy(magtape, source, MAXPATHLEN);
254 magtape[MAXPATHLEN - 1] = '\0';
255 }
256
257 void
258 newtapebuf(long size)
259 {
260 static int tapebufsize = -1;
261
262 ntrec = size;
263 bufsize = ntrec * TP_BSIZE;
264 if (size <= tapebufsize)
265 return;
266 if (tapebuf != NULL)
267 free(tapebuf);
268 tapebuf = malloc(size * TP_BSIZE + sizeof(struct tapebuf));
269 if (tapebuf == NULL)
270 errx(1, "Cannot allocate space for tape buffer");
271 tapebufsize = size;
272 }
273
274 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
275 static void
276 newcomprbuf(int size)
277 {
278 size_t buf_size = (size+1) * TP_BSIZE + sizeof(struct tapebuf);
279 if (buf_size <= comprlen)
280 return;
281 comprlen = buf_size;
282 if (comprbuf != NULL)
283 free(comprbuf);
284 comprbuf = malloc(comprlen);
285 if (comprbuf == NULL)
286 errx(1, "Cannot allocate space for decompress buffer");
287 }
288 #endif /* HAVE_ZLIB || HAVE_BZLIB || HAVE_LZO */
289
290 /*
291 * Verify that the tape drive can be accessed and
292 * that it actually is a dump tape.
293 */
294 void
295 setup(void)
296 {
297 int i, j, *ip, bot_code;
298 struct STAT stbuf;
299 char *temptape;
300
301 Vprintf(stdout, "Verify tape and initialize maps\n");
302 if (Afile == NULL && bot_script) {
303 msg("Launching %s\n", bot_script);
304 bot_code = system_command(bot_script, magtape, 1);
305 if (bot_code != 0 && bot_code != 1) {
306 msg("Restore aborted by the beginning of tape script\n");
307 exit(1);
308 }
309 }
310
311 if (Afile)
312 temptape = Afile;
313 else
314 temptape = magtape;
315
316 #ifdef RRESTORE
317 if (!Afile && host)
318 mt = rmtopen(temptape, O_RDONLY);
319 else
320 #endif
321 if (pipein)
322 mt = 0;
323 else
324 mt = OPEN(temptape, O_RDONLY, 0);
325 if (mt < 0)
326 err(1, "%s", temptape);
327 if (!Afile) {
328 volno = 1;
329 setmagtapein();
330 setdumpnum();
331 }
332 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
333 readtape_func = readtape_set;
334 #if defined(HAVE_LZO)
335 if (lzo_init() != LZO_E_OK) {
336 msg("internal error - lzo_init failed \n");
337 exit(1);
338 }
339 #endif
340 #endif
341 FLUSHTAPEBUF();
342 findtapeblksize();
343 if (gethead(&spcl) == FAIL) {
344 blkcnt--; /* push back this block */
345 blksread--;
346 tpblksread--;
347 cvtflag++;
348 if (gethead(&spcl) == FAIL)
349 errx(1, "Tape is not a dump tape");
350 fprintf(stderr, "Converting to new file system format.\n");
351 }
352
353 if (zflag) {
354 fprintf(stderr, "Dump tape is compressed.\n");
355 #if !defined(HAVE_ZLIB) && !defined(HAVE_BZLIB) && !defined(HAVE_LZO)
356 errx(1,"This restore version doesn't support decompression");
357 #endif /* !HAVE_ZLIB && !HAVE_BZLIB */
358 }
359 if (pipein) {
360 endoftapemark.s_spcl.c_magic = cvtflag ? OFS_MAGIC : NFS_MAGIC;
361 endoftapemark.s_spcl.c_type = TS_END;
362 ip = (int *)&endoftapemark;
363 j = sizeof(union u_spcl) / sizeof(int);
364 i = 0;
365 do
366 i += *ip++;
367 while (--j);
368 endoftapemark.s_spcl.c_checksum = CHECKSUM - i;
369 }
370 if (vflag || command == 't' || command == 'C')
371 printdumpinfo();
372 #ifdef USE_QFA
373 if (tapeposflag && (unsigned long)spcl.c_date != qfadumpdate)
374 errx(1, "different QFA/dumpdates detected\n");
375 #endif
376 if (filesys[0] == '\0') {
377 char *dirptr;
378 strncpy(filesys, spcl.c_filesys, NAMELEN);
379 filesys[NAMELEN - 1] = '\0';
380 dirptr = strstr(filesys, " (dir");
381 if (dirptr != NULL)
382 *dirptr = '\0';
383 }
384 dumptime = spcl.c_ddate;
385 dumpdate = spcl.c_date;
386 if (STAT(".", &stbuf) < 0)
387 err(1, "cannot stat .");
388 if (stbuf.st_blksize > 0 && stbuf.st_blksize < TP_BSIZE )
389 fssize = TP_BSIZE;
390 if (stbuf.st_blksize >= TP_BSIZE && stbuf.st_blksize <= MAXBSIZE)
391 fssize = stbuf.st_blksize;
392 if (((fssize - 1) & fssize) != 0)
393 errx(1, "bad block size %ld", fssize);
394 if (spcl.c_volume != 1)
395 errx(1, "Tape is not volume 1 of the dump");
396 if (gethead(&spcl) == FAIL) {
397 Dprintf(stdout, "header read failed at %ld blocks\n", (long)blksread);
398 panic("no header after volume mark!\n");
399 }
400 readingmaps = 1;
401 findinode(&spcl);
402 if (spcl.c_type != TS_CLRI)
403 errx(1, "Cannot find file removal list");
404 maxino = (spcl.c_count * TP_BSIZE * NBBY) + 1;
405 map = calloc((unsigned)1, (unsigned)howmany(maxino, NBBY));
406 if (map == NULL)
407 errx(1, "no memory for active inode map");
408 usedinomap = map;
409 curfile.action = USING;
410 getfile(xtrmap, xtrmapskip);
411 while (spcl.c_type == TS_ADDR) {
412 /* Recompute maxino and the map */
413 dump_ino_t oldmaxino = maxino;
414 maxino += (spcl.c_count * TP_BSIZE * NBBY) + 1;
415 resizemaps(oldmaxino, maxino);
416 map = usedinomap;
417
418 spcl.c_dinode.di_size = spcl.c_count * TP_BSIZE;
419 getfile(xtrmap, xtrmapskip);
420 }
421 Dprintf(stdout, "maxino = %lu\n", (unsigned long)maxino);
422 if (spcl.c_type != TS_BITS) {
423 if (spcl.c_type == TS_END) {
424 msg("Cannot find file dump list, assuming empty tape\n");
425 exit(0);
426 }
427 errx(1, "Cannot find file dump list");
428 }
429 map = calloc((unsigned)1, (unsigned)howmany(maxino, NBBY));
430 if (map == (char *)NULL)
431 errx(1, "no memory for file dump list");
432 dumpmap = map;
433 curfile.action = USING;
434 getfile(xtrmap, xtrmapskip);
435 while (spcl.c_type == TS_ADDR) {
436 spcl.c_dinode.di_size = spcl.c_count * TP_BSIZE;
437 getfile(xtrmap, xtrmapskip);
438 }
439 /*
440 * If there may be whiteout entries on the tape, pretend that the
441 * whiteout inode exists, so that the whiteout entries can be
442 * extracted.
443 */
444 if (oldinofmt == 0)
445 SETINO(WINO, dumpmap);
446 readingmaps = 0;
447 findinode(&spcl);
448 }
449
450 /*
451 * Prompt user to load a new dump volume.
452 * "Nextvol" is the next suggested volume to use.
453 * This suggested volume is enforced when doing full
454 * or incremental restores, but can be overridden by
455 * the user when only extracting a subset of the files.
456 */
457 void
458 getvol(long nextvol)
459 {
460 long newvol = 0, wantnext = 0, i;
461 long saved_blksread = 0, saved_tpblksread = 0;
462 union u_spcl tmpspcl;
463 # define tmpbuf tmpspcl.s_spcl
464 char buf[TP_BSIZE];
465 int haderror = 0, bot_code = 1;
466
467 if (nextvol == 1) {
468 tapesread = 0;
469 gettingfile = 0;
470 tpblksread = 0;
471 blksread = 0;
472 }
473 if (pipein) {
474 if (nextvol != 1)
475 panic("Changing volumes on pipe input?\n");
476 if (volno == 1)
477 return;
478 goto gethdr;
479 }
480 saved_blksread = blksread;
481 saved_tpblksread = tpblksread;
482 #if defined(USE_QFA) && defined(sunos)
483 if (createtapeposflag || tapeposflag)
484 close(fdsmtc);
485 #endif
486 again:
487 if (pipein)
488 exit(1); /* pipes do not get a second chance */
489 if (aflag || curfile.action != SKIP) {
490 newvol = nextvol;
491 wantnext = 1;
492 } else {
493 newvol = 0;
494 wantnext = 0;
495 }
496 while (newvol <= 0) {
497 if (tapesread == 0) {
498 fprintf(stderr, "%s%s%s%s%s",
499 "You have not read any volumes yet.\n",
500 "Unless you know which volume your",
501 " file(s) are on you should start\n",
502 "with the last volume and work",
503 " towards the first.\n");
504 } else {
505 fprintf(stderr, "You have read volumes");
506 strcpy(buf, ": ");
507 for (i = 1; i < 32; i++)
508 if (tapesread & (1 << i)) {
509 fprintf(stderr, "%s%ld", buf, (long)i);
510 strcpy(buf, ", ");
511 }
512 fprintf(stderr, "\n");
513 }
514 do {
515 fprintf(stderr, "Specify next volume # (none if no more volumes): ");
516 (void) fflush(stderr);
517 (void) fgets(buf, TP_BSIZE, terminal);
518 } while (!feof(terminal) && buf[0] == '\n');
519 if (feof(terminal))
520 exit(1);
521 if (!strcmp(buf, "none\n")) {
522 terminateinput();
523 return;
524 }
525 newvol = atoi(buf);
526 if (newvol <= 0) {
527 fprintf(stderr,
528 "Volume numbers are positive numerics\n");
529 }
530 }
531 if (newvol == volno) {
532 tapesread |= 1 << volno;
533 #if defined(USE_QFA) && defined(sunos)
534 if (createtapeposflag || tapeposflag) {
535 if (OpenSMTCmt(magtape) < 0) {
536 volno = -1;
537 haderror = 1;
538 goto again;
539 }
540 }
541 #endif /* USE_QFA */
542 return;
543 }
544 closemt();
545
546 /*
547 * if using an archive file, reset its name so readtape()
548 * could properly use remote access.
549 */
550 Afile = NULL;
551
552 if (Mflag) {
553 snprintf(magtape, MAXPATHLEN, "%s%03ld", magtapeprefix, newvol);
554 magtape[MAXPATHLEN - 1] = '\0';
555 }
556 if (bot_script && !haderror) {
557 msg("Launching %s\n", bot_script);
558 bot_code = system_command(bot_script, magtape, newvol);
559 if (bot_code != 0 && bot_code != 1) {
560 msg("Restore aborted by the beginning of tape script\n");
561 exit(1);
562 }
563 }
564 if (haderror || (bot_code && !Mflag)) {
565 haderror = 0;
566 #ifdef sunos
567 fprintf(stderr, "Mount volume %ld\n", (long)newvol);
568 #else
569 fprintf(stderr, "Mount tape volume %ld\n", (long)newvol);
570 #endif
571 fprintf(stderr, "Enter ``none'' if there are no more tapes\n");
572 #ifdef sunos
573 fprintf(stderr, "then enter volume name (default: %s) ", magtape);
574 #else
575 fprintf(stderr, "otherwise enter tape name (default: %s) ", magtape);
576 #endif
577 (void) fflush(stderr);
578 (void) fgets(buf, TP_BSIZE, terminal);
579 if (feof(terminal))
580 exit(1);
581 if (!strcmp(buf, "none\n")) {
582 terminateinput();
583 return;
584 }
585 if (buf[0] != '\n') {
586 char *pos;
587 (void) strncpy(magtape, buf, sizeof(magtape));
588 magtape[sizeof(magtape) - 1] = '\0';
589 if ((pos = strchr(magtape, '\n')))
590 magtape[pos - magtape] = '\0';
591 }
592 }
593 #if defined(USE_QFA) && defined(sunos)
594 if (createtapeposflag || tapeposflag) {
595 if (OpenSMTCmt(magtape) < 0) {
596 volno = -1;
597 haderror = 1;
598 goto again;
599 }
600 }
601 #endif /* USE_QFA */
602 #ifdef RRESTORE
603 if (host)
604 mt = rmtopen(magtape, O_RDONLY);
605 else
606 #endif
607 mt = OPEN(magtape, O_RDONLY, 0);
608
609 if (mt == -1) {
610 fprintf(stderr, "Cannot open %s\n", magtape);
611 volno = -1;
612 haderror = 1;
613 goto again;
614 }
615 gethdr:
616 setmagtapein();
617 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
618 readtape_func = readtape_set;
619 #endif
620 volno = newvol;
621 setdumpnum();
622 FLUSHTAPEBUF();
623 findtapeblksize();
624 if (gethead(&tmpbuf) == FAIL) {
625 Dprintf(stdout, "header read failed at %ld blocks\n", (long)blksread);
626 fprintf(stderr, "tape is not dump tape\n");
627 volno = 0;
628 haderror = 1;
629 blksread = saved_blksread;
630 tpblksread = saved_tpblksread;
631 goto again;
632 }
633 if (tmpbuf.c_volume != volno) {
634 fprintf(stderr, "Wrong volume (%d)\n", tmpbuf.c_volume);
635 volno = 0;
636 haderror = 1;
637 blksread = saved_blksread;
638 tpblksread = saved_tpblksread;
639 goto again;
640 }
641 if (tmpbuf.c_date != dumpdate || tmpbuf.c_ddate != dumptime) {
642 fprintf(stderr, "Wrong dump date\n\tgot: %s",
643 #ifdef sunos
644 ctime(&tmpbuf.c_date));
645 #else
646 ctime4(&tmpbuf.c_date));
647 #endif
648 fprintf(stderr, "\twanted: %s", ctime(&dumpdate));
649 volno = 0;
650 haderror = 1;
651 blksread = saved_blksread;
652 tpblksread = saved_tpblksread;
653 goto again;
654 }
655 tapesread |= 1 << volno;
656 /*
657 * If continuing from the previous volume, skip over any
658 * blocks read already at the end of the previous volume.
659 *
660 * If coming to this volume at random, skip to the beginning
661 * of the next record.
662 */
663 if (zflag) {
664 fprintf(stderr, "Dump tape is compressed.\n");
665 #if !defined(HAVE_ZLIB) && !defined(HAVE_BZLIB) && !defined(HAVE_LZO)
666 errx(1,"This restore version doesn't support decompression");
667 #endif /* !HAVE_ZLIB && !HAVE_BZLIB */
668 }
669 Dprintf(stdout, "read %ld recs, tape starts with %ld\n",
670 tpblksread - 1, (long)tmpbuf.c_firstrec);
671 if (tmpbuf.c_type == TS_TAPE && (tmpbuf.c_flags & DR_NEWHEADER)) {
672 if (!wantnext) {
673 tpblksread = tmpbuf.c_firstrec + 1;
674 for (i = tmpbuf.c_count; i > 0; i--)
675 readtape(buf);
676 } else if (tmpbuf.c_firstrec > 0 &&
677 tmpbuf.c_firstrec < tpblksread - 1) {
678 /*
679 * -1 since we've read the volume header
680 */
681 i = tpblksread - tmpbuf.c_firstrec - 1;
682 Dprintf(stderr, "Skipping %ld duplicate record%s.\n",
683 (long)i, i > 1 ? "s" : "");
684 while (--i >= 0)
685 readtape(buf);
686 }
687 }
688 if (curfile.action == USING) {
689 if (volno == 1)
690 panic("active file into volume 1\n");
691 return;
692 }
693 /*
694 * Skip up to the beginning of the next record
695 */
696 if (tmpbuf.c_type == TS_TAPE && (tmpbuf.c_flags & DR_NEWHEADER))
697 for (i = tmpbuf.c_count; i > 0; i--)
698 readtape(buf);
699 (void) gethead(&spcl);
700 findinode(&spcl);
701 if (gettingfile) {
702 gettingfile = 0;
703 siglongjmp(restart, 1);
704 }
705 }
706
707 /*
708 * Handle unexpected EOF.
709 */
710 static void
711 terminateinput(void)
712 {
713
714 if (gettingfile && curfile.action == USING) {
715 printf("Warning: %s %s\n",
716 "End-of-input encountered while extracting", curfile.name);
717 }
718 curfile.name = "<name unknown>";
719 curfile.action = UNKNOWN;
720 curfile.dip = NULL;
721 curfile.ino = maxino;
722 if (gettingfile) {
723 gettingfile = 0;
724 siglongjmp(restart, 1);
725 }
726 }
727
728 /*
729 * handle multiple dumps per tape by skipping forward to the
730 * appropriate one.
731 */
732 static void
733 setdumpnum(void)
734 {
735 struct mtop tcom;
736
737 if (dumpnum == 1 || volno != 1)
738 return;
739 if (pipein)
740 errx(1, "Cannot have multiple dumps on pipe input");
741 tcom.mt_op = MTFSF;
742 tcom.mt_count = dumpnum - 1;
743 #ifdef RRESTORE
744 if (host) {
745 if (rmtioctl(MTFSF, dumpnum - 1) < 0) {
746 fprintf(stderr, "rmtioctl MTFSF: %s\n", strerror(errno));
747 exit(1);
748 }
749 } else
750 #endif
751 if (ioctl(mt, (int)MTIOCTOP, (char *)&tcom) < 0) {
752 fprintf(stderr, "rmtioctl MTFSF: %s\n", strerror(errno));
753 exit(1);
754 /* warn("ioctl MTFSF"); */
755 }
756 }
757
758 void
759 printdumpinfo(void)
760 {
761 #ifdef sunos
762 Vprintf(stdout, "Dump date: %s", ctime(&spcl.c_date));
763 Vprintf(stdout, "Dumped from: %s",
764 (spcl.c_ddate == 0) ? "the epoch\n" : ctime(&spcl.c_ddate));
765 if (spcl.c_host[0] == '\0')
766 return;
767 Vprintf(stdout, "Level %d dump of %s on %s:%s\n",
768 spcl.c_level, spcl.c_filesys, spcl.c_host, spcl.c_dev);
769 Vprintf(stdout, "Label: %s\n", spcl.c_label);
770 #else
771 fprintf(stdout, "Dump date: %s", ctime4(&spcl.c_date));
772 fprintf(stdout, "Dumped from: %s",
773 (spcl.c_ddate == 0) ? "the epoch\n" : ctime4(&spcl.c_ddate));
774 if (spcl.c_host[0] == '\0')
775 return;
776 fprintf(stdout, "Level %d dump of %s on %s:%s\n",
777 spcl.c_level, spcl.c_filesys, spcl.c_host, spcl.c_dev);
778 fprintf(stdout, "Label: %s\n", spcl.c_label);
779 #endif
780 }
781
782 void
783 printvolinfo(void)
784 {
785 int i;
786
787 if (volinfo[1] == ROOTINO) {
788 printf("Starting inode numbers by volume:\n");
789 for (i = 1; i < (int)TP_NINOS && volinfo[i] != 0; ++i)
790 printf("\tVolume %d: %lu\n", i, (unsigned long)volinfo[i]);
791 }
792 }
793
794
795 int
796 extractfile(struct entry *ep, int doremove)
797 {
798 unsigned int flags;
799 mode_t mode;
800 struct timeval timep[2];
801 char *name = myname(ep);
802
803 /* If removal is requested (-r mode) do remove it unless
804 * we are extracting a metadata only inode */
805 if (spcl.c_flags & DR_METAONLY) {
806 Vprintf(stdout, "file %s is metadata only\n", name);
807 }
808 else {
809 if (doremove) {
810 removeleaf(ep);
811 ep->e_flags &= ~REMOVED;
812 }
813 }
814
815 curfile.name = name;
816 curfile.action = USING;
817 #if defined(__linux__) || defined(sunos)
818 timep[0].tv_sec = curfile.dip->di_atime.tv_sec;
819 timep[0].tv_usec = curfile.dip->di_atime.tv_usec;
820 timep[1].tv_sec = curfile.dip->di_mtime.tv_sec;
821 timep[1].tv_usec = curfile.dip->di_mtime.tv_usec;
822 #else /* __linux__ || sunos */
823 timep[0].tv_sec = curfile.dip->di_atime;
824 timep[0].tv_usec = curfile.dip->di_atimensec / 1000;
825 timep[1].tv_sec = curfile.dip->di_mtime;
826 timep[1].tv_usec = curfile.dip->di_mtimensec / 1000;
827 #endif /* __linux__ */
828 mode = curfile.dip->di_mode;
829 flags = curfile.dip->di_flags;
830 switch (mode & IFMT) {
831
832 default:
833 fprintf(stderr, "%s: unknown file mode 0%o\n", name, mode);
834 skipfile();
835 return (FAIL);
836
837 case IFSOCK:
838 Vprintf(stdout, "skipped socket %s\n", name);
839 skipfile();
840 return (GOOD);
841
842 case IFDIR:
843 if (mflag) {
844 if (ep == NULL || ep->e_flags & EXTRACT)
845 panic("unextracted directory %s\n", name);
846 skipfile();
847 return (GOOD);
848 }
849 Vprintf(stdout, "extract file %s\n", name);
850 return (genliteraldir(name, curfile.ino));
851
852 case IFLNK:
853 {
854 #ifdef HAVE_LCHOWN
855 uid_t luid = curfile.dip->di_uid;
856 gid_t lgid = curfile.dip->di_gid;
857 #endif
858 if (! (spcl.c_flags & DR_METAONLY)) {
859 lnkbuf[0] = '\0';
860 pathlen = 0;
861 getfile(xtrlnkfile, xtrlnkskip);
862 if (pathlen == 0) {
863 Vprintf(stdout,
864 "%s: zero length symbolic link (ignored)\n", name);
865 return (GOOD);
866 }
867 if (linkit(lnkbuf, name, SYMLINK) == FAIL)
868 return (FAIL);
869 }
870 else
871 skipfile();
872
873 #ifdef HAVE_LCHOWN
874 (void) lchown(name, luid, lgid);
875 #endif
876 return (GOOD);
877 }
878
879 case IFIFO:
880 Vprintf(stdout, "extract fifo %s\n", name);
881 if (Nflag) {
882 skipfile();
883 return (GOOD);
884 }
885 if (! (spcl.c_flags & DR_METAONLY)) {
886 if (uflag && !Nflag)
887 (void)unlink(name);
888 if (mkfifo(name, mode) < 0) {
889 warn("%s: cannot create fifo", name);
890 skipfile();
891 return (FAIL);
892 }
893 }
894 (void) chown(name, curfile.dip->di_uid, curfile.dip->di_gid);
895 (void) chmod(name, mode);
896 if (flags)
897 #ifdef __linux__
898 (void) fsetflags(name, flags);
899 #else
900 #ifdef sunos
901 {
902 warn("%s: cannot call chflags", name);
903 /* (void) chflags(name, flags); */
904 }
905 #else
906 (void) chflags(name, flags);
907 #endif
908 #endif
909 skipfile();
910 utimes(name, timep);
911 return (GOOD);
912
913 case IFCHR:
914 case IFBLK:
915 Vprintf(stdout, "extract special file %s\n", name);
916 if (Nflag) {
917 skipfile();
918 return (GOOD);
919 }
920 if (! (spcl.c_flags & DR_METAONLY)) {
921 if (uflag)
922 (void)unlink(name);
923 if (mknod(name, mode, (int)curfile.dip->di_rdev) < 0) {
924 warn("%s: cannot create special file", name);
925 skipfile();
926 return (FAIL);
927 }
928 }
929 (void) chown(name, curfile.dip->di_uid, curfile.dip->di_gid);
930 (void) chmod(name, mode);
931 if (flags)
932 #ifdef __linux__
933 {
934 warn("%s: fsetflags called on a special file", name);
935 (void) fsetflags(name, flags);
936 }
937 #else
938 #ifdef sunos
939 {
940 warn("%s: cannot call chflags on a special file", name);
941 /* (void) chflags(name, flags); */
942 }
943 #else
944 {
945 warn("%s: chflags called on a special file", name);
946 (void) chflags(name, flags);
947 }
948 #endif
949 #endif
950 skipfile();
951 utimes(name, timep);
952 return (GOOD);
953
954 case IFREG:
955 {
956 uid_t luid = curfile.dip->di_uid;
957 gid_t lgid = curfile.dip->di_gid;
958
959 Vprintf(stdout, "extract file %s\n", name);
960 if (Nflag) {
961 skipfile();
962 return (GOOD);
963 }
964 if (! (spcl.c_flags & DR_METAONLY)) {
965 if (uflag)
966 (void)unlink(name);
967 if ((ofile = OPEN(name, O_WRONLY | O_CREAT | O_TRUNC,
968 0666)) < 0) {
969 warn("%s: cannot create file", name);
970 skipfile();
971 return (FAIL);
972 }
973 getfile(xtrfile, xtrskip);
974 (void) close(ofile);
975 }
976 else
977 skipfile();
978 (void) chown(name, luid, lgid);
979 (void) chmod(name, mode);
980 if (flags)
981 #ifdef __linux__
982 (void) fsetflags(name, flags);
983 #else
984 #ifdef sunos
985 {
986 warn("%s: cannot call chflags", name);
987 /* (void) chflags(name, flags); */
988 }
989 #else
990 (void) chflags(name, flags);
991 #endif
992 #endif
993 utimes(name, timep);
994 return (GOOD);
995 }
996 }
997 /* NOTREACHED */
998 }
999
1000 #ifdef DUMP_MACOSX
1001 int
1002 extractfinderinfoufs(char *name)
1003 {
1004 int err;
1005 char oFileRsrc[MAXPATHLEN];
1006 int flags;
1007 mode_t mode;
1008 struct timeval timep[2];
1009 u_int32_t uid;
1010 u_int32_t gid;
1011 char path[MAXPATHLEN], fname[MAXPATHLEN];
1012 int toto;
1013
1014 curfile.name = name;
1015 curfile.action = USING;
1016 timep[0].tv_sec = curfile.dip->di_atime.tv_sec;
1017 timep[0].tv_usec = curfile.dip->di_atime.tv_usec;
1018 timep[1].tv_sec = curfile.dip->di_mtime.tv_sec;
1019 timep[1].tv_usec = curfile.dip->di_mtime.tv_usec;
1020 mode = curfile.dip->di_mode;
1021 flags = curfile.dip->di_flags;
1022 uid = curfile.dip->di_uid;
1023 gid = curfile.dip->di_gid;
1024
1025 switch (mode & IFMT) {
1026
1027 default:
1028 fprintf(stderr, "%s: (extr. finfoufs) unknown file mode 0%o\n", name, mode);
1029 skipfile();
1030 return (FAIL);
1031
1032 case IFDIR:
1033 fprintf(stderr, "%s: (extr. finfoufs[IFDIR]) unknown file mode 0%o\n", name, mode);
1034 skipfile();
1035 return (FAIL);
1036
1037 case IFLNK:
1038 skipfile();
1039 return (GOOD);
1040
1041 case IFREG:
1042 Vprintf(stdout, "extract finderinfo file %s\n", name);
1043 if (Nflag) {
1044 skipfile();
1045 return (GOOD);
1046 }
1047 getfile(xtrfilefinderinfo, xtrskip);
1048
1049 GetPathFile(name, path, fname);
1050 strcpy(oFileRsrc, path);
1051 strcat(oFileRsrc, "._");
1052 strcat(oFileRsrc, fname);
1053
1054 if ((err = CreateAppleDoubleFileRes(oFileRsrc, &gFndrInfo.fndrinfo,
1055 mode, flags, timep, uid, gid)) != 0) {
1056 fprintf(stderr, "%s: cannot create finderinfo: %s\n",
1057 name, strerror(errno));
1058 skipfile();
1059 return (FAIL);
1060 }
1061 return (GOOD);
1062 }
1063 /* NOTREACHED */
1064 }
1065
1066
1067 int
1068 extractresourceufs(char *name)
1069 {
1070 char oFileRsrc[MAXPATHLEN];
1071 int flags;
1072 mode_t mode;
1073 struct timeval timep[2];
1074 char path[MAXPATHLEN], fname[MAXPATHLEN];
1075 ASDHeaderPtr hp;
1076 ASDEntryPtr ep;
1077 u_long loff;
1078 u_int32_t uid;
1079 u_int32_t gid;
1080 u_int64_t di_size;
1081 char *p;
1082 char buf[1024];
1083
1084 curfile.name = name;
1085 curfile.action = USING;
1086 timep[0].tv_sec = curfile.dip->di_atime.tv_sec;
1087 timep[0].tv_usec = curfile.dip->di_atime.tv_usec;
1088 timep[1].tv_sec = curfile.dip->di_mtime.tv_sec;
1089 timep[1].tv_usec = curfile.dip->di_mtime.tv_usec;
1090 mode = curfile.dip->di_mode;
1091 flags = curfile.dip->di_flags;
1092 uid = curfile.dip->di_uid;
1093 gid = curfile.dip->di_gid;
1094 di_size = curfile.dip->di_size;
1095
1096 switch (mode & IFMT) {
1097
1098 default:
1099 fprintf(stderr, "%s: (extr. resufs) unknown file mode 0%o\n", name, mode);
1100 skipfile();
1101 return (FAIL);
1102
1103 case IFDIR:
1104 fprintf(stderr, "%s: (extr. resufs [IFDIR]) unknown file mode 0%o\n", name, mode);
1105 skipfile();
1106 return (FAIL);
1107
1108 case IFLNK:
1109 skipfile();
1110 return (GOOD);
1111
1112 case IFREG:
1113 Vprintf(stdout, "extract resource file %s\n", name);
1114 if (Nflag) {
1115 skipfile();
1116 return (GOOD);
1117 }
1118
1119 GetPathFile(name, path, fname);
1120 strcpy(oFileRsrc, path);
1121 strcat(oFileRsrc, "._");
1122 strcat(oFileRsrc, fname);
1123
1124 if ((ofile = open(oFileRsrc, O_RDONLY, 0)) < 0) {
1125 fprintf(stderr, "%s: cannot read finderinfo: %s\n",
1126 name, strerror(errno));
1127 skipfile();
1128 return (FAIL);
1129 }
1130 read(ofile, buf, 70);
1131 (void) close(ofile);
1132 p = buf;
1133 hp = (ASDHeaderPtr)p;
1134 /* the header */
1135 hp->entries++;
1136 p += sizeof(ASDHeader) - CORRECT;
1137 ep = (ASDEntryPtr)p;
1138 /* the finderinfo entry */
1139 ep->offset += sizeof(ASDEntry);
1140 loff = ep->offset;
1141
1142 p += sizeof(ASDEntry);
1143 /* the finderinfo data */
1144 bcopy(p, p + sizeof(ASDEntry), INFOLEN);
1145 ep = (ASDEntryPtr)p;
1146 /* the new resourcefork entry */
1147 ep->entryID = EntryRSRCFork;
1148 ep->offset = loff + INFOLEN;
1149 ep->len = di_size;
1150 /* write the new appledouble entries to the file */
1151 if ((ofile = open(oFileRsrc, O_WRONLY | O_CREAT | O_TRUNC, 0666)) < 0) {
1152 fprintf(stderr, "%s: cannot create resource file: %s\n",
1153 name, strerror(errno));
1154 skipfile();
1155 return (FAIL);
1156 }
1157 write(ofile, buf, 70 + sizeof(ASDEntry));
1158 /* and add the resource data from tape */
1159 getfile(xtrfile, xtrskip);
1160
1161 (void) fchown(ofile, uid, gid);
1162 (void) fchmod(ofile, mode);
1163 (void) close(ofile);
1164 (void) fsetflags(oFileRsrc, flags);
1165 utimes(oFileRsrc, timep);
1166 return (GOOD);
1167 }
1168 /* NOTREACHED */
1169 }
1170 #endif /* DUMP_MACOSX */
1171
1172 /*
1173 * skip over bit maps on the tape
1174 */
1175 void
1176 skipmaps(void)
1177 {
1178
1179 while (spcl.c_type == TS_BITS || spcl.c_type == TS_CLRI)
1180 skipfile();
1181 }
1182
1183 /*
1184 * skip over a file on the tape
1185 */
1186 void
1187 skipfile(void)
1188 {
1189
1190 curfile.action = SKIP;
1191 getfile(xtrnull, xtrnull);
1192 }
1193
1194 /*
1195 * Extract a file from the tape.
1196 * When an allocated block is found it is passed to the fill function;
1197 * when an unallocated block (hole) is found, a zeroed buffer is passed
1198 * to the skip function.
1199 */
1200 void
1201 getfile(void (*fill) __P((char *, size_t)), void (*skip) __P((char *, size_t)))
1202 {
1203 int i;
1204 volatile int curblk = 0;
1205 volatile quad_t size = spcl.c_dinode.di_size;
1206 volatile int last_write_was_hole = 0;
1207 quad_t origsize = size;
1208 static char clearedbuf[MAXBSIZE];
1209 char buf[MAXBSIZE / TP_BSIZE][TP_BSIZE];
1210 char junk[TP_BSIZE];
1211
1212 if (spcl.c_type == TS_END)
1213 panic("ran off end of tape\n");
1214 if (spcl.c_magic != NFS_MAGIC)
1215 panic("not at beginning of a file\n");
1216 if (!gettingfile && setjmp(restart) != 0)
1217 return;
1218 gettingfile++;
1219 loop:
1220 for (i = 0; i < spcl.c_count; i++) {
1221 if (readmapflag || spcl.c_addr[i]) {
1222 readtape(&buf[curblk++][0]);
1223 if (curblk == fssize / TP_BSIZE) {
1224 (*fill)((char *)buf, (size_t)(size > TP_BSIZE ?
1225 fssize : (curblk - 1) * TP_BSIZE + size));
1226 curblk = 0;
1227 last_write_was_hole = 0;
1228 }
1229 } else {
1230 if (curblk > 0) {
1231 (*fill)((char *)buf, (size_t)(size > TP_BSIZE ?
1232 curblk * TP_BSIZE :
1233 (curblk - 1) * TP_BSIZE + size));
1234 curblk = 0;
1235 }
1236 (*skip)(clearedbuf, (long)(size > TP_BSIZE ?
1237 TP_BSIZE : size));
1238 last_write_was_hole = 1;
1239 }
1240 if ((size -= TP_BSIZE) <= 0) {
1241 for (i++; i < spcl.c_count; i++)
1242 if (readmapflag || spcl.c_addr[i])
1243 readtape(junk);
1244 break;
1245 }
1246 }
1247 if (gethead(&spcl) == GOOD && size > 0) {
1248 if (spcl.c_type == TS_ADDR)
1249 goto loop;
1250 Dprintf(stdout,
1251 "Missing address (header) block for %s at %ld blocks\n",
1252 curfile.name, (long)blksread);
1253 }
1254 if (curblk > 0) {
1255 (*fill)((char *)buf, (size_t)((curblk * TP_BSIZE) + size));
1256 last_write_was_hole = 0;
1257 }
1258 if (size > 0) {
1259 fprintf(stderr, "Missing blocks at the end of %s, assuming hole\n", curfile.name);
1260 while (size > 0) {
1261 size_t skp = size > TP_BSIZE ? TP_BSIZE : size;
1262 (*skip)(clearedbuf, skp);
1263 size -= skp;
1264 }
1265 last_write_was_hole = 1;
1266 }
1267 if (last_write_was_hole) {
1268 FTRUNCATE(ofile, origsize);
1269 }
1270 if (!readingmaps)
1271 findinode(&spcl);
1272 gettingfile = 0;
1273 }
1274
1275 /*
1276 * Write out the next block of a file.
1277 */
1278 static void
1279 xtrfile(char *buf, size_t size)
1280 {
1281
1282 if (Nflag)
1283 return;
1284 if (write(ofile, buf, (int) size) == -1)
1285 err(1, "write error extracting inode %lu, name %s\nwrite",
1286 (unsigned long)curfile.ino, curfile.name);
1287 }
1288
1289 #ifdef DUMP_MACOSX
1290 static void
1291 xtrfilefinderinfo(char *buf, size_t size)
1292 {
1293 if (Nflag)
1294 return;
1295 bcopy(buf, &gFndrInfo, size);
1296 }
1297 #endif /* DUMP_MACOSX */
1298
1299 /*
1300 * Skip over a hole in a file.
1301 */
1302 /* ARGSUSED */
1303 static void
1304 xtrskip(UNUSED(char *buf), size_t size)
1305 {
1306
1307 if (LSEEK(ofile, (OFF_T)size, SEEK_CUR) == -1)
1308 err(1, "seek error extracting inode %lu, name %s\nlseek",
1309 (unsigned long)curfile.ino, curfile.name);
1310 }
1311
1312 /*
1313 * Collect the next block of a symbolic link.
1314 */
1315 static void
1316 xtrlnkfile(char *buf, size_t size)
1317 {
1318
1319 pathlen += size;
1320 if (pathlen > MAXPATHLEN)
1321 errx(1, "symbolic link name: %s->%s%s; too long %d",
1322 curfile.name, lnkbuf, buf, pathlen);
1323 (void) strcat(lnkbuf, buf);
1324 }
1325
1326 /*
1327 * Skip over a hole in a symbolic link (should never happen).
1328 */
1329 /* ARGSUSED */
1330 static void
1331 xtrlnkskip(UNUSED(char *buf), UNUSED(size_t size))
1332 {
1333
1334 errx(1, "unallocated block in symbolic link %s", curfile.name);
1335 }
1336
1337 /*
1338 * Collect the next block of a bit map.
1339 */
1340 static void
1341 xtrmap(char *buf, size_t size)
1342 {
1343
1344 memmove(map, buf, size);
1345 map += size;
1346 }
1347
1348 /*
1349 * Skip over a hole in a bit map (should never happen).
1350 */
1351 /* ARGSUSED */
1352 static void
1353 xtrmapskip(UNUSED(char *buf), size_t size)
1354 {
1355
1356 panic("hole in map\n");
1357 map += size;
1358 }
1359
1360 /*
1361 * Noop, when an extraction function is not needed.
1362 */
1363 /* ARGSUSED */
1364 void
1365 xtrnull(UNUSED(char *buf), UNUSED(size_t size))
1366 {
1367
1368 return;
1369 }
1370
1371 #if COMPARE_ONTHEFLY
1372 /*
1373 * Compare the next block of a file.
1374 */
1375 static void
1376 xtrcmpfile(char *buf, size_t size)
1377 {
1378 static char cmpbuf[MAXBSIZE];
1379
1380 if (cmperror)
1381 return;
1382
1383 if (read(ifile, cmpbuf, size) != (ssize_t)size) {
1384 fprintf(stderr, "%s: size has changed.\n",
1385 curfile.name);
1386 cmperror = 1;
1387 return;
1388 }
1389
1390 if (memcmp(buf, cmpbuf, size) != 0) {
1391 fprintf(stderr, "%s: tape and disk copies are different\n",
1392 curfile.name);
1393 cmperror = 1;
1394 return;
1395 }
1396 }
1397
1398 /*
1399 * Skip over a hole in a file.
1400 */
1401 static void
1402 xtrcmpskip(UNUSED(char *buf), size_t size)
1403 {
1404 static char cmpbuf[MAXBSIZE];
1405 int i;
1406
1407 if (cmperror)
1408 return;
1409
1410 if (read(ifile, cmpbuf, size) != (ssize_t)size) {
1411 fprintf(stderr, "%s: size has changed.\n",
1412 curfile.name);
1413 cmperror = 1;
1414 return;
1415 }
1416
1417 for (i = 0; i < (int)size; ++i)
1418 if (cmpbuf[i] != '\0') {
1419 fprintf(stderr, "%s: tape and disk copies are different\n",
1420 curfile.name);
1421 cmperror = 1;
1422 return;
1423 }
1424 }
1425 #endif /* COMPARE_ONTHEFLY */
1426
1427 #if !COMPARE_ONTHEFLY
1428 static int
1429 do_cmpfiles(int fd_tape, int fd_disk, long size)
1430 {
1431 static char buf_tape[BUFSIZ];
1432 static char buf_disk[BUFSIZ];
1433 ssize_t n_tape;
1434 ssize_t n_disk;
1435
1436 while (size > 0) {
1437 if ((n_tape = read(fd_tape, buf_tape, sizeof(buf_tape))) < 1) {
1438 close(fd_tape), close(fd_disk);
1439 panic("do_cmpfiles: unexpected EOF[1]");
1440 }
1441 if ((n_disk = read(fd_disk, buf_disk, sizeof(buf_tape))) < 1) {
1442 close(fd_tape), close(fd_disk);
1443 panic("do_cmpfiles: unexpected EOF[2]");
1444 }
1445 if (n_tape != n_disk) {
1446 close(fd_tape), close(fd_disk);
1447 panic("do_cmpfiles: sizes different!");
1448 }
1449 if (memcmp(buf_tape, buf_disk, (size_t)n_tape) != 0) return (1);
1450 size -= n_tape;
1451 }
1452 return (0);
1453 }
1454
1455 /* for debugging compare problems */
1456 #undef COMPARE_FAIL_KEEP_FILE
1457
1458 static
1459 #ifdef COMPARE_FAIL_KEEP_FILE
1460 /* return true if tapefile should be unlinked after compare */
1461 int
1462 #else
1463 void
1464 #endif
1465 cmpfiles(char *tapefile, char *diskfile, struct STAT *sbuf_disk)
1466 {
1467 struct STAT sbuf_tape;
1468 int fd_tape, fd_disk;
1469
1470 if (STAT(tapefile, &sbuf_tape) != 0) {
1471 panic("Can't lstat tmp file %s: %s\n", tapefile,
1472 strerror(errno));
1473 do_compare_error;
1474 }
1475
1476 if (sbuf_disk->st_size != sbuf_tape.st_size) {
1477 fprintf(stderr,
1478 "%s: size changed from %ld to %ld.\n",
1479 diskfile, (long)sbuf_tape.st_size, (long)sbuf_disk->st_size);
1480 do_compare_error;
1481 #ifdef COMPARE_FAIL_KEEP_FILE
1482 return (0);
1483 #else
1484 return;
1485 #endif
1486 }
1487
1488 if ((fd_tape = OPEN(tapefile, O_RDONLY)) < 0) {
1489 panic("Can't open %s: %s\n", tapefile, strerror(errno));
1490 do_compare_error;
1491 }
1492 if ((fd_disk = OPEN(diskfile, O_RDONLY)) < 0) {
1493 close(fd_tape);
1494 panic("Can't open %s: %s\n", diskfile, strerror(errno));
1495 do_compare_error;
1496 }
1497
1498 if (do_cmpfiles(fd_tape, fd_disk, sbuf_tape.st_size)) {
1499 fprintf(stderr, "%s: tape and disk copies are different\n",
1500 diskfile);
1501 close(fd_tape);
1502 close(fd_disk);
1503 do_compare_error;
1504 #ifdef COMPARE_FAIL_KEEP_FILE
1505 /* rename the file to live in /tmp */
1506 /* rename `tapefile' to /tmp/<basename of diskfile> */
1507 {
1508 char *p = strrchr(diskfile, '/');
1509 char newname[MAXPATHLEN];
1510 if (!p) {
1511 panic("can't find / in %s\n", diskfile);
1512 }
1513 snprintf(newname, sizeof(newname), "%s/debug/%s", tmpdir, p + 1);
1514 if (rename(tapefile, newname)) {
1515 panic("rename from %s to %s failed: %s\n",
1516 tapefile, newname,
1517 strerror(errno));
1518 } else {
1519 fprintf(stderr, "*** %s saved to %s\n",
1520 tapefile, newname);
1521 }
1522 }
1523
1524 /* don't unlink the file (it's not there anymore */
1525 /* anyway) */
1526 return (0);
1527 #else
1528 return;
1529 #endif
1530 }
1531 close(fd_tape);
1532 close(fd_disk);
1533 #ifdef COMPARE_FAIL_KEEP_FILE
1534 return (1);
1535 #endif
1536 }
1537 #endif /* !COMPARE_ONTHEFLY */
1538
1539 #if !COMPARE_ONTHEFLY
1540 static char tmpfilename[MAXPATHLEN];
1541 #endif
1542
1543 void
1544 comparefile(char *name)
1545 {
1546 unsigned int mode;
1547 struct STAT sb;
1548 int r;
1549 #if !COMPARE_ONTHEFLY
1550 static char *tmpfile = NULL;
1551 struct STAT stemp;
1552 #endif
1553
1554 curfile.name = name;
1555 curfile.action = USING;
1556 mode = curfile.dip->di_mode;
1557
1558 if ((mode & IFMT) == IFSOCK) {
1559 Vprintf(stdout, "skipped socket %s\n", name);
1560 skipfile();
1561 return;
1562 }
1563
1564 if ((r = LSTAT(name, &sb)) != 0) {
1565 warn("%s: does not exist (%d)", name, r);
1566 do_compare_error;
1567 skipfile();
1568 return;
1569 }
1570
1571 Vprintf(stdout, "comparing %s (size: %ld, mode: 0%o)\n", name,
1572 (long)sb.st_size, mode);
1573
1574 if (sb.st_mode != mode) {
1575 fprintf(stderr, "%s: mode changed from 0%o to 0%o.\n",
1576 name, mode & 07777, sb.st_mode & 07777);
1577 do_compare_error;
1578 }
1579 if (spcl.c_flags & DR_METAONLY) {
1580 skipfile();
1581 return;
1582 }
1583 switch (mode & IFMT) {
1584 default:
1585 skipfile();
1586 return;
1587
1588 case IFSOCK:
1589 skipfile();
1590 return;
1591
1592 case IFDIR:
1593 skipfile();
1594 return;
1595
1596 case IFLNK: {
1597 char lbuf[MAXPATHLEN + 1];
1598 int lsize;
1599
1600 if (!(sb.st_mode & S_IFLNK)) {
1601 fprintf(stderr, "%s: is no longer a symbolic link\n",
1602 name);
1603 do_compare_error;
1604 return;
1605 }
1606 lnkbuf[0] = '\0';
1607 pathlen = 0;
1608 getfile(xtrlnkfile, xtrlnkskip);
1609 if (pathlen == 0) {
1610 fprintf(stderr,
1611 "%s: zero length symbolic link (ignored)\n",
1612 name);
1613 do_compare_error;
1614 return;
1615 }
1616 if ((lsize = readlink(name, lbuf, MAXPATHLEN)) < 0) {
1617 panic("readlink of %s failed: %s", name,
1618 strerror(errno));
1619 do_compare_error;
1620 }
1621 lbuf[lsize] = 0;
1622 if (strcmp(lbuf, lnkbuf) != 0) {
1623 fprintf(stderr,
1624 "%s: symbolic link changed from %s to %s.\n",
1625 name, lnkbuf, lbuf);
1626 do_compare_error;
1627 return;
1628 }
1629 return;
1630 }
1631
1632 case IFCHR:
1633 case IFBLK:
1634 if (!(sb.st_mode & (S_IFCHR|S_IFBLK))) {
1635 fprintf(stderr, "%s: no longer a special file\n",
1636 name);
1637 do_compare_error;
1638 skipfile();
1639 return;
1640 }
1641
1642 if (sb.st_rdev != (dev_t)curfile.dip->di_rdev) {
1643 fprintf(stderr,
1644 "%s: device changed from %d,%d to %d,%d.\n",
1645 name,
1646 major(curfile.dip->di_rdev),
1647 minor(curfile.dip->di_rdev),
1648 major(sb.st_rdev),
1649 minor(sb.st_rdev));
1650 do_compare_error;
1651 }
1652 skipfile();
1653 return;
1654
1655 case IFREG:
1656 #if COMPARE_ONTHEFLY
1657 if ((ifile = OPEN(name, O_RDONLY)) < 0) {
1658 panic("Can't open %s: %s\n", name, strerror(errno));
1659 skipfile();
1660 do_compare_error;
1661 }
1662 else {
1663 cmperror = 0;
1664 getfile(xtrcmpfile, xtrcmpskip);
1665 if (!cmperror) {
1666 char c;
1667 if (read(ifile, &c, 1) != 0) {
1668 fprintf(stderr, "%s: size has changed.\n",
1669 name);
1670 cmperror = 1;
1671 }
1672 }
1673 if (cmperror)
1674 do_compare_error;
1675 close(ifile);
1676 }
1677 #else
1678 if (tmpfile == NULL) {
1679 /* argument to mktemp() must not be in RO space: */
1680 snprintf(tmpfilename, sizeof(tmpfilename), "%s/restoreCXXXXXX", tmpdir);
1681 tmpfile = mktemp(&tmpfilename[0]);
1682 }
1683 if ((STAT(tmpfile, &stemp) == 0) && (unlink(tmpfile) != 0)) {
1684 panic("cannot delete tmp file %s: %s\n",
1685 tmpfile, strerror(errno));
1686 }
1687 if ((ofile = OPEN(tmpfile, O_WRONLY | O_CREAT | O_TRUNC, 0600)) < 0) {
1688 panic("cannot create file temp file %s: %s\n",
1689 name, strerror(errno));
1690 }
1691 getfile(xtrfile, xtrskip);
1692 (void) close(ofile);
1693 #ifdef COMPARE_FAIL_KEEP_FILE
1694 if (cmpfiles(tmpfile, name, &sb))
1695 unlink(tmpfile);
1696 #else
1697 cmpfiles(tmpfile, name, &sb);
1698 unlink(tmpfile);
1699 #endif
1700 #endif /* COMPARE_ONTHEFLY */
1701 return;
1702 }
1703 /* NOTREACHED */
1704 }
1705
1706 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
1707 static void (*readtape_func)(char *) = readtape_set;
1708
1709 /*
1710 * Read TP_BSIZE blocks from the input.
1711 * Handle read errors, and end of media.
1712 * Decompress compressed blocks.
1713 */
1714 static void
1715 readtape(char *buf)
1716 {
1717 (*readtape_func)(buf); /* call the actual processing routine */
1718 }
1719
1720 /*
1721 * Set function pointer for readtape() routine. zflag and magtapein must
1722 * be correctly set before the first call to readtape().
1723 */
1724 static void
1725 readtape_set(char *buf)
1726 {
1727 if (!zflag)
1728 readtape_func = readtape_uncompr;
1729 else {
1730 newcomprbuf(ntrec);
1731 if (magtapein)
1732 readtape_func = readtape_comprtape;
1733 else
1734 readtape_func = readtape_comprfile;
1735 }
1736 readtape(buf);
1737 }
1738
1739 #endif /* HAVE_ZLIB || HAVE_BZLIB || HAVE_LZO */
1740
1741 /*
1742 * This is the original readtape(), it's used for reading uncompressed input.
1743 * Read TP_BSIZE blocks from the input.
1744 * Handle read errors, and end of media.
1745 */
1746 static void
1747 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
1748 readtape_uncompr(char *buf)
1749 #else
1750 readtape(char *buf)
1751 #endif
1752 {
1753 ssize_t rd, newvol, i;
1754 int cnt, seek_failed;
1755
1756 if (blkcnt < numtrec) {
1757 memmove(buf, &tbufptr[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1758 blksread++;
1759 tpblksread++;
1760 return;
1761 }
1762 tbufptr = tapebuf;
1763 for (i = 0; i < ntrec; i++)
1764 ((struct s_spcl *)&tapebuf[i * TP_BSIZE])->c_magic = 0;
1765 if (numtrec == 0)
1766 numtrec = ntrec;
1767 cnt = ntrec * TP_BSIZE;
1768 rd = 0;
1769 #ifdef USE_QFA
1770 if (createtapeposflag)
1771 (void)GetTapePos(&curtapepos);
1772 #endif
1773 getmore:
1774 #ifdef RRESTORE
1775 if (!Afile && host)
1776 i = rmtread(&tapebuf[rd], cnt);
1777 else
1778 #endif
1779 i = read(mt, &tapebuf[rd], cnt);
1780
1781 /*
1782 * Check for mid-tape short read error.
1783 * If found, skip rest of buffer and start with the next.
1784 */
1785 if (!pipein && numtrec < ntrec && i > 0) {
1786 Dprintf(stdout, "mid-media short read error.\n");
1787 numtrec = ntrec;
1788 }
1789 /*
1790 * Handle partial block read.
1791 */
1792 if (pipein && i == 0 && rd > 0)
1793 i = rd;
1794 else if (i > 0 && i != ntrec * TP_BSIZE) {
1795 if (pipein) {
1796 rd += i;
1797 cnt -= i;
1798 if (cnt > 0)
1799 goto getmore;
1800 i = rd;
1801 } else {
1802 /*
1803 * Short read. Process the blocks read.
1804 */
1805 if (i % TP_BSIZE != 0)
1806 Vprintf(stdout,
1807 "partial block read: %ld should be %ld\n",
1808 (long)i, ntrec * TP_BSIZE);
1809 numtrec = i / TP_BSIZE;
1810 }
1811 }
1812 /*
1813 * Handle read error.
1814 */
1815 if (i < 0) {
1816 fprintf(stderr, "Tape read error while ");
1817 switch (curfile.action) {
1818 default:
1819 fprintf(stderr, "trying to set up tape\n");
1820 break;
1821 case UNKNOWN:
1822 fprintf(stderr, "trying to resynchronize\n");
1823 break;
1824 case USING:
1825 fprintf(stderr, "restoring %s\n", curfile.name);
1826 break;
1827 case SKIP:
1828 fprintf(stderr, "skipping over inode %lu\n",
1829 (unsigned long)curfile.ino);
1830 break;
1831 }
1832 if (!yflag && !reply("continue"))
1833 exit(1);
1834 i = ntrec * TP_BSIZE;
1835 memset(tapebuf, 0, (size_t)i);
1836 #ifdef RRESTORE
1837 if (!Afile && host)
1838 seek_failed = (rmtseek(i, 1) < 0);
1839 else
1840 #endif
1841 seek_failed = (LSEEK(mt, i, SEEK_CUR) == (OFF_T)-1);
1842
1843 if (seek_failed) {
1844 warn("continuation failed");
1845 if (!yflag && !reply("assume end-of-tape and continue"))
1846 exit(1);
1847 i = 0;
1848 }
1849 }
1850 /*
1851 * Handle end of tape.
1852 */
1853 if (i == 0) {
1854 Vprintf(stdout, "End-of-tape encountered\n");
1855 if (!pipein) {
1856 newvol = volno + 1;
1857 volno = 0;
1858 numtrec = 0;
1859 getvol(newvol);
1860 readtape(buf);
1861 return;
1862 }
1863 if (rd % TP_BSIZE != 0)
1864 panic("partial block read: %d should be %d\n",
1865 rd, ntrec * TP_BSIZE);
1866 terminateinput();
1867 memmove(&tapebuf[rd], &endoftapemark, TP_BSIZE);
1868 }
1869 blkcnt = 0;
1870 memmove(buf, &tbufptr[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1871 blksread++;
1872 tpblksread++;
1873 }
1874
1875 #if defined(HAVE_ZLIB) || defined(HAVE_BZLIB) || defined(HAVE_LZO)
1876
1877 /*
1878 * Read a compressed format block from a file or pipe and uncompress it.
1879 * Attempt to handle read errors, and end of file.
1880 */
1881 static void
1882 readtape_comprfile(char *buf)
1883 {
1884 long rl, size, i, ret;
1885 int newvol;
1886 struct tapebuf *tpb;
1887
1888 if (blkcnt < numtrec) {
1889 memmove(buf, &tbufptr[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1890 blksread++;
1891 tpblksread++;
1892 return;
1893 }
1894 /* need to read the next block */
1895 tbufptr = tapebuf;
1896 for (i = 0; i < ntrec; i++)
1897 ((struct s_spcl *)&tapebuf[i * TP_BSIZE])->c_magic = 0;
1898 numtrec = ntrec;
1899 tpb = (struct tapebuf *) tapebuf;
1900
1901 /* read the block prefix */
1902 ret = read_a_block(mt, tapebuf, PREFIXSIZE, &rl);
1903 converttapebuf(tpb);
1904
1905 if (Vflag && (ret == 0 || rl < (int)PREFIXSIZE || tpb->length == 0))
1906 ret = 0;
1907 if (ret <= 0)
1908 goto readerr;
1909
1910 /* read the data */
1911 size = tpb->length;
1912 if (size > bufsize) {
1913 /* something's wrong */
1914 Vprintf(stdout, "Prefix size error, max size %d, got %ld\n",
1915 bufsize, size);
1916 size = bufsize;
1917 tpb->length = bufsize;
1918 }
1919 ret = read_a_block(mt, tpb->buf, size, &rl);
1920 if (ret <= 0)
1921 goto readerr;
1922
1923 tbufptr = decompress_tapebuf(tpb, rl + PREFIXSIZE);
1924 if (tbufptr == NULL) {
1925 msg_read_error("File decompression error while");
1926 if (!yflag && !reply("continue"))
1927 exit(1);
1928 memset(tapebuf, 0, bufsize);
1929 tbufptr = tapebuf;
1930 }
1931
1932 blkcnt = 0;
1933 memmove(buf, &tbufptr[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1934 blksread++;
1935 tpblksread++;
1936 return;
1937
1938 readerr:
1939 /* Errors while reading from a file or pipe are catastrophic. Since
1940 * there are no block boundaries, it's impossible to bypass the
1941 * block in error and find the start of the next block.
1942 */
1943 if (ret == 0) {
1944 /* It's possible to have multiple input files using -M
1945 * and -f file1,file2...
1946 */
1947 Vprintf(stdout, "End-of-File encountered\n");
1948 if (!pipein) {
1949 newvol = volno + 1;
1950 volno = 0;
1951 numtrec = 0;
1952 getvol(newvol);
1953 readtape(buf);
1954 return;
1955 }
1956 }
1957 msg_read_error("Read error while");
1958 /* if (!yflag && !reply("continue")) */
1959 exit(1);
1960 }
1961
1962 /*
1963 * Read compressed data from a tape and uncompress it.
1964 * Handle read errors, and end of media.
1965 * Since a tape consists of separate physical blocks, we try
1966 * to recover from errors by repositioning the tape to the next
1967 * block.
1968 */
1969 static void
1970 readtape_comprtape(char *buf)
1971 {
1972 long rl, size, i;
1973 int ret, newvol;
1974 struct tapebuf *tpb;
1975 struct mtop tcom;
1976
1977 if (blkcnt < numtrec) {
1978 memmove(buf, &tbufptr[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1979 blksread++;
1980 tpblksread++;
1981 return;
1982 }
1983 /* need to read the next block */
1984 tbufptr = tapebuf;
1985 for (i = 0; i < ntrec; i++)
1986 ((struct s_spcl *)&tapebuf[i * TP_BSIZE])->c_magic = 0;
1987 numtrec = ntrec;
1988 tpb = (struct tapebuf *) tapebuf;
1989
1990 /* read the block */
1991 size = bufsize + PREFIXSIZE;
1992 ret = read_a_block(mt, tapebuf, size, &rl);
1993 if (ret <= 0)
1994 goto readerr;
1995
1996 converttapebuf(tpb);
1997 tbufptr = decompress_tapebuf(tpb, rl);
1998 if (tbufptr == NULL) {
1999 msg_read_error("Tape decompression error while");
2000 if (!yflag && !reply("continue"))
2001 exit(1);
2002 memset(tapebuf, 0, PREFIXSIZE + bufsize);
2003 tbufptr = tapebuf;
2004 }
2005 goto moverecord;
2006
2007 readerr:
2008 /* Handle errors: EOT switches to the next volume, other errors
2009 * attempt to position the tape to the next block.
2010 */
2011 if (ret == 0) {
2012 Vprintf(stdout, "End-of-tape encountered\n");
2013 newvol = volno + 1;
2014 volno = 0;
2015 numtrec = 0;
2016 getvol(newvol);
2017 readtape(buf);
2018 return;
2019 }
2020
2021 msg_read_error("Tape read error while");
2022 if (!yflag && !reply("continue"))
2023 exit(1);
2024 memset(tapebuf, 0, PREFIXSIZE + bufsize);
2025 tbufptr = tapebuf;
2026
2027 #ifdef RRESTORE
2028 if (host)
2029 rl = rmtioctl(MTFSR, 1);
2030 else
2031 #endif
2032 {
2033 tcom.mt_op = MTFSR;
2034 tcom.mt_count = 1;
2035 rl = ioctl(mt, MTIOCTOP, &tcom);
2036 }
2037
2038 if (rl < 0) {
2039 warn("continuation failed");
2040 if (!yflag && !reply("assume end-of-tape and continue"))
2041 exit(1);
2042 ret = 0; /* end of tape */
2043 goto readerr;
2044 }
2045
2046 moverecord:
2047 blkcnt = 0;
2048 memmove(buf, &tbufptr[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
2049 blksread++;
2050 tpblksread++;
2051 }
2052
2053 /*
2054 * Decompress a struct tapebuf into a buffer. readsize is the size read
2055 * from the tape/file and is used for error messages. Returns a pointer
2056 * to the location of the uncompressed buffer or NULL on errors.
2057 * Adjust numtrec and complain for a short block.
2058 */
2059 static char *
2060 decompress_tapebuf(struct tapebuf *tpbin, int readsize)
2061 {
2062 /* If zflag is on, all blocks have a struct tapebuf prefix */
2063 /* zflag gets set in setup() from the dump header */
2064 int cresult, blocklen;
2065 unsigned long worklen;
2066 char *output = NULL,*reason = NULL, *lengtherr = NULL;
2067
2068 /* build a length error message */
2069 blocklen = tpbin->length;
2070 if (readsize < blocklen + (int)PREFIXSIZE)
2071 lengtherr = "short";
2072 else
2073 if (readsize > blocklen + (int)PREFIXSIZE)
2074 lengtherr = "long";
2075
2076 worklen = comprlen;
2077 cresult = 1;
2078 if (tpbin->compressed) {
2079 /* uncompress whatever we read, if it fails, complain later */
2080 if (tpbin->flags == COMPRESS_ZLIB) {
2081 #ifndef HAVE_ZLIB
2082 errx(1,"This restore version doesn't support zlib decompression");
2083 #else
2084 cresult = uncompress(comprbuf, &worklen,
2085 tpbin->buf, blocklen);
2086 output = comprbuf;
2087 switch (cresult) {
2088 case Z_OK:
2089 break;
2090 case Z_MEM_ERROR:
2091 reason = "not enough memory";
2092 break;
2093 case Z_BUF_ERROR:
2094 reason = "buffer too small";
2095 break;
2096 case Z_DATA_ERROR:
2097 reason = "data error";
2098 break;
2099 default:
2100 reason = "unknown";
2101 }
2102 if (cresult == Z_OK)
2103 cresult = 1;
2104 else
2105 cresult = 0;
2106 #endif /* HAVE_ZLIB */
2107 }
2108 if (tpbin->flags == COMPRESS_BZLIB) {
2109 #ifndef HAVE_BZLIB
2110 errx(1,"This restore version doesn't support bzlib decompression");
2111 #else
2112 unsigned int worklen2 = worklen;
2113 cresult = BZ2_bzBuffToBuffDecompress(
2114 comprbuf, &worklen2,
2115 tpbin->buf, blocklen, 0, 0);
2116 worklen = worklen2;
2117 output = comprbuf;
2118 switch (cresult) {
2119 case BZ_OK:
2120 break;
2121 case BZ_MEM_ERROR:
2122 reason = "not enough memory";
2123 break;
2124 case BZ_OUTBUFF_FULL:
2125 reason = "buffer too small";
2126 break;
2127 case BZ_DATA_ERROR:
2128 case BZ_DATA_ERROR_MAGIC:
2129 case BZ_UNEXPECTED_EOF:
2130 reason = "data error";
2131 break;
2132 default:
2133 reason = "unknown";
2134 }
2135 if (cresult == BZ_OK)
2136 cresult = 1;
2137 else
2138 cresult = 0;
2139 #endif /* HAVE_BZLIB */
2140 }
2141 if (tpbin->flags == COMPRESS_LZO) {
2142 #ifndef HAVE_LZO
2143 errx(1,"This restore version doesn't support lzo decompression");
2144 #else
2145 lzo_uint worklen2 = worklen;
2146 cresult = lzo1x_decompress(tpbin->buf, blocklen,
2147 comprbuf, &worklen2, NULL);
2148 worklen = worklen2;
2149 output = comprbuf;
2150 switch (cresult) {
2151 case LZO_E_OK:
2152 break;
2153 case LZO_E_ERROR:
2154 case LZO_E_EOF_NOT_FOUND:
2155 reason = "data error";
2156 break;
2157 default:
2158 reason = "unknown";
2159 }
2160 if (cresult == LZO_E_OK)
2161 cresult = 1;
2162 else
2163 cresult = 0;
2164 #endif /* HAVE_LZO */
2165 }
2166 }
2167 else {
2168 output = tpbin->buf;
2169 worklen = blocklen;
2170 }
2171 if (cresult) {
2172 numtrec = worklen / TP_BSIZE;
2173 if (worklen % TP_BSIZE != 0)
2174 reason = "length mismatch";
2175 }
2176 if (reason) {
2177 if (lengtherr)
2178 fprintf(stderr, "%s compressed block: %d expected: %u\n",
2179 lengtherr, readsize, tpbin->length + PREFIXSIZE);
2180 fprintf(stderr, "decompression error, block %ld: %s\n",
2181 tpblksread+1, reason);
2182 if (!cresult)
2183 output = NULL;
2184 }
2185 return output;
2186 }
2187
2188 /*
2189 * Print an error message for a read error.
2190 * This was exteracted from the original readtape().
2191 */
2192 static void
2193 msg_read_error(char *m)
2194 {
2195 switch (curfile.action) {
2196 default:
2197 fprintf(stderr, "%s trying to set up tape\n", m);
2198 break;
2199 case UNKNOWN:
2200 fprintf(stderr, "%s trying to resynchronize\n", m);
2201 break;
2202 case USING:
2203 fprintf(stderr, "%s restoring %s\n", m, curfile.name);
2204 break;
2205 case SKIP:
2206 fprintf(stderr, "%s skipping over inode %lu\n", m,
2207 (unsigned long)curfile.ino);
2208 break;
2209 }
2210 }
2211 #endif /* HAVE_ZLIB || HAVE_BZLIB || HAVE_LZO */
2212
2213 /*
2214 * Read the first block and get the blocksize from it. Test
2215 * for a compressed dump tape/file. setup() will make the final
2216 * determination by checking the compressed flag if gethead()
2217 * finds a valid header. The test here is necessary to offset the buffer
2218 * by the size of the compressed prefix. zflag is set here so that
2219 * readtape_set can set the correct function pointer for readtape().
2220 * Note that the first block of each tape/file is not compressed
2221 * and does not have a prefix.
2222 */
2223 static void
2224 findtapeblksize(void)
2225 {
2226 long i;
2227 size_t len;
2228 struct tapebuf *tpb = (struct tapebuf *) tapebuf;
2229 struct s_spcl spclpt;
2230
2231 for (i = 0; i < ntrec; i++)
2232 ((struct s_spcl *)&tapebuf[i * TP_BSIZE])->c_magic = 0;
2233 blkcnt = 0;
2234 tbufptr = tapebuf;
2235 /*
2236 * For a pipe or file, read in the first record. For a tape, read
2237 * the first block.
2238 */
2239 len = magtapein ? ntrec * TP_BSIZE : TP_BSIZE;
2240
2241 if (read_a_block(mt, tapebuf, len, &i) <= 0)
2242 errx(1, "Tape read error on first record");
2243
2244 memcpy(&spclpt, tapebuf, TP_BSIZE);
2245 if (converthead(&spclpt) == FAIL) {
2246 cvtflag++;
2247 if (converthead(&spclpt) == FAIL) {
2248 /* Special case for old compressed tapes with prefix */
2249 if (magtapein && (i % TP_BSIZE != 0))
2250 goto oldformat;
2251 errx(1, "Tape is not a dump tape");
2252 }
2253 fprintf(stderr, "Converting to new file system format.\n");
2254 }
2255 /*
2256 * If the input is from a file or a pipe, we read TP_BSIZE
2257 * bytes looking for a dump header. If the dump is compressed
2258 * we need to read in the rest of the block, as determined
2259 * by c_ntrec in the dump header. The first block of the
2260 * dump is not compressed and does not have a prefix.
2261 */
2262 if (!magtapein) {
2263 if (spclpt.c_type == TS_TAPE
2264 && spclpt.c_flags & DR_COMPRESSED) {
2265 /* It's a compressed dump file, read in the */
2266 /* rest of the block based on spclpt.c_ntrec. */
2267 if (spclpt.c_ntrec > ntrec)
2268 errx(1, "Tape blocksize is too large, use "
2269 "\'-b %d\' ", spclpt.c_ntrec);
2270 ntrec = spclpt.c_ntrec;
2271 len = (ntrec - 1) * TP_BSIZE;
2272 zflag = 1;
2273 }
2274 else {
2275 /* read in the rest of the block based on bufsize */
2276 len = bufsize - TP_BSIZE;
2277 }
2278 if (read_a_block(mt, tapebuf+TP_BSIZE, len, &i) < 0
2279 || (i != (long)len && i % TP_BSIZE != 0))
2280 errx(1,"Error reading dump file header");
2281 tbufptr = tapebuf;
2282 numtrec = ntrec;
2283 Vprintf(stdout, "Input block size is %ld\n", ntrec);
2284 return;
2285 } /* if (!magtapein) */
2286
2287 /*
2288 * If the input is a tape, we tried to read ntrec * TP_BSIZE bytes.
2289 * If the value of ntrec is too large, we read less than
2290 * what we asked for; adjust the value of ntrec and test for
2291 * a compressed dump tape.
2292 */
2293 if (i % TP_BSIZE != 0) {
2294 oldformat:
2295 /* may be old format compressed dump tape with a prefix */
2296 memcpy(&spclpt, tpb->buf, TP_BSIZE);
2297 cvtflag = 0;
2298 if (converthead(&spclpt) == FAIL) {
2299 cvtflag++;
2300 if (converthead(&spclpt) == FAIL)
2301 errx(1, "Tape is not a dump tape");
2302 fprintf(stderr, "Converting to new file system format.\n");
2303 }
2304 if (i % TP_BSIZE == PREFIXSIZE
2305 && tpb->compressed == 0
2306 && spclpt.c_type == TS_TAPE
2307 && spclpt.c_flags & DR_COMPRESSED) {
2308 zflag = 1;
2309 tbufptr = tpb->buf;
2310 if (tpb->length > bufsize)
2311 errx(1, "Tape blocksize is too large, use "
2312 "\'-b %d\' ", tpb->length / TP_BSIZE);
2313 }
2314 else
2315 errx(1, "Tape block size (%ld) is not a multiple of dump block size (%d)",
2316 i, TP_BSIZE);
2317 }
2318 ntrec = i / TP_BSIZE;
2319 if (spclpt.c_type == TS_TAPE) {
2320 if (spclpt.c_flags & DR_COMPRESSED)
2321 zflag = 1;
2322 if (spclpt.c_ntrec > ntrec)
2323 errx(1, "Tape blocksize is too large, use "
2324 "\'-b %d\' ", spclpt.c_ntrec);
2325 }
2326 numtrec = ntrec;
2327 Vprintf(stdout, "Tape block size is %ld\n", ntrec);
2328 }
2329
2330 /*
2331 * Read a block of data handling all of the messy details.
2332 */
2333 static int read_a_block(int fd, char *buf, size_t len, long *lengthread)
2334 {
2335 long i = 1, size;
2336
2337 size = len;
2338 while (size > 0) {
2339 #ifdef RRESTORE
2340 if (!Afile && host)
2341 i = rmtread(buf, size);
2342 else
2343 #endif
2344 i = read(fd, buf, size);
2345
2346 if (i <= 0)
2347 break; /* EOD or error */
2348 size -= i;
2349 if (magtapein)
2350 break; /* block at a time for mt */
2351 buf += i;
2352 }
2353 *lengthread = len - size;
2354 return i;
2355 }
2356
2357 void
2358 closemt(void)
2359 {
2360
2361 if (mt < 0)
2362 return;
2363 #ifdef RRESTORE
2364 if (!Afile && host)
2365 rmtclose();
2366 else
2367 #endif
2368 (void) close(mt);
2369 }
2370
2371 static void
2372 setmagtapein(void) {
2373 struct mtget mt_stat;
2374 static int done = 0;
2375 if (done)
2376 return;
2377 done = 1;
2378 if (!pipein) {
2379 /* need to know if input is really from a tape */
2380 #ifdef RRESTORE
2381 if (host)
2382 magtapein = !lflag;
2383 else
2384 #endif
2385 magtapein = ioctl(mt, MTIOCGET, (char *)&mt_stat) == 0;
2386 }
2387
2388 Vprintf(stdout,"Input is from a %s %s\n",
2389 host ? "remote" : "local",
2390 magtapein ? "tape" :
2391 Vflag ? "multi-volume (no tape)" : "file/pipe");
2392 }
2393
2394 /*
2395 * Read the next block from the tape.
2396 * Check to see if it is one of several vintage headers.
2397 * If it is an old style header, convert it to a new style header.
2398 * If it is not any valid header, return an error.
2399 */
2400 static int
2401 gethead(struct s_spcl *buf)
2402 {
2403 readtape((char *)buf);
2404 return converthead(buf);
2405 }
2406
2407 static int
2408 converthead(struct s_spcl *buf)
2409 {
2410 int32_t i;
2411 union {
2412 quad_t qval;
2413 int32_t val[2];
2414 } qcvt;
2415 union u_ospcl {
2416 char dummy[TP_BSIZE];
2417 struct s_ospcl {
2418 int32_t c_type;
2419 int32_t c_date;
2420 int32_t c_ddate;
2421 int32_t c_volume;
2422 int32_t c_tapea;
2423 u_int16_t c_inumber;
2424 int32_t c_magic;
2425 int32_t c_checksum;
2426 struct odinode {
2427 u_int16_t odi_mode;
2428 u_int16_t odi_nlink;
2429 u_int16_t odi_uid;
2430 u_int16_t odi_gid;
2431 int32_t odi_size;
2432 int32_t odi_rdev;
2433 char odi_addr[36];
2434 int32_t odi_atime;
2435 int32_t odi_mtime;
2436 int32_t odi_ctime;
2437 } c_dinode;
2438 int32_t c_count;
2439 char c_fill[256];
2440 } s_ospcl;
2441 } u_ospcl;
2442
2443 if (!cvtflag) {
2444 if (buf->c_magic != NFS_MAGIC) {
2445 if (swabi(buf->c_magic) != NFS_MAGIC)
2446 return (FAIL);
2447 if (!Bcvt) {
2448 Vprintf(stdout, "Note: Doing Byte swapping\n");
2449 Bcvt = 1;
2450 }
2451 }
2452 if (checksum((int *)buf) == FAIL)
2453 return (FAIL);
2454 if (Bcvt)
2455 swabst((u_char *)"8i4s31i528bi192b3i", (u_char *)buf);
2456 goto good;
2457 }
2458 memcpy(&u_ospcl.s_ospcl, buf, TP_BSIZE);
2459 if (checksum((int *)(&u_ospcl.s_ospcl)) == FAIL)
2460 return(FAIL);
2461 if (u_ospcl.s_ospcl.c_magic == OFS_MAGIC) {
2462 memset((char *)buf, 0, (long)TP_BSIZE);
2463 buf->c_type = u_ospcl.s_ospcl.c_type;
2464 buf->c_date = u_ospcl.s_ospcl.c_date;
2465 buf->c_ddate = u_ospcl.s_ospcl.c_ddate;
2466 buf->c_volume = u_ospcl.s_ospcl.c_volume;
2467 buf->c_tapea = u_ospcl.s_ospcl.c_tapea;
2468 buf->c_inumber = u_ospcl.s_ospcl.c_inumber;
2469 buf->c_checksum = u_ospcl.s_ospcl.c_checksum;
2470 buf->c_magic = u_ospcl.s_ospcl.c_magic;
2471 buf->c_dinode.di_mode = u_ospcl.s_ospcl.c_dinode.odi_mode;
2472 buf->c_dinode.di_nlink = u_ospcl.s_ospcl.c_dinode.odi_nlink;
2473 buf->c_dinode.di_uid = u_ospcl.s_ospcl.c_dinode.odi_uid;
2474 buf->c_dinode.di_gid = u_ospcl.s_ospcl.c_dinode.odi_gid;
2475 buf->c_dinode.di_size = u_ospcl.s_ospcl.c_dinode.odi_size;
2476 buf->c_dinode.di_rdev = u_ospcl.s_ospcl.c_dinode.odi_rdev;
2477 #if defined(__linux__) || defined(sunos)
2478 buf->c_dinode.di_atime.tv_sec = u_ospcl.s_ospcl.c_dinode.odi_atime;
2479 buf->c_dinode.di_mtime.tv_sec = u_ospcl.s_ospcl.c_dinode.odi_mtime;
2480 buf->c_dinode.di_ctime.tv_sec = u_ospcl.s_ospcl.c_dinode.odi_ctime;
2481 #else /* __linux__ || sunos */
2482 buf->c_dinode.di_atime = u_ospcl.s_ospcl.c_dinode.odi_atime;
2483 buf->c_dinode.di_mtime = u_ospcl.s_ospcl.c_dinode.odi_mtime;
2484 buf->c_dinode.di_ctime = u_ospcl.s_ospcl.c_dinode.odi_ctime;
2485 #endif /* __linux__ || sunos */
2486 buf->c_count = u_ospcl.s_ospcl.c_count;
2487 memmove(buf->c_addr, u_ospcl.s_ospcl.c_fill, (long)256);
2488 }
2489 else if (u_ospcl.s_ospcl.c_magic == FS_UFS2_MAGIC) {
2490 buf->c_date = (int32_t)(*(int64_t *)&u_ospcl.dummy[896]);
2491 buf->c_ddate = (int32_t)(*(int64_t *)&u_ospcl.dummy[904]);
2492 buf->c_tapea = (int32_t)(*(int64_t *)&u_ospcl.dummy[912]);
2493 buf->c_firstrec = (int32_t)(*(int64_t *)&u_ospcl.dummy[920]);
2494 buf->c_ntrec = 0;
2495 buf->c_extattributes = 0;
2496 buf->c_flags |= DR_NEWINODEFMT;
2497 ufs2flag = 1;
2498 }
2499 else
2500 return(FAIL);
2501 buf->c_magic = NFS_MAGIC;
2502
2503 good:
2504 if ((buf->c_dinode.di_size == 0 || buf->c_dinode.di_size > 0xfffffff) &&
2505 (buf->c_dinode.di_mode & IFMT) == IFDIR && Qcvt == 0) {
2506 qcvt.qval = buf->c_dinode.di_size;
2507 if (qcvt.val[0] || qcvt.val[1]) {
2508 Vprintf(stdout, "Note: Doing Quad swapping\n");
2509 Qcvt = 1;
2510 }
2511 }
2512 if (Qcvt) {
2513 qcvt.qval = buf->c_dinode.di_size;
2514 i = qcvt.val[1];
2515 qcvt.val[1] = qcvt.val[0];
2516 qcvt.val[0] = i;
2517 buf->c_dinode.di_size = qcvt.qval;
2518 }
2519 readmapflag = 0;
2520
2521 switch (buf->c_type) {
2522
2523 case TS_CLRI:
2524 case TS_BITS:
2525 /*
2526 * Have to patch up missing information in bit map headers
2527 */
2528 buf->c_inumber = 0;
2529 buf->c_dinode.di_size = buf->c_count * TP_BSIZE;
2530 if (buf->c_count > TP_NINDIR)
2531 readmapflag = 1;
2532 else
2533 for (i = 0; i < buf->c_count; i++)
2534 buf->c_addr[i]++;
2535 break;
2536
2537 case TS_TAPE:
2538 if ((buf->c_flags & DR_NEWINODEFMT) == 0)
2539 oldinofmt = 1;
2540 /* fall through */
2541 case TS_END:
2542 buf->c_inumber = 0;
2543 if (buf->c_flags & DR_INODEINFO) {
2544 memcpy(volinfo, buf->c_inos, TP_NINOS * sizeof(dump_ino_t));
2545 if (Bcvt)
2546 swabst((u_char *)"128i", (u_char *)volinfo);
2547 }
2548 break;
2549
2550 case TS_INODE:
2551 case TS_ADDR:
2552 break;
2553
2554 default:
2555 panic("gethead: unknown inode type %d\n", buf->c_type);
2556 break;
2557 }
2558 /*
2559 * If we are restoring a filesystem with old format inodes,
2560 * copy the uid/gid to the new location.
2561 */
2562 if (oldinofmt) {
2563 buf->c_dinode.di_uid = buf->c_dinode.di_ouid;
2564 buf->c_dinode.di_gid = buf->c_dinode.di_ogid;
2565 }
2566 if (dflag)
2567 accthdr(buf);
2568 return(GOOD);
2569 }
2570
2571 static void
2572 converttapebuf(struct tapebuf *tpb)
2573 {
2574 if (Bcvt) {
2575 struct tb {
2576 unsigned int length:28;
2577 unsigned int flags:3;
2578 unsigned int compressed:1;
2579 } tb;
2580 swabst((u_char *)"i", (u_char *)tpb);
2581 memcpy(&tb, tpb, 4);
2582 tpb->length = tb.length;
2583 tpb->flags = tb.flags;
2584 tpb->compressed = tb.compressed;
2585 }
2586 }
2587
2588 /*
2589 * Check that a header is where it belongs and predict the next header
2590 */
2591 static void
2592 accthdr(struct s_spcl *header)
2593 {
2594 static dump_ino_t previno = 0x7fffffff;
2595 static int prevtype;
2596 static long predict;
2597 long blks, i;
2598
2599 if (header->c_type == TS_TAPE) {
2600 fprintf(stderr, "Volume header (%s inode format) ",
2601 oldinofmt ? "old" : "new");
2602 if (header->c_firstrec)
2603 fprintf(stderr, "begins with record %d",
2604 header->c_firstrec);
2605 fprintf(stderr, "\n");
2606 previno = 0x7fffffff;
2607 return;
2608 }
2609 if (previno == 0x7fffffff)
2610 goto newcalc;
2611 switch (prevtype) {
2612 case TS_BITS:
2613 fprintf(stderr, "Dumped inodes map header");
2614 break;
2615 case TS_CLRI:
2616 fprintf(stderr, "Used inodes map header");
2617 break;
2618 case TS_INODE:
2619 fprintf(stderr, "File header, ino %lu", (unsigned long)previno);
2620 break;
2621 case TS_ADDR:
2622 fprintf(stderr, "File continuation header, ino %ld", (long)previno);
2623 break;
2624 case TS_END:
2625 fprintf(stderr, "End of tape header");
2626 break;
2627 }
2628 if (predict != blksread - 1)
2629 fprintf(stderr, "; predicted %ld blocks, got %ld blocks",
2630 predict, blksread - 1);
2631 fprintf(stderr, "\n");
2632 newcalc:
2633 blks = 0;
2634 if (header->c_type != TS_END)
2635 for (i = 0; i < header->c_count; i++)
2636 if (readmapflag || header->c_addr[i] != 0)
2637 blks++;
2638 predict = blks;
2639 blksread = 0;
2640 prevtype = header->c_type;
2641 previno = header->c_inumber;
2642 }
2643
2644 /*
2645 * Find an inode header.
2646 * Complain if had to skip, and complain is set.
2647 */
2648 static void
2649 findinode(struct s_spcl *header)
2650 {
2651 static long skipcnt = 0;
2652 long i;
2653 char buf[TP_BSIZE];
2654
2655 curfile.name = "<name unknown>";
2656 curfile.action = UNKNOWN;
2657 curfile.dip = NULL;
2658 curfile.ino = 0;
2659 do {
2660 if (header->c_magic != NFS_MAGIC) {
2661 skipcnt++;
2662 while (gethead(header) == FAIL ||
2663 header->c_date != dumpdate)
2664 skipcnt++;
2665 }
2666 switch (header->c_type) {
2667
2668 case TS_ADDR:
2669 /*
2670 * Skip up to the beginning of the next record
2671 */
2672 for (i = 0; i < header->c_count; i++)
2673 if (header->c_addr[i])
2674 readtape(buf);
2675 while (gethead(header) == FAIL ||
2676 header->c_date != dumpdate)
2677 skipcnt++;
2678 break;
2679
2680 case TS_INODE:
2681 curfile.dip = &header->c_dinode;
2682 curfile.ino = header->c_inumber;
2683 break;
2684
2685 case TS_END:
2686 curfile.ino = maxino;
2687 break;
2688
2689 case TS_CLRI:
2690 curfile.name = "<file removal list>";
2691 break;
2692
2693 case TS_BITS:
2694 curfile.name = "<file dump list>";
2695 break;
2696
2697 case TS_TAPE:
2698 panic("unexpected tape header\n");
2699 /* NOTREACHED */
2700
2701 default:
2702 panic("unknown tape header type %d\n", spcl.c_type);
2703 /* NOTREACHED */
2704
2705 }
2706 } while (header->c_type == TS_ADDR);
2707 if (skipcnt > 0)
2708 #ifdef USE_QFA
2709 if (!noresyncmesg)
2710 #endif
2711 fprintf(stderr, "resync restore, skipped %ld blocks\n",
2712 skipcnt);
2713 skipcnt = 0;
2714 }
2715
2716 static int
2717 checksum(int *buf)
2718 {
2719 int i, j;
2720
2721 j = sizeof(union u_spcl) / sizeof(int);
2722 i = 0;
2723 if(!Bcvt) {
2724 do
2725 i += *buf++;
2726 while (--j);
2727 } else {
2728 /* What happens if we want to read restore tapes
2729 for a 16bit int machine??? */
2730 do
2731 i += swabi(*buf++);
2732 while (--j);
2733 }
2734
2735 if (i != CHECKSUM) {
2736 fprintf(stderr, "Checksum error %o, inode %lu file %s\n", i,
2737 (unsigned long)curfile.ino, curfile.name);
2738 return(FAIL);
2739 }
2740 return(GOOD);
2741 }
2742
2743 #ifdef RRESTORE
2744 #ifdef __STDC__
2745 #include <stdarg.h>
2746 #else
2747 #include <varargs.h>
2748 #endif
2749
2750 void
2751 #ifdef __STDC__
2752 msg(const char *fmt, ...)
2753 #else
2754 msg(fmt, va_alist)
2755 char *fmt;
2756 va_dcl
2757 #endif
2758 {
2759 va_list ap;
2760 #ifdef __STDC__
2761 va_start(ap, fmt);
2762 #else
2763 va_start(ap);
2764 #endif
2765 (void)vfprintf(stderr, fmt, ap);
2766 va_end(ap);
2767 }
2768 #endif /* RRESTORE */
2769
2770 static u_char *
2771 swab16(u_char *sp, int n)
2772 {
2773 char c;
2774
2775 while (--n >= 0) {
2776 c = sp[0]; sp[0] = sp[1]; sp[1] = c;
2777 sp += 2;
2778 }
2779 return (sp);
2780 }
2781
2782 static u_char *
2783 swab32(u_char *sp, int n)
2784 {
2785 char c;
2786
2787 while (--n >= 0) {
2788 c = sp[0]; sp[0] = sp[3]; sp[3] = c;
2789 c = sp[1]; sp[1] = sp[2]; sp[2] = c;
2790 sp += 4;
2791 }
2792 return (sp);
2793 }
2794
2795 static u_char *
2796 swab64(u_char *sp, int n)
2797 {
2798 char c;
2799
2800 while (--n >= 0) {
2801 c = sp[0]; sp[0] = sp[7]; sp[7] = c;
2802 c = sp[1]; sp[1] = sp[6]; sp[6] = c;
2803 c = sp[2]; sp[2] = sp[5]; sp[5] = c;
2804 c = sp[3]; sp[3] = sp[4]; sp[4] = c;
2805 sp += 8;
2806 }
2807 return (sp);
2808 }
2809
2810 void
2811 swabst(u_char *cp, u_char *sp)
2812 {
2813 int n = 0;
2814
2815 while (*cp) {
2816 switch (*cp) {
2817 case '0': case '1': case '2': case '3': case '4':
2818 case '5': case '6': case '7': case '8': case '9':
2819 n = (n * 10) + (*cp++ - '0');
2820 continue;
2821
2822 case 's': case 'w': case 'h':
2823 if (n == 0)
2824 n = 1;
2825 sp = swab16(sp, n);
2826 break;
2827
2828 case 'i':
2829 if (n == 0)
2830 n = 1;
2831 sp = swab32(sp, n);
2832 break;
2833
2834 case 'l':
2835 if (n == 0)
2836 n = 1;
2837 sp = swab64(sp, n);
2838 break;
2839
2840 default: /* Any other character, like 'b' counts as byte. */
2841 if (n == 0)
2842 n = 1;
2843 sp += n;
2844 break;
2845 }
2846 cp++;
2847 n = 0;
2848 }
2849 }
2850
2851 static u_int
2852 swabi(u_int x)
2853 {
2854 swabst((u_char *)"i", (u_char *)&x);
2855 return (x);
2856 }
2857
2858 #if 0
2859 static u_long
2860 swabl(u_long x)
2861 {
2862 swabst((u_char *)"l", (u_char *)&x);
2863 return (x);
2864 }
2865 #endif
2866
2867 void
2868 RequestVol(long tnum)
2869 {
2870 FLUSHTAPEBUF();
2871 getvol(tnum);
2872 }
2873
2874 #ifdef USE_QFA
2875 #ifdef sunos
2876 extern int fdsmtc;
2877
2878 struct uscsi_cmd {
2879 int uscsi_flags; /* read, write, etc. see below */
2880 short uscsi_status; /* resulting status */
2881 short uscsi_timeout; /* Command Timeout */
2882 caddr_t uscsi_cdb; /* cdb to send to target */
2883 caddr_t uscsi_bufaddr; /* i/o source/destination */
2884 u_int uscsi_buflen; /* size of i/o to take place */
2885 u_int uscsi_resid; /* resid from i/o operation */
2886 u_char uscsi_cdblen; /* # of valid cdb bytes */
2887 u_char uscsi_rqlen; /* size of uscsi_rqbuf */
2888 u_char uscsi_rqstatus; /* status of request sense cmd */
2889 u_char uscsi_rqresid; /* resid of request sense cmd */
2890 caddr_t uscsi_rqbuf; /* request sense buffer */
2891 void *uscsi_reserved_5; /* Reserved for Future Use */
2892 };
2893
2894 #define CDB_GROUP0 6 /* 6-byte cdb's */
2895 #define CDB_GROUP1 10 /* 10-byte cdb's */
2896 #define CDB_GROUP2 10 /* 10-byte cdb's */
2897 #define CDB_GROUP3 0 /* reserved */
2898 #define CDB_GROUP4 16 /* 16-byte cdb's */
2899 #define CDB_GROUP5 12 /* 12-byte cdb's */
2900 #define CDB_GROUP6 0 /* reserved */
2901 #define CDB_GROUP7 0 /* reserved */
2902
2903 #define USCSI_WRITE 0x00000 /* send data to device */
2904 #define USCSI_SILENT 0x00001 /* no error messages */
2905 #define USCSI_DIAGNOSE 0x00002 /* fail if any error occurs */
2906 #define USCSI_ISOLATE 0x00004 /* isolate from normal commands */
2907 #define USCSI_READ 0x00008 /* get data from device */
2908 #define USCSI_RESET 0x04000 /* Reset target */
2909 #define USCSI_RESET_ALL 0x08000 /* Reset all targets */
2910 #define USCSI_RQENABLE 0x10000 /* Enable Request Sense extensions */
2911
2912 #define USCSIIOC (0x04 << 8)
2913 #define USCSICMD (USCSIIOC|201) /* user scsi command */
2914
2915 #define USCSI_TIMEOUT 30
2916 #define USCSI_SHORT_TIMEOUT 900
2917 #define USCSI_LONG_TIMEOUT 14000
2918
2919 #define B(s,i) ((unsigned char)((s) >> i))
2920 #define B1(s) ((unsigned char)(s))
2921
2922 #define MSB4(s,v) *(s)=B(v,24),(s)[1]=B(v,16), (s)[2]=B(v,8), (s)[3]=B1(v)
2923
2924
2925 int
2926 GetTapePos(long long *pos)
2927 {
2928 int err = 0;
2929 struct uscsi_cmd scmd;
2930 char buf[512];
2931 char parm[512 * 8];
2932 long lpos;
2933
2934 (void)memset((void *)buf, 0, sizeof(buf));
2935 (void)memset((void *)&scmd, 0, sizeof(scmd));
2936 scmd.uscsi_flags = USCSI_READ|USCSI_SILENT;
2937 scmd.uscsi_timeout = USCSI_TIMEOUT;
2938 scmd.uscsi_cdb = buf;
2939 scmd.uscsi_cdblen = CDB_GROUP1;
2940 buf[0] = 0x34; /* read position */
2941 buf[1] = 0;
2942 (void)memset((void *)parm, 0, 512);
2943 scmd.uscsi_bufaddr = parm;
2944 scmd.uscsi_buflen = 56;
2945 if (ioctl(fdsmtc, USCSICMD, &scmd) == -1) {
2946 err = errno;
2947 return err;
2948 }
2949 (void)memcpy(&lpos, &parm[4], sizeof(long));
2950 *pos = lpos;
2951 return err;
2952 }
2953
2954 int
2955 GotoTapePos(long long pos)
2956 {
2957 int err = 0;
2958 struct uscsi_cmd scmd;
2959 char buf[512];
2960 char parm[512 * 8];
2961 long lpos = (long)pos;
2962
2963 (void)memset((void *)buf, 0, sizeof(buf));
2964 (void)memset((void *)&scmd, 0, sizeof(scmd));
2965 scmd.uscsi_flags = USCSI_WRITE|USCSI_SILENT;
2966 scmd.uscsi_timeout = 360; /* 5 Minutes */
2967 scmd.uscsi_cdb = buf;
2968 scmd.uscsi_cdblen = CDB_GROUP1;
2969 buf[0] = 0x2b; /* locate */
2970 buf[1] = 0;
2971 MSB4(&buf[3], lpos);
2972 (void)memset((void *)parm, 0, 512);
2973 scmd.uscsi_bufaddr = NULL;
2974 scmd.uscsi_buflen = 0;
2975 if (ioctl(fdsmtc, USCSICMD, &scmd) == -1) {
2976 err = errno;
2977 return err;
2978 }
2979 return err;
2980 }
2981 #endif
2982
2983 #define LSEEK_GET_TAPEPOS 10
2984 #define LSEEK_GO2_TAPEPOS 11
2985
2986 #ifdef __linux__
2987 typedef struct mt_pos {
2988 short mt_op;
2989 int mt_count;
2990 } MTPosRec, *MTPosPtr;
2991
2992
2993 /*
2994 * get the current position of the tape
2995 */
2996 int
2997 GetTapePos(long long *pos)
2998 {
2999 int err = 0;
3000
3001 #ifdef RDUMP
3002 if (host) {
3003 *pos = (long long) rmtseek((OFF_T)0, (int)LSEEK_GET_TAPEPOS);
3004 err = *pos < 0;
3005 }
3006 else
3007 #endif
3008 {
3009 if (magtapein) {
3010 long mtpos;
3011 *pos = 0;
3012 err = (ioctl(mt, MTIOCPOS, &mtpos) < 0);
3013 *pos = (long long)mtpos;
3014 }
3015 else {
3016 *pos = LSEEK(mt, 0, SEEK_CUR);
3017 err = (*pos < 0);
3018 }
3019 }
3020 if (err) {
3021 err = errno;
3022 fprintf(stdout, "[%ld] error: %d (getting tapepos: %lld)\n",
3023 (unsigned long)getpid(), err, *pos);
3024 return err;
3025 }
3026 return err;
3027 }
3028
3029 /*
3030 * go to specified position on tape
3031 */
3032 int
3033 GotoTapePos(long long pos)
3034 {
3035 int err = 0;
3036
3037 #ifdef RDUMP
3038 if (host)
3039 err = (rmtseek((OFF_T)pos, (int)LSEEK_GO2_TAPEPOS) < 0);
3040 else
3041 #endif
3042 {
3043 if (magtapein) {
3044 struct mt_pos buf;
3045 buf.mt_op = MTSEEK;
3046 buf.mt_count = (int) pos;
3047 err = (ioctl(mt, MTIOCTOP, &buf) < 0);
3048 }
3049 else {
3050 pos = LSEEK(mt, pos, SEEK_SET);
3051 err = (pos < 0);
3052 }
3053 }
3054 if (err) {
3055 err = errno;
3056 fprintf(stdout, "[%ld] error: %d (setting tapepos: %lld)\n",
3057 (unsigned long)getpid(), err, pos);
3058 return err;
3059 }
3060 return err;
3061 }
3062 #endif /* __linux__ */
3063
3064 /*
3065 * read next data from tape to re-sync
3066 */
3067 void
3068 ReReadFromTape(void)
3069 {
3070 FLUSHTAPEBUF();
3071 noresyncmesg = 1;
3072 if (gethead(&spcl) == FAIL) {
3073 #ifdef DEBUG_QFA
3074 fprintf(stdout, "DEBUG 1 gethead failed\n");
3075 #endif
3076 }
3077 findinode(&spcl);
3078 noresyncmesg = 0;
3079 }
3080
3081 void
3082 ReReadInodeFromTape(dump_ino_t theino)
3083 {
3084 long cntloop = 0;
3085
3086 FLUSHTAPEBUF();
3087 noresyncmesg = 1;
3088 do {
3089 cntloop++;
3090 gethead(&spcl);
3091 } while (!(spcl.c_inumber == theino && spcl.c_type == TS_INODE && spcl.c_date == dumpdate));
3092 #ifdef DEBUG_QFA
3093 fprintf(stderr, "DEBUG: %ld reads\n", cntloop);
3094 fprintf(stderr, "DEBUG: bufsize %ld\n", bufsize);
3095 fprintf(stderr, "DEBUG: ntrec %ld\n", ntrec);
3096 fprintf(stderr, "DEBUG: %ld reads\n", cntloop);
3097 #endif
3098 findinode(&spcl);
3099 noresyncmesg = 0;
3100 }
3101
3102 #ifdef sunos
3103 int
3104 OpenSMTCmt(char *themagtape)
3105 {
3106 if (GetSCSIIDFromPath(themagtape, &scsiid)) {
3107 fprintf(stderr, "can't get SCSI-ID for %s\n", themagtape);
3108 return -1;
3109 }
3110 if (scsiid < 0) {
3111 fprintf(stderr, "can't get SCSI-ID for %s\n", themagtape);
3112 return -1;
3113 }
3114 sprintf(smtcpath, "/dev/rsmtc%ld,0", scsiid);
3115 if ((fdsmtc = open(smtcpath, O_RDWR)) == -1) {
3116 fprintf(stderr, "can't open smtc device: %s, %d\n", smtcpath, errno);
3117 return -1;
3118 }
3119 return 0;
3120 }
3121 #endif /* sunos */
3122 #endif /* USE_QFA */