]> git.wh0rd.org - dump.git/blame - restore/tape.c
Version 0.4b7.
[dump.git] / restore / tape.c
CommitLineData
1227625a
SP
1/*
2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
b45f51d6
SP
4 * Remy Card <card@Linux.EU.Org>, 1994-1997
5 * Stelian Pop <pop@cybercable.fr>, 1999
1227625a
SP
6 *
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. All advertising materials mentioning features or use of this software
27 * must display the following acknowledgement:
28 * This product includes software developed by the University of
29 * California, Berkeley and its contributors.
30 * 4. Neither the name of the University nor the names of its contributors
31 * may be used to endorse or promote products derived from this software
32 * without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
35 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44 * SUCH DAMAGE.
45 */
46
47#ifndef lint
b45f51d6 48#if 0
1227625a 49static char sccsid[] = "@(#)tape.c 8.9 (Berkeley) 5/1/95";
b45f51d6
SP
50#endif
51static const char rcsid[] =
8d4197bb 52 "$Id: tape.c,v 1.4 1999/10/11 13:08:10 stelian Exp $";
1227625a
SP
53#endif /* not lint */
54
55#include <sys/param.h>
56#include <sys/file.h>
1227625a
SP
57#include <sys/mtio.h>
58#include <sys/stat.h>
59
60#ifdef __linux__
61#include <sys/time.h>
62#include <linux/ext2_fs.h>
63#include <bsdcompat.h>
64#else /* __linux__ */
65#include <ufs/ufs/dinode.h>
66#endif /* __linux__ */
67#include <protocols/dumprestore.h>
68
69#include <errno.h>
ddd2ef55 70#include <compaterr.h>
1227625a
SP
71#include <setjmp.h>
72#include <stdio.h>
73#include <stdlib.h>
74#include <string.h>
75#include <unistd.h>
76
77#ifdef __linux__
78#include <ext2fs/ext2fs.h>
79#endif
80
81#include "restore.h"
82#include "extern.h"
83#include "pathnames.h"
84
85static long fssize = MAXBSIZE;
86static int mt = -1;
87static int pipein = 0;
b45f51d6 88static char *magtape;
1227625a
SP
89static int blkcnt;
90static int numtrec;
91static char *tapebuf;
92static union u_spcl endoftapemark;
93static long blksread; /* blocks read since last header */
94static long tpblksread = 0; /* TP_BSIZE blocks read */
95static long tapesread;
ddd2ef55 96static sigjmp_buf restart;
1227625a
SP
97static int gettingfile = 0; /* restart has a valid frame */
98static char *host = NULL;
99
100static int ofile;
101static char *map;
102static char lnkbuf[MAXPATHLEN + 1];
103static int pathlen;
104
105int oldinofmt; /* old inode format conversion required */
106int Bcvt; /* Swap Bytes (for CCI or sun) */
107static int Qcvt; /* Swap quads (for sun) */
108
109#define FLUSHTAPEBUF() blkcnt = ntrec + 1
110
111static void accthdr __P((struct s_spcl *));
112static int checksum __P((int *));
113static void findinode __P((struct s_spcl *));
114static void findtapeblksize __P((void));
115static int gethead __P((struct s_spcl *));
116static void readtape __P((char *));
117static void setdumpnum __P((void));
ddd2ef55 118static u_int swabi __P((u_int));
1227625a 119static u_long swabl __P((u_long));
ddd2ef55
SP
120static u_char *swab64 __P((u_char *, int));
121static u_char *swab32 __P((u_char *, int));
122static u_char *swab16 __P((u_char *, int));
1227625a 123static void terminateinput __P((void));
ddd2ef55
SP
124static void xtrfile __P((char *, size_t));
125static void xtrlnkfile __P((char *, size_t));
126static void xtrlnkskip __P((char *, size_t));
127static void xtrmap __P((char *, size_t));
128static void xtrmapskip __P((char *, size_t));
129static void xtrskip __P((char *, size_t));
1227625a 130
b45f51d6
SP
131static int readmapflag;
132
1227625a
SP
133/*
134 * Set up an input source
135 */
136void
ddd2ef55 137setinput(char *source)
1227625a
SP
138{
139 FLUSHTAPEBUF();
140 if (bflag)
141 newtapebuf(ntrec);
142 else
143 newtapebuf(NTREC > HIGHDENSITYTREC ? NTREC : HIGHDENSITYTREC);
144 terminal = stdin;
145
146#ifdef RRESTORE
147 if (strchr(source, ':')) {
148 host = source;
149 source = strchr(host, ':');
150 *source++ = '\0';
151 if (rmthost(host) == 0)
ddd2ef55 152 exit(1);
1227625a
SP
153 } else
154#endif
155 if (strcmp(source, "-") == 0) {
156 /*
157 * Since input is coming from a pipe we must establish
158 * our own connection to the terminal.
159 */
160 terminal = fopen(_PATH_TTY, "r");
161 if (terminal == NULL) {
ddd2ef55 162 warn("cannot open %s", _PATH_TTY);
1227625a 163 terminal = fopen(_PATH_DEVNULL, "r");
ddd2ef55
SP
164 if (terminal == NULL)
165 err(1, "cannot open %s", _PATH_DEVNULL);
1227625a
SP
166 }
167 pipein++;
168 }
169 setuid(getuid()); /* no longer need or want root privileges */
b45f51d6 170 magtape = strdup(source);
ddd2ef55
SP
171 if (magtape == NULL)
172 errx(1, "Cannot allocate space for magtape buffer");
1227625a
SP
173}
174
175void
ddd2ef55 176newtapebuf(long size)
1227625a 177{
ddd2ef55 178 static int tapebufsize = -1;
1227625a
SP
179
180 ntrec = size;
181 if (size <= tapebufsize)
182 return;
183 if (tapebuf != NULL)
184 free(tapebuf);
185 tapebuf = malloc(size * TP_BSIZE);
ddd2ef55
SP
186 if (tapebuf == NULL)
187 errx(1, "Cannot allocate space for tape buffer");
1227625a
SP
188 tapebufsize = size;
189}
190
191/*
192 * Verify that the tape drive can be accessed and
193 * that it actually is a dump tape.
194 */
195void
ddd2ef55 196setup(void)
1227625a
SP
197{
198 int i, j, *ip;
199 struct stat stbuf;
200
ddd2ef55 201 Vprintf(stdout, "Verify tape and initialize maps\n");
1227625a
SP
202#ifdef RRESTORE
203 if (host)
204 mt = rmtopen(magtape, 0);
205 else
206#endif
207 if (pipein)
208 mt = 0;
209 else
210 mt = open(magtape, O_RDONLY, 0);
ddd2ef55
SP
211 if (mt < 0)
212 err(1, "%s", magtape);
1227625a
SP
213 volno = 1;
214 setdumpnum();
215 FLUSHTAPEBUF();
216 if (!pipein && !bflag)
217 findtapeblksize();
218 if (gethead(&spcl) == FAIL) {
219 blkcnt--; /* push back this block */
220 blksread--;
221 tpblksread--;
222 cvtflag++;
ddd2ef55
SP
223 if (gethead(&spcl) == FAIL)
224 errx(1, "Tape is not a dump tape");
1227625a
SP
225 fprintf(stderr, "Converting to new file system format.\n");
226 }
227 if (pipein) {
228 endoftapemark.s_spcl.c_magic = cvtflag ? OFS_MAGIC : NFS_MAGIC;
229 endoftapemark.s_spcl.c_type = TS_END;
230 ip = (int *)&endoftapemark;
231 j = sizeof(union u_spcl) / sizeof(int);
232 i = 0;
233 do
234 i += *ip++;
235 while (--j);
236 endoftapemark.s_spcl.c_checksum = CHECKSUM - i;
237 }
238 if (vflag || command == 't' || command == 'C')
239 printdumpinfo();
240 if (filesys == NULL) {
241 filesys = spcl.c_filesys;
242 }
243 dumptime = spcl.c_ddate;
244 dumpdate = spcl.c_date;
ddd2ef55
SP
245 if (stat(".", &stbuf) < 0)
246 err(1, "cannot stat .");
b45f51d6
SP
247 if (stbuf.st_blksize > 0 && stbuf.st_blksize < TP_BSIZE )
248 fssize = TP_BSIZE;
249 if (stbuf.st_blksize >= TP_BSIZE && stbuf.st_blksize <= MAXBSIZE)
1227625a 250 fssize = stbuf.st_blksize;
ddd2ef55
SP
251 if (((fssize - 1) & fssize) != 0)
252 errx(1, "bad block size %ld", fssize);
253 if (spcl.c_volume != 1)
254 errx(1, "Tape is not volume 1 of the dump");
1227625a 255 if (gethead(&spcl) == FAIL) {
ddd2ef55 256 Dprintf(stdout, "header read failed at %ld blocks\n", (long)blksread);
1227625a
SP
257 panic("no header after volume mark!\n");
258 }
259 findinode(&spcl);
ddd2ef55
SP
260 if (spcl.c_type != TS_CLRI)
261 errx(1, "Cannot find file removal list");
1227625a 262 maxino = (spcl.c_count * TP_BSIZE * NBBY) + 1;
ddd2ef55 263 Dprintf(stdout, "maxino = %ld\n", maxino);
1227625a
SP
264 map = calloc((unsigned)1, (unsigned)howmany(maxino, NBBY));
265 if (map == NULL)
266 panic("no memory for active inode map\n");
267 usedinomap = map;
268 curfile.action = USING;
269 getfile(xtrmap, xtrmapskip);
ddd2ef55
SP
270 if (spcl.c_type != TS_BITS)
271 errx(1, "Cannot find file dump list");
1227625a
SP
272 map = calloc((unsigned)1, (unsigned)howmany(maxino, NBBY));
273 if (map == (char *)NULL)
274 panic("no memory for file dump list\n");
275 dumpmap = map;
276 curfile.action = USING;
277 getfile(xtrmap, xtrmapskip);
278 /*
279 * If there may be whiteout entries on the tape, pretend that the
280 * whiteout inode exists, so that the whiteout entries can be
281 * extracted.
282 */
283 if (oldinofmt == 0)
284 SETINO(WINO, dumpmap);
285}
286
287/*
288 * Prompt user to load a new dump volume.
289 * "Nextvol" is the next suggested volume to use.
290 * This suggested volume is enforced when doing full
b45f51d6 291 * or incremental restores, but can be overridden by
1227625a
SP
292 * the user when only extracting a subset of the files.
293 */
294void
ddd2ef55 295getvol(long nextvol)
1227625a 296{
ddd2ef55 297 long newvol = 0, savecnt = 0, wantnext = 0, i;
1227625a
SP
298 union u_spcl tmpspcl;
299# define tmpbuf tmpspcl.s_spcl
300 char buf[TP_BSIZE];
301
302 if (nextvol == 1) {
303 tapesread = 0;
304 gettingfile = 0;
305 }
306 if (pipein) {
307 if (nextvol != 1)
308 panic("Changing volumes on pipe input?\n");
309 if (volno == 1)
310 return;
311 goto gethdr;
312 }
313 savecnt = blksread;
314again:
315 if (pipein)
ddd2ef55 316 exit(1); /* pipes do not get a second chance */
1227625a
SP
317 if (command == 'R' || command == 'r' || curfile.action != SKIP) {
318 newvol = nextvol;
319 wantnext = 1;
b45f51d6 320 } else {
1227625a
SP
321 newvol = 0;
322 wantnext = 0;
323 }
324 while (newvol <= 0) {
325 if (tapesread == 0) {
326 fprintf(stderr, "%s%s%s%s%s",
327 "You have not read any tapes yet.\n",
328 "Unless you know which volume your",
329 " file(s) are on you should start\n",
330 "with the last volume and work",
331 " towards the first.\n");
332 } else {
333 fprintf(stderr, "You have read volumes");
334 strcpy(buf, ": ");
335 for (i = 1; i < 32; i++)
336 if (tapesread & (1 << i)) {
ddd2ef55 337 fprintf(stderr, "%s%ld", buf, (long)i);
1227625a
SP
338 strcpy(buf, ", ");
339 }
340 fprintf(stderr, "\n");
341 }
342 do {
343 fprintf(stderr, "Specify next volume #: ");
344 (void) fflush(stderr);
345 (void) fgets(buf, BUFSIZ, terminal);
346 } while (!feof(terminal) && buf[0] == '\n');
347 if (feof(terminal))
ddd2ef55 348 exit(1);
1227625a
SP
349 newvol = atoi(buf);
350 if (newvol <= 0) {
351 fprintf(stderr,
352 "Volume numbers are positive numerics\n");
353 }
354 }
355 if (newvol == volno) {
356 tapesread |= 1 << volno;
357 return;
358 }
359 closemt();
ddd2ef55 360 fprintf(stderr, "Mount tape volume %ld\n", (long)newvol);
1227625a
SP
361 fprintf(stderr, "Enter ``none'' if there are no more tapes\n");
362 fprintf(stderr, "otherwise enter tape name (default: %s) ", magtape);
363 (void) fflush(stderr);
364 (void) fgets(buf, BUFSIZ, terminal);
365 if (feof(terminal))
ddd2ef55 366 exit(1);
1227625a
SP
367 if (!strcmp(buf, "none\n")) {
368 terminateinput();
369 return;
370 }
371 if (buf[0] != '\n') {
372 (void) strcpy(magtape, buf);
373 magtape[strlen(magtape) - 1] = '\0';
374 }
375#ifdef RRESTORE
376 if (host)
377 mt = rmtopen(magtape, 0);
378 else
379#endif
380 mt = open(magtape, O_RDONLY, 0);
381
382 if (mt == -1) {
383 fprintf(stderr, "Cannot open %s\n", magtape);
384 volno = -1;
385 goto again;
386 }
387gethdr:
388 volno = newvol;
389 setdumpnum();
390 FLUSHTAPEBUF();
391 if (gethead(&tmpbuf) == FAIL) {
ddd2ef55 392 Dprintf(stdout, "header read failed at %ld blocks\n", (long)blksread);
1227625a
SP
393 fprintf(stderr, "tape is not dump tape\n");
394 volno = 0;
395 goto again;
396 }
397 if (tmpbuf.c_volume != volno) {
398 fprintf(stderr, "Wrong volume (%d)\n", tmpbuf.c_volume);
399 volno = 0;
400 goto again;
401 }
402 if (tmpbuf.c_date != dumpdate || tmpbuf.c_ddate != dumptime) {
403#ifdef __linux__
404 fprintf(stderr, "Wrong dump date\n\tgot: %s",
405 ctime4(&tmpbuf.c_date));
406 fprintf(stderr, "\twanted: %s", ctime4(&dumpdate));
407#else
408 fprintf(stderr, "Wrong dump date\n\tgot: %s",
409 ctime(&tmpbuf.c_date));
410 fprintf(stderr, "\twanted: %s", ctime(&dumpdate));
411#endif
412 volno = 0;
413 goto again;
414 }
415 tapesread |= 1 << volno;
416 blksread = savecnt;
417 /*
418 * If continuing from the previous volume, skip over any
419 * blocks read already at the end of the previous volume.
420 *
421 * If coming to this volume at random, skip to the beginning
422 * of the next record.
423 */
ddd2ef55
SP
424 Dprintf(stdout, "read %ld recs, tape starts with %ld\n",
425 tpblksread, (long)tmpbuf.c_firstrec);
1227625a
SP
426 if (tmpbuf.c_type == TS_TAPE && (tmpbuf.c_flags & DR_NEWHEADER)) {
427 if (!wantnext) {
428 tpblksread = tmpbuf.c_firstrec;
429 for (i = tmpbuf.c_count; i > 0; i--)
430 readtape(buf);
431 } else if (tmpbuf.c_firstrec > 0 &&
432 tmpbuf.c_firstrec < tpblksread - 1) {
433 /*
434 * -1 since we've read the volume header
435 */
436 i = tpblksread - tmpbuf.c_firstrec - 1;
ddd2ef55
SP
437 Dprintf(stderr, "Skipping %ld duplicate record%s.\n",
438 (long)i, i > 1 ? "s" : "");
1227625a
SP
439 while (--i >= 0)
440 readtape(buf);
441 }
442 }
443 if (curfile.action == USING) {
444 if (volno == 1)
445 panic("active file into volume 1\n");
446 return;
447 }
448 /*
449 * Skip up to the beginning of the next record
450 */
451 if (tmpbuf.c_type == TS_TAPE && (tmpbuf.c_flags & DR_NEWHEADER))
452 for (i = tmpbuf.c_count; i > 0; i--)
453 readtape(buf);
454 (void) gethead(&spcl);
455 findinode(&spcl);
456 if (gettingfile) {
457 gettingfile = 0;
ddd2ef55 458 siglongjmp(restart, 1);
1227625a
SP
459 }
460}
461
462/*
463 * Handle unexpected EOF.
464 */
465static void
ddd2ef55 466terminateinput(void)
1227625a
SP
467{
468
469 if (gettingfile && curfile.action == USING) {
470 printf("Warning: %s %s\n",
471 "End-of-input encountered while extracting", curfile.name);
472 }
473 curfile.name = "<name unknown>";
474 curfile.action = UNKNOWN;
475 curfile.dip = NULL;
476 curfile.ino = maxino;
477 if (gettingfile) {
478 gettingfile = 0;
ddd2ef55 479 siglongjmp(restart, 1);
1227625a
SP
480 }
481}
482
483/*
484 * handle multiple dumps per tape by skipping forward to the
485 * appropriate one.
486 */
487static void
ddd2ef55 488setdumpnum(void)
1227625a
SP
489{
490 struct mtop tcom;
491
492 if (dumpnum == 1 || volno != 1)
493 return;
ddd2ef55
SP
494 if (pipein)
495 errx(1, "Cannot have multiple dumps on pipe input");
1227625a
SP
496 tcom.mt_op = MTFSF;
497 tcom.mt_count = dumpnum - 1;
498#ifdef RRESTORE
499 if (host)
500 rmtioctl(MTFSF, dumpnum - 1);
b45f51d6 501 else
1227625a
SP
502#endif
503 if (ioctl(mt, (int)MTIOCTOP, (char *)&tcom) < 0)
ddd2ef55 504 warn("ioctl MTFSF");
1227625a
SP
505}
506
507void
ddd2ef55 508printdumpinfo(void)
1227625a
SP
509{
510#ifdef __linux__
511 fprintf(stdout, "Dump date: %s", ctime4(&spcl.c_date));
512 fprintf(stdout, "Dumped from: %s",
513 (spcl.c_ddate == 0) ? "the epoch\n" : ctime4(&spcl.c_ddate));
514#else
515 fprintf(stdout, "Dump date: %s", ctime(&spcl.c_date));
516 fprintf(stdout, "Dumped from: %s",
517 (spcl.c_ddate == 0) ? "the epoch\n" : ctime(&spcl.c_ddate));
518#endif
519 if (spcl.c_host[0] == '\0')
520 return;
521 fprintf(stderr, "Level %d dump of %s on %s:%s\n",
522 spcl.c_level, spcl.c_filesys, spcl.c_host, spcl.c_dev);
523 fprintf(stderr, "Label: %s\n", spcl.c_label);
524}
525
526int
ddd2ef55 527extractfile(char *name)
1227625a 528{
ddd2ef55 529 unsigned int flags;
1227625a
SP
530 mode_t mode;
531 struct timeval timep[2];
532 struct entry *ep;
1227625a
SP
533
534 curfile.name = name;
535 curfile.action = USING;
536#ifdef __linux__
537 timep[0].tv_sec = curfile.dip->di_atime.tv_sec;
538 timep[0].tv_usec = curfile.dip->di_atime.tv_usec;
539 timep[1].tv_sec = curfile.dip->di_mtime.tv_sec;
540 timep[1].tv_usec = curfile.dip->di_mtime.tv_usec;
541#else /* __linux__ */
542 timep[0].tv_sec = curfile.dip->di_atime;
543 timep[0].tv_usec = curfile.dip->di_atimensec / 1000;
544 timep[1].tv_sec = curfile.dip->di_mtime;
545 timep[1].tv_usec = curfile.dip->di_mtimensec / 1000;
546#endif /* __linux__ */
547 mode = curfile.dip->di_mode;
548 flags = curfile.dip->di_flags;
549 switch (mode & IFMT) {
550
551 default:
552 fprintf(stderr, "%s: unknown file mode 0%o\n", name, mode);
553 skipfile();
554 return (FAIL);
555
556 case IFSOCK:
ddd2ef55 557 Vprintf(stdout, "skipped socket %s\n", name);
1227625a
SP
558 skipfile();
559 return (GOOD);
560
561 case IFDIR:
562 if (mflag) {
563 ep = lookupname(name);
564 if (ep == NULL || ep->e_flags & EXTRACT)
565 panic("unextracted directory %s\n", name);
566 skipfile();
567 return (GOOD);
568 }
ddd2ef55 569 Vprintf(stdout, "extract file %s\n", name);
1227625a
SP
570 return (genliteraldir(name, curfile.ino));
571
572 case IFLNK:
ddd2ef55
SP
573 { uid_t luid = curfile.dip->di_uid;
574 gid_t lgid = curfile.dip->di_gid;
575
1227625a
SP
576 lnkbuf[0] = '\0';
577 pathlen = 0;
1227625a
SP
578 getfile(xtrlnkfile, xtrlnkskip);
579 if (pathlen == 0) {
ddd2ef55 580 Vprintf(stdout,
1227625a
SP
581 "%s: zero length symbolic link (ignored)\n", name);
582 return (GOOD);
583 }
ddd2ef55
SP
584 if (linkit(lnkbuf, name, SYMLINK) == FAIL)
585 return (FAIL);
586 (void) chown(name, luid, lgid);
587 return (GOOD);
588 }
1227625a 589
b45f51d6 590 case IFIFO:
ddd2ef55 591 Vprintf(stdout, "extract fifo %s\n", name);
1227625a
SP
592 if (Nflag) {
593 skipfile();
594 return (GOOD);
595 }
b45f51d6
SP
596 if (uflag && !Nflag)
597 (void)unlink(name);
598 if (mkfifo(name, mode) < 0) {
ddd2ef55 599 warn("%s: cannot create fifo", name);
1227625a
SP
600 skipfile();
601 return (FAIL);
602 }
603 (void) chown(name, curfile.dip->di_uid, curfile.dip->di_gid);
604 (void) chmod(name, mode);
8d4197bb 605 if (flags)
b45f51d6 606#ifdef __linux__
8d4197bb 607 (void) fsetflags(name, flags);
1227625a 608#else
8d4197bb 609 (void) chflags(name, flags);
1227625a
SP
610#endif
611 skipfile();
612 utimes(name, timep);
613 return (GOOD);
614
b45f51d6
SP
615 case IFCHR:
616 case IFBLK:
ddd2ef55 617 Vprintf(stdout, "extract special file %s\n", name);
1227625a
SP
618 if (Nflag) {
619 skipfile();
620 return (GOOD);
621 }
b45f51d6
SP
622 if (uflag)
623 (void)unlink(name);
624 if (mknod(name, mode, (int)curfile.dip->di_rdev) < 0) {
ddd2ef55 625 warn("%s: cannot create special file", name);
1227625a
SP
626 skipfile();
627 return (FAIL);
628 }
629 (void) chown(name, curfile.dip->di_uid, curfile.dip->di_gid);
630 (void) chmod(name, mode);
8d4197bb 631 if (flags)
1227625a 632#ifdef __linux__
8d4197bb
SP
633 {
634 warn("%s: fsetflags called on a special file", name);
635 (void) fsetflags(name, flags);
636 }
1227625a 637#else
8d4197bb 638 (void) chflags(name, flags);
1227625a
SP
639#endif
640 skipfile();
641 utimes(name, timep);
642 return (GOOD);
643
644 case IFREG:
ddd2ef55 645 Vprintf(stdout, "extract file %s\n", name);
1227625a
SP
646 if (Nflag) {
647 skipfile();
648 return (GOOD);
649 }
b45f51d6
SP
650 if (uflag)
651 (void)unlink(name);
1227625a
SP
652 if ((ofile = open(name, O_WRONLY | O_CREAT | O_TRUNC,
653 0666)) < 0) {
ddd2ef55 654 warn("%s: cannot create file", name);
1227625a
SP
655 skipfile();
656 return (FAIL);
657 }
658 (void) fchown(ofile, curfile.dip->di_uid, curfile.dip->di_gid);
659 (void) fchmod(ofile, mode);
8d4197bb 660 if (flags)
1227625a 661#ifdef __linux__
8d4197bb 662 (void) setflags(ofile, flags);
1227625a 663#else
8d4197bb 664 (void) fchflags(ofile, flags);
1227625a
SP
665#endif
666 getfile(xtrfile, xtrskip);
667 (void) close(ofile);
668 utimes(name, timep);
669 return (GOOD);
670 }
671 /* NOTREACHED */
672}
673
674/*
675 * skip over bit maps on the tape
676 */
677void
ddd2ef55 678skipmaps(void)
1227625a
SP
679{
680
681 while (spcl.c_type == TS_BITS || spcl.c_type == TS_CLRI)
682 skipfile();
683}
684
685/*
686 * skip over a file on the tape
687 */
688void
ddd2ef55 689skipfile(void)
1227625a
SP
690{
691
692 curfile.action = SKIP;
693 getfile(xtrnull, xtrnull);
694}
695
696/*
697 * Extract a file from the tape.
698 * When an allocated block is found it is passed to the fill function;
699 * when an unallocated block (hole) is found, a zeroed buffer is passed
700 * to the skip function.
701 */
702void
ddd2ef55 703getfile(void (*fill) __P((char *, size_t)), void (*skip) __P((char *, size_t)))
1227625a
SP
704{
705 register int i;
ddd2ef55
SP
706 volatile int curblk = 0;
707 volatile quad_t size = spcl.c_dinode.di_size;
708 volatile int last_write_was_hole = 0;
709 quad_t origsize = size;
1227625a
SP
710 static char clearedbuf[MAXBSIZE];
711 char buf[MAXBSIZE / TP_BSIZE][TP_BSIZE];
712 char junk[TP_BSIZE];
713
714 if (spcl.c_type == TS_END)
715 panic("ran off end of tape\n");
716 if (spcl.c_magic != NFS_MAGIC)
717 panic("not at beginning of a file\n");
718 if (!gettingfile && setjmp(restart) != 0)
719 return;
720 gettingfile++;
721loop:
722 for (i = 0; i < spcl.c_count; i++) {
b45f51d6 723 if (readmapflag || spcl.c_addr[i]) {
1227625a
SP
724 readtape(&buf[curblk++][0]);
725 if (curblk == fssize / TP_BSIZE) {
ddd2ef55 726 (*fill)((char *)buf, (size_t)(size > TP_BSIZE ?
1227625a
SP
727 fssize : (curblk - 1) * TP_BSIZE + size));
728 curblk = 0;
729 last_write_was_hole = 0;
730 }
731 } else {
732 if (curblk > 0) {
ddd2ef55 733 (*fill)((char *)buf, (size_t)(size > TP_BSIZE ?
1227625a
SP
734 curblk * TP_BSIZE :
735 (curblk - 1) * TP_BSIZE + size));
736 curblk = 0;
737 }
738 (*skip)(clearedbuf, (long)(size > TP_BSIZE ?
739 TP_BSIZE : size));
740 last_write_was_hole = 1;
741 }
742 if ((size -= TP_BSIZE) <= 0) {
743 for (i++; i < spcl.c_count; i++)
b45f51d6 744 if (readmapflag || spcl.c_addr[i])
1227625a
SP
745 readtape(junk);
746 break;
747 }
748 }
749 if (gethead(&spcl) == GOOD && size > 0) {
750 if (spcl.c_type == TS_ADDR)
751 goto loop;
ddd2ef55 752 Dprintf(stdout,
b45f51d6 753 "Missing address (header) block for %s at %ld blocks\n",
ddd2ef55 754 curfile.name, (long)blksread);
1227625a
SP
755 }
756 if (curblk > 0) {
ddd2ef55 757 (*fill)((char *)buf, (size_t)(curblk * TP_BSIZE) + size);
1227625a
SP
758 last_write_was_hole = 0;
759 }
760 if (last_write_was_hole) {
761 ftruncate(ofile, origsize);
762 }
763 findinode(&spcl);
764 gettingfile = 0;
765}
766
767/*
768 * Write out the next block of a file.
769 */
770static void
ddd2ef55 771xtrfile(char *buf, size_t size)
1227625a
SP
772{
773
774 if (Nflag)
775 return;
ddd2ef55
SP
776 if (write(ofile, buf, (int) size) == -1)
777 err(1, "write error extracting inode %lu, name %s\nwrite",
778 (unsigned long)curfile.ino, curfile.name);
1227625a
SP
779}
780
781/*
782 * Skip over a hole in a file.
783 */
784/* ARGSUSED */
785static void
ddd2ef55 786xtrskip(char *buf, size_t size)
1227625a
SP
787{
788
ddd2ef55
SP
789 if (lseek(ofile, (off_t)size, SEEK_CUR) == -1)
790 err(1, "seek error extracting inode %lu, name %s\nlseek",
791 (unsigned long)curfile.ino, curfile.name);
1227625a
SP
792}
793
794/*
795 * Collect the next block of a symbolic link.
796 */
797static void
ddd2ef55 798xtrlnkfile(char *buf, size_t size)
1227625a
SP
799{
800
801 pathlen += size;
ddd2ef55
SP
802 if (pathlen > MAXPATHLEN)
803 errx(1, "symbolic link name: %s->%s%s; too long %d",
1227625a 804 curfile.name, lnkbuf, buf, pathlen);
1227625a
SP
805 (void) strcat(lnkbuf, buf);
806}
807
808/*
809 * Skip over a hole in a symbolic link (should never happen).
810 */
811/* ARGSUSED */
812static void
ddd2ef55 813xtrlnkskip(char *buf, size_t size)
1227625a
SP
814{
815
ddd2ef55 816 errx(1, "unallocated block in symbolic link %s", curfile.name);
1227625a
SP
817}
818
819/*
820 * Collect the next block of a bit map.
821 */
822static void
ddd2ef55 823xtrmap(char *buf, size_t size)
1227625a
SP
824{
825
826 memmove(map, buf, size);
827 map += size;
828}
829
830/*
831 * Skip over a hole in a bit map (should never happen).
832 */
833/* ARGSUSED */
834static void
ddd2ef55 835xtrmapskip(char *buf, size_t size)
1227625a
SP
836{
837
838 panic("hole in map\n");
839 map += size;
840}
841
842/*
843 * Noop, when an extraction function is not needed.
844 */
845/* ARGSUSED */
846void
ddd2ef55 847xtrnull(char *buf, size_t size)
1227625a
SP
848{
849
850 return;
851}
852
ddd2ef55 853static int
1227625a
SP
854do_cmpfiles(int fd_tape, int fd_disk, long size)
855{
1227625a
SP
856 static char buf_tape[BUFSIZ];
857 static char buf_disk[BUFSIZ];
ddd2ef55
SP
858 ssize_t n_tape;
859 ssize_t n_disk;
1227625a
SP
860
861 while (size > 0) {
ddd2ef55 862 if ((n_tape = read(fd_tape, buf_tape, sizeof(buf_tape))) < 1) {
1227625a
SP
863 close(fd_tape), close(fd_disk);
864 panic("do_cmpfiles: unexpected EOF[1]");
865 }
ddd2ef55 866 if ((n_disk = read(fd_disk, buf_disk, sizeof(buf_tape))) < 1) {
1227625a
SP
867 close(fd_tape), close(fd_disk);
868 panic("do_cmpfiles: unexpected EOF[2]");
869 }
870 if (n_tape != n_disk) {
871 close(fd_tape), close(fd_disk);
872 panic("do_cmpfiles: sizes different!");
873 }
ddd2ef55 874 if (memcmp(buf_tape, buf_disk, (size_t)n_tape) != 0) return (1);
1227625a
SP
875 size -= n_tape;
876 }
877 return (0);
878}
879
880/* for debugging compare problems */
881#undef COMPARE_FAIL_KEEP_FILE
882
ddd2ef55 883static
1227625a
SP
884#ifdef COMPARE_FAIL_KEEP_FILE
885/* return true if tapefile should be unlinked after compare */
886int
887#else
888void
889#endif
890cmpfiles(char *tapefile, char *diskfile, struct stat *sbuf_disk)
891{
892 struct stat sbuf_tape;
893 int fd_tape, fd_disk;
894
895 if (stat(tapefile, &sbuf_tape) != 0) {
896 panic("Can't lstat tmp file %s: %s\n", tapefile,
897 strerror(errno));
898 }
899
900 if (sbuf_disk->st_size != sbuf_tape.st_size) {
901 fprintf(stderr,
b45f51d6 902 "%s: size changed from %ld to %ld.\n",
ddd2ef55 903 diskfile, (long)sbuf_tape.st_size, (long)sbuf_disk->st_size);
1227625a
SP
904#ifdef COMPARE_FAIL_KEEP_FILE
905 return (0);
906#else
907 return;
908#endif
909 }
910
911 if ((fd_tape = open(tapefile, O_RDONLY)) < 0) {
912 panic("Can't open %s: %s\n", tapefile, strerror(errno));
913 }
914 if ((fd_disk = open(diskfile, O_RDONLY)) < 0) {
915 close(fd_tape);
916 panic("Can't open %s: %s\n", diskfile, strerror(errno));
917 }
918
919 if (do_cmpfiles(fd_tape, fd_disk, sbuf_tape.st_size)) {
920 fprintf(stderr, "%s: tape and disk copies are different\n",
921 diskfile);
922 close(fd_tape);
923 close(fd_disk);
924#ifdef COMPARE_FAIL_KEEP_FILE
925 /* rename the file to live in /tmp */
926 /* rename `tapefile' to /tmp/<basename of diskfile> */
927 {
928 char *p = strrchr(diskfile, '/');
929 char newname[MAXPATHLEN];
930 if (!p) {
931 panic("can't find / in %s\n", diskfile);
932 }
ddd2ef55 933 snprintf(newname, sizeof(newname), "%s/debug/%s", tmpdir, p + 1);
1227625a
SP
934 if (rename(tapefile, newname)) {
935 panic("rename from %s to %s failed: %s\n",
936 tapefile, newname,
937 strerror(errno));
938 } else {
939 fprintf(stderr, "*** %s saved to %s\n",
940 tapefile, newname);
941 }
942 }
943
944 /* don't unlink the file (it's not there anymore */
945 /* anyway) */
946 return (0);
947#else
948 return;
949#endif
950 }
951 close(fd_tape);
952 close(fd_disk);
953#ifdef COMPARE_FAIL_KEEP_FILE
954 return (1);
955#endif
956}
957
ddd2ef55 958static char tmpfilename[MAXPATHLEN];
1227625a
SP
959
960void
ddd2ef55 961comparefile(char *name)
1227625a
SP
962{
963 static char *tmpfile = NULL;
964 int mode;
965 struct stat sb, stemp;
966 int r;
967
968 if ((r = lstat(name, &sb)) != 0) {
ddd2ef55 969 warn("%s: does not exist (%d)", name, r);
1227625a
SP
970 skipfile();
971 return;
972 }
973
974 curfile.name = name;
b45f51d6 975 curfile.action = USING;
1227625a
SP
976 mode = curfile.dip->di_mode;
977
ddd2ef55
SP
978 Vprintf(stdout, "comparing %s (size: %ld, mode: 0%o)\n", name,
979 (long)sb.st_size, mode);
1227625a
SP
980
981 if (sb.st_mode != mode) {
982 fprintf(stderr, "%s: mode changed from 0%o to 0%o.\n",
983 name, mode & 07777, sb.st_mode & 07777);
984 }
985 switch (mode & IFMT) {
986 default:
987 skipfile();
988 return;
989
990 case IFSOCK:
991 skipfile();
992 return;
993
994 case IFDIR:
995 skipfile();
996 return;
997
998 case IFLNK: {
999 char lbuf[MAXPATHLEN + 1];
1000 int lsize;
1001
1002 if (!(sb.st_mode & S_IFLNK)) {
1003 fprintf(stderr, "%s: is no longer a symbolic link\n",
1004 name);
1005 return;
1006 }
1007 lnkbuf[0] = '\0';
1008 pathlen = 0;
1009 getfile(xtrlnkfile, xtrlnkskip);
1010 if (pathlen == 0) {
1011 fprintf(stderr,
1012 "%s: zero length symbolic link (ignored)\n",
1013 name);
1014 return;
1015 }
1016 if ((lsize = readlink(name, lbuf, MAXPATHLEN)) < 0) {
1017 panic("readlink of %s failed: %s", name,
1018 strerror(errno));
1019 }
1020 lbuf[lsize] = 0;
1021 if (strcmp(lbuf, lnkbuf) != 0) {
1022 fprintf(stderr,
1023 "%s: symbolic link changed from %s to %s.\n",
1024 name, lnkbuf, lbuf);
1025 return;
1026 }
1027 return;
1028 }
1029
1030 case IFCHR:
1031 case IFBLK:
1032 if (!(sb.st_mode & (S_IFCHR|S_IFBLK))) {
1033 fprintf(stderr, "%s: no longer a special file\n",
1034 name);
1035 skipfile();
1036 return;
1037 }
1038
1039 if (sb.st_rdev != (int)curfile.dip->di_rdev) {
1040 fprintf(stderr,
1041 "%s: device changed from %d,%d to %d,%d.\n",
1042 name,
ddd2ef55
SP
1043 ((int)curfile.dip->di_rdev >> 8) & 0xff,
1044 (int)curfile.dip->di_rdev & 0xff,
1045 ((int)sb.st_rdev >> 8) & 0xff,
1046 (int)sb.st_rdev & 0xff);
1227625a
SP
1047 }
1048 skipfile();
1049 return;
1050
1051 case IFREG:
1052 if (tmpfile == NULL) {
1053 /* argument to mktemp() must not be in RO space: */
ddd2ef55 1054 snprintf(tmpfilename, sizeof(tmpfilename), "%s/restoreCXXXXXX", tmpdir);
1227625a
SP
1055 tmpfile = mktemp(&tmpfilename[0]);
1056 }
1057 if ((stat(tmpfile, &stemp) == 0) && (unlink(tmpfile) != 0)) {
1058 panic("cannot delete tmp file %s: %s\n",
1059 tmpfile, strerror(errno));
1060 }
1061 if ((ofile = creat(tmpfile, 0600)) < 0) {
1062 panic("cannot create file temp file %s: %s\n",
1063 name, strerror(errno));
1064 }
1065 getfile(xtrfile, xtrskip);
1066 (void) close(ofile);
1067#ifdef COMPARE_FAIL_KEEP_FILE
1068 if (cmpfiles(tmpfile, name, &sb))
1069 unlink(tmpfile);
1070#else
1071 cmpfiles(tmpfile, name, &sb);
1072 unlink(tmpfile);
1073#endif
1074 return;
1075 }
1076 /* NOTREACHED */
1077}
1078
1079/*
1080 * Read TP_BSIZE blocks from the input.
1081 * Handle read errors, and end of media.
1082 */
1083static void
ddd2ef55 1084readtape(char *buf)
1227625a 1085{
ddd2ef55 1086 ssize_t rd, newvol, i;
1227625a
SP
1087 int cnt, seek_failed;
1088
1089 if (blkcnt < numtrec) {
ddd2ef55 1090 memmove(buf, &tapebuf[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1227625a
SP
1091 blksread++;
1092 tpblksread++;
1093 return;
1094 }
1095 for (i = 0; i < ntrec; i++)
1096 ((struct s_spcl *)&tapebuf[i * TP_BSIZE])->c_magic = 0;
1097 if (numtrec == 0)
1098 numtrec = ntrec;
1099 cnt = ntrec * TP_BSIZE;
1100 rd = 0;
1101getmore:
1102#ifdef RRESTORE
1103 if (host)
1104 i = rmtread(&tapebuf[rd], cnt);
1105 else
1106#endif
1107 i = read(mt, &tapebuf[rd], cnt);
1108 /*
1109 * Check for mid-tape short read error.
1110 * If found, skip rest of buffer and start with the next.
1111 */
1112 if (!pipein && numtrec < ntrec && i > 0) {
ddd2ef55 1113 Dprintf(stdout, "mid-media short read error.\n");
1227625a
SP
1114 numtrec = ntrec;
1115 }
1116 /*
1117 * Handle partial block read.
1118 */
1119 if (pipein && i == 0 && rd > 0)
1120 i = rd;
1121 else if (i > 0 && i != ntrec * TP_BSIZE) {
1122 if (pipein) {
1123 rd += i;
1124 cnt -= i;
1125 if (cnt > 0)
1126 goto getmore;
1127 i = rd;
1128 } else {
1129 /*
1130 * Short read. Process the blocks read.
1131 */
1132 if (i % TP_BSIZE != 0)
ddd2ef55 1133 Vprintf(stdout,
b45f51d6 1134 "partial block read: %ld should be %ld\n",
ddd2ef55 1135 (long)i, ntrec * TP_BSIZE);
1227625a
SP
1136 numtrec = i / TP_BSIZE;
1137 }
1138 }
1139 /*
1140 * Handle read error.
1141 */
1142 if (i < 0) {
1143 fprintf(stderr, "Tape read error while ");
1144 switch (curfile.action) {
1145 default:
1146 fprintf(stderr, "trying to set up tape\n");
1147 break;
1148 case UNKNOWN:
1149 fprintf(stderr, "trying to resynchronize\n");
1150 break;
1151 case USING:
1152 fprintf(stderr, "restoring %s\n", curfile.name);
1153 break;
1154 case SKIP:
ddd2ef55
SP
1155 fprintf(stderr, "skipping over inode %lu\n",
1156 (unsigned long)curfile.ino);
1227625a
SP
1157 break;
1158 }
1159 if (!yflag && !reply("continue"))
ddd2ef55 1160 exit(1);
1227625a 1161 i = ntrec * TP_BSIZE;
ddd2ef55 1162 memset(tapebuf, 0, (size_t)i);
1227625a
SP
1163#ifdef RRESTORE
1164 if (host)
1165 seek_failed = (rmtseek(i, 1) < 0);
1166 else
1167#endif
1168 seek_failed = (lseek(mt, i, SEEK_CUR) == (off_t)-1);
1169
ddd2ef55
SP
1170 if (seek_failed)
1171 err(1, "continuation failed");
1227625a
SP
1172 }
1173 /*
1174 * Handle end of tape.
1175 */
1176 if (i == 0) {
ddd2ef55 1177 Vprintf(stdout, "End-of-tape encountered\n");
1227625a
SP
1178 if (!pipein) {
1179 newvol = volno + 1;
1180 volno = 0;
1181 numtrec = 0;
1182 getvol(newvol);
1183 readtape(buf);
1184 return;
1185 }
1186 if (rd % TP_BSIZE != 0)
1187 panic("partial block read: %d should be %d\n",
1188 rd, ntrec * TP_BSIZE);
1189 terminateinput();
ddd2ef55 1190 memmove(&tapebuf[rd], &endoftapemark, TP_BSIZE);
1227625a
SP
1191 }
1192 blkcnt = 0;
ddd2ef55 1193 memmove(buf, &tapebuf[(blkcnt++ * TP_BSIZE)], TP_BSIZE);
1227625a
SP
1194 blksread++;
1195 tpblksread++;
1196}
1197
1198static void
ddd2ef55 1199findtapeblksize(void)
1227625a
SP
1200{
1201 register long i;
1202
1203 for (i = 0; i < ntrec; i++)
1204 ((struct s_spcl *)&tapebuf[i * TP_BSIZE])->c_magic = 0;
1205 blkcnt = 0;
1206#ifdef RRESTORE
1207 if (host)
ddd2ef55 1208 i = rmtread(tapebuf, (size_t)(ntrec * TP_BSIZE));
1227625a
SP
1209 else
1210#endif
ddd2ef55 1211 i = read(mt, tapebuf, (size_t)(ntrec * TP_BSIZE));
1227625a 1212
ddd2ef55
SP
1213 if (i <= 0)
1214 err(1, "tape read error");
1215 if (i % TP_BSIZE != 0)
1216 errx(1, "Tape block size (%ld) is not a multiple of dump block size (%d)",
1217 (long)i, TP_BSIZE);
1227625a
SP
1218 ntrec = i / TP_BSIZE;
1219 numtrec = ntrec;
ddd2ef55 1220 Vprintf(stdout, "Tape block size is %ld\n", ntrec);
1227625a
SP
1221}
1222
1223void
ddd2ef55 1224closemt(void)
1227625a
SP
1225{
1226
1227 if (mt < 0)
1228 return;
1229#ifdef RRESTORE
1230 if (host)
1231 rmtclose();
1232 else
1233#endif
1234 (void) close(mt);
1235}
1236
1237/*
1238 * Read the next block from the tape.
1239 * Check to see if it is one of several vintage headers.
1240 * If it is an old style header, convert it to a new style header.
1241 * If it is not any valid header, return an error.
1242 */
1243static int
ddd2ef55 1244gethead(struct s_spcl *buf)
1227625a 1245{
ddd2ef55 1246 int32_t i;
1227625a
SP
1247 union {
1248 quad_t qval;
b45f51d6 1249 int32_t val[2];
1227625a
SP
1250 } qcvt;
1251 union u_ospcl {
1252 char dummy[TP_BSIZE];
1253 struct s_ospcl {
b45f51d6
SP
1254 int32_t c_type;
1255 int32_t c_date;
1256 int32_t c_ddate;
1257 int32_t c_volume;
1258 int32_t c_tapea;
ddd2ef55 1259 u_int16_t c_inumber;
b45f51d6
SP
1260 int32_t c_magic;
1261 int32_t c_checksum;
1227625a 1262 struct odinode {
ddd2ef55
SP
1263 u_int16_t odi_mode;
1264 u_int16_t odi_nlink;
1265 u_int16_t odi_uid;
1266 u_int16_t odi_gid;
b45f51d6
SP
1267 int32_t odi_size;
1268 int32_t odi_rdev;
1227625a 1269 char odi_addr[36];
b45f51d6
SP
1270 int32_t odi_atime;
1271 int32_t odi_mtime;
1272 int32_t odi_ctime;
1227625a 1273 } c_dinode;
b45f51d6 1274 int32_t c_count;
1227625a
SP
1275 char c_addr[256];
1276 } s_ospcl;
1277 } u_ospcl;
1278
1279 if (!cvtflag) {
1280 readtape((char *)buf);
1281 if (buf->c_magic != NFS_MAGIC) {
ddd2ef55 1282 if (swabi(buf->c_magic) != NFS_MAGIC)
1227625a
SP
1283 return (FAIL);
1284 if (!Bcvt) {
ddd2ef55 1285 Vprintf(stdout, "Note: Doing Byte swapping\n");
1227625a
SP
1286 Bcvt = 1;
1287 }
1288 }
1289 if (checksum((int *)buf) == FAIL)
1290 return (FAIL);
ddd2ef55
SP
1291 if (Bcvt)
1292 swabst((u_char *)"8i4s31i528bi192b2i", (u_char *)buf);
1227625a
SP
1293 goto good;
1294 }
1295 readtape((char *)(&u_ospcl.s_ospcl));
ddd2ef55 1296 memset((char *)buf, 0, (long)TP_BSIZE);
1227625a
SP
1297 buf->c_type = u_ospcl.s_ospcl.c_type;
1298 buf->c_date = u_ospcl.s_ospcl.c_date;
1299 buf->c_ddate = u_ospcl.s_ospcl.c_ddate;
1300 buf->c_volume = u_ospcl.s_ospcl.c_volume;
1301 buf->c_tapea = u_ospcl.s_ospcl.c_tapea;
1302 buf->c_inumber = u_ospcl.s_ospcl.c_inumber;
1303 buf->c_checksum = u_ospcl.s_ospcl.c_checksum;
1304 buf->c_magic = u_ospcl.s_ospcl.c_magic;
1305 buf->c_dinode.di_mode = u_ospcl.s_ospcl.c_dinode.odi_mode;
1306 buf->c_dinode.di_nlink = u_ospcl.s_ospcl.c_dinode.odi_nlink;
1307 buf->c_dinode.di_uid = u_ospcl.s_ospcl.c_dinode.odi_uid;
1308 buf->c_dinode.di_gid = u_ospcl.s_ospcl.c_dinode.odi_gid;
1309 buf->c_dinode.di_size = u_ospcl.s_ospcl.c_dinode.odi_size;
1310 buf->c_dinode.di_rdev = u_ospcl.s_ospcl.c_dinode.odi_rdev;
1311#ifdef __linux__
1312 buf->c_dinode.di_atime.tv_sec = u_ospcl.s_ospcl.c_dinode.odi_atime;
1313 buf->c_dinode.di_mtime.tv_sec = u_ospcl.s_ospcl.c_dinode.odi_mtime;
1314 buf->c_dinode.di_ctime.tv_sec = u_ospcl.s_ospcl.c_dinode.odi_ctime;
1315#else /* __linux__ */
1316 buf->c_dinode.di_atime = u_ospcl.s_ospcl.c_dinode.odi_atime;
1317 buf->c_dinode.di_mtime = u_ospcl.s_ospcl.c_dinode.odi_mtime;
1318 buf->c_dinode.di_ctime = u_ospcl.s_ospcl.c_dinode.odi_ctime;
1319#endif /* __linux__ */
1320 buf->c_count = u_ospcl.s_ospcl.c_count;
1321 memmove(buf->c_addr, u_ospcl.s_ospcl.c_addr, (long)256);
1322 if (u_ospcl.s_ospcl.c_magic != OFS_MAGIC ||
1323 checksum((int *)(&u_ospcl.s_ospcl)) == FAIL)
1324 return(FAIL);
1325 buf->c_magic = NFS_MAGIC;
1326
1327good:
1328 if ((buf->c_dinode.di_size == 0 || buf->c_dinode.di_size > 0xfffffff) &&
1329 (buf->c_dinode.di_mode & IFMT) == IFDIR && Qcvt == 0) {
1330 qcvt.qval = buf->c_dinode.di_size;
1331 if (qcvt.val[0] || qcvt.val[1]) {
1332 printf("Note: Doing Quad swapping\n");
1333 Qcvt = 1;
1334 }
1335 }
1336 if (Qcvt) {
1337 qcvt.qval = buf->c_dinode.di_size;
1338 i = qcvt.val[1];
1339 qcvt.val[1] = qcvt.val[0];
1340 qcvt.val[0] = i;
1341 buf->c_dinode.di_size = qcvt.qval;
1342 }
b45f51d6 1343 readmapflag = 0;
1227625a
SP
1344
1345 switch (buf->c_type) {
1346
1347 case TS_CLRI:
1348 case TS_BITS:
1349 /*
1350 * Have to patch up missing information in bit map headers
1351 */
1352 buf->c_inumber = 0;
1353 buf->c_dinode.di_size = buf->c_count * TP_BSIZE;
b45f51d6
SP
1354 if (buf->c_count > TP_NINDIR)
1355 readmapflag = 1;
1356 else
1357 for (i = 0; i < buf->c_count; i++)
1358 buf->c_addr[i]++;
1227625a
SP
1359 break;
1360
1361 case TS_TAPE:
1362 if ((buf->c_flags & DR_NEWINODEFMT) == 0)
1363 oldinofmt = 1;
1364 /* fall through */
1365 case TS_END:
1366 buf->c_inumber = 0;
1367 break;
1368
1369 case TS_INODE:
1370 case TS_ADDR:
1371 break;
1372
1373 default:
1374 panic("gethead: unknown inode type %d\n", buf->c_type);
1375 break;
1376 }
1377 /*
b45f51d6 1378 * If we are restoring a filesystem with old format inodes,
1227625a
SP
1379 * copy the uid/gid to the new location.
1380 */
1381 if (oldinofmt) {
1382 buf->c_dinode.di_uid = buf->c_dinode.di_ouid;
1383 buf->c_dinode.di_gid = buf->c_dinode.di_ogid;
1384 }
1385 if (dflag)
1386 accthdr(buf);
1387 return(GOOD);
1388}
1389
1390/*
1391 * Check that a header is where it belongs and predict the next header
1392 */
1393static void
ddd2ef55 1394accthdr(struct s_spcl *header)
1227625a
SP
1395{
1396 static ino_t previno = 0x7fffffff;
1397 static int prevtype;
1398 static long predict;
1399 long blks, i;
1400
1401 if (header->c_type == TS_TAPE) {
1402 fprintf(stderr, "Volume header (%s inode format) ",
1403 oldinofmt ? "old" : "new");
1404 if (header->c_firstrec)
1405 fprintf(stderr, "begins with record %d",
1406 header->c_firstrec);
1407 fprintf(stderr, "\n");
1408 previno = 0x7fffffff;
1409 return;
1410 }
1411 if (previno == 0x7fffffff)
1412 goto newcalc;
1413 switch (prevtype) {
1414 case TS_BITS:
1415 fprintf(stderr, "Dumped inodes map header");
1416 break;
1417 case TS_CLRI:
1418 fprintf(stderr, "Used inodes map header");
1419 break;
1420 case TS_INODE:
ddd2ef55 1421 fprintf(stderr, "File header, ino %lu", (unsigned long)previno);
1227625a
SP
1422 break;
1423 case TS_ADDR:
b45f51d6 1424 fprintf(stderr, "File continuation header, ino %ld", previno);
1227625a
SP
1425 break;
1426 case TS_END:
1427 fprintf(stderr, "End of tape header");
1428 break;
1429 }
1430 if (predict != blksread - 1)
b45f51d6 1431 fprintf(stderr, "; predicted %ld blocks, got %ld blocks",
1227625a
SP
1432 predict, blksread - 1);
1433 fprintf(stderr, "\n");
1434newcalc:
1435 blks = 0;
1436 if (header->c_type != TS_END)
1437 for (i = 0; i < header->c_count; i++)
b45f51d6 1438 if (readmapflag || header->c_addr[i] != 0)
1227625a
SP
1439 blks++;
1440 predict = blks;
1441 blksread = 0;
1442 prevtype = header->c_type;
1443 previno = header->c_inumber;
1444}
1445
1446/*
1447 * Find an inode header.
1448 * Complain if had to skip, and complain is set.
1449 */
1450static void
ddd2ef55 1451findinode(struct s_spcl *header)
1227625a
SP
1452{
1453 static long skipcnt = 0;
1454 long i;
1455 char buf[TP_BSIZE];
1456
1457 curfile.name = "<name unknown>";
1458 curfile.action = UNKNOWN;
1459 curfile.dip = NULL;
1460 curfile.ino = 0;
1461 do {
1462 if (header->c_magic != NFS_MAGIC) {
1463 skipcnt++;
1464 while (gethead(header) == FAIL ||
1465 header->c_date != dumpdate)
1466 skipcnt++;
1467 }
1468 switch (header->c_type) {
1469
1470 case TS_ADDR:
1471 /*
1472 * Skip up to the beginning of the next record
1473 */
1474 for (i = 0; i < header->c_count; i++)
1475 if (header->c_addr[i])
1476 readtape(buf);
1477 while (gethead(header) == FAIL ||
1478 header->c_date != dumpdate)
1479 skipcnt++;
1480 break;
1481
1482 case TS_INODE:
1483 curfile.dip = &header->c_dinode;
1484 curfile.ino = header->c_inumber;
1485 break;
1486
1487 case TS_END:
1488 curfile.ino = maxino;
1489 break;
1490
1491 case TS_CLRI:
1492 curfile.name = "<file removal list>";
1493 break;
1494
1495 case TS_BITS:
1496 curfile.name = "<file dump list>";
1497 break;
1498
1499 case TS_TAPE:
1500 panic("unexpected tape header\n");
1501 /* NOTREACHED */
1502
1503 default:
1504 panic("unknown tape header type %d\n", spcl.c_type);
1505 /* NOTREACHED */
1506
1507 }
1508 } while (header->c_type == TS_ADDR);
1509 if (skipcnt > 0)
b45f51d6
SP
1510 fprintf(stderr, "resync restore, skipped %ld blocks\n",
1511 skipcnt);
1227625a
SP
1512 skipcnt = 0;
1513}
1514
1515static int
ddd2ef55 1516checksum(int *buf)
1227625a
SP
1517{
1518 register int i, j;
1519
1520 j = sizeof(union u_spcl) / sizeof(int);
1521 i = 0;
1522 if(!Bcvt) {
1523 do
1524 i += *buf++;
1525 while (--j);
1526 } else {
1527 /* What happens if we want to read restore tapes
1528 for a 16bit int machine??? */
b45f51d6 1529 do
ddd2ef55 1530 i += swabi(*buf++);
1227625a
SP
1531 while (--j);
1532 }
b45f51d6 1533
1227625a 1534 if (i != CHECKSUM) {
ddd2ef55
SP
1535 fprintf(stderr, "Checksum error %o, inode %lu file %s\n", i,
1536 (unsigned long)curfile.ino, curfile.name);
1227625a
SP
1537 return(FAIL);
1538 }
1539 return(GOOD);
1540}
1541
1542#ifdef RRESTORE
ddd2ef55 1543#ifdef __STDC__
1227625a
SP
1544#include <stdarg.h>
1545#else
1546#include <varargs.h>
1547#endif
1548
1549void
ddd2ef55 1550#ifdef __STDC__
1227625a
SP
1551msg(const char *fmt, ...)
1552#else
1553msg(fmt, va_alist)
1554 char *fmt;
1555 va_dcl
1556#endif
1557{
1558 va_list ap;
ddd2ef55 1559#ifdef __STDC__
1227625a
SP
1560 va_start(ap, fmt);
1561#else
1562 va_start(ap);
1563#endif
1564 (void)vfprintf(stderr, fmt, ap);
1565 va_end(ap);
1566}
1567#endif /* RRESTORE */
1568
1569static u_char *
ddd2ef55 1570swab16(u_char *sp, int n)
1227625a
SP
1571{
1572 char c;
1573
1574 while (--n >= 0) {
1575 c = sp[0]; sp[0] = sp[1]; sp[1] = c;
1576 sp += 2;
1577 }
1578 return (sp);
1579}
1580
1581static u_char *
ddd2ef55 1582swab32(u_char *sp, int n)
1227625a
SP
1583{
1584 char c;
1585
1586 while (--n >= 0) {
1587 c = sp[0]; sp[0] = sp[3]; sp[3] = c;
ddd2ef55 1588 c = sp[1]; sp[1] = sp[2]; sp[2] = c;
1227625a
SP
1589 sp += 4;
1590 }
1591 return (sp);
1592}
1593
ddd2ef55
SP
1594static u_char *
1595swab64(u_char *sp, int n)
1596{
1597 char c;
1598
1599 while (--n >= 0) {
1600 c = sp[0]; sp[0] = sp[7]; sp[7] = c;
1601 c = sp[1]; sp[1] = sp[6]; sp[6] = c;
1602 c = sp[2]; sp[2] = sp[5]; sp[5] = c;
1603 c = sp[3]; sp[3] = sp[4]; sp[4] = c;
1604 sp += 8;
1605 }
1606 return (sp);
1607}
1608
1227625a 1609void
ddd2ef55 1610swabst(u_char *cp, u_char *sp)
1227625a
SP
1611{
1612 int n = 0;
1613
1614 while (*cp) {
1615 switch (*cp) {
1616 case '0': case '1': case '2': case '3': case '4':
1617 case '5': case '6': case '7': case '8': case '9':
1618 n = (n * 10) + (*cp++ - '0');
1619 continue;
b45f51d6 1620
1227625a
SP
1621 case 's': case 'w': case 'h':
1622 if (n == 0)
1623 n = 1;
ddd2ef55
SP
1624 sp = swab16(sp, n);
1625 break;
1626
1627 case 'i':
1628 if (n == 0)
1629 n = 1;
1630 sp = swab32(sp, n);
1227625a
SP
1631 break;
1632
1633 case 'l':
1634 if (n == 0)
1635 n = 1;
ddd2ef55 1636 sp = swab64(sp, n);
1227625a
SP
1637 break;
1638
1639 default: /* Any other character, like 'b' counts as byte. */
1640 if (n == 0)
1641 n = 1;
1642 sp += n;
1643 break;
1644 }
1645 cp++;
1646 n = 0;
1647 }
1648}
1649
ddd2ef55
SP
1650static u_int
1651swabi(u_int x)
1652{
1653 swabst((u_char *)"i", (u_char *)&x);
1654 return (x);
1655}
1656
1227625a 1657static u_long
ddd2ef55 1658swabl(u_long x)
1227625a
SP
1659{
1660 swabst((u_char *)"l", (u_char *)&x);
1661 return (x);
1662}