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