source: MondoRescue/branches/2.2.8/mondo/src/mondorestore/mondo-rstr-tools.c@ 2128

Last change on this file since 2128 was 2128, checked in by Bruno Cornec, 15 years ago

support latest Ubuntu where /var is a separate FS Cf: http://linux.derkeiler.com/Mailing-Lists/Ubuntu/2007-04/msg01319.html

  • Property svn:keywords set to Id
File size: 74.4 KB
Line 
1/***************************************************************************
2$Id: mondo-rstr-tools.c 2128 2009-01-21 11:48:01Z bruno $
3
4/***************************************************************************
5* *
6* This program is free software; you can redistribute it and/or modify *
7* it under the terms of the GNU General Public License as published by *
8* the Free Software Foundation; either version 2 of the License, or *
9* (at your option) any later version. *
10* *
11***************************************************************************/
12
13#include <pthread.h>
14#include <linux/fd.h>
15#include "my-stuff.h"
16#include "../common/mondostructures.h"
17#include "../common/libmondo.h"
18#include "mr-externs.h"
19#include "mondo-rstr-tools.h"
20
21/**
22 * The biggielist stub (appended to the directory where all.tar.gz was unpacked).
23 */
24#define BIGGIELIST_TXT_STUB "tmp/biggielist.txt"
25
26/**
27 * The filelist stub (appended to the directory where all.tar.gz was unpacked).
28 */
29#define FILELIST_FULL_STUB "tmp/filelist.full.gz"
30
31/**
32 * The mountlist stub (appended to the directory where all.tar.gz was unpacked).
33 */
34#define MOUNTLIST_FNAME_STUB "tmp/mountlist.txt"
35
36/**
37 * The mondo-restore.cfg stub (appended to the directory where all.tar.gz was unpacked).
38 */
39#define MONDO_CFG_FILE_STUB "tmp/mondo-restore.cfg"
40/**
41 * The i-want-my-lvm stub
42 */
43#define IWANTMYLVM_STUB "tmp/i-want-my-lvm"
44
45extern bool g_ISO_restore_mode; /* are we in Iso Mode? */
46extern bool g_I_have_just_nuked;
47/*
48extern char *g_tmpfs_mountpt;
49*/
50extern char *g_isodir_device;
51extern char *g_isodir_format;
52extern long g_current_progress, g_maximum_progress;
53extern char *g_biggielist_txt; // where 'biggielist.txt' is stored, on ramdisk / tempdir;
54 // biggielist.txt is the list of big files stored on the
55 // backup media set in question
56extern char *g_filelist_full; // filelist.full.gz is the list of all regular files
57 // (excluding big files) stored on the backup media set
58extern char *g_biggielist_pot; // list of big files which _could_ be restored, if the
59 // user chooses them
60extern char *g_filelist_imagedevs; // list of devices (e.g. /dev/hda1, /dev/sda5) which
61 // were archived as images, not just /dev entries
62 // ... e.g. NTFS, BeOS partitions
63extern char *g_imagedevs_restthese; // of the imagedevs listed in FILELIST_IMAGEDEVS,
64 // restore only these
65extern char *g_mondo_cfg_file; // where m*ndo-restore.cfg (the config file) is stored
66extern char *g_mountlist_fname; // where mountlist.txt (the mountlist file) is stored
67extern char *g_mondo_home; // homedir of Mondo; usually /usr/local/share/mondo
68
69extern t_bkptype g_backup_media_type;
70
71extern int g_partition_table_locked_up;
72extern char *MONDO_LOGFILE;
73
74/* Reference to global bkpinfo */
75extern struct s_bkpinfo *bkpinfo;
76
77/* Should we use or not extended attributes and acl when restoring */
78char *g_getfattr = NULL;
79char *g_getfacl = NULL;
80
81extern void kill_anything_like_this(char *str);
82extern int skip_obdr(void);
83extern int set_tape_block_size_with_mt(long internal_tape_block_size);
84
85/**
86* @addtogroup restoreUtilityGroup
87* @{
88*/
89/**
90* Free the malloc()s for the filename variables.
91*/
92void free_MR_global_filenames(void)
93{
94paranoid_free(g_biggielist_txt);
95paranoid_free(g_filelist_full);
96paranoid_free(g_filelist_imagedevs);
97paranoid_free(g_imagedevs_restthese);
98paranoid_free(g_mondo_cfg_file);
99paranoid_free(g_mountlist_fname);
100paranoid_free(g_mondo_home);
101/*
102paranoid_free(g_tmpfs_mountpt);
103*/
104paranoid_free(g_isodir_device);
105paranoid_free(g_isodir_format);
106
107}
108
109
110
111/**
112* Ask the user which imagedevs from the list contained in @p infname should
113* actually be restored.
114* @param infname The file containing a list of all imagedevs.
115* @param outfname The location of the output file containing the imagedevs the user wanted to restore.
116* @ingroup restoreUtilityGroup
117*/
118void ask_about_these_imagedevs(char *infname, char *outfname)
119{
120FILE *fin;
121FILE *fout;
122/************************************************************************
123* allocate memory regions. test and set -sab 16 feb 2003 *
124************************************************************************/
125char *incoming_ptr;
126char *question_ptr;
127
128char incoming[MAX_STR_LEN] = "\0";
129char question[MAX_STR_LEN];
130
131assert_string_is_neither_NULL_nor_zerolength(infname);
132assert_string_is_neither_NULL_nor_zerolength(outfname);
133
134incoming_ptr = malloc(sizeof(incoming));
135if (incoming_ptr == NULL) {
136fprintf(stderr, "Out of Memory\n");
137exit(EXIT_FAILURE);
138}
139
140question_ptr = malloc(sizeof(question));
141if (question_ptr == NULL) {
142fprintf(stderr, "Out of Memory\n");
143exit(EXIT_FAILURE);
144}
145
146memset(incoming_ptr, '\0', sizeof(incoming));
147memset(question_ptr, '\0', sizeof(question));
148
149
150
151if (!(fin = fopen(infname, "r"))) {
152fatal_error("Cannot openin infname");
153}
154if (!(fout = fopen(outfname, "w"))) {
155fatal_error("Cannot openin outfname");
156}
157for (fgets(incoming_ptr, MAX_STR_LEN, fin);
158 !feof(fin); fgets(incoming_ptr, MAX_STR_LEN, fin)) {
159strip_spaces(incoming_ptr);
160
161if (incoming[0] == '\0') {
162 continue;
163}
164
165sprintf(question_ptr,
166 "Should I restore the image of %s ?", incoming_ptr);
167
168if (ask_me_yes_or_no(question_ptr)) {
169 fprintf(fout, "%s\n", incoming_ptr);
170}
171}
172
173/*** free memory ***********/
174paranoid_free(incoming_ptr);
175incoming_ptr = NULL;
176paranoid_free(question_ptr);
177question_ptr = NULL;
178
179
180paranoid_fclose(fout);
181paranoid_fclose(fin);
182}
183
184/**************************************************************************
185*ASK_ABOUT_THESE_IMAGEDEVS *
186**************************************************************************/
187
188
189
190
191
192
193
194
195/**
196* Extract @c mondo-restore.cfg and @c mountlist.txt from @p ramdisk_fname.
197* @param bkpinfo The backup information structure. @c tmpdir is the only field used.
198* @param ramdisk_fname The filename of the @b compressed ramdisk to look in.
199* @param output_cfg_file Where to put the configuration file extracted.
200* @param output_mountlist_file Where to put the mountlist file extracted.
201* @return 0 for success, nonzero for failure.
202* @ingroup restoreUtilityGroup
203*/
204
205/**
206* Keep trying to get mondo-restore.cfg from the archive, until the user gives up.
207*/
208void get_cfg_file_from_archive_or_bust()
209{
210while (get_cfg_file_from_archive()) {
211if (!ask_me_yes_or_no
212 ("Failed to find config file/archives. Choose another source?"))
213{
214 fatal_error("Could not find config file/archives. Aborting.");
215}
216interactively_obtain_media_parameters_from_user(FALSE);
217}
218}
219
220
221/**
222* Determine whether @p list_fname contains a line containing @p f.
223* @param f The line to search for.
224* @param list_fname The file to search in.
225* @param preamble Ignore this beginning part of @p f ("" to disable).
226* @return TRUE if it's in the list, FALSE if it's not.
227*/
228bool is_file_in_list(char *f, char *list_fname, char *preamble)
229{
230
231/** needs malloc **/
232char *command;
233char *file;
234char *tmp;
235int res;
236
237malloc_string(command);
238malloc_string(file);
239malloc_string(tmp);
240assert_string_is_neither_NULL_nor_zerolength(f);
241assert_string_is_neither_NULL_nor_zerolength(list_fname);
242assert(preamble != NULL);
243
244if (strncmp(preamble, f, strlen(preamble)) == 0) {
245strcpy(file, f + strlen(preamble));
246} else {
247strcpy(file, f);
248}
249if (file[0] == '/' && file[1] == '/') {
250strcpy(tmp, file);
251strcpy(file, tmp + 1);
252}
253sprintf(tmp,
254 "Checking to see if f=%s, file=%s, is in the list of biggiefiles",
255 f, file);
256log_msg(2, tmp);
257sprintf(command, "grep -E '^%s$' %s", file, list_fname);
258res = run_program_and_log_output(command, FALSE);
259paranoid_free(command);
260paranoid_free(file);
261paranoid_free(tmp);
262if (res) {
263return (FALSE);
264} else {
265return (TRUE);
266}
267}
268
269/**************************************************************************
270*END_IS_FILE_IN_LIST *
271**************************************************************************/
272
273
274
275/**
276* Set up an ISO backup.
277* @param bkpinfo The backup information structure. Fields used:
278* - @c bkpinfo->backup_media_type
279* - @c bkpinfo->disaster_recovery
280* - @c bkpinfo->isodir
281* @param nuke_me_please If TRUE, we're in nuke mode; if FALSE we're in interactive mode.
282* @return 0 for success, nonzero for failure.
283*/
284int iso_fiddly_bits(bool nuke_me_please)
285{
286char *mount_isodir_command, *tmp, *command;
287int retval = 0, i;
288bool already_mounted = FALSE;
289
290assert(bkpinfo != NULL);
291malloc_string(mount_isodir_command);
292malloc_string(tmp);
293malloc_string(command);
294g_ISO_restore_mode = TRUE;
295read_cfg_var(g_mondo_cfg_file, "iso-dev", g_isodir_device);
296if (bkpinfo->disaster_recovery) {
297/* Patch Conor Daly 26-june-2004
298* Don't let this clobber an existing bkpinfo->isodir */
299if (!bkpinfo->isodir[0]) {
300 strcpy(bkpinfo->isodir, "/tmp/isodir");
301}
302/* End patch */
303sprintf(command, "mkdir -p %s", bkpinfo->isodir);
304run_program_and_log_output(command, 5);
305log_msg(2, "Setting isodir to %s", bkpinfo->isodir);
306}
307
308if (!get_isodir_info
309(g_isodir_device, g_isodir_format, bkpinfo->isodir,
310 nuke_me_please)) {
311return (1);
312}
313paranoid_system("umount " MNT_CDROM " 2> /dev/null"); /* just in case */
314
315if (is_this_device_mounted(g_isodir_device)) {
316log_to_screen("WARNING - isodir is already mounted");
317already_mounted = TRUE;
318} else {
319sprintf(mount_isodir_command, "mount %s", g_isodir_device);
320if (strlen(g_isodir_format) > 1) {
321 sprintf(mount_isodir_command + strlen(mount_isodir_command),
322 " -t %s", g_isodir_format);
323}
324strcat(mount_isodir_command, " -o ro ");
325strcat(mount_isodir_command, bkpinfo->isodir);
326run_program_and_log_output("df -m", FALSE);
327sprintf(tmp,
328 "The 'mount' command is '%s'. PLEASE report this command to be if you have problems, ok?",
329 mount_isodir_command);
330log_msg(1, tmp);
331if (run_program_and_log_output(mount_isodir_command, FALSE)) {
332 popup_and_OK
333 ("Cannot mount the device where the ISO files are stored.");
334 return (1);
335}
336log_to_screen
337 ("I have mounted the device where the ISO files are stored.");
338}
339if (!IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
340 mount_media();
341}
342i = what_number_cd_is_this(); /* has the side-effect of calling mount_media() */
343sprintf(tmp, "%s #%d has been mounted via loopback mount",
344 media_descriptor_string(bkpinfo->backup_media_type), i);
345log_msg(1, tmp);
346if (i < 0) {
347popup_and_OK
348 ("Cannot find ISO images in the directory you specified.");
349retval = 1;
350}
351log_msg(2, "%ld: bkpinfo->isodir is now %s", __LINE__,
352 bkpinfo->isodir);
353paranoid_free(mount_isodir_command);
354paranoid_free(tmp);
355paranoid_free(command);
356return (retval);
357}
358
359
360
361
362/**
363* Kill all Petris processes.
364*/
365void kill_petris(void) {
366 kill_anything_like_this("petris");
367}
368
369/**************************************************************************
370*END_KILL_PETRIS *
371**************************************************************************/
372
373
374/**
375 * Mount @p device at @p mpt as @p format.
376 * @param device The device (/dev entry) to mount.
377 * @param mpt The directory to mount it on.
378 * @param format The filesystem type of @p device.
379 * @param writeable If TRUE, mount read-write; if FALSE, mount read-only.
380 * @return 0 for success, nonzero for failure.
381 */
382int mount_device(char *device, char *mpt, char *format, bool writeable)
383{
384int res = 0;
385
386/** malloc **/
387char *tmp, *command, *mountdir, *mountpoint, *additional_parameters;
388
389assert_string_is_neither_NULL_nor_zerolength(device);
390assert_string_is_neither_NULL_nor_zerolength(mpt);
391assert(format != NULL);
392malloc_string(tmp);
393malloc_string(command);
394malloc_string(mountdir);
395malloc_string(mountpoint);
396malloc_string(additional_parameters);
397
398 if (!strcmp(mpt, "/1")) {
399 strcpy(mountpoint, "/");
400 log_msg(3, "Mommm! SME is being a dildo!");
401 } else {
402 strcpy(mountpoint, mpt);
403 }
404
405 if (!strcmp(mountpoint, "lvm")) {
406 return (0);
407 }
408 if (!strcmp(mountpoint, "image")) {
409 return (0);
410 }
411 sprintf(tmp, "Mounting device %s ", device);
412 log_msg(1, tmp);
413 /* Deal with additional params only if not /proc or /sys */
414 if (strcmp(format, "proc") && strcmp(format, "sys")) {
415 if (writeable) {
416 strcpy(additional_parameters, "-o rw");
417 } else {
418 strcpy(additional_parameters, "-o ro");
419 }
420 if (find_home_of_exe("setfattr")) {
421 strcat(additional_parameters, ",user_xattr");
422 }
423 if (find_home_of_exe("setfacl")) {
424 strcat(additional_parameters, ",acl");
425 }
426 }
427
428 if (!strcmp(mountpoint, "swap")) {
429 sprintf(command, "swapon %s", device);
430 } else {
431 if (!strcmp(mountpoint, "/")) {
432 strcpy(mountdir, MNT_RESTORING);
433 } else {
434 sprintf(mountdir, "%s%s", MNT_RESTORING, mountpoint);
435 }
436 sprintf(command, "mkdir -p %s", mountdir);
437 run_program_and_log_output(command, FALSE);
438 sprintf(command, "mount -t %s %s %s %s 2>> %s", format, device,
439 additional_parameters, mountdir, MONDO_LOGFILE);
440 log_msg(2, "command='%s'", command);
441 }
442
443 res = run_program_and_log_output(command, TRUE);
444 if (res && (strstr(command, "xattr") || strstr(command, "acl"))) {
445 log_msg(1, "Re-trying without the fancy extra parameters");
446 sprintf(command, "mount -t %s %s %s 2>> %s", format, device,
447 mountdir, MONDO_LOGFILE);
448 res = run_program_and_log_output(command, TRUE);
449 }
450 if (res) {
451 log_msg(1, "Unable to mount device %s (type %s) at %s", device,
452 format, mountdir);
453 log_msg(1, "command was '%s'", command);
454 if (!strcmp(mountpoint, "swap")) {
455 log_to_screen(tmp);
456 } else {
457 log_msg(2, "Retrying w/o the '-t' switch");
458 sprintf(command, "mount %s %s 2>> %s", device, mountdir,
459 MONDO_LOGFILE);
460 log_msg(2, "2nd command = '%s'", command);
461 res = run_program_and_log_output(command, TRUE);
462 if (res == 0) {
463 log_msg(1,
464 "That's OK. I called mount w/o a filesystem type and it worked fine in the end.");
465 } else {
466 log_to_screen(tmp);
467 }
468 }
469 }
470
471 if (res && !strcmp(mountpoint, "swap")) {
472 log_msg(2, "That's ok. It's just a swap partition.");
473 log_msg(2, "Non-fatal error. Returning 0.");
474 res = 0;
475 }
476
477paranoid_free(tmp);
478paranoid_free(command);
479paranoid_free(mountdir);
480paranoid_free(mountpoint);
481paranoid_free(additional_parameters);
482
483 return (res);
484}
485/**************************************************************************
486 *END_MOUNT_DEVICE *
487**************************************************************************/
488
489
490/**
491 * Mount all devices in @p p_external_copy_of_mountlist on @p MNT_RESTORING.
492 * @param p_external_copy_of_mountlist The mountlist containing devices to be mounted.
493 * @param writeable If TRUE, then mount read-write; if FALSE mount read-only.
494 * @return The number of errors encountered (0 for success).
495 */
496int mount_all_devices(struct mountlist_itself
497 *p_external_copy_of_mountlist, bool writeable)
498{
499int retval = 0, lino, res;
500char *tmp, *these_failed, *format;
501 struct mountlist_itself *mountlist = NULL;
502
503malloc_string(tmp);
504malloc_string(format);
505malloc_string(these_failed);
506/** menset **/
507these_failed[0] = '\0';
508
509assert(p_external_copy_of_mountlist != NULL);
510mountlist = malloc(sizeof(struct mountlist_itself));
511memcpy((void *) mountlist, (void *) p_external_copy_of_mountlist,
512 sizeof(struct mountlist_itself));
513 sort_mountlist_by_mountpoint(mountlist, 0);
514
515
516 mvaddstr_and_log_it(g_currentY, 0, "Mounting devices ");
517 open_progress_form("Mounting devices",
518 "I am now mounting all the drives.",
519 "This should not take long.",
520 "", mountlist->entries);
521
522 for (lino = 0; lino < mountlist->entries; lino++) {
523 if (!strcmp(mountlist->el[lino].device, "/proc")) {
524 log_msg(1,
525 "Again with the /proc - why is this in your mountlist?");
526 } else if (is_this_device_mounted(mountlist->el[lino].device)) {
527 sprintf(tmp, "%s is already mounted",
528 mountlist->el[lino].device);
529 log_to_screen(tmp);
530 } else if (strcmp(mountlist->el[lino].mountpoint, "none")
531 && strcmp(mountlist->el[lino].mountpoint, "lvm")
532 && strcmp(mountlist->el[lino].mountpoint, "raid")
533 && strcmp(mountlist->el[lino].mountpoint, "image")) {
534 sprintf(tmp, "Mounting %s", mountlist->el[lino].device);
535 update_progress_form(tmp);
536 strcpy(format, mountlist->el[lino].format);
537 res = mount_device(mountlist->el[lino].device,
538 mountlist->el[lino].mountpoint,
539 format, writeable);
540 retval += res;
541 if (res) {
542 strcat(these_failed, mountlist->el[lino].device);
543 strcat(these_failed, " ");
544 }
545 }
546 g_current_progress++;
547 }
548 close_progress_form();
549 if (retval) {
550 if (g_partition_table_locked_up > 0) {
551 log_to_screen
552 ("fdisk's ictol() call to refresh its copy of the partition table causes the kernel to");
553 log_to_screen
554 ("lock up the partition table. You might have to reboot and use Interactive Mode to");
555 log_to_screen
556 ("format and restore *without* partitioning first. Sorry for the inconvenience.");
557 }
558 sprintf(tmp, "Could not mount device(s) %s- shall I abort?",
559 these_failed);
560
561 if (!ask_me_yes_or_no(tmp)) {
562 retval = 0;
563 log_to_screen
564 ("Continuing, although some device(s) failed to be mounted");
565 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
566 } else {
567 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
568 log_to_screen
569 ("Unable to mount some or all of your partitions.");
570 }
571 } else {
572 log_to_screen("All partitions were mounted OK.");
573 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
574 }
575 /* Also mounting under MNT_RESTORING special FS */
576 (void)mount_device("/proc","/proc","proc",TRUE);
577 (void)mount_device("/sys","/sys","sysfs",TRUE);
578 run_program_and_log_output("df -m", 3);
579 paranoid_free(mountlist);
580 paranoid_free(tmp);
581 paranoid_free(format);
582 paranoid_free(these_failed);
583 return (retval);
584}
585/**************************************************************************
586*END_MOUNT_ALL_DEVICES *
587**************************************************************************/
588
589
590/**
591* Mount the CD-ROM or USB device at /mnt/cdrom.
592* @param bkpinfo The backup information structure. Fields used:
593* - @c bkpinfo->backup_media_type
594* - @c bkpinfo->disaster_recovery
595* - @c bkpinfo->isodir
596* - @c bkpinfo->media_device
597* @return 0 for success, nonzero for failure.
598*/
599int mount_media()
600{
601char *mount_cmd;
602int i, res;
603#ifdef __FreeBSD__
604char mdd[32];
605char *mddev = mdd;
606#endif
607
608malloc_string(mount_cmd);
609assert(bkpinfo != NULL);
610
611 if (bkpinfo->backup_media_type == tape
612 || bkpinfo->backup_media_type == udev) {
613 log_msg(8, "Tape/udev. Therefore, no need to mount a media.");
614 paranoid_free(mount_cmd);
615 return 0;
616 }
617
618 if (!run_program_and_log_output("mount | grep -F " MNT_CDROM, FALSE)) {
619 log_msg(2, "mount_media() - media already mounted. Fair enough.");
620 paranoid_free(mount_cmd);
621 return (0);
622 }
623
624 if (bkpinfo->backup_media_type == nfs) {
625 log_msg(2, "Mounting for NFS thingy");
626 log_msg(2, "isodir = %s", bkpinfo->isodir);
627 if ((!bkpinfo->isodir[0] || !strcmp(bkpinfo->isodir, "/"))
628 && am_I_in_disaster_recovery_mode()) {
629 strcpy(bkpinfo->isodir, "/tmp/isodir");
630 log_msg(1, "isodir is being set to %s", bkpinfo->isodir);
631 }
632#ifdef __FreeBSD__
633 sprintf(mount_cmd, "/mnt/isodir/%s/%s/%s-%d.iso", bkpinfo->isodir,
634 bkpinfo->nfs_remote_dir, bkpinfo->prefix, g_current_media_number);
635 mddev = make_vn(mount_cmd);
636 sprintf(mount_cmd, "mount_cd9660 -r %s " MNT_CDROM, mddev);
637#else
638 sprintf(mount_cmd, "mount %s/%s/%s-%d.iso -t iso9660 -o loop,ro %s",
639 bkpinfo->isodir, bkpinfo->nfs_remote_dir,
640 bkpinfo->prefix, g_current_media_number, MNT_CDROM);
641#endif
642
643 } else if (bkpinfo->backup_media_type == iso) {
644#ifdef __FreeBSD__
645 sprintf(mount_cmd, "%s/%s-%d.iso", bkpinfo->isodir,
646 bkpinfo->prefix, g_current_media_number);
647 mddev = make_vn(mount_cmd);
648 sprintf(mount_cmd, "mount_cd9660 -r %s %s", mddev, MNT_CDROM);
649#else
650 sprintf(mount_cmd, "mount %s/%s-%d.iso -t iso9660 -o loop,ro %s",
651 bkpinfo->isodir, bkpinfo->prefix, g_current_media_number, MNT_CDROM);
652#endif
653 } else if (bkpinfo->backup_media_type == usb) {
654 sprintf(mount_cmd, "mount -t vfat %s %s", bkpinfo->media_device, MNT_CDROM);
655 } else if (strstr(bkpinfo->media_device, "/dev/")) {
656#ifdef __FreeBSD__
657 sprintf(mount_cmd, "mount_cd9660 -r %s %s", bkpinfo->media_device,
658 MNT_CDROM);
659#else
660 sprintf(mount_cmd, "mount %s -t iso9660 -o ro %s",
661 bkpinfo->media_device, MNT_CDROM);
662#endif
663 } else {
664 if (bkpinfo->disaster_recovery
665 && does_file_exist("/tmp/CDROM-LIVES-HERE")) {
666 strcpy(bkpinfo->media_device,
667 last_line_of_file("/tmp/CDROM-LIVES-HERE"));
668 } else {
669 find_cdrom_device(bkpinfo->media_device, TRUE);
670 }
671
672#ifdef __FreeBSD__
673 sprintf(mount_cmd, "mount_cd9660 -r %s %s", bkpinfo->media_device,
674 MNT_CDROM);
675#else
676 sprintf(mount_cmd, "mount %s -t iso9660 -o ro %s",
677 bkpinfo->media_device, MNT_CDROM);
678#endif
679 }
680
681 log_msg(2, "(mount_media) --- command = %s", mount_cmd);
682 for (i = 0; i < 2; i++) {
683 res = run_program_and_log_output(mount_cmd, FALSE);
684 if (!res) {
685 break;
686 } else {
687 log_msg(2, "Failed to mount device.");
688 sleep(5);
689 run_program_and_log_output("sync", FALSE);
690 }
691 }
692
693 if (res) {
694 log_msg(2, "Failed, despite %d attempts", i);
695 } else {
696 log_msg(2, "Mounted media drive OK");
697 }
698 paranoid_free(mount_cmd);
699 return (res);
700}
701/**************************************************************************
702*END_MOUNT_CDROM *
703**************************************************************************/
704
705
706
707/**
708* Fix some miscellaneous things in the filesystem so the system will come
709* up correctly on the first boot.
710*/
711void protect_against_braindead_sysadmins()
712{
713run_program_and_log_output("touch " MNT_RESTORING "/var/log/pacct",
714 FALSE);
715run_program_and_log_output("touch " MNT_RESTORING "/var/account/pacct",
716 FALSE);
717if (run_program_and_log_output("ls " MNT_RESTORING " /tmp", FALSE)) {
718run_program_and_log_output("chmod 1777 " MNT_RESTORING "/tmp",
719 FALSE);
720}
721run_program_and_log_output("mkdir -p " MNT_RESTORING
722 "/var/run/console", FALSE);
723/* To support latest Ubuntu where /var is a separate FS Cf: http://linux.derkeiler.com/Mailing-Lists/Ubuntu/2007-04/msg01319.html */
724run_program_and_log_output("mkdir -p " MNT_RESTORING
725 "/var/lock /var/run", FALSE);
726run_program_and_log_output("chmod 777 " MNT_RESTORING "/dev/null",
727 FALSE);
728run_program_and_log_output("cd " MNT_RESTORING
729 "; for i in `ls home/`; do echo \"Moving $i's spurious files to $i/.disabled\"; mkdir \"$i\"/.disabled ; mv -f \"$i\"/.DCOP* \"$i\"/.MCOP* \"$i\"/.*authority \"$i\"/.kde/tmp* \"$i\"/.kde/socket* \"$i\"/.disabled/ ; done",
730 TRUE);
731run_program_and_log_output("rm -f " MNT_RESTORING "/var/run/*.pid",
732 TRUE);
733run_program_and_log_output("rm -f " MNT_RESTORING "/var/lock/subsys/*",
734 TRUE);
735}
736
737/**************************************************************************
738*END_PROTECT_AGAINST_BRAINDEAD_SYSADMINS *
739**************************************************************************/
740
741
742
743
744/**
745* Fill out @p bkpinfo based on @p cfg_file.
746* @param cfg_file The mondo-restore.cfg file to read into @p bkpinfo.
747* @param bkpinfo The backup information structure to fill out with information
748* from @p cfg_file.
749* @return 0 for success, nonzero for failure.
750*/
751int read_cfg_file_into_bkpinfo(char *cfgf)
752{
753/** add mallocs **/
754char *value = NULL;
755char *tmp = NULL;
756char *envtmp1 = NULL;
757char *envtmp2 = NULL;
758char *command = NULL;
759char *iso_mnt = NULL;
760char *iso_path = NULL;
761char *old_isodir = NULL;
762char cfg_file[100];
763t_bkptype media_specified_by_user;
764
765malloc_string(command);
766malloc_string(iso_mnt);
767malloc_string(iso_path);
768malloc_string(old_isodir);
769malloc_string(value);
770malloc_string(tmp);
771// assert_string_is_neither_NULL_nor_zerolength(cfg_file);
772assert(bkpinfo != NULL);
773
774if (!cfgf) {
775strcpy(cfg_file, g_mondo_cfg_file);
776} else {
777strcpy(cfg_file, cfgf);
778}
779
780media_specified_by_user = bkpinfo->backup_media_type; // or 'none', if not specified
781
782if (0 == read_cfg_var(cfg_file, "backup-media-type", value)) {
783if (!strcmp(value, "cdstream")) {
784 bkpinfo->backup_media_type = cdstream;
785} else if (!strcmp(value, "cdr")) {
786 bkpinfo->backup_media_type = cdr;
787} else if (!strcmp(value, "cdrw")) {
788 bkpinfo->backup_media_type = cdrw;
789} else if (!strcmp(value, "dvd")) {
790 bkpinfo->backup_media_type = dvd;
791} else if (!strcmp(value, "usb")) {
792 bkpinfo->backup_media_type = usb;
793 bkpinfo->please_dont_eject = TRUE;
794} else if (!strcmp(value, "iso")) {
795/*
796if (am_I_in_disaster_recovery_mode()
797&& !run_program_and_log_output("mount /dev/cdrom "MNT_CDROM, 1)
798&& does_file_exist(MNT_CDROM"/archives/filelist.0"))
799*/
800
801// Patch by Conor Daly - 2004/07/12
802 bkpinfo->backup_media_type = iso;
803 if (am_I_in_disaster_recovery_mode()) {
804 /* Check to see if CD is already mounted before mounting it... */
805 if (!is_this_device_mounted("/dev/cdrom")) {
806 log_msg(2,
807 "NB: CDROM device not mounted, mounting...");
808 run_program_and_log_output("mount /dev/cdrom "
809 MNT_CDROM, 1);
810 }
811 if (does_file_exist(MNT_CDROM "/archives/filelist.0")) {
812 bkpinfo->backup_media_type = cdr;
813 run_program_and_log_output("umount " MNT_CDROM, 1);
814 log_it
815 ("Re-jigging configuration AGAIN. CD-R, not ISO.");
816 }
817 }
818 if (read_cfg_var(cfg_file, "iso-prefix", value) == 0) {
819 strcpy(bkpinfo->prefix,value);
820 } else {
821 strcpy(bkpinfo->prefix,STD_PREFIX);
822 }
823} else if (!strcmp(value, "nfs")) {
824 bkpinfo->backup_media_type = nfs;
825 bkpinfo->please_dont_eject = TRUE;
826 if (read_cfg_var(cfg_file, "iso-prefix", value) == 0) {
827 strcpy(bkpinfo->prefix,value);
828 } else {
829 strcpy(bkpinfo->prefix,STD_PREFIX);
830 }
831 if (strstr(call_program_and_get_last_line_of_output
832 ("cat /proc/cmdline"), "pxe")) {
833 /* We need to override prefix value in PXE mode as it's
834 * already done in start-nfs */
835 envtmp1 = getenv("imgname");
836 if (envtmp1 == NULL) {
837 fatal_error("no imgname variable in environment");
838 }
839 strcpy(bkpinfo->prefix,envtmp1);
840 }
841
842} else if (!strcmp(value, "tape")) {
843 bkpinfo->backup_media_type = tape;
844} else if (!strcmp(value, "udev")) {
845 bkpinfo->backup_media_type = udev;
846} else {
847 fatal_error("UNKNOWN bkp-media-type");
848}
849} else {
850fatal_error("backup-media-type not specified!");
851}
852if (bkpinfo->disaster_recovery) {
853 if (bkpinfo->backup_media_type == cdstream) {
854 sprintf(bkpinfo->media_device, "/dev/cdrom");
855// bkpinfo->media_size[0] = -1;
856 bkpinfo->media_size[0] = 1999 * 1024;
857 bkpinfo->media_size[1] = 650; /* good guess */
858 } else if (bkpinfo->backup_media_type == usb) {
859 envtmp1 = getenv("MRUSBDEV");
860 if (envtmp1 == NULL) {
861 if (read_cfg_var(cfg_file, "usb-dev", value)) {
862 fatal_error("Cannot get USB device name from cfg file");
863 }
864 } else {
865 strcpy(value,envtmp1);
866 }
867 sprintf(bkpinfo->media_device, "%s1", value);
868 sprintf(tmp, "Backup medium is USB --- dev=%s", bkpinfo->media_device);
869 log_msg(2, tmp);
870 } else if (bkpinfo->backup_media_type == tape
871 || bkpinfo->backup_media_type == udev) {
872 if (read_cfg_var(cfg_file, "media-dev", value)) {
873 fatal_error("Cannot get tape device name from cfg file");
874 }
875 strcpy(bkpinfo->media_device, value);
876 read_cfg_var(cfg_file, "media-size", value);
877 bkpinfo->media_size[1] = atol(value);
878 sprintf(tmp, "Backup medium is TAPE --- dev=%s",
879 bkpinfo->media_device);
880 log_msg(2, tmp);
881 } else {
882 strcpy(bkpinfo->media_device, "/dev/cdrom"); /* we don't really need this var */
883 bkpinfo->media_size[0] = 1999 * 1024; /* 650, probably, but we don't need this var anyway */
884 bkpinfo->media_size[1] = 1999 * 1024; /* 650, probably, but we don't need this var anyway */
885 log_msg(2, "Backup medium is CD-R[W]");
886 }
887} else {
888 log_msg(2,
889 "Not in Disaster Recovery Mode. No need to derive device name from config file.");
890}
891
892read_cfg_var(cfg_file, "use-star", value);
893if (strstr(value, "yes")) {
894 bkpinfo->use_star = TRUE;
895 log_msg(1, "Goody! ... bkpinfo->use_star is now true.");
896}
897
898read_cfg_var(cfg_file, "obdr", value);
899if (strstr(value, "TRUE")) {
900 bkpinfo->use_obdr = TRUE;
901 log_msg(1, "OBDR mode activated");
902}
903
904read_cfg_var(cfg_file, "acl", value);
905if (strstr(value, "TRUE")) {
906 asprintf(&g_getfacl,"setfacl");
907 log_msg(1, "We will restore ACLs");
908 if (! find_home_of_exe("setfacl")) {
909 log_msg(1, "Unable to restore ACLs as no setfacl found");
910 }
911}
912read_cfg_var(cfg_file, "xattr", value);
913if (strstr(value, "TRUE")) {
914 asprintf(&g_getfattr,"setfattr");
915 log_msg(1, "We will restore XATTRs");
916 if (! find_home_of_exe("setfattr")) {
917 log_msg(1, "Unable to restore XATTRs as no setfattr found");
918 }
919}
920
921if (0 == read_cfg_var(cfg_file, "internal-tape-block-size", value)) {
922bkpinfo->internal_tape_block_size = atol(value);
923log_msg(1, "Internal tape block size has been custom-set to %ld",
924 bkpinfo->internal_tape_block_size);
925} else {
926bkpinfo->internal_tape_block_size =
927 DEFAULT_INTERNAL_TAPE_BLOCK_SIZE;
928log_msg(1, "Internal tape block size = default (%ld)",
929 DEFAULT_INTERNAL_TAPE_BLOCK_SIZE);
930}
931
932read_cfg_var(cfg_file, "use-lzo", value);
933if (strstr(value, "yes")) {
934bkpinfo->use_lzo = TRUE;
935bkpinfo->use_gzip = FALSE;
936strcpy(bkpinfo->zip_exe, "lzop");
937strcpy(bkpinfo->zip_suffix, "lzo");
938} else {
939read_cfg_var(cfg_file, "use-gzip", value);
940if (strstr(value, "yes")) {
941 bkpinfo->use_lzo = FALSE;
942 bkpinfo->use_gzip = TRUE;
943 strcpy(bkpinfo->zip_exe, "gzip");
944 strcpy(bkpinfo->zip_suffix, "gz");
945} else {
946 read_cfg_var(cfg_file, "use-comp", value);
947 if (strstr(value, "yes")) {
948 bkpinfo->use_lzo = FALSE;
949 bkpinfo->use_gzip = FALSE;
950 strcpy(bkpinfo->zip_exe, "bzip2");
951 strcpy(bkpinfo->zip_suffix, "bz2");
952 } else {
953 bkpinfo->zip_exe[0] = bkpinfo->zip_suffix[0] = '\0';
954 }
955}
956}
957
958value[0] = '\0';
959read_cfg_var(cfg_file, "differential", value);
960if (!strcmp(value, "yes") || !strcmp(value, "1")) {
961bkpinfo->differential = TRUE;
962}
963log_msg(2, "differential var = '%s'", value);
964if (bkpinfo->differential) {
965log_msg(2, "THIS IS A DIFFERENTIAL BACKUP");
966} else {
967log_msg(2, "This is a regular (full) backup");
968}
969
970read_cfg_var(g_mondo_cfg_file, "please-dont-eject", tmp);
971if (tmp[0]
972||
973strstr(call_program_and_get_last_line_of_output
974 ("cat /proc/cmdline"), "donteject")) {
975bkpinfo->please_dont_eject = TRUE;
976log_msg(2, "Ok, I shan't eject when restoring! Groovy.");
977}
978
979if (bkpinfo->backup_media_type == nfs) {
980 if (!cfgf) {
981 log_msg(2, "nfs_mount remains %s", bkpinfo->nfs_mount);
982 log_msg(2, "nfs_remote_dir remains %s",
983 bkpinfo->nfs_remote_dir);
984 log_msg(2,
985 "...cos it wouldn't make sense to abandon the values that GOT ME to this config file in the first place");
986 } else {
987 read_cfg_var(g_mondo_cfg_file, "nfs-server-mount",
988 bkpinfo->nfs_mount);
989 read_cfg_var(g_mondo_cfg_file, "nfs-server-path",
990 bkpinfo->nfs_remote_dir);
991 log_msg(2, "nfs_mount is %s", bkpinfo->nfs_mount);
992 log_msg(2, "nfs_remote_dir is %s", bkpinfo->nfs_remote_dir);
993 }
994 if (strstr(call_program_and_get_last_line_of_output
995 ("cat /proc/cmdline"), "pxe")) {
996 /* We need to override values in PXE mode as it's
997 * already done in start-nfs */
998 envtmp1 = getenv("nfsmount");
999 if (envtmp1 == NULL) {
1000 fatal_error("no nfsmount variable in environment");
1001 }
1002 envtmp2 = getenv("dirimg");
1003 if (envtmp2 == NULL) {
1004 fatal_error("no dirimg variable in environment");
1005 }
1006 strcpy(bkpinfo->nfs_mount,envtmp1);
1007 strcpy(bkpinfo->nfs_remote_dir,envtmp2);
1008 }
1009} else if (bkpinfo->backup_media_type == iso) {
1010 /* Patch by Conor Daly 23-june-2004
1011 * to correctly mount iso-dev and set a sensible
1012 * isodir in disaster recovery mode
1013 */
1014 strcpy(old_isodir, bkpinfo->isodir);
1015 read_cfg_var(g_mondo_cfg_file, "iso-mnt", iso_mnt);
1016 read_cfg_var(g_mondo_cfg_file, "isodir", iso_path);
1017 sprintf(bkpinfo->isodir, "%s%s", iso_mnt, iso_path);
1018 if (!bkpinfo->isodir[0]) {
1019 strcpy(bkpinfo->isodir, old_isodir);
1020 }
1021 if (!bkpinfo->disaster_recovery) {
1022 if (strcmp(old_isodir, bkpinfo->isodir)) {
1023 log_it
1024 ("user nominated isodir differs from archive, keeping user's choice: %s %s\n",
1025 old_isodir, bkpinfo->isodir);
1026 strcpy(bkpinfo->isodir, old_isodir);
1027 }
1028 }
1029 read_cfg_var(g_mondo_cfg_file, "iso-dev", g_isodir_device);
1030 log_msg(2, "isodir=%s; iso-dev=%s", bkpinfo->isodir,
1031 g_isodir_device);
1032 if (bkpinfo->disaster_recovery) {
1033 if (is_this_device_mounted(g_isodir_device)) {
1034 log_msg(2, "NB: isodir is already mounted");
1035 /* Find out where it's mounted */
1036 sprintf(command,
1037 "mount | grep -E '^%s' | tail -n1 | cut -d' ' -f3",
1038 g_isodir_device);
1039 log_it("command = %s", command);
1040 log_it("res of it = %s",
1041 call_program_and_get_last_line_of_output(command));
1042 sprintf(iso_mnt, "%s",
1043 call_program_and_get_last_line_of_output(command));
1044 } else {
1045 sprintf(iso_mnt, "/tmp/isodir");
1046 sprintf(tmp, "mkdir -p %s", iso_mnt);
1047 run_program_and_log_output(tmp, 5);
1048 sprintf(tmp, "mount %s %s", g_isodir_device, iso_mnt);
1049 if (run_program_and_log_output(tmp, 3)) {
1050 log_msg(1,
1051 "Unable to mount isodir. Perhaps this is really a CD backup?");
1052 bkpinfo->backup_media_type = cdr;
1053 strcpy(bkpinfo->media_device, "/dev/cdrom"); /* superfluous */
1054 bkpinfo->isodir[0] = iso_mnt[0] = iso_path[0] = '\0';
1055 if (mount_media()) {
1056 fatal_error
1057 ("Unable to mount isodir. Failed to mount CD-ROM as well.");
1058 } else {
1059 log_msg(1,
1060 "You backed up to disk, then burned some CDs.");
1061 }
1062 }
1063 }
1064 /* bkpinfo->isodir should now be the true path to prefix-1.iso etc... */
1065 if (bkpinfo->backup_media_type == iso) {
1066 sprintf(bkpinfo->isodir, "%s%s", iso_mnt, iso_path);
1067 }
1068 }
1069}
1070
1071if (media_specified_by_user != none) {
1072 if (g_restoring_live_from_cd) {
1073 if (bkpinfo->backup_media_type != media_specified_by_user) {
1074 log_msg(2,
1075 "bkpinfo->backup_media_type != media_specified_by_user, so I'd better ask :)");
1076 interactively_obtain_media_parameters_from_user(FALSE);
1077 media_specified_by_user = bkpinfo->backup_media_type;
1078 get_cfg_file_from_archive();
1079 /*
1080 if (media_specified_by_user != cdr && media_specified_by_user == cdrw)
1081 { g_restoring_live_from_cd = FALSE; }
1082 */
1083 }
1084 }
1085 bkpinfo->backup_media_type = media_specified_by_user;
1086}
1087g_backup_media_type = bkpinfo->backup_media_type;
1088paranoid_free(value);
1089paranoid_free(tmp);
1090paranoid_free(command);
1091paranoid_free(iso_mnt);
1092paranoid_free(iso_path);
1093paranoid_free(old_isodir);
1094return (0);
1095
1096}
1097
1098/**************************************************************************
1099*END_READ_CFG_FILE_INTO_BKPINFO *
1100**************************************************************************/
1101
1102
1103
1104
1105/**
1106 * Allow the user to edit the filelist and biggielist.
1107 * The filelist is unlinked after it is read.
1108 * @param bkpinfo The backup information structure. Fields used:
1109 * - @c bkpinfo->backup_media_type
1110 * - @c bkpinfo->isodir
1111 * - @c bkpinfo->media_device
1112 * - @c bkpinfo->tmpdir
1113 * @return The filelist structure containing the information read from disk.
1114 */
1115struct
1116s_node *process_filelist_and_biggielist()
1117{
1118struct s_node *filelist;
1119
1120/** add mallocs**/
1121char *command;
1122char *tmp;
1123int res = 0;
1124pid_t pid;
1125bool extract_mountlist_stub = FALSE;
1126
1127assert(bkpinfo != NULL);
1128malloc_string(command);
1129malloc_string(tmp);
1130
1131/* If those files already exist, do not overwrite them later on */
1132if (does_file_exist("/"MOUNTLIST_FNAME_STUB)) {
1133 extract_mountlist_stub = FALSE;
1134} else {
1135 extract_mountlist_stub = TRUE;
1136}
1137
1138if (does_file_exist(g_filelist_full)
1139&& does_file_exist(g_biggielist_txt)) {
1140 log_msg(1, "%s exists", g_filelist_full);
1141 log_msg(1, "%s exists", g_biggielist_txt);
1142 log_msg(2,
1143 "Filelist and biggielist already recovered from media. Yay!");
1144} else {
1145 getcwd(tmp, MAX_STR_LEN);
1146 chdir(bkpinfo->tmpdir);
1147 log_msg(1, "chdir(%s)", bkpinfo->tmpdir);
1148 log_to_screen("Extracting filelist and biggielist from media...");
1149 unlink("/tmp/filelist.full");
1150 unlink(FILELIST_FULL_STUB);
1151 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1152 sprintf(command,
1153 "tar -b %ld -zxf %s ./%s ./%s ./%s ./%s ./%s",
1154 bkpinfo->internal_tape_block_size,
1155 bkpinfo->media_device,
1156 MOUNTLIST_FNAME_STUB,
1157 BIGGIELIST_TXT_STUB,
1158 FILELIST_FULL_STUB,
1159 IWANTMYLVM_STUB,
1160 MONDO_CFG_FILE_STUB);
1161 log_msg(1, "tarcommand = %s", command);
1162 run_program_and_log_output(command, 1);
1163 if (!does_file_exist(FILELIST_FULL_STUB)) {
1164 /* Doing that allow us to remain compatible with pre-2.2.5 versions */
1165 log_msg(2, "pre-2.2.4 compatible mode on");
1166 sprintf(command,
1167 "tar -b %ld -zxf %s %s %s %s %s %s",
1168 bkpinfo->internal_tape_block_size,
1169 bkpinfo->media_device,
1170 MOUNTLIST_FNAME_STUB,
1171 BIGGIELIST_TXT_STUB,
1172 FILELIST_FULL_STUB,
1173 IWANTMYLVM_STUB,
1174 MONDO_CFG_FILE_STUB);
1175 log_msg(1, "tarcommand = %s", command);
1176 run_program_and_log_output(command, 1);
1177 }
1178 } else {
1179 log_msg(2,
1180 "Calling insist_on_this_cd_number; bkpinfo->isodir=%s",
1181 bkpinfo->isodir);
1182 insist_on_this_cd_number(1);
1183 log_msg(2, "Back from iotcn");
1184 run_program_and_log_output("mount", 1);
1185 sprintf(command,
1186 "tar -zxf %s/images/all.tar.gz ./%s ./%s ./%s ./%s ./%s",
1187 MNT_CDROM,
1188 MOUNTLIST_FNAME_STUB,
1189 BIGGIELIST_TXT_STUB,
1190 FILELIST_FULL_STUB,
1191 IWANTMYLVM_STUB,
1192 MONDO_CFG_FILE_STUB);
1193
1194 log_msg(1, "tarcommand = %s", command);
1195 run_program_and_log_output(command, 1);
1196 if (!does_file_exist(FILELIST_FULL_STUB)) {
1197 /* Doing that allow us to remain compatible with pre-2.2.5 versions */
1198 log_msg(2, "pre-2.2.4 compatible mode on");
1199 sprintf(command,
1200 "tar -zxf %s/images/all.tar.gz %s %s %s %s %s",
1201 MNT_CDROM,
1202 MOUNTLIST_FNAME_STUB,
1203 BIGGIELIST_TXT_STUB,
1204 FILELIST_FULL_STUB,
1205 IWANTMYLVM_STUB,
1206 MONDO_CFG_FILE_STUB);
1207
1208 log_msg(1, "tarcommand = %s", command);
1209 run_program_and_log_output(command, 1);
1210 }
1211 if (!does_file_exist(BIGGIELIST_TXT_STUB)) {
1212 fatal_error
1213 ("all.tar.gz did not include " BIGGIELIST_TXT_STUB);
1214 }
1215 if (!does_file_exist(FILELIST_FULL_STUB)) {
1216 fatal_error
1217 ("all.tar.gz did not include " FILELIST_FULL_STUB);
1218 }
1219 }
1220 sprintf(command, "cp -f %s %s", MONDO_CFG_FILE_STUB,
1221 g_mondo_cfg_file);
1222 run_program_and_log_output(command, FALSE);
1223
1224 sprintf(command, "cp -f %s/%s %s", bkpinfo->tmpdir,
1225 BIGGIELIST_TXT_STUB, g_biggielist_txt);
1226 log_msg(1, "command = %s", command);
1227 paranoid_system(command);
1228 sprintf(command, "ln -sf %s/%s %s", bkpinfo->tmpdir,
1229 FILELIST_FULL_STUB, g_filelist_full);
1230 log_msg(1, "command = %s", command);
1231 paranoid_system(command);
1232 }
1233
1234 if (am_I_in_disaster_recovery_mode()
1235 &&
1236 /* If it was there, do not overwrite it */
1237 (extract_mountlist_stub)
1238 &&
1239 ask_me_yes_or_no("Do you want to retrieve the mountlist as well?"))
1240 {
1241 sprintf(command, "ln -sf %s/%s /tmp", MOUNTLIST_FNAME_STUB,
1242 bkpinfo->tmpdir);
1243 paranoid_system(command);
1244 }
1245
1246 chdir(tmp);
1247
1248 if (!does_file_exist(g_biggielist_txt)) {
1249 log_msg(1, "Warning - %s not found", g_biggielist_txt);
1250 }
1251 if (!does_file_exist(g_filelist_full)) {
1252 log_msg(1, "Warning - %s does not exist", g_filelist_full);
1253 }
1254// popup_and_OK("Wonderful.");
1255
1256 log_msg(2, "Forking");
1257 pid = fork();
1258 switch (pid) {
1259 case -1:
1260 fatal_error("Forking error");
1261 break;
1262
1263 case 0:
1264 log_to_screen("Pre-processing filelist");
1265 if (!does_file_exist(g_biggielist_txt)) {
1266 sprintf(command, "echo -n > %s", g_biggielist_txt);
1267 paranoid_system(command);
1268 }
1269 sprintf(command, "grep -E '^/dev/.*' %s > %s",
1270 g_biggielist_txt, g_filelist_imagedevs);
1271 paranoid_system(command);
1272 exit(0);
1273 break;
1274
1275 default:
1276 open_evalcall_form("Pre-processing filelist");
1277 while (!waitpid(pid, (int *) 0, WNOHANG)) {
1278 usleep(100000);
1279 update_evalcall_form(0);
1280 }
1281 }
1282 close_evalcall_form();
1283
1284 log_msg(3, "loading filelist");
1285 filelist = load_filelist(g_filelist_full);
1286 log_msg(3, "deleting original filelist");
1287 unlink(g_filelist_full);
1288 if (g_text_mode) {
1289 printf("Restore which directory? --> ");
1290 fgets(tmp, sizeof(tmp), stdin);
1291 toggle_path_selection(filelist, tmp, TRUE);
1292 if (strlen(tmp) == 0) {
1293 res = 1;
1294 } else {
1295 res = 0;
1296 }
1297 } else {
1298 res = edit_filelist(filelist);
1299 }
1300 if (res) {
1301 log_msg(2, "User hit 'cancel'. Freeing filelist and aborting.");
1302 free_filelist(filelist);
1303 return (NULL);
1304 }
1305 ask_about_these_imagedevs(g_filelist_imagedevs, g_imagedevs_restthese);
1306 close_evalcall_form();
1307
1308 // NB: It's not necessary to add g_biggielist_txt to the filelist.full
1309 // file. The filelist.full file already contains the filename of EVERY
1310 // file backed up - regular and biggie files.
1311
1312 // However, we do want to make sure the imagedevs selected by the user
1313 // are flagged for restoring.
1314 if (length_of_file(g_imagedevs_restthese) > 2) {
1315 add_list_of_files_to_filelist(filelist, g_imagedevs_restthese,
1316 TRUE);
1317 }
1318
1319 paranoid_free(command);
1320 paranoid_free(tmp);
1321 return (filelist);
1322}
1323
1324/**************************************************************************
1325 *END_ PROCESS_FILELIST_AND_BIGGIELIST *
1326 **************************************************************************/
1327
1328
1329
1330
1331/**
1332 * Make a backup copy of <tt>path_root</tt>/<tt>filename</tt>.
1333 * The backup filename is the filename of the original with ".pristine" added.
1334 * @param path_root The place where the filesystem is mounted (e.g. MNT_RESTORING).
1335 * @param filename The filename (absolute path) within @p path_root.
1336 * @return 0 for success, nonzero for failure.
1337 */
1338int backup_crucial_file(char *path_root, char *filename)
1339{
1340 char *tmp;
1341 char *command;
1342 int res;
1343
1344 malloc_string(tmp);
1345 malloc_string(command);
1346 assert(path_root != NULL);
1347 assert_string_is_neither_NULL_nor_zerolength(filename);
1348
1349 sprintf(tmp, "%s/%s", path_root, filename);
1350 sprintf(command, "cp -f %s %s.pristine", tmp, tmp);
1351
1352 res = run_program_and_log_output(command, 5);
1353 paranoid_free(tmp);
1354 paranoid_free(command);
1355 return (res);
1356}
1357
1358void offer_to_make_initrd() {
1359
1360if (bkpinfo->restore_mode != nuke) {
1361 if (ask_me_yes_or_no
1362 ("You will now be able to re-generate your initrd.\nThis is especially useful if you changed of hardware configuration, cloned, made P2V, used multipath...\nDo you need to do it ?")) {
1363 mvaddstr_and_log_it(g_currentY, 0, "Modifying initrd...");
1364 popup_and_OK("You'll now be chrooted under your future / partition.\nGo under /boot and rebuild your initrd with\nmkinitrd -f -v initrd-2.x.y.img 2.x.y e.g.\nThen type exit to finish.");
1365 if (!g_text_mode) {
1366 newtSuspend();
1367 }
1368 (void)system("chroot " MNT_RESTORING);
1369 if (!g_text_mode) {
1370 newtResume();
1371 }
1372 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1373 } else {
1374 return;
1375 }
1376} else {
1377 log_to_screen("Non-interactive mode: no way to give you the keyboard so that you re-generate your initrd. Hope it's OK");
1378 log_msg(1,"Non-interactive mode: no way to give you the keyboard so that you re-generate your initrd. Hope it's OK");
1379}
1380}
1381
1382
1383/**
1384 * Install the user's boot loader in the MBR.
1385 * Currently LILO, ELILO, GRUB, RAW (dd of MBR), and the FreeBSD bootloader are supported.
1386 * @param offer_to_hack_scripts If TRUE, then offer to hack the user's fstab for them.
1387 * @return 0 for success, nonzero for failure.
1388 */
1389int run_boot_loader(bool offer_to_hack_scripts)
1390{
1391 int res;
1392 int retval = 0;
1393
1394 /** malloc *******/
1395 char *device;
1396 char *tmp = NULL;
1397 char *name;
1398 char *cmd = NULL;
1399
1400 malloc_string(device);
1401 malloc_string(name);
1402
1403 /* In order to have a working bootloader, we need to have all devices
1404 * ready in the chroot. If they are not there (udev) then copy them from
1405 * the current /dev location
1406 */
1407 asprintf(&cmd,"tar cf - /dev | ( cd %s ; tar xf - )",MNT_RESTORING);
1408 run_program_and_log_output(cmd, 3);
1409 paranoid_free(cmd);
1410
1411 backup_crucial_file(MNT_RESTORING, "/etc/fstab");
1412 backup_crucial_file(MNT_RESTORING, "/boot/grub/menu.lst");
1413 backup_crucial_file(MNT_RESTORING, "/etc/lilo.conf");
1414 backup_crucial_file(MNT_RESTORING, "/etc/elilo.conf");
1415 backup_crucial_file(MNT_RESTORING, "/boot/grub/device.map");
1416 backup_crucial_file(MNT_RESTORING, "/etc/mtab");
1417 read_cfg_var(g_mondo_cfg_file, "bootloader.device", device);
1418 read_cfg_var(g_mondo_cfg_file, "bootloader.name", name);
1419 asprintf(&tmp, "run_boot_loader: device='%s', name='%s'", device, name);
1420 log_msg(2, tmp);
1421 paranoid_free(tmp);
1422 system("sync");
1423
1424 offer_to_make_initrd();
1425 if (!strcmp(name, "LILO")) {
1426 res = run_lilo(offer_to_hack_scripts);
1427 } else if (!strcmp(name, "ELILO")) {
1428 res = run_elilo(offer_to_hack_scripts);
1429 } else if (!strcmp(name, "GRUB")) {
1430 res = run_grub(offer_to_hack_scripts, device);
1431 } else if (!strcmp(name, "RAW")) {
1432 res = run_raw_mbr(offer_to_hack_scripts, device);
1433 }
1434#ifdef __FreeBSD__
1435 else if (!strcmp(name, "BOOT0")) {
1436 asprintf(&tmp, "boot0cfg -B %s", device);
1437 res = run_program_and_log_output(tmp, FALSE);
1438 paranoid_free(tmp);
1439 } else {
1440 asprintf(&tmp, "ls /dev | grep -Eq '^%ss[1-4].*'", device);
1441 if (!system(tmp)) {
1442 paranoid_free(tmp);
1443 asprintf(&tmp, MNT_RESTORING "/sbin/fdisk -B %s", device);
1444 res = run_program_and_log_output(tmp, 3);
1445 } else {
1446 log_msg(1,
1447 "I'm not running any boot loader. You have a DD boot drive. It's already loaded up.");
1448 }
1449 paranoid_free(tmp);
1450 }
1451#else
1452 else {
1453 log_to_screen
1454 ("Unable to determine type of boot loader. Defaulting to LILO.");
1455 res = run_lilo(offer_to_hack_scripts);
1456 }
1457#endif
1458 retval += res;
1459 if (res) {
1460 log_to_screen("Your boot loader returned an error");
1461 } else {
1462 log_to_screen("Your boot loader ran OK");
1463 }
1464 paranoid_free(device);
1465 paranoid_free(name);
1466 return (retval);
1467}
1468
1469/**************************************************************************
1470 *END_ RUN_BOOT_LOADER *
1471 **************************************************************************/
1472
1473
1474
1475/**
1476 * Attempt to find the user's editor.
1477 * @return The editor found ("vi" if none could be found).
1478 * @note The returned string points to static storage that will be overwritten with each call.
1479 */
1480char *find_my_editor(void)
1481{
1482 static char output[MAX_STR_LEN];
1483 if (find_home_of_exe("pico")) {
1484 strcpy(output, "pico");
1485 } else if (find_home_of_exe("nano")) {
1486 strcpy(output, "nano");
1487 } else if (find_home_of_exe("e3em")) {
1488 strcpy(output, "e3em");
1489 } else if (find_home_of_exe("e3vi")) {
1490 strcpy(output, "e3vi");
1491 } else {
1492 strcpy(output, "vi");
1493 }
1494 if (!find_home_of_exe(output)) {
1495 log_msg(2, " (find_my_editor) --- warning - %s not found", output);
1496 }
1497 return (output);
1498}
1499
1500
1501/**
1502 * Install GRUB on @p bd.
1503 * @param offer_to_run_stabgrub If TRUE, then offer to hack the user's fstab for them.
1504 * @param bd The boot device where GRUB is installed.
1505 * @return 0 for success, nonzero for failure.
1506 */
1507int run_grub(bool offer_to_run_stabgrub, char *bd)
1508{
1509 /** malloc **/
1510 char *command;
1511 char *boot_device;
1512 char *rootdev;
1513 char *rootdrive;
1514 char *conffile;
1515 char *tmp;
1516 char *editor;
1517
1518 int res;
1519 int done;
1520
1521 malloc_string(command);
1522 malloc_string(boot_device);
1523 malloc_string(tmp);
1524 malloc_string(editor);
1525 malloc_string(rootdev);
1526 malloc_string(rootdrive);
1527 malloc_string(conffile);
1528 assert_string_is_neither_NULL_nor_zerolength(bd);
1529 strcpy(editor, find_my_editor());
1530 strcpy(boot_device, bd);
1531
1532 if (!run_program_and_log_output("which grub-MR", FALSE)) {
1533 log_msg(1, "Yay! grub-MR found...");
1534 sprintf(command, "grub-MR %s /tmp/mountlist.txt", boot_device);
1535 log_msg(1, "command = %s", command);
1536 } else {
1537 sprintf(command, "chroot " MNT_RESTORING " grub-install %s",
1538 boot_device);
1539 log_msg(1, "WARNING - grub-MR not found; using grub-install");
1540 }
1541 if (offer_to_run_stabgrub
1542 && ask_me_yes_or_no("Did you change the mountlist or cloned the system ?"))
1543 /* interactive mode */
1544 {
1545 mvaddstr_and_log_it(g_currentY,
1546 0,
1547 "Modifying fstab, mtab, device.map and menu.lst, and running GRUB... ");
1548 for (done = FALSE; !done;) {
1549 popup_and_get_string("Boot device",
1550 "Please confirm/enter the boot device. If in doubt, try /dev/hda",
1551 boot_device, MAX_STR_LEN / 4);
1552 sprintf(command, "stabgrub-me %s", boot_device);
1553 res = run_program_and_log_output(command, 1);
1554 if (res) {
1555 popup_and_OK
1556 ("GRUB installation failed. Please install manually using 'grub-install' or similar command. You are now chroot()'ed to your restored system. Please type 'exit' when you are done.");
1557 newtSuspend();
1558 system("chroot " MNT_RESTORING);
1559 newtResume();
1560 popup_and_OK("Thank you.");
1561 } else {
1562 done = TRUE;
1563 }
1564 popup_and_OK("You will now edit fstab, mtab, device.map and menu.lst");
1565 if (!g_text_mode) {
1566 newtSuspend();
1567 }
1568 sprintf(tmp, "chroot %s %s /etc/fstab", MNT_RESTORING, editor);
1569 paranoid_system(tmp);
1570 sprintf(tmp, "chroot %s %s /etc/mtab", MNT_RESTORING, editor);
1571 paranoid_system(tmp);
1572 sprintf(tmp, "chroot %s %s /boot/grub/menu.lst", MNT_RESTORING, editor);
1573 paranoid_system(tmp);
1574 sprintf(tmp, "chroot %s %s /boot/grub/device.map", MNT_RESTORING, editor);
1575 paranoid_system(tmp);
1576 if (!g_text_mode) {
1577 newtResume();
1578 }
1579 }
1580 } else
1581 /* nuke mode */
1582 {
1583 mvaddstr_and_log_it(g_currentY,
1584 0,
1585 "Running GRUB... ");
1586 iamhere(command);
1587 res = run_program_and_log_output(command, 1);
1588 if (res) {
1589 popup_and_OK
1590 ("Because of bugs in GRUB's own installer, GRUB was not installed properly. Please install the boot loader manually now, using this chroot()'ed shell prompt. Type 'exit' when you have finished.");
1591 newtSuspend();
1592 system("chroot " MNT_RESTORING);
1593 newtResume();
1594 popup_and_OK("Thank you.");
1595 }
1596 }
1597 if (res) {
1598 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
1599 log_to_screen
1600 ("GRUB ran w/error(s). See %s for more info.", MONDO_LOGFILE);
1601 log_msg(1, "Type:-");
1602 log_msg(1, " mount-me");
1603 log_msg(1, " chroot " MNT_RESTORING);
1604 log_msg(1, " mount /boot");
1605 log_msg(1, " grub-install '(hd0)'");
1606 log_msg(1, " exit");
1607 log_msg(1, " unmount-me");
1608 log_msg(1,
1609 "If you're really stuck, please e-mail the mailing list.");
1610 } else {
1611 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1612 }
1613 paranoid_free(rootdev);
1614 paranoid_free(rootdrive);
1615 paranoid_free(conffile);
1616 paranoid_free(command);
1617 paranoid_free(boot_device);
1618 paranoid_free(tmp);
1619 paranoid_free(editor);
1620
1621 return (res);
1622}
1623
1624/**************************************************************************
1625 *END_RUN_GRUB *
1626 **************************************************************************/
1627
1628
1629/**
1630 * Install ELILO on the user's boot drive (determined by elilo.conf).
1631 * @param offer_to_run_stabelilo If TRUE, then offer to hack the user's fstab for them.
1632 * @return 0 for success, nonzero for failure.
1633 */
1634int run_elilo(bool offer_to_run_stabelilo)
1635{
1636 /** malloc **/
1637 char *command;
1638 char *tmp;
1639 char *editor;
1640
1641 int res;
1642 int done;
1643
1644 malloc_string(command);
1645 malloc_string(tmp);
1646 malloc_string(editor);
1647 strcpy(editor, find_my_editor());
1648 if (offer_to_run_stabelilo
1649 && ask_me_yes_or_no("Did you change the mountlist or cloned the system ?"))
1650
1651 /* interactive mode */
1652 {
1653 mvaddstr_and_log_it(g_currentY,
1654 0,
1655 "Modifying fstab and elilo.conf... ");
1656 sprintf(command, "stabelilo-me");
1657 res = run_program_and_log_output(command, 3);
1658 if (res) {
1659 popup_and_OK
1660 ("You will now edit fstab and elilo.conf, to make sure they match your new mountlist.");
1661 for (done = FALSE; !done;) {
1662 if (!g_text_mode) {
1663 newtSuspend();
1664 }
1665 sprintf(tmp, "chroot %s %s /etc/fstab", MNT_RESTORING, editor);
1666 paranoid_system(tmp);
1667 sprintf(tmp, "chroot %s %s /etc/elilo.conf", MNT_RESTORING, editor);
1668 paranoid_system(tmp);
1669 if (!g_text_mode) {
1670 newtResume();
1671 }
1672// newtCls();
1673 if (ask_me_yes_or_no("Edit them again?")) {
1674 continue;
1675 }
1676 done = TRUE;
1677 }
1678 } else {
1679 log_to_screen("elilo.conf and fstab were modified OK");
1680 }
1681 } else
1682 /* nuke mode */
1683 {
1684 res = TRUE;
1685 }
1686 paranoid_free(command);
1687 paranoid_free(tmp);
1688 paranoid_free(editor);
1689 return (res);
1690}
1691
1692/**************************************************************************
1693 *END_RUN_ELILO *
1694 **************************************************************************/
1695
1696
1697/**
1698 * Install LILO on the user's boot drive (determined by /etc/lilo.conf).
1699 * @param offer_to_run_stablilo If TRUE, then offer to hack the user's fstab for them.
1700 * @return 0 for success, nonzero for failure.
1701 */
1702int run_lilo(bool offer_to_run_stablilo)
1703{
1704 /** malloc **/
1705 char *command;
1706 char *tmp;
1707 char *editor;
1708
1709 int res;
1710 int done;
1711 bool run_lilo_M = FALSE;
1712 malloc_string(command);
1713 malloc_string(tmp);
1714 malloc_string(editor);
1715
1716 if (!run_program_and_log_output
1717 ("grep \"boot.*=.*/dev/md\" " MNT_RESTORING "/etc/lilo.conf", 1)) {
1718 run_lilo_M = TRUE;
1719 }
1720
1721 strcpy(editor, find_my_editor());
1722 if (offer_to_run_stablilo
1723 && ask_me_yes_or_no("Did you change the mountlist or cloned the system ?"))
1724
1725 /* interactive mode */
1726 {
1727 mvaddstr_and_log_it(g_currentY,
1728 0,
1729 "Modifying fstab and lilo.conf, and running LILO... ");
1730 sprintf(command, "stablilo-me");
1731 res = run_program_and_log_output(command, 3);
1732 if (res) {
1733 popup_and_OK
1734 ("You will now edit fstab and lilo.conf, to make sure they match your new mountlist.");
1735 for (done = FALSE; !done;) {
1736 if (!g_text_mode) {
1737 newtSuspend();
1738 }
1739 sprintf(tmp, "%s " MNT_RESTORING "/etc/fstab", editor);
1740 paranoid_system(tmp);
1741 sprintf(tmp, "%s " MNT_RESTORING "/etc/lilo.conf", editor);
1742 paranoid_system(tmp);
1743 if (!g_text_mode) {
1744 newtResume();
1745 }
1746// newtCls();
1747 if (ask_me_yes_or_no("Edit them again?")) {
1748 continue;
1749 }
1750 res =
1751 run_program_and_log_output("chroot " MNT_RESTORING
1752 " lilo -L", 3);
1753 if (res) {
1754 res =
1755 run_program_and_log_output("chroot " MNT_RESTORING
1756 " lilo", 3);
1757 }
1758 if (res) {
1759 done =
1760 ask_me_yes_or_no
1761 ("LILO failed. Re-edit system files?");
1762 } else {
1763 done = TRUE;
1764 }
1765 }
1766 } else {
1767 log_to_screen("lilo.conf and fstab were modified OK");
1768 }
1769 } else
1770 /* nuke mode */
1771 {
1772 mvaddstr_and_log_it(g_currentY,
1773 0,
1774 "Running LILO... ");
1775 res =
1776 run_program_and_log_output("chroot " MNT_RESTORING " lilo -L",
1777 3);
1778 if (res) {
1779 res =
1780 run_program_and_log_output("chroot " MNT_RESTORING " lilo",
1781 3);
1782 }
1783 if (res) {
1784 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
1785 log_to_screen
1786 ("Failed to re-jig fstab and/or lilo. Edit/run manually, please.");
1787 } else {
1788 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1789 }
1790 }
1791 if (run_lilo_M) {
1792 run_program_and_log_output("chroot " MNT_RESTORING
1793 " lilo -M /dev/hda", 3);
1794 run_program_and_log_output("chroot " MNT_RESTORING
1795 " lilo -M /dev/sda", 3);
1796 }
1797 paranoid_free(command);
1798 paranoid_free(tmp);
1799 paranoid_free(editor);
1800 return (res);
1801}
1802
1803/**************************************************************************
1804 *END_RUN_LILO *
1805 **************************************************************************/
1806
1807
1808/**
1809 * Install a raw MBR onto @p bd.
1810 * @param offer_to_hack_scripts If TRUE, then offer to hack the user's fstab for them.
1811 * @param bd The device to copy the stored MBR to.
1812 * @return 0 for success, nonzero for failure.
1813 */
1814int run_raw_mbr(bool offer_to_hack_scripts, char *bd)
1815{
1816 /** malloc **/
1817 char *command;
1818 char *boot_device;
1819 char *tmp;
1820 char *editor;
1821 int res;
1822 int done;
1823
1824 malloc_string(command);
1825 malloc_string(boot_device);
1826 malloc_string(tmp);
1827 malloc_string(editor);
1828 assert_string_is_neither_NULL_nor_zerolength(bd);
1829
1830 strcpy(editor, find_my_editor());
1831 strcpy(boot_device, bd);
1832 sprintf(command, "raw-MR %s /tmp/mountlist.txt", boot_device);
1833 log_msg(2, "run_raw_mbr() --- command='%s'", command);
1834
1835 if (offer_to_hack_scripts
1836 && ask_me_yes_or_no("Did you change the mountlist or cloned the system ?"))
1837 /* interactive mode */
1838 {
1839 mvaddstr_and_log_it(g_currentY, 0,
1840 "Modifying fstab and restoring MBR... ");
1841 for (done = FALSE; !done;) {
1842 if (!run_program_and_log_output("which vi", FALSE)) {
1843 popup_and_OK("You will now edit fstab");
1844 if (!g_text_mode) {
1845 newtSuspend();
1846 }
1847 sprintf(tmp, "%s " MNT_RESTORING "/etc/fstab", editor);
1848 paranoid_system(tmp);
1849 if (!g_text_mode) {
1850 newtResume();
1851 }
1852// newtCls();
1853 }
1854 popup_and_get_string("Boot device",
1855 "Please confirm/enter the boot device. If in doubt, try /dev/hda",
1856 boot_device, MAX_STR_LEN / 4);
1857 sprintf(command, "stabraw-me %s", boot_device);
1858 res = run_program_and_log_output(command, 3);
1859 if (res) {
1860 done = ask_me_yes_or_no("Modifications failed. Re-try?");
1861 } else {
1862 done = TRUE;
1863 }
1864 }
1865 } else
1866 /* nuke mode */
1867 {
1868 mvaddstr_and_log_it(g_currentY, 0,
1869 "Restoring MBR... ");
1870 res = run_program_and_log_output(command, 3);
1871 }
1872 if (res) {
1873 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
1874 log_to_screen
1875 ("MBR+fstab processed w/error(s). See %s for more info.", MONDO_LOGFILE);
1876 } else {
1877 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1878 }
1879 paranoid_free(command);
1880 paranoid_free(boot_device);
1881 paranoid_free(tmp);
1882 paranoid_free(editor);
1883 return (res);
1884}
1885
1886/**************************************************************************
1887 *END_RUN_RAW_MBR *
1888 **************************************************************************/
1889
1890
1891
1892/**
1893 * malloc() and set sensible defaults for the mondorestore filename variables.
1894 * @param bkpinfo The backup information structure. Fields used:
1895 * - @c bkpinfo->tmpdir
1896 * - @c bkpinfo->disaster_recovery
1897 */
1898void setup_MR_global_filenames()
1899{
1900 char *temppath;
1901
1902 assert(bkpinfo != NULL);
1903
1904 malloc_string(g_biggielist_txt);
1905 malloc_string(g_filelist_full);
1906 malloc_string(g_filelist_imagedevs);
1907 malloc_string(g_imagedevs_restthese);
1908 malloc_string(g_mondo_cfg_file);
1909 malloc_string(g_mountlist_fname);
1910 malloc_string(g_mondo_home);
1911 /*
1912 malloc_string(g_tmpfs_mountpt);
1913 */
1914 malloc_string(g_isodir_device);
1915 malloc_string(g_isodir_format);
1916
1917 temppath = bkpinfo->tmpdir;
1918
1919 sprintf(g_biggielist_txt, "%s/%s", temppath, BIGGIELIST_TXT_STUB);
1920 sprintf(g_filelist_full, "%s/%s", temppath, FILELIST_FULL_STUB);
1921 sprintf(g_filelist_imagedevs, "%s/tmp/filelist.imagedevs", temppath);
1922// sprintf(g_imagedevs_pot, "%s/tmp/imagedevs.pot", temppath);
1923 sprintf(g_imagedevs_restthese, "%s/tmp/imagedevs.restore-these",
1924 temppath);
1925 if (bkpinfo->disaster_recovery) {
1926 sprintf(g_mondo_cfg_file, "/%s", MONDO_CFG_FILE_STUB);
1927 sprintf(g_mountlist_fname, "/%s", MOUNTLIST_FNAME_STUB);
1928 } else {
1929 sprintf(g_mondo_cfg_file, "%s/%s", temppath, MONDO_CFG_FILE_STUB);
1930 sprintf(g_mountlist_fname, "%s/%s", temppath,
1931 MOUNTLIST_FNAME_STUB);
1932 }
1933}
1934
1935/**************************************************************************
1936 *END_SET_GLOBAL_FILENAME *
1937 **************************************************************************/
1938
1939
1940/**
1941 * Copy @p input_file (containing the result of a compare) to @p output_file,
1942 * deleting spurious "changes" along the way.
1943 * @param output_file The output file to write with spurious changes removed.
1944 * @param input_file The input file, a list of changed files created by a compare.
1945 */
1946void streamline_changes_file(char *output_file, char *input_file)
1947{
1948 FILE *fin;
1949 FILE *fout;
1950 /** malloc **/
1951 char *incoming;
1952
1953 assert_string_is_neither_NULL_nor_zerolength(output_file);
1954 assert_string_is_neither_NULL_nor_zerolength(input_file);
1955 malloc_string(incoming);
1956
1957 if (!(fin = fopen(input_file, "r"))) {
1958 log_OS_error(input_file);
1959 return;
1960 }
1961 if (!(fout = fopen(output_file, "w"))) {
1962 fatal_error("cannot open output_file");
1963 }
1964 for (fgets(incoming, MAX_STR_LEN - 1, fin); !feof(fin);
1965 fgets(incoming, MAX_STR_LEN - 1, fin)) {
1966 if (strncmp(incoming, "etc/adjtime", 11)
1967 && strncmp(incoming, "etc/mtab", 8)
1968 && strncmp(incoming, "tmp/", 4)
1969 && strncmp(incoming, "boot/map", 8)
1970 && !strstr(incoming, "incheckentry")
1971 && strncmp(incoming, "etc/mail/statistics", 19)
1972 && strncmp(incoming, "var/", 4))
1973 fprintf(fout, "%s", incoming); /* don't need \n here, for some reason.. */
1974 }
1975 paranoid_fclose(fout);
1976 paranoid_fclose(fin);
1977 paranoid_free(incoming);
1978}
1979
1980/**************************************************************************
1981 *END_STREAMLINE_CHANGES_FILE *
1982 **************************************************************************/
1983
1984
1985/**
1986 * Give the user twenty seconds to press Ctrl-Alt-Del before we nuke their drives.
1987 */
1988void twenty_seconds_til_yikes()
1989{
1990 int i;
1991 /* MALLOC * */
1992 char *tmp;
1993
1994 malloc_string(tmp);
1995 if (does_file_exist("/tmp/NOPAUSE")) {
1996 return;
1997 }
1998 open_progress_form("CAUTION",
1999 "Be advised: I am about to ERASE your hard disk(s)!",
2000 "You may press Ctrl+Alt+Del to abort safely.",
2001 "", 20);
2002 for (i = 0; i < 20; i++) {
2003 g_current_progress = i;
2004 sprintf(tmp, "You have %d seconds left to abort.", 20 - i);
2005 update_progress_form(tmp);
2006 sleep(1);
2007 }
2008 close_progress_form();
2009 paranoid_free(tmp);
2010}
2011
2012/**************************************************************************
2013 *END_TWENTY_SECONDS_TIL_YIKES *
2014 **************************************************************************/
2015
2016
2017/**
2018 * Unmount all devices in @p p_external_copy_of_mountlist.
2019 * @param p_external_copy_of_mountlist The mountlist to guide the devices to unmount.
2020 * @return 0 for success, nonzero for failure.
2021 */
2022int unmount_all_devices(struct mountlist_itself
2023 *p_external_copy_of_mountlist)
2024{
2025 struct mountlist_itself *mountlist;
2026 int retval = 0, lino, res = 0, i;
2027 char *command;
2028 char *tmp;
2029
2030 malloc_string(command);
2031 malloc_string(tmp);
2032 assert(p_external_copy_of_mountlist != NULL);
2033
2034 mountlist = malloc(sizeof(struct mountlist_itself));
2035 memcpy((void *) mountlist, (void *) p_external_copy_of_mountlist,
2036 sizeof(struct mountlist_itself));
2037 sort_mountlist_by_mountpoint(mountlist, 0);
2038
2039 run_program_and_log_output("df -m", 3);
2040 mvaddstr_and_log_it(g_currentY, 0, "Unmounting devices ");
2041 open_progress_form("Unmounting devices",
2042 "Unmounting all devices that were mounted,",
2043 "in preparation for the post-restoration reboot.",
2044 "", mountlist->entries);
2045 chdir("/");
2046 for (i = 0;
2047 i < 10
2048 &&
2049 run_program_and_log_output
2050 ("ps | grep buffer | grep -v \"grep buffer\"", TRUE) == 0;
2051 i++) {
2052 sleep(1);
2053 log_msg(2, "Waiting for buffer() to finish");
2054 }
2055
2056 paranoid_system("sync");
2057
2058 sprintf(tmp, "cp -f %s " MNT_RESTORING "/var/log", MONDO_LOGFILE);
2059 if (run_program_and_log_output(tmp, FALSE)) {
2060 log_msg(1,
2061 "Error. Failed to copy log to PC's /var/log dir. (Mounted read-only?)");
2062 }
2063 if (does_file_exist("/tmp/DUMBASS-GENTOO")) {
2064 run_program_and_log_output("mkdir -p " MNT_RESTORING
2065 "/mnt/.boot.d", 5);
2066 }
2067
2068 /* Unmounting the local /proc and /sys first */
2069 run_program_and_log_output("umount " MNT_RESTORING "/proc",3);
2070 run_program_and_log_output("umount " MNT_RESTORING "/sys",3);
2071
2072 for (lino = mountlist->entries - 1; lino >= 0; lino--) {
2073 if (!strcmp(mountlist->el[lino].mountpoint, "lvm")) {
2074 continue;
2075 }
2076 sprintf(tmp, "Unmounting device %s ", mountlist->el[lino].device);
2077
2078 update_progress_form(tmp);
2079 if (is_this_device_mounted(mountlist->el[lino].device)) {
2080 if (!strcmp(mountlist->el[lino].mountpoint, "swap")) {
2081 sprintf(command, "swapoff %s", mountlist->el[lino].device);
2082 } else {
2083 if (!strcmp(mountlist->el[lino].mountpoint, "/1")) {
2084 sprintf(command, "umount %s/", MNT_RESTORING);
2085 log_msg(3,
2086 "Well, I know a certain kitty-kitty who'll be sleeping with Mommy tonight...");
2087 } else {
2088 sprintf(command, "umount " MNT_RESTORING "%s",
2089 mountlist->el[lino].mountpoint);
2090 }
2091 }
2092 log_msg(10, "The 'umount' command is '%s'", command);
2093 res = run_program_and_log_output(command, 3);
2094 } else {
2095 strcat(tmp, "...not mounted anyway :-) OK");
2096 res = 0;
2097 }
2098 g_current_progress++;
2099 if (res) {
2100 strcat(tmp, "...Failed");
2101 retval++;
2102 log_to_screen(tmp);
2103 } else {
2104 log_msg(2, tmp);
2105 }
2106 }
2107 close_progress_form();
2108 if (retval) {
2109 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
2110 } else {
2111 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
2112 }
2113 if (retval) {
2114 log_to_screen("Unable to unmount some of your partitions.");
2115 } else {
2116 log_to_screen("All partitions were unmounted OK.");
2117 }
2118 free(mountlist);
2119 paranoid_free(command);
2120 paranoid_free(tmp);
2121 return (retval);
2122}
2123
2124/**************************************************************************
2125 *END_UNMOUNT_ALL_DEVICES *
2126 **************************************************************************/
2127
2128
2129
2130/**
2131 * Extract mondo-restore.cfg and the mountlist from the tape inserted
2132 * to the ./tmp/ directory.
2133 * @param dev The tape device to read from.
2134 * @return 0 for success, nonzero for failure.
2135 */
2136int extract_cfg_file_and_mountlist_from_tape_dev(char *dev)
2137{
2138 char *command;
2139 int res = 0;
2140
2141 malloc_string(command);
2142
2143 if (bkpinfo->use_obdr) {
2144 skip_obdr();
2145 } else {
2146 // BCO: below 32KB seems to block at least on RHAS 2.1 and MDK 10.0
2147 set_tape_block_size_with_mt(bkpinfo->internal_tape_block_size);
2148 }
2149
2150 sprintf(command,
2151 "dd if=%s bs=%ld count=%ld 2> /dev/null | tar -zx ./%s ./%s ./%s ./%s ./%s",
2152 dev,
2153 bkpinfo->internal_tape_block_size,
2154 1024L * 1024 * 32 / bkpinfo->internal_tape_block_size,
2155 MOUNTLIST_FNAME_STUB, MONDO_CFG_FILE_STUB,
2156 BIGGIELIST_TXT_STUB, FILELIST_FULL_STUB, IWANTMYLVM_STUB);
2157 log_msg(2, "command = '%s'", command);
2158 res = run_program_and_log_output(command, -1);
2159 if (res != 0) {
2160 if (does_file_exist(MONDO_CFG_FILE_STUB)) {
2161 res = 0;
2162 } else {
2163 /* Doing that allow us to remain compatible with pre-2.2.5 versions */
2164 log_msg(2, "pre-2.2.4 compatible mode on");
2165 sprintf(command,
2166 "dd if=%s bs=%ld count=%ld 2> /dev/null | tar -zx %s %s %s %s %s",
2167 dev,
2168 bkpinfo->internal_tape_block_size,
2169 1024L * 1024 * 32 / bkpinfo->internal_tape_block_size,
2170 MOUNTLIST_FNAME_STUB, MONDO_CFG_FILE_STUB,
2171 BIGGIELIST_TXT_STUB, FILELIST_FULL_STUB, IWANTMYLVM_STUB);
2172 log_msg(2, "command = '%s'", command);
2173 res = run_program_and_log_output(command, -1);
2174 if ((res != 0) && (does_file_exist(MONDO_CFG_FILE_STUB))) {
2175 res = 0;
2176 }
2177 }
2178 }
2179 paranoid_free(command);
2180 return (res);
2181}
2182
2183
2184
2185/**
2186 * Get the configuration file from the floppy, tape, or CD.
2187 * @param bkpinfo The backup information structure. Fields used:
2188 * - @c bkpinfo->backup_media_type
2189 * - @c bkpinfo->media_device
2190 * - @c bkpinfo->tmpdir
2191 * @return 0 for success, nonzero for failure.
2192 */
2193int get_cfg_file_from_archive()
2194{
2195 int retval = 0;
2196
2197 /** malloc *****/
2198 char *device;
2199 char *command;
2200 char *cfg_file;
2201 char *mounted_cfgf_path;
2202 char *tmp;
2203 char *mountpt;
2204 char *ramdisk_fname;
2205 char *mountlist_file;
2206 bool extract_mountlist_stub;
2207 bool extract_i_want_my_lvm;
2208
2209 bool try_plan_B;
2210
2211 assert(bkpinfo != NULL);
2212 malloc_string(cfg_file);
2213 malloc_string(mounted_cfgf_path);
2214 malloc_string(mountpt);
2215 malloc_string(ramdisk_fname);
2216 malloc_string(mountlist_file);
2217 malloc_string(device);
2218 malloc_string(command);
2219 malloc_string(tmp);
2220 log_msg(2, "gcffa --- starting");
2221 log_to_screen("I'm thinking...");
2222 sprintf(mountpt, "%s/mount.bootdisk", bkpinfo->tmpdir);
2223 device[0] = '\0';
2224 chdir(bkpinfo->tmpdir);
2225 strcpy(cfg_file, MONDO_CFG_FILE_STUB);
2226 unlink(cfg_file); // cfg_file[] is missing the '/' at the start, FYI, by intent
2227 unlink(FILELIST_FULL_STUB);
2228 unlink(BIGGIELIST_TXT_STUB);
2229 sprintf(command, "mkdir -p %s", mountpt);
2230 run_program_and_log_output(command, FALSE);
2231
2232 sprintf(cfg_file, "%s/%s", bkpinfo->tmpdir, MONDO_CFG_FILE_STUB);
2233 sprintf(mountlist_file, "%s/%s", bkpinfo->tmpdir, MOUNTLIST_FNAME_STUB);
2234 // make_hole_for_file( cfg_file );
2235 // make_hole_for_file( mountlist_file);
2236 log_msg(2, "mountpt = %s; cfg_file=%s", mountpt, cfg_file);
2237
2238 if (!does_file_exist(cfg_file)) {
2239 log_msg(2, "gcffa --- we don't have cfg file yet.");
2240 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2241 try_plan_B = TRUE;
2242 } else {
2243 log_msg(2, "gcffa --- calling mount_media now :)");
2244 if (!mount_media()) {
2245 log_msg(2,
2246 "gcffa --- managed to mount CD; so, no need for Plan B");
2247 try_plan_B = FALSE;
2248 } else {
2249 try_plan_B = TRUE;
2250 }
2251 if (what_number_cd_is_this() > 1) {
2252 insist_on_this_cd_number((g_current_media_number = 1));
2253 }
2254 }
2255 if (try_plan_B) {
2256 log_msg(2, "gcffa --- OK, switching to Plan B");
2257 chdir(bkpinfo->tmpdir);
2258 run_program_and_log_output("mkdir -p tmp", FALSE);
2259
2260 if (strlen(bkpinfo->media_device) == 0) {
2261 strcpy(bkpinfo->media_device, "/dev/st0");
2262 log_msg(2, "media_device is blank; assuming %s");
2263 }
2264 strcpy(tmp, bkpinfo->media_device);
2265 if (extract_cfg_file_and_mountlist_from_tape_dev
2266 (bkpinfo->media_device)) {
2267 strcpy(bkpinfo->media_device, "/dev/st0");
2268 if (extract_cfg_file_and_mountlist_from_tape_dev
2269 (bkpinfo->media_device)) {
2270 strcpy(bkpinfo->media_device, "/dev/osst0");
2271 if (extract_cfg_file_and_mountlist_from_tape_dev
2272 (bkpinfo->media_device)) {
2273 strcpy(bkpinfo->media_device, "/dev/ht0");
2274 if (extract_cfg_file_and_mountlist_from_tape_dev
2275 (bkpinfo->media_device)) {
2276 log_msg(3,
2277 "I tried lots of devices but none worked.");
2278 strcpy(bkpinfo->media_device, tmp);
2279 }
2280 }
2281 }
2282 }
2283
2284 if (!does_file_exist("tmp/mondo-restore.cfg")) {
2285 log_to_screen("Cannot find config info on media");
2286 return (1);
2287 }
2288 } else {
2289 if (does_file_exist("/"MOUNTLIST_FNAME_STUB)) {
2290 extract_mountlist_stub = FALSE;
2291 } else {
2292 extract_mountlist_stub = TRUE;
2293 }
2294 if (does_file_exist("/"IWANTMYLVM_STUB)) {
2295 extract_i_want_my_lvm = FALSE;
2296 } else {
2297 extract_i_want_my_lvm = TRUE;
2298 }
2299
2300 log_msg(2,
2301 "gcffa --- Plan B, a.k.a. untarring some file from all.tar.gz");
2302 sprintf(command, "tar -zxvf " MNT_CDROM "/images/all.tar.gz ./%s ./%s ./%s ./%s ./%s", MOUNTLIST_FNAME_STUB, MONDO_CFG_FILE_STUB, BIGGIELIST_TXT_STUB, FILELIST_FULL_STUB, IWANTMYLVM_STUB); // add -b TAPE_BLOCK_SIZE if you _really_ think it's necessary
2303 run_program_and_log_output(command, TRUE);
2304 if (!does_file_exist(MONDO_CFG_FILE_STUB)) {
2305 /* Doing that allow us to remain compatible with pre-2.2.5 versions */
2306 log_msg(2, "pre-2.2.4 compatible mode on");
2307 sprintf(command, "tar -zxvf " MNT_CDROM "/images/all.tar.gz %s %s %s %s %s", MOUNTLIST_FNAME_STUB, MONDO_CFG_FILE_STUB, BIGGIELIST_TXT_STUB, FILELIST_FULL_STUB, IWANTMYLVM_STUB); // add -b TAPE_BLOCK_SIZE if you _really_ think it's necessary
2308 run_program_and_log_output(command, TRUE);
2309 if (!does_file_exist(MONDO_CFG_FILE_STUB)) {
2310 fatal_error
2311 ("Please reinsert the disk/CD and try again.");
2312 }
2313 }
2314 }
2315 }
2316 if (does_file_exist(MONDO_CFG_FILE_STUB)) {
2317 log_msg(1, "gcffa --- great! We've got the config file");
2318 sprintf(tmp, "%s/%s",
2319 call_program_and_get_last_line_of_output("pwd"),
2320 MONDO_CFG_FILE_STUB);
2321 sprintf(command, "cp -f %s %s", tmp, cfg_file);
2322 iamhere(command);
2323 if (strcmp(tmp, cfg_file)
2324 && run_program_and_log_output(command, 1)) {
2325 log_msg(1,
2326 "... but an error occurred when I tried to move it to %s",
2327 cfg_file);
2328 } else {
2329 log_msg(1, "... and I moved it successfully to %s", cfg_file);
2330 }
2331 sprintf(command, "cp -f %s/%s %s",
2332 call_program_and_get_last_line_of_output("pwd"),
2333 MOUNTLIST_FNAME_STUB, mountlist_file);
2334 iamhere(command);
2335 if (extract_mountlist_stub) {
2336 if (strcmp(tmp, cfg_file)
2337 && run_program_and_log_output(command, 1)) {
2338 log_msg(1, "Failed to get mountlist");
2339 } else {
2340 log_msg(1, "Got mountlist too");
2341 sprintf(command, "cp -f %s %s", mountlist_file,
2342 g_mountlist_fname);
2343 if (run_program_and_log_output(command, 1)) {
2344 log_msg(1, "Failed to copy mountlist to /tmp");
2345 } else {
2346 log_msg(1, "Copied mountlist to /tmp as well OK");
2347 sprintf(command, "cp -f %s /tmp/",IWANTMYLVM_STUB);
2348 run_program_and_log_output(command, 1);
2349 }
2350 }
2351 }
2352 }
2353 run_program_and_log_output("umount " MNT_CDROM, FALSE);
2354 if (!does_file_exist(cfg_file)) {
2355 iamhere(cfg_file);
2356 log_msg(1, "%s not found", cfg_file);
2357 log_to_screen
2358 ("Oh dear. Unable to recover configuration file from boot disk");
2359 return (1);
2360 }
2361
2362 log_to_screen("Recovered mondo-restore.cfg");
2363 if (!does_file_exist(MOUNTLIST_FNAME_STUB)) {
2364 log_to_screen("...but not mountlist.txt - a pity, really...");
2365 }
2366 else {
2367 /* Is this code really useful ??? */
2368 if (extract_mountlist_stub) {
2369 sprintf(command, "cp -f %s %s/%s", MOUNTLIST_FNAME_STUB,
2370 bkpinfo->tmpdir, MOUNTLIST_FNAME_STUB);
2371 run_program_and_log_output(command, FALSE);
2372 }
2373 }
2374
2375 sprintf(command, "cp -f %s /%s", cfg_file, MONDO_CFG_FILE_STUB);
2376 run_program_and_log_output(command, FALSE);
2377 if (extract_mountlist_stub) {
2378 sprintf(command, "cp -f %s /%s", mountlist_file, MOUNTLIST_FNAME_STUB);
2379 run_program_and_log_output(command, FALSE);
2380 }
2381 sprintf(command, "cp -f etc/raidtab /etc/");
2382 run_program_and_log_output(command, FALSE);
2383 if (extract_i_want_my_lvm) {
2384 sprintf(command, "cp -f %s /tmp/",IWANTMYLVM_STUB);
2385 run_program_and_log_output(command, FALSE);
2386 }
2387 g_backup_media_type = bkpinfo->backup_media_type;
2388 paranoid_free(device);
2389 paranoid_free(command);
2390 paranoid_free(tmp);
2391 paranoid_free(cfg_file);
2392 paranoid_free(mounted_cfgf_path);
2393 paranoid_free(mountpt);
2394 paranoid_free(ramdisk_fname);
2395 paranoid_free(mountlist_file);
2396 return (retval);
2397}
2398
2399/**************************************************************************
2400 *END_GET_CFG_FILE_FROM_ARCHIVE *
2401 **************************************************************************/
2402
2403/* @} - end restoreUtilityGroup */
2404
2405
2406/***************************************************************************
2407 * F@ *
2408 * () -- Hugo Rabson *
2409 * *
2410 * Purpose: *
2411 * *
2412 * Called by: *
2413 * Params: - - *
2414 * Returns: 0=success; nonzero=failure *
2415 ***************************************************************************/
2416
2417
2418
2419void wait_until_software_raids_are_prepped(char *mdstat_file,
2420 int wait_for_percentage)
2421{
2422 struct raidlist_itself *raidlist;
2423 int unfinished_mdstat_devices = 9999, i;
2424 char *screen_message;
2425
2426 malloc_string(screen_message);
2427 raidlist = malloc(sizeof(struct raidlist_itself));
2428
2429 assert(wait_for_percentage <= 100);
2430 iamhere("wait_until_software_raids_are_prepped");
2431 while (unfinished_mdstat_devices > 0) {
2432 // FIXME: Prefix '/dev/' should really be dynamic!
2433 if (parse_mdstat(raidlist, "/dev/")) {
2434 log_to_screen("Sorry, cannot read %s", MDSTAT_FILE);
2435 log_msg(1,"Sorry, cannot read %s", MDSTAT_FILE);
2436 return;
2437 }
2438 for (unfinished_mdstat_devices = i = 0; i <= raidlist->entries; i++) {
2439 if (raidlist->el[i].progress < wait_for_percentage) {
2440 unfinished_mdstat_devices++;
2441 if (raidlist->el[i].progress == -1) // delayed while another partition inits
2442 {
2443 continue;
2444 }
2445 log_msg(1,"Sync'ing %s (i=%d)", raidlist->el[i].raid_device, i);
2446 sprintf(screen_message, "Sync'ing %s",
2447 raidlist->el[i].raid_device);
2448 open_evalcall_form(screen_message);
2449 while (raidlist->el[i].progress < wait_for_percentage) {
2450 log_msg(1,"Percentage sync'ed: %d", raidlist->el[i].progress);
2451 update_evalcall_form(raidlist->el[i].progress);
2452 sleep(2);
2453 // FIXME: Prefix '/dev/' should really be dynamic!
2454 if (parse_mdstat(raidlist, "/dev/")) {
2455 break;
2456 }
2457 }
2458 close_evalcall_form();
2459 }
2460 }
2461 }
2462 paranoid_free(screen_message);
2463 paranoid_free(raidlist);
2464}
2465
2466
Note: See TracBrowser for help on using the repository browser.