1 /* Buffer management for tar.
3 Copyright (C) 1988, 1992, 1993, 1994, 1996, 1997, 1999, 2000, 2001,
4 2003, 2004, 2005 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 2, 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. */
33 /* Number of retries before giving up on read. */
34 #define READ_ERROR_MAX 10
36 /* Globbing pattern to append to volume label if initial match failed. */
37 #define VOLUME_LABEL_APPEND " Volume [1-9]*"
41 static tarlong prev_written
; /* bytes written on previous volumes */
42 static tarlong bytes_written
; /* bytes written on this volume */
43 static void *record_buffer
; /* allocated memory */
45 /* FIXME: The following variables should ideally be static to this
46 module. However, this cannot be done yet. The cleanup continues! */
48 union block
*record_start
; /* start of record of archive */
49 union block
*record_end
; /* last+1 block of archive record */
50 union block
*current_block
; /* current block of archive */
51 enum access_mode access_mode
; /* how do we handle the archive */
52 off_t records_read
; /* number of records read from this archive */
53 off_t records_written
; /* likewise, for records written */
55 static off_t record_start_block
; /* block ordinal at record_start */
57 /* Where we write list messages (not errors, not interactions) to. */
60 static void backspace_output (void);
61 static bool new_volume (enum access_mode
);
63 /* PID of child program, if compress_option or remote archive access. */
64 static pid_t child_pid
;
66 /* Error recovery stuff */
67 static int read_error_count
;
69 /* Have we hit EOF yet? */
72 /* Checkpointing counter */
73 static int checkpoint
;
75 static bool read_full_records
= false;
77 /* We're reading, but we just read the last block and it's time to update.
80 As least EXTERN like this one as possible. (?? --gray)
81 FIXME: Either eliminate it or move it to common.h.
83 extern bool time_to_start_writing
;
85 static int volno
= 1; /* which volume of a multi-volume tape we're
87 static int global_volno
= 1; /* volume number to print in external
90 /* The pointer save_name, which is set in function dump_file() of module
91 create.c, points to the original long filename instead of the new,
92 shorter mangled name that is set in start_header() of module create.c.
93 The pointer save_name is only used in multi-volume mode when the file
94 being processed is non-sparse; if a file is split between volumes, the
95 save_name is used in generating the LF_MULTIVOL record on the second
96 volume. (From Pierce Cantrell, 1991-08-13.) */
98 char *save_name
; /* name of the file we are currently writing */
99 off_t save_totsize
; /* total size of file we are writing, only
100 valid if save_name is nonzero */
101 off_t save_sizeleft
; /* where we are in the file we are writing,
102 only valid if save_name is nonzero */
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
;
115 clear_read_error_count (void)
117 read_error_count
= 0;
121 /* Time-related functions */
128 #if HAVE_CLOCK_GETTIME
129 if (clock_gettime (CLOCK_REALTIME
, &start_timespec
) != 0)
131 start_time
= time (0);
137 #if HAVE_CLOCK_GETTIME
139 if (clock_gettime (CLOCK_REALTIME
, &now
) == 0)
140 duration
+= ((now
.tv_sec
- start_timespec
.tv_sec
)
141 + (now
.tv_nsec
- start_timespec
.tv_nsec
) / 1e9
);
144 duration
+= time (NULL
) - start_time
;
149 /* Compression detection */
160 enum compress_type type
;
167 static struct zip_magic
const magic
[] = {
169 { ct_compress
, 2, "\037\235", "compress", "-Z" },
170 { ct_gzip
, 2, "\037\213", "gzip", "-z" },
171 { ct_bzip2
, 3, "BZh", "bzip2", "-j" },
174 #define NMAGIC (sizeof(magic)/sizeof(magic[0]))
176 #define compress_option(t) magic[t].option
177 #define compress_program(t) magic[t].program
179 /* Check if the file ARCHIVE is a compressed archive. */
181 check_compressed_archive ()
183 struct zip_magic
const *p
;
186 /* Prepare global data needed for find_next_block: */
187 record_end
= record_start
; /* set up for 1st record = # 0 */
188 sfr
= read_full_records
;
189 read_full_records
= true; /* Suppress fatal error on reading a partial
193 /* Restore global values */
194 read_full_records
= sfr
;
196 if (tar_checksum (record_start
, true) == HEADER_SUCCESS
)
197 /* Probably a valid header */
200 for (p
= magic
+ 1; p
< magic
+ NMAGIC
; p
++)
201 if (memcmp (record_start
->buffer
, p
->magic
, p
->length
) == 0)
207 /* Open an archive named archive_name_array[0]. Detect if it is
208 a compressed archive of known type and use corresponding decompression
211 open_compressed_archive ()
213 archive
= rmtopen (archive_name_array
[0], O_RDONLY
| O_BINARY
,
214 MODE_RW
, rsh_command_option
);
218 if (!multi_volume_option
)
220 enum compress_type type
= check_compressed_archive ();
225 /* FD is not needed any more */
228 hit_eof
= false; /* It might have been set by find_next_block in
229 check_compressed_archive */
231 /* Open compressed archive */
232 use_compress_program_option
= compress_program (type
);
233 child_pid
= sys_child_open_for_uncompress ();
234 read_full_records
= true;
238 record_end
= record_start
; /* set up for 1st record = # 0 */
245 print_total_written (void)
247 tarlong written
= prev_written
+ bytes_written
;
248 char bytes
[sizeof (tarlong
) * CHAR_BIT
];
249 char abbr
[LONGEST_HUMAN_READABLE
+ 1];
250 char rate
[LONGEST_HUMAN_READABLE
+ 1];
252 int human_opts
= human_autoscale
| human_base_1024
| human_SI
| human_B
;
254 sprintf (bytes
, TARLONG_FORMAT
, written
);
256 /* Amanda 2.4.1p1 looks for "Total bytes written: [0-9][0-9]*". */
257 fprintf (stderr
, _("Total bytes written: %s (%s, %s/s)\n"), bytes
,
258 human_readable (written
, abbr
, human_opts
, 1, 1),
259 (0 < duration
&& written
/ duration
< (uintmax_t) -1
260 ? human_readable (written
/ duration
, rate
, human_opts
, 1, 1)
264 /* Compute and return the block ordinal at current_block. */
266 current_block_ordinal (void)
268 return record_start_block
+ (current_block
- record_start
);
271 /* If the EOF flag is set, reset it, as well as current_block, etc. */
278 current_block
= record_start
;
279 record_end
= record_start
+ blocking_factor
;
280 access_mode
= ACCESS_WRITE
;
284 /* Return the location of the next available input or output block.
285 Return zero for EOF. Once we have returned zero, we just keep returning
286 it, to avoid accidentally going on to the next file on the tape. */
288 find_next_block (void)
290 if (current_block
== record_end
)
295 if (current_block
== record_end
)
301 return current_block
;
304 /* Indicate that we have used all blocks up thru BLOCK. */
306 set_next_block_after (union block
*block
)
308 while (block
>= current_block
)
311 /* Do *not* flush the archive here. If we do, the same argument to
312 set_next_block_after could mean the next block (if the input record
313 is exactly one block long), which is not what is intended. */
315 if (current_block
> record_end
)
319 /* Return the number of bytes comprising the space between POINTER
320 through the end of the current buffer of blocks. This space is
321 available for filling with data, or taking data from. POINTER is
322 usually (but not always) the result of previous find_next_block call. */
324 available_space_after (union block
*pointer
)
326 return record_end
->buffer
- pointer
->buffer
;
329 /* Close file having descriptor FD, and abort if close unsuccessful. */
334 close_error (_("(pipe)"));
337 /* Check the LABEL block against the volume label, seen as a globbing
338 pattern. Return true if the pattern matches. In case of failure,
339 retry matching a volume sequence number before giving up in
340 multi-volume mode. */
342 check_label_pattern (union block
*label
)
347 if (! memchr (label
->header
.name
, '\0', sizeof label
->header
.name
))
350 if (fnmatch (volume_label_option
, label
->header
.name
, 0) == 0)
353 if (!multi_volume_option
)
356 string
= xmalloc (strlen (volume_label_option
)
357 + sizeof VOLUME_LABEL_APPEND
+ 1);
358 strcpy (string
, volume_label_option
);
359 strcat (string
, VOLUME_LABEL_APPEND
);
360 result
= fnmatch (string
, label
->header
.name
, 0) == 0;
365 /* Open an archive file. The argument specifies whether we are
366 reading or writing, or both. */
368 open_archive (enum access_mode wanted_access
)
370 int backed_up_flag
= 0;
374 stdlis
= fopen (index_file_name
, "w");
376 open_error (index_file_name
);
379 stdlis
= to_stdout_option
? stderr
: stdout
;
381 if (record_size
== 0)
382 FATAL_ERROR ((0, 0, _("Invalid value for record_size")));
384 if (archive_names
== 0)
385 FATAL_ERROR ((0, 0, _("No archive name given")));
387 tar_stat_destroy (¤t_stat_info
);
392 page_aligned_alloc (&record_buffer
,
394 + (multi_volume_option
? 2 * BLOCKSIZE
: 0)));
395 if (multi_volume_option
)
398 current_block
= record_start
;
399 record_end
= record_start
+ blocking_factor
;
400 /* When updating the archive, we start with reading. */
401 access_mode
= wanted_access
== ACCESS_UPDATE
? ACCESS_READ
: wanted_access
;
403 read_full_records
= read_full_records_option
;
407 if (use_compress_program_option
)
409 switch (wanted_access
)
412 child_pid
= sys_child_open_for_uncompress ();
413 read_full_records
= true;
414 record_end
= record_start
; /* set up for 1st record = # 0 */
418 child_pid
= sys_child_open_for_compress ();
422 abort (); /* Should not happen */
426 if (wanted_access
== ACCESS_WRITE
427 && strcmp (archive_name_array
[0], "-") == 0)
430 else if (strcmp (archive_name_array
[0], "-") == 0)
432 read_full_records
= true; /* could be a pipe, be safe */
434 FATAL_ERROR ((0, 0, _("Cannot verify stdin/stdout archive")));
436 switch (wanted_access
)
440 enum compress_type type
;
442 archive
= STDIN_FILENO
;
444 type
= check_compressed_archive (archive
);
447 _("Archive is compressed. Use %s option"),
448 compress_option (type
)));
453 archive
= STDOUT_FILENO
;
458 archive
= STDIN_FILENO
;
460 write_archive_to_stdout
= true;
464 else if (verify_option
)
465 archive
= rmtopen (archive_name_array
[0], O_RDWR
| O_CREAT
| O_BINARY
,
466 MODE_RW
, rsh_command_option
);
468 switch (wanted_access
)
471 archive
= open_compressed_archive ();
477 maybe_backup_file (archive_name_array
[0], 1);
480 archive
= rmtcreat (archive_name_array
[0], MODE_RW
,
485 archive
= rmtopen (archive_name_array
[0], O_RDWR
| O_CREAT
| O_BINARY
,
486 MODE_RW
, rsh_command_option
);
491 || (! _isrmt (archive
) && !sys_get_archive_stat ()))
493 int saved_errno
= errno
;
498 open_fatal (archive_name_array
[0]);
501 sys_detect_dev_null_output ();
502 sys_save_archive_dev_ino ();
503 SET_BINARY_MODE (archive
);
505 switch (wanted_access
)
509 record_end
= record_start
; /* set up for 1st record = # 0 */
512 find_next_block (); /* read it in, check for EOF */
514 if (volume_label_option
)
516 union block
*label
= find_next_block ();
519 FATAL_ERROR ((0, 0, _("Archive not labeled to match %s"),
520 quote (volume_label_option
)));
521 if (!check_label_pattern (label
))
522 FATAL_ERROR ((0, 0, _("Volume %s does not match %s"),
523 quote_n (0, label
->header
.name
),
524 quote_n (1, volume_label_option
)));
530 if (volume_label_option
)
532 memset (record_start
, 0, BLOCKSIZE
);
533 if (multi_volume_option
)
534 sprintf (record_start
->header
.name
, "%s Volume 1",
535 volume_label_option
);
537 strcpy (record_start
->header
.name
, volume_label_option
);
539 assign_string (¤t_stat_info
.file_name
,
540 record_start
->header
.name
);
541 current_stat_info
.had_trailing_slash
=
542 strip_trailing_slashes (current_stat_info
.file_name
);
544 record_start
->header
.typeflag
= GNUTYPE_VOLHDR
;
545 TIME_TO_CHARS (start_time
, record_start
->header
.mtime
);
546 finish_header (¤t_stat_info
, record_start
, -1);
552 /* Perform a write to flush the buffer. */
559 if (checkpoint_option
&& !(++checkpoint
% 10))
560 /* TRANSLATORS: This is a ``checkpoint of write operation'',
561 *not* ``Writing a checkpoint''.
562 E.g. in Spanish ``Punto de comprobaci@'on de escritura'',
563 *not* ``Escribiendo un punto de comprobaci@'on'' */
564 WARN ((0, 0, _("Write checkpoint %d"), checkpoint
));
566 if (tape_length_option
&& tape_length_option
<= bytes_written
)
571 else if (dev_null_output
)
572 status
= record_size
;
574 status
= sys_write_archive_buffer ();
575 if (status
!= record_size
&& !multi_volume_option
)
576 archive_write_error (status
);
581 bytes_written
+= status
;
584 if (status
== record_size
)
586 if (multi_volume_option
)
590 assign_string (&real_s_name
,
591 safer_name_suffix (save_name
, false,
592 absolute_names_option
));
593 real_s_totsize
= save_totsize
;
594 real_s_sizeleft
= save_sizeleft
;
598 assign_string (&real_s_name
, 0);
606 /* We're multivol. Panic if we didn't get the right kind of response. */
608 /* ENXIO is for the UNIX PC. */
609 if (status
< 0 && errno
!= ENOSPC
&& errno
!= EIO
&& errno
!= ENXIO
)
610 archive_write_error (status
);
612 /* If error indicates a short write, we just move to the next tape. */
614 if (!new_volume (ACCESS_WRITE
))
618 prev_written
+= bytes_written
;
621 if (volume_label_option
&& real_s_name
)
626 else if (volume_label_option
|| real_s_name
)
634 if (volume_label_option
)
636 memset (record_start
, 0, BLOCKSIZE
);
637 sprintf (record_start
->header
.name
, "%s Volume %d",
638 volume_label_option
, volno
);
639 TIME_TO_CHARS (start_time
, record_start
->header
.mtime
);
640 record_start
->header
.typeflag
= GNUTYPE_VOLHDR
;
641 finish_header (¤t_stat_info
, record_start
, -1);
648 if (volume_label_option
)
651 if (strlen (real_s_name
) > NAME_FIELD_SIZE
)
653 _("%s: file name too long to be stored in a GNU multivolume header, truncated"),
654 quotearg_colon (real_s_name
)));
656 memset (record_start
, 0, BLOCKSIZE
);
658 /* FIXME: Michael P Urban writes: [a long name file] is being written
659 when a new volume rolls around [...] Looks like the wrong value is
660 being preserved in real_s_name, though. */
662 strncpy (record_start
->header
.name
, real_s_name
, NAME_FIELD_SIZE
);
663 record_start
->header
.typeflag
= GNUTYPE_MULTIVOL
;
665 OFF_TO_CHARS (real_s_sizeleft
, record_start
->header
.size
);
666 OFF_TO_CHARS (real_s_totsize
- real_s_sizeleft
,
667 record_start
->oldgnu_header
.offset
);
669 tmp
= verbose_option
;
671 finish_header (¤t_stat_info
, record_start
, -1);
672 verbose_option
= tmp
;
674 if (volume_label_option
)
678 status
= sys_write_archive_buffer ();
679 if (status
!= record_size
)
680 archive_write_error (status
);
682 bytes_written
+= status
;
686 record_start
+= copy_back
;
687 memcpy (current_block
,
688 record_start
+ blocking_factor
- copy_back
,
689 copy_back
* BLOCKSIZE
);
690 current_block
+= copy_back
;
692 if (real_s_sizeleft
>= copy_back
* BLOCKSIZE
)
693 real_s_sizeleft
-= copy_back
* BLOCKSIZE
;
694 else if ((real_s_sizeleft
+ BLOCKSIZE
- 1) / BLOCKSIZE
<= copy_back
)
695 assign_string (&real_s_name
, 0);
698 assign_string (&real_s_name
,
699 safer_name_suffix (save_name
, false,
700 absolute_names_option
));
701 real_s_sizeleft
= save_sizeleft
;
702 real_s_totsize
= save_totsize
;
708 /* Handle write errors on the archive. Write errors are always fatal.
709 Hitting the end of a volume does not cause a write error unless the
710 write was the first record of the volume. */
712 archive_write_error (ssize_t status
)
714 /* It might be useful to know how much was written before the error
719 print_total_written ();
723 write_fatal_details (*archive_name_cursor
, status
, record_size
);
726 /* Handle read errors on the archive. If the read should be retried,
727 return to the caller. */
729 archive_read_error (void)
731 read_error (*archive_name_cursor
);
733 if (record_start_block
== 0)
734 FATAL_ERROR ((0, 0, _("At beginning of tape, quitting now")));
736 /* Read error in mid archive. We retry up to READ_ERROR_MAX times and
737 then give up on reading the archive. */
739 if (read_error_count
++ > READ_ERROR_MAX
)
740 FATAL_ERROR ((0, 0, _("Too many errors, quitting")));
745 short_read (size_t status
)
747 size_t left
; /* bytes left */
748 char *more
; /* pointer to next byte to read */
750 more
= record_start
->buffer
+ status
;
751 left
= record_size
- status
;
753 while (left
% BLOCKSIZE
!= 0
754 || (left
&& status
&& read_full_records
))
757 while ((status
= rmtread (archive
, more
, left
)) == SAFE_READ_ERROR
)
758 archive_read_error ();
763 if (! read_full_records
)
765 unsigned long rest
= record_size
- left
;
768 ngettext ("Unaligned block (%lu byte) in archive",
769 "Unaligned block (%lu bytes) in archive",
774 /* User warned us about this. Fix up. */
780 /* FIXME: for size=0, multi-volume support. On the first record, warn
781 about the problem. */
783 if (!read_full_records
&& verbose_option
> 1
784 && record_start_block
== 0 && status
!= 0)
786 unsigned long rsize
= (record_size
- left
) / BLOCKSIZE
;
788 ngettext ("Record size = %lu block",
789 "Record size = %lu blocks",
794 record_end
= record_start
+ (record_size
- left
) / BLOCKSIZE
;
798 /* Perform a read to flush the buffer. */
802 size_t status
; /* result from system call */
804 if (checkpoint_option
&& !(++checkpoint
% 10))
805 /* TRANSLATORS: This is a ``checkpoint of read operation'',
806 *not* ``Reading a checkpoint''.
807 E.g. in Spanish ``Punto de comprobaci@'on de lectura'',
808 *not* ``Leyendo un punto de comprobaci@'on'' */
809 WARN ((0, 0, _("Read checkpoint %d"), checkpoint
));
811 /* Clear the count of errors. This only applies to a single call to
814 read_error_count
= 0; /* clear error count */
816 if (write_archive_to_stdout
&& record_start_block
!= 0)
818 archive
= STDOUT_FILENO
;
819 status
= sys_write_archive_buffer ();
820 archive
= STDIN_FILENO
;
821 if (status
!= record_size
)
822 archive_write_error (status
);
824 if (multi_volume_option
)
828 assign_string (&real_s_name
,
829 safer_name_suffix (save_name
, false,
830 absolute_names_option
));
831 real_s_sizeleft
= save_sizeleft
;
832 real_s_totsize
= save_totsize
;
836 assign_string (&real_s_name
, 0);
843 status
= rmtread (archive
, record_start
->buffer
, record_size
);
844 if (status
== record_size
)
850 /* The condition below used to include
851 || (status > 0 && !read_full_records)
852 This is incorrect since even if new_volume() succeeds, the
853 subsequent call to rmtread will overwrite the chunk of data
854 already read in the buffer, so the processing will fail */
857 || (status
== SAFE_READ_ERROR
&& errno
== ENOSPC
))
858 && multi_volume_option
)
863 switch (subcommand_option
)
865 case APPEND_SUBCOMMAND
:
867 case UPDATE_SUBCOMMAND
:
868 if (!new_volume (ACCESS_UPDATE
))
873 if (!new_volume (ACCESS_READ
))
878 while ((status
= rmtread (archive
, record_start
->buffer
, record_size
))
880 archive_read_error ();
882 if (status
!= record_size
)
885 cursor
= record_start
;
887 if (cursor
->header
.typeflag
== GNUTYPE_VOLHDR
)
889 if (volume_label_option
)
891 if (!check_label_pattern (cursor
))
893 WARN ((0, 0, _("Volume %s does not match %s"),
894 quote_n (0, cursor
->header
.name
),
895 quote_n (1, volume_label_option
)));
902 fprintf (stdlis
, _("Reading %s\n"), quote (cursor
->header
.name
));
905 else if (volume_label_option
)
906 WARN ((0, 0, _("WARNING: No volume header")));
911 if (cursor
->header
.typeflag
!= GNUTYPE_MULTIVOL
912 || strncmp (cursor
->header
.name
, real_s_name
, NAME_FIELD_SIZE
))
914 WARN ((0, 0, _("%s is not continued on this volume"),
915 quote (real_s_name
)));
920 s1
= UINTMAX_FROM_HEADER (cursor
->header
.size
);
921 s2
= UINTMAX_FROM_HEADER (cursor
->oldgnu_header
.offset
);
922 if (real_s_totsize
!= s1
+ s2
|| s1
+ s2
< s2
)
924 char totsizebuf
[UINTMAX_STRSIZE_BOUND
];
925 char s1buf
[UINTMAX_STRSIZE_BOUND
];
926 char s2buf
[UINTMAX_STRSIZE_BOUND
];
928 WARN ((0, 0, _("%s is the wrong size (%s != %s + %s)"),
929 quote (cursor
->header
.name
),
930 STRINGIFY_BIGINT (save_totsize
, totsizebuf
),
931 STRINGIFY_BIGINT (s1
, s1buf
),
932 STRINGIFY_BIGINT (s2
, s2buf
)));
937 if (real_s_totsize
- real_s_sizeleft
938 != OFF_FROM_HEADER (cursor
->oldgnu_header
.offset
))
940 WARN ((0, 0, _("This volume is out of sequence")));
947 current_block
= cursor
;
951 else if (status
== SAFE_READ_ERROR
)
953 archive_read_error ();
954 goto error_loop
; /* try again */
960 /* Flush the current buffer to/from the archive. */
964 record_start_block
+= record_end
- record_start
;
965 current_block
= record_start
;
966 record_end
= record_start
+ blocking_factor
;
968 if (access_mode
== ACCESS_READ
&& time_to_start_writing
)
970 access_mode
= ACCESS_WRITE
;
971 time_to_start_writing
= false;
990 /* Backspace the archive descriptor by one record worth. If it's a
991 tape, MTIOCTOP will work. If it's something else, try to seek on
992 it. If we can't seek, we lose! */
994 backspace_output (void)
998 struct mtop operation
;
1000 operation
.mt_op
= MTBSR
;
1001 operation
.mt_count
= 1;
1002 if (rmtioctl (archive
, MTIOCTOP
, (char *) &operation
) >= 0)
1004 if (errno
== EIO
&& rmtioctl (archive
, MTIOCTOP
, (char *) &operation
) >= 0)
1010 off_t position
= rmtlseek (archive
, (off_t
) 0, SEEK_CUR
);
1012 /* Seek back to the beginning of this record and start writing there. */
1014 position
-= record_size
;
1017 if (rmtlseek (archive
, position
, SEEK_SET
) != position
)
1019 /* Lseek failed. Try a different method. */
1022 _("Cannot backspace archive file; it may be unreadable without -i")));
1024 /* Replace the first part of the record with NULs. */
1026 if (record_start
->buffer
!= output_start
)
1027 memset (record_start
->buffer
, 0,
1028 output_start
- record_start
->buffer
);
1034 seek_archive (off_t size
)
1036 off_t start
= current_block_ordinal ();
1039 off_t skipped
= (blocking_factor
- (current_block
- record_start
));
1041 size
-= skipped
* BLOCKSIZE
;
1043 if (size
< record_size
)
1047 /* Compute number of records to skip */
1048 nrec
= size
/ record_size
;
1049 offset
= rmtlseek (archive
, nrec
* record_size
, SEEK_CUR
);
1053 if (offset
% record_size
)
1054 FATAL_ERROR ((0, 0, _("rmtlseek not stopped at a record boundary")));
1056 /* Convert to number of records */
1057 offset
/= BLOCKSIZE
;
1058 /* Compute number of skipped blocks */
1059 nblk
= offset
- start
;
1061 /* Update buffering info */
1062 records_read
+= nblk
/ blocking_factor
;
1063 record_start_block
= offset
- blocking_factor
;
1064 current_block
= record_end
;
1069 /* Close the archive file. */
1071 close_archive (void)
1073 if (time_to_start_writing
|| access_mode
== ACCESS_WRITE
)
1076 sys_drain_input_pipe ();
1078 compute_duration ();
1082 if (rmtclose (archive
) != 0)
1083 close_warn (*archive_name_cursor
);
1085 sys_wait_for_child (child_pid
);
1087 tar_stat_destroy (¤t_stat_info
);
1092 free (record_buffer
);
1095 /* Called to initialize the global volume number. */
1097 init_volume_number (void)
1099 FILE *file
= fopen (volno_file_option
, "r");
1103 if (fscanf (file
, "%d", &global_volno
) != 1
1104 || global_volno
< 0)
1105 FATAL_ERROR ((0, 0, _("%s: contains invalid volume number"),
1106 quotearg_colon (volno_file_option
)));
1108 read_error (volno_file_option
);
1109 if (fclose (file
) != 0)
1110 close_error (volno_file_option
);
1112 else if (errno
!= ENOENT
)
1113 open_error (volno_file_option
);
1116 /* Called to write out the closing global volume number. */
1118 closeout_volume_number (void)
1120 FILE *file
= fopen (volno_file_option
, "w");
1124 fprintf (file
, "%d\n", global_volno
);
1126 write_error (volno_file_option
);
1127 if (fclose (file
) != 0)
1128 close_error (volno_file_option
);
1131 open_error (volno_file_option
);
1134 /* We've hit the end of the old volume. Close it and open the next one.
1135 Return nonzero on success.
1138 new_volume (enum access_mode mode
)
1140 static FILE *read_file
;
1143 if (!read_file
&& !info_script_option
)
1144 /* FIXME: if fopen is used, it will never be closed. */
1145 read_file
= archive
== STDIN_FILENO
? fopen (TTY_NAME
, "r") : stdin
;
1152 if (rmtclose (archive
) != 0)
1153 close_warn (*archive_name_cursor
);
1156 if (global_volno
< 0)
1157 FATAL_ERROR ((0, 0, _("Volume number overflow")));
1159 archive_name_cursor
++;
1160 if (archive_name_cursor
== archive_name_array
+ archive_names
)
1162 archive_name_cursor
= archive_name_array
;
1169 /* We have to prompt from now on. */
1171 if (info_script_option
)
1173 if (volno_file_option
)
1174 closeout_volume_number ();
1175 if (system (info_script_option
) != 0)
1176 FATAL_ERROR ((0, 0, _("%s command failed"),
1177 quote (info_script_option
)));
1182 char input_buffer
[80];
1184 fputc ('\007', stderr
);
1186 _("Prepare volume #%d for %s and hit return: "),
1187 global_volno
, quote (*archive_name_cursor
));
1190 if (fgets (input_buffer
, sizeof input_buffer
, read_file
) == 0)
1192 WARN ((0, 0, _("EOF where user reply was expected")));
1194 if (subcommand_option
!= EXTRACT_SUBCOMMAND
1195 && subcommand_option
!= LIST_SUBCOMMAND
1196 && subcommand_option
!= DIFF_SUBCOMMAND
)
1197 WARN ((0, 0, _("WARNING: Archive is incomplete")));
1201 if (input_buffer
[0] == '\n'
1202 || input_buffer
[0] == 'y'
1203 || input_buffer
[0] == 'Y')
1206 switch (input_buffer
[0])
1210 /* FIXME: Might it be useful to disable the '!' command? */
1211 fprintf (stderr
, _("\
1212 n [name] Give a new file name for the next (and subsequent) volume(s)\n\
1214 ! Spawn a subshell\n\
1215 ? Print this list\n"));
1222 WARN ((0, 0, _("No new volume; exiting.\n")));
1224 if (subcommand_option
!= EXTRACT_SUBCOMMAND
1225 && subcommand_option
!= LIST_SUBCOMMAND
1226 && subcommand_option
!= DIFF_SUBCOMMAND
)
1227 WARN ((0, 0, _("WARNING: Archive is incomplete")));
1232 /* Get new file name. */
1235 char *name
= &input_buffer
[1];
1238 for (name
= input_buffer
+ 1;
1239 *name
== ' ' || *name
== '\t';
1243 for (cursor
= name
; *cursor
&& *cursor
!= '\n'; cursor
++)
1247 /* FIXME: the following allocation is never reclaimed. */
1248 *archive_name_cursor
= xstrdup (name
);
1259 if (strcmp (archive_name_cursor
[0], "-") == 0)
1261 read_full_records
= true;
1262 archive
= STDIN_FILENO
;
1264 else if (verify_option
)
1265 archive
= rmtopen (*archive_name_cursor
, O_RDWR
| O_CREAT
, MODE_RW
,
1266 rsh_command_option
);
1271 archive
= rmtopen (*archive_name_cursor
, O_RDONLY
, MODE_RW
,
1272 rsh_command_option
);
1277 maybe_backup_file (*archive_name_cursor
, 1);
1278 archive
= rmtcreat (*archive_name_cursor
, MODE_RW
,
1279 rsh_command_option
);
1283 archive
= rmtopen (*archive_name_cursor
, O_RDWR
| O_CREAT
, MODE_RW
,
1284 rsh_command_option
);
1290 open_warn (*archive_name_cursor
);
1291 if (!verify_option
&& mode
== ACCESS_WRITE
&& backup_option
)
1292 undo_last_backup ();
1296 SET_BINARY_MODE (archive
);