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