1 /* Diff files from a tar archive.
3 Copyright 1988, 1992-1994, 1996-1997, 1999-2001, 2003-2007,
4 2009-2010, 2012-2013 Free Software Foundation, Inc.
6 This file is part of GNU tar.
8 GNU tar is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 GNU tar is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 Written by John Gilmore, on 1987-04-30. */
24 #include <system-ioctl.h>
27 # include <linux/fd.h>
35 /* Nonzero if we are verifying at the moment. */
38 /* File descriptor for the file we are diffing. */
39 static int diff_handle
;
41 /* Area for reading file contents into. */
42 static char *diff_buffer
;
44 /* Initialize for a diff operation. */
49 diff_buffer
= page_aligned_alloc (&ptr
, record_size
);
50 if (listed_incremental_option
)
51 read_directory_file ();
54 /* Sigh about something that differs by writing a MESSAGE to stdlis,
55 given MESSAGE is nonzero. Also set the exit status if not already. */
57 report_difference (struct tar_stat_info
*st
, const char *fmt
, ...)
63 fprintf (stdlis
, "%s: ", quotearg_colon (st
->file_name
));
65 vfprintf (stdlis
, fmt
, ap
);
67 fprintf (stdlis
, "\n");
70 set_exit_status (TAREXIT_DIFFERS
);
73 /* Take a buffer returned by read_and_process and do nothing with it. */
75 process_noop (size_t size
__attribute__ ((unused
)),
76 char *data
__attribute__ ((unused
)))
82 process_rawdata (size_t bytes
, char *buffer
)
84 size_t status
= blocking_read (diff_handle
, diff_buffer
, bytes
);
88 if (status
== SAFE_READ_ERROR
)
90 read_error (current_stat_info
.file_name
);
91 report_difference (¤t_stat_info
, NULL
);
95 report_difference (¤t_stat_info
,
96 ngettext ("Could only read %lu of %lu byte",
97 "Could only read %lu of %lu bytes",
99 (unsigned long) status
, (unsigned long) bytes
);
104 if (memcmp (buffer
, diff_buffer
, bytes
))
106 report_difference (¤t_stat_info
, _("Contents differ"));
113 /* Some other routine wants SIZE bytes in the archive. For each chunk
114 of the archive, call PROCESSOR with the size of the chunk, and the
115 address of the chunk it can work with. The PROCESSOR should return
116 nonzero for success. Once it returns error, continue skipping
117 without calling PROCESSOR anymore. */
120 read_and_process (struct tar_stat_info
*st
, int (*processor
) (size_t, char *))
122 union block
*data_block
;
124 off_t size
= st
->stat
.st_size
;
129 data_block
= find_next_block ();
132 ERROR ((0, 0, _("Unexpected EOF in archive")));
136 data_size
= available_space_after (data_block
);
137 if (data_size
> size
)
139 if (!(*processor
) (data_size
, data_block
->buffer
))
140 processor
= process_noop
;
141 set_next_block_after ((union block
*)
142 (data_block
->buffer
+ data_size
- 1));
149 /* Call either stat or lstat over STAT_DATA, depending on
150 --dereference (-h), for a file which should exist. Diagnose any
151 problem. Return nonzero for success, zero otherwise. */
153 get_stat_data (char const *file_name
, struct stat
*stat_data
)
155 int status
= deref_stat (file_name
, stat_data
);
160 stat_warn (file_name
);
162 stat_error (file_name
);
163 report_difference (¤t_stat_info
, NULL
);
174 struct stat stat_data
;
176 if (!get_stat_data (current_stat_info
.file_name
, &stat_data
))
179 if (!S_ISDIR (stat_data
.st_mode
))
180 report_difference (¤t_stat_info
, _("File type differs"));
181 else if ((current_stat_info
.stat
.st_mode
& MODE_ALL
) !=
182 (stat_data
.st_mode
& MODE_ALL
))
183 report_difference (¤t_stat_info
, _("Mode differs"));
189 char const *file_name
= current_stat_info
.file_name
;
190 struct stat stat_data
;
192 if (!get_stat_data (file_name
, &stat_data
))
194 else if (!S_ISREG (stat_data
.st_mode
))
196 report_difference (¤t_stat_info
, _("File type differs"));
201 if ((current_stat_info
.stat
.st_mode
& MODE_ALL
) !=
202 (stat_data
.st_mode
& MODE_ALL
))
203 report_difference (¤t_stat_info
, _("Mode differs"));
205 if (!sys_compare_uid (&stat_data
, ¤t_stat_info
.stat
))
206 report_difference (¤t_stat_info
, _("Uid differs"));
207 if (!sys_compare_gid (&stat_data
, ¤t_stat_info
.stat
))
208 report_difference (¤t_stat_info
, _("Gid differs"));
210 if (tar_timespec_cmp (get_stat_mtime (&stat_data
),
211 current_stat_info
.mtime
))
212 report_difference (¤t_stat_info
, _("Mod time differs"));
213 if (current_header
->header
.typeflag
!= GNUTYPE_SPARSE
214 && stat_data
.st_size
!= current_stat_info
.stat
.st_size
)
216 report_difference (¤t_stat_info
, _("Size differs"));
221 diff_handle
= openat (chdir_fd
, file_name
, open_read_flags
);
225 open_error (file_name
);
227 report_difference (¤t_stat_info
, NULL
);
233 if (current_stat_info
.is_sparse
)
234 sparse_diff_file (diff_handle
, ¤t_stat_info
);
236 read_and_process (¤t_stat_info
, process_rawdata
);
238 if (atime_preserve_option
== replace_atime_preserve
239 && stat_data
.st_size
!= 0)
241 struct timespec atime
= get_stat_atime (&stat_data
);
242 if (set_file_atime (diff_handle
, chdir_fd
, file_name
, atime
)
244 utime_error (file_name
);
247 status
= close (diff_handle
);
249 close_error (file_name
);
258 struct stat file_data
;
259 struct stat link_data
;
261 if (get_stat_data (current_stat_info
.file_name
, &file_data
)
262 && get_stat_data (current_stat_info
.link_name
, &link_data
)
263 && !sys_compare_links (&file_data
, &link_data
))
264 report_difference (¤t_stat_info
,
265 _("Not linked to %s"),
266 quote (current_stat_info
.link_name
));
273 size_t len
= strlen (current_stat_info
.link_name
);
274 char *linkbuf
= alloca (len
+ 1);
276 int status
= readlinkat (chdir_fd
, current_stat_info
.file_name
,
282 readlink_warn (current_stat_info
.file_name
);
284 readlink_error (current_stat_info
.file_name
);
285 report_difference (¤t_stat_info
, NULL
);
287 else if (status
!= len
288 || strncmp (current_stat_info
.link_name
, linkbuf
, len
) != 0)
289 report_difference (¤t_stat_info
, _("Symlink differs"));
296 struct stat stat_data
;
298 /* FIXME: deal with umask. */
300 if (!get_stat_data (current_stat_info
.file_name
, &stat_data
))
303 if (current_header
->header
.typeflag
== CHRTYPE
304 ? !S_ISCHR (stat_data
.st_mode
)
305 : current_header
->header
.typeflag
== BLKTYPE
306 ? !S_ISBLK (stat_data
.st_mode
)
307 : /* current_header->header.typeflag == FIFOTYPE */
308 !S_ISFIFO (stat_data
.st_mode
))
310 report_difference (¤t_stat_info
, _("File type differs"));
314 if ((current_header
->header
.typeflag
== CHRTYPE
315 || current_header
->header
.typeflag
== BLKTYPE
)
316 && current_stat_info
.stat
.st_rdev
!= stat_data
.st_rdev
)
318 report_difference (¤t_stat_info
, _("Device number differs"));
322 if ((current_stat_info
.stat
.st_mode
& MODE_ALL
) !=
323 (stat_data
.st_mode
& MODE_ALL
))
324 report_difference (¤t_stat_info
, _("Mode differs"));
328 dumpdir_cmp (const char *a
, const char *b
)
337 if (!strchr ("YN", *b
))
339 if (strcmp(a
+ 1, b
+ 1))
341 len
= strlen (a
) + 1;
349 len
= strlen (a
) + 1;
363 diff_dumpdir (struct tar_stat_info
*dir
)
365 const char *dumpdir_buffer
;
369 void (*diag
) (char const *) = NULL
;
370 int fd
= subfile_open (dir
->parent
, dir
->orig_file_name
, open_read_flags
);
373 else if (fstat (fd
, &dir
->stat
))
379 file_removed_diag (dir
->orig_file_name
, false, diag
);
383 dumpdir_buffer
= directory_contents (scan_directory (dir
));
387 if (dumpdir_cmp (dir
->dumpdir
, dumpdir_buffer
))
388 report_difference (dir
, _("Contents differ"));
391 read_and_process (dir
, process_noop
);
397 struct stat stat_data
;
401 if (current_stat_info
.had_trailing_slash
)
407 if (!get_stat_data (current_stat_info
.file_name
, &stat_data
))
410 if (!S_ISREG (stat_data
.st_mode
))
412 report_difference (¤t_stat_info
, _("File type differs"));
417 offset
= OFF_FROM_HEADER (current_header
->oldgnu_header
.offset
);
419 || INT_ADD_OVERFLOW (current_stat_info
.stat
.st_size
, offset
)
420 || stat_data
.st_size
!= current_stat_info
.stat
.st_size
+ offset
)
422 report_difference (¤t_stat_info
, _("Size differs"));
428 fd
= openat (chdir_fd
, current_stat_info
.file_name
, open_read_flags
);
432 open_error (current_stat_info
.file_name
);
433 report_difference (¤t_stat_info
, NULL
);
438 if (lseek (fd
, offset
, SEEK_SET
) < 0)
440 seek_error_details (current_stat_info
.file_name
, offset
);
441 report_difference (¤t_stat_info
, NULL
);
445 read_and_process (¤t_stat_info
, process_rawdata
);
449 close_error (current_stat_info
.file_name
);
452 /* Diff a file against the archive. */
457 set_next_block_after (current_header
);
459 /* Print the block from current_header and current_stat_info. */
464 fprintf (stdlis
, _("Verify "));
465 print_header (¤t_stat_info
, current_header
, -1);
468 switch (current_header
->header
.typeflag
)
471 ERROR ((0, 0, _("%s: Unknown file type '%c', diffed as normal file"),
472 quotearg_colon (current_stat_info
.file_name
),
473 current_header
->header
.typeflag
));
481 /* Appears to be a file. See if it's really a directory. */
483 if (current_stat_info
.had_trailing_slash
)
505 case GNUTYPE_DUMPDIR
:
507 if (is_dumpdir (¤t_stat_info
))
508 diff_dumpdir (¤t_stat_info
);
515 case GNUTYPE_MULTIVOL
:
524 if (removed_prefixes_p ())
527 _("Archive contains file names with leading prefixes removed.")));
530 if (transform_program_p ())
533 _("Archive contains transformed file names.")));
538 _("Verification may fail to locate original files.")));
540 clear_directory_table ();
545 /* Verifying an archive is meant to check if the physical media got it
546 correctly, so try to defeat clever in-memory buffering pertaining to
547 this particular media. On Linux, for example, the floppy drive would
548 not even be accessed for the whole verification.
550 The code was using fsync only when the ioctl is unavailable, but
551 Marty Leisner says that the ioctl does not work when not preceded by
552 fsync. So, until we know better, or maybe to please Marty, let's do it
553 the unbelievable way :-). */
559 ioctl (archive
, FDFLUSH
);
564 struct mtop operation
;
567 operation
.mt_op
= MTBSF
;
568 operation
.mt_count
= 1;
569 if (status
= rmtioctl (archive
, MTIOCTOP
, (char *) &operation
), status
< 0)
572 || (status
= rmtioctl (archive
, MTIOCTOP
, (char *) &operation
),
576 if (rmtlseek (archive
, (off_t
) 0, SEEK_SET
) != 0)
578 /* Lseek failed. Try a different method. */
579 seek_warn (archive_name_array
[0]);
588 access_mode
= ACCESS_READ
;
594 enum read_header status
= read_header (¤t_header
,
598 if (status
== HEADER_FAILURE
)
605 set_next_block_after (current_header
);
606 status
= read_header (¤t_header
, ¤t_stat_info
,
609 while (status
== HEADER_FAILURE
);
612 ngettext ("VERIFY FAILURE: %d invalid header detected",
613 "VERIFY FAILURE: %d invalid headers detected",
616 if (status
== HEADER_END_OF_FILE
)
618 if (status
== HEADER_ZERO_BLOCK
)
620 set_next_block_after (current_header
);
621 if (!ignore_zeros_option
)
623 char buf
[UINTMAX_STRSIZE_BOUND
];
625 status
= read_header (¤t_header
, ¤t_stat_info
,
627 if (status
== HEADER_ZERO_BLOCK
)
629 WARNOPT (WARN_ALONE_ZERO_BLOCK
,
630 (0, 0, _("A lone zero block at %s"),
631 STRINGIFY_BIGINT (current_block_ordinal (), buf
)));
636 decode_header (current_header
, ¤t_stat_info
, ¤t_format
, 1);
638 tar_stat_destroy (¤t_stat_info
);
641 access_mode
= ACCESS_WRITE
;