source: MondoRescue/branches/stable/mondo/src/mondorestore/mondo-rstr-compare.c@ 1591

Last change on this file since 1591 was 1591, checked in by Bruno Cornec, 17 years ago
  • Improve tape support doc (Tilman Schmidt <tilman_at_imap.cc>)
  • mdadm.conf files added to deplist
  • Fix gentoo issues again (Francesco Talamona ti.liame_at_email.it)
  • Fix bug #187 (Scott Cummings rsc_at_usfamily.net)

(merge -r1579:1590 $SVN_M/branches/2.2.5)

  • Property svn:keywords set to Id
File size: 20.2 KB
RevLine 
[1]1/***************************************************************************
[1080]2* compares mondoarchive data
3* $Id: mondo-rstr-compare.c 1591 2007-08-01 22:26:40Z bruno $
[1]4*/
5
6#include <pthread.h>
[1067]7#include "my-stuff.h"
[1]8#include "../common/mondostructures.h"
9#include "../common/libmondo.h"
[1125]10#include "mr_msg.h"
[1200]11#include "mr_mem.h"
[1555]12#include "mr_gettext.h"
13
[1]14#include "mr-externs.h"
15#include "mondo-rstr-compare.h"
16#include "mondo-restore-EXT.h"
17#include "mondo-rstr-tools-EXT.h"
18
[1326]19extern char *MONDO_LOGFILE;
20
[128]21//static char cvsid[] = "$Id: mondo-rstr-compare.c 1591 2007-08-01 22:26:40Z bruno $";
[1]22
[128]23void popup_changelist_from_file(char *);
[1]24
25
26/**
27 * @addtogroup LLcompareGroup
28 * @{
29 */
30/**
31 * Compare biggiefile number @p bigfileno with the filesystem mounted on @p MNT_RESTORING.
32 * @param bkpinfo The backup information structure. Only used in insist_on_this_cd_number().
33 * @param bigfileno The biggiefile number (starting from 0) to compare.
34 * @note This function uses an MD5 checksum.
35 */
[128]36int compare_a_biggiefile(struct s_bkpinfo *bkpinfo, long bigfileno)
[1]37{
38
[1200]39 FILE *fin = NULL;
40 FILE *fout = NULL;
[1]41
42 /** needs malloc *******/
[1200]43 char *checksum = NULL;
44 char *original_cksum = NULL;
45 char *bigfile_fname = NULL;
46 char *tmp = NULL;
47 char *command = NULL;
[1]48
[1200]49 char *p = NULL;
50 int i = 0;
51 size_t n = 0;
[128]52 int retval = 0;
53
54 struct s_filename_and_lstat_info biggiestruct;
55
56 assert(bkpinfo != NULL);
[1]57
[128]58 if (!does_file_exist(slice_fname(bigfileno, 0, ARCHIVES_PATH, ""))) {
59 if (does_file_exist(MNT_CDROM "/archives/NOT-THE-LAST")) {
60 insist_on_this_cd_number(bkpinfo, (++g_current_media_number));
61 } else {
[1200]62 mr_msg(2, "No CD's left. No biggiefiles left. No problem.");
[128]63 return (0);
64 }
[1]65 }
[128]66 if (!(fin = fopen(slice_fname(bigfileno, 0, ARCHIVES_PATH, ""), "r"))) {
[1200]67 log_to_screen(_("Cannot open bigfile %ld (%s)'s info file"),
68 bigfileno + 1, slice_fname(bigfileno, 0, ARCHIVES_PATH, ""));
[128]69 return (1);
[1]70 }
[128]71 fread((void *) &biggiestruct, 1, sizeof(biggiestruct), fin);
72 paranoid_fclose(fin);
73
[1200]74 mr_asprintf(&bigfile_fname, biggiestruct.filename);
75 mr_msg(2, "biggiestruct.filename = %s", bigfile_fname);
76 if (!biggiestruct.checksum[0]) {
77 mr_msg(2, "Warning - %s has no checksum", bigfile_fname);
78 } else {
79 mr_asprintf(&checksum, biggiestruct.checksum);
80 mr_msg(2, "biggiestruct.checksum = %s", checksum);
81 }
[128]82
83 if (!g_text_mode) {
[1200]84 mr_asprintf(&tmp, _("Comparing %s"), bigfile_fname);
85 newtDrawRootText(0, 22, tmp);
[128]86 newtRefresh();
[1200]87 mr_free(tmp);
[1]88 }
[1200]89
90 if (!strncmp(bigfile_fname, "/dev/", 5)) {
91 mr_msg(2, _("Ignoring device %s"), bigfile_fname);
92 mr_free(bigfile_fname);
93 return(0);
[128]94 }
[1200]95 mr_asprintf(&command,
[1326]96 "md5sum \"%s%s\" > /tmp/md5sum.txt 2> /tmp/errors",
[1200]97 MNT_RESTORING, bigfile_fname);
98 mr_msg(2, command);
99 if (system(command)) {
[128]100 log_OS_error("Warning - command failed");
[1326]101 mr_asprintf(&tmp, "cat /tmp/errors >> %s 2> /dev/null", MONDO_LOGFILE);
102 paranoid_system(tmp);
103 mr_free(tmp);
[1200]104 mr_free(command);
105 mr_free(bigfile_fname);
[128]106 return (1);
107 } else {
[1200]108 mr_free(command);
[128]109 if (!(fin = fopen("/tmp/md5sum.txt", "r"))) {
[1200]110 mr_msg(2, "Unable to open /tmp/md5sum.txt; can't get live checksum");
111 mr_free(bigfile_fname);
[128]112 return (1);
113 } else {
[1200]114 mr_getline(&original_cksum, &n, fin);
[128]115 paranoid_fclose(fin);
[1200]116 for (i = strlen(original_cksum);
[128]117 i > 0 && original_cksum[i - 1] < 32; i--);
118 original_cksum[i] = '\0';
[1200]119 p = (char *) strchr(original_cksum, ' ');
[128]120 if (p) {
121 *p = '\0';
122 }
123 }
124 }
[1200]125 if (!strcmp(checksum, original_cksum) != 0) {
126 mr_msg(1, "bigfile #%ld ('%s') ... OK", bigfileno + 1, bigfile_fname);
[128]127 } else {
[1200]128 mr_msg(1, "bigfile #%ld ('%s') ... changed", bigfileno + 1, bigfile_fname);
[128]129 retval++;
130 }
[1200]131 mr_free(original_cksum);
132 mr_free(checksum);
133
[128]134 if (retval) {
135 if (!(fout = fopen("/tmp/changed.txt", "a"))) {
136 fatal_error("Cannot openout changed.txt");
137 }
[1200]138 fprintf(fout, "%s\n", bigfile_fname);
[128]139 paranoid_fclose(fout);
140 }
[1080]141 mr_free(bigfile_fname);
[1]142
[128]143 return (retval);
[1]144}
145
146/**************************************************************************
147 *END_COMPARE_A_BIGGIEFILE *
148 **************************************************************************/
149
150
151/**
152 * Compare all biggiefiles in the backup.
153 * @param bkpinfo The backup information structure. Used only in compare_a_biggiefile().
154 * @return 0 for success, nonzero for failure.
155 */
[128]156int compare_all_biggiefiles(struct s_bkpinfo *bkpinfo)
[1]157{
[128]158 int retval = 0;
[1200]159 int res = 0;
160 long noof_biggiefiles = 0L, bigfileno = 0L;
161 char *tmp = NULL;
[1]162
[128]163 assert(bkpinfo != NULL);
[1108]164 mr_msg(1, "Comparing biggiefiles");
[128]165
166 if (length_of_file(BIGGIELIST) < 6) {
[1108]167 mr_msg(1,
[128]168 "OK, really teeny-tiny biggielist; not comparing biggiefiles");
169 return (0);
170 }
171 noof_biggiefiles = count_lines_in_file(BIGGIELIST);
172 if (noof_biggiefiles <= 0) {
[1108]173 mr_msg(1, "OK, no biggiefiles; not comparing biggiefiles");
[128]174 return (0);
175 }
176 mvaddstr_and_log_it(g_currentY, 0,
[1200]177 _
178 ("Comparing large files "));
179 open_progress_form(_("Comparing large files"),
180 _("I am now comparing the large files"),
181 _("against the filesystem. Please wait."), "",
[128]182 noof_biggiefiles);
183 for (bigfileno = 0; bigfileno < noof_biggiefiles; bigfileno++) {
[1200]184 mr_asprintf(&tmp, "Comparing big file #%ld", bigfileno + 1);
[1108]185 mr_msg(1, tmp);
[128]186 update_progress_form(tmp);
[1200]187 mr_free(tmp);
188
[128]189 res = compare_a_biggiefile(bkpinfo, bigfileno);
190 retval += res;
191 g_current_progress++;
192 }
193 close_progress_form();
[1200]194 /* BERLIOS: useless ?
[128]195 return (0);
[1200]196 */
[128]197 if (retval) {
[1200]198 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
[128]199 } else {
[1200]200 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
[128]201 }
202 return (retval);
[1]203}
[128]204
[1]205/**************************************************************************
206 *END_COMPARE_ALL_BIGGIEFILES *
207 **************************************************************************/
208
209
210/**
211 * Compare afioball @p tarball_fname against the filesystem.
212 * You must be chdir()ed to the directory where the filesystem is mounted
213 * before you call this function.
214 * @param tarball_fname The filename of the tarball to compare.
215 * @param current_tarball_number The fileset number contained in @p tarball_fname.
216 * @return 0 for success, nonzero for failure.
217 */
[128]218int compare_a_tarball(char *tarball_fname, int current_tarball_number)
[1]219{
[128]220 int retval = 0;
[1200]221 int res = 0;
222 long noof_lines = 0L;
223 long archiver_errors = 0L;
224 bool use_star = FALSE;
[128]225
[1200]226 char *command = NULL;
227 char *tmp = NULL;
228 char *filelist_name = NULL;
229 char *logfile = NULL;
230 char *archiver_exe = NULL;
231 char *compressor_exe = NULL;
[1]232
[128]233 use_star = (strstr(tarball_fname, ".star")) ? TRUE : FALSE;
234 assert_string_is_neither_NULL_nor_zerolength(tarball_fname);
[1200]235 mr_asprintf(&filelist_name, MNT_CDROM "/archives/filelist.%d",
[128]236 current_tarball_number);
[1]237
[128]238 noof_lines = count_lines_in_file(filelist_name);
[1200]239 mr_free(filelist_name);
[128]240
241 if (strstr(tarball_fname, ".bz2")) {
[1200]242 mr_asprintf(&compressor_exe, "bzip2");
[998]243 } else if (strstr(tarball_fname, ".gz")) {
[1200]244 mr_asprintf(&compressor_exe, "gzip");
[128]245 } else if (strstr(tarball_fname, ".lzo")) {
[1200]246 mr_asprintf(&compressor_exe, "lzop");
[128]247 } else {
[1200]248 compressor_exe = NULL;
[1]249 }
[128]250
251 if (use_star) {
[1200]252 mr_asprintf(&archiver_exe, "star -bz");
[128]253 } else {
[1200]254 mr_asprintf(&archiver_exe, "afio");
[1]255 }
[128]256
[1200]257 if (compressor_exe != NULL) {
258 if (!find_home_of_exe(compressor_exe)) {
[128]259 fatal_error("(compare_a_tarball) Compression program missing");
260 }
[1200]261 if (use_star) {
262 if (strcmp(compressor_exe, "bzip2")) {
[128]263 fatal_error
264 ("(compare_a_tarball) Please use only bzip2 with star");
265 }
[1200]266 } else {
267 tmp = compressor_exe;
268 mr_asprintf(&compressor_exe, "-P %s -Z", tmp);
269 mr_free(tmp);
[128]270 }
271 }
[1]272
273#ifdef __FreeBSD__
274#define BUFSIZE 512L
275#else
276#define BUFSIZE (1024L*1024L)/TAPE_BLOCK_SIZE
277#endif
[1200]278
279 mr_asprintf(&logfile, "/tmp/afio.log.%d", current_tarball_number);
[128]280 if (use_star) // doesn't use compressor_exe
281 {
[1200]282 mr_asprintf(&command,
[128]283 "%s -diff H=star file=%s >> %s 2>> %s",
284 archiver_exe, tarball_fname, logfile, logfile);
285 } else {
[1200]286 mr_asprintf(&command,
[128]287 "%s -r -b %ld -M 16m -c %ld %s %s >> %s 2>> %s",
288 archiver_exe,
289 TAPE_BLOCK_SIZE,
290 BUFSIZE, compressor_exe, tarball_fname, logfile, logfile);
291 }
[1]292#undef BUFSIZE
[1200]293 mr_free(archiver_exe);
294 mr_free(compressor_exe);
[1]295
[128]296 res = system(command);
297 retval += res;
298 if (res) {
299 log_OS_error(command);
[1591]300 log_msg(2, tmp);
[128]301 }
[1200]302 mr_free(command);
303
[128]304 if (length_of_file(logfile) > 5) {
[1200]305 mr_asprintf(&command,
[1293]306 "sed s/': \\\"'/\\|/ %s | sed s/'\\\": '/\\|/ | cut -d'|' -f2 | sort -u | grep -vE \"^dev/.*\" >> /tmp/changed.txt",
[128]307 logfile);
308 system(command);
[1200]309 mr_free(command);
[128]310 archiver_errors = count_lines_in_file(logfile);
311 } else {
312 archiver_errors = 0;
313 }
314 if (archiver_errors) {
[1200]315 mr_msg(1, "Differences found while processing fileset #%d ",
[128]316 current_tarball_number);
317 }
318 unlink(logfile);
[1080]319 mr_free(logfile);
[128]320 return (retval);
[1]321}
[128]322
[1]323/**************************************************************************
324 *END_COMPARE_A_TARBALL *
325 **************************************************************************/
326
327
328/**
329 * Compare all afioballs in this backup.
330 * @param bkpinfo The backup media structure. Passed to other functions.
331 * @return 0 for success, nonzero for failure.
332 */
[128]333int compare_all_tarballs(struct s_bkpinfo *bkpinfo)
[1]334{
[128]335 int retval = 0;
[1200]336 int res = 0;
[128]337 int current_tarball_number = 0;
[1]338
[1200]339 char *tarball_fname = NULL;
340 char *progress_str = NULL;
341 char *tmp = NULL;
342 long max_val = 0L;
[1]343
[1200]344 assert(bkpinfo != NULL);
345 mvaddstr_and_log_it(g_currentY, 0, _("Comparing archives"));
[128]346 malloc_string(tmp);
347 read_cfg_var(g_mondo_cfg_file, "last-filelist-number", tmp);
348
349 max_val = atol(tmp);
[1200]350 mr_free(tmp);
351
352 mr_asprintf(&progress_str, _("Comparing with %s #%d "),
353 bkpinfo->backup_media_string,
[128]354 g_current_media_number);
355
[1200]356 open_progress_form(_("Comparing files"),
357 _("Comparing tarballs against filesystem."),
358 _("Please wait. This may take some time."),
[128]359 progress_str, max_val);
360
361 log_to_screen(progress_str);
362
363 for (;;) {
364 insist_on_this_cd_number(bkpinfo, g_current_media_number);
365 update_progress_form(progress_str);
[1200]366 mr_asprintf(&tarball_fname,
[128]367 MNT_CDROM "/archives/%d.afio.bz2", current_tarball_number);
368
369 if (!does_file_exist(tarball_fname)) {
[1200]370 mr_free(tarball_fname);
371 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.afio.lzo",
[128]372 current_tarball_number);
373 }
374 if (!does_file_exist(tarball_fname)) {
[1200]375 mr_free(tarball_fname);
376 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.afio.",
[128]377 current_tarball_number);
378 }
379 if (!does_file_exist(tarball_fname)) {
[1200]380 mr_free(tarball_fname);
381 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.star.bz2",
[128]382 current_tarball_number);
383 }
384 if (!does_file_exist(tarball_fname)) {
[1200]385 mr_free(tarball_fname);
386 mr_asprintf(&tarball_fname, MNT_CDROM "/archives/%d.star.",
[128]387 current_tarball_number);
388 }
389 if (!does_file_exist(tarball_fname)) {
390 if (!does_file_exist(MNT_CDROM "/archives/NOT-THE-LAST") ||
391 system("find " MNT_CDROM
392 "/archives/slice* > /dev/null 2> /dev/null")
393 == 0) {
[1108]394 mr_msg(2, "OK, I think I'm done with tarballs...");
[1200]395 mr_free(tarball_fname);
[128]396 break;
397 }
[1108]398 mr_msg(2, "OK, I think it's time for another CD...");
[128]399 g_current_media_number++;
[1200]400 mr_free(progress_str);
401 mr_asprintf(&progress_str, _("Comparing with %s #%d "),
402 bkpinfo->backup_media_string,
[128]403 g_current_media_number);
404 log_to_screen(progress_str);
405 } else {
406 res = compare_a_tarball(tarball_fname, current_tarball_number);
407 g_current_progress++;
408 current_tarball_number++;
409 }
[1200]410 mr_free(tarball_fname);
[1]411 }
[1200]412 mr_free(progress_str);
[128]413 close_progress_form();
[1200]414
[128]415 if (retval) {
[1200]416 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
[128]417 } else {
[1200]418 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
[1]419 }
[128]420 return (retval);
[1]421}
[128]422
[1]423/**************************************************************************
424 *END_COMPARE_ALL_TARBALLS *
425 **************************************************************************/
426
427/* @} - end LLcompareGroup */
428
429
430/**
431 * @addtogroup compareGroup
432 * @{
433 */
434/**
435 * Compare all data on a CD-R/CD-RW/DVD/ISO/NFS-based backup.
436 * @param bkpinfo The backup information structure. Passed to other functions.
437 * @return 0 for success, nonzero for failure.
438 */
[128]439int compare_to_CD(struct s_bkpinfo *bkpinfo)
[1]440{
441 /** needs malloc *********/
[1200]442 char *tmp = NULL;
443 char *cwd = NULL;
444 char *new = NULL;
445 char *command = NULL;
[128]446 int resA = 0;
447 int resB = 0;
[1200]448 long noof_changed_files = 0L;
[1]449
[128]450 malloc_string(cwd);
451 malloc_string(new);
[1]452
[128]453 assert(bkpinfo != NULL);
454
455 getcwd(cwd, MAX_STR_LEN - 1);
456 chdir(bkpinfo->restore_path);
457 getcwd(new, MAX_STR_LEN - 1);
458 insist_on_this_cd_number(bkpinfo, g_current_media_number);
459 unlink("/tmp/changed.txt");
460
461 resA = compare_all_tarballs(bkpinfo);
462 resB = compare_all_biggiefiles(bkpinfo);
463 chdir(cwd);
464 noof_changed_files = count_lines_in_file("/tmp/changed.txt");
465 if (noof_changed_files) {
[1200]466 log_to_screen(_("%ld files do not match the backup "),
[128]467 noof_changed_files);
[1200]468 mr_asprintf(&command, "cat /tmp/changed.txt >> %s", MONDO_LOGFILE);
[128]469 paranoid_system(command);
[1200]470 mr_free(command);
[128]471 } else {
[1200]472 mr_asprintf(&tmp, _("All files match the backup "));
[128]473 mvaddstr_and_log_it(g_currentY++, 0, tmp);
474 log_to_screen(tmp);
[1200]475 mr_free(tmp);
[128]476 }
477
[1080]478 mr_free(cwd);
479 mr_free(new);
[128]480
481 return (resA + resB);
[1]482}
483
484/**************************************************************************
485 *END_COMPARE_TO_CD *
486 **************************************************************************/
487
488
489/**
490 * Compare all data in the user's backup.
491 * This function will mount filesystems, compare afioballs and biggiefiles,
492 * and show the user the differences.
493 * @param bkpinfo The backup information structure. Passed to other functions.
494 * @param mountlist The mountlist containing partitions to mount.
495 * @param raidlist The raidlist containing the user's RAID devices.
496 * @return The number of errors/differences found.
497 */
498int
[128]499compare_mode(struct s_bkpinfo *bkpinfo,
500 struct mountlist_itself *mountlist,
501 struct raidlist_itself *raidlist)
[1]502{
[128]503 int retval = 0;
[1200]504 long q = 0L;
505 char *tmp = NULL;
[1591]506 char *new = NULL;
507 char *cwd = NULL;
[1]508
[1591]509 malloc_string(new);
510 malloc_string(cwd);
511
[1]512 /**************************************************************************
513 * also deletes tmp/filelist.full & tmp/biggielist.txt _and_ tries to *
514 * restore them from start of tape, if available *
515 **************************************************************************/
[128]516 assert(bkpinfo != NULL);
517 assert(mountlist != NULL);
518 assert(raidlist != NULL);
[1]519
[128]520 while (get_cfg_file_from_archive(bkpinfo)) {
521 if (!ask_me_yes_or_no
[1200]522 (_
523 ("Failed to find config file/archives. Choose another source?")))
[128]524 {
525 fatal_error("Unable to find config file/archives. Aborting.");
526 }
527 interactively_obtain_media_parameters_from_user(bkpinfo, FALSE);
528 }
[1]529
[128]530 read_cfg_file_into_bkpinfo(g_mondo_cfg_file, bkpinfo);
531 g_current_media_number = 1;
[1200]532 mvaddstr_and_log_it(1, 30, _("Comparing Automatically"));
[128]533 iamhere("Pre-MAD");
534 retval = mount_all_devices(mountlist, FALSE);
535 iamhere("Post-MAD");
536 if (retval) {
537 unmount_all_devices(mountlist);
538 return (retval);
539 }
540 if (bkpinfo->backup_media_type == tape
541 || bkpinfo->backup_media_type == udev) {
542 retval += compare_to_tape(bkpinfo);
543 } else if (bkpinfo->backup_media_type == cdstream) {
544 retval += compare_to_cdstream(bkpinfo);
545 } else {
546 retval += compare_to_CD(bkpinfo);
547 }
548 if (retval) {
549 mvaddstr_and_log_it(g_currentY++,
550 0,
[1200]551 _
552 ("Warning - differences found during the compare phase"));
[128]553 }
[1]554
[128]555 if (count_lines_in_file("/tmp/changed.txt") > 0) {
556 mvaddstr_and_log_it(g_currentY++, 0,
[1200]557 _
558 ("Differences found while files were being compared."));
[128]559 streamline_changes_file("/tmp/changed.files", "/tmp/changed.txt");
560 if (count_lines_in_file("/tmp/changed.files") <= 0) {
561 mvaddstr_and_log_it(g_currentY++, 0,
[1200]562 _
563 ("...but they were logfiles and temporary files. Your archives are fine."));
564 log_to_screen(_
565 ("The differences were logfiles and temporary files. Your archives are fine."));
[128]566 } else {
567 q = count_lines_in_file("/tmp/changed.files");
[1200]568 mr_asprintf(&tmp, _("%ld significant difference%s found."), q,
[128]569 (q != 1) ? "s" : "");
570 mvaddstr_and_log_it(g_currentY++, 0, tmp);
571 log_to_screen(tmp);
[1200]572 mr_free(tmp);
[1]573
[1200]574 mr_asprintf(&tmp,
575 _("Type 'less /tmp/changed.files' for a list of non-matching files"));
[128]576 mvaddstr_and_log_it(g_currentY++, 0, tmp);
577 log_to_screen(tmp);
[1200]578 mr_free(tmp);
[1]579
[1108]580 mr_msg(2, "calling popup_changelist_from_file()");
[1591]581 getcwd(cwd, MAX_STR_LEN - 1);
582 chdir(bkpinfo->restore_path);
583 getcwd(new, MAX_STR_LEN - 1);
[128]584 popup_changelist_from_file("/tmp/changed.files");
[1108]585 mr_msg(2, "Returning from popup_changelist_from_file()");
[1591]586 chdir(cwd);
[128]587 }
588 } else {
589 log_to_screen
[1200]590 (_
591 ("No significant differences were found. Your backup is perfect."));
[1]592 }
[1591]593 retval += unmount_all_devices(mountlist);
594
[128]595 kill_petris();
[1591]596 paranoid_free(new);
597 paranoid_free(cwd);
[128]598 return (retval);
[1]599}
600
601/**************************************************************************
602 *END_COMPARE_MODE *
603 **************************************************************************/
604
[1200]605
[1]606/**
607 * Compare all data on a cdstream-based backup.
608 * @param bkpinfo The backup information structure. Fields used:
609 * - @c bkpinfo->disaster_recovery
610 * - @c bkpinfo->media_device
611 * - @c bkpinfo->restore_path
612 * @return 0 for success, nonzero for failure.
613 */
[128]614int compare_to_cdstream(struct s_bkpinfo *bkpinfo)
[1]615{
[128]616 int res;
[1]617
[1200]618 char *dir = NULL;
619 char *command = NULL;
[1]620
[128]621 assert(bkpinfo != NULL);
[1200]622 /** needs malloc **/
[128]623 malloc_string(dir);
624 getcwd(dir, MAX_STR_LEN);
625 chdir(bkpinfo->restore_path);
[1]626
[1200]627 mr_asprintf(&command, "cp -f /tmp/LAST-FILELIST-NUMBER %s/tmp",
[128]628 bkpinfo->restore_path);
629 run_program_and_log_output(command, FALSE);
[1200]630 mr_free(command);
631
[128]632 mvaddstr_and_log_it(g_currentY,
[1200]633 0, _("Verifying archives against filesystem"));
[1]634
[128]635 if (bkpinfo->disaster_recovery
636 && does_file_exist("/tmp/CDROM-LIVES-HERE")) {
637 strcpy(bkpinfo->media_device,
638 last_line_of_file("/tmp/CDROM-LIVES-HERE"));
639 } else {
640 find_cdrom_device(bkpinfo->media_device, FALSE);
641 }
642 res = verify_tape_backups(bkpinfo);
643 chdir(dir);
644 if (length_of_file("/tmp/changed.txt") > 2
645 && length_of_file("/tmp/changed.files") > 2) {
[1108]646 mr_msg(0,
[128]647 "Type 'less /tmp/changed.files' to see which files don't match the archives");
[1108]648 mr_msg(2, "Calling popup_changelist_from_file()");
[128]649 popup_changelist_from_file("/tmp/changed.files");
[1108]650 mr_msg(2, "Returned from popup_changelist_from_file()");
[128]651 }
652
[1200]653 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
[1080]654 mr_free(dir);
[128]655 return (res);
[1]656}
[128]657
[1]658/**************************************************************************
659 *END_COMPARE_CD_STREAM *
660 **************************************************************************/
661
662
663/**
664 * Compare all data on a tape-based backup.
665 * @param bkpinfo The backup information structure. Field used: @c bkpinfo->restore_path.
666 * @return 0 for success, nonzero for failure.
667 */
668/**************************************************************************
669 * F@COMPARE_TO_TAPE() *
670 * compare_to_tape() - gots me?? *
671 * *
672 * returns: int *
673 **************************************************************************/
[128]674int compare_to_tape(struct s_bkpinfo *bkpinfo)
[1]675{
[1200]676 int res = 0;
677 char *dir = NULL;
678 char *command = NULL;
[1]679
[128]680 assert(bkpinfo != NULL);
681 malloc_string(dir);
682
683 getcwd(dir, MAX_STR_LEN);
684 chdir(bkpinfo->restore_path);
[1200]685 mr_asprintf(&command, "cp -f /tmp/LAST-FILELIST-NUMBER %s/tmp",
[128]686 bkpinfo->restore_path);
687 run_program_and_log_output(command, FALSE);
[1200]688 mr_free(command);
689
[128]690 mvaddstr_and_log_it(g_currentY,
[1200]691 0, _("Verifying archives against filesystem"));
[128]692 res = verify_tape_backups(bkpinfo);
693 chdir(dir);
694 if (res) {
[1200]695 mvaddstr_and_log_it(g_currentY++, 74, _("Failed."));
[128]696 } else {
[1200]697 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
[128]698 }
[1080]699 mr_free(dir);
[128]700 return (res);
[1]701}
702
703/**************************************************************************
704 *END_COMPARE_TO_TAPE *
705 **************************************************************************/
706
707/* @} - end compareGroup */
Note: See TracBrowser for help on using the repository browser.