source: MondoRescue/trunk/mondo/src/mondorestore/mondo-restore.c@ 851

Last change on this file since 851 was 851, checked in by Bruno Cornec, 18 years ago

Still a compile issue

  • Property svn:keywords set to Id
File size: 95.6 KB
Line 
1/***************************************************************************
2 * $Id: mondo-restore.c 851 2006-09-27 00:01:12Z bruno $
3 */
4
5/**
6 * @file
7 * The main file for mondorestore.
8 */
9
10/**************************************************************************
11 * #include statements *
12 **************************************************************************/
13#include <unistd.h>
14
15#include "my-stuff.h"
16#include "../common/mondostructures.h"
17#include "../common/libmondo.h"
18#include "mr-externs.h"
19#include "mondo-restore.h"
20#include "mondo-rstr-compare-EXT.h"
21#include "mondo-rstr-tools-EXT.h"
22#ifndef S_SPLINT_S
23#include <pthread.h>
24#endif
25
26extern void twenty_seconds_til_yikes(void);
27
28
29/* For use in other programs (ex. XMondo) */
30#ifdef MONDORESTORE_MODULE
31#define main __mondorestore_main
32#define g_ISO_restore_mode __mondorestore_g_ISO_restore_mode
33#endif
34
35//static char cvsid[] = "$Id: mondo-restore.c 851 2006-09-27 00:01:12Z bruno $";
36
37/**************************************************************************
38 * Globals *
39 **************************************************************************/
40extern char *g_tmpfs_mountpt; // declared in libmondo-tools.c
41extern struct s_bkpinfo *g_bkpinfo_DONTUSETHIS; // used by finish() to free
42 // up global bkpinfo struct
43extern bool g_text_mode;
44extern FILE *g_fprep;
45extern double g_kernel_version;
46extern int g_partition_table_locked_up;
47extern int g_noof_rows;
48
49extern int partition_everything(struct mountlist_itself *mountlist);
50
51
52/**
53 * @name Restore-Time Globals
54 * @ingroup globalGroup
55 * @{
56 */
57/**
58 * If TRUE, then SIGPIPE was just caught.
59 * Set by the signal handler; cleared after it's handled.
60 */
61bool g_sigpipe_caught = FALSE;
62
63/**
64 * If TRUE, then we're restoring from ISOs or an NFS server.
65 * If FALSE, then we're restoring from some kind of real media (tape, CD, etc.)
66 */
67bool g_ISO_restore_mode = FALSE; /* are we in Iso Mode? */
68
69/**
70 * If TRUE, then we have had a successful "nuke" restore.
71 */
72bool g_I_have_just_nuked = FALSE;
73
74/**
75 * The device to mount to get at the ISO images. Ignored unless @p g_ISO_restore_mode.
76 */
77char *g_isodir_device = NULL;
78
79/**
80 * The format of @p g_isodir_device. Ignored unless @p g_ISO_restore_mode.
81 */
82char *g_isodir_format = NULL;
83
84/**
85 * The location of 'biggielist.txt', containing the biggiefiles on the current archive set.
86 */
87char *g_biggielist_txt = NULL;
88
89/**
90 * The location of 'filelist.full', containing all files (<em>including biggiefiles</em>) on
91 * the current archive set.
92 */
93char *g_filelist_full = NULL;
94
95/**
96 * The location of a file containing a list of the devices that were archived
97 * as images, not as individual files.
98 */
99char *g_filelist_imagedevs = NULL;
100
101/**
102 * The location of a file containing a list of imagedevs to actually restore.
103 * @see g_filelist_imagedevs
104 */
105char *g_imagedevs_restthese = NULL;
106
107/**
108 * The location of 'mondo-restore.cfg', containing the metadata
109 * information for this backup.
110 */
111char *g_mondo_cfg_file = NULL;
112
113/**
114 * The location of 'mountlist.txt', containing the information on the
115 * user's partitions and hard drives.
116 */
117char *g_mountlist_fname = NULL;
118
119/**
120 * Mondo's home directory during backup. Unused in mondo-restore; included
121 * to avoid link errors.
122 */
123char *g_mondo_home = NULL;
124
125char *ps_options = "";
126
127/* @} - end of "Restore-Time Globals" in globalGroup */
128
129extern int copy_from_src_to_dest(FILE * f_orig, FILE * f_archived,
130 char direction);
131
132/**************************************************************************
133 * COMPAQ PROLIANT Stuff: needs some special help *
134**************************************************************************/
135
136/**
137 * The message to display if we detect that the user is using a Compaq Proliant.
138 */
139#define COMPAQ_PROLIANTS_SUCK _("Partition and format your disk using Compaq's disaster recovery CD. After you've done that, please reboot with your Mondo CD/floppy in Interactive Mode.")
140
141
142/**
143 * Allow the user to modify the mountlist before we partition & format their drives.
144 * @param bkpinfo The backup information structure. @c disaster_recovery is the only field used.
145 * @param mountlist The mountlist to let the user modify.
146 * @param raidlist The raidlist that goes with @p mountlist.
147 * @return 0 for success, nonzero for failure.
148 * @ingroup restoreGuiGroup
149 */
150int let_user_edit_the_mountlist(struct s_bkpinfo *bkpinfo,
151 struct mountlist_itself *mountlist,
152 struct raidlist_itself *raidlist)
153{
154 int retval = 0, res = 0;
155
156 log_msg(2, "let_user_edit_the_mountlist() --- starting");
157
158 assert(bkpinfo != NULL);
159 assert(mountlist != NULL);
160 assert(raidlist != NULL);
161 if (!bkpinfo->disaster_recovery) {
162 paranoid_alloc(g_mountlist_fname, "/tmp/mountlist.txt");
163 log_msg(2, "I guess you're testing edit_mountlist()");
164 }
165 if (!does_file_exist(g_mountlist_fname)) {
166 log_to_screen(g_mountlist_fname);
167 log_to_screen(_("does not exist"));
168 return (1);
169 }
170
171 retval = load_mountlist(mountlist, g_mountlist_fname);
172 load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
173 if (retval) {
174 log_to_screen
175 (_("Warning - load_raidtab_into_raidlist returned an error"));
176 }
177 res = edit_mountlist(g_mountlist_fname, mountlist, raidlist);
178 if (res) {
179 return (1);
180 }
181
182 save_mountlist_to_disk(mountlist, g_mountlist_fname);
183 save_raidlist_to_raidtab(raidlist, RAIDTAB_FNAME);
184
185 log_to_screen(_("I have finished editing the mountlist for you."));
186
187 return (retval);
188}
189
190
191/**
192 * Determine whether @p mountlist contains a Compaq diagnostic partition.
193 * @param mountlist The mountlist to examine.
194 * @return TRUE if there's a Compaq diagnostic partition; FALSE if not.
195 * @ingroup restoreUtilityGroup
196 */
197bool
198partition_table_contains_Compaq_diagnostic_partition(struct
199 mountlist_itself *
200 mountlist)
201{
202 int i;
203
204 assert(mountlist != NULL);
205
206 for (i = 0; i < mountlist->entries; i++) {
207 if (strstr(mountlist->el[i].format, "ompaq")) {
208 log_msg(2, "mountlist[%d] (%s) is %s (Compaq alert!)",
209 i, mountlist->el[i].device, mountlist->el[i].format);
210
211 return (TRUE);
212 }
213 }
214 return (FALSE);
215}
216
217/**************************************************************************
218 *END_PARTITION_TABLE_CONTAINS_COMPAQ_DIAGNOSTIC_PARTITION *
219 **************************************************************************/
220
221
222/**
223 * Allow the user to abort the backup if we find that there is a Compaq diagnostic partition.
224 * @note This function does not actually check for the presence of a Compaq partition.
225 * @ingroup restoreUtilityGroup
226 */
227void offer_to_abort_because_Compaq_Proliants_suck(void)
228{
229 popup_and_OK(COMPAQ_PROLIANTS_SUCK);
230 if (ask_me_yes_or_no
231 (_
232 ("Would you like to reboot and use your Compaq CD to prep your hard drive?")))
233 {
234 fatal_error(_
235 ("Aborting. Please reboot and prep your hard drive with your Compaq CD."));
236 }
237}
238
239/**************************************************************************
240 *END_OFFER_TO_ABORT_BECAUSE_COMPAQ_PROLIANTS_SUCK *
241 **************************************************************************/
242
243
244/**
245 * Call interactive_mode(), nuke_mode(), or compare_mode() depending on the user's choice.
246 * @param bkpinfo The backup information structure. Most fields are used.
247 * @param mountlist The mountlist containing information about the user's partitions.
248 * @param raidlist The raidlist to go with @p mountlist.
249 * @return The return code from the mode function called.
250 * @ingroup restoreGroup
251 */
252int
253catchall_mode(struct s_bkpinfo *bkpinfo,
254 struct mountlist_itself *mountlist,
255 struct raidlist_itself *raidlist)
256{
257 char c, *tmp;
258 int retval = 0;
259
260 iamhere("inside catchall");
261 assert(bkpinfo != NULL);
262 assert(mountlist != NULL);
263 assert(raidlist != NULL);
264 iamhere("pre wrm");
265 c = which_restore_mode();
266 iamhere("post wrm");
267 if (c == 'I' || c == 'N' || c == 'C') {
268 interactively_obtain_media_parameters_from_user(bkpinfo, FALSE);
269 } else {
270 popup_and_OK(_
271 ("No restoring or comparing will take place today."));
272 if (is_this_device_mounted("/mnt/cdrom")) {
273 run_program_and_log_output("umount /mnt/cdrom", FALSE);
274 }
275 if (g_ISO_restore_mode) {
276 asprintf(&tmp, "umount %s", bkpinfo->isodir);
277 run_program_and_log_output(tmp, FALSE);
278 paranoid_free(tmp);
279 }
280 paranoid_MR_finish(0);
281 }
282
283 iamhere("post int");
284
285 if (bkpinfo->backup_media_type == iso) {
286 if (iso_fiddly_bits(bkpinfo, (c == 'N') ? TRUE : FALSE)) {
287 log_msg(2,
288 "catchall_mode --- iso_fiddly_bits returned w/ error");
289 return (1);
290 } else {
291 log_msg(2, "catchall_mode --- iso_fiddly_bits ok");
292 }
293 }
294
295 if (c == 'I') {
296 log_msg(2, "IM selected");
297 retval += interactive_mode(bkpinfo, mountlist, raidlist);
298 } else if (c == 'N') {
299 log_msg(2, "NM selected");
300 retval += nuke_mode(bkpinfo, mountlist, raidlist);
301 } else if (c == 'C') {
302 log_msg(2, "CM selected");
303 retval += compare_mode(bkpinfo, mountlist, raidlist);
304 }
305 return (retval);
306}
307
308/**************************************************************************
309 *END_CATCHALL_MODE *
310 **************************************************************************/
311
312/**************************************************************************
313 *END_ EXTRACT_CONFIG_FILE_FROM_RAMDISK *
314 **************************************************************************/
315
316
317/**
318 * @addtogroup restoreGroup
319 * @{
320 */
321/**
322 * Restore the user's data, in a disaster recovery situation, prompting the
323 * user about whether or not to do every step.
324 * The user can edit the mountlist, choose files to restore, etc.
325 * @param bkpinfo The backup information structure. Most fields are used.
326 * @param mountlist The mountlist containing information about the user's partitions.
327 * @param raidlist The raidlist to go with @p mountlist.
328 * @return 0 for success, or the number of errors encountered.
329 */
330int
331interactive_mode(struct s_bkpinfo *bkpinfo,
332 struct mountlist_itself *mountlist,
333 struct raidlist_itself *raidlist)
334{
335 int retval = 0;
336 int res;
337 int ptn_errs = 0;
338 int fmt_errs = 0;
339
340 bool done;
341 bool restore_all;
342
343 char *tmp = NULL;
344 char *tmp1 = NULL;
345 char *fstab_fname = NULL;
346 char *old_restpath = NULL;
347
348 struct s_node *filelist = NULL;
349
350 /* try to partition and format */
351
352 log_msg(2, "interactive_mode --- starting (great, assertions OK)");
353
354 assert(bkpinfo != NULL);
355 assert(mountlist != NULL);
356 assert(raidlist != NULL);
357
358 log_msg(2, "interactive_mode --- assertions OK");
359
360 if (g_text_mode) {
361 if (!ask_me_yes_or_no
362 (_
363 ("Interactive Mode + textonly = experimental! Proceed anyway?")))
364 {
365 fatal_error("Wise move.");
366 }
367 }
368
369 iamhere("About to load config file");
370 get_cfg_file_from_archive_or_bust(bkpinfo);
371 read_cfg_file_into_bkpinfo(g_mondo_cfg_file, bkpinfo);
372 iamhere("Done loading config file; resizing ML");
373#ifdef __FreeBSD__
374 tmp = call_program_and_get_last_line_of_output("cat /tmp/cmdline");
375#else
376 tmp = call_program_and_get_last_line_of_output("cat /proc/cmdline");
377#endif
378 if (strstr(tmp,"noresize")) {
379 log_msg(1, "Not resizing mountlist.");
380 } else {
381 resize_mountlist_proportionately_to_suit_new_drives(mountlist);
382 }
383 for (done = FALSE; !done;) {
384 iamhere("About to edit mountlist");
385 if (g_text_mode) {
386 save_mountlist_to_disk(mountlist, g_mountlist_fname);
387 tmp1 = find_my_editor();
388 asprintf(&tmp, "%s %s", tmp1, g_mountlist_fname);
389 paranoid_free(tmp1);
390
391 res = system(tmp);
392 paranoid_free(tmp);
393 load_mountlist(mountlist, g_mountlist_fname);
394 } else {
395 res = edit_mountlist(g_mountlist_fname, mountlist, raidlist);
396 }
397 iamhere("Finished editing mountlist");
398 if (res) {
399 paranoid_MR_finish(1);
400 }
401 log_msg(2, "Proceeding...");
402 save_mountlist_to_disk(mountlist, g_mountlist_fname);
403 save_raidlist_to_raidtab(raidlist, RAIDTAB_FNAME);
404 mvaddstr_and_log_it(1, 30, _("Restoring Interactively"));
405 if (bkpinfo->differential) {
406 log_to_screen(_
407 ("Because this is a differential backup, disk"));
408 log_to_screen(_
409 (" partitioning and formatting will not take place."));
410 done = TRUE;
411 } else {
412 if (ask_me_yes_or_no
413 (_
414 ("Do you want to erase and partition your hard drives?")))
415 {
416 if (partition_table_contains_Compaq_diagnostic_partition
417 (mountlist)) {
418 offer_to_abort_because_Compaq_Proliants_suck();
419 done = TRUE;
420 } else {
421 twenty_seconds_til_yikes();
422 g_fprep = fopen("/tmp/prep.sh", "w");
423 ptn_errs = partition_everything(mountlist);
424 if (ptn_errs) {
425 log_to_screen
426 (_
427 ("Warning. Errors occurred during disk partitioning."));
428 }
429
430 fmt_errs =
431 format_everything(mountlist, FALSE, raidlist);
432 if (!fmt_errs) {
433 log_to_screen
434 (_
435 ("Errors during disk partitioning were handled OK."));
436 log_to_screen(_
437 ("Partitions were formatted OK despite those errors."));
438 ptn_errs = 0;
439 }
440 if (!ptn_errs && !fmt_errs) {
441 done = TRUE;
442 }
443 }
444 paranoid_fclose(g_fprep);
445 } else {
446 mvaddstr_and_log_it(g_currentY++, 0,
447 _
448 ("User opted not to partition the devices"));
449 if (ask_me_yes_or_no
450 (_("Do you want to format your hard drives?"))) {
451 fmt_errs =
452 format_everything(mountlist, TRUE, raidlist);
453 if (!fmt_errs) {
454 done = TRUE;
455 }
456 } else {
457 ptn_errs = fmt_errs = 0;
458 done = TRUE;
459 }
460 }
461 if (fmt_errs) {
462 mvaddstr_and_log_it(g_currentY++,
463 0,
464 _
465 ("Errors occurred. Please repartition and format drives manually."));
466 done = FALSE;
467 }
468 if (ptn_errs & !fmt_errs) {
469 mvaddstr_and_log_it(g_currentY++,
470 0,
471 _
472 ("Errors occurred during partitioning. Formatting, however, went OK."));
473 done = TRUE;
474 }
475 if (!done) {
476 if (!ask_me_yes_or_no(_("Re-edit the mountlist?"))) {
477 retval++;
478 iamhere("Leaving interactive_mode()");
479 return (retval);
480 }
481 }
482 }
483 }
484
485 /* mount */
486 if (mount_all_devices(mountlist, TRUE)) {
487 unmount_all_devices(mountlist);
488 retval++;
489 iamhere("Leaving interactive_mode()");
490 return (retval);
491 }
492 /* restore */
493 if ((restore_all =
494 ask_me_yes_or_no(_
495 ("Do you want me to restore all of your data?"))))
496 {
497 log_msg(1, "Restoring all data");
498 retval += restore_everything(bkpinfo, NULL);
499 } else if ((restore_all =
500 ask_me_yes_or_no
501 (_("Do you want me to restore _some_ of your data?")))) {
502 asprintf(&old_restpath,bkpinfo->restore_path);
503 for (done = FALSE; !done;) {
504 unlink("/tmp/filelist.full");
505 filelist = process_filelist_and_biggielist(bkpinfo);
506 /* Now you have /tmp/tmpfs/filelist.restore-these and /tmp/tmpfs/biggielist.restore-these;
507 the former is a list of regular files; the latter, biggiefiles and imagedevs.
508 */
509 if (filelist) {
510 gotos_suck:
511// (NB: %s is where your filesystem is mounted now, by default)", MNT_RESTORING);
512 if (popup_and_get_string
513 (_("Restore path"), _("Restore files to where?"), bkpinfo->restore_path)) {
514 if (!strcmp(bkpinfo->restore_path, "/")) {
515 if (!ask_me_yes_or_no(_("Are you sure?"))) {
516 paranoid_alloc(bkpinfo->restore_path, old_restpath);
517 goto gotos_suck;
518 }
519 paranoid_alloc(bkpinfo->restore_path, ""); // so we restore to [blank]/file/name :)
520 }
521 log_msg(1, "Restoring subset");
522 retval += restore_everything(bkpinfo, filelist);
523 free_filelist(filelist);
524 } else {
525 paranoid_alloc(bkpinfo->restore_path,old_restpath);
526 free_filelist(filelist);
527 }
528 if (!ask_me_yes_or_no
529 (_("Restore another subset of your backup?"))) {
530 done = TRUE;
531 }
532 } else {
533 done = TRUE;
534 }
535 }
536 paranoid_free(old_restpath);
537 } else {
538 mvaddstr_and_log_it(g_currentY++,
539 0,
540 _
541 ("User opted not to restore any data. "));
542 }
543 if (retval) {
544 mvaddstr_and_log_it(g_currentY++,
545 0,
546 _
547 ("Errors occurred during the restore phase. "));
548 }
549
550 if (ask_me_yes_or_no(_("Initialize the boot loader?"))) {
551 run_boot_loader(TRUE);
552 } else {
553 mvaddstr_and_log_it(g_currentY++,
554 0,
555 _
556 ("User opted not to initialize the boot loader."));
557 }
558
559// run_program_and_log_output("cp -af /etc/lvm " MNT_RESTORING "/etc/", 1);
560 protect_against_braindead_sysadmins();
561 retval += unmount_all_devices(mountlist);
562 /* if (restore_some || restore_all || */
563 if (ask_me_yes_or_no
564 (_("Label your ext2 and ext3 partitions if necessary?"))) {
565 mvaddstr_and_log_it(g_currentY, 0,
566 _
567 ("Using e2label to label your ext2,3 partitions"));
568 if (does_file_exist("/tmp/fstab.new")) {
569 asprintf(&fstab_fname, "/tmp/fstab.new");
570 } else {
571 asprintf(&fstab_fname, "/tmp/fstab");
572 }
573 asprintf(&tmp,
574 "label-partitions-as-necessary %s < %s >> %s 2>> %s",
575 g_mountlist_fname, fstab_fname, MONDO_LOGFILE,
576 MONDO_LOGFILE);
577 paranoid_free(fstab_fname);
578
579 res = system(tmp);
580 paranoid_free(tmp);
581 if (res) {
582 log_to_screen
583 (_("label-partitions-as-necessary returned an error"));
584 mvaddstr_and_log_it(g_currentY++, 74, _("Failed."));
585 } else {
586 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
587 }
588 retval += res;
589 }
590
591 iamhere("About to leave interactive_mode()");
592 if (retval) {
593 mvaddstr_and_log_it(g_currentY++,
594 0,
595 _
596 ("Warning - errors occurred during the restore phase."));
597 }
598 return(retval);
599}
600
601/**************************************************************************
602 *END_INTERACTIVE_MODE *
603 **************************************************************************/
604
605
606/**
607 * Run an arbitrary restore mode (prompt the user), but from ISO images
608 * instead of real media.
609 * @param bkpinfo The backup information structure. Most fields are used.
610 * @param mountlist The mountlist containing information about the user's partitions.
611 * @param raidlist The raidlist that goes with @p mountlist.
612 * @param nuke_me_please If TRUE, we plan to run Nuke Mode.
613 * @return 0 for success, or the number of errors encountered.
614 */
615int
616iso_mode(struct s_bkpinfo *bkpinfo,
617 struct mountlist_itself *mountlist,
618 struct raidlist_itself *raidlist, bool nuke_me_please)
619{
620 char c;
621 int retval = 0;
622
623 assert(bkpinfo != NULL);
624 assert(mountlist != NULL);
625 assert(raidlist != NULL);
626 if (iso_fiddly_bits(bkpinfo, nuke_me_please)) {
627 log_msg(1, "iso_mode --- returning w/ error");
628 return (1);
629 } else {
630 c = which_restore_mode();
631 if (c == 'I' || c == 'N' || c == 'C') {
632 interactively_obtain_media_parameters_from_user(bkpinfo,
633 FALSE);
634 }
635 if (c == 'I') {
636 retval += interactive_mode(bkpinfo, mountlist, raidlist);
637 } else if (c == 'N') {
638 retval += nuke_mode(bkpinfo, mountlist, raidlist);
639 } else if (c == 'C') {
640 retval += compare_mode(bkpinfo, mountlist, raidlist);
641 } else {
642 log_to_screen(_("OK, I shan't restore/compare any files."));
643 }
644 }
645 if (is_this_device_mounted(MNT_CDROM)) {
646 paranoid_system("umount " MNT_CDROM);
647 }
648// if (! already_mounted)
649// {
650 if (system("umount /tmp/isodir 2> /dev/null")) {
651 log_to_screen
652 (_
653 ("WARNING - unable to unmount device where the ISO files are stored."));
654 }
655// }
656 return (retval);
657}
658
659/**************************************************************************
660 *END_ISO_MODE *
661 **************************************************************************/
662
663
664static void call_me_after_the_nuke(int retval) {
665
666 char *tmp = NULL;
667 char *tmp1 = NULL;
668
669 if (retval) {
670 log_to_screen(_("Errors occurred during the nuke phase."));
671 log_to_screen(_("Please visit our website at http://www.mondorescue.org for more information."));
672 } else {
673#ifdef __FreeBSD__
674 tmp1 = call_program_and_get_last_line_of_output("cat /tmp/cmdline");
675#else
676 tmp1 = call_program_and_get_last_line_of_output("cat /proc/cmdline");
677#endif
678 if ((strstr(tmp1,"restore") == NULL) ||
679 (strstr(tmp1,"RESTORE") == NULL)) {
680 /* -H option */
681 asprintf(&tmp,
682 _
683 (" Mondo has restored your system. Please remove the backup media and reboot.\n\nPlease visit our website at http://www.mondorescue.org for more information."));
684 popup_and_OK(tmp);
685 paranoid_free(tmp);
686 }
687 paranoid_free(tmp1);
688
689 log_to_screen(_
690 ("Mondo has restored your system. Please remove the backup media and reboot."));
691 log_to_screen(_
692 ("Thank you for using Mondo Rescue."));
693 log_to_screen(_
694 ("Please visit our website at http://www.mondorescue.org for more information."));
695 }
696 g_I_have_just_nuked = TRUE;
697 return;
698}
699
700
701/**
702 * Restore the user's data automatically (no prompts), after a twenty-second
703 * warning period.
704 * @param bkpinfo The backup information structure. Most fields are used.
705 * @param mountlist The mountlist containing information about the user's partitions.
706 * @param raidlist The raidlist that goes with @p mountlist.
707 * @return 0 for success, or the number of errors encountered.
708 * @warning <b><i>THIS WILL ERASE ALL EXISTING DATA!</i></b>
709 */
710int
711nuke_mode(struct s_bkpinfo *bkpinfo,
712 struct mountlist_itself *mountlist,
713 struct raidlist_itself *raidlist)
714{
715 int retval = 0;
716 int res = 0;
717 bool boot_loader_installed = FALSE;
718 char *tmp = NULL;
719 char *tmpA = NULL;
720 char *tmpB = NULL;
721 char *tmpC = NULL;
722
723 assert(bkpinfo != NULL);
724 assert(mountlist != NULL);
725 assert(raidlist != NULL);
726
727 log_msg(2, "nuke_mode --- starting");
728
729 get_cfg_file_from_archive_or_bust(bkpinfo);
730 load_mountlist(mountlist, g_mountlist_fname); // in case read_cfg_file_into_bkpinfo updated the mountlist
731#ifdef __FreeBSD__
732 tmp = call_program_and_get_last_line_of_output("cat /tmp/cmdline");
733#else
734 tmp = call_program_and_get_last_line_of_output("cat /proc/cmdline");
735#endif
736 if (strstr(tmp,"noresize")) {
737 log_msg(2, "Not resizing mountlist.");
738 } else {
739 resize_mountlist_proportionately_to_suit_new_drives(mountlist);
740 }
741 paranoid_free(tmp);
742
743 if (!evaluate_mountlist(mountlist, tmpA, tmpB, tmpC)) {
744 asprintf(&tmp,
745 _
746 ("Mountlist analyzed. Result: \"%s %s %s\" Switch to Interactive Mode?"),
747 tmpA, tmpB, tmpC);
748 if (ask_me_yes_or_no(tmp)) {
749 paranoid_free(tmp);
750 retval = interactive_mode(bkpinfo, mountlist, raidlist);
751 goto after_the_nuke;
752 } else {
753 paranoid_free(tmp);
754 fatal_error("Nuke Mode aborted. ");
755 }
756 }
757 save_mountlist_to_disk(mountlist, g_mountlist_fname);
758 mvaddstr_and_log_it(1, 30, _("Restoring Automatically"));
759 if (bkpinfo->differential) {
760 log_to_screen(_("Because this is a differential backup, disk"));
761 log_to_screen(_
762 ("partitioning and formatting will not take place."));
763 res = 0;
764 } else {
765 if (partition_table_contains_Compaq_diagnostic_partition
766 (mountlist)) {
767 offer_to_abort_because_Compaq_Proliants_suck();
768 } else {
769 twenty_seconds_til_yikes();
770 g_fprep = fopen("/tmp/prep.sh", "w");
771#ifdef __FreeBSD__
772 tmp = call_program_and_get_last_line_of_output("cat /tmp/cmdline");
773#else
774 tmp = call_program_and_get_last_line_of_output("cat /proc/cmdline");
775#endif
776 if (strstr(tmp,"nopart")) {
777 log_msg(2,
778 "Not partitioning drives due to 'nopart' option.");
779 res = 0;
780 } else {
781 res = partition_everything(mountlist);
782 if (res) {
783 log_to_screen
784 (_
785 ("Warning. Errors occurred during partitioning."));
786 res = 0;
787 }
788 }
789 paranoid_free(tmp);
790
791 retval += res;
792 if (!res) {
793 log_to_screen(_("Preparing to format your disk(s)"));
794 sleep(1);
795 sync();
796 log_to_screen(_
797 ("Please wait. This may take a few minutes."));
798 res += format_everything(mountlist, FALSE, raidlist);
799 }
800 paranoid_fclose(g_fprep);
801 }
802 }
803 retval += res;
804 if (res) {
805 mvaddstr_and_log_it(g_currentY++,
806 0,
807 _
808 ("Failed to partition and/or format your hard drives."));
809
810 if (ask_me_yes_or_no(_("Try in interactive mode instead?"))) {
811 retval = interactive_mode(bkpinfo, mountlist, raidlist);
812 call_me_after_the_nuke(retval);
813 } else
814 if (!ask_me_yes_or_no
815 (_("Would you like to try to proceed anyway?"))) {
816 }
817 return(retval);
818 }
819 retval = mount_all_devices(mountlist, TRUE);
820 if (retval) {
821 unmount_all_devices(mountlist);
822 log_to_screen
823 (_
824 ("Unable to mount all partitions. Sorry, I cannot proceed."));
825 return (retval);
826 }
827 iamhere("Restoring everything");
828 retval += restore_everything(bkpinfo, NULL);
829 if (!run_boot_loader(FALSE)) {
830 log_msg(1,
831 "Great! Boot loader was installed. No need for msg at end.");
832 boot_loader_installed = TRUE;
833 }
834 protect_against_braindead_sysadmins();
835// run_program_and_log_output("cp -af /etc/lvm " MNT_RESTORING "/etc/", 1);
836 retval += unmount_all_devices(mountlist);
837 mvaddstr_and_log_it(g_currentY,
838 0,
839 _
840 ("Using e2label to label your ext2,3 partitions"));
841
842 asprintf(&tmp, "label-partitions-as-necessary %s < /tmp/fstab",
843 g_mountlist_fname);
844 res = run_program_and_log_output(tmp, TRUE);
845 paranoid_free(tmp);
846
847 if (res) {
848 log_to_screen(_
849 ("label-partitions-as-necessary returned an error"));
850 mvaddstr_and_log_it(g_currentY++, 74, _("Failed."));
851 } else {
852 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
853 }
854 retval += res;
855
856 after_the_nuke:
857 if (retval) {
858 log_to_screen("Errors occurred during the nuke phase.");
859 } else if (strstr(call_program_and_get_last_line_of_output("cat /proc/cmdline"), "RESTORE")) // Bruno's thing
860 {
861 log_to_screen
862 ("PC was restored successfully. Thank you for using Mondo Rescue.");
863 log_to_screen
864 ("Please visit our website at http://www.mondorescue.org for more information.");
865 } else {
866 strcpy(tmp,"Mondo has restored your system.\n\nPlease wait for the command prompt. Then remove the backup media and reboot.\n\nPlease visit our website at http://www.mondorescue.org for more information.");
867 if (strstr(call_program_and_get_last_line_of_output("cat /proc/cmdline"), "restore") == NULL) {
868 popup_and_OK(tmp);
869 }
870 log_to_screen
871 ("Mondo has restored your system. Please wait for the command prompt.");
872 log_to_screen
873 ("Then remove the backup media and reboot.");
874 log_to_screen
875 ("Please visit our website at http://www.mondorescue.org for more information.");
876 }
877 g_I_have_just_nuked = TRUE;
878/*
879 if (!boot_loader_installed && !does_file_exist(DO_MBR_PLEASE))
880 {
881 log_to_screen("PLEASE RUN 'mondorestore --mbr' NOW TO INITIALIZE YOUR BOOT SECTOR");
882 write_one_liner_data_file(DO_MBR_PLEASE, "mondorestore --mbr");
883 }
884*/
885 return (retval);
886}
887/**************************************************************************
888 *END_NUKE_MODE *
889 **************************************************************************/
890
891
892/**
893 * Restore the user's data (or a subset of it) to the live filesystem.
894 * This should not be called if we're booted from CD!
895 * @param bkpinfo The backup information structure. Most fields are used.
896 * @return 0 for success, or the number of errors encountered.
897 */
898int restore_to_live_filesystem(struct s_bkpinfo *bkpinfo)
899{
900 int retval = 0;
901
902 char *old_restpath = NULL;
903
904 struct mountlist_itself *mountlist = NULL;
905 struct raidlist_itself *raidlist = NULL;
906 struct s_node *filelist = NULL;
907
908 log_msg(1, "restore_to_live_filesystem() - starting");
909 assert(bkpinfo != NULL);
910
911 mountlist = malloc(sizeof(struct mountlist_itself));
912 raidlist = malloc(sizeof(struct raidlist_itself));
913
914 if (!mountlist || !raidlist) {
915 fatal_error("Cannot malloc() mountlist and/or raidlist");
916 }
917
918 paranoid_alloc(bkpinfo->restore_path, "/");
919 if (!g_restoring_live_from_cd) {
920 popup_and_OK
921 (_
922 ("Please insert tape/CD/boot floppy, then hit 'OK' to continue."));
923 sleep(1);
924 }
925 interactively_obtain_media_parameters_from_user(bkpinfo, FALSE);
926 if (bkpinfo->media_device == NULL) {
927 log_msg(2, "Warning - failed to find media dev");
928 } else {
929 log_msg(2, "bkpinfo->media_device = %s", bkpinfo->media_device);
930 }
931
932
933 log_msg(2, "bkpinfo->isodir = %s", bkpinfo->isodir);
934
935 open_evalcall_form(_("Thinking..."));
936
937 get_cfg_file_from_archive_or_bust(bkpinfo);
938 read_cfg_file_into_bkpinfo(g_mondo_cfg_file, bkpinfo);
939 load_mountlist(mountlist, g_mountlist_fname); // in case read_cfg_file_into_bkpinfo
940
941 close_evalcall_form();
942 retval = load_mountlist(mountlist, g_mountlist_fname);
943 load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
944 filelist = process_filelist_and_biggielist(bkpinfo);
945 if (filelist) {
946 save_filelist(filelist, "/tmp/selected-files.txt");
947 asprintf(&old_restpath,bkpinfo->restore_path);
948 if (popup_and_get_string(_("Restore path"),
949 _("Restore files to where? )"),
950 bkpinfo->restore_path)) {
951 iamhere("Restoring everything");
952 retval += restore_everything(bkpinfo, filelist);
953 }
954 free_filelist(filelist);
955 paranoid_alloc(bkpinfo->restore_path,old_restpath);
956 }
957 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
958 log_msg(2,
959 "I probably don't need to unmount or eject the CD-ROM but I'm doing it anyway.");
960 }
961 run_program_and_log_output("umount " MNT_CDROM, FALSE);
962 if ((!bkpinfo->please_dont_eject) && (bkpinfo->media_device != NULL)) {
963 eject_device(bkpinfo->media_device);
964 }
965 free(mountlist);
966 free(raidlist);
967 return (retval);
968}
969
970/**************************************************************************
971 *END_RESTORE_TO_LIVE_FILESYSTEM *
972 **************************************************************************/
973
974/* @} - end of restoreGroup */
975
976
977#include <utime.h>
978/**
979 * @addtogroup LLrestoreGroup
980 * @{
981 */
982/**
983 * Restore biggiefile @p bigfileno from the currently mounted CD.
984 * @param bkpinfo The backup information structure. Fields used:
985 * - @c bkpinfo->backup_media_type
986 * - @c bkpinfo->restore_path
987 * @param bigfileno The biggiefile number (starting from 0) to restore.
988 * @param filelist The node structure containing the list of files to restore.
989 * If the biggiefile is not in this list, it will be skipped (return value will
990 * still indicate success).
991 * @return 0 for success (or skip), nonzero for failure.
992 */
993char *
994restore_a_biggiefile_from_CD(struct s_bkpinfo *bkpinfo,
995 long bigfileno,
996 struct s_node *filelist)
997{
998 FILE *fin = NULL;
999 FILE *fout = NULL;
1000 FILE *fbzip2 = NULL;
1001 char *checksum = NULL;
1002 char *outfile_fname = NULL;
1003 char *tmp = NULL;
1004 char *tmp1 = NULL;
1005 char *tmp2 = NULL;
1006 char *tmp3 = NULL;
1007 char *bzip2_command = NULL;
1008 char *bigblk = NULL;
1009 char *pathname_of_last_file_restored = NULL;
1010 int finished = FALSE;
1011 long sliceno;
1012 long siz;
1013 long siz1;
1014 char *ntfsprog_fifo = NULL;
1015 char *file_to_openout = NULL;
1016 struct s_filename_and_lstat_info biggiestruct;
1017 struct utimbuf the_utime_buf, *ubuf = NULL;
1018 bool use_ntfsprog_hack = FALSE;
1019 pid_t pid;
1020 int res = 0;
1021 int old_loglevel;
1022 char *sz_msg;
1023 struct s_node *node = NULL;
1024
1025 old_loglevel = g_loglevel;
1026 ubuf = &the_utime_buf;
1027 assert(bkpinfo != NULL);
1028
1029 if (!(bigblk = malloc(TAPE_BLOCK_SIZE))) {
1030 fatal_error("Cannot malloc bigblk");
1031 }
1032
1033 tmp = slice_fname(bigfileno, 0, ARCHIVES_PATH, "");
1034 if (!(fin = fopen(tmp,"r"))) {
1035 log_to_screen(_("Cannot even open bigfile's info file"));
1036 paranoid_free(tmp);
1037 return (pathname_of_last_file_restored);
1038 }
1039 paranoid_free(tmp);
1040
1041 memset((void *) &biggiestruct, 0, sizeof(biggiestruct));
1042 if (fread((void *) &biggiestruct, 1, sizeof(biggiestruct), fin) <
1043 sizeof(biggiestruct)) {
1044 log_msg(2, "Warning - unable to get biggiestruct of bigfile #%d",
1045 bigfileno + 1);
1046 }
1047 paranoid_fclose(fin);
1048
1049 asprintf(&checksum, biggiestruct.checksum);
1050
1051 if (!checksum[0]) {
1052 asprintf(&tmp, "Warning - bigfile %ld does not have a checksum",
1053 bigfileno + 1);
1054 log_msg(3, tmp);
1055 paranoid_free(tmp);
1056 /* BERLIOS : Useless ???
1057 p = checksum;
1058 */
1059 }
1060 paranoid_free(checksum);
1061
1062 if (!strncmp(biggiestruct.filename, "/dev/", 5)) // Whether NTFS or not :)
1063 {
1064 asprintf(&outfile_fname, biggiestruct.filename);
1065 } else {
1066 asprintf(&outfile_fname, "%s/%s", bkpinfo->restore_path,
1067 biggiestruct.filename);
1068 }
1069
1070 /* skip file if we have a selective restore subset & it doesn't match */
1071 if (filelist != NULL) {
1072 node = find_string_at_node(filelist, biggiestruct.filename);
1073 if (!node) {
1074 log_msg(0, "Skipping %s (name isn't in filelist)",
1075 biggiestruct.filename);
1076 return (pathname_of_last_file_restored);
1077 } else if (!(node->selected)) {
1078 log_msg(1, "Skipping %s (name isn't in biggielist subset)",
1079 biggiestruct.filename);
1080 return (pathname_of_last_file_restored);
1081 }
1082 }
1083 /* otherwise, continue */
1084
1085 log_msg(1, "DEFINITELY restoring %s", biggiestruct.filename);
1086 if (biggiestruct.use_ntfsprog) {
1087 if (strncmp(biggiestruct.filename, "/dev/", 5)) {
1088 log_msg(1,
1089 "I was in error when I set biggiestruct.use_ntfsprog to TRUE.");
1090 log_msg(1, "%s isn't even in /dev", biggiestruct.filename);
1091 biggiestruct.use_ntfsprog = FALSE;
1092 }
1093 }
1094
1095 if (biggiestruct.use_ntfsprog) // if it's an NTFS device
1096// if (!strncmp ( biggiestruct.filename, "/dev/", 5))
1097 {
1098 g_loglevel = 4;
1099 use_ntfsprog_hack = TRUE;
1100 log_msg(2,
1101 "Calling ntfsclone in background because %s is an NTFS /dev entry",
1102 outfile_fname);
1103 asprintf(&ntfsprog_fifo, "/tmp/%d.%d.000", (int) (random() % 32768),
1104 (int) (random() % 32768));
1105 mkfifo(ntfsprog_fifo, 0x770);
1106
1107 file_to_openout = ntfsprog_fifo;
1108 switch (pid = fork()) {
1109 case -1:
1110 fatal_error("Fork failure");
1111 case 0:
1112 log_msg(3,
1113 "CHILD - fip - calling feed_outfrom_ntfsprog(%s, %s)",
1114 biggiestruct.filename, ntfsprog_fifo);
1115 res =
1116 feed_outfrom_ntfsprog(biggiestruct.filename,
1117 ntfsprog_fifo);
1118// log_msg(3, "CHILD - fip - exiting");
1119 exit(res);
1120 break;
1121 default:
1122 log_msg(3,
1123 "feed_into_ntfsprog() called in background --- pid=%ld",
1124 (long int) (pid));
1125 }
1126 // BERLIOS: Is it the right place ??
1127 paranoid_free(ntfsprog_fifo);
1128 } else {
1129 use_ntfsprog_hack = FALSE;
1130 file_to_openout = outfile_fname;
1131 if (!does_file_exist(outfile_fname)) // yes, it looks weird with the '!' but it's correct that way
1132 {
1133 make_hole_for_file(outfile_fname);
1134 }
1135 }
1136
1137 asprintf(&tmp, "Reassembling big file %ld (%s)", bigfileno + 1,
1138 outfile_fname);
1139 log_msg(2, tmp);
1140 paranoid_free(tmp);
1141
1142 /*
1143 last slice is zero-length and uncompressed; when we find it, we stop.
1144 We DON'T wait until there are no more slices; if we did that,
1145 We might stop at end of CD, not at last slice (which is 0-len and uncompd)
1146 */
1147
1148 asprintf(&pathname_of_last_file_restored, biggiestruct.filename);
1149
1150 log_msg(3, "file_to_openout = %s", file_to_openout);
1151 if (!(fout = fopen(file_to_openout, "w"))) {
1152 log_to_screen(_("Cannot openout outfile_fname - hard disk full?"));
1153 return (pathname_of_last_file_restored);
1154 }
1155 log_msg(3, "Opened out to %s", outfile_fname); // CD/DVD --> mondorestore --> ntfsclone --> hard disk itself
1156
1157 for (sliceno = 1, finished = FALSE; !finished;) {
1158 tmp = slice_fname(bigfileno, sliceno, ARCHIVES_PATH, "");
1159 tmp1 = slice_fname(bigfileno, sliceno, ARCHIVES_PATH, "lzo");
1160 tmp2 = slice_fname(bigfileno, sliceno, ARCHIVES_PATH, "bz2");
1161 if (!does_file_exist(tmp) && !does_file_exist(tmp1) &&
1162 !does_file_exist(tmp2)) {
1163 log_msg(3,
1164 "Cannot find a data slice or terminator slice on CD %d",
1165 g_current_media_number);
1166 g_current_media_number++;
1167 asprintf(&tmp3,
1168 "Asking for %s #%d so that I may read slice #%ld\n",
1169 bkpinfo->backup_media_string,
1170 g_current_media_number, sliceno);
1171 log_msg(2, tmp3);
1172 paranoid_free(tmp3);
1173
1174 asprintf(&tmp3, _("Restoring from %s #%d"),
1175 bkpinfo->backup_media_string,
1176 g_current_media_number);
1177 log_to_screen(tmp3);
1178 paranoid_free(tmp3);
1179
1180 insist_on_this_cd_number(bkpinfo, g_current_media_number);
1181 log_to_screen(_("Continuing to restore."));
1182 } else {
1183 if (does_file_exist(tmp) && length_of_file(tmp) == 0) {
1184 log_msg(2,
1185 "End of bigfile # %ld (slice %ld is the terminator)",
1186 bigfileno + 1, sliceno);
1187 finished = TRUE;
1188 continue;
1189 } else {
1190 if (does_file_exist(tmp1)) {
1191 asprintf(&bzip2_command, "lzop -dc %s 2>> %s",tmp1, MONDO_LOGFILE);
1192 } else if (does_file_exist(tmp2)) {
1193 asprintf(&bzip2_command, "bzip2 -dc %s 2>> %s",tmp2, MONDO_LOGFILE);
1194 } else if (does_file_exist(tmp)) {
1195 asprintf(&bzip2_command, "%s", "");
1196 } else {
1197 log_to_screen(_("OK, that's pretty fsck0red..."));
1198 return (pathname_of_last_file_restored);
1199 }
1200 }
1201
1202 if (bzip2_command == NULL) {
1203 asprintf(&bzip2_command, "cat %s 2>> %s", tmp, MONDO_LOGFILE);
1204 }
1205 asprintf(&tmp3, "Working on %s #%d, file #%ld, slice #%ld ",
1206 bkpinfo->backup_media_string,
1207 g_current_media_number, bigfileno + 1, sliceno);
1208 log_msg(2, tmp3);
1209 if (!g_text_mode) {
1210 newtDrawRootText(0, g_noof_rows - 2, tmp3);
1211 newtRefresh();
1212 update_progress_form(tmp3);
1213 }
1214 paranoid_free(tmp3);
1215
1216 if (!(fbzip2 = popen(bzip2_command, "r"))) {
1217 fatal_error("Can't run popen command");
1218 }
1219 paranoid_free(bzip2_command);
1220
1221 while (!feof(fbzip2)) {
1222 siz = fread(bigblk, 1, TAPE_BLOCK_SIZE, fbzip2);
1223 if (siz > 0) {
1224 siz1 = fwrite(bigblk, 1, siz, fout);
1225 asprintf(&sz_msg, "Read %ld from fbzip2; written %ld to fout", siz, siz1);
1226 log_it(sz_msg);
1227 paranoid_free(sz_msg);
1228 }
1229 }
1230 paranoid_pclose(fbzip2);
1231
1232
1233 sliceno++;
1234 g_current_progress++;
1235 }
1236 paranoid_free(tmp);
1237 paranoid_free(tmp1);
1238 paranoid_free(tmp2);
1239 }
1240 paranoid_fclose(fout);
1241 g_loglevel = old_loglevel;
1242
1243 if (use_ntfsprog_hack) {
1244 log_msg(3, "Waiting for ntfsclone to finish");
1245 asprintf(&tmp,
1246 " ps | grep \" ntfsclone \" | grep -v grep > /dev/null 2> /dev/null");
1247 while (system(tmp) == 0) {
1248 sleep(1);
1249 }
1250 paranoid_free(tmp);
1251 log_it("OK, ntfsclone has really finished");
1252 }
1253
1254 if (strcmp(outfile_fname, "/dev/null")) {
1255 chown(outfile_fname, biggiestruct.properties.st_uid,
1256 biggiestruct.properties.st_gid);
1257 chmod(outfile_fname, biggiestruct.properties.st_mode);
1258 ubuf->actime = biggiestruct.properties.st_atime;
1259 ubuf->modtime = biggiestruct.properties.st_mtime;
1260 utime(outfile_fname, ubuf);
1261 }
1262 paranoid_free(outfile_fname);
1263 paranoid_free(bigblk);
1264
1265 return (pathname_of_last_file_restored);
1266}
1267
1268
1269/**************************************************************************
1270 *END_ RESTORE_A_BIGGIEFILE_FROM_CD *
1271 **************************************************************************/
1272
1273
1274/**
1275 * Restore a biggiefile from the currently opened stream.
1276 * @param bkpinfo The backup information structure. Fields used:
1277 * - @c bkpinfo->restore_path
1278 * - @c bkpinfo->zip_exe
1279 * @param orig_bf_fname The original filename of the biggiefile.
1280 * @param biggiefile_number The number of the biggiefile (starting from 0).
1281 * @param filelist The node structure containing the list of files to be restored.
1282 * If @p orig_bf_fname is not in the list, it will be ignored.
1283 * @return 0 for success (or skip), nonzero for failure.
1284 */
1285char *restore_a_biggiefile_from_stream(struct s_bkpinfo *bkpinfo, char *orig_bf_fname, long biggiefile_number,
1286 struct s_node *filelist,
1287 int use_ntfsprog)
1288{
1289 FILE *pout;
1290 FILE *fin;
1291
1292 /** mallocs ********/
1293 char *tmp = NULL;
1294 char *tmp1 = NULL;
1295 char *command = NULL;
1296 char *outfile_fname = NULL;
1297 char *ntfsprog_fifo = NULL;
1298 char *file_to_openout = NULL;
1299 char *pathname_of_last_file_restored = NULL;
1300
1301 struct s_node *node;
1302
1303 int old_loglevel;
1304 long current_slice_number = 0;
1305 int retval = 0;
1306 int res = 0;
1307 int ctrl_chr = '\0';
1308 long long slice_siz;
1309 bool dummy_restore = FALSE;
1310 bool use_ntfsprog_hack = FALSE;
1311 pid_t pid;
1312 struct s_filename_and_lstat_info biggiestruct;
1313 struct utimbuf the_utime_buf, *ubuf;
1314 ubuf = &the_utime_buf;
1315
1316 old_loglevel = g_loglevel;
1317 assert(bkpinfo != NULL);
1318 assert(orig_bf_fname != NULL);
1319
1320 if (use_ntfsprog == BLK_START_A_PIHBIGGIE) {
1321 use_ntfsprog = 1;
1322 log_msg(1, "%s --- pih=YES", orig_bf_fname);
1323 } else if (use_ntfsprog == BLK_START_A_NORMBIGGIE) {
1324 use_ntfsprog = 0;
1325 log_msg(1, "%s --- pih=NO", orig_bf_fname);
1326 } else {
1327 use_ntfsprog = 0;
1328 log_msg(1, "%s --- pih=NO (weird marker though)", orig_bf_fname);
1329 }
1330
1331 asprintf(&pathname_of_last_file_restored, orig_bf_fname);
1332
1333 /* open out to biggiefile to be restored (or /dev/null if biggiefile is not to be restored) */
1334
1335 if (filelist != NULL) {
1336 node = find_string_at_node(filelist, orig_bf_fname);
1337 if (!node) {
1338 dummy_restore = TRUE;
1339 log_msg(1,
1340 "Skipping big file %ld (%s) - not in biggielist subset",
1341 biggiefile_number + 1, orig_bf_fname);
1342 pathname_of_last_file_restored = NULL;
1343 } else if (!(node->selected)) {
1344 dummy_restore = TRUE;
1345 log_msg(1, "Skipping %s (name isn't in biggielist subset)",
1346 orig_bf_fname);
1347 pathname_of_last_file_restored = NULL;
1348 }
1349 }
1350
1351 if (use_ntfsprog) {
1352 if (strncmp(orig_bf_fname, "/dev/", 5)) {
1353 log_msg(1, "I was in error when I set use_ntfsprog to TRUE.");
1354 log_msg(1, "%s isn't even in /dev", orig_bf_fname);
1355 use_ntfsprog = FALSE;
1356 }
1357 }
1358
1359 if (use_ntfsprog) {
1360 g_loglevel = 4;
1361 asprintf(&outfile_fname, orig_bf_fname);
1362 use_ntfsprog_hack = TRUE;
1363 log_msg(2,
1364 "Calling ntfsclone in background because %s is a /dev entry",
1365 outfile_fname);
1366 asprintf(&ntfsprog_fifo, "%s/%d.%d.000",
1367 bkpinfo->tmpdir,
1368 (int) (random() % 32768),
1369 (int) (random() % 32768));
1370 mkfifo(ntfsprog_fifo, 0x770);
1371
1372 file_to_openout = ntfsprog_fifo;
1373 switch (pid = fork()) {
1374 case -1:
1375 fatal_error("Fork failure");
1376 case 0:
1377 log_msg(3,
1378 "CHILD - fip - calling feed_outfrom_ntfsprog(%s, %s)",
1379 outfile_fname, ntfsprog_fifo);
1380 res = feed_outfrom_ntfsprog(outfile_fname, ntfsprog_fifo);
1381// log_msg(3, "CHILD - fip - exiting");
1382 exit(res);
1383 break;
1384 default:
1385 log_msg(3,
1386 "feed_into_ntfsprog() called in background --- pid=%ld",
1387 (long int) (pid));
1388 }
1389 paranoid_free(ntfsprog_fifo);
1390 } else {
1391 if (!strncmp(orig_bf_fname, "/dev/", 5)) // non-NTFS partition
1392 {
1393 asprintf(&outfile_fname, orig_bf_fname);
1394 } else // biggiefile
1395 {
1396 asprintf(&outfile_fname, "%s/%s", bkpinfo->restore_path,
1397 orig_bf_fname);
1398 }
1399 use_ntfsprog_hack = FALSE;
1400 file_to_openout = outfile_fname;
1401 if (!does_file_exist(outfile_fname)) // yes, it looks weird with the '!' but it's correct that way
1402 {
1403 make_hole_for_file(outfile_fname);
1404 }
1405 asprintf(&tmp1, "Reassembling big file %ld (%s)",
1406 biggiefile_number + 1, orig_bf_fname);
1407 log_msg(2, tmp1);
1408 paranoid_free(tmp1);
1409 }
1410
1411 if (dummy_restore) {
1412 paranoid_free(outfile_fname);
1413 asprintf(&outfile_fname, "/dev/null");
1414 }
1415
1416 if (bkpinfo->zip_exe == NULL) {
1417 asprintf(&command, "cat > \"%s\"", file_to_openout);
1418 } else {
1419 asprintf(&command, "%s -dc > \"%s\" 2>> %s", bkpinfo->zip_exe,
1420 file_to_openout, MONDO_LOGFILE);
1421 }
1422 asprintf(&tmp1, "Pipe command = '%s'", command);
1423 log_msg(3, tmp1);
1424 paranoid_free(tmp1);
1425
1426 /* restore biggiefile, one slice at a time */
1427 if (!(pout = popen(command, "w"))) {
1428 fatal_error("Cannot pipe out");
1429 }
1430 paranoid_free(command);
1431
1432 for (res = read_header_block_from_stream(&slice_siz, tmp, &ctrl_chr);
1433 ctrl_chr != BLK_STOP_A_BIGGIE;
1434 res = read_header_block_from_stream(&slice_siz, tmp, &ctrl_chr)) {
1435 if (ctrl_chr != BLK_START_AN_AFIO_OR_SLICE) {
1436 wrong_marker(BLK_START_AN_AFIO_OR_SLICE, ctrl_chr);
1437 }
1438 asprintf(&tmp1, "Working on file #%ld, slice #%ld ",
1439 biggiefile_number + 1, current_slice_number);
1440 log_msg(2, tmp1);
1441
1442 if (!g_text_mode) {
1443 newtDrawRootText(0, g_noof_rows - 2, tmp1);
1444 newtRefresh();
1445 }
1446 strip_spaces(tmp1);
1447 update_progress_form(tmp1);
1448 paranoid_free(tmp1);
1449
1450 if (current_slice_number == 0) {
1451 res =
1452 read_file_from_stream_to_file(bkpinfo,
1453 "/tmp/biggie-blah.txt",
1454 slice_siz);
1455 if (!(fin = fopen("/tmp/biggie-blah.txt", "r"))) {
1456 log_OS_error("blah blah");
1457 } else {
1458 if (fread
1459 ((void *) &biggiestruct, 1, sizeof(biggiestruct),
1460 fin) < sizeof(biggiestruct)) {
1461 log_msg(2,
1462 "Warning - unable to get biggiestruct of bigfile #%d",
1463 biggiefile_number + 1);
1464 }
1465 paranoid_fclose(fin);
1466 }
1467 } else {
1468 res =
1469 read_file_from_stream_to_stream(bkpinfo, pout, slice_siz);
1470 }
1471 retval += res;
1472 res = read_header_block_from_stream(&slice_siz, tmp, &ctrl_chr);
1473 if (ctrl_chr != BLK_STOP_AN_AFIO_OR_SLICE) {
1474 wrong_marker(BLK_STOP_AN_AFIO_OR_SLICE, ctrl_chr);
1475 }
1476 current_slice_number++;
1477 g_current_progress++;
1478 }
1479 paranoid_free(tmp);
1480 paranoid_pclose(pout);
1481
1482 log_msg(1, "pathname_of_last_file_restored is now %s",
1483 pathname_of_last_file_restored);
1484
1485 if (use_ntfsprog_hack) {
1486 log_msg(3, "Waiting for ntfsclone to finish");
1487 asprintf(&tmp,
1488 " ps | grep \" ntfsclone \" | grep -v grep > /dev/null 2> /dev/null");
1489 while (system(tmp) == 0) {
1490 sleep(1);
1491 }
1492 paranoid_free(tmp);
1493 log_msg(3, "OK, ntfsclone has really finished");
1494 }
1495
1496 log_msg(3, "biggiestruct.filename = %s", biggiestruct.filename);
1497 log_msg(3, "biggiestruct.checksum = %s", biggiestruct.checksum);
1498 if (strcmp(outfile_fname, "/dev/null")) {
1499 chmod(outfile_fname, biggiestruct.properties.st_mode);
1500 chown(outfile_fname, biggiestruct.properties.st_uid,
1501 biggiestruct.properties.st_gid);
1502 ubuf->actime = biggiestruct.properties.st_atime;
1503 ubuf->modtime = biggiestruct.properties.st_mtime;
1504 utime(outfile_fname, ubuf);
1505 }
1506
1507 paranoid_free(outfile_fname);
1508 g_loglevel = old_loglevel;
1509 return (pathname_of_last_file_restored);
1510}
1511
1512/**************************************************************************
1513 *END_RESTORE_A_BIGGIEFILE_FROM_STREAM *
1514 **************************************************************************/
1515
1516
1517/**
1518 * Restore @p tarball_fname from CD.
1519 * @param tarball_fname The filename of the tarball to restore (in /mnt/cdrom).
1520 * This will be used unmodified.
1521 * @param current_tarball_number The number (starting from 0) of the fileset
1522 * we're restoring now.
1523 * @param filelist The node structure containing the list of files to be
1524 * restored. If no file in the afioball is in this list, afio will still be
1525 * called, but nothing will be written.
1526 * @return 0 for success, nonzero for failure.
1527 */
1528int
1529restore_a_tarball_from_CD(char *tarball_fname,
1530 long current_tarball_number,
1531 struct s_node *filelist)
1532{
1533 int retval = 0;
1534 int res;
1535 char *p;
1536
1537 /** malloc **/
1538 char *command;
1539 char *tmp = NULL;
1540 char *filelist_name;
1541 char *filelist_subset_fname = NULL;
1542 char *executable = NULL;
1543 char *temp_log = NULL;
1544 long matches = 0;
1545 bool use_star;
1546 char *xattr_fname = NULL;
1547 char *acl_fname = NULL;
1548
1549 assert_string_is_neither_NULL_nor_zerolength(tarball_fname);
1550
1551 log_msg(5, "Entering");
1552 use_star = (strstr(tarball_fname, ".star")) ? TRUE : FALSE;
1553 asprintf(&command, "mkdir -p %s/tmp", MNT_RESTORING);
1554 run_program_and_log_output(command, 9);
1555 paranoid_free(command);
1556
1557 asprintf(&filelist_name, MNT_CDROM "/archives/filelist.%ld",
1558 current_tarball_number);
1559 if (length_of_file(filelist_name) <= 2) {
1560 log_msg(2, "There are _zero_ files in filelist '%s'",
1561 filelist_name);
1562 log_msg(2,
1563 "This is a bit silly (ask dev-team to fix mondo_makefilelist, please)");
1564 log_msg(2,
1565 "but it's non-critical. It's cosmetic. Don't worry about it.");
1566 retval = 0;
1567 log_msg(5, "Leaving");
1568 return (retval);
1569 }
1570 if (count_lines_in_file(filelist_name) <= 0
1571 || length_of_file(tarball_fname) <= 0) {
1572 log_msg(3, "length_of_file(%s) = %llu", tarball_fname,
1573 length_of_file(tarball_fname));
1574 asprintf(&tmp, "Unable to restore fileset #%ld (CD I/O error)",
1575 current_tarball_number);
1576 log_to_screen(tmp);
1577 paranoid_free(tmp);
1578 retval = 1;
1579 log_msg(5, "Leaving");
1580 return (retval);
1581 }
1582
1583 if (filelist) {
1584 asprintf(&filelist_subset_fname, "/tmp/filelist-subset-%ld.tmp",
1585 current_tarball_number);
1586 if ((matches =
1587 save_filelist_entries_in_common(filelist_name, filelist,
1588 filelist_subset_fname,
1589 use_star))
1590 <= 0) {
1591 asprintf(&tmp, "Skipping fileset %ld", current_tarball_number);
1592 log_msg(1, tmp);
1593 paranoid_free(tmp);
1594 } else {
1595 log_msg(3, "Saved fileset %ld's subset to %s",
1596 current_tarball_number, filelist_subset_fname);
1597 }
1598 asprintf(&tmp, "Tarball #%ld --- %ld matches",
1599 current_tarball_number, matches);
1600 log_to_screen(tmp);
1601 paranoid_free(tmp);
1602 } else {
1603 filelist_subset_fname = NULL;
1604 }
1605 paranoid_free(filelist_name);
1606
1607 if (filelist == NULL || matches > 0) {
1608 asprintf(&xattr_fname, XATTR_LIST_FNAME_RAW_SZ,
1609 MNT_CDROM "/archives", current_tarball_number);
1610 asprintf(&acl_fname, ACL_LIST_FNAME_RAW_SZ, MNT_CDROM "/archives",
1611 current_tarball_number);
1612 if (strstr(tarball_fname, ".bz2")) {
1613 asprintf(&executable, "bzip2");
1614 } else if (strstr(tarball_fname, ".lzo")) {
1615 asprintf(&executable, "lzop");
1616 } else {
1617 executable = NULL;
1618 }
1619
1620 if (executable == NULL) {
1621 asprintf(&tmp, "which %s > /dev/null 2> /dev/null", executable);
1622 if (run_program_and_log_output(tmp, FALSE)) {
1623 log_to_screen
1624 (_
1625 ("(compare_a_tarball) Compression program not found - oh no!"));
1626 paranoid_MR_finish(1);
1627 }
1628 paranoid_free(tmp);
1629
1630 asprintf(&tmp, executable);
1631 asprintf(&executable, "-P %s -Z", tmp);
1632 paranoid_free(tmp);
1633 }
1634#ifdef __FreeBSD__
1635#define BUFSIZE 512
1636#else
1637#define BUFSIZE (1024L*1024L)/TAPE_BLOCK_SIZE
1638#endif
1639
1640 asprintf(&temp_log, "/tmp/%d.%d", (int) (random() % 32768),
1641 (int) (random() % 32768));
1642
1643 if (use_star) {
1644 if (strstr(tarball_fname, ".bz2")) {
1645 asprintf(&tmp, " -bz");
1646 } else {
1647 asprintf(&tmp, "%s", "");
1648 }
1649 asprintf(&command,
1650 "star -x -force-remove -U " STAR_ACL_SZ
1651 " errctl= file=%s %s 2>> %s >> %s", tarball_fname, tmp, temp_log, temp_log);
1652 paranoid_free(tmp);
1653 } else {
1654 if (filelist_subset_fname != NULL) {
1655 asprintf(&command,
1656 "afio -i -M 8m -b %ld -c %ld %s -w '%s' %s 2>> %s >> %s",
1657 TAPE_BLOCK_SIZE,
1658 BUFSIZE, executable, filelist_subset_fname,
1659// files_to_restore_this_time_fname,
1660 tarball_fname, temp_log, temp_log);
1661 } else {
1662 asprintf(&command,
1663 "afio -i -b %ld -c %ld -M 8m %s %s 2>> %s >> %s",
1664 TAPE_BLOCK_SIZE,
1665 BUFSIZE, executable, tarball_fname, temp_log, temp_log);
1666 }
1667 }
1668 paranoid_free(executable);
1669
1670#undef BUFSIZE
1671 log_msg(1, "command = '%s'", command);
1672 unlink(temp_log);
1673 res = system(command);
1674 if (res) {
1675 p = strstr(command, "-acl ");
1676 if (p) {
1677 p[0] = p[1] = p[2] = p[3] = ' ';
1678 log_msg(1, "new command = '%s'", command);
1679 res = system(command);
1680 }
1681 }
1682 paranoid_free(command);
1683
1684 if (res && length_of_file(temp_log) < 5) {
1685 res = 0;
1686 }
1687
1688 log_msg(1, "Setting fattr list %s", xattr_fname);
1689 if (length_of_file(xattr_fname) > 0) {
1690 res = set_fattr_list(filelist_subset_fname, xattr_fname);
1691 if (res) {
1692 log_to_screen
1693 (_
1694 ("Errors occurred while setting extended attributes"));
1695 } else {
1696 log_msg(1, "I set xattr OK");
1697 }
1698 retval += res;
1699 }
1700 if (length_of_file(acl_fname) > 0) {
1701 log_msg(1, "Setting acl list %s", acl_fname);
1702 res = set_acl_list(filelist_subset_fname, acl_fname);
1703 if (res) {
1704 log_to_screen
1705 (_
1706 ("Errors occurred while setting access control lists"));
1707 } else {
1708 log_msg(1, "I set ACL OK");
1709 }
1710 retval += res;
1711 }
1712 if (retval) {
1713 asprintf(&command, "cat %s >> %s", temp_log, MONDO_LOGFILE);
1714 system(command);
1715 paranoid_free(command);
1716 log_msg(2, "Errors occurred while processing fileset #%d",
1717 current_tarball_number);
1718 } else {
1719 log_msg(2, "Fileset #%d processed OK", current_tarball_number);
1720 }
1721 unlink(xattr_fname);
1722 paranoid_free(xattr_fname);
1723 }
1724 if (does_file_exist("/PAUSE")) {
1725 popup_and_OK
1726 (_
1727 ("Press ENTER to go on. Delete /PAUSE to stop these pauses."));
1728 }
1729 unlink(filelist_subset_fname);
1730 unlink(acl_fname);
1731 unlink(temp_log);
1732
1733 paranoid_free(filelist_subset_fname);
1734 paranoid_free(acl_fname);
1735 paranoid_free(temp_log);
1736
1737 log_msg(5, "Leaving");
1738 return (retval);
1739}
1740
1741/**************************************************************************
1742 *END_RESTORE_A_TARBALL_FROM_CD *
1743 **************************************************************************/
1744
1745
1746/**
1747 * Restore a tarball from the currently opened stream.
1748 * @param bkpinfo The backup information structure. Fields used:
1749 * - @c bkpinfo->backup_media_type
1750 * - @c bkpinfo->media_device
1751 * - @c bkpinfo->zip_exe
1752 * @param tarball_fname The filename of the afioball to restore.
1753 * @param current_tarball_number The number (starting from 0) of the fileset
1754 * we're restoring now.
1755 * @param filelist The node structure containing the list of files to be
1756 * restored. If no file in the afioball is in this list, afio will still be
1757 * called, but nothing will be written.
1758 * @param size The size (in @b bytes) of the afioball.
1759 * @return 0 for success, nonzero for failure.
1760 */
1761int
1762restore_a_tarball_from_stream(struct s_bkpinfo *bkpinfo,
1763 char *tarball_fname,
1764 long current_tarball_number,
1765 struct s_node *filelist,
1766 long long size, char *xattr_fname,
1767 char *acl_fname)
1768{
1769 int retval = 0;
1770 int res = 0;
1771
1772 /** malloc add ***/
1773 char *tmp = NULL;
1774 char *command = NULL;
1775 char *afio_fname = NULL;
1776 char *filelist_fname = NULL;
1777 char *filelist_subset_fname = NULL;
1778 char *executable = NULL;
1779 long matches = 0;
1780 bool restore_this_fileset = FALSE;
1781 bool use_star;
1782
1783 assert(bkpinfo != NULL);
1784 assert_string_is_neither_NULL_nor_zerolength(tarball_fname);
1785 /* to do it with a file... */
1786 use_star = (strstr(tarball_fname, ".star")) ? TRUE : FALSE;
1787 asprintf(&tmp,
1788 "Restoring from fileset #%ld (%ld KB) on %s #%d",
1789 current_tarball_number, (long) size >> 10,
1790 bkpinfo->backup_media_string,
1791 g_current_media_number);
1792 log_msg(2, tmp);
1793 paranoid_free(tmp);
1794 run_program_and_log_output("mkdir -p " MNT_RESTORING "/tmp", FALSE);
1795
1796 /****************************************************************************
1797 * Use RAMDISK's /tmp; saves time; oh wait, it's too small *
1798 * Well, pipe from tape to afio, then; oh wait, can't do that either: bug *
1799 * in afio or someting; oh darn.. OK, use tmpfs :-) *
1800 ****************************************************************************/
1801 asprintf(&afio_fname, "/tmp/tmpfs/archive.tmp.%ld",
1802 current_tarball_number);
1803 asprintf(&filelist_fname, "%s/filelist.%ld", bkpinfo->tmpdir,
1804 current_tarball_number);
1805 asprintf(&filelist_subset_fname, "%s/filelist-subset-%ld.tmp",
1806 bkpinfo->tmpdir, current_tarball_number);
1807 res = read_file_from_stream_to_file(bkpinfo, afio_fname, size);
1808 if (strstr(tarball_fname, ".star")) {
1809 bkpinfo->use_star = TRUE;
1810 }
1811 if (res) {
1812 log_msg(1, "Warning - error reading afioball from tape");
1813 }
1814 if (bkpinfo->compression_level != 0) {
1815 if (bkpinfo->use_star) {
1816 asprintf(&executable, " -bz");
1817 } else {
1818 asprintf(&executable, "-P %s -Z", bkpinfo->zip_exe);
1819 }
1820 }
1821
1822 if (!filelist) // if unconditional restore then restore entire fileset
1823 {
1824 restore_this_fileset = TRUE;
1825 } else // If restoring selectively then get TOC from tarball
1826 {
1827 if (strstr(tarball_fname, ".star.")) {
1828 use_star = TRUE;
1829 asprintf(&command, "star -t file=%s %s > %s 2>> %s", afio_fname, executable, filelist_fname, MONDO_LOGFILE);
1830 } else {
1831 use_star = FALSE;
1832 asprintf(&command, "afio -t -M 8m -b %ld %s %s > %s 2>> %s", TAPE_BLOCK_SIZE,
1833 executable, afio_fname, filelist_fname, MONDO_LOGFILE);
1834 }
1835 log_msg(1, "command = %s", command);
1836 if (system(command)) {
1837 log_msg(4, "Warning - error occurred while retrieving TOC");
1838 }
1839 paranoid_free(command);
1840 if ((matches =
1841 save_filelist_entries_in_common(filelist_fname, filelist,
1842 filelist_subset_fname,
1843 use_star))
1844 <= 0 || length_of_file(filelist_subset_fname) < 2) {
1845 if (length_of_file(filelist_subset_fname) < 2) {
1846 log_msg(1, "No matches found in fileset %ld",
1847 current_tarball_number);
1848 }
1849 asprintf(&tmp, "Skipping fileset %ld", current_tarball_number);
1850 log_msg(2, tmp);
1851 paranoid_free(tmp);
1852 restore_this_fileset = FALSE;
1853 } else {
1854 log_msg(5, "%ld matches. Saved fileset %ld's subset to %s",
1855 matches, current_tarball_number,
1856 filelist_subset_fname);
1857 restore_this_fileset = TRUE;
1858 }
1859 }
1860 unlink(filelist_fname);
1861 paranoid_free(filelist_fname);
1862
1863// Concoct the call to star/afio to restore files
1864 if (strstr(tarball_fname, ".star.")) {
1865 // star
1866 if (filelist) {
1867 asprintf(&command, "star -x file=%s %s list=%s 2>> %s", afio_fname, executable,
1868 filelist_subset_fname,MONDO_LOGFILE);
1869 } else {
1870 asprintf(&command,"star -x file=%s %s 2>> %s", afio_fname, executable,MONDO_LOGFILE);
1871 }
1872 } else {
1873 // afio
1874 if (filelist) {
1875 asprintf(&command, "afio -i -M 8m -b %ld %s -w %s %s 2>> %s", TAPE_BLOCK_SIZE, executable, filelist_subset_fname,afio_fname,MONDO_LOGFILE);
1876 } else {
1877 asprintf(&command, "afio -i -M 8m -b %ld %s %s 2>> %s", TAPE_BLOCK_SIZE, executable,afio_fname,MONDO_LOGFILE);
1878 }
1879 }
1880 paranoid_free(executable);
1881
1882 // Call if IF there are files to restore (selectively/unconditionally)
1883 if (restore_this_fileset) {
1884 log_msg(1, "Calling command='%s'", command);
1885 paranoid_system(command);
1886
1887 iamhere("Restoring xattr, acl stuff");
1888 res = set_fattr_list(filelist_subset_fname, xattr_fname);
1889 if (res) {
1890 log_msg(1, "Errors occurred while setting xattr");
1891 } else {
1892 log_msg(1, "I set xattr OK");
1893 }
1894 retval += res;
1895
1896 res = set_acl_list(filelist_subset_fname, acl_fname);
1897 if (res) {
1898 log_msg(1, "Errors occurred while setting ACL");
1899 } else {
1900 log_msg(1, "I set ACL OK");
1901 }
1902 retval += res;
1903
1904 } else {
1905 log_msg(1, "NOT CALLING '%s'", command);
1906 }
1907 paranoid_free(command);
1908
1909 if (does_file_exist("/PAUSE") && current_tarball_number >= 50) {
1910 log_to_screen(_("Paused after set %ld"), current_tarball_number);
1911 popup_and_OK(_("Pausing. Press ENTER to continue."));
1912 }
1913
1914 unlink(filelist_subset_fname);
1915 unlink(afio_fname);
1916
1917 paranoid_free(filelist_subset_fname);
1918 paranoid_free(afio_fname);
1919 return (retval);
1920}
1921
1922/**************************************************************************
1923 *END_RESTORE_A_TARBALL_FROM_STREAM *
1924 **************************************************************************/
1925
1926
1927/**
1928 * Restore all biggiefiles from all media in this CD backup.
1929 * The CD with the last afioball should be currently mounted.
1930 * @param bkpinfo The backup information structure. @c backup_media_type is the
1931 * only field used in this function.
1932 * @param filelist The node structure containing the list of files to be
1933 * restored. If a prospective biggiefile is not in this list, it will be ignored.
1934 * @return 0 for success, nonzero for failure.
1935 */
1936int
1937restore_all_biggiefiles_from_CD(struct s_bkpinfo *bkpinfo,
1938 struct s_node *filelist)
1939{
1940 int retval = 0;
1941 int res = 0;
1942 long noof_biggiefiles = 0L, bigfileno = 0L, total_slices = 0L;
1943 char *tmp = NULL;
1944 char *tmp1 = NULL;
1945 bool just_changed_cds = FALSE, finished = FALSE;
1946 char *xattr_fname = NULL;
1947 char *acl_fname = NULL;
1948 char *biggies_whose_EXATs_we_should_set = NULL; // EXtended ATtributes
1949 char *pathname_of_last_biggie_restored = NULL;
1950 FILE *fbw = NULL;
1951
1952 assert(bkpinfo != NULL);
1953
1954 asprintf(&biggies_whose_EXATs_we_should_set,
1955 "%s/biggies-whose-EXATs-we-should-set", bkpinfo->tmpdir);
1956 if (!(fbw = fopen(biggies_whose_EXATs_we_should_set, "w"))) {
1957 log_msg(1, "Warning - cannot openout %s",
1958 biggies_whose_EXATs_we_should_set);
1959 }
1960
1961 read_cfg_var(g_mondo_cfg_file, "total-slices", tmp);
1962 total_slices = atol(tmp);
1963 paranoid_free(tmp);
1964
1965 asprintf(&tmp, _("Reassembling large files "));
1966 mvaddstr_and_log_it(g_currentY, 0, tmp);
1967 paranoid_free(tmp);
1968
1969 if (length_of_file(BIGGIELIST) < 6) {
1970 log_msg(1, "OK, no biggielist; not restoring biggiefiles");
1971 return (0);
1972 }
1973 noof_biggiefiles = count_lines_in_file(BIGGIELIST);
1974 if (noof_biggiefiles <= 0) {
1975 log_msg(2,
1976 "OK, no biggiefiles in biggielist; not restoring biggiefiles");
1977 return (0);
1978 }
1979 asprintf(&tmp, "OK, there are %ld biggiefiles in the archives",
1980 noof_biggiefiles);
1981 log_msg(2, tmp);
1982 paranoid_free(tmp);
1983
1984 open_progress_form(_("Reassembling large files"),
1985 _("I am now reassembling all the large files."),
1986 _("Please wait. This may take some time."),
1987 "", total_slices);
1988 for (bigfileno = 0, finished = FALSE; !finished;) {
1989 log_msg(2, "Thinking about restoring bigfile %ld", bigfileno + 1);
1990 tmp = slice_fname(bigfileno, 0, ARCHIVES_PATH, "");
1991 if (!does_file_exist(tmp)) {
1992 log_msg(3,
1993 "...but its first slice isn't on this CD. Perhaps this was a selective restore?");
1994 log_msg(3, "Cannot find bigfile #%ld 's first slice on %s #%d",
1995 bigfileno + 1,
1996 bkpinfo->backup_media_string,
1997 g_current_media_number);
1998 tmp1 = slice_fname(bigfileno + 1, 0, ARCHIVES_PATH, "");
1999 log_msg(3, "Slicename would have been %s", tmp1);
2000 paranoid_free(tmp1);
2001
2002 // I'm not positive 'just_changed_cds' is even necessary...
2003 if (just_changed_cds) {
2004 just_changed_cds = FALSE;
2005 log_msg(3,
2006 "I'll continue to scan this CD for bigfiles to be restored.");
2007 } else if (does_file_exist(MNT_CDROM "/archives/NOT-THE-LAST")) {
2008 insist_on_this_cd_number(bkpinfo,
2009 ++g_current_media_number);
2010 asprintf(&tmp, _("Restoring from %s #%d"),
2011 bkpinfo->backup_media_string,
2012 g_current_media_number);
2013 log_to_screen(tmp);
2014 paranoid_free(tmp);
2015
2016 just_changed_cds = TRUE;
2017 } else {
2018 log_msg(2, "There was no bigfile #%ld. That's OK.",
2019 bigfileno + 1);
2020 log_msg(2, "I'm going to stop restoring bigfiles now.");
2021 finished = TRUE;
2022 }
2023 } else {
2024 just_changed_cds = FALSE;
2025 asprintf(&tmp, _("Restoring big file %ld"), bigfileno + 1);
2026 update_progress_form(tmp);
2027 paranoid_free(tmp);
2028
2029 pathname_of_last_biggie_restored =
2030 restore_a_biggiefile_from_CD(bkpinfo, bigfileno, filelist);
2031 iamhere(pathname_of_last_biggie_restored);
2032 if (fbw && pathname_of_last_biggie_restored[0]) {
2033 fprintf(fbw, "%s\n", pathname_of_last_biggie_restored);
2034 }
2035 paranoid_free(pathname_of_last_biggie_restored);
2036 retval += res;
2037 bigfileno++;
2038
2039 }
2040 paranoid_free(tmp);
2041 }
2042
2043 if (fbw) {
2044 fclose(fbw);
2045 asprintf(&acl_fname, ACL_BIGGLST_FNAME_RAW_SZ, ARCHIVES_PATH);
2046 asprintf(&xattr_fname, XATTR_BIGGLST_FNAME_RAW_SZ, ARCHIVES_PATH);
2047 tmp = find_home_of_exe("setfacl");
2048 if (length_of_file(acl_fname) > 0 && tmp) {
2049 set_acl_list(biggies_whose_EXATs_we_should_set, acl_fname);
2050 }
2051 paranoid_free(tmp);
2052
2053 tmp = find_home_of_exe("setfattr");
2054 if (length_of_file(xattr_fname) > 0 && tmp) {
2055 set_fattr_list(biggies_whose_EXATs_we_should_set, xattr_fname);
2056 }
2057 paranoid_free(tmp);
2058 paranoid_free(acl_fname);
2059 paranoid_free(xattr_fname);
2060 }
2061 paranoid_free(biggies_whose_EXATs_we_should_set);
2062
2063 if (does_file_exist("/PAUSE")) {
2064 popup_and_OK
2065 (_
2066 ("Press ENTER to go on. Delete /PAUSE to stop these pauses."));
2067 }
2068 close_progress_form();
2069 if (retval) {
2070 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
2071 } else {
2072 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
2073 }
2074 return (retval);
2075}
2076/**************************************************************************
2077 *END_RESTORE_ALL_BIGGIFILES_FROM_CD *
2078 **************************************************************************/
2079
2080
2081/**
2082 * Restore all afioballs from all CDs in the backup.
2083 * The first CD should be inserted (if not, it will be asked for).
2084 * @param bkpinfo The backup information structure. @c backup_media_type is the
2085 * only field used in @e this function.
2086 * @param filelist The node structure containing the list of files to be
2087 * restored. If no file in some particular afioball is in this list, afio will
2088 * still be called for that fileset, but nothing will be written.
2089 * @return 0 for success, or the number of filesets that failed.
2090 */
2091int
2092restore_all_tarballs_from_CD(struct s_bkpinfo *bkpinfo,
2093 struct s_node *filelist)
2094{
2095 int retval = 0;
2096 int res;
2097 int attempts;
2098 long current_tarball_number = 0;
2099 long max_val;
2100 /**malloc ***/
2101 char *tmp;
2102 char *tmp1;
2103 char *tarball_fname;
2104 char *progress_str;
2105 char *comment;
2106
2107 assert(bkpinfo != NULL);
2108
2109 mvaddstr_and_log_it(g_currentY, 0, _("Restoring from archives"));
2110 log_msg(2,
2111 "Insisting on 1st CD, so that I can have a look at LAST-FILELIST-NUMBER");
2112 if (g_current_media_number != 1) {
2113 log_msg(3, "OK, that's jacked up.");
2114 g_current_media_number = 1;
2115 }
2116 insist_on_this_cd_number(bkpinfo, g_current_media_number);
2117 read_cfg_var(g_mondo_cfg_file, "last-filelist-number", tmp);
2118 max_val = atol(tmp) + 1;
2119 paranoid_free(tmp);
2120
2121 asprintf(&progress_str, _("Restoring from %s #%d"),
2122 bkpinfo->backup_media_string,
2123 g_current_media_number);
2124 log_to_screen(progress_str);
2125 open_progress_form(_("Restoring from archives"),
2126 _("Restoring data from the archives."),
2127 _("Please wait. This may take some time."),
2128 progress_str, max_val);
2129 for (;;) {
2130 insist_on_this_cd_number(bkpinfo, g_current_media_number);
2131 update_progress_form(progress_str);
2132
2133 asprintf(&tarball_fname, MNT_CDROM "/archives/%ld.afio.bz2",
2134 current_tarball_number);
2135 if (!does_file_exist(tarball_fname)) {
2136 paranoid_free(tarball_fname);
2137 asprintf(&tarball_fname, MNT_CDROM "/archives/%ld.afio.lzo",
2138 current_tarball_number);
2139 }
2140 if (!does_file_exist(tarball_fname)) {
2141 paranoid_free(tarball_fname);
2142 asprintf(&tarball_fname, MNT_CDROM "/archives/%ld.afio.",
2143 current_tarball_number);
2144 }
2145 if (!does_file_exist(tarball_fname)) {
2146 paranoid_free(tarball_fname);
2147 asprintf(&tarball_fname, MNT_CDROM "/archives/%ld.star.bz2",
2148 current_tarball_number);
2149 }
2150 if (!does_file_exist(tarball_fname)) {
2151 paranoid_free(tarball_fname);
2152 asprintf(&tarball_fname, MNT_CDROM "/archives/%ld.star.",
2153 current_tarball_number);
2154 }
2155 if (!does_file_exist(tarball_fname)) {
2156 paranoid_free(tarball_fname);
2157 if (current_tarball_number == 0) {
2158 log_to_screen
2159 (_
2160 ("No tarballs. Strange. Maybe you only backed up freakin' big files?"));
2161 return (0);
2162 }
2163 if (!does_file_exist(MNT_CDROM "/archives/NOT-THE-LAST")
2164 || system("find " MNT_CDROM
2165 "/archives/slice* > /dev/null 2> /dev/null") ==
2166 0) {
2167 break;
2168 }
2169 g_current_media_number++;
2170 paranoid_free(progress_str);
2171 asprintf(&progress_str, _("Restoring from %s #%d"),
2172 bkpinfo->backup_media_string,
2173 g_current_media_number);
2174 log_to_screen(progress_str);
2175 } else {
2176 paranoid_free(progress_str);
2177 asprintf(&progress_str,
2178 _("Restoring from fileset #%ld on %s #%d"),
2179 current_tarball_number,
2180 bkpinfo->backup_media_string,
2181 g_current_media_number);
2182// log_msg(3, "progress_str = %s", progress_str);
2183 for (res = 999, attempts = 0; attempts < 3 && res != 0;
2184 attempts++) {
2185 res =
2186 restore_a_tarball_from_CD(tarball_fname,
2187 current_tarball_number,
2188 filelist);
2189 }
2190 if (res) {
2191 asprintf(&tmp1, _("reported errors"));
2192 } else {
2193 asprintf(&tmp1, _("succeeded"));
2194 }
2195 asprintf(&tmp, _("%s #%d, fileset #%ld - restore %s"),
2196 bkpinfo->backup_media_string,
2197 g_current_media_number, current_tarball_number,tmp1);
2198 paranoid_free(tmp1);
2199
2200 if (attempts > 1) {
2201 asprintf(&tmp1, _(" (%d attempts) - review logs"), attempts);
2202 }
2203 asprintf(&comment, "%s%s", tmp, tmp1);
2204 paranoid_free(tmp);
2205 paranoid_free(tmp1);
2206 if (attempts > 1) {
2207 log_to_screen(comment);
2208 }
2209 paranoid_free(comment);
2210
2211 retval += res;
2212 current_tarball_number++;
2213 g_current_progress++;
2214 }
2215 paranoid_free(tarball_fname);
2216 }
2217 paranoid_free(progress_str);
2218 close_progress_form();
2219
2220 if (retval) {
2221 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
2222 } else {
2223 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
2224 }
2225
2226 return (retval);
2227}
2228
2229/**************************************************************************
2230 *END_RESTORE_ALL_TARBALLS_FROM_CD *
2231 **************************************************************************/
2232
2233
2234/**
2235 * Restore all biggiefiles from the currently opened stream.
2236 * @param bkpinfo The backup information structure. Passed to other functions.
2237 * @param filelist The node structure containing the list of files to be
2238 * restored. If a prospective biggiefile is not in the list, it will be ignored.
2239 * @return 0 for success, or the number of biggiefiles that failed.
2240 */
2241int
2242restore_all_biggiefiles_from_stream(struct s_bkpinfo *bkpinfo,
2243 struct s_node *filelist)
2244{
2245 long noof_biggiefiles;
2246 long current_bigfile_number = 0;
2247 long total_slices;
2248
2249 int retval = 0;
2250 int res = 0;
2251 int ctrl_chr;
2252
2253 /** malloc add ****/
2254 char *tmp = NULL;
2255 char *biggie_fname = NULL;
2256 char *xattr_fname = NULL;
2257 char *acl_fname = NULL;
2258 char *pathname_of_last_biggie_restored = NULL;
2259 char *biggies_whose_EXATs_we_should_set = NULL; // EXtended ATtributes
2260 long long biggie_size = (long long)0;
2261 FILE *fbw;
2262
2263 assert(bkpinfo != NULL);
2264
2265 read_cfg_var(g_mondo_cfg_file, "total-slices", tmp);
2266 total_slices = atol(tmp);
2267 paranoid_free(tmp);
2268
2269 asprintf(&tmp, "Reassembling large files ");
2270 asprintf(&xattr_fname, XATTR_BIGGLST_FNAME_RAW_SZ, bkpinfo->tmpdir);
2271 asprintf(&acl_fname, ACL_BIGGLST_FNAME_RAW_SZ, bkpinfo->tmpdir);
2272 mvaddstr_and_log_it(g_currentY, 0, tmp);
2273 paranoid_free(tmp);
2274
2275 asprintf(&biggies_whose_EXATs_we_should_set,
2276 "%s/biggies-whose-EXATs-we-should-set", bkpinfo->tmpdir);
2277 if (!(fbw = fopen(biggies_whose_EXATs_we_should_set, "w"))) {
2278 log_msg(1, "Warning - cannot openout %s",
2279 biggies_whose_EXATs_we_should_set);
2280 }
2281// get xattr and acl files if they're there
2282 res =
2283 read_header_block_from_stream(&biggie_size, biggie_fname,
2284 &ctrl_chr);
2285 if (ctrl_chr == BLK_START_EXTENDED_ATTRIBUTES) {
2286 res =
2287 read_EXAT_files_from_tape(bkpinfo, &biggie_size, biggie_fname,
2288 &ctrl_chr, xattr_fname, acl_fname);
2289 }
2290
2291 noof_biggiefiles = atol(biggie_fname);
2292 asprintf(&tmp, "OK, there are %ld biggiefiles in the archives",
2293 noof_biggiefiles);
2294 log_msg(2, tmp);
2295 paranoid_free(tmp);
2296
2297 open_progress_form(_("Reassembling large files"),
2298 _("I am now reassembling all the large files."),
2299 _("Please wait. This may take some time."),
2300 "", total_slices);
2301
2302 for (res =
2303 read_header_block_from_stream(&biggie_size, biggie_fname,
2304 &ctrl_chr);
2305 ctrl_chr != BLK_STOP_BIGGIEFILES;
2306 res =
2307 read_header_block_from_stream(&biggie_size, biggie_fname,
2308 &ctrl_chr)) {
2309 if (ctrl_chr != BLK_START_A_NORMBIGGIE
2310 && ctrl_chr != BLK_START_A_PIHBIGGIE) {
2311 wrong_marker(BLK_START_A_NORMBIGGIE, ctrl_chr);
2312 }
2313 /* BERLIOS: useless
2314 p = strrchr(biggie_fname, '/');
2315 if (!p) {
2316 p = biggie_fname;
2317 } else {
2318 p++;
2319 }
2320 */
2321 asprintf(&tmp, _("Restoring big file %ld (%lld K)"),
2322 current_bigfile_number + 1, biggie_size / 1024);
2323 update_progress_form(tmp);
2324 paranoid_free(tmp);
2325
2326 pathname_of_last_biggie_restored = restore_a_biggiefile_from_stream(bkpinfo, biggie_fname,
2327 current_bigfile_number,
2328 filelist, ctrl_chr);
2329 log_msg(1, "I believe I have restored %s",
2330 pathname_of_last_biggie_restored);
2331 if (fbw && pathname_of_last_biggie_restored[0]) {
2332 fprintf(fbw, "%s\n", pathname_of_last_biggie_restored);
2333 }
2334 paranoid_free(pathname_of_last_biggie_restored);
2335
2336 retval += res;
2337 current_bigfile_number++;
2338
2339 }
2340 if (current_bigfile_number != noof_biggiefiles
2341 && noof_biggiefiles != 0) {
2342 asprintf(&tmp, "Warning - bigfileno=%ld but noof_biggiefiles=%ld\n",
2343 current_bigfile_number, noof_biggiefiles);
2344 } else {
2345 asprintf(&tmp,
2346 "%ld biggiefiles in biggielist.txt; %ld biggiefiles processed today.",
2347 noof_biggiefiles, current_bigfile_number);
2348 }
2349 log_msg(1, tmp);
2350 paranoid_free(tmp);
2351
2352 if (fbw) {
2353 fclose(fbw);
2354 if (length_of_file(biggies_whose_EXATs_we_should_set) > 2) {
2355 iamhere("Setting biggie-EXATs");
2356 if (length_of_file(acl_fname) > 0) {
2357 log_msg(1, "set_acl_list(%s,%s)",
2358 biggies_whose_EXATs_we_should_set, acl_fname);
2359 set_acl_list(biggies_whose_EXATs_we_should_set, acl_fname);
2360 }
2361 if (length_of_file(xattr_fname) > 0) {
2362 log_msg(1, "set_fattr_List(%s,%s)",
2363 biggies_whose_EXATs_we_should_set, xattr_fname);
2364 set_fattr_list(biggies_whose_EXATs_we_should_set,
2365 xattr_fname);
2366 }
2367 } else {
2368 iamhere
2369 ("No biggiefiles selected. So, no biggie-EXATs to set.");
2370 }
2371 }
2372 paranoid_free(xattr_fname);
2373 paranoid_free(acl_fname);
2374 paranoid_free(biggies_whose_EXATs_we_should_set);
2375
2376 if (does_file_exist("/PAUSE")) {
2377 popup_and_OK
2378 (_
2379 ("Press ENTER to go on. Delete /PAUSE to stop these pauses."));
2380 }
2381
2382 close_progress_form();
2383 if (retval) {
2384 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
2385 } else {
2386 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
2387 }
2388 paranoid_free(biggie_fname);
2389 return (retval);
2390}
2391
2392/**************************************************************************
2393 *END_RESTORE_ALL_BIGGIEFILES_FROM_STREAM *
2394 **************************************************************************/
2395
2396
2397/**
2398 * Restore all afioballs from the currently opened tape stream.
2399 * @param bkpinfo The backup information structure. Fields used:
2400 * - @c bkpinfo->backup_media_type
2401 * - @c bkpinfo->restore_path
2402 * @param filelist The node structure containing the list of files to be
2403 * restored. If no file in an afioball is in this list, afio will still be
2404 * called for that fileset, but nothing will be written.
2405 * @return 0 for success, or the number of filesets that failed.
2406 */
2407int
2408restore_all_tarballs_from_stream(struct s_bkpinfo *bkpinfo,
2409 struct s_node *filelist)
2410{
2411 int retval = 0;
2412 int res;
2413 long current_afioball_number = 0;
2414 int ctrl_chr;
2415 long max_val /*, total_noof_files */ ;
2416
2417 /** malloc **/
2418 char *tmp = NULL;
2419 char *progress_str = NULL;
2420 char *tmp_fname = NULL;
2421 char *xattr_fname = NULL;
2422 char *acl_fname = NULL;
2423
2424 long long tmp_size;
2425
2426 assert(bkpinfo != NULL);
2427 mvaddstr_and_log_it(g_currentY, 0, _("Restoring from archives"));
2428 read_cfg_var(g_mondo_cfg_file, "last-filelist-number", tmp);
2429 max_val = atol(tmp) + 1;
2430 paranoid_free(tmp);
2431
2432 chdir(bkpinfo->restore_path); /* I don't know why this is needed _here_ but it seems to be. -HR, 02/04/2002 */
2433
2434 run_program_and_log_output("pwd", 5);
2435
2436 asprintf(&progress_str, _("Restoring from media #%d"),
2437 g_current_media_number);
2438 log_to_screen(progress_str);
2439 open_progress_form(_("Restoring from archives"),
2440 _("Restoring data from the archives."),
2441 _("Please wait. This may take some time."),
2442 progress_str, max_val);
2443
2444 log_msg(3, "hey");
2445
2446 res = read_header_block_from_stream(&tmp_size, tmp_fname, &ctrl_chr);
2447 if (res) {
2448 log_msg(2, "Warning - error reading afioball from tape");
2449 }
2450 retval += res;
2451 if (ctrl_chr != BLK_START_AFIOBALLS) {
2452 wrong_marker(BLK_START_AFIOBALLS, ctrl_chr);
2453 }
2454 log_msg(2, "ho");
2455 res = read_header_block_from_stream(&tmp_size, tmp_fname, &ctrl_chr);
2456 while (ctrl_chr != BLK_STOP_AFIOBALLS) {
2457 update_progress_form(progress_str);
2458 asprintf(&xattr_fname, "%s/xattr-subset-%ld.tmp", bkpinfo->tmpdir,
2459 current_afioball_number);
2460 asprintf(&acl_fname, "%s/acl-subset-%ld.tmp", bkpinfo->tmpdir,
2461 current_afioball_number);
2462 unlink(xattr_fname);
2463 unlink(acl_fname);
2464 if (ctrl_chr == BLK_START_EXTENDED_ATTRIBUTES) {
2465 iamhere("Reading EXAT files from tape");
2466 res =
2467 read_EXAT_files_from_tape(bkpinfo, &tmp_size, tmp_fname,
2468 &ctrl_chr, xattr_fname,
2469 acl_fname);
2470 }
2471 if (ctrl_chr != BLK_START_AN_AFIO_OR_SLICE) {
2472 wrong_marker(BLK_START_AN_AFIO_OR_SLICE, ctrl_chr);
2473 }
2474 /* BERLIOS: useless ?
2475 asprintf(&tmp,
2476 _("Restoring from fileset #%ld (name=%s, size=%ld K)"),
2477 current_afioball_number, tmp_fname, (long) tmp_size >> 10);
2478 */
2479 res =
2480 restore_a_tarball_from_stream(bkpinfo, tmp_fname,
2481 current_afioball_number,
2482 filelist, tmp_size, xattr_fname,
2483 acl_fname);
2484 retval += res;
2485 if (res) {
2486 asprintf(&tmp, _("Fileset %ld - errors occurred"),
2487 current_afioball_number);
2488 log_to_screen(tmp);
2489 paranoid_free(tmp);
2490 }
2491 res =
2492 read_header_block_from_stream(&tmp_size, tmp_fname, &ctrl_chr);
2493 if (ctrl_chr != BLK_STOP_AN_AFIO_OR_SLICE) {
2494 wrong_marker(BLK_STOP_AN_AFIO_OR_SLICE, ctrl_chr);
2495 }
2496
2497 current_afioball_number++;
2498 g_current_progress++;
2499
2500 paranoid_free(progress_str);
2501 asprintf(&progress_str, _("Restoring from fileset #%ld on %s #%d"),
2502 current_afioball_number,
2503 bkpinfo->backup_media_string,
2504 g_current_media_number);
2505 res =
2506 read_header_block_from_stream(&tmp_size, tmp_fname, &ctrl_chr);
2507 unlink(xattr_fname);
2508 unlink(acl_fname);
2509 paranoid_free(xattr_fname);
2510 paranoid_free(acl_fname);
2511 } // next
2512 paranoid_free(progress_str);
2513 paranoid_free(tmp_fname);
2514
2515 log_msg(1, "All done with afioballs");
2516 close_progress_form();
2517 if (retval) {
2518 mvaddstr_and_log_it(g_currentY++, 74, _("Errors."));
2519 } else {
2520 mvaddstr_and_log_it(g_currentY++, 74, _("Done."));
2521 }
2522 return (retval);
2523}
2524
2525/**************************************************************************
2526 *END_ RESTORE_ALL_TARBALLS_FROM_STREAM *
2527 **************************************************************************/
2528
2529/* @} - end of LLrestoreGroup */
2530
2531
2532/**
2533 * Restore all files in @p filelist.
2534 * @param bkpinfo The backup information structure. Most fields are used.
2535 * @param filelist The node structure containing the list of files to be
2536 * restored.
2537 * @return 0 for success, or the number of afioballs and biggiefiles that failed.
2538 * @ingroup restoreGroup
2539 */
2540int restore_everything(struct s_bkpinfo *bkpinfo, struct s_node *filelist)
2541{
2542 int resA;
2543 int resB;
2544
2545 /** mallco ***/
2546 char *cwd = NULL;
2547 char *newpath = NULL;
2548 char *tmp = NULL;
2549 assert(bkpinfo != NULL);
2550
2551 malloc_string(cwd);
2552 malloc_string(newpath);
2553 log_msg(2, "restore_everything() --- starting");
2554 g_current_media_number = 1;
2555 /* BERLIOS: should test return value, or better change the function */
2556 getcwd(cwd, MAX_STR_LEN - 1);
2557 asprintf(&tmp, "mkdir -p %s", bkpinfo->restore_path);
2558 run_program_and_log_output(tmp, FALSE);
2559 paranoid_free(tmp);
2560
2561 log_msg(1, "Changing dir to %s", bkpinfo->restore_path);
2562 chdir(bkpinfo->restore_path);
2563 /* BERLIOS: should test return value, or better change the function */
2564 getcwd(newpath, MAX_STR_LEN - 1);
2565 log_msg(1, "path is now %s", newpath);
2566 log_msg(1, "restoring everything");
2567 tmp = find_home_of_exe("petris");
2568 if (!tmp && !g_text_mode) {
2569 newtDrawRootText(0, g_noof_rows - 2,
2570 _
2571 ("Press ALT-<left cursor> twice to play Petris :-) "));
2572 newtRefresh();
2573 }
2574 paranoid_free(tmp);
2575
2576 mvaddstr_and_log_it(g_currentY, 0,
2577 _("Preparing to read your archives"));
2578 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2579 mount_cdrom(bkpinfo);
2580 mvaddstr_and_log_it(g_currentY++, 0,
2581 _
2582 ("Restoring OS and data from streaming media"));
2583 if (bkpinfo->backup_media_type == cdstream) {
2584 openin_cdstream(bkpinfo);
2585 } else {
2586 assert_string_is_neither_NULL_nor_zerolength(bkpinfo->
2587 media_device);
2588 openin_tape(bkpinfo);
2589 }
2590 resA = restore_all_tarballs_from_stream(bkpinfo, filelist);
2591 resB = restore_all_biggiefiles_from_stream(bkpinfo, filelist);
2592 if (bkpinfo->backup_media_type == cdstream) {
2593 closein_cdstream(bkpinfo);
2594 } else {
2595 closein_tape(bkpinfo);
2596 }
2597 } else {
2598 mvaddstr_and_log_it(g_currentY++, 0,
2599 _("Restoring OS and data from CD "));
2600 mount_cdrom(bkpinfo);
2601 resA = restore_all_tarballs_from_CD(bkpinfo, filelist);
2602 resB = restore_all_biggiefiles_from_CD(bkpinfo, filelist);
2603 }
2604 chdir(cwd);
2605 if (resA + resB) {
2606 log_to_screen(_("Errors occurred while data was being restored."));
2607 }
2608 if (length_of_file("/etc/raidtab") > 0) {
2609 log_msg(2, "Copying local raidtab to restored filesystem");
2610 run_program_and_log_output("cp -f /etc/raidtab " MNT_RESTORING
2611 "/etc/raidtab", FALSE);
2612 }
2613 kill_petris();
2614 log_msg(2, "restore_everything() --- leaving");
2615 paranoid_free(cwd);
2616 paranoid_free(newpath);
2617 return (resA + resB);
2618}
2619
2620/**************************************************************************
2621 *END_RESTORE_EVERYTHING *
2622 **************************************************************************/
2623
2624
2625extern void wait_until_software_raids_are_prepped(char *, int);
2626
2627char which_restore_mode(void);
2628
2629
2630/**
2631 * Log a "don't panic" message to the logfile.
2632 */
2633void welcome_to_mondorestore()
2634{
2635 log_msg(0, "-------------- Mondo Restore v%s -------------",
2636 PACKAGE_VERSION);
2637 log_msg(0,
2638 "DON'T PANIC! Mondorestore logs almost everything, so please ");
2639 log_msg(0,
2640 "don't break out in a cold sweat just because you see a few ");
2641 log_msg(0,
2642 "error messages in the log. Read them; analyze them; see if ");
2643 log_msg(0,
2644 "they are significant; above all, verify your backups! Please");
2645 log_msg(0,
2646 "attach a compressed copy of this log to any e-mail you send ");
2647 log_msg(0,
2648 "to the Mondo mailing list when you are seeking technical ");
2649 log_msg(0,
2650 "support. Without it, we can't help you. - DevTeam");
2651 log_msg(0,
2652 "------------------------------------------------------------");
2653 log_msg(0,
2654 "BTW, despite (or perhaps because of) the wealth of messages,");
2655 log_msg(0,
2656 "some users are inclined to stop reading this log. If Mondo ");
2657 log_msg(0,
2658 "stopped for some reason, chances are it's detailed here. ");
2659 log_msg(0,
2660 "More than likely there's a message near the end of this ");
2661 log_msg(0,
2662 "log that will tell you what is wrong. Please read it! ");
2663 log_msg(0,
2664 "------------------------------------------------------------");
2665}
2666
2667
2668/**
2669 * Restore the user's data.
2670 * What did you think it did, anyway? :-)
2671 */
2672int main(int argc, char *argv[])
2673{
2674 FILE *fin = NULL;
2675 FILE *fout = NULL;
2676 int retval = 0;
2677 int res = 0;
2678 char *tmp = NULL;
2679
2680 struct mountlist_itself *mountlist = NULL;
2681 struct raidlist_itself *raidlist = NULL;
2682 struct s_bkpinfo *bkpinfo = NULL;
2683 struct s_node *filelist = NULL;
2684 char *a = NULL, *b = NULL;
2685 bool run_postnuke = FALSE;
2686
2687 /**************************************************************************
2688 * hugo- *
2689 * busy stuff here - it needs some comments -stan *
2690 * *
2691 **************************************************************************/
2692
2693#ifdef ENABLE_NLS
2694 setlocale(LC_ALL, "");
2695 (void) textdomain("mondo");
2696#endif
2697
2698 if (getuid() != 0) {
2699 fprintf(stderr, _("Please run as root.\n"));
2700 exit(127);
2701 }
2702
2703 g_loglevel = DEFAULT_MR_LOGLEVEL;
2704
2705/* Configure global variables */
2706#ifdef __FreeBSD__
2707 tmp = call_program_and_get_last_line_of_output("cat /tmp/cmdline");
2708#else
2709 tmp = call_program_and_get_last_line_of_output("cat /proc/cmdline");
2710#endif
2711 if (strstr(tmp,"textonly")) {
2712 g_text_mode = TRUE;
2713 log_msg(1, "TEXTONLY MODE");
2714 } else {
2715 g_text_mode = FALSE;
2716 } // newt :-)
2717 paranoid_free(tmp);
2718
2719 if (!
2720 (bkpinfo = g_bkpinfo_DONTUSETHIS =
2721 malloc(sizeof(struct s_bkpinfo)))) {
2722 fatal_error("Cannot malloc bkpinfo");
2723 }
2724 if (!(mountlist = malloc(sizeof(struct mountlist_itself)))) {
2725 fatal_error("Cannot malloc mountlist");
2726 }
2727 if (!(raidlist = malloc(sizeof(struct raidlist_itself)))) {
2728 fatal_error("Cannot malloc raidlist");
2729 }
2730
2731 malloc_libmondo_global_strings();
2732
2733 g_mondo_home = call_program_and_get_last_line_of_output("which mondorestore");
2734 paranoid_alloc(g_tmpfs_mountpt, "/tmp/tmpfs");
2735 make_hole_for_dir(g_tmpfs_mountpt);
2736 g_current_media_number = 1; // precaution
2737
2738 run_program_and_log_output("mkdir -p " MNT_CDROM, FALSE);
2739 run_program_and_log_output("mkdir -p /mnt/floppy", FALSE);
2740
2741 setup_MR_global_filenames(bkpinfo); // malloc() and set globals, using bkpinfo->tmpdir etc.
2742 reset_bkpinfo(bkpinfo);
2743 bkpinfo->backup_media_type = none; // in case boot disk was made for one backup type but user wants to restore from another backup type
2744 bkpinfo->backup_media_string = NULL;
2745 bkpinfo->restore_data = TRUE; // Well, yeah :-)
2746 if (am_I_in_disaster_recovery_mode()) {
2747 run_program_and_log_output("mount / -o remount,rw", 2);
2748 } // for b0rken distros
2749 g_main_pid = getpid();
2750 srandom((int) (time(NULL)));
2751 register_pid(getpid(), "mondo");
2752 set_signals(TRUE);
2753 g_kernel_version = get_kernel_version();
2754
2755 log_msg(1, "FYI - g_mountlist_fname = %s", g_mountlist_fname);
2756 mkdir(MNT_CDROM, 0x770);
2757
2758/* Backup original mountlist.txt */
2759 asprintf(&tmp, "%s.orig", g_mountlist_fname);
2760 if (!does_file_exist(g_mountlist_fname)) {
2761 log_msg(2,
2762 "%ld: Warning - g_mountlist_fname (%s) does not exist yet",
2763 __LINE__, g_mountlist_fname);
2764 } else if (!does_file_exist(tmp)) {
2765 paranoid_free(tmp);
2766 asprintf(&tmp, "cp -f %s %s.orig", g_mountlist_fname,
2767 g_mountlist_fname);
2768 run_program_and_log_output(tmp, FALSE);
2769 }
2770 paranoid_free(tmp);
2771
2772/* Init directories */
2773 make_hole_for_dir(bkpinfo->tmpdir);
2774 asprintf(&tmp, "mkdir -p %s", bkpinfo->tmpdir);
2775 run_program_and_log_output(tmp, FALSE);
2776 paranoid_free(tmp);
2777
2778 make_hole_for_dir("/var/log");
2779 make_hole_for_dir("/tmp/tmpfs"); /* just in case... */
2780 run_program_and_log_output("umount " MNT_CDROM, FALSE);
2781 run_program_and_log_output
2782 ("ln -sf " MONDO_LOGFILE " /tmp/mondo-restore.log", FALSE);
2783
2784 run_program_and_log_output("rm -Rf /tmp/tmpfs/mondo.tmp.*", FALSE);
2785
2786/* Init GUI */
2787 malloc_libmondo_global_strings();
2788 setup_newt_stuff(); /* call newtInit and setup screen log */
2789 welcome_to_mondorestore();
2790 if (bkpinfo->disaster_recovery) {
2791 log_msg(1, "I am in disaster recovery mode");
2792 } else {
2793 log_msg(1, "I am in normal, live mode");
2794 }
2795
2796 iamhere("what time is it");
2797
2798/* Process command-line parameters */
2799 if (argc == 2 && strcmp(argv[1], "--edit-mountlist") == 0) {
2800#ifdef __FreeBSD__
2801 system("mv -f /tmp/raidconf.txt /etc/raidtab");
2802 if (!does_file_exist("/etc/raidtab"))
2803 system("vinum printconfig > /etc/raidtab");
2804#endif
2805 load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
2806 if (!does_file_exist(g_mountlist_fname)) {
2807 paranoid_alloc(g_mountlist_fname, "/tmp/mountlist.txt");
2808 }
2809 res = let_user_edit_the_mountlist(bkpinfo, mountlist, raidlist);
2810#ifdef __FreeBSD__
2811 system("mv -f /etc/raidtab /tmp/raidconf.txt");
2812#endif
2813 paranoid_MR_finish(res);
2814 }
2815
2816 g_loglevel = DEFAULT_MR_LOGLEVEL;
2817 if (argc == 3 && strcmp(argv[1], "--echo-to-screen") == 0) {
2818 fout = fopen("/tmp/out.txt", "w");
2819 fput_string_one_char_at_a_time(stderr, argv[2]);
2820 finish(0);
2821 }
2822
2823 if (argc == 3 && strcmp(argv[1], "--gendf") == 0) {
2824 make_grub_install_scriptlet(argv[2]);
2825 finish(0);
2826 }
2827
2828 if (argc >= 2 && strcmp(argv[1], "--pih") == 0) {
2829 if (system("mount | grep cdrom 2> /dev/null > /dev/null")) {
2830 system("mount " MNT_CDROM);
2831 }
2832 bkpinfo->compression_level = 1;
2833 g_current_media_number = 2;
2834 paranoid_alloc(bkpinfo->restore_path, "/tmp/TESTING");
2835 bkpinfo->backup_media_type = dvd;
2836 paranoid_free(bkpinfo->backup_media_string);
2837 bkpinfo->backup_media_string = bkptype_to_string(bkpinfo->backup_media_type);
2838 open_progress_form(_("Reassembling /dev/hda1"),
2839 _("Shark is a bit of a silly person."),
2840 _("Please wait. This may take some time."),
2841 "", 1999);
2842 system("rm -Rf /tmp/*pih*");
2843
2844 (void)restore_a_biggiefile_from_CD(bkpinfo, 42, NULL);
2845 }
2846
2847 if (argc == 5 && strcmp(argv[1], "--common") == 0) {
2848 g_loglevel = 6;
2849 filelist = load_filelist(argv[2]);
2850 if (!filelist) {
2851 fatal_error("Failed to load filelist");
2852 }
2853 toggle_node_selection(filelist, FALSE);
2854 toggle_all_root_dirs_on(filelist);
2855 // BERLIOS: /usr/lib ???
2856 toggle_path_selection(filelist, "/usr/share", TRUE);
2857// show_filelist(filelist);
2858 save_filelist(filelist, "/tmp/out.txt");
2859// finish(0);
2860// toggle_path_selection (filelist, "/root/stuff", TRUE);
2861 asprintf(&a, argv[3]);
2862 asprintf(&b, argv[4]);
2863
2864 res = save_filelist_entries_in_common(a, filelist, b, FALSE);
2865 free_filelist(filelist);
2866 paranoid_free(a);
2867 paranoid_free(b);
2868 printf("res = %d", res);
2869 finish(0);
2870 }
2871
2872 if (argc == 3 && strcmp(argv[1], "--popuplist") == 0) {
2873 popup_changelist_from_file(argv[2]);
2874 paranoid_MR_finish(0);
2875 }
2876
2877 if (argc == 5 && strcmp(argv[1], "--copy") == 0) {
2878 log_msg(1, "SCORE");
2879 g_loglevel = 10;
2880 if (strstr(argv[2], "save")) {
2881 log_msg(1, "Saving from %s to %s", argv[3], argv[4]);
2882 fin = fopen(argv[3], "r");
2883 fout = fopen(argv[4], "w");
2884 copy_from_src_to_dest(fin, fout, 'w');
2885 fclose(fin);
2886 fin = fopen(argv[3], "r");
2887 copy_from_src_to_dest(fin, fout, 'w');
2888 fclose(fout);
2889 fclose(fin);
2890 } else if (strstr(argv[2], "restore")) {
2891 fout = fopen(argv[3], "w");
2892 fin = fopen(argv[4], "r");
2893 copy_from_src_to_dest(fout, fin, 'r');
2894 fclose(fin);
2895 fin = fopen(argv[4], "r");
2896 copy_from_src_to_dest(fout, fin, 'r');
2897 fclose(fout);
2898 fclose(fin);
2899 } else {
2900 fatal_error("Unknown additional param");
2901 }
2902 finish(0);
2903 }
2904
2905 if (argc == 3 && strcmp(argv[1], "--mdstat") == 0) {
2906 wait_until_software_raids_are_prepped(argv[2], 100);
2907 finish(0);
2908 }
2909
2910 if (argc == 3 && strcmp(argv[1], "--mdconv") == 0) {
2911 finish(create_raidtab_from_mdstat(argv[2]));
2912 }
2913
2914
2915 if (argc == 2 && strcmp(argv[1], "--live-grub") == 0) {
2916 retval = run_grub(FALSE, "/dev/hda");
2917 if (retval) {
2918 log_to_screen(_("Failed to write Master Boot Record"));
2919 }
2920 paranoid_MR_finish(0);
2921 }
2922 if (argc == 3 && strcmp(argv[1], "--paa") == 0) {
2923 g_current_media_number = atoi(argv[2]);
2924 pause_and_ask_for_cdr(5, NULL);
2925 paranoid_MR_finish(0);
2926 } else if (!bkpinfo->disaster_recovery) { // live!
2927 if (argc != 1) {
2928 popup_and_OK
2929 (_
2930 ("Live mode doesn't support command-line parameters yet."));
2931 paranoid_MR_finish(1);
2932// return(1);
2933 }
2934 log_msg(1, "I am in normal, live mode.");
2935 log_msg(2, "FYI, MOUNTLIST_FNAME = %s", g_mountlist_fname);
2936 mount_boot_if_necessary(); /* for Gentoo users */
2937 log_msg(2, "Still here.");
2938 if (argc > 1 && strcmp(argv[argc - 1], "--live-from-cd") == 0) {
2939 g_restoring_live_from_cd = TRUE;
2940 } else {
2941 log_msg(2, "Calling restore_to_live_filesystem()");
2942 retval = restore_to_live_filesystem(bkpinfo);
2943 }
2944 log_msg(2, "Still here. Yay.");
2945 if (strlen(bkpinfo->tmpdir) > 0) {
2946 asprintf(&tmp, "rm -Rf %s/*", bkpinfo->tmpdir);
2947 run_program_and_log_output(tmp, FALSE);
2948 paranoid_free(tmp);
2949 }
2950 unmount_boot_if_necessary(); /* for Gentoo users */
2951 paranoid_MR_finish(retval);
2952 } else {
2953 /* Disaster recovery mode (must be) */
2954 log_msg(1, "I must be in disaster recovery mode.");
2955 log_msg(2, "FYI, MOUNTLIST_FNAME = %s ", g_mountlist_fname);
2956 if (argc == 3 && strcmp(argv[1], "--monitas-memorex") == 0) {
2957 log_to_screen(_("Uh, that hasn't been implemented yet."));
2958 paranoid_MR_finish(1);
2959 }
2960
2961 iamhere("About to call load_mountlist and load_raidtab");
2962 paranoid_alloc(bkpinfo->restore_path, MNT_RESTORING);
2963 read_cfg_file_into_bkpinfo(g_mondo_cfg_file, bkpinfo);
2964 retval = load_mountlist(mountlist, g_mountlist_fname);
2965 retval += load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
2966 iamhere
2967 ("Returned from calling load_mountlist and load_raidtab successfully");
2968
2969 if (argc > 1
2970 && (strcmp(argv[1], "--compare") == 0
2971 || strcmp(argv[1], "--nuke") == 0)) {
2972 if (bkpinfo->backup_media_type == nfs
2973 && !is_this_device_mounted(bkpinfo->nfs_mount)) {
2974 log_msg(1, "Mounting nfs dir");
2975 paranoid_alloc(bkpinfo->isodir, "/tmp/isodir");
2976 run_program_and_log_output("mkdir -p /tmp/isodir", 5);
2977 asprintf(&tmp, "mount %s -t nfs -o nolock /tmp/isodir",
2978 bkpinfo->nfs_mount);
2979 run_program_and_log_output(tmp, 1);
2980 paranoid_free(tmp);
2981 }
2982 }
2983
2984
2985 if (retval) {
2986 log_to_screen
2987 (_
2988 ("Warning - load_raidtab_into_raidlist returned an error"));
2989 }
2990
2991
2992 log_msg(1, "Send in the clowns.");
2993
2994 if (argc == 2 && strcmp(argv[1], "--partition-only") == 0) {
2995 log_msg(0, "Partitioning only.");
2996 load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
2997 paranoid_alloc(g_mountlist_fname, "/tmp/mountlist.txt");
2998 load_mountlist(mountlist, g_mountlist_fname);
2999 res = partition_everything(mountlist);
3000 finish(res);
3001 }
3002
3003 if (argc == 2 && strcmp(argv[1], "--format-only") == 0) {
3004 log_msg(0, "Formatting only.");
3005 load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
3006 paranoid_alloc(g_mountlist_fname, "/tmp/mountlist.txt");
3007 load_mountlist(mountlist, g_mountlist_fname);
3008 res = format_everything(mountlist, FALSE, raidlist);
3009 finish(res);
3010 }
3011
3012 if (argc == 2 && strcmp(argv[1], "--stop-lvm-and-raid") == 0) {
3013 log_msg(0, "Stopping LVM and RAID");
3014 load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
3015 paranoid_alloc(g_mountlist_fname, "/tmp/mountlist.txt");
3016 load_mountlist(mountlist, g_mountlist_fname);
3017 res = do_my_funky_lvm_stuff(TRUE, FALSE);
3018 res += stop_all_raid_devices(mountlist);
3019 finish(res);
3020 }
3021
3022 if (argc == 2 && strcmp(argv[1], "--nuke") == 0) {
3023 iamhere("nuking");
3024 retval += nuke_mode(bkpinfo, mountlist, raidlist);
3025 } else if (argc == 2 && strcmp(argv[1], "--interactive") == 0) {
3026 iamhere("catchall");
3027 retval += catchall_mode(bkpinfo, mountlist, raidlist);
3028 } else if (argc == 2 && strcmp(argv[1], "--compare") == 0) {
3029 iamhere("compare");
3030 retval += compare_mode(bkpinfo, mountlist, raidlist);
3031 } else if (argc == 2 && strcmp(argv[1], "--iso") == 0) {
3032 iamhere("iso");
3033 retval = iso_mode(bkpinfo, mountlist, raidlist, FALSE);
3034 } else if (argc == 2 && strcmp(argv[1], "--mbr") == 0) {
3035 iamhere("mbr");
3036 retval = mount_all_devices(mountlist, TRUE);
3037 if (!retval) {
3038 retval += run_boot_loader(FALSE);
3039 retval += unmount_all_devices(mountlist);
3040 }
3041 if (retval) {
3042 log_to_screen(_("Failed to write Master Boot Record"));
3043 }
3044 } else if (argc == 2 && strcmp(argv[1], "--isonuke") == 0) {
3045 iamhere("isonuke");
3046 retval = iso_mode(bkpinfo, mountlist, raidlist, TRUE);
3047 } else if (argc != 1) {
3048 log_to_screen(_("Invalid paremeters"));
3049 paranoid_MR_finish(1);
3050 } else {
3051 iamhere("catchall (no mode specified in command-line call");
3052 retval += catchall_mode(bkpinfo, mountlist, raidlist);
3053 }
3054 }
3055
3056 /* clean up at the end */
3057 if (retval) {
3058 if (does_file_exist("/tmp/changed.files")) {
3059 log_to_screen
3060 (_
3061 ("See /tmp/changed.files for list of files that have changed."));
3062 }
3063 mvaddstr_and_log_it(g_currentY++,
3064 0,
3065 _
3066 ("Run complete. Errors were reported. Please review the logfile."));
3067 } else {
3068 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
3069 mvaddstr_and_log_it(g_currentY++,
3070 0,
3071 _
3072 ("Run complete. Please remove floppy/CD/media and reboot."));
3073 } else {
3074 run_program_and_log_output("sync", FALSE);
3075 if (is_this_device_mounted(MNT_CDROM)) {
3076 res =
3077 run_program_and_log_output("umount " MNT_CDROM, FALSE);
3078 } else {
3079 res = 0;
3080 }
3081
3082 if (!bkpinfo->please_dont_eject) {
3083 res = eject_device("/dev/cdrom");
3084/*
3085 if (res)
3086 {
3087 log_to_screen( "WARNING - failed to eject CD-ROM disk" );
3088 }
3089*/
3090 }
3091 mvaddstr_and_log_it(g_currentY++,
3092 0,
3093 _
3094 ("Run complete. Please remove media and reboot."));
3095 }
3096 }
3097
3098// g_I_have_just_nuked is set true by nuke_mode() just before it returns
3099 if (!system("which post-nuke > /dev/null 2> /dev/null")) {
3100 log_msg(1, "post-nuke found; find out whether we should run it...");
3101 if (g_I_have_just_nuked || does_file_exist("/POST-NUKE-ANYWAY")) {
3102 run_postnuke = TRUE;
3103 log_msg(1, "Yes, will run post-nuke because in nuke mode or file /POST-NUKE-ANYWAY exists.");
3104 } else if (ask_me_yes_or_no("post-nuke script found. Do you want to run it?")) {
3105 run_postnuke = TRUE;
3106 log_msg(1, "Yes, will run post-nuke because user interactively asked for it.");
3107 } else {
3108 run_postnuke = FALSE;
3109 log_msg(1, "No, will not run post-nuke.");
3110 }
3111 } else {
3112 log_msg(1, "No post-nuke found.");
3113 }
3114 if (run_postnuke) {
3115 log_to_screen("Running post-nuke...");
3116 if (mount_all_devices(mountlist, TRUE)) {
3117 log_to_screen
3118 ("Unable to re-mount partitions for post-nuke stuff");
3119 } else {
3120 log_msg(1, "Re-mounted partitions for post-nuke stuff");
3121 sprintf(tmp, "post-nuke %s %d", bkpinfo->restore_path,
3122 retval);
3123 log_msg(2, "Calling '%s'", tmp);
3124 if ((res = run_program_and_log_output(tmp, 0))) {
3125 log_OS_error(tmp);
3126 }
3127 log_msg(1, "post-nuke returned w/ res=%d", res);
3128 }
3129 unmount_all_devices(mountlist);
3130 log_to_screen("I've finished post-nuking.");
3131 }
3132
3133/*
3134 log_to_screen("If you are REALLY in a hurry, hit Ctrl-Alt-Del now.");
3135 log_to_screen("Otherwise, please wait until the RAID disks are done.");
3136 wait_until_software_raids_are_prepped("/proc/mdstat", 100);
3137 log_to_screen("Thank you.");
3138*/
3139 unlink("/tmp/mondo-run-prog.tmp");
3140 set_signals(FALSE);
3141 asprintf(&tmp, "rm -Rf %s", bkpinfo->tmpdir);
3142 run_program_and_log_output(tmp, FALSE);
3143 paranoid_free(tmp);
3144
3145 log_to_screen
3146 (_
3147 ("Restore log copied to /tmp/mondo-restore.log on your hard disk"));
3148 asprintf(&tmp,
3149 _
3150 ("Mondo-restore is exiting (retval=%d) "),
3151 retval);
3152 log_to_screen(tmp);
3153 paranoid_free(tmp);
3154
3155 asprintf(&tmp, "umount %s", bkpinfo->isodir);
3156 run_program_and_log_output(tmp, 5);
3157 paranoid_free(tmp);
3158
3159 paranoid_free(mountlist);
3160 paranoid_free(raidlist);
3161 if (am_I_in_disaster_recovery_mode()) {
3162 run_program_and_log_output("mount / -o remount,rw", 2);
3163 } // for b0rken distros
3164 paranoid_MR_finish(retval); // frees global stuff plus bkpinfo
3165 free_libmondo_global_strings(); // it's fine to have this here :) really :)
3166
3167 unlink("/tmp/filelist.full");
3168 unlink("/tmp/filelist.full.gz");
3169
3170 exit(retval);
3171}
3172
3173/**************************************************************************
3174 *END_MAIN *
3175 **************************************************************************/
3176
3177
3178/**************************************************************************
3179 *END_MONDO-RESTORE.C *
3180 **************************************************************************/
Note: See TracBrowser for help on using the repository browser.