1 /* Update a tar archive.
3 Copyright (C) 1988, 1992, 1994, 1996, 1997, 1999, 2000, 2001, 2003
4 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any later
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14 Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Implement the 'r', 'u' and 'A' options for tar. 'A' means that the
21 file names are tar files, and they should simply be appended to the end
22 of the archive. No attempt is made to record the reads from the args; if
23 they're on raw tape or something like that, it'll probably lose... */
29 /* FIXME: This module should not directly handle the following variable,
30 instead, this should be done in buffer.c only. */
31 extern union block
*current_block
;
33 /* We've hit the end of the old stuff, and its time to start writing new
34 stuff to the tape. This involves seeking back one record and
35 re-writing the current record (which has been changed).
36 FIXME: Either eliminate it or move it to common.h.
38 bool time_to_start_writing
;
40 /* Pointer to where we started to write in the first record we write out.
41 This is used if we can't backspace the output and have to null out the
42 first part of the record. */
45 /* Catenate file PATH to the archive without creating a header for it.
46 It had better be a tar file or the archive is screwed. */
48 append_file (char *path
)
50 int handle
= open (path
, O_RDONLY
| O_BINARY
);
51 struct stat stat_data
;
59 if (fstat (handle
, &stat_data
) != 0)
63 off_t bytes_left
= stat_data
.st_size
;
65 while (bytes_left
> 0)
67 union block
*start
= find_next_block ();
68 size_t buffer_size
= available_space_after (start
);
70 char buf
[UINTMAX_STRSIZE_BOUND
];
72 if (bytes_left
< buffer_size
)
74 buffer_size
= bytes_left
;
75 status
= buffer_size
% BLOCKSIZE
;
77 memset (start
->buffer
+ bytes_left
, 0, BLOCKSIZE
- status
);
80 status
= safe_read (handle
, start
->buffer
, buffer_size
);
82 read_fatal_details (path
, stat_data
.st_size
- bytes_left
,
86 ngettext ("%s: File shrank by %s byte",
87 "%s: File shrank by %s bytes",
89 quotearg_colon (path
),
90 STRINGIFY_BIGINT (bytes_left
, buf
)));
94 set_next_block_after (start
+ (status
- 1) / BLOCKSIZE
);
98 if (close (handle
) != 0)
102 /* Implement the 'r' (add files to end of archive), and 'u' (add files
103 to end of archive if they aren't there, or are more up to date than
104 the version in the archive) commands. */
106 update_archive (void)
108 enum read_header previous_status
= HEADER_STILL_UNREAD
;
112 open_archive (ACCESS_UPDATE
);
116 enum read_header status
= read_header (false);
120 case HEADER_STILL_UNREAD
:
121 case HEADER_SUCCESS_EXTENDED
:
128 if (subcommand_option
== UPDATE_SUBCOMMAND
129 && (name
= name_scan (current_stat_info
.file_name
)) != NULL
)
132 enum archive_format unused
;
134 decode_header (current_header
, ¤t_stat_info
, &unused
, 0);
135 chdir_do (name
->change_dir
);
136 if (deref_stat (dereference_option
,
137 current_stat_info
.file_name
, &s
) == 0
138 && s
.st_mtime
<= current_stat_info
.stat
.st_mtime
)
139 add_avoided_name (current_stat_info
.file_name
);
145 case HEADER_ZERO_BLOCK
:
146 current_block
= current_header
;
150 case HEADER_END_OF_FILE
:
155 set_next_block_after (current_header
);
156 switch (previous_status
)
158 case HEADER_STILL_UNREAD
:
159 WARN ((0, 0, _("This does not look like a tar archive")));
163 case HEADER_ZERO_BLOCK
:
164 ERROR ((0, 0, _("Skipping to next header")));
170 case HEADER_END_OF_FILE
:
171 case HEADER_SUCCESS_EXTENDED
:
177 previous_status
= status
;
181 time_to_start_writing
= true;
182 output_start
= current_block
->buffer
;
187 while ((path
= name_from_list ()) != NULL
)
189 if (excluded_name (path
))
191 if (interactive_option
&& !confirm ("add", path
))
193 if (subcommand_option
== CAT_SUBCOMMAND
)
196 dump_file (path
, 1, (dev_t
) 0);