]> Dogcows Code - chaz/tar/blob - src/buffer.c
Bugfix.
[chaz/tar] / src / buffer.c
1 /* Buffer management for tar.
2
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1999, 2000, 2001,
4 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5
6 Written by John Gilmore, on 1985-08-25.
7
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 Public License for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
21
22 #include <system.h>
23 #include <system-ioctl.h>
24
25 #include <signal.h>
26
27 #include <closeout.h>
28 #include <fnmatch.h>
29 #include <human.h>
30 #include <quotearg.h>
31
32 #include "common.h"
33 #include <rmt.h>
34
35 /* Number of retries before giving up on read. */
36 #define READ_ERROR_MAX 10
37
38 /* Globbing pattern to append to volume label if initial match failed. */
39 #define VOLUME_LABEL_APPEND " Volume [1-9]*"
40
41 /* Variables. */
42
43 static tarlong prev_written; /* bytes written on previous volumes */
44 static tarlong bytes_written; /* bytes written on this volume */
45 static void *record_buffer[2]; /* allocated memory */
46 union block *record_buffer_aligned[2];
47 static int record_index;
48
49 /* FIXME: The following variables should ideally be static to this
50 module. However, this cannot be done yet. The cleanup continues! */
51
52 union block *record_start; /* start of record of archive */
53 union block *record_end; /* last+1 block of archive record */
54 union block *current_block; /* current block of archive */
55 enum access_mode access_mode; /* how do we handle the archive */
56 off_t records_read; /* number of records read from this archive */
57 off_t records_written; /* likewise, for records written */
58 extern off_t records_skipped; /* number of records skipped at the start
59 of the archive, defined in delete.c */
60
61 static off_t record_start_block; /* block ordinal at record_start */
62
63 /* Where we write list messages (not errors, not interactions) to. */
64 FILE *stdlis;
65
66 static void backspace_output (void);
67
68 /* PID of child program, if compress_option or remote archive access. */
69 static pid_t child_pid;
70
71 /* Error recovery stuff */
72 static int read_error_count;
73
74 /* Have we hit EOF yet? */
75 static bool hit_eof;
76
77 static bool read_full_records = false;
78
79 /* We're reading, but we just read the last block and it's time to update.
80 Declared in update.c
81
82 As least EXTERN like this one as possible. (?? --gray)
83 FIXME: Either eliminate it or move it to common.h.
84 */
85 extern bool time_to_start_writing;
86
87 bool write_archive_to_stdout;
88
89 void (*flush_write_ptr) (size_t);
90 void (*flush_read_ptr) (void);
91
92 \f
93 char *volume_label;
94 char *continued_file_name;
95 uintmax_t continued_file_size;
96 uintmax_t continued_file_offset;
97
98 \f
99 static int volno = 1; /* which volume of a multi-volume tape we're
100 on */
101 static int global_volno = 1; /* volume number to print in external
102 messages */
103
104 bool write_archive_to_stdout;
105
106 /* Used by flush_read and flush_write to store the real info about saved
107 names. */
108 static char *real_s_name;
109 static off_t real_s_totsize;
110 static off_t real_s_sizeleft;
111
112 \f
113 /* Multi-volume tracking support */
114 static char *save_name; /* name of the file we are currently writing */
115 static off_t save_totsize; /* total size of file we are writing, only
116 valid if save_name is nonzero */
117 static off_t save_sizeleft; /* where we are in the file we are writing,
118 only valid if save_name is nonzero */
119
120 \f
121 static struct tar_stat_info dummy;
122
123 void
124 buffer_write_global_xheader ()
125 {
126 xheader_write_global (&dummy.xhdr);
127 }
128
129 void
130 mv_begin (struct tar_stat_info *st)
131 {
132 if (multi_volume_option)
133 {
134 assign_string (&save_name, st->orig_file_name);
135 save_totsize = save_sizeleft = st->stat.st_size;
136 }
137 }
138
139 void
140 mv_end ()
141 {
142 if (multi_volume_option)
143 assign_string (&save_name, 0);
144 }
145
146 void
147 mv_total_size (off_t size)
148 {
149 save_totsize = size;
150 }
151
152 void
153 mv_size_left (off_t size)
154 {
155 save_sizeleft = size;
156 }
157
158 \f
159 /* Functions. */
160
161 void
162 clear_read_error_count (void)
163 {
164 read_error_count = 0;
165 }
166
167 \f
168 /* Time-related functions */
169
170 double duration;
171
172 void
173 set_start_time ()
174 {
175 gettime (&start_time);
176 volume_start_time = start_time;
177 last_stat_time = start_time;
178 }
179
180 void
181 set_volume_start_time ()
182 {
183 gettime (&volume_start_time);
184 last_stat_time = volume_start_time;
185 }
186
187 void
188 compute_duration ()
189 {
190 struct timespec now;
191 gettime (&now);
192 duration += ((now.tv_sec - last_stat_time.tv_sec)
193 + (now.tv_nsec - last_stat_time.tv_nsec) / 1e9);
194 gettime (&last_stat_time);
195 }
196
197 \f
198 /* Compression detection */
199
200 enum compress_type {
201 ct_tar, /* Plain tar file */
202 ct_none, /* Unknown compression type */
203 ct_compress,
204 ct_gzip,
205 ct_bzip2,
206 ct_lzma,
207 ct_lzop,
208 ct_xz
209 };
210
211 struct zip_magic
212 {
213 enum compress_type type;
214 size_t length;
215 char *magic;
216 char *program;
217 char *option;
218 };
219
220 static struct zip_magic const magic[] = {
221 { ct_tar },
222 { ct_none, },
223 { ct_compress, 2, "\037\235", COMPRESS_PROGRAM, "-Z" },
224 { ct_gzip, 2, "\037\213", GZIP_PROGRAM, "-z" },
225 { ct_bzip2, 3, "BZh", BZIP2_PROGRAM, "-j" },
226 { ct_lzma, 6, "\xFFLZMA", LZMA_PROGRAM, "--lzma" },
227 { ct_lzop, 4, "\211LZO", LZOP_PROGRAM, "--lzop" },
228 { ct_xz, 6, "\0xFD7zXZ", XZ_PROGRAM, "-J" },
229 };
230
231 #define NMAGIC (sizeof(magic)/sizeof(magic[0]))
232
233 #define compress_option(t) magic[t].option
234 #define compress_program(t) magic[t].program
235
236 /* Check if the file ARCHIVE is a compressed archive. */
237 enum compress_type
238 check_compressed_archive (bool *pshort)
239 {
240 struct zip_magic const *p;
241 bool sfr;
242 bool temp;
243
244 if (!pshort)
245 pshort = &temp;
246
247 /* Prepare global data needed for find_next_block: */
248 record_end = record_start; /* set up for 1st record = # 0 */
249 sfr = read_full_records;
250 read_full_records = true; /* Suppress fatal error on reading a partial
251 record */
252 *pshort = find_next_block () == 0;
253
254 /* Restore global values */
255 read_full_records = sfr;
256
257 if (tar_checksum (record_start, true) == HEADER_SUCCESS)
258 /* Probably a valid header */
259 return ct_tar;
260
261 for (p = magic + 2; p < magic + NMAGIC; p++)
262 if (memcmp (record_start->buffer, p->magic, p->length) == 0)
263 return p->type;
264
265 return ct_none;
266 }
267
268 /* Guess if the archive is seekable. */
269 static void
270 guess_seekable_archive ()
271 {
272 struct stat st;
273
274 if (subcommand_option == DELETE_SUBCOMMAND)
275 {
276 /* The current code in delete.c is based on the assumption that
277 skip_member() reads all data from the archive. So, we should
278 make sure it won't use seeks. On the other hand, the same code
279 depends on the ability to backspace a record in the archive,
280 so setting seekable_archive to false is technically incorrect.
281 However, it is tested only in skip_member(), so it's not a
282 problem. */
283 seekable_archive = false;
284 }
285
286 if (seek_option != -1)
287 {
288 seekable_archive = !!seek_option;
289 return;
290 }
291
292 if (!multi_volume_option && !use_compress_program_option
293 && fstat (archive, &st) == 0)
294 seekable_archive = S_ISREG (st.st_mode);
295 else
296 seekable_archive = false;
297 }
298
299 /* Open an archive named archive_name_array[0]. Detect if it is
300 a compressed archive of known type and use corresponding decompression
301 program if so */
302 int
303 open_compressed_archive ()
304 {
305 archive = rmtopen (archive_name_array[0], O_RDONLY | O_BINARY,
306 MODE_RW, rsh_command_option);
307 if (archive == -1)
308 return archive;
309
310 if (!multi_volume_option)
311 {
312 if (!use_compress_program_option)
313 {
314 bool shortfile;
315 enum compress_type type = check_compressed_archive (&shortfile);
316
317 switch (type)
318 {
319 case ct_tar:
320 if (shortfile)
321 ERROR ((0, 0, _("This does not look like a tar archive")));
322 return archive;
323
324 case ct_none:
325 if (shortfile)
326 ERROR ((0, 0, _("This does not look like a tar archive")));
327 set_comression_program_by_suffix (archive_name_array[0], NULL);
328 if (!use_compress_program_option)
329 return archive;
330 break;
331
332 default:
333 use_compress_program_option = compress_program (type);
334 break;
335 }
336 }
337
338 /* FD is not needed any more */
339 rmtclose (archive);
340
341 hit_eof = false; /* It might have been set by find_next_block in
342 check_compressed_archive */
343
344 /* Open compressed archive */
345 child_pid = sys_child_open_for_uncompress ();
346 read_full_records = true;
347 }
348
349 records_read = 0;
350 record_end = record_start; /* set up for 1st record = # 0 */
351
352 return archive;
353 }
354 \f
355
356 static void
357 print_stats (FILE *fp, const char *text, tarlong numbytes)
358 {
359 char bytes[sizeof (tarlong) * CHAR_BIT];
360 char abbr[LONGEST_HUMAN_READABLE + 1];
361 char rate[LONGEST_HUMAN_READABLE + 1];
362
363 int human_opts = human_autoscale | human_base_1024 | human_SI | human_B;
364
365 sprintf (bytes, TARLONG_FORMAT, numbytes);
366
367 fprintf (fp, "%s: %s (%s, %s/s)\n",
368 text, bytes,
369 human_readable (numbytes, abbr, human_opts, 1, 1),
370 (0 < duration && numbytes / duration < (uintmax_t) -1
371 ? human_readable (numbytes / duration, rate, human_opts, 1, 1)
372 : "?"));
373 }
374
375 void
376 print_total_stats ()
377 {
378 switch (subcommand_option)
379 {
380 case CREATE_SUBCOMMAND:
381 case CAT_SUBCOMMAND:
382 case UPDATE_SUBCOMMAND:
383 case APPEND_SUBCOMMAND:
384 /* Amanda 2.4.1p1 looks for "Total bytes written: [0-9][0-9]*". */
385 print_stats (stderr, _("Total bytes written"),
386 prev_written + bytes_written);
387 break;
388
389 case DELETE_SUBCOMMAND:
390 {
391 char buf[UINTMAX_STRSIZE_BOUND];
392 print_stats (stderr, _("Total bytes read"),
393 records_read * record_size);
394 print_stats (stderr, _("Total bytes written"),
395 prev_written + bytes_written);
396 fprintf (stderr, _("Total bytes deleted: %s\n"),
397 STRINGIFY_BIGINT ((records_read - records_skipped)
398 * record_size
399 - (prev_written + bytes_written), buf));
400 }
401 break;
402
403 case EXTRACT_SUBCOMMAND:
404 case LIST_SUBCOMMAND:
405 case DIFF_SUBCOMMAND:
406 print_stats (stderr, _("Total bytes read"),
407 records_read * record_size);
408 break;
409
410 default:
411 abort ();
412 }
413 }
414
415 /* Compute and return the block ordinal at current_block. */
416 off_t
417 current_block_ordinal (void)
418 {
419 return record_start_block + (current_block - record_start);
420 }
421
422 /* If the EOF flag is set, reset it, as well as current_block, etc. */
423 void
424 reset_eof (void)
425 {
426 if (hit_eof)
427 {
428 hit_eof = false;
429 current_block = record_start;
430 record_end = record_start + blocking_factor;
431 access_mode = ACCESS_WRITE;
432 }
433 }
434
435 /* Return the location of the next available input or output block.
436 Return zero for EOF. Once we have returned zero, we just keep returning
437 it, to avoid accidentally going on to the next file on the tape. */
438 union block *
439 find_next_block (void)
440 {
441 if (current_block == record_end)
442 {
443 if (hit_eof)
444 return 0;
445 flush_archive ();
446 if (current_block == record_end)
447 {
448 hit_eof = true;
449 return 0;
450 }
451 }
452 return current_block;
453 }
454
455 /* Indicate that we have used all blocks up thru BLOCK. */
456 void
457 set_next_block_after (union block *block)
458 {
459 while (block >= current_block)
460 current_block++;
461
462 /* Do *not* flush the archive here. If we do, the same argument to
463 set_next_block_after could mean the next block (if the input record
464 is exactly one block long), which is not what is intended. */
465
466 if (current_block > record_end)
467 abort ();
468 }
469
470 /* Return the number of bytes comprising the space between POINTER
471 through the end of the current buffer of blocks. This space is
472 available for filling with data, or taking data from. POINTER is
473 usually (but not always) the result of previous find_next_block call. */
474 size_t
475 available_space_after (union block *pointer)
476 {
477 return record_end->buffer - pointer->buffer;
478 }
479
480 /* Close file having descriptor FD, and abort if close unsuccessful. */
481 void
482 xclose (int fd)
483 {
484 if (close (fd) != 0)
485 close_error (_("(pipe)"));
486 }
487
488 static void
489 init_buffer ()
490 {
491 if (! record_buffer_aligned[record_index])
492 record_buffer_aligned[record_index] =
493 page_aligned_alloc (&record_buffer[record_index], record_size);
494
495 record_start = record_buffer_aligned[record_index];
496 current_block = record_start;
497 record_end = record_start + blocking_factor;
498 }
499
500 /* Open an archive file. The argument specifies whether we are
501 reading or writing, or both. */
502 static void
503 _open_archive (enum access_mode wanted_access)
504 {
505 int backed_up_flag = 0;
506
507 if (record_size == 0)
508 FATAL_ERROR ((0, 0, _("Invalid value for record_size")));
509
510 if (archive_names == 0)
511 FATAL_ERROR ((0, 0, _("No archive name given")));
512
513 tar_stat_destroy (&current_stat_info);
514 save_name = 0;
515 real_s_name = 0;
516
517 record_index = 0;
518 init_buffer ();
519
520 /* When updating the archive, we start with reading. */
521 access_mode = wanted_access == ACCESS_UPDATE ? ACCESS_READ : wanted_access;
522
523 read_full_records = read_full_records_option;
524
525 records_read = 0;
526
527 if (use_compress_program_option)
528 {
529 switch (wanted_access)
530 {
531 case ACCESS_READ:
532 child_pid = sys_child_open_for_uncompress ();
533 read_full_records = true;
534 record_end = record_start; /* set up for 1st record = # 0 */
535 break;
536
537 case ACCESS_WRITE:
538 child_pid = sys_child_open_for_compress ();
539 break;
540
541 case ACCESS_UPDATE:
542 abort (); /* Should not happen */
543 break;
544 }
545
546 if (!index_file_name
547 && wanted_access == ACCESS_WRITE
548 && strcmp (archive_name_array[0], "-") == 0)
549 stdlis = stderr;
550 }
551 else if (strcmp (archive_name_array[0], "-") == 0)
552 {
553 read_full_records = true; /* could be a pipe, be safe */
554 if (verify_option)
555 FATAL_ERROR ((0, 0, _("Cannot verify stdin/stdout archive")));
556
557 switch (wanted_access)
558 {
559 case ACCESS_READ:
560 {
561 bool shortfile;
562 enum compress_type type;
563
564 archive = STDIN_FILENO;
565
566 type = check_compressed_archive (&shortfile);
567 if (type != ct_tar && type != ct_none)
568 FATAL_ERROR ((0, 0,
569 _("Archive is compressed. Use %s option"),
570 compress_option (type)));
571 if (shortfile)
572 ERROR ((0, 0, _("This does not look like a tar archive")));
573 }
574 break;
575
576 case ACCESS_WRITE:
577 archive = STDOUT_FILENO;
578 if (!index_file_name)
579 stdlis = stderr;
580 break;
581
582 case ACCESS_UPDATE:
583 archive = STDIN_FILENO;
584 write_archive_to_stdout = true;
585 record_end = record_start; /* set up for 1st record = # 0 */
586 if (!index_file_name)
587 stdlis = stderr;
588 break;
589 }
590 }
591 else if (verify_option)
592 archive = rmtopen (archive_name_array[0], O_RDWR | O_CREAT | O_BINARY,
593 MODE_RW, rsh_command_option);
594 else
595 switch (wanted_access)
596 {
597 case ACCESS_READ:
598 archive = open_compressed_archive ();
599 if (archive >= 0)
600 guess_seekable_archive ();
601 break;
602
603 case ACCESS_WRITE:
604 if (backup_option)
605 {
606 maybe_backup_file (archive_name_array[0], 1);
607 backed_up_flag = 1;
608 }
609 archive = rmtcreat (archive_name_array[0], MODE_RW,
610 rsh_command_option);
611 break;
612
613 case ACCESS_UPDATE:
614 archive = rmtopen (archive_name_array[0],
615 O_RDWR | O_CREAT | O_BINARY,
616 MODE_RW, rsh_command_option);
617
618 switch (check_compressed_archive (NULL))
619 {
620 case ct_none:
621 case ct_tar:
622 break;
623
624 default:
625 FATAL_ERROR ((0, 0,
626 _("Cannot update compressed archives")));
627 }
628 break;
629 }
630
631 if (archive < 0
632 || (! _isrmt (archive) && !sys_get_archive_stat ()))
633 {
634 int saved_errno = errno;
635
636 if (backed_up_flag)
637 undo_last_backup ();
638 errno = saved_errno;
639 open_fatal (archive_name_array[0]);
640 }
641
642 sys_detect_dev_null_output ();
643 sys_save_archive_dev_ino ();
644 SET_BINARY_MODE (archive);
645
646 switch (wanted_access)
647 {
648 case ACCESS_READ:
649 find_next_block (); /* read it in, check for EOF */
650 break;
651
652 case ACCESS_UPDATE:
653 case ACCESS_WRITE:
654 records_written = 0;
655 break;
656 }
657 }
658
659 /* Perform a write to flush the buffer. */
660 ssize_t
661 _flush_write (void)
662 {
663 ssize_t status;
664
665 checkpoint_run (true);
666 if (tape_length_option && tape_length_option <= bytes_written)
667 {
668 errno = ENOSPC;
669 status = 0;
670 }
671 else if (dev_null_output)
672 status = record_size;
673 else
674 status = sys_write_archive_buffer ();
675
676 return status;
677 }
678
679 /* Handle write errors on the archive. Write errors are always fatal.
680 Hitting the end of a volume does not cause a write error unless the
681 write was the first record of the volume. */
682 void
683 archive_write_error (ssize_t status)
684 {
685 /* It might be useful to know how much was written before the error
686 occurred. */
687 if (totals_option)
688 {
689 int e = errno;
690 print_total_stats ();
691 errno = e;
692 }
693
694 write_fatal_details (*archive_name_cursor, status, record_size);
695 }
696
697 /* Handle read errors on the archive. If the read should be retried,
698 return to the caller. */
699 void
700 archive_read_error (void)
701 {
702 read_error (*archive_name_cursor);
703
704 if (record_start_block == 0)
705 FATAL_ERROR ((0, 0, _("At beginning of tape, quitting now")));
706
707 /* Read error in mid archive. We retry up to READ_ERROR_MAX times and
708 then give up on reading the archive. */
709
710 if (read_error_count++ > READ_ERROR_MAX)
711 FATAL_ERROR ((0, 0, _("Too many errors, quitting")));
712 return;
713 }
714
715 static bool
716 archive_is_dev ()
717 {
718 struct stat st;
719
720 if (fstat (archive, &st))
721 {
722 stat_diag (*archive_name_cursor);
723 return false;
724 }
725 return S_ISBLK (st.st_mode) || S_ISCHR (st.st_mode);
726 }
727
728 static void
729 short_read (size_t status)
730 {
731 size_t left; /* bytes left */
732 char *more; /* pointer to next byte to read */
733
734 more = record_start->buffer + status;
735 left = record_size - status;
736
737 if (left && left % BLOCKSIZE == 0
738 && verbose_option
739 && record_start_block == 0 && status != 0
740 && archive_is_dev ())
741 {
742 unsigned long rsize = status / BLOCKSIZE;
743 WARN ((0, 0,
744 ngettext ("Record size = %lu block",
745 "Record size = %lu blocks",
746 rsize),
747 rsize));
748 }
749
750 while (left % BLOCKSIZE != 0
751 || (left && status && read_full_records))
752 {
753 if (status)
754 while ((status = rmtread (archive, more, left)) == SAFE_READ_ERROR)
755 archive_read_error ();
756
757 if (status == 0)
758 break;
759
760 if (! read_full_records)
761 {
762 unsigned long rest = record_size - left;
763
764 FATAL_ERROR ((0, 0,
765 ngettext ("Unaligned block (%lu byte) in archive",
766 "Unaligned block (%lu bytes) in archive",
767 rest),
768 rest));
769 }
770
771 left -= status;
772 more += status;
773 }
774
775 record_end = record_start + (record_size - left) / BLOCKSIZE;
776 records_read++;
777 }
778
779 /* Flush the current buffer to/from the archive. */
780 void
781 flush_archive (void)
782 {
783 size_t buffer_level = current_block->buffer - record_start->buffer;
784 record_start_block += record_end - record_start;
785 current_block = record_start;
786 record_end = record_start + blocking_factor;
787
788 if (access_mode == ACCESS_READ && time_to_start_writing)
789 {
790 access_mode = ACCESS_WRITE;
791 time_to_start_writing = false;
792 backspace_output ();
793 }
794
795 switch (access_mode)
796 {
797 case ACCESS_READ:
798 flush_read ();
799 break;
800
801 case ACCESS_WRITE:
802 flush_write_ptr (buffer_level);
803 break;
804
805 case ACCESS_UPDATE:
806 abort ();
807 }
808 }
809
810 /* Backspace the archive descriptor by one record worth. If it's a
811 tape, MTIOCTOP will work. If it's something else, try to seek on
812 it. If we can't seek, we lose! */
813 static void
814 backspace_output (void)
815 {
816 #ifdef MTIOCTOP
817 {
818 struct mtop operation;
819
820 operation.mt_op = MTBSR;
821 operation.mt_count = 1;
822 if (rmtioctl (archive, MTIOCTOP, (char *) &operation) >= 0)
823 return;
824 if (errno == EIO && rmtioctl (archive, MTIOCTOP, (char *) &operation) >= 0)
825 return;
826 }
827 #endif
828
829 {
830 off_t position = rmtlseek (archive, (off_t) 0, SEEK_CUR);
831
832 /* Seek back to the beginning of this record and start writing there. */
833
834 position -= record_size;
835 if (position < 0)
836 position = 0;
837 if (rmtlseek (archive, position, SEEK_SET) != position)
838 {
839 /* Lseek failed. Try a different method. */
840
841 WARN ((0, 0,
842 _("Cannot backspace archive file; it may be unreadable without -i")));
843
844 /* Replace the first part of the record with NULs. */
845
846 if (record_start->buffer != output_start)
847 memset (record_start->buffer, 0,
848 output_start - record_start->buffer);
849 }
850 }
851 }
852
853 off_t
854 seek_archive (off_t size)
855 {
856 off_t start = current_block_ordinal ();
857 off_t offset;
858 off_t nrec, nblk;
859 off_t skipped = (blocking_factor - (current_block - record_start));
860
861 size -= skipped * BLOCKSIZE;
862
863 if (size < record_size)
864 return 0;
865 /* FIXME: flush? */
866
867 /* Compute number of records to skip */
868 nrec = size / record_size;
869 offset = rmtlseek (archive, nrec * record_size, SEEK_CUR);
870 if (offset < 0)
871 return offset;
872
873 if (offset % record_size)
874 FATAL_ERROR ((0, 0, _("rmtlseek not stopped at a record boundary")));
875
876 /* Convert to number of records */
877 offset /= BLOCKSIZE;
878 /* Compute number of skipped blocks */
879 nblk = offset - start;
880
881 /* Update buffering info */
882 records_read += nblk / blocking_factor;
883 record_start_block = offset - blocking_factor;
884 current_block = record_end;
885
886 return nblk;
887 }
888
889 /* Close the archive file. */
890 void
891 close_archive (void)
892 {
893 if (time_to_start_writing || access_mode == ACCESS_WRITE)
894 {
895 flush_archive ();
896 if (current_block > record_start)
897 flush_archive ();
898 }
899
900 compute_duration ();
901 if (verify_option)
902 verify_volume ();
903
904 if (rmtclose (archive) != 0)
905 close_error (*archive_name_cursor);
906
907 sys_wait_for_child (child_pid, hit_eof);
908
909 tar_stat_destroy (&current_stat_info);
910 if (save_name)
911 free (save_name);
912 if (real_s_name)
913 free (real_s_name);
914 free (record_buffer[0]);
915 free (record_buffer[1]);
916 }
917
918 /* Called to initialize the global volume number. */
919 void
920 init_volume_number (void)
921 {
922 FILE *file = fopen (volno_file_option, "r");
923
924 if (file)
925 {
926 if (fscanf (file, "%d", &global_volno) != 1
927 || global_volno < 0)
928 FATAL_ERROR ((0, 0, _("%s: contains invalid volume number"),
929 quotearg_colon (volno_file_option)));
930 if (ferror (file))
931 read_error (volno_file_option);
932 if (fclose (file) != 0)
933 close_error (volno_file_option);
934 }
935 else if (errno != ENOENT)
936 open_error (volno_file_option);
937 }
938
939 /* Called to write out the closing global volume number. */
940 void
941 closeout_volume_number (void)
942 {
943 FILE *file = fopen (volno_file_option, "w");
944
945 if (file)
946 {
947 fprintf (file, "%d\n", global_volno);
948 if (ferror (file))
949 write_error (volno_file_option);
950 if (fclose (file) != 0)
951 close_error (volno_file_option);
952 }
953 else
954 open_error (volno_file_option);
955 }
956
957 \f
958 static void
959 increase_volume_number ()
960 {
961 global_volno++;
962 if (global_volno < 0)
963 FATAL_ERROR ((0, 0, _("Volume number overflow")));
964 volno++;
965 }
966
967 void
968 change_tape_menu (FILE *read_file)
969 {
970 char *input_buffer = NULL;
971 size_t size = 0;
972 bool stop = false;
973
974 while (!stop)
975 {
976 fputc ('\007', stderr);
977 fprintf (stderr,
978 _("Prepare volume #%d for %s and hit return: "),
979 global_volno + 1, quote (*archive_name_cursor));
980 fflush (stderr);
981
982 if (getline (&input_buffer, &size, read_file) <= 0)
983 {
984 WARN ((0, 0, _("EOF where user reply was expected")));
985
986 if (subcommand_option != EXTRACT_SUBCOMMAND
987 && subcommand_option != LIST_SUBCOMMAND
988 && subcommand_option != DIFF_SUBCOMMAND)
989 WARN ((0, 0, _("WARNING: Archive is incomplete")));
990
991 fatal_exit ();
992 }
993
994 if (input_buffer[0] == '\n'
995 || input_buffer[0] == 'y'
996 || input_buffer[0] == 'Y')
997 break;
998
999 switch (input_buffer[0])
1000 {
1001 case '?':
1002 {
1003 fprintf (stderr, _("\
1004 n name Give a new file name for the next (and subsequent) volume(s)\n\
1005 q Abort tar\n\
1006 y or newline Continue operation\n"));
1007 if (!restrict_option)
1008 fprintf (stderr, _(" ! Spawn a subshell\n"));
1009 fprintf (stderr, _(" ? Print this list\n"));
1010 }
1011 break;
1012
1013 case 'q':
1014 /* Quit. */
1015
1016 WARN ((0, 0, _("No new volume; exiting.\n")));
1017
1018 if (subcommand_option != EXTRACT_SUBCOMMAND
1019 && subcommand_option != LIST_SUBCOMMAND
1020 && subcommand_option != DIFF_SUBCOMMAND)
1021 WARN ((0, 0, _("WARNING: Archive is incomplete")));
1022
1023 fatal_exit ();
1024
1025 case 'n':
1026 /* Get new file name. */
1027
1028 {
1029 char *name;
1030 char *cursor;
1031
1032 for (name = input_buffer + 1;
1033 *name == ' ' || *name == '\t';
1034 name++)
1035 ;
1036
1037 for (cursor = name; *cursor && *cursor != '\n'; cursor++)
1038 ;
1039 *cursor = '\0';
1040
1041 if (name[0])
1042 {
1043 /* FIXME: the following allocation is never reclaimed. */
1044 *archive_name_cursor = xstrdup (name);
1045 stop = true;
1046 }
1047 else
1048 fprintf (stderr, "%s",
1049 _("File name not specified. Try again.\n"));
1050 }
1051 break;
1052
1053 case '!':
1054 if (!restrict_option)
1055 {
1056 sys_spawn_shell ();
1057 break;
1058 }
1059 /* FALL THROUGH */
1060
1061 default:
1062 fprintf (stderr, _("Invalid input. Type ? for help.\n"));
1063 }
1064 }
1065 free (input_buffer);
1066 }
1067
1068 /* We've hit the end of the old volume. Close it and open the next one.
1069 Return nonzero on success.
1070 */
1071 static bool
1072 new_volume (enum access_mode mode)
1073 {
1074 static FILE *read_file;
1075 static int looped;
1076 int prompt;
1077
1078 if (!read_file && !info_script_option)
1079 /* FIXME: if fopen is used, it will never be closed. */
1080 read_file = archive == STDIN_FILENO ? fopen (TTY_NAME, "r") : stdin;
1081
1082 if (now_verifying)
1083 return false;
1084 if (verify_option)
1085 verify_volume ();
1086
1087 assign_string (&volume_label, NULL);
1088 assign_string (&continued_file_name, NULL);
1089 continued_file_size = continued_file_offset = 0;
1090 current_block = record_start;
1091
1092 if (rmtclose (archive) != 0)
1093 close_error (*archive_name_cursor);
1094
1095 archive_name_cursor++;
1096 if (archive_name_cursor == archive_name_array + archive_names)
1097 {
1098 archive_name_cursor = archive_name_array;
1099 looped = 1;
1100 }
1101 prompt = looped;
1102
1103 tryagain:
1104 if (prompt)
1105 {
1106 /* We have to prompt from now on. */
1107
1108 if (info_script_option)
1109 {
1110 if (volno_file_option)
1111 closeout_volume_number ();
1112 if (sys_exec_info_script (archive_name_cursor, global_volno+1))
1113 FATAL_ERROR ((0, 0, _("%s command failed"),
1114 quote (info_script_option)));
1115 }
1116 else
1117 change_tape_menu (read_file);
1118 }
1119
1120 if (strcmp (archive_name_cursor[0], "-") == 0)
1121 {
1122 read_full_records = true;
1123 archive = STDIN_FILENO;
1124 }
1125 else if (verify_option)
1126 archive = rmtopen (*archive_name_cursor, O_RDWR | O_CREAT, MODE_RW,
1127 rsh_command_option);
1128 else
1129 switch (mode)
1130 {
1131 case ACCESS_READ:
1132 archive = rmtopen (*archive_name_cursor, O_RDONLY, MODE_RW,
1133 rsh_command_option);
1134 guess_seekable_archive ();
1135 break;
1136
1137 case ACCESS_WRITE:
1138 if (backup_option)
1139 maybe_backup_file (*archive_name_cursor, 1);
1140 archive = rmtcreat (*archive_name_cursor, MODE_RW,
1141 rsh_command_option);
1142 break;
1143
1144 case ACCESS_UPDATE:
1145 archive = rmtopen (*archive_name_cursor, O_RDWR | O_CREAT, MODE_RW,
1146 rsh_command_option);
1147 break;
1148 }
1149
1150 if (archive < 0)
1151 {
1152 open_warn (*archive_name_cursor);
1153 if (!verify_option && mode == ACCESS_WRITE && backup_option)
1154 undo_last_backup ();
1155 prompt = 1;
1156 goto tryagain;
1157 }
1158
1159 SET_BINARY_MODE (archive);
1160
1161 return true;
1162 }
1163
1164 static bool
1165 read_header0 (struct tar_stat_info *info)
1166 {
1167 enum read_header rc;
1168
1169 tar_stat_init (info);
1170 rc = read_header_primitive (false, info);
1171 if (rc == HEADER_SUCCESS)
1172 {
1173 set_next_block_after (current_header);
1174 return true;
1175 }
1176 ERROR ((0, 0, _("This does not look like a tar archive")));
1177 return false;
1178 }
1179
1180 bool
1181 try_new_volume ()
1182 {
1183 size_t status;
1184 union block *header;
1185 enum access_mode acc;
1186
1187 switch (subcommand_option)
1188 {
1189 case APPEND_SUBCOMMAND:
1190 case CAT_SUBCOMMAND:
1191 case UPDATE_SUBCOMMAND:
1192 acc = ACCESS_UPDATE;
1193 break;
1194
1195 default:
1196 acc = ACCESS_READ;
1197 break;
1198 }
1199
1200 if (!new_volume (acc))
1201 return true;
1202
1203 while ((status = rmtread (archive, record_start->buffer, record_size))
1204 == SAFE_READ_ERROR)
1205 archive_read_error ();
1206
1207 if (status != record_size)
1208 short_read (status);
1209
1210 header = find_next_block ();
1211 if (!header)
1212 return false;
1213
1214 switch (header->header.typeflag)
1215 {
1216 case XGLTYPE:
1217 {
1218 if (!read_header0 (&dummy))
1219 return false;
1220 xheader_decode (&dummy); /* decodes values from the global header */
1221 tar_stat_destroy (&dummy);
1222 if (!real_s_name)
1223 {
1224 /* We have read the extended header of the first member in
1225 this volume. Put it back, so next read_header works as
1226 expected. */
1227 current_block = record_start;
1228 }
1229 break;
1230 }
1231
1232 case GNUTYPE_VOLHDR:
1233 if (!read_header0 (&dummy))
1234 return false;
1235 tar_stat_destroy (&dummy);
1236 assign_string (&volume_label, current_header->header.name);
1237 set_next_block_after (header);
1238 header = find_next_block ();
1239 if (header->header.typeflag != GNUTYPE_MULTIVOL)
1240 break;
1241 /* FALL THROUGH */
1242
1243 case GNUTYPE_MULTIVOL:
1244 if (!read_header0 (&dummy))
1245 return false;
1246 tar_stat_destroy (&dummy);
1247 assign_string (&continued_file_name, current_header->header.name);
1248 continued_file_size =
1249 UINTMAX_FROM_HEADER (current_header->header.size);
1250 continued_file_offset =
1251 UINTMAX_FROM_HEADER (current_header->oldgnu_header.offset);
1252 break;
1253
1254 default:
1255 break;
1256 }
1257
1258 if (real_s_name)
1259 {
1260 uintmax_t s;
1261 if (!continued_file_name
1262 || strcmp (continued_file_name, real_s_name))
1263 {
1264 if ((archive_format == GNU_FORMAT || archive_format == OLDGNU_FORMAT)
1265 && strlen (real_s_name) >= NAME_FIELD_SIZE
1266 && strncmp (continued_file_name, real_s_name,
1267 NAME_FIELD_SIZE) == 0)
1268 WARN ((0, 0,
1269 _("%s is possibly continued on this volume: header contains truncated name"),
1270 quote (real_s_name)));
1271 else
1272 {
1273 WARN ((0, 0, _("%s is not continued on this volume"),
1274 quote (real_s_name)));
1275 return false;
1276 }
1277 }
1278
1279 s = continued_file_size + continued_file_offset;
1280
1281 if (real_s_totsize != s || s < continued_file_offset)
1282 {
1283 char totsizebuf[UINTMAX_STRSIZE_BOUND];
1284 char s1buf[UINTMAX_STRSIZE_BOUND];
1285 char s2buf[UINTMAX_STRSIZE_BOUND];
1286
1287 WARN ((0, 0, _("%s is the wrong size (%s != %s + %s)"),
1288 quote (continued_file_name),
1289 STRINGIFY_BIGINT (save_totsize, totsizebuf),
1290 STRINGIFY_BIGINT (continued_file_size, s1buf),
1291 STRINGIFY_BIGINT (continued_file_offset, s2buf)));
1292 return false;
1293 }
1294
1295 if (real_s_totsize - real_s_sizeleft != continued_file_offset)
1296 {
1297 char totsizebuf[UINTMAX_STRSIZE_BOUND];
1298 char s1buf[UINTMAX_STRSIZE_BOUND];
1299 char s2buf[UINTMAX_STRSIZE_BOUND];
1300
1301 WARN ((0, 0, _("This volume is out of sequence (%s - %s != %s)"),
1302 STRINGIFY_BIGINT (real_s_totsize, totsizebuf),
1303 STRINGIFY_BIGINT (real_s_sizeleft, s1buf),
1304 STRINGIFY_BIGINT (continued_file_offset, s2buf)));
1305
1306 return false;
1307 }
1308 }
1309
1310 increase_volume_number ();
1311 return true;
1312 }
1313
1314 \f
1315 /* Check the LABEL block against the volume label, seen as a globbing
1316 pattern. Return true if the pattern matches. In case of failure,
1317 retry matching a volume sequence number before giving up in
1318 multi-volume mode. */
1319 static bool
1320 check_label_pattern (union block *label)
1321 {
1322 char *string;
1323 bool result;
1324
1325 if (! memchr (label->header.name, '\0', sizeof label->header.name))
1326 return false;
1327
1328 if (fnmatch (volume_label_option, label->header.name, 0) == 0)
1329 return true;
1330
1331 if (!multi_volume_option)
1332 return false;
1333
1334 string = xmalloc (strlen (volume_label_option)
1335 + sizeof VOLUME_LABEL_APPEND + 1);
1336 strcpy (string, volume_label_option);
1337 strcat (string, VOLUME_LABEL_APPEND);
1338 result = fnmatch (string, label->header.name, 0) == 0;
1339 free (string);
1340 return result;
1341 }
1342
1343 /* Check if the next block contains a volume label and if this matches
1344 the one given in the command line */
1345 static void
1346 match_volume_label (void)
1347 {
1348 union block *label = find_next_block ();
1349
1350 if (!label)
1351 FATAL_ERROR ((0, 0, _("Archive not labeled to match %s"),
1352 quote (volume_label_option)));
1353 if (!check_label_pattern (label))
1354 FATAL_ERROR ((0, 0, _("Volume %s does not match %s"),
1355 quote_n (0, label->header.name),
1356 quote_n (1, volume_label_option)));
1357 }
1358
1359 /* Mark the archive with volume label STR. */
1360 static void
1361 _write_volume_label (const char *str)
1362 {
1363 if (archive_format == POSIX_FORMAT)
1364 xheader_store ("GNU.volume.label", &dummy, str);
1365 else
1366 {
1367 union block *label = find_next_block ();
1368
1369 memset (label, 0, BLOCKSIZE);
1370
1371 strcpy (label->header.name, str);
1372 assign_string (&current_stat_info.file_name,
1373 label->header.name);
1374 current_stat_info.had_trailing_slash =
1375 strip_trailing_slashes (current_stat_info.file_name);
1376
1377 label->header.typeflag = GNUTYPE_VOLHDR;
1378 TIME_TO_CHARS (start_time.tv_sec, label->header.mtime);
1379 finish_header (&current_stat_info, label, -1);
1380 set_next_block_after (label);
1381 }
1382 }
1383
1384 #define VOL_SUFFIX "Volume"
1385
1386 /* Add a volume label to a part of multi-volume archive */
1387 static void
1388 add_volume_label (void)
1389 {
1390 char buf[UINTMAX_STRSIZE_BOUND];
1391 char *p = STRINGIFY_BIGINT (volno, buf);
1392 char *s = xmalloc (strlen (volume_label_option) + sizeof VOL_SUFFIX
1393 + strlen (p) + 2);
1394 sprintf (s, "%s %s %s", volume_label_option, VOL_SUFFIX, p);
1395 _write_volume_label (s);
1396 free (s);
1397 }
1398
1399 static void
1400 add_chunk_header ()
1401 {
1402 if (archive_format == POSIX_FORMAT)
1403 {
1404 off_t block_ordinal;
1405 union block *blk;
1406 struct tar_stat_info st;
1407 static size_t real_s_part_no; /* FIXME */
1408
1409 real_s_part_no++;
1410 memset (&st, 0, sizeof st);
1411 st.orig_file_name = st.file_name = real_s_name;
1412 st.stat.st_mode = S_IFREG|S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH;
1413 st.stat.st_uid = getuid ();
1414 st.stat.st_gid = getgid ();
1415 st.orig_file_name = xheader_format_name (&st,
1416 "%d/GNUFileParts.%p/%f.%n",
1417 real_s_part_no);
1418 st.file_name = st.orig_file_name;
1419 st.archive_file_size = st.stat.st_size = real_s_sizeleft;
1420
1421 block_ordinal = current_block_ordinal ();
1422 blk = start_header (&st);
1423 if (!blk)
1424 abort (); /* FIXME */
1425 finish_header (&st, blk, block_ordinal);
1426 free (st.orig_file_name);
1427 }
1428 }
1429
1430
1431 /* Add a volume label to the current archive */
1432 static void
1433 write_volume_label (void)
1434 {
1435 if (multi_volume_option)
1436 add_volume_label ();
1437 else
1438 _write_volume_label (volume_label_option);
1439 }
1440
1441 /* Write GNU multi-volume header */
1442 static void
1443 gnu_add_multi_volume_header (void)
1444 {
1445 int tmp;
1446 union block *block = find_next_block ();
1447
1448 if (strlen (real_s_name) > NAME_FIELD_SIZE)
1449 WARN ((0, 0,
1450 _("%s: file name too long to be stored in a GNU multivolume header, truncated"),
1451 quotearg_colon (real_s_name)));
1452
1453 memset (block, 0, BLOCKSIZE);
1454
1455 /* FIXME: Michael P Urban writes: [a long name file] is being written
1456 when a new volume rolls around [...] Looks like the wrong value is
1457 being preserved in real_s_name, though. */
1458
1459 strncpy (block->header.name, real_s_name, NAME_FIELD_SIZE);
1460 block->header.typeflag = GNUTYPE_MULTIVOL;
1461
1462 OFF_TO_CHARS (real_s_sizeleft, block->header.size);
1463 OFF_TO_CHARS (real_s_totsize - real_s_sizeleft,
1464 block->oldgnu_header.offset);
1465
1466 tmp = verbose_option;
1467 verbose_option = 0;
1468 finish_header (&current_stat_info, block, -1);
1469 verbose_option = tmp;
1470 set_next_block_after (block);
1471 }
1472
1473 /* Add a multi volume header to the current archive. The exact header format
1474 depends on the archive format. */
1475 static void
1476 add_multi_volume_header (void)
1477 {
1478 if (archive_format == POSIX_FORMAT)
1479 {
1480 off_t d = real_s_totsize - real_s_sizeleft;
1481 xheader_store ("GNU.volume.filename", &dummy, real_s_name);
1482 xheader_store ("GNU.volume.size", &dummy, &real_s_sizeleft);
1483 xheader_store ("GNU.volume.offset", &dummy, &d);
1484 }
1485 else
1486 gnu_add_multi_volume_header ();
1487 }
1488
1489 /* Synchronize multi-volume globals */
1490 static void
1491 multi_volume_sync ()
1492 {
1493 if (multi_volume_option)
1494 {
1495 if (save_name)
1496 {
1497 assign_string (&real_s_name,
1498 safer_name_suffix (save_name, false,
1499 absolute_names_option));
1500 real_s_totsize = save_totsize;
1501 real_s_sizeleft = save_sizeleft;
1502 }
1503 else
1504 {
1505 assign_string (&real_s_name, 0);
1506 real_s_totsize = 0;
1507 real_s_sizeleft = 0;
1508 }
1509 }
1510 }
1511
1512 \f
1513 /* Low-level flush functions */
1514
1515 /* Simple flush read (no multi-volume or label extensions) */
1516 static void
1517 simple_flush_read (void)
1518 {
1519 size_t status; /* result from system call */
1520
1521 checkpoint_run (false);
1522
1523 /* Clear the count of errors. This only applies to a single call to
1524 flush_read. */
1525
1526 read_error_count = 0; /* clear error count */
1527
1528 if (write_archive_to_stdout && record_start_block != 0)
1529 {
1530 archive = STDOUT_FILENO;
1531 status = sys_write_archive_buffer ();
1532 archive = STDIN_FILENO;
1533 if (status != record_size)
1534 archive_write_error (status);
1535 }
1536
1537 for (;;)
1538 {
1539 status = rmtread (archive, record_start->buffer, record_size);
1540 if (status == record_size)
1541 {
1542 records_read++;
1543 return;
1544 }
1545 if (status == SAFE_READ_ERROR)
1546 {
1547 archive_read_error ();
1548 continue; /* try again */
1549 }
1550 break;
1551 }
1552 short_read (status);
1553 }
1554
1555 /* Simple flush write (no multi-volume or label extensions) */
1556 static void
1557 simple_flush_write (size_t level __attribute__((unused)))
1558 {
1559 ssize_t status;
1560
1561 status = _flush_write ();
1562 if (status != record_size)
1563 archive_write_error (status);
1564 else
1565 {
1566 records_written++;
1567 bytes_written += status;
1568 }
1569 }
1570
1571 \f
1572 /* GNU flush functions. These support multi-volume and archive labels in
1573 GNU and PAX archive formats. */
1574
1575 static void
1576 _gnu_flush_read (void)
1577 {
1578 size_t status; /* result from system call */
1579
1580 checkpoint_run (false);
1581
1582 /* Clear the count of errors. This only applies to a single call to
1583 flush_read. */
1584
1585 read_error_count = 0; /* clear error count */
1586
1587 if (write_archive_to_stdout && record_start_block != 0)
1588 {
1589 archive = STDOUT_FILENO;
1590 status = sys_write_archive_buffer ();
1591 archive = STDIN_FILENO;
1592 if (status != record_size)
1593 archive_write_error (status);
1594 }
1595
1596 multi_volume_sync ();
1597
1598 for (;;)
1599 {
1600 status = rmtread (archive, record_start->buffer, record_size);
1601 if (status == record_size)
1602 {
1603 records_read++;
1604 return;
1605 }
1606
1607 /* The condition below used to include
1608 || (status > 0 && !read_full_records)
1609 This is incorrect since even if new_volume() succeeds, the
1610 subsequent call to rmtread will overwrite the chunk of data
1611 already read in the buffer, so the processing will fail */
1612 if ((status == 0
1613 || (status == SAFE_READ_ERROR && errno == ENOSPC))
1614 && multi_volume_option)
1615 {
1616 while (!try_new_volume ())
1617 ;
1618 if (current_block == record_end)
1619 /* Necessary for blocking_factor == 1 */
1620 flush_archive();
1621 return;
1622 }
1623 else if (status == SAFE_READ_ERROR)
1624 {
1625 archive_read_error ();
1626 continue;
1627 }
1628 break;
1629 }
1630 short_read (status);
1631 }
1632
1633 static void
1634 gnu_flush_read (void)
1635 {
1636 flush_read_ptr = simple_flush_read; /* Avoid recursion */
1637 _gnu_flush_read ();
1638 flush_read_ptr = gnu_flush_read;
1639 }
1640
1641 static void
1642 _gnu_flush_write (size_t buffer_level)
1643 {
1644 ssize_t status;
1645 union block *header;
1646 char *copy_ptr;
1647 size_t copy_size;
1648 size_t bufsize;
1649 tarlong wrt;
1650
1651 status = _flush_write ();
1652 if (status != record_size && !multi_volume_option)
1653 archive_write_error (status);
1654 else
1655 {
1656 if (status)
1657 records_written++;
1658 bytes_written += status;
1659 }
1660
1661 if (status == record_size)
1662 {
1663 multi_volume_sync ();
1664 return;
1665 }
1666
1667 if (status % BLOCKSIZE)
1668 {
1669 ERROR ((0, 0, _("write did not end on a block boundary")));
1670 archive_write_error (status);
1671 }
1672
1673 /* In multi-volume mode. */
1674 /* ENXIO is for the UNIX PC. */
1675 if (status < 0 && errno != ENOSPC && errno != EIO && errno != ENXIO)
1676 archive_write_error (status);
1677
1678 real_s_sizeleft -= status;
1679 if (!new_volume (ACCESS_WRITE))
1680 return;
1681
1682 tar_stat_destroy (&dummy);
1683
1684 increase_volume_number ();
1685 prev_written += bytes_written;
1686 bytes_written = 0;
1687
1688 copy_ptr = record_start->buffer + status;
1689 copy_size = buffer_level - status;
1690
1691 /* Switch to the next buffer */
1692 record_index = !record_index;
1693 init_buffer ();
1694
1695 if (volume_label_option)
1696 add_volume_label ();
1697
1698 if (real_s_name)
1699 add_multi_volume_header ();
1700
1701 write_extended (true, &dummy, find_next_block ());
1702 tar_stat_destroy (&dummy);
1703
1704 if (real_s_name)
1705 add_chunk_header ();
1706 wrt = bytes_written;
1707 header = find_next_block ();
1708 bufsize = available_space_after (header);
1709 while (bufsize < copy_size)
1710 {
1711 memcpy (header->buffer, copy_ptr, bufsize);
1712 copy_ptr += bufsize;
1713 copy_size -= bufsize;
1714 set_next_block_after (header + (bufsize - 1) / BLOCKSIZE);
1715 header = find_next_block ();
1716 bufsize = available_space_after (header);
1717 }
1718 memcpy (header->buffer, copy_ptr, copy_size);
1719 memset (header->buffer + copy_size, 0, bufsize - copy_size);
1720 set_next_block_after (header + (copy_size - 1) / BLOCKSIZE);
1721 if (multi_volume_option && wrt < bytes_written)
1722 {
1723 /* The value of bytes_written has changed while moving data;
1724 that means that flush_archive was executed at least once in
1725 between, and, as a consequence, copy_size bytes were not written
1726 to disk. We need to update sizeleft variables to compensate for
1727 that. */
1728 save_sizeleft += copy_size;
1729 multi_volume_sync ();
1730 }
1731 find_next_block ();
1732 }
1733
1734 static void
1735 gnu_flush_write (size_t buffer_level)
1736 {
1737 flush_write_ptr = simple_flush_write; /* Avoid recursion */
1738 _gnu_flush_write (buffer_level);
1739 flush_write_ptr = gnu_flush_write;
1740 }
1741
1742 void
1743 flush_read ()
1744 {
1745 flush_read_ptr ();
1746 }
1747
1748 void
1749 flush_write ()
1750 {
1751 flush_write_ptr (record_size);
1752 }
1753
1754 void
1755 open_archive (enum access_mode wanted_access)
1756 {
1757 flush_read_ptr = gnu_flush_read;
1758 flush_write_ptr = gnu_flush_write;
1759
1760 _open_archive (wanted_access);
1761 switch (wanted_access)
1762 {
1763 case ACCESS_READ:
1764 if (volume_label_option)
1765 match_volume_label ();
1766 break;
1767
1768 case ACCESS_WRITE:
1769 records_written = 0;
1770 if (volume_label_option)
1771 write_volume_label ();
1772 break;
1773
1774 default:
1775 break;
1776 }
1777 set_volume_start_time ();
1778 }
This page took 0.108277 seconds and 5 git commands to generate.