1 /* Buffer management for tar.
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1999, 2000, 2001,
4 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 Written by John Gilmore, on 1985-08-25.
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
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.
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. */
23 #include <system-ioctl.h>
35 /* Number of retries before giving up on read. */
36 #define READ_ERROR_MAX 10
38 /* Globbing pattern to append to volume label if initial match failed. */
39 #define VOLUME_LABEL_APPEND " Volume [1-9]*"
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
;
49 /* FIXME: The following variables should ideally be static to this
50 module. However, this cannot be done yet. The cleanup continues! */
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 */
61 static off_t record_start_block
; /* block ordinal at record_start */
63 /* Where we write list messages (not errors, not interactions) to. */
66 static void backspace_output (void);
68 /* PID of child program, if compress_option or remote archive access. */
69 static pid_t child_pid
;
71 /* Error recovery stuff */
72 static int read_error_count
;
74 /* Have we hit EOF yet? */
77 static bool read_full_records
= false;
79 /* We're reading, but we just read the last block and it's time to update.
82 As least EXTERN like this one as possible. (?? --gray)
83 FIXME: Either eliminate it or move it to common.h.
85 extern bool time_to_start_writing
;
87 bool write_archive_to_stdout
;
89 void (*flush_write_ptr
) (size_t);
90 void (*flush_read_ptr
) (void);
94 char *continued_file_name
;
95 uintmax_t continued_file_size
;
96 uintmax_t continued_file_offset
;
99 static int volno
= 1; /* which volume of a multi-volume tape we're
101 static int global_volno
= 1; /* volume number to print in external
104 bool write_archive_to_stdout
;
106 /* Used by flush_read and flush_write to store the real info about saved
108 static char *real_s_name
;
109 static off_t real_s_totsize
;
110 static off_t real_s_sizeleft
;
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 */
121 static struct tar_stat_info dummy
;
124 buffer_write_global_xheader ()
126 xheader_write_global (&dummy
.xhdr
);
130 mv_begin (struct tar_stat_info
*st
)
132 if (multi_volume_option
)
134 assign_string (&save_name
, st
->orig_file_name
);
135 save_totsize
= save_sizeleft
= st
->stat
.st_size
;
142 if (multi_volume_option
)
143 assign_string (&save_name
, 0);
147 mv_total_size (off_t size
)
153 mv_size_left (off_t size
)
155 save_sizeleft
= size
;
162 clear_read_error_count (void)
164 read_error_count
= 0;
168 /* Time-related functions */
175 gettime (&start_time
);
176 volume_start_time
= start_time
;
177 last_stat_time
= start_time
;
181 set_volume_start_time ()
183 gettime (&volume_start_time
);
184 last_stat_time
= volume_start_time
;
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
);
198 /* Compression detection */
201 ct_tar
, /* Plain tar file */
202 ct_none
, /* Unknown compression type */
213 enum compress_type type
;
220 static struct zip_magic
const magic
[] = {
223 { ct_compress
, 2, "\037\235", "compress", "-Z" },
224 { ct_gzip
, 2, "\037\213", "gzip", "-z" },
225 { ct_bzip2
, 3, "BZh", "bzip2", "-j" },
226 { ct_lzma
, 6, "\xFFLZMA", "lzma", "--lzma" }, /* FIXME: ???? */
227 { ct_lzop
, 4, "\211LZO", "lzop", "--lzop" },
228 { ct_xz
, 6, "\0xFD7zXZ", "-J" },
231 #define NMAGIC (sizeof(magic)/sizeof(magic[0]))
233 #define compress_option(t) magic[t].option
234 #define compress_program(t) magic[t].program
236 /* Check if the file ARCHIVE is a compressed archive. */
238 check_compressed_archive (bool *pshort
)
240 struct zip_magic
const *p
;
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
252 *pshort
= find_next_block () == 0;
254 /* Restore global values */
255 read_full_records
= sfr
;
257 if (tar_checksum (record_start
, true) == HEADER_SUCCESS
)
258 /* Probably a valid header */
261 for (p
= magic
+ 2; p
< magic
+ NMAGIC
; p
++)
262 if (memcmp (record_start
->buffer
, p
->magic
, p
->length
) == 0)
268 /* Open an archive named archive_name_array[0]. Detect if it is
269 a compressed archive of known type and use corresponding decompression
272 open_compressed_archive ()
274 archive
= rmtopen (archive_name_array
[0], O_RDONLY
| O_BINARY
,
275 MODE_RW
, rsh_command_option
);
279 if (!multi_volume_option
)
281 if (!use_compress_program_option
)
284 enum compress_type type
= check_compressed_archive (&shortfile
);
290 ERROR ((0, 0, _("This does not look like a tar archive")));
295 ERROR ((0, 0, _("This does not look like a tar archive")));
296 set_comression_program_by_suffix (archive_name_array
[0], NULL
);
297 if (!use_compress_program_option
)
302 use_compress_program_option
= compress_program (type
);
307 /* FD is not needed any more */
310 hit_eof
= false; /* It might have been set by find_next_block in
311 check_compressed_archive */
313 /* Open compressed archive */
314 child_pid
= sys_child_open_for_uncompress ();
315 read_full_records
= true;
319 record_end
= record_start
; /* set up for 1st record = # 0 */
326 print_stats (FILE *fp
, const char *text
, tarlong numbytes
)
328 char bytes
[sizeof (tarlong
) * CHAR_BIT
];
329 char abbr
[LONGEST_HUMAN_READABLE
+ 1];
330 char rate
[LONGEST_HUMAN_READABLE
+ 1];
332 int human_opts
= human_autoscale
| human_base_1024
| human_SI
| human_B
;
334 sprintf (bytes
, TARLONG_FORMAT
, numbytes
);
336 fprintf (fp
, "%s: %s (%s, %s/s)\n",
338 human_readable (numbytes
, abbr
, human_opts
, 1, 1),
339 (0 < duration
&& numbytes
/ duration
< (uintmax_t) -1
340 ? human_readable (numbytes
/ duration
, rate
, human_opts
, 1, 1)
347 switch (subcommand_option
)
349 case CREATE_SUBCOMMAND
:
351 case UPDATE_SUBCOMMAND
:
352 case APPEND_SUBCOMMAND
:
353 /* Amanda 2.4.1p1 looks for "Total bytes written: [0-9][0-9]*". */
354 print_stats (stderr
, _("Total bytes written"),
355 prev_written
+ bytes_written
);
358 case DELETE_SUBCOMMAND
:
360 char buf
[UINTMAX_STRSIZE_BOUND
];
361 print_stats (stderr
, _("Total bytes read"),
362 records_read
* record_size
);
363 print_stats (stderr
, _("Total bytes written"),
364 prev_written
+ bytes_written
);
365 fprintf (stderr
, _("Total bytes deleted: %s\n"),
366 STRINGIFY_BIGINT ((records_read
- records_skipped
)
368 - (prev_written
+ bytes_written
), buf
));
372 case EXTRACT_SUBCOMMAND
:
373 case LIST_SUBCOMMAND
:
374 case DIFF_SUBCOMMAND
:
375 print_stats (stderr
, _("Total bytes read"),
376 records_read
* record_size
);
384 /* Compute and return the block ordinal at current_block. */
386 current_block_ordinal (void)
388 return record_start_block
+ (current_block
- record_start
);
391 /* If the EOF flag is set, reset it, as well as current_block, etc. */
398 current_block
= record_start
;
399 record_end
= record_start
+ blocking_factor
;
400 access_mode
= ACCESS_WRITE
;
404 /* Return the location of the next available input or output block.
405 Return zero for EOF. Once we have returned zero, we just keep returning
406 it, to avoid accidentally going on to the next file on the tape. */
408 find_next_block (void)
410 if (current_block
== record_end
)
415 if (current_block
== record_end
)
421 return current_block
;
424 /* Indicate that we have used all blocks up thru BLOCK. */
426 set_next_block_after (union block
*block
)
428 while (block
>= current_block
)
431 /* Do *not* flush the archive here. If we do, the same argument to
432 set_next_block_after could mean the next block (if the input record
433 is exactly one block long), which is not what is intended. */
435 if (current_block
> record_end
)
439 /* Return the number of bytes comprising the space between POINTER
440 through the end of the current buffer of blocks. This space is
441 available for filling with data, or taking data from. POINTER is
442 usually (but not always) the result of previous find_next_block call. */
444 available_space_after (union block
*pointer
)
446 return record_end
->buffer
- pointer
->buffer
;
449 /* Close file having descriptor FD, and abort if close unsuccessful. */
454 close_error (_("(pipe)"));
460 if (! record_buffer_aligned
[record_index
])
461 record_buffer_aligned
[record_index
] =
462 page_aligned_alloc (&record_buffer
[record_index
], record_size
);
464 record_start
= record_buffer_aligned
[record_index
];
465 current_block
= record_start
;
466 record_end
= record_start
+ blocking_factor
;
469 /* Open an archive file. The argument specifies whether we are
470 reading or writing, or both. */
472 _open_archive (enum access_mode wanted_access
)
474 int backed_up_flag
= 0;
476 if (record_size
== 0)
477 FATAL_ERROR ((0, 0, _("Invalid value for record_size")));
479 if (archive_names
== 0)
480 FATAL_ERROR ((0, 0, _("No archive name given")));
482 tar_stat_destroy (¤t_stat_info
);
489 /* When updating the archive, we start with reading. */
490 access_mode
= wanted_access
== ACCESS_UPDATE
? ACCESS_READ
: wanted_access
;
492 read_full_records
= read_full_records_option
;
496 if (use_compress_program_option
)
498 switch (wanted_access
)
501 child_pid
= sys_child_open_for_uncompress ();
502 read_full_records
= true;
503 record_end
= record_start
; /* set up for 1st record = # 0 */
507 child_pid
= sys_child_open_for_compress ();
511 abort (); /* Should not happen */
516 && wanted_access
== ACCESS_WRITE
517 && strcmp (archive_name_array
[0], "-") == 0)
520 else if (strcmp (archive_name_array
[0], "-") == 0)
522 read_full_records
= true; /* could be a pipe, be safe */
524 FATAL_ERROR ((0, 0, _("Cannot verify stdin/stdout archive")));
526 switch (wanted_access
)
531 enum compress_type type
;
533 archive
= STDIN_FILENO
;
535 type
= check_compressed_archive (&shortfile
);
536 if (type
!= ct_tar
&& type
!= ct_none
)
538 _("Archive is compressed. Use %s option"),
539 compress_option (type
)));
541 ERROR ((0, 0, _("This does not look like a tar archive")));
546 archive
= STDOUT_FILENO
;
547 if (!index_file_name
)
552 archive
= STDIN_FILENO
;
553 write_archive_to_stdout
= true;
554 record_end
= record_start
; /* set up for 1st record = # 0 */
555 if (!index_file_name
)
560 else if (verify_option
)
561 archive
= rmtopen (archive_name_array
[0], O_RDWR
| O_CREAT
| O_BINARY
,
562 MODE_RW
, rsh_command_option
);
564 switch (wanted_access
)
567 archive
= open_compressed_archive ();
573 maybe_backup_file (archive_name_array
[0], 1);
576 archive
= rmtcreat (archive_name_array
[0], MODE_RW
,
581 archive
= rmtopen (archive_name_array
[0],
582 O_RDWR
| O_CREAT
| O_BINARY
,
583 MODE_RW
, rsh_command_option
);
585 switch (check_compressed_archive (NULL
))
593 _("Cannot update compressed archives")));
599 || (! _isrmt (archive
) && !sys_get_archive_stat ()))
601 int saved_errno
= errno
;
606 open_fatal (archive_name_array
[0]);
609 sys_detect_dev_null_output ();
610 sys_save_archive_dev_ino ();
611 SET_BINARY_MODE (archive
);
613 switch (wanted_access
)
616 find_next_block (); /* read it in, check for EOF */
626 /* Perform a write to flush the buffer. */
632 checkpoint_run (true);
633 if (tape_length_option
&& tape_length_option
<= bytes_written
)
638 else if (dev_null_output
)
639 status
= record_size
;
641 status
= sys_write_archive_buffer ();
646 /* Handle write errors on the archive. Write errors are always fatal.
647 Hitting the end of a volume does not cause a write error unless the
648 write was the first record of the volume. */
650 archive_write_error (ssize_t status
)
652 /* It might be useful to know how much was written before the error
657 print_total_stats ();
661 write_fatal_details (*archive_name_cursor
, status
, record_size
);
664 /* Handle read errors on the archive. If the read should be retried,
665 return to the caller. */
667 archive_read_error (void)
669 read_error (*archive_name_cursor
);
671 if (record_start_block
== 0)
672 FATAL_ERROR ((0, 0, _("At beginning of tape, quitting now")));
674 /* Read error in mid archive. We retry up to READ_ERROR_MAX times and
675 then give up on reading the archive. */
677 if (read_error_count
++ > READ_ERROR_MAX
)
678 FATAL_ERROR ((0, 0, _("Too many errors, quitting")));
687 if (fstat (archive
, &st
))
689 stat_diag (*archive_name_cursor
);
692 return S_ISBLK (st
.st_mode
) || S_ISCHR (st
.st_mode
);
696 short_read (size_t status
)
698 size_t left
; /* bytes left */
699 char *more
; /* pointer to next byte to read */
701 more
= record_start
->buffer
+ status
;
702 left
= record_size
- status
;
704 if (left
&& left
% BLOCKSIZE
== 0
706 && record_start_block
== 0 && status
!= 0
707 && archive_is_dev ())
709 unsigned long rsize
= status
/ BLOCKSIZE
;
711 ngettext ("Record size = %lu block",
712 "Record size = %lu blocks",
717 while (left
% BLOCKSIZE
!= 0
718 || (left
&& status
&& read_full_records
))
721 while ((status
= rmtread (archive
, more
, left
)) == SAFE_READ_ERROR
)
722 archive_read_error ();
727 if (! read_full_records
)
729 unsigned long rest
= record_size
- left
;
732 ngettext ("Unaligned block (%lu byte) in archive",
733 "Unaligned block (%lu bytes) in archive",
742 record_end
= record_start
+ (record_size
- left
) / BLOCKSIZE
;
746 /* Flush the current buffer to/from the archive. */
750 size_t buffer_level
= current_block
->buffer
- record_start
->buffer
;
751 record_start_block
+= record_end
- record_start
;
752 current_block
= record_start
;
753 record_end
= record_start
+ blocking_factor
;
755 if (access_mode
== ACCESS_READ
&& time_to_start_writing
)
757 access_mode
= ACCESS_WRITE
;
758 time_to_start_writing
= false;
769 flush_write_ptr (buffer_level
);
777 /* Backspace the archive descriptor by one record worth. If it's a
778 tape, MTIOCTOP will work. If it's something else, try to seek on
779 it. If we can't seek, we lose! */
781 backspace_output (void)
785 struct mtop operation
;
787 operation
.mt_op
= MTBSR
;
788 operation
.mt_count
= 1;
789 if (rmtioctl (archive
, MTIOCTOP
, (char *) &operation
) >= 0)
791 if (errno
== EIO
&& rmtioctl (archive
, MTIOCTOP
, (char *) &operation
) >= 0)
797 off_t position
= rmtlseek (archive
, (off_t
) 0, SEEK_CUR
);
799 /* Seek back to the beginning of this record and start writing there. */
801 position
-= record_size
;
804 if (rmtlseek (archive
, position
, SEEK_SET
) != position
)
806 /* Lseek failed. Try a different method. */
809 _("Cannot backspace archive file; it may be unreadable without -i")));
811 /* Replace the first part of the record with NULs. */
813 if (record_start
->buffer
!= output_start
)
814 memset (record_start
->buffer
, 0,
815 output_start
- record_start
->buffer
);
821 seek_archive (off_t size
)
823 off_t start
= current_block_ordinal ();
826 off_t skipped
= (blocking_factor
- (current_block
- record_start
));
828 size
-= skipped
* BLOCKSIZE
;
830 if (size
< record_size
)
834 /* Compute number of records to skip */
835 nrec
= size
/ record_size
;
836 offset
= rmtlseek (archive
, nrec
* record_size
, SEEK_CUR
);
840 if (offset
% record_size
)
841 FATAL_ERROR ((0, 0, _("rmtlseek not stopped at a record boundary")));
843 /* Convert to number of records */
845 /* Compute number of skipped blocks */
846 nblk
= offset
- start
;
848 /* Update buffering info */
849 records_read
+= nblk
/ blocking_factor
;
850 record_start_block
= offset
- blocking_factor
;
851 current_block
= record_end
;
856 /* Close the archive file. */
860 if (time_to_start_writing
|| access_mode
== ACCESS_WRITE
)
863 if (current_block
> record_start
)
871 if (rmtclose (archive
) != 0)
872 close_error (*archive_name_cursor
);
874 sys_wait_for_child (child_pid
, hit_eof
);
876 tar_stat_destroy (¤t_stat_info
);
881 free (record_buffer
[0]);
882 free (record_buffer
[1]);
885 /* Called to initialize the global volume number. */
887 init_volume_number (void)
889 FILE *file
= fopen (volno_file_option
, "r");
893 if (fscanf (file
, "%d", &global_volno
) != 1
895 FATAL_ERROR ((0, 0, _("%s: contains invalid volume number"),
896 quotearg_colon (volno_file_option
)));
898 read_error (volno_file_option
);
899 if (fclose (file
) != 0)
900 close_error (volno_file_option
);
902 else if (errno
!= ENOENT
)
903 open_error (volno_file_option
);
906 /* Called to write out the closing global volume number. */
908 closeout_volume_number (void)
910 FILE *file
= fopen (volno_file_option
, "w");
914 fprintf (file
, "%d\n", global_volno
);
916 write_error (volno_file_option
);
917 if (fclose (file
) != 0)
918 close_error (volno_file_option
);
921 open_error (volno_file_option
);
926 increase_volume_number ()
929 if (global_volno
< 0)
930 FATAL_ERROR ((0, 0, _("Volume number overflow")));
935 change_tape_menu (FILE *read_file
)
937 char *input_buffer
= NULL
;
943 fputc ('\007', stderr
);
945 _("Prepare volume #%d for %s and hit return: "),
946 global_volno
+ 1, quote (*archive_name_cursor
));
949 if (getline (&input_buffer
, &size
, read_file
) <= 0)
951 WARN ((0, 0, _("EOF where user reply was expected")));
953 if (subcommand_option
!= EXTRACT_SUBCOMMAND
954 && subcommand_option
!= LIST_SUBCOMMAND
955 && subcommand_option
!= DIFF_SUBCOMMAND
)
956 WARN ((0, 0, _("WARNING: Archive is incomplete")));
961 if (input_buffer
[0] == '\n'
962 || input_buffer
[0] == 'y'
963 || input_buffer
[0] == 'Y')
966 switch (input_buffer
[0])
970 fprintf (stderr
, _("\
971 n name Give a new file name for the next (and subsequent) volume(s)\n\
973 y or newline Continue operation\n"));
974 if (!restrict_option
)
975 fprintf (stderr
, _(" ! Spawn a subshell\n"));
976 fprintf (stderr
, _(" ? Print this list\n"));
983 WARN ((0, 0, _("No new volume; exiting.\n")));
985 if (subcommand_option
!= EXTRACT_SUBCOMMAND
986 && subcommand_option
!= LIST_SUBCOMMAND
987 && subcommand_option
!= DIFF_SUBCOMMAND
)
988 WARN ((0, 0, _("WARNING: Archive is incomplete")));
993 /* Get new file name. */
999 for (name
= input_buffer
+ 1;
1000 *name
== ' ' || *name
== '\t';
1004 for (cursor
= name
; *cursor
&& *cursor
!= '\n'; cursor
++)
1010 /* FIXME: the following allocation is never reclaimed. */
1011 *archive_name_cursor
= xstrdup (name
);
1015 fprintf (stderr
, "%s",
1016 _("File name not specified. Try again.\n"));
1021 if (!restrict_option
)
1029 fprintf (stderr
, _("Invalid input. Type ? for help.\n"));
1032 free (input_buffer
);
1035 /* We've hit the end of the old volume. Close it and open the next one.
1036 Return nonzero on success.
1039 new_volume (enum access_mode mode
)
1041 static FILE *read_file
;
1045 if (!read_file
&& !info_script_option
)
1046 /* FIXME: if fopen is used, it will never be closed. */
1047 read_file
= archive
== STDIN_FILENO
? fopen (TTY_NAME
, "r") : stdin
;
1054 assign_string (&volume_label
, NULL
);
1055 assign_string (&continued_file_name
, NULL
);
1056 continued_file_size
= continued_file_offset
= 0;
1057 current_block
= record_start
;
1059 if (rmtclose (archive
) != 0)
1060 close_error (*archive_name_cursor
);
1062 archive_name_cursor
++;
1063 if (archive_name_cursor
== archive_name_array
+ archive_names
)
1065 archive_name_cursor
= archive_name_array
;
1073 /* We have to prompt from now on. */
1075 if (info_script_option
)
1077 if (volno_file_option
)
1078 closeout_volume_number ();
1079 if (sys_exec_info_script (archive_name_cursor
, global_volno
+1))
1080 FATAL_ERROR ((0, 0, _("%s command failed"),
1081 quote (info_script_option
)));
1084 change_tape_menu (read_file
);
1087 if (strcmp (archive_name_cursor
[0], "-") == 0)
1089 read_full_records
= true;
1090 archive
= STDIN_FILENO
;
1092 else if (verify_option
)
1093 archive
= rmtopen (*archive_name_cursor
, O_RDWR
| O_CREAT
, MODE_RW
,
1094 rsh_command_option
);
1099 archive
= rmtopen (*archive_name_cursor
, O_RDONLY
, MODE_RW
,
1100 rsh_command_option
);
1105 maybe_backup_file (*archive_name_cursor
, 1);
1106 archive
= rmtcreat (*archive_name_cursor
, MODE_RW
,
1107 rsh_command_option
);
1111 archive
= rmtopen (*archive_name_cursor
, O_RDWR
| O_CREAT
, MODE_RW
,
1112 rsh_command_option
);
1118 open_warn (*archive_name_cursor
);
1119 if (!verify_option
&& mode
== ACCESS_WRITE
&& backup_option
)
1120 undo_last_backup ();
1125 SET_BINARY_MODE (archive
);
1131 read_header0 (struct tar_stat_info
*info
)
1133 enum read_header rc
;
1135 tar_stat_init (info
);
1136 rc
= read_header_primitive (false, info
);
1137 if (rc
== HEADER_SUCCESS
)
1139 set_next_block_after (current_header
);
1142 ERROR ((0, 0, _("This does not look like a tar archive")));
1150 union block
*header
;
1151 enum access_mode acc
;
1153 switch (subcommand_option
)
1155 case APPEND_SUBCOMMAND
:
1156 case CAT_SUBCOMMAND
:
1157 case UPDATE_SUBCOMMAND
:
1158 acc
= ACCESS_UPDATE
;
1166 if (!new_volume (acc
))
1169 while ((status
= rmtread (archive
, record_start
->buffer
, record_size
))
1171 archive_read_error ();
1173 if (status
!= record_size
)
1174 short_read (status
);
1176 header
= find_next_block ();
1180 switch (header
->header
.typeflag
)
1184 if (!read_header0 (&dummy
))
1186 xheader_decode (&dummy
); /* decodes values from the global header */
1187 tar_stat_destroy (&dummy
);
1190 /* We have read the extended header of the first member in
1191 this volume. Put it back, so next read_header works as
1193 current_block
= record_start
;
1198 case GNUTYPE_VOLHDR
:
1199 if (!read_header0 (&dummy
))
1201 tar_stat_destroy (&dummy
);
1202 assign_string (&volume_label
, current_header
->header
.name
);
1203 set_next_block_after (header
);
1204 header
= find_next_block ();
1205 if (header
->header
.typeflag
!= GNUTYPE_MULTIVOL
)
1209 case GNUTYPE_MULTIVOL
:
1210 if (!read_header0 (&dummy
))
1212 tar_stat_destroy (&dummy
);
1213 assign_string (&continued_file_name
, current_header
->header
.name
);
1214 continued_file_size
=
1215 UINTMAX_FROM_HEADER (current_header
->header
.size
);
1216 continued_file_offset
=
1217 UINTMAX_FROM_HEADER (current_header
->oldgnu_header
.offset
);
1227 if (!continued_file_name
1228 || strcmp (continued_file_name
, real_s_name
))
1230 if ((archive_format
== GNU_FORMAT
|| archive_format
== OLDGNU_FORMAT
)
1231 && strlen (real_s_name
) >= NAME_FIELD_SIZE
1232 && strncmp (continued_file_name
, real_s_name
,
1233 NAME_FIELD_SIZE
) == 0)
1235 _("%s is possibly continued on this volume: header contains truncated name"),
1236 quote (real_s_name
)));
1239 WARN ((0, 0, _("%s is not continued on this volume"),
1240 quote (real_s_name
)));
1245 s
= continued_file_size
+ continued_file_offset
;
1247 if (real_s_totsize
!= s
|| s
< continued_file_offset
)
1249 char totsizebuf
[UINTMAX_STRSIZE_BOUND
];
1250 char s1buf
[UINTMAX_STRSIZE_BOUND
];
1251 char s2buf
[UINTMAX_STRSIZE_BOUND
];
1253 WARN ((0, 0, _("%s is the wrong size (%s != %s + %s)"),
1254 quote (continued_file_name
),
1255 STRINGIFY_BIGINT (save_totsize
, totsizebuf
),
1256 STRINGIFY_BIGINT (continued_file_size
, s1buf
),
1257 STRINGIFY_BIGINT (continued_file_offset
, s2buf
)));
1261 if (real_s_totsize
- real_s_sizeleft
!= continued_file_offset
)
1263 char totsizebuf
[UINTMAX_STRSIZE_BOUND
];
1264 char s1buf
[UINTMAX_STRSIZE_BOUND
];
1265 char s2buf
[UINTMAX_STRSIZE_BOUND
];
1267 WARN ((0, 0, _("This volume is out of sequence (%s - %s != %s)"),
1268 STRINGIFY_BIGINT (real_s_totsize
, totsizebuf
),
1269 STRINGIFY_BIGINT (real_s_sizeleft
, s1buf
),
1270 STRINGIFY_BIGINT (continued_file_offset
, s2buf
)));
1276 increase_volume_number ();
1281 /* Check the LABEL block against the volume label, seen as a globbing
1282 pattern. Return true if the pattern matches. In case of failure,
1283 retry matching a volume sequence number before giving up in
1284 multi-volume mode. */
1286 check_label_pattern (union block
*label
)
1291 if (! memchr (label
->header
.name
, '\0', sizeof label
->header
.name
))
1294 if (fnmatch (volume_label_option
, label
->header
.name
, 0) == 0)
1297 if (!multi_volume_option
)
1300 string
= xmalloc (strlen (volume_label_option
)
1301 + sizeof VOLUME_LABEL_APPEND
+ 1);
1302 strcpy (string
, volume_label_option
);
1303 strcat (string
, VOLUME_LABEL_APPEND
);
1304 result
= fnmatch (string
, label
->header
.name
, 0) == 0;
1309 /* Check if the next block contains a volume label and if this matches
1310 the one given in the command line */
1312 match_volume_label (void)
1314 union block
*label
= find_next_block ();
1317 FATAL_ERROR ((0, 0, _("Archive not labeled to match %s"),
1318 quote (volume_label_option
)));
1319 if (!check_label_pattern (label
))
1320 FATAL_ERROR ((0, 0, _("Volume %s does not match %s"),
1321 quote_n (0, label
->header
.name
),
1322 quote_n (1, volume_label_option
)));
1325 /* Mark the archive with volume label STR. */
1327 _write_volume_label (const char *str
)
1329 if (archive_format
== POSIX_FORMAT
)
1330 xheader_store ("GNU.volume.label", &dummy
, str
);
1333 union block
*label
= find_next_block ();
1335 memset (label
, 0, BLOCKSIZE
);
1337 strcpy (label
->header
.name
, str
);
1338 assign_string (¤t_stat_info
.file_name
,
1339 label
->header
.name
);
1340 current_stat_info
.had_trailing_slash
=
1341 strip_trailing_slashes (current_stat_info
.file_name
);
1343 label
->header
.typeflag
= GNUTYPE_VOLHDR
;
1344 TIME_TO_CHARS (start_time
.tv_sec
, label
->header
.mtime
);
1345 finish_header (¤t_stat_info
, label
, -1);
1346 set_next_block_after (label
);
1350 #define VOL_SUFFIX "Volume"
1352 /* Add a volume label to a part of multi-volume archive */
1354 add_volume_label (void)
1356 char buf
[UINTMAX_STRSIZE_BOUND
];
1357 char *p
= STRINGIFY_BIGINT (volno
, buf
);
1358 char *s
= xmalloc (strlen (volume_label_option
) + sizeof VOL_SUFFIX
1360 sprintf (s
, "%s %s %s", volume_label_option
, VOL_SUFFIX
, p
);
1361 _write_volume_label (s
);
1368 if (archive_format
== POSIX_FORMAT
)
1370 off_t block_ordinal
;
1372 struct tar_stat_info st
;
1373 static size_t real_s_part_no
; /* FIXME */
1376 memset (&st
, 0, sizeof st
);
1377 st
.orig_file_name
= st
.file_name
= real_s_name
;
1378 st
.stat
.st_mode
= S_IFREG
|S_IRUSR
|S_IWUSR
|S_IRGRP
|S_IROTH
;
1379 st
.stat
.st_uid
= getuid ();
1380 st
.stat
.st_gid
= getgid ();
1381 st
.orig_file_name
= xheader_format_name (&st
,
1382 "%d/GNUFileParts.%p/%f.%n",
1384 st
.file_name
= st
.orig_file_name
;
1385 st
.archive_file_size
= st
.stat
.st_size
= real_s_sizeleft
;
1387 block_ordinal
= current_block_ordinal ();
1388 blk
= start_header (&st
);
1390 abort (); /* FIXME */
1391 finish_header (&st
, blk
, block_ordinal
);
1392 free (st
.orig_file_name
);
1397 /* Add a volume label to the current archive */
1399 write_volume_label (void)
1401 if (multi_volume_option
)
1402 add_volume_label ();
1404 _write_volume_label (volume_label_option
);
1407 /* Write GNU multi-volume header */
1409 gnu_add_multi_volume_header (void)
1412 union block
*block
= find_next_block ();
1414 if (strlen (real_s_name
) > NAME_FIELD_SIZE
)
1416 _("%s: file name too long to be stored in a GNU multivolume header, truncated"),
1417 quotearg_colon (real_s_name
)));
1419 memset (block
, 0, BLOCKSIZE
);
1421 /* FIXME: Michael P Urban writes: [a long name file] is being written
1422 when a new volume rolls around [...] Looks like the wrong value is
1423 being preserved in real_s_name, though. */
1425 strncpy (block
->header
.name
, real_s_name
, NAME_FIELD_SIZE
);
1426 block
->header
.typeflag
= GNUTYPE_MULTIVOL
;
1428 OFF_TO_CHARS (real_s_sizeleft
, block
->header
.size
);
1429 OFF_TO_CHARS (real_s_totsize
- real_s_sizeleft
,
1430 block
->oldgnu_header
.offset
);
1432 tmp
= verbose_option
;
1434 finish_header (¤t_stat_info
, block
, -1);
1435 verbose_option
= tmp
;
1436 set_next_block_after (block
);
1439 /* Add a multi volume header to the current archive. The exact header format
1440 depends on the archive format. */
1442 add_multi_volume_header (void)
1444 if (archive_format
== POSIX_FORMAT
)
1446 off_t d
= real_s_totsize
- real_s_sizeleft
;
1447 xheader_store ("GNU.volume.filename", &dummy
, real_s_name
);
1448 xheader_store ("GNU.volume.size", &dummy
, &real_s_sizeleft
);
1449 xheader_store ("GNU.volume.offset", &dummy
, &d
);
1452 gnu_add_multi_volume_header ();
1455 /* Synchronize multi-volume globals */
1457 multi_volume_sync ()
1459 if (multi_volume_option
)
1463 assign_string (&real_s_name
,
1464 safer_name_suffix (save_name
, false,
1465 absolute_names_option
));
1466 real_s_totsize
= save_totsize
;
1467 real_s_sizeleft
= save_sizeleft
;
1471 assign_string (&real_s_name
, 0);
1473 real_s_sizeleft
= 0;
1479 /* Low-level flush functions */
1481 /* Simple flush read (no multi-volume or label extensions) */
1483 simple_flush_read (void)
1485 size_t status
; /* result from system call */
1487 checkpoint_run (false);
1489 /* Clear the count of errors. This only applies to a single call to
1492 read_error_count
= 0; /* clear error count */
1494 if (write_archive_to_stdout
&& record_start_block
!= 0)
1496 archive
= STDOUT_FILENO
;
1497 status
= sys_write_archive_buffer ();
1498 archive
= STDIN_FILENO
;
1499 if (status
!= record_size
)
1500 archive_write_error (status
);
1505 status
= rmtread (archive
, record_start
->buffer
, record_size
);
1506 if (status
== record_size
)
1511 if (status
== SAFE_READ_ERROR
)
1513 archive_read_error ();
1514 continue; /* try again */
1518 short_read (status
);
1521 /* Simple flush write (no multi-volume or label extensions) */
1523 simple_flush_write (size_t level
__attribute__((unused
)))
1527 status
= _flush_write ();
1528 if (status
!= record_size
)
1529 archive_write_error (status
);
1533 bytes_written
+= status
;
1538 /* GNU flush functions. These support multi-volume and archive labels in
1539 GNU and PAX archive formats. */
1542 _gnu_flush_read (void)
1544 size_t status
; /* result from system call */
1546 checkpoint_run (false);
1548 /* Clear the count of errors. This only applies to a single call to
1551 read_error_count
= 0; /* clear error count */
1553 if (write_archive_to_stdout
&& record_start_block
!= 0)
1555 archive
= STDOUT_FILENO
;
1556 status
= sys_write_archive_buffer ();
1557 archive
= STDIN_FILENO
;
1558 if (status
!= record_size
)
1559 archive_write_error (status
);
1562 multi_volume_sync ();
1566 status
= rmtread (archive
, record_start
->buffer
, record_size
);
1567 if (status
== record_size
)
1573 /* The condition below used to include
1574 || (status > 0 && !read_full_records)
1575 This is incorrect since even if new_volume() succeeds, the
1576 subsequent call to rmtread will overwrite the chunk of data
1577 already read in the buffer, so the processing will fail */
1579 || (status
== SAFE_READ_ERROR
&& errno
== ENOSPC
))
1580 && multi_volume_option
)
1582 while (!try_new_volume ())
1584 if (current_block
== record_end
)
1585 /* Necessary for blocking_factor == 1 */
1589 else if (status
== SAFE_READ_ERROR
)
1591 archive_read_error ();
1596 short_read (status
);
1600 gnu_flush_read (void)
1602 flush_read_ptr
= simple_flush_read
; /* Avoid recursion */
1604 flush_read_ptr
= gnu_flush_read
;
1608 _gnu_flush_write (size_t buffer_level
)
1611 union block
*header
;
1617 status
= _flush_write ();
1618 if (status
!= record_size
&& !multi_volume_option
)
1619 archive_write_error (status
);
1624 bytes_written
+= status
;
1627 if (status
== record_size
)
1629 multi_volume_sync ();
1633 if (status
% BLOCKSIZE
)
1635 ERROR ((0, 0, _("write did not end on a block boundary")));
1636 archive_write_error (status
);
1639 /* In multi-volume mode. */
1640 /* ENXIO is for the UNIX PC. */
1641 if (status
< 0 && errno
!= ENOSPC
&& errno
!= EIO
&& errno
!= ENXIO
)
1642 archive_write_error (status
);
1644 real_s_sizeleft
-= status
;
1645 if (!new_volume (ACCESS_WRITE
))
1648 tar_stat_destroy (&dummy
);
1650 increase_volume_number ();
1651 prev_written
+= bytes_written
;
1654 copy_ptr
= record_start
->buffer
+ status
;
1655 copy_size
= buffer_level
- status
;
1657 /* Switch to the next buffer */
1658 record_index
= !record_index
;
1661 if (volume_label_option
)
1662 add_volume_label ();
1665 add_multi_volume_header ();
1667 write_extended (true, &dummy
, find_next_block ());
1668 tar_stat_destroy (&dummy
);
1671 add_chunk_header ();
1672 wrt
= bytes_written
;
1673 header
= find_next_block ();
1674 bufsize
= available_space_after (header
);
1675 while (bufsize
< copy_size
)
1677 memcpy (header
->buffer
, copy_ptr
, bufsize
);
1678 copy_ptr
+= bufsize
;
1679 copy_size
-= bufsize
;
1680 set_next_block_after (header
+ (bufsize
- 1) / BLOCKSIZE
);
1681 header
= find_next_block ();
1682 bufsize
= available_space_after (header
);
1684 memcpy (header
->buffer
, copy_ptr
, copy_size
);
1685 memset (header
->buffer
+ copy_size
, 0, bufsize
- copy_size
);
1686 set_next_block_after (header
+ (copy_size
- 1) / BLOCKSIZE
);
1687 if (multi_volume_option
&& wrt
< bytes_written
)
1689 /* The value of bytes_written has changed while moving data;
1690 that means that flush_archive was executed at least once in
1691 between, and, as a consequence, copy_size bytes were not written
1692 to disk. We need to update sizeleft variables to compensate for
1694 save_sizeleft
+= copy_size
;
1695 multi_volume_sync ();
1701 gnu_flush_write (size_t buffer_level
)
1703 flush_write_ptr
= simple_flush_write
; /* Avoid recursion */
1704 _gnu_flush_write (buffer_level
);
1705 flush_write_ptr
= gnu_flush_write
;
1717 flush_write_ptr (record_size
);
1721 open_archive (enum access_mode wanted_access
)
1723 flush_read_ptr
= gnu_flush_read
;
1724 flush_write_ptr
= gnu_flush_write
;
1726 _open_archive (wanted_access
);
1727 switch (wanted_access
)
1730 if (volume_label_option
)
1731 match_volume_label ();
1735 records_written
= 0;
1736 if (volume_label_option
)
1737 write_volume_label ();
1743 set_volume_start_time ();