file_cmds-185.2.tar.gz
[apple/file_cmds.git] / pax / ar_io.c
1 /* $OpenBSD: ar_io.c,v 1.36 2004/06/20 16:22:08 niklas Exp $ */
2 /* $NetBSD: ar_io.c,v 1.5 1996/03/26 23:54:13 mrg Exp $ */
3
4 /*-
5 * Copyright (c) 1992 Keith Muller.
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
8 *
9 * This code is derived from software contributed to Berkeley by
10 * Keith Muller of the University of California, San Diego.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37 #ifndef lint
38 #if 0
39 static const char sccsid[] = "@(#)ar_io.c 8.2 (Berkeley) 4/18/94";
40 #else
41 static const char rcsid[] __attribute__((__unused__)) = "$OpenBSD: ar_io.c,v 1.36 2004/06/20 16:22:08 niklas Exp $";
42 #endif
43 #endif /* not lint */
44
45 #include <sys/types.h>
46 #include <sys/time.h>
47 #include <sys/stat.h>
48 #include <sys/ioctl.h>
49 #include <sys/mtio.h>
50 #include <sys/param.h>
51 #include <sys/wait.h>
52 #include <signal.h>
53 #include <string.h>
54 #include <fcntl.h>
55 #include <unistd.h>
56 #include <stdio.h>
57 #include <errno.h>
58 #include <stdlib.h>
59 #include <err.h>
60 #include "pax.h"
61 #include "options.h"
62 #include "extern.h"
63
64 /*
65 * Routines which deal directly with the archive I/O device/file.
66 */
67
68 #define DMOD 0666 /* default mode of created archives */
69 #define EXT_MODE O_RDONLY /* open mode for list/extract */
70 #define AR_MODE (O_WRONLY | O_CREAT | O_TRUNC) /* mode for archive */
71 #define APP_MODE O_RDWR /* mode for append */
72 #define STDO "<STDOUT>" /* pseudo name for stdout */
73 #define STDN "<STDIN>" /* pseudo name for stdin */
74 static int arfd = -1; /* archive file descriptor */
75 static int artyp = ISREG; /* archive type: file/FIFO/tape */
76 static int arvol = 1; /* archive volume number */
77 static int lstrval = -1; /* return value from last i/o */
78 static int io_ok; /* i/o worked on volume after resync */
79 static int did_io; /* did i/o ever occur on volume? */
80 static int done; /* set via tty termination */
81 static struct stat arsb; /* stat of archive device at open */
82 static int invld_rec; /* tape has out of spec record size */
83 static int wr_trail = 1; /* trailer was rewritten in append */
84 static int can_unlnk = 0; /* do we unlink null archives? */
85 const char *arcname; /* printable name of archive */
86 const char *gzip_program; /* name of gzip program */
87 static pid_t zpid = -1; /* pid of child process */
88 int force_one_volume; /* 1 if we ignore volume changes */
89
90 static int get_phys(void);
91 extern sigset_t s_mask;
92 static void ar_start_gzip(int, const char *, int);
93
94 /*
95 * ar_open()
96 * Opens the next archive volume. Determines the type of the device and
97 * sets up block sizes as required by the archive device and the format.
98 * Note: we may be called with name == NULL on the first open only.
99 * Return:
100 * -1 on failure, 0 otherwise
101 */
102
103 int
104 ar_open(const char *name)
105 {
106 struct mtget mb;
107
108 if (arfd != -1)
109 (void)close(arfd);
110 arfd = -1;
111 can_unlnk = did_io = io_ok = invld_rec = 0;
112 artyp = ISREG;
113 flcnt = 0;
114
115 /*
116 * open based on overall operation mode
117 */
118 switch (act) {
119 case LIST:
120 case EXTRACT:
121 if (name == NULL) {
122 arfd = STDIN_FILENO;
123 arcname = STDN;
124 } else if ((arfd = open(name, EXT_MODE, DMOD)) < 0)
125 syswarn(1, errno, "Failed open to read on %s", name);
126 if (arfd != -1 && gzip_program != NULL)
127 ar_start_gzip(arfd, gzip_program, 0);
128 break;
129 case ARCHIVE:
130 if (name == NULL) {
131 arfd = STDOUT_FILENO;
132 arcname = STDO;
133 } else if ((arfd = open(name, AR_MODE, DMOD)) < 0)
134 syswarn(1, errno, "Failed open to write on %s", name);
135 else
136 can_unlnk = 1;
137 if (arfd != -1 && gzip_program != NULL)
138 ar_start_gzip(arfd, gzip_program, 1);
139 break;
140 case APPND:
141 if (name == NULL) {
142 arfd = STDOUT_FILENO;
143 arcname = STDO;
144 } else if ((arfd = open(name, APP_MODE, DMOD)) < 0)
145 syswarn(1, errno, "Failed open to read/write on %s",
146 name);
147 break;
148 case COPY:
149 /*
150 * arfd not used in COPY mode
151 */
152 arcname = "<NONE>";
153 lstrval = 1;
154 return(0);
155 }
156 if (arfd < 0)
157 return(-1);
158
159 if (chdname != NULL)
160 if (chdir(chdname) != 0) {
161 syswarn(1, errno, "Failed chdir to %s", chdname);
162 return(-1);
163 }
164 /*
165 * set up is based on device type
166 */
167 if (fstat(arfd, &arsb) < 0) {
168 syswarn(0, errno, "Failed stat on %s", arcname);
169 (void)close(arfd);
170 arfd = -1;
171 can_unlnk = 0;
172 return(-1);
173 }
174 if (S_ISDIR(arsb.st_mode)) {
175 paxwarn(0, "Cannot write an archive on top of a directory %s",
176 arcname);
177 (void)close(arfd);
178 arfd = -1;
179 can_unlnk = 0;
180 return(-1);
181 }
182
183 if (S_ISCHR(arsb.st_mode))
184 artyp = ioctl(arfd, MTIOCGET, &mb) ? ISCHR : ISTAPE;
185 else if (S_ISBLK(arsb.st_mode))
186 artyp = ISBLK;
187 else if ((lseek(arfd, (off_t)0L, SEEK_CUR) == -1) && (errno == ESPIPE))
188 artyp = ISPIPE;
189 else
190 artyp = ISREG;
191
192 /*
193 * make sure we beyond any doubt that we only can unlink regular files
194 * we created
195 */
196 if (artyp != ISREG)
197 can_unlnk = 0;
198 /*
199 * if we are writing, we are done
200 */
201 if (act == ARCHIVE) {
202 blksz = rdblksz = wrblksz;
203 lstrval = 1;
204 return(0);
205 }
206
207 /*
208 * set default blksz on read. APPNDs writes rdblksz on the last volume
209 * On all new archive volumes, we shift to wrblksz (if the user
210 * specified one, otherwise we will continue to use rdblksz). We
211 * must set blocksize based on what kind of device the archive is
212 * stored.
213 */
214 switch (artyp) {
215 case ISTAPE:
216 /*
217 * Tape drives come in at least two flavors. Those that support
218 * variable sized records and those that have fixed sized
219 * records. They must be treated differently. For tape drives
220 * that support variable sized records, we must make large
221 * reads to make sure we get the entire record, otherwise we
222 * will just get the first part of the record (up to size we
223 * asked). Tapes with fixed sized records may or may not return
224 * multiple records in a single read. We really do not care
225 * what the physical record size is UNLESS we are going to
226 * append. (We will need the physical block size to rewrite
227 * the trailer). Only when we are appending do we go to the
228 * effort to figure out the true PHYSICAL record size.
229 */
230 blksz = rdblksz = MAXBLK;
231 break;
232 case ISPIPE:
233 case ISBLK:
234 case ISCHR:
235 /*
236 * Blocksize is not a major issue with these devices (but must
237 * be kept a multiple of 512). If the user specified a write
238 * block size, we use that to read. Under append, we must
239 * always keep blksz == rdblksz. Otherwise we go ahead and use
240 * the device optimal blocksize as (and if) returned by stat
241 * and if it is within pax specs.
242 */
243 if ((act == APPND) && wrblksz) {
244 blksz = rdblksz = wrblksz;
245 break;
246 }
247
248 if ((arsb.st_blksize > 0) && (arsb.st_blksize < MAXBLK) &&
249 ((arsb.st_blksize % BLKMULT) == 0))
250 rdblksz = arsb.st_blksize;
251 else
252 rdblksz = DEVBLK;
253 /*
254 * For performance go for large reads when we can without harm
255 */
256 if ((act == APPND) || (artyp == ISCHR))
257 blksz = rdblksz;
258 else
259 blksz = MAXBLK;
260 break;
261 case ISREG:
262 /*
263 * if the user specified wrblksz works, use it. Under appends
264 * we must always keep blksz == rdblksz
265 */
266 if ((act == APPND) && wrblksz && ((arsb.st_size%wrblksz)==0)){
267 blksz = rdblksz = wrblksz;
268 break;
269 }
270 /*
271 * See if we can find the blocking factor from the file size
272 */
273 for (rdblksz = MAXBLK; rdblksz > 0; rdblksz -= BLKMULT)
274 if ((arsb.st_size % rdblksz) == 0)
275 break;
276 /*
277 * When we cannot find a match, we may have a flawed archive.
278 */
279 if (rdblksz <= 0)
280 rdblksz = FILEBLK;
281 /*
282 * for performance go for large reads when we can
283 */
284 if (act == APPND)
285 blksz = rdblksz;
286 else
287 blksz = MAXBLK;
288 break;
289 default:
290 /*
291 * should never happen, worst case, slow...
292 */
293 blksz = rdblksz = BLKMULT;
294 break;
295 }
296 lstrval = 1;
297 return(0);
298 }
299
300 /*
301 * ar_close()
302 * closes archive device, increments volume number, and prints i/o summary
303 */
304 void
305 ar_close(void)
306 {
307 int status;
308
309 if (arfd < 0) {
310 did_io = io_ok = flcnt = 0;
311 return;
312 }
313
314 /*
315 * Close archive file. This may take a LONG while on tapes (we may be
316 * forced to wait for the rewind to complete) so tell the user what is
317 * going on (this avoids the user hitting control-c thinking pax is
318 * broken).
319 */
320 if (vflag && (artyp == ISTAPE)) {
321 if (vfpart)
322 (void)putc('\n', listf);
323 (void)fprintf(listf,
324 "%s: Waiting for tape drive close to complete...",
325 argv0);
326 (void)fflush(listf);
327 }
328
329 /*
330 * if nothing was written to the archive (and we created it), we remove
331 * it
332 */
333 if (can_unlnk && (fstat(arfd, &arsb) == 0) && (S_ISREG(arsb.st_mode)) &&
334 (arsb.st_size == 0)) {
335 (void)unlink(arcname);
336 can_unlnk = 0;
337 }
338
339 /*
340 * for a quick extract/list, pax frequently exits before the child
341 * process is done
342 */
343 if ((act == LIST || act == EXTRACT) && nflag && zpid > 0)
344 kill(zpid, SIGINT);
345
346 (void)close(arfd);
347
348 /* Do not exit before child to ensure data integrity */
349 if (zpid > 0)
350 waitpid(zpid, &status, 0);
351
352 if (vflag && (artyp == ISTAPE)) {
353 (void)fputs("done.\n", listf);
354 vfpart = 0;
355 (void)fflush(listf);
356 }
357 arfd = -1;
358
359 if (!io_ok && !did_io) {
360 flcnt = 0;
361 return;
362 }
363 did_io = io_ok = 0;
364
365 /*
366 * The volume number is only increased when the last device has data
367 * and we have already determined the archive format.
368 */
369 if (frmt != NULL)
370 ++arvol;
371
372 if (!vflag) {
373 flcnt = 0;
374 return;
375 }
376
377 /*
378 * Print out a summary of I/O for this archive volume.
379 */
380 if (vfpart) {
381 (void)putc('\n', listf);
382 vfpart = 0;
383 }
384
385 /*
386 * If we have not determined the format yet, we just say how many bytes
387 * we have skipped over looking for a header to id. there is no way we
388 * could have written anything yet.
389 */
390 if (frmt == NULL) {
391 # ifdef LONG_OFF_T
392 (void)fprintf(listf, "%s: unknown format, %lu bytes skipped.\n",
393 # else
394 (void)fprintf(listf, "%s: unknown format, %qu bytes skipped.\n",
395 # endif
396 argv0, rdcnt);
397 (void)fflush(listf);
398 flcnt = 0;
399 return;
400 }
401
402 if (strcmp(NM_CPIO, argv0) == 0)
403 (void)fprintf(listf, "%qu blocks\n", (rdcnt ? rdcnt : wrcnt) / 5120);
404 else if (strcmp(NM_TAR, argv0) != 0 && strcmp(NM_PAX, argv0) != 0)
405 (void)fprintf(listf,
406 # ifdef LONG_OFF_T
407 "%s: %s vol %d, %lu files, %lu bytes read, %lu bytes written.\n",
408 # else
409 "%s: %s vol %d, %lu files, %qu bytes read, %qu bytes written.\n",
410 # endif
411 argv0, frmt->name, arvol-1, flcnt, rdcnt, wrcnt);
412 (void)fflush(listf);
413 flcnt = 0;
414 }
415
416 /*
417 * ar_drain()
418 * drain any archive format independent padding from an archive read
419 * from a socket or a pipe. This is to prevent the process on the
420 * other side of the pipe from getting a SIGPIPE (pax will stop
421 * reading an archive once a format dependent trailer is detected).
422 */
423 void
424 ar_drain(void)
425 {
426 int res;
427 char drbuf[MAXBLK];
428
429 /*
430 * we only drain from a pipe/socket. Other devices can be closed
431 * without reading up to end of file. We sure hope that pipe is closed
432 * on the other side so we will get an EOF.
433 */
434 if ((artyp != ISPIPE) || (lstrval <= 0))
435 return;
436
437 /*
438 * keep reading until pipe is drained
439 */
440 while ((res = read(arfd, drbuf, sizeof(drbuf))) > 0)
441 ;
442 lstrval = res;
443 }
444
445 /*
446 * ar_set_wr()
447 * Set up device right before switching from read to write in an append.
448 * device dependent code (if required) to do this should be added here.
449 * For all archive devices we are already positioned at the place we want
450 * to start writing when this routine is called.
451 * Return:
452 * 0 if all ready to write, -1 otherwise
453 */
454
455 int
456 ar_set_wr(void)
457 {
458 off_t cpos;
459
460 /*
461 * we must make sure the trailer is rewritten on append, ar_next()
462 * will stop us if the archive containing the trailer was not written
463 */
464 wr_trail = 0;
465
466 /*
467 * Add any device dependent code as required here
468 */
469 if (artyp != ISREG)
470 return(0);
471 /*
472 * Ok we have an archive in a regular file. If we were rewriting a
473 * file, we must get rid of all the stuff after the current offset
474 * (it was not written by pax).
475 */
476 if (((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0) ||
477 (ftruncate(arfd, cpos) < 0)) {
478 syswarn(1, errno, "Unable to truncate archive file");
479 return(-1);
480 }
481 return(0);
482 }
483
484 /*
485 * ar_app_ok()
486 * check if the last volume in the archive allows appends. We cannot check
487 * this until we are ready to write since there is no spec that says all
488 * volumes in a single archive have to be of the same type...
489 * Return:
490 * 0 if we can append, -1 otherwise.
491 */
492
493 int
494 ar_app_ok(void)
495 {
496 if (artyp == ISPIPE) {
497 paxwarn(1, "Cannot append to an archive obtained from a pipe.");
498 return(-1);
499 }
500
501 if (!invld_rec)
502 return(0);
503 paxwarn(1,"Cannot append, device record size %d does not support %s spec",
504 rdblksz, argv0);
505 return(-1);
506 }
507
508 /*
509 * ar_read()
510 * read up to a specified number of bytes from the archive into the
511 * supplied buffer. When dealing with tapes we may not always be able to
512 * read what we want.
513 * Return:
514 * Number of bytes in buffer. 0 for end of file, -1 for a read error.
515 */
516
517 int
518 ar_read(char *buf, int cnt)
519 {
520 int res = 0;
521
522 /*
523 * if last i/o was in error, no more reads until reset or new volume
524 */
525 if (lstrval <= 0)
526 return(lstrval);
527
528 /*
529 * how we read must be based on device type
530 */
531 switch (artyp) {
532 case ISTAPE:
533 if ((res = read(arfd, buf, cnt)) > 0) {
534 /*
535 * CAUTION: tape systems may not always return the same
536 * sized records so we leave blksz == MAXBLK. The
537 * physical record size that a tape drive supports is
538 * very hard to determine in a uniform and portable
539 * manner.
540 */
541 io_ok = 1;
542 if (res != rdblksz) {
543 /*
544 * Record size changed. If this happens on
545 * any record after the first, we probably have
546 * a tape drive which has a fixed record size
547 * (we are getting multiple records in a single
548 * read). Watch out for record blocking that
549 * violates pax spec (must be a multiple of
550 * BLKMULT).
551 */
552 rdblksz = res;
553 if (rdblksz % BLKMULT)
554 invld_rec = 1;
555 }
556 return(res);
557 }
558 break;
559 case ISREG:
560 case ISBLK:
561 case ISCHR:
562 case ISPIPE:
563 default:
564 /*
565 * Files are so easy to deal with. These other things cannot
566 * be trusted at all. So when we are dealing with character
567 * devices and pipes we just take what they have ready for us
568 * and return. Trying to do anything else with them runs the
569 * risk of failure.
570 */
571 if ((res = read(arfd, buf, cnt)) > 0) {
572 io_ok = 1;
573 return(res);
574 }
575 break;
576 }
577
578 /*
579 * We are in trouble at this point, something is broken...
580 */
581 lstrval = res;
582 if (res < 0)
583 syswarn(1, errno, "Failed read on archive volume %d", arvol);
584 else
585 paxwarn(0, "End of archive volume %d reached", arvol);
586 return(res);
587 }
588
589 /*
590 * ar_write()
591 * Write a specified number of bytes in supplied buffer to the archive
592 * device so it appears as a single "block". Deals with errors and tries
593 * to recover when faced with short writes.
594 * Return:
595 * Number of bytes written. 0 indicates end of volume reached and with no
596 * flaws (as best that can be detected). A -1 indicates an unrecoverable
597 * error in the archive occurred.
598 */
599
600 int
601 ar_write(char *buf, int bsz)
602 {
603 int res;
604 off_t cpos;
605
606 /*
607 * do not allow pax to create a "bad" archive. Once a write fails on
608 * an archive volume prevent further writes to it.
609 */
610 if (lstrval <= 0)
611 return(lstrval);
612
613 if ((res = write(arfd, buf, bsz)) == bsz) {
614 wr_trail = 1;
615 io_ok = 1;
616 return(bsz);
617 } else if (res < 0 && artyp == ISPIPE && errno == EPIPE) { /* ignore it */
618 wr_trail = 1;
619 io_ok = 1;
620 errno = 0;
621 arfd = open("/dev/null", AR_MODE, DMOD);
622 artyp = ISREG;
623 return bsz;
624 }
625
626 /*
627 * write broke, see what we can do with it. We try to send any partial
628 * writes that may violate pax spec to the next archive volume.
629 */
630 if (res < 0)
631 lstrval = res;
632 else
633 lstrval = 0;
634
635 switch (artyp) {
636 case ISREG:
637 if ((res > 0) && (res % BLKMULT)) {
638 /*
639 * try to fix up partial writes which are not BLKMULT
640 * in size by forcing the runt record to next archive
641 * volume
642 */
643 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0)
644 break;
645 cpos -= (off_t)res;
646 if (ftruncate(arfd, cpos) < 0)
647 break;
648 res = lstrval = 0;
649 break;
650 }
651 if (res >= 0)
652 break;
653 /*
654 * if file is out of space, handle it like a return of 0
655 */
656 if ((errno == ENOSPC) || (errno == EFBIG) || (errno == EDQUOT))
657 res = lstrval = 0;
658 break;
659 case ISTAPE:
660 case ISCHR:
661 case ISBLK:
662 if (res >= 0)
663 break;
664 if (errno == EACCES) {
665 paxwarn(0, "Write failed, archive is write protected.");
666 res = lstrval = 0;
667 return(0);
668 }
669 /*
670 * see if we reached the end of media, if so force a change to
671 * the next volume
672 */
673 if ((errno == ENOSPC) || (errno == EIO) || (errno == ENXIO))
674 res = lstrval = 0;
675 break;
676 case ISPIPE:
677 default:
678 /*
679 * we cannot fix errors to these devices
680 */
681 break;
682 }
683
684 /*
685 * Better tell the user the bad news...
686 * if this is a block aligned archive format, we may have a bad archive
687 * if the format wants the header to start at a BLKMULT boundary.. While
688 * we can deal with the mis-aligned data, it violates spec and other
689 * archive readers will likely fail. if the format is not block
690 * aligned, the user may be lucky (and the archive is ok).
691 */
692 if (res >= 0) {
693 if (res > 0)
694 wr_trail = 1;
695 io_ok = 1;
696 }
697
698 /*
699 * If we were trying to rewrite the trailer and it didn't work, we
700 * must quit right away.
701 */
702 if (!wr_trail && (res <= 0)) {
703 paxwarn(1,"Unable to append, trailer re-write failed. Quitting.");
704 return(res);
705 }
706
707 if (res == 0)
708 paxwarn(0, "End of archive volume %d reached", arvol);
709 else if (res < 0)
710 syswarn(1, errno, "Failed write to archive volume: %d", arvol);
711 else if (!frmt->blkalgn || ((res % frmt->blkalgn) == 0))
712 paxwarn(0,"WARNING: partial archive write. Archive MAY BE FLAWED");
713 else
714 paxwarn(1,"WARNING: partial archive write. Archive IS FLAWED");
715 return(res);
716 }
717
718 /*
719 * ar_rdsync()
720 * Try to move past a bad spot on a flawed archive as needed to continue
721 * I/O. Clears error flags to allow I/O to continue.
722 * Return:
723 * 0 when ok to try i/o again, -1 otherwise.
724 */
725
726 int
727 ar_rdsync(void)
728 {
729 long fsbz;
730 off_t cpos;
731 off_t mpos;
732 struct mtop mb;
733
734 /*
735 * Fail resync attempts at user request (done) or if this is going to be
736 * an update/append to a existing archive. if last i/o hit media end,
737 * we need to go to the next volume not try a resync
738 */
739 if ((done > 0) || (lstrval == 0))
740 return(-1);
741
742 if ((act == APPND) || (act == ARCHIVE)) {
743 paxwarn(1, "Cannot allow updates to an archive with flaws.");
744 return(-1);
745 }
746 if (io_ok)
747 did_io = 1;
748
749 switch (artyp) {
750 case ISTAPE:
751 /*
752 * if the last i/o was a successful data transfer, we assume
753 * the fault is just a bad record on the tape that we are now
754 * past. If we did not get any data since the last resync try
755 * to move the tape forward one PHYSICAL record past any
756 * damaged tape section. Some tape drives are stubborn and need
757 * to be pushed.
758 */
759 if (io_ok) {
760 io_ok = 0;
761 lstrval = 1;
762 break;
763 }
764 mb.mt_op = MTFSR;
765 mb.mt_count = 1;
766 if (ioctl(arfd, MTIOCTOP, &mb) < 0)
767 break;
768 lstrval = 1;
769 break;
770 case ISREG:
771 case ISCHR:
772 case ISBLK:
773 /*
774 * try to step over the bad part of the device.
775 */
776 io_ok = 0;
777 if (((fsbz = arsb.st_blksize) <= 0) || (artyp != ISREG))
778 fsbz = BLKMULT;
779 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0)
780 break;
781 mpos = fsbz - (cpos % (off_t)fsbz);
782 if (lseek(arfd, mpos, SEEK_CUR) < 0)
783 break;
784 lstrval = 1;
785 break;
786 case ISPIPE:
787 default:
788 /*
789 * cannot recover on these archive device types
790 */
791 io_ok = 0;
792 break;
793 }
794 if (lstrval <= 0) {
795 paxwarn(1, "Unable to recover from an archive read failure.");
796 return(-1);
797 }
798 paxwarn(0, "Attempting to recover from an archive read failure.");
799 return(0);
800 }
801
802 /*
803 * ar_fow()
804 * Move the I/O position within the archive forward the specified number of
805 * bytes as supported by the device. If we cannot move the requested
806 * number of bytes, return the actual number of bytes moved in skipped.
807 * Return:
808 * 0 if moved the requested distance, -1 on complete failure, 1 on
809 * partial move (the amount moved is in skipped)
810 */
811
812 int
813 ar_fow(off_t sksz, off_t *skipped)
814 {
815 off_t cpos;
816 off_t mpos;
817
818 *skipped = 0;
819 if (sksz <= 0)
820 return(0);
821
822 /*
823 * we cannot move forward at EOF or error
824 */
825 if (lstrval <= 0)
826 return(lstrval);
827
828 /*
829 * Safer to read forward on devices where it is hard to find the end of
830 * the media without reading to it. With tapes we cannot be sure of the
831 * number of physical blocks to skip (we do not know physical block
832 * size at this point), so we must only read forward on tapes!
833 */
834 if (artyp != ISREG)
835 return(0);
836
837 /*
838 * figure out where we are in the archive
839 */
840 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) >= 0) {
841 /*
842 * we can be asked to move farther than there are bytes in this
843 * volume, if so, just go to file end and let normal buf_fill()
844 * deal with the end of file (it will go to next volume by
845 * itself)
846 */
847 if ((mpos = cpos + sksz) > arsb.st_size) {
848 *skipped = arsb.st_size - cpos;
849 mpos = arsb.st_size;
850 } else
851 *skipped = sksz;
852 if (lseek(arfd, mpos, SEEK_SET) >= 0)
853 return(0);
854 }
855 syswarn(1, errno, "Forward positioning operation on archive failed");
856 lstrval = -1;
857 return(-1);
858 }
859
860 /*
861 * ar_rev()
862 * move the i/o position within the archive backwards the specified byte
863 * count as supported by the device. With tapes drives we RESET rdblksz to
864 * the PHYSICAL blocksize.
865 * NOTE: We should only be called to move backwards so we can rewrite the
866 * last records (the trailer) of an archive (APPEND).
867 * Return:
868 * 0 if moved the requested distance, -1 on complete failure
869 */
870
871 int
872 ar_rev(off_t sksz)
873 {
874 off_t cpos;
875 struct mtop mb;
876 int phyblk;
877
878 /*
879 * make sure we do not have try to reverse on a flawed archive
880 */
881 if (lstrval < 0)
882 return(lstrval);
883
884 switch (artyp) {
885 case ISPIPE:
886 if (sksz <= 0)
887 break;
888 /*
889 * cannot go backwards on these critters
890 */
891 paxwarn(1, "Reverse positioning on pipes is not supported.");
892 lstrval = -1;
893 return(-1);
894 case ISREG:
895 case ISBLK:
896 case ISCHR:
897 default:
898 if (sksz <= 0)
899 break;
900
901 /*
902 * For things other than files, backwards movement has a very
903 * high probability of failure as we really do not know the
904 * true attributes of the device we are talking to (the device
905 * may not even have the ability to lseek() in any direction).
906 * First we figure out where we are in the archive.
907 */
908 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0) {
909 syswarn(1, errno,
910 "Unable to obtain current archive byte offset");
911 lstrval = -1;
912 return(-1);
913 }
914
915 /*
916 * we may try to go backwards past the start when the archive
917 * is only a single record. If this happens and we are on a
918 * multi-volume archive, we need to go to the end of the
919 * previous volume and continue our movement backwards from
920 * there.
921 */
922 if ((cpos -= sksz) < (off_t)0L) {
923 if (arvol > 1) {
924 /*
925 * this should never happen
926 */
927 paxwarn(1,"Reverse position on previous volume.");
928 lstrval = -1;
929 return(-1);
930 }
931 cpos = (off_t)0L;
932 }
933 if (lseek(arfd, cpos, SEEK_SET) < 0) {
934 syswarn(1, errno, "Unable to seek archive backwards");
935 lstrval = -1;
936 return(-1);
937 }
938 break;
939 case ISTAPE:
940 /*
941 * Calculate and move the proper number of PHYSICAL tape
942 * blocks. If the sksz is not an even multiple of the physical
943 * tape size, we cannot do the move (this should never happen).
944 * (We also cannot handle trailers spread over two vols.)
945 * get_phys() also makes sure we are in front of the filemark.
946 */
947 if ((phyblk = get_phys()) <= 0) {
948 lstrval = -1;
949 return(-1);
950 }
951
952 /*
953 * make sure future tape reads only go by physical tape block
954 * size (set rdblksz to the real size).
955 */
956 rdblksz = phyblk;
957
958 /*
959 * if no movement is required, just return (we must be after
960 * get_phys() so the physical blocksize is properly set)
961 */
962 if (sksz <= 0)
963 break;
964
965 /*
966 * ok we have to move. Make sure the tape drive can do it.
967 */
968 if (sksz % phyblk) {
969 paxwarn(1,
970 "Tape drive unable to backspace requested amount");
971 lstrval = -1;
972 return(-1);
973 }
974
975 /*
976 * move backwards the requested number of bytes
977 */
978 mb.mt_op = MTBSR;
979 mb.mt_count = sksz/phyblk;
980 if (ioctl(arfd, MTIOCTOP, &mb) < 0) {
981 syswarn(1,errno, "Unable to backspace tape %d blocks.",
982 mb.mt_count);
983 lstrval = -1;
984 return(-1);
985 }
986 break;
987 }
988 lstrval = 1;
989 return(0);
990 }
991
992 /*
993 * get_phys()
994 * Determine the physical block size on a tape drive. We need the physical
995 * block size so we know how many bytes we skip over when we move with
996 * mtio commands. We also make sure we are BEFORE THE TAPE FILEMARK when
997 * return.
998 * This is one really SLOW routine...
999 * Return:
1000 * physical block size if ok (ok > 0), -1 otherwise
1001 */
1002
1003 static int
1004 get_phys(void)
1005 {
1006 int padsz = 0;
1007 int res;
1008 int phyblk;
1009 struct mtop mb;
1010 char scbuf[MAXBLK];
1011
1012 /*
1013 * move to the file mark, and then back up one record and read it.
1014 * this should tell us the physical record size the tape is using.
1015 */
1016 if (lstrval == 1) {
1017 /*
1018 * we know we are at file mark when we get back a 0 from
1019 * read()
1020 */
1021 while ((res = read(arfd, scbuf, sizeof(scbuf))) > 0)
1022 padsz += res;
1023 if (res < 0) {
1024 syswarn(1, errno, "Unable to locate tape filemark.");
1025 return(-1);
1026 }
1027 }
1028
1029 /*
1030 * move backwards over the file mark so we are at the end of the
1031 * last record.
1032 */
1033 mb.mt_op = MTBSF;
1034 mb.mt_count = 1;
1035 if (ioctl(arfd, MTIOCTOP, &mb) < 0) {
1036 syswarn(1, errno, "Unable to backspace over tape filemark.");
1037 return(-1);
1038 }
1039
1040 /*
1041 * move backwards so we are in front of the last record and read it to
1042 * get physical tape blocksize.
1043 */
1044 mb.mt_op = MTBSR;
1045 mb.mt_count = 1;
1046 if (ioctl(arfd, MTIOCTOP, &mb) < 0) {
1047 syswarn(1, errno, "Unable to backspace over last tape block.");
1048 return(-1);
1049 }
1050 if ((phyblk = read(arfd, scbuf, sizeof(scbuf))) <= 0) {
1051 syswarn(1, errno, "Cannot determine archive tape blocksize.");
1052 return(-1);
1053 }
1054
1055 /*
1056 * read forward to the file mark, then back up in front of the filemark
1057 * (this is a bit paranoid, but should be safe to do).
1058 */
1059 while ((res = read(arfd, scbuf, sizeof(scbuf))) > 0)
1060 ;
1061 if (res < 0) {
1062 syswarn(1, errno, "Unable to locate tape filemark.");
1063 return(-1);
1064 }
1065 mb.mt_op = MTBSF;
1066 mb.mt_count = 1;
1067 if (ioctl(arfd, MTIOCTOP, &mb) < 0) {
1068 syswarn(1, errno, "Unable to backspace over tape filemark.");
1069 return(-1);
1070 }
1071
1072 /*
1073 * set lstrval so we know that the filemark has not been seen
1074 */
1075 lstrval = 1;
1076
1077 /*
1078 * return if there was no padding
1079 */
1080 if (padsz == 0)
1081 return(phyblk);
1082
1083 /*
1084 * make sure we can move backwards over the padding. (this should
1085 * never fail).
1086 */
1087 if (padsz % phyblk) {
1088 paxwarn(1, "Tape drive unable to backspace requested amount");
1089 return(-1);
1090 }
1091
1092 /*
1093 * move backwards over the padding so the head is where it was when
1094 * we were first called (if required).
1095 */
1096 mb.mt_op = MTBSR;
1097 mb.mt_count = padsz/phyblk;
1098 if (ioctl(arfd, MTIOCTOP, &mb) < 0) {
1099 syswarn(1,errno,"Unable to backspace tape over %d pad blocks",
1100 mb.mt_count);
1101 return(-1);
1102 }
1103 return(phyblk);
1104 }
1105
1106 /*
1107 * ar_next()
1108 * prompts the user for the next volume in this archive. For some devices
1109 * we may allow the media to be changed. Otherwise a new archive is
1110 * prompted for. By pax spec, if there is no controlling tty or an eof is
1111 * read on tty input, we must quit pax.
1112 * Return:
1113 * 0 when ready to continue, -1 when all done
1114 */
1115
1116 int
1117 ar_next(void)
1118 {
1119 char buf[PAXPATHLEN+2];
1120 static int freeit = 0;
1121 sigset_t o_mask;
1122
1123 /*
1124 * WE MUST CLOSE THE DEVICE. A lot of devices must see last close, (so
1125 * things like writing EOF etc will be done) (Watch out ar_close() can
1126 * also be called via a signal handler, so we must prevent a race.
1127 */
1128 if (sigprocmask(SIG_BLOCK, &s_mask, &o_mask) < 0)
1129 syswarn(0, errno, "Unable to set signal mask");
1130 ar_close();
1131 if (sigprocmask(SIG_SETMASK, &o_mask, NULL) < 0)
1132 syswarn(0, errno, "Unable to restore signal mask");
1133
1134 /* Don't query for new volume if format is unknown */
1135 if (frmt == NULL || done || !wr_trail || force_one_volume || strcmp(NM_TAR, argv0) == 0 ||
1136 strcmp(NM_PAX, argv0) == 0)
1137 return(-1);
1138
1139 tty_prnt("\nATTENTION! %s archive volume change required.\n", argv0);
1140
1141 /*
1142 * if i/o is on stdin or stdout, we cannot reopen it (we do not know
1143 * the name), the user will be forced to type it in.
1144 */
1145 if (strcmp(arcname, STDO) && strcmp(arcname, STDN) && (artyp != ISREG)
1146 && (artyp != ISPIPE)) {
1147 if (artyp == ISTAPE) {
1148 tty_prnt("%s ready for archive tape volume: %d\n",
1149 arcname, arvol);
1150 tty_prnt("Load the NEXT TAPE on the tape drive");
1151 } else {
1152 tty_prnt("%s ready for archive volume: %d\n",
1153 arcname, arvol);
1154 tty_prnt("Load the NEXT STORAGE MEDIA (if required)");
1155 }
1156
1157 if ((act == ARCHIVE) || (act == APPND))
1158 tty_prnt(" and make sure it is WRITE ENABLED.\n");
1159 else
1160 tty_prnt("\n");
1161
1162 for (;;) {
1163 tty_prnt("Type \"y\" to continue, \".\" to quit %s,",
1164 argv0);
1165 tty_prnt(" or \"s\" to switch to new device.\nIf you");
1166 tty_prnt(" cannot change storage media, type \"s\"\n");
1167 tty_prnt("Is the device ready and online? > ");
1168
1169 if ((tty_read(buf,sizeof(buf))<0) || !strcmp(buf,".")){
1170 done = 1;
1171 lstrval = -1;
1172 tty_prnt("Quitting %s!\n", argv0);
1173 vfpart = 0;
1174 return(-1);
1175 }
1176
1177 if ((buf[0] == '\0') || (buf[1] != '\0')) {
1178 tty_prnt("%s unknown command, try again\n",buf);
1179 continue;
1180 }
1181
1182 switch (buf[0]) {
1183 case 'y':
1184 case 'Y':
1185 /*
1186 * we are to continue with the same device
1187 */
1188 if (ar_open(arcname) >= 0)
1189 return(0);
1190 tty_prnt("Cannot re-open %s, try again\n",
1191 arcname);
1192 continue;
1193 case 's':
1194 case 'S':
1195 /*
1196 * user wants to open a different device
1197 */
1198 tty_prnt("Switching to a different archive\n");
1199 break;
1200 default:
1201 tty_prnt("%s unknown command, try again\n",buf);
1202 continue;
1203 }
1204 break;
1205 }
1206 } else
1207 tty_prnt("Ready for archive volume: %d\n", arvol);
1208
1209 /*
1210 * have to go to a different archive
1211 */
1212 for (;;) {
1213 tty_prnt("Input archive name or \".\" to quit %s.\n", argv0);
1214 tty_prnt("Archive name > ");
1215
1216 if ((tty_read(buf, sizeof(buf)) < 0) || !strcmp(buf, ".")) {
1217 done = 1;
1218 lstrval = -1;
1219 tty_prnt("Quitting %s!\n", argv0);
1220 vfpart = 0;
1221 return(-1);
1222 }
1223 if (buf[0] == '\0') {
1224 tty_prnt("Empty file name, try again\n");
1225 continue;
1226 }
1227 if (!strcmp(buf, "..")) {
1228 tty_prnt("Illegal file name: .. try again\n");
1229 continue;
1230 }
1231 if (strlen(buf) > PAXPATHLEN) {
1232 tty_prnt("File name too long, try again\n");
1233 continue;
1234 }
1235
1236 /*
1237 * try to open new archive
1238 */
1239 if (ar_open(buf) >= 0) {
1240 if (freeit) {
1241 (void)free((char *)arcname);
1242 freeit = 0;
1243 }
1244 if ((arcname = strdup(buf)) == NULL) {
1245 done = 1;
1246 lstrval = -1;
1247 paxwarn(0, "Cannot save archive name.");
1248 return(-1);
1249 }
1250 freeit = 1;
1251 break;
1252 }
1253 tty_prnt("Cannot open %s, try again\n", buf);
1254 continue;
1255 }
1256 return(0);
1257 }
1258
1259 /*
1260 * ar_start_gzip()
1261 * starts the gzip compression/decompression process as a child, using magic
1262 * to keep the fd the same in the calling function (parent).
1263 */
1264 void
1265 ar_start_gzip(int fd, const char *gzip_program, int wr)
1266 {
1267 int fds[2];
1268 const char *gzip_flags = NULL;
1269
1270 if (pipe(fds) < 0)
1271 err(1, "could not pipe");
1272 zpid = fork();
1273 if (zpid < 0)
1274 err(1, "could not fork");
1275
1276 /* parent */
1277 if (zpid) {
1278 if (wr)
1279 dup2(fds[1], fd);
1280 else
1281 dup2(fds[0], fd);
1282 close(fds[0]);
1283 close(fds[1]);
1284 } else {
1285 if (wr) {
1286 dup2(fds[0], STDIN_FILENO);
1287 dup2(fd, STDOUT_FILENO);
1288 gzip_flags = "-c";
1289 } else {
1290 dup2(fds[1], STDOUT_FILENO);
1291 dup2(fd, STDIN_FILENO);
1292 gzip_flags = "-dc";
1293 }
1294 close(fds[0]);
1295 close(fds[1]);
1296 if (execlp(gzip_program, gzip_program, gzip_flags, (char *)NULL) < 0)
1297 err(1, "could not exec");
1298 /* NOTREACHED */
1299 }
1300 }