source: MondoRescue/branches/stable/mondo/src/common/libmondo-tools.c@ 998

Last change on this file since 998 was 998, checked in by Bruno Cornec, 17 years ago

Attempt to solve #113

  • Property svn:keywords set to Id
File size: 45.0 KB
Line 
1/* libmondo-tools.c misc tools
2 $Id: libmondo-tools.c 998 2006-12-07 01:01:34Z bruno $
3.
4
5
606/28
7- abort if RAID partitions found but /etc/raidtab not found
8
906/25
10- don't insist on ms-sys; recommend it
11- don't fatal_error if can't open log file
12
1306/14
14- call mindi -V before calling mindi --makemountlist
15
1604/09
17- lots of malloc'd char*'s instead of char[]'s in post_param_config'n
18
1904/02
20- better sanity-checking, re: /etc/modules.conf
21
2202/15
23- abort if Windows dir but no ms-sys or parted
24
2502/08
26- missing ramdisk/initrd support is nonfatal now (but stupid)
27
2801/16
29- added g_kernel_version and get_kernel_version()
30
3101/08/2004
32- fixed /boot mounter thingy
33
3411/14/2003
35- if <50MB free in /root, softlink /root/images/mindi to
36 /home/root/images/mindi as a workaround
37
3810/23
39- streaming backups now generate 4MB sets; CDs, 8MB sets
40
4110/21
42- better at finding your /boot in order to mount it, if nec.
43- link /etc/modules.conf to /etc/conf.modules if former
44 is missing but latter is not
45- changed "/mnt/cdrom" to MNT_CDROM
46- changed "/mnt/floppy" to MNT_FLOPPY
47
4810/13
49- added stop_magicdev_if_necessary()
50- added restart_magicdev_if_necessary()
51
5210/02
53- don't eject if bkpinfo->please_dont_eject is TRUE
54
5509/28
56- fixed segfault in mount_..._necessary
57
5809/26
59- ask for cmp (or create workaround if possible)
60
6109/25
62- add DVD support
63
6409/24
65- don't overwrite existing media-dev value in bkpinfo IF it's
66 a tape device AND it's already populated by /dev/{something}
67 ...This helps w/ weird tape drives
68
6909/23
70- malloc/free global strings in new subroutines - malloc_libmondo_global_strings()
71 and free_libmondo_global_strings() - which are in libmondo-tools.c
72
7309/18
74- added stop_autofs_if_necessary() and restart_autofs_if_necessary()
75
7609/13
77- added log_debug_msg()
78- turned log_it() into a macro
79
8009/10
81- reduced PPCFG_RAMDISK to 150m (was 200m)
82- max set size is now 8MB (was 6)
83- added 'buffer' to requisite tools
84
8508/29
86- typical set size is now 5MB
87
8807/22
89- increased PPCFG* to 200m
90
9105/07
92- changed grep -m1 to grep | head -n1 for Debian users
93- pre_param_...() also mkdir -p /mnt/cdrom, just in case
94
9505/05
96- cleaner logging of call to dd if=<tape> of=/dev/null
97- added Joshua Oreman's FreeBSD patches
98
9905/04
100- added Herman Kuster's multi-level bkp patch
101
10205/02
103- log_it() --- "Message repeated N times" (if it was)
104
10504/24
106- added lots of assert()'s and log_OS_error()'s
107- reset_bkpinfop() --- reset all media_size[] array
108- increased tmpfs ramdisk to size=100m
109
11004/22
111- post_param_configuration() --- store iso-dev and isodir
112
11304/05
114- re-enable tmpfs ramdisk/mountpt _but_ make sure size=80m
115- in post_param_configuration(), use cdrecord in preference
116 to dvdrecord now
117
11803/27
119- disabled tmpfs ramdisk/mountpt
120
12101/02/2003
122- bkpinfo->makefilelist = TRUE
123
12412/10/2002
125- added g_loglevel
126- fixed minor bug in clean_up_KDE_desktop_if_necessary()
127- log versions of newt, slang, ncurses
128- isodir defaults to / if disaster recovery
129
13011/28
131- unmount all CD devices at start
132- added clean_up_KDE_desktop_if_necessary()
133
13411/20
135- don't use lilo.conf.anaconda; abort instead
136- mount/unmount /boot partition for Gentoo 1.2 users
137
13811/13
139- call mindi --makemountlist as part of testing sanity of distro
140
14111/08
142- added a couple of chmod 700's (one for scratchdir, one for tmpdir)
143 to post_param_configuration()
144
14510/01 - 10/31
146- added checking of / and /root's free space to some_basic_sanity_checks()
147- moved some subroutines here from common/libmondo-archive
148
14909/01 - 09/30
150- don't write log_it()'s string to stdout, even if text mode
151- tell user the kernel is bad if it has no ramdisk support but allow
152 it if they want to use the failsafe kernel for booting
153- run_program_and_log_output() now takes boolean operator to specify
154 whether it will log its activities in the event of _success_
155- if mkfs.vfat not found but mkfs.msdos found then create a softlink
156 from the former to the latter
157
15808/01 - 08/31
159- if /etc/lilo.conf not found not /etc/lilo.conf.anaconda found
160 then create a softlink from the former to the latter, to work
161 around RH7.3's b0rken LILO support
162- handle unknown media size
163
16407/27
165- created
166*/
167
168
169/**
170 * @file
171 * Miscellaneous tools that didn't really fit anywhere else.
172 */
173
174#include "my-stuff.h"
175#include "mondostructures.h"
176#include "lib-common-externs.h"
177#include "libmondo-tools.h"
178#include "libmondo-gui-EXT.h"
179#include "libmondo-files-EXT.h"
180#include "libmondo-fork-EXT.h"
181#include "libmondo-raid-EXT.h"
182#include <sys/socket.h>
183#include <netdb.h>
184#include <netinet/in.h>
185#include <arpa/inet.h>
186
187/*@unused@*/
188//static char cvsid[] = "$Id: libmondo-tools.c 998 2006-12-07 01:01:34Z bruno $";
189
190extern int g_tape_buffer_size_MB;
191extern char *g_erase_tmpdir_and_scratchdir;
192extern char *g_serial_string;
193extern bool g_text_mode;
194extern int g_currentY;
195extern int g_current_media_number;
196
197/**
198 * @addtogroup globalGroup
199 * @{
200 */
201bool g_remount_cdrom_at_end, ///< TRUE if we unmounted the CD-ROM and should remount it when done with the backup.
202 g_remount_floppy_at_end; ///< TRUE if we unmounted the floppy and should remount it when done with the backup.
203bool g_cd_recovery; ///< TRUE if we're making an "autonuke" backup.
204double g_kernel_version;
205
206/**
207 * The place where /boot is mounted.
208 */
209char *g_boot_mountpt = NULL;
210
211/**
212 * The location of Mondo's home directory.
213 */
214char *g_mondo_home = NULL;
215
216/**
217 * The serial string (used to differentiate between backups) of the current backup.
218 */
219char *g_serial_string = NULL;
220
221/**
222 * The location where tmpfs is mounted, or "" if it's not mounted.
223 */
224char *g_tmpfs_mountpt = NULL;
225char *g_magicdev_command = NULL;
226
227/**
228 * The default maximum level to log messages at or below.
229 */
230int g_loglevel = DEFAULT_DEBUG_LEVEL;
231
232/* @} - end of globalGroup */
233
234
235extern pid_t g_buffer_pid;
236extern pid_t g_main_pid;
237
238extern t_bkptype g_backup_media_type;
239
240extern bool am_I_in_disaster_recovery_mode(void);
241
242
243/**
244 * @addtogroup utilityGroup
245 * @{
246 */
247/**
248 * Assertion handler. Prints a friendly message to the user,
249 * offering to ignore all, dump core, break to debugger,
250 * exit, or ignore. Intended to be used with an assert() macro.
251 *
252 * @param file The file in which the assertion triggered.
253 * @param function The function (@c __FUNCTION__) in which the assertion triggered.
254 * @param line The line number of the assert() statement.
255 * @param exp The expression that failed (as a string).
256 */
257void _mondo_assert_fail(const char *file,
258 const char *function, int line, const char *exp)
259{
260 static int ignoring_assertions = 0;
261 bool is_valid = TRUE;
262
263 log_it("ASSERTION FAILED: `%s' at %s:%d in %s", exp, file, line,
264 function);
265 if (ignoring_assertions) {
266 log_it("Well, the user doesn't care...");
267 return;
268 }
269#ifndef _XWIN
270 if (!g_text_mode)
271 newtSuspend();
272#endif
273 printf("ASSERTION FAILED: `%s'\n", exp);
274 printf("\tat %s:%d in %s\n\n", file, line, function);
275 printf("(I)gnore, ignore (A)ll, (D)ebug, a(B)ort, or (E)xit? ");
276 do {
277 is_valid = TRUE;
278 switch (toupper(getchar())) {
279 case 'A': // ignore (A)ll
280 ignoring_assertions = 1;
281 break;
282 case 'B': // a(B)ort
283 signal(SIGABRT, SIG_DFL); /* prevent SIGABRT handler from running */
284 raise(SIGABRT);
285 break; /* "can't get here" */
286 case 'D': // (D)ebug, aka asm("int 3")
287#ifdef __IA32__
288 __asm__ __volatile__("int $3"); // break to debugger
289#endif
290 break;
291 case 'E': // (E)xit
292 fatal_error("Failed assertion -- see above for details");
293 break; /* "can't get here" */
294 case 'I': // (I)gnore
295 break;
296 /* These next two work as follows:
297 the `default' catches the user's invalid choice and says so;
298 the '\n' catches the newline on the end and prints the prompt again.
299 */
300 case '\n':
301 printf
302 ("(I)gnore, ignore (A)ll, (D)ebug, a(B)ort, or (E)xit? ");
303 break;
304 default:
305 is_valid = FALSE;
306 printf("Invalid choice.\n");
307 break;
308 }
309 } while (!is_valid);
310
311 if (ignoring_assertions) {
312 log_it("Ignoring ALL assertions from now on.");
313 } else {
314 log_it("Ignoring assertion: %s", exp);
315 }
316
317 getchar(); // skip \n
318
319#ifndef _XWIN
320 if (!g_text_mode)
321 newtResume();
322#endif
323}
324
325/**
326 * Clean's up users' KDE desktops.
327 * @bug Details about this function are unknown.
328 */
329void clean_up_KDE_desktop_if_necessary(void)
330{
331 char *tmp;
332
333 malloc_string(tmp);
334 strcpy(tmp,
335 "for i in `find /root /home -type d -name Desktop -maxdepth 2`; do \
336file=$i/.directory; if [ -f \"$file\" ] ; then mv -f $file $file.old ; \
337awk '{if (index($0, \"rootimagesmindi\")) { while (length($0)>2) { getline;} ; } \
338else { print $0;};}' $file.old > $file ; fi ; done");
339 run_program_and_log_output(tmp, 5);
340 paranoid_free(tmp);
341}
342
343
344/**
345 * Locate mondoarchive's home directory. Searches in /usr/local/mondo, /usr/share/mondo,
346 * /usr/local/share/mondo, /opt, or if all else fails, search /usr.
347 *
348 * @param home_sz String to store the home directory ("" if it could not be found).
349 * @return 0 for success, nonzero for failure.
350 */
351int find_and_store_mondoarchives_home(char *home_sz)
352{
353 assert(home_sz != NULL);
354 strcpy(home_sz, MONDO_SHARE);
355 return (0);
356}
357
358
359char *get_architecture()
360{
361#ifdef __IA32__
362 return ("i386");
363#endif
364#ifdef __IA64__
365 return ("ia64");
366#endif
367 return ("unknown");
368}
369
370
371
372double get_kernel_version()
373{
374 char *p, tmp[200];
375 double d;
376#ifdef __FreeBSD__
377 // JOSH - FIXME :)
378 d = 5.2; // :-)
379#else
380 strcpy(tmp, call_program_and_get_last_line_of_output("uname -r"));
381 p = strchr(tmp, '.');
382 if (p) {
383 p = strchr(++p, '.');
384 if (p) {
385 while (*p) {
386 *p = *(p + 1);
387 p++;
388 }
389 }
390 }
391// log_msg(1, "tmp = '%s'", tmp);
392 d = atof(tmp);
393#endif
394 log_msg(1, "g_kernel_version = %f", d);
395 return (d);
396}
397
398
399
400
401
402/**
403 * Get the current time.
404 * @return number of seconds since the epoch.
405 */
406long get_time()
407{
408 return (long) time((void *) 0);
409}
410
411
412
413
414
415
416
417/**
418 * Initialize a RAID volume structure, setting fields to zero. The
419 * actual hard drive is unaffected.
420 *
421 * @param raidrec The RAID volume structure to initialize.
422 * @note This function is system dependent.
423 */
424#ifdef __FreeBSD__
425void initialize_raidrec(struct vinum_volume *raidrec)
426{
427 int i, j;
428 raidrec->volname[0] = '\0';
429 raidrec->plexes = 0;
430 for (i = 0; i < 9; ++i) {
431 raidrec->plex[i].raidlevel = -1;
432 raidrec->plex[i].stripesize = 0;
433 raidrec->plex[i].subdisks = 0;
434 for (j = 0; j < 9; ++j) {
435 strcpy(raidrec->plex[i].sd[j].which_device, "");
436 }
437 }
438}
439#else
440void initialize_raidrec(struct raid_device_record *raidrec)
441{
442 assert(raidrec != NULL);
443 raidrec->raid_device[0] = '\0';
444 raidrec->raid_level = -9;
445 raidrec->persistent_superblock = 1;
446 raidrec->chunk_size = 64;
447 raidrec->parity = -1;
448 raidrec->data_disks.entries = 0;
449 raidrec->spare_disks.entries = 0;
450 raidrec->parity_disks.entries = 0;
451 raidrec->failed_disks.entries = 0;
452 raidrec->additional_vars.entries = 0;
453}
454#endif
455
456
457
458
459/**
460 * Insert modules that Mondo requires.
461 * Currently inserts @c dos, @c fat, @c vfat, and @c osst for Linux;
462 * @c msdosfs and @c ext2fs for FreeBSD.
463 */
464void insmod_crucial_modules(void)
465{
466#ifdef __FreeBSD__
467 system("kldstat | grep msdosfs || kldload msdosfs 2> /dev/null");
468 system("kldstat | grep ext2fs || kldload ext2fs 2> /dev/null");
469#else
470 system("modprobe dos &> /dev/null");
471 system("modprobe fat &> /dev/null");
472 system("modprobe vfat &> /dev/null");
473 // system("modprobe osst &> /dev/null");
474#endif
475}
476
477
478/**
479 * Log a trace message to the trace file.
480 * @bug This function seems orphaned. Please remove.
481 */
482void log_trace(char *o)
483{
484 /*@ pointers **************************************************** */
485 FILE *fout;
486
487 /*@ buffers ***************************************************** */
488 char output[MAX_STR_LEN];
489
490 /*@ int ****************************************************** */
491 int i;
492
493 /*@ end vars *************************************************** */
494
495 if (o[0] == '\0') {
496 return;
497 }
498 strcpy(output, o);
499 i = (int) strlen(output);
500 if (i <= 0) {
501 return;
502 }
503 if (output[i - 1] < 32) {
504 output[i - 1] = '\0';
505 }
506 if (g_text_mode
507 /* && !strstr(last_line_of_file(MONDO_LOGFILE),output) */ ) {
508 printf("%s\n", output);
509 }
510
511 fout = fopen(MONDO_TRACEFILE, "a");
512 if (fout) {
513 fprintf(fout, "%s\n", output);
514 paranoid_fclose(fout);
515 } else {
516 log_OS_error("Cannot write to tracefile");
517 }
518}
519
520
521
522
523
524/**
525 * Finish configuring the backup information structure. Call this function
526 * to set the parameters that depend on those that can be given on the command
527 * line.
528 *
529 * @param bkpinfo The backup information structure. Fields modified/used:
530 * - Used: @c bkpinfo->backup_data
531 * - Used: @c bkpinfo->backup_media_type
532 * - Used: @c bkpinfo->cdrw_speed
533 * - Used: @c bkpinfo->compression_level
534 * - Used: @c bkpinfo->include_paths
535 * - Used: @c bkpinfo->prefix
536 * - Used: @c bkpinfo->isodir
537 * - Used: @c bkpinfo->manual_cd_tray
538 * - Used: @c bkpinfo->make_cd_use_lilo
539 * - Used: @c bkpinfo->media_device
540 * - Used: @c bkpinfo->nfs_mount
541 * - Used: @c bkpinfo->nonbootable_backup
542 * - Used: @c bkpinfo->scratchdir
543 * - Used: @c bkpinfo->tmpdir
544 * - Used: @c bkpinfo->use_lzo
545 * - Modified: @c bkpinfo->call_before_iso
546 * - Modified: @c bkpinfo->call_make_iso
547 * - Modified: @c bkpinfo->optimal_set_size
548 * - Modified: @c bkpinfo->zip_exe
549 * - Modified: @c bkpinfo->zip_suffix
550 *
551 * @return number of errors, or 0 for success.
552 * @note Also creates directories that are specified in the @c bkpinfo structure but
553 * do not exist.
554 */
555int post_param_configuration(struct s_bkpinfo *bkpinfo)
556{
557 char *extra_cdrom_params;
558 char *mondo_mkisofs_sz;
559 char *command;
560 char *mtpt;
561 char *hostname, *ip_address;
562 int retval = 0;
563 long avm = 0;
564 char *colon;
565 char *cdr_exe;
566 char *tmp;
567 char call_before_iso_user[MAX_STR_LEN] = "\0";
568 int rdsiz_MB;
569 char *iso_dev;
570 char *iso_mnt;
571 char *iso_tmp;
572 char *iso_path;
573
574 assert(bkpinfo != NULL);
575 malloc_string(extra_cdrom_params);
576 malloc_string(mondo_mkisofs_sz);
577 malloc_string(command);
578 malloc_string(mtpt);
579 malloc_string(hostname);
580 malloc_string(ip_address);
581 malloc_string(cdr_exe);
582 malloc_string(tmp);
583 malloc_string(iso_dev);
584 malloc_string(iso_mnt);
585 malloc_string(iso_tmp);
586 malloc_string(iso_path);
587 bkpinfo->optimal_set_size =
588 (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type) ? 16 : 16) *
589 1024;
590
591 log_msg(1, "Foo");
592 if (bkpinfo->backup_media_type == tape) {
593 log_msg(1, "Bar");
594 sprintf(tmp, "mt -f %s status", bkpinfo->media_device);
595 log_msg(1, "tmp = '%s'", tmp);
596 if (run_program_and_log_output(tmp, 3)) {
597 fatal_error
598 ("Unable to open tape device. If you haven't specified it with -d, do so. If you already have, check your parameter. I think it's wrong.");
599 }
600 }
601 make_hole_for_dir(bkpinfo->scratchdir);
602 make_hole_for_dir(bkpinfo->tmpdir);
603 if (bkpinfo->backup_media_type == iso)
604 make_hole_for_dir(bkpinfo->isodir);
605
606 run_program_and_log_output("uname -a", 5);
607 run_program_and_log_output("cat /etc/*-release", 5);
608 run_program_and_log_output("cat /etc/*issue*", 5);
609 sprintf(g_tmpfs_mountpt, "%s/tmpfs", bkpinfo->tmpdir);
610 sprintf(command, "mkdir -p %s", g_tmpfs_mountpt);
611 paranoid_system(command);
612 rdsiz_MB = PPCFG_RAMDISK_SIZE + g_tape_buffer_size_MB;
613#ifdef __FreeBSD__
614 strcpy(tmp,
615 call_program_and_get_last_line_of_output
616 ("vmstat | tail -1 | tr -s ' ' | cut -d' ' -f6"));
617 avm += atol(tmp);
618 strcpy(tmp,
619 call_program_and_get_last_line_of_output
620 ("swapinfo | grep -v Device | tr -s ' ' | cut -d' ' -f4 | tr '\n' '+' | sed 's/+$//' | bc"));
621 avm += atol(tmp);
622 sprintf(command, "mdmfs -s %d%c md9 %s", rdsiz_MB, 'm',
623 g_tmpfs_mountpt);
624#else
625 strcpy(tmp,
626 call_program_and_get_last_line_of_output
627 ("free | grep ':' | tr -s ' ' '\t' | cut -f2 | head -n1"));
628 avm += atol(tmp);
629 sprintf(command, "mount /dev/shm -t tmpfs %s -o size=%d%c",
630 g_tmpfs_mountpt, rdsiz_MB, 'm');
631 run_program_and_log_output("cat /proc/cpuinfo", 5);
632 run_program_and_log_output
633 ("rpm -q newt newt-devel slang slang-devel ncurses ncurses-devel gcc",
634 5);
635#endif
636 if (avm / 1024 > rdsiz_MB * 3) {
637 if (run_program_and_log_output(command, 5)) {
638 g_tmpfs_mountpt[0] = '\0';
639 log_it("Failed to mount tmpfs");
640 } else {
641 log_it("Tmpfs mounted OK - %d MB", rdsiz_MB);
642 }
643 } else {
644 g_tmpfs_mountpt[0] = '\0';
645 log_it("It doesn't seem you have enough swap to use tmpfs. Fine.");
646 }
647
648 if (bkpinfo->use_lzo) {
649 strcpy(bkpinfo->zip_exe, "lzop");
650 strcpy(bkpinfo->zip_suffix, "lzo");
651 } else if (bkpinfo->use_gzip) {
652 strcpy(bkpinfo->zip_exe, "gzip");
653 strcpy(bkpinfo->zip_suffix, "gz");
654 } else if (bkpinfo->compression_level != 0) {
655 strcpy(bkpinfo->zip_exe, "bzip2");
656 strcpy(bkpinfo->zip_suffix, "bz2");
657 } else {
658 bkpinfo->zip_exe[0] = bkpinfo->zip_suffix[0] = '\0';
659 }
660
661// DVD
662
663 if (bkpinfo->backup_media_type == dvd) {
664 extra_cdrom_params[0] = '\0';
665 mondo_mkisofs_sz[0] = '\0';
666 if (find_home_of_exe("growisofs")) {
667 strcpy(cdr_exe, "growisofs");
668 } // unlikely to be used
669 else {
670 fatal_error("Please install growisofs.");
671 }
672 if (bkpinfo->nonbootable_backup) {
673 strcat(mondo_mkisofs_sz, MONDO_GROWISOFS_NONBOOT);
674 } else if
675#ifdef __FreeBSD__
676 (TRUE)
677#else
678 (bkpinfo->make_cd_use_lilo)
679#endif
680#ifdef __IA64__
681 {
682 strcat(mondo_mkisofs_sz, MONDO_GROWISOFS_REGULAR_ELILO);
683 }
684#else
685 {
686 strcat(mondo_mkisofs_sz, MONDO_GROWISOFS_REGULAR_LILO);
687 }
688#endif
689 else
690 {
691 strcat(mondo_mkisofs_sz, MONDO_GROWISOFS_REGULAR_SYSLINUX);
692 }
693 if (bkpinfo->manual_cd_tray) {
694 fatal_error("Manual CD tray + DVD not supported yet.");
695 // -m isn't supported by growisofs, BTW...
696 } else {
697 sprintf(bkpinfo->call_make_iso,
698 "%s %s -Z %s . 2>> _ERR_",
699 mondo_mkisofs_sz,
700 extra_cdrom_params, bkpinfo->media_device);
701 }
702 if (getenv ("SUDO_COMMAND")) {
703 sprintf(command, "strings `which growisofs` | grep -c SUDO_COMMAND");
704 if (!strcmp(call_program_and_get_last_line_of_output(command), "1")) {
705 popup_and_OK("Fatal Error: Can't write DVDs as sudo because growisofs doesn't support this - see the growisofs manpage for details.");
706 fatal_error("Can't write DVDs as sudo because growisofs doesn't support this - see the growisofs manpage for details.");
707 }
708 }
709 log_msg(2, "call_make_iso (DVD res) is ... %s",
710 bkpinfo->call_make_iso);
711 } // end of DVD code
712
713// CD-R or CD-RW
714 if (bkpinfo->backup_media_type == cdrw
715 || bkpinfo->backup_media_type == cdr) {
716 extra_cdrom_params[0] = '\0';
717 if (!bkpinfo->manual_cd_tray) {
718 strcat(extra_cdrom_params, "-waiti ");
719 }
720 if (bkpinfo->backup_media_type == cdrw) {
721 strcat(extra_cdrom_params, "blank=fast ");
722 }
723 if (find_home_of_exe("cdrecord")) {
724 strcpy(cdr_exe, "cdrecord");
725 } else if (find_home_of_exe("dvdrecord")) {
726 strcpy(cdr_exe, "dvdrecord");
727 } else {
728 fatal_error("Please install either cdrecord or dvdrecord.");
729 }
730 if (bkpinfo->nonbootable_backup) {
731 strcpy(mondo_mkisofs_sz, MONDO_MKISOFS_NONBOOT);
732 } else if
733#ifdef __FreeBSD__
734 (TRUE)
735#else
736 (bkpinfo->make_cd_use_lilo)
737#endif
738#ifdef __IA64__
739 {
740 strcat(mondo_mkisofs_sz, MONDO_MKISOFS_REGULAR_ELILO);
741 }
742#else
743 {
744 strcpy(mondo_mkisofs_sz, MONDO_MKISOFS_REGULAR_LILO);
745 }
746#endif
747 else
748 {
749 strcpy(mondo_mkisofs_sz, MONDO_MKISOFS_REGULAR_SYSLINUX);
750 }
751 if (bkpinfo->manual_cd_tray) {
752 if (bkpinfo->call_before_iso[0] == '\0') {
753 sprintf(bkpinfo->call_before_iso,
754 "%s -o %s/temporary.iso . 2>> _ERR_",
755 mondo_mkisofs_sz, bkpinfo->tmpdir);
756 } else {
757 strncpy(call_before_iso_user, bkpinfo->call_before_iso, MAX_STR_LEN);
758 sprintf (bkpinfo->call_before_iso,
759 "( %s -o %s/temporary.iso . 2>> _ERR_ ; %s )",
760 mondo_mkisofs_sz, bkpinfo->tmpdir, call_before_iso_user);
761 }
762 log_it("bkpinfo->call_before_iso = %s", bkpinfo->call_before_iso);
763 sprintf(bkpinfo->call_make_iso,
764 "%s %s -v %s fs=4m dev=%s speed=%d %s/temporary.iso",
765 cdr_exe, (bkpinfo->please_dont_eject) ? " " : "-eject",
766 extra_cdrom_params, bkpinfo->media_device,
767 bkpinfo->cdrw_speed, bkpinfo->tmpdir);
768 } else {
769 sprintf(bkpinfo->call_make_iso,
770 "%s . 2>> _ERR_ | %s %s %s fs=4m dev=%s speed=%d -",
771 mondo_mkisofs_sz, cdr_exe,
772 (bkpinfo->please_dont_eject) ? " " : "-eject",
773 extra_cdrom_params, bkpinfo->media_device,
774 bkpinfo->cdrw_speed);
775 }
776 } // end of CD code
777
778 /*
779 if (bkpinfo->backup_data && bkpinfo->backup_media_type == tape)
780 {
781 sprintf (tmp,
782 "dd if=/dev/zero of=%s bs=%ld count=32 2> /dev/null",
783 bkpinfo->media_device, bkpinfo->internal_tape_block_size);
784 if (system(tmp))
785 {
786 retval++;
787 fprintf (stderr,
788 "Cannot write to tape device. Is the tape set read-only?\n");
789 }
790 } // end of tape code
791 */
792
793
794 if (bkpinfo->backup_media_type == iso) {
795
796/* Patch by Conor Daly <conor.daly@met.ie>
797 * 23-june-2004
798 * Break up isodir into iso_mnt and iso_path
799 * These will be used along with iso-dev at restore time
800 * to locate the ISOs where ever they're mounted
801 */
802
803 log_it("isodir = %s", bkpinfo->isodir);
804 sprintf(command, "df -P %s | tail -n1 | cut -d' ' -f1",
805 bkpinfo->isodir);
806 log_it("command = %s", command);
807 log_it("res of it = %s",
808 call_program_and_get_last_line_of_output(command));
809 sprintf(iso_dev, "%s",
810 call_program_and_get_last_line_of_output(command));
811 sprintf(tmp, "%s/ISO-DEV", bkpinfo->tmpdir);
812 write_one_liner_data_file(tmp,
813 call_program_and_get_last_line_of_output
814 (command));
815
816 sprintf(command, "mount | grep -w %s | tail -n1 | cut -d' ' -f3",
817 iso_dev);
818 log_it("command = %s", command);
819 log_it("res of it = %s",
820 call_program_and_get_last_line_of_output(command));
821 sprintf(iso_mnt, "%s",
822 call_program_and_get_last_line_of_output(command));
823 sprintf(tmp, "%s/ISO-MNT", bkpinfo->tmpdir);
824 write_one_liner_data_file(tmp,
825 call_program_and_get_last_line_of_output
826 (command));
827 log_it("isomnt: %s, %d", iso_mnt, strlen(iso_mnt));
828 sprintf(iso_tmp, "%s", bkpinfo->isodir);
829 if (strlen(iso_tmp) < strlen(iso_mnt)) {
830 iso_path[0] = '\0';
831 } else {
832 sprintf(iso_path, "%s", iso_tmp + strlen(iso_mnt));
833 }
834 sprintf(tmp, "%s/ISODIR", bkpinfo->tmpdir);
835 write_one_liner_data_file(tmp, iso_path);
836 log_it("isodir: %s", iso_path);
837 sprintf(tmp, "%s/ISO-PREFIX", bkpinfo->tmpdir);
838 write_one_liner_data_file(tmp, bkpinfo->prefix);
839 log_it("iso-prefix: %s", bkpinfo->prefix);
840
841/* End patch */
842 } // end of iso code
843
844 if (bkpinfo->backup_media_type == nfs) {
845 strcpy(hostname, bkpinfo->nfs_mount);
846 colon = strchr(hostname, ':');
847 if (!colon) {
848 log_it("nfs mount doesn't have a colon in it");
849 retval++;
850 } else {
851 struct hostent *hent;
852
853 *colon = '\0';
854 hent = gethostbyname(hostname);
855 if (!hent) {
856 log_it("Can't resolve NFS mount (%s): %s", hostname,
857 hstrerror(h_errno));
858 retval++;
859 } else {
860 strcpy(ip_address, inet_ntoa
861 ((struct in_addr)
862 *((struct in_addr *) hent->h_addr)));
863 strcat(ip_address, strchr(bkpinfo->nfs_mount, ':'));
864 strcpy(bkpinfo->nfs_mount, ip_address);
865 }
866 }
867 store_nfs_config(bkpinfo);
868 }
869
870 log_it("Finished processing incoming params");
871 if (retval) {
872 fprintf(stderr, "Type 'man mondoarchive' for help.\n");
873 }
874 sprintf(tmp, "%s", MONDO_TMPISOS); /* added #define 22 apr 2002 */
875 if (does_file_exist(tmp)) {
876 unlink(tmp);
877 }
878 if (strlen(bkpinfo->tmpdir) < 2 || strlen(bkpinfo->scratchdir) < 2) {
879 log_it("tmpdir or scratchdir are blank/missing");
880 retval++;
881 }
882 if (bkpinfo->include_paths[0] == '\0') {
883 // fatal_error ("Why no backup path?");
884 strcpy(bkpinfo->include_paths, "/");
885 }
886 chmod(bkpinfo->scratchdir, 0700);
887 chmod(bkpinfo->tmpdir, 0700);
888 g_backup_media_type = bkpinfo->backup_media_type;
889 paranoid_free(mtpt);
890 paranoid_free(extra_cdrom_params);
891 paranoid_free(mondo_mkisofs_sz);
892 paranoid_free(command);
893 paranoid_free(hostname);
894 paranoid_free(ip_address);
895 paranoid_free(cdr_exe);
896 paranoid_free(tmp);
897 paranoid_free(iso_dev);
898 paranoid_free(iso_mnt);
899 paranoid_free(iso_tmp);
900 paranoid_free(iso_path);
901 return (retval);
902}
903
904
905
906/**
907 * Do some miscellaneous setup tasks to be performed before filling @c bkpinfo.
908 * Seeds the random-number generator, loads important modules, checks the sanity
909 * of the user's Linux distribution, and deletes logfile.
910 * @param bkpinfo The backup information structure. Will be initialized.
911 * @return number of errors (0 for success)
912 */
913int pre_param_configuration(struct s_bkpinfo *bkpinfo)
914{
915 int res = 0;
916
917 make_hole_for_dir(MNT_CDROM);
918 assert(bkpinfo != NULL);
919 srandom((unsigned long) (time(NULL)));
920 insmod_crucial_modules();
921 reset_bkpinfo(bkpinfo); // also sets defaults ('/'=backup path, 3=compression level)
922 if (bkpinfo->disaster_recovery) {
923 if (!does_nonMS_partition_exist()) {
924 fatal_error
925 ("I am in disaster recovery mode\nPlease don't run mondoarchive.");
926 }
927 }
928
929 unlink(MONDO_TRACEFILE);
930 run_program_and_log_output("rm -Rf /tmp/changed.files*", FALSE);
931 if (find_and_store_mondoarchives_home(g_mondo_home)) {
932 fprintf(stderr,
933 "Cannot find Mondo's homedir. I think you have >1 'mondo' directory on your hard disk. Please delete the superfluous 'mondo' directories and try again\n");
934 res++;
935 return (res);
936 }
937 res += some_basic_system_sanity_checks();
938 if (res) {
939 log_it("Your distribution did not pass Mondo's sanity test.");
940 }
941 g_current_media_number = 1;
942 bkpinfo->postnuke_tarball[0] = bkpinfo->nfs_mount[0] = '\0';
943 return (res);
944}
945
946
947
948
949/**
950 * Reset all fields of the backup information structure to a sensible default.
951 * @param bkpinfo The @c bkpinfo to reset.
952 */
953void reset_bkpinfo(struct s_bkpinfo *bkpinfo)
954{
955 int i;
956
957 log_msg(1, "Hi");
958 assert(bkpinfo != NULL);
959 memset((void *) bkpinfo, 0, sizeof(struct s_bkpinfo));
960 bkpinfo->manual_cd_tray = FALSE;
961 bkpinfo->internal_tape_block_size = DEFAULT_INTERNAL_TAPE_BLOCK_SIZE;
962 bkpinfo->media_device[0] = '\0';
963 for (i = 0; i <= MAX_NOOF_MEDIA; i++) {
964 bkpinfo->media_size[i] = -1;
965 }
966 bkpinfo->boot_loader = '\0';
967 bkpinfo->boot_device[0] = '\0';
968 bkpinfo->zip_exe[0] = '\0';
969 bkpinfo->zip_suffix[0] = '\0';
970 bkpinfo->restore_path[0] = '\0';
971 bkpinfo->use_lzo = FALSE;
972 bkpinfo->use_gzip = FALSE;
973 bkpinfo->do_not_compress_these[0] = '\0';
974 bkpinfo->verify_data = FALSE;
975 bkpinfo->backup_data = FALSE;
976 bkpinfo->restore_data = FALSE;
977 bkpinfo->disaster_recovery =
978 (am_I_in_disaster_recovery_mode()? TRUE : FALSE);
979 if (bkpinfo->disaster_recovery) {
980 strcpy(bkpinfo->isodir, "/");
981 } else {
982 strcpy(bkpinfo->isodir, "/root/images/mondo");
983 }
984 strcpy(bkpinfo->prefix, STD_PREFIX);
985
986 bkpinfo->scratchdir[0] = '\0';
987 bkpinfo->make_filelist = TRUE; // unless -J supplied to mondoarchive
988 sprintf(bkpinfo->tmpdir, "/tmp/tmpfs/mondo.tmp.%d", (int) (random() % 32768)); // for mondorestore
989 bkpinfo->optimal_set_size = 0;
990 bkpinfo->backup_media_type = none;
991 strcpy(bkpinfo->include_paths, "/");
992 bkpinfo->exclude_paths[0] = '\0';
993 bkpinfo->call_before_iso[0] = '\0';
994 bkpinfo->call_make_iso[0] = '\0';
995 bkpinfo->call_burn_iso[0] = '\0';
996 bkpinfo->call_after_iso[0] = '\0';
997 bkpinfo->image_devs[0] = '\0';
998 bkpinfo->postnuke_tarball[0] = '\0';
999 bkpinfo->kernel_path[0] = '\0';
1000 bkpinfo->nfs_mount[0] = '\0';
1001 bkpinfo->nfs_remote_dir[0] = '\0';
1002 bkpinfo->wipe_media_first = FALSE;
1003 bkpinfo->differential = FALSE;
1004 bkpinfo->cdrw_speed = 0;
1005// patch by Herman Kuster
1006 bkpinfo->differential = 0;
1007// patch end
1008 bkpinfo->compression_level = 3;
1009}
1010
1011
1012
1013
1014/**
1015 * Get the remaining free space (in MB) on @p partition.
1016 * @param partition The partition to check free space on (either a device or a mountpoint).
1017 * @return The free space on @p partition, in MB.
1018 */
1019long free_space_on_given_partition(char *partition)
1020{
1021 char command[MAX_STR_LEN], out_sz[MAX_STR_LEN];
1022 long res;
1023
1024 assert_string_is_neither_NULL_nor_zerolength(partition);
1025
1026 sprintf(command, "df -m -P %s &> /dev/null", partition);
1027 if (system(command)) {
1028 return (-1);
1029 } // partition does not exist
1030 sprintf(command, "df -m -P %s | tail -n1 | tr -s ' ' '\t' | cut -f4",
1031 partition);
1032 strcpy(out_sz, call_program_and_get_last_line_of_output(command));
1033 if (strlen(out_sz) == 0) {
1034 return (-1);
1035 } // error within df, probably
1036 res = atol(out_sz);
1037 return (res);
1038}
1039
1040
1041
1042/**
1043 * Check the user's system for sanity. Checks performed:
1044 * - make sure user has enough RAM (32mb required, 64mb recommended)
1045 * - make sure user has enough free space in @c /
1046 * - check kernel for ramdisk support
1047 * - make sure afio, cdrecord, mkisofs, bzip2, awk, md5sum, strings, mindi, and buffer exist
1048 * - make sure CD-ROM is unmounted
1049 * - make sure /etc/modules.conf exists
1050 * - make sure user's mountlist is OK by running <tt>mindi --makemountlist</tt>
1051 *
1052 * @return number of problems with the user's setup (0 for success)
1053 */
1054int some_basic_system_sanity_checks()
1055{
1056
1057 /*@ buffers ************ */
1058 char tmp[MAX_STR_LEN];
1059 // char command[MAX_STR_LEN];
1060
1061 /*@ int's *************** */
1062 int retval = 0;
1063 long Lres;
1064
1065
1066 mvaddstr_and_log_it(g_currentY, 0,
1067 "Checking sanity of your Linux distribution");
1068#ifndef __FreeBSD__
1069 if (system("which mkfs.vfat &> /dev/null")
1070 && !system("which mkfs.msdos &> /dev/null")) {
1071 log_it
1072 ("OK, you've got mkfs.msdos but not mkfs.vfat; time for the fairy to wave her magic wand...");
1073 run_program_and_log_output
1074 ("ln -sf `which mkfs.msdos` /sbin/mkfs.vfat", FALSE);
1075 }
1076 strcpy(tmp,
1077 call_program_and_get_last_line_of_output
1078 ("free | grep Mem | head -n1 | tr -s ' ' '\t' | cut -f2"));
1079 if (atol(tmp) < 35000) {
1080 retval++;
1081 log_to_screen("You must have at least 32MB of RAM to use Mondo.");
1082 }
1083 if (atol(tmp) < 66000) {
1084 log_to_screen
1085 ("WARNING! You have very little RAM. Please upgrade to 64MB or more.");
1086 }
1087#endif
1088
1089 if ((Lres = free_space_on_given_partition("/root")) == -1) {
1090 Lres = free_space_on_given_partition("/");
1091 }
1092 log_it("Free space on given partition = %ld MB", Lres);
1093
1094 if (Lres < 50) {
1095 run_program_and_log_output
1096 ("rm -Rf /root/images/mindi; mkdir -p /home/root/images/mindi; mkdir -p /root/images; ln -sf /home/root/images/mindi /root/images/mindi",
1097 3);
1098 // fatal_error("Your / (or /root) partition has <50MB free. Please adjust your partition table to something saner.");
1099 }
1100
1101 if (system("which " MKE2FS_OR_NEWFS " > /dev/null 2> /dev/null")) {
1102 retval++;
1103 log_to_screen
1104 ("Unable to find " MKE2FS_OR_NEWFS " in system path.");
1105 fatal_error
1106 ("Please use \"su -\", not \"su\" to become root. OK? ...and please don't e-mail the mailing list or me about this. Just read the message. :)");
1107 }
1108#ifndef __FreeBSD__
1109 if (run_program_and_log_output
1110 ("grep ramdisk /proc/devices", FALSE)) {
1111 if (!ask_me_yes_or_no
1112 ("Your kernel has no ramdisk support. That's mind-numbingly stupid but I'll allow it if you're planning to use a failsafe kernel. Are you?"))
1113 {
1114 // retval++;
1115 log_to_screen
1116 ("It looks as if your kernel lacks ramdisk and initrd support.");
1117 log_to_screen
1118 ("I'll allow you to proceed but FYI, if I'm right, your kernel is broken.");
1119 }
1120 }
1121#endif
1122 retval += whine_if_not_found(MKE2FS_OR_NEWFS);
1123 retval += whine_if_not_found("mkisofs");
1124 if (system("which dvdrecord > /dev/null 2> /dev/null")) {
1125 retval += whine_if_not_found("cdrecord");
1126 }
1127 retval += whine_if_not_found("bzip2");
1128 retval += whine_if_not_found("gzip");
1129 retval += whine_if_not_found("awk");
1130 retval += whine_if_not_found("md5sum");
1131 retval += whine_if_not_found("strings");
1132 retval += whine_if_not_found("mindi");
1133 retval += whine_if_not_found("buffer");
1134
1135 // abort if Windows partition but no ms-sys and parted
1136 if (!run_program_and_log_output
1137 ("mount | grep -w vfat | grep -vE \"/dev/fd|nexdisk\"", 0)
1138 ||
1139 !run_program_and_log_output
1140 ("mount | grep -w dos | grep -vE \"/dev/fd|nexdisk\"", 0)) {
1141 log_to_screen("I think you have a Windows 9x partition.");
1142 retval += whine_if_not_found("parted");
1143#ifndef __IA64__
1144 /* IA64 always has one vfat partition for EFI even without Windows */
1145 // retval +=
1146 if (!find_home_of_exe("ms-sys")) {
1147 log_to_screen("Please install ms-sys just in case.");
1148 }
1149#endif
1150 }
1151
1152 if (!find_home_of_exe("cmp")) {
1153 if (!find_home_of_exe("true")) {
1154 whine_if_not_found("cmp");
1155 } else {
1156 log_to_screen
1157 ("Your system lacks the 'cmp' binary. I'll create a dummy cmp for you.");
1158 if (run_program_and_log_output
1159 ("cp -f `which true` /usr/bin/cmp", 0)) {
1160 fatal_error("Failed to create dummy 'cmp' file.");
1161 }
1162 }
1163 }
1164 run_program_and_log_output
1165 ("umount `mount | grep cdr | cut -d' ' -f3 | tr '\n' ' '`", 5);
1166 strcpy(tmp,
1167 call_program_and_get_last_line_of_output
1168 ("mount | grep -E \"cdr(om|w)\""));
1169 if (strcmp("", tmp)) {
1170 if (strstr(tmp, "autofs")) {
1171 log_to_screen
1172 ("Your CD-ROM is mounted via autofs. I therefore cannot tell");
1173 log_to_screen
1174 ("if a CD actually is inserted. If a CD is inserted, please");
1175 log_to_screen("eject it. Thank you.");
1176 log_it
1177 ("Ignoring autofs CD-ROM 'mount' since we hope nothing's in it.");
1178 } else
1179 if (run_program_and_log_output("uname -a | grep Knoppix", 5)) {
1180 retval++;
1181 fatal_error
1182 ("Your CD-ROM drive is mounted. Please unmount it.");
1183 }
1184 }
1185#ifndef __FreeBSD__
1186 if (!does_file_exist("/etc/modules.conf")) {
1187 if (does_file_exist("/etc/conf.modules")) {
1188 log_it("Linking /etc/modules.conf to /etc/conf.modules");
1189 run_program_and_log_output
1190 ("ln -sf /etc/conf.modules /etc/modules.conf", 5);
1191 } else if (does_file_exist("/etc/modprobe.d")) {
1192 log_it
1193 ("Directory /etc/modprobe.d found. mindi will use its contents.");
1194 } else if (does_file_exist("/etc/modprobe.conf")) {
1195 log_it("Linking /etc/modules.conf to /etc/modprobe.conf");
1196 run_program_and_log_output
1197 ("ln -sf /etc/modprobe.conf /etc/modules.conf", 5);
1198 } else {
1199 retval++;
1200 log_to_screen
1201 ("Please find out what happened to /etc/modules.conf");
1202 }
1203 }
1204#endif
1205
1206 run_program_and_log_output("cat /etc/fstab", 5);
1207#ifdef __FreeBSD__
1208 run_program_and_log_output("vinum printconfig", 5);
1209#else
1210 run_program_and_log_output("cat /etc/raidtab", 5);
1211#endif
1212
1213 if (run_program_and_log_output("mindi -V", 1)) {
1214 log_to_screen("Could not ascertain mindi's version number.");
1215 log_to_screen
1216 ("You have not installed Mondo and/or Mindi properly.");
1217 log_to_screen("Please uninstall and reinstall them both.");
1218 fatal_error("Please reinstall Mondo and Mindi.");
1219 }
1220 if (run_program_and_log_output
1221 ("mindi --makemountlist /tmp/mountlist.txt.test", 5)) {
1222 log_to_screen
1223 ("Mindi --makemountlist /tmp/mountlist.txt.test failed for some reason.");
1224 log_to_screen
1225 ("Please run that command by hand and examine /var/log/mindi.log");
1226 log_to_screen
1227 ("for more information. Perhaps your /etc/fstab file is insane.");
1228 log_to_screen
1229 ("Perhaps Mindi's MakeMountlist() subroutine has a bug. We'll see.");
1230 retval++;
1231 }
1232
1233 if (!run_program_and_log_output("parted2fdisk -l | grep -i raid", 1)
1234 && !does_file_exist("/etc/raidtab")) {
1235 log_to_screen
1236 ("You have RAID partitions but no /etc/raidtab - creating one from /proc/mdstat");
1237 create_raidtab_from_mdstat("/etc/raidtab");
1238 }
1239
1240 if (retval) {
1241 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");
1242 } else {
1243 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1244 }
1245 return (retval);
1246}
1247
1248/**
1249 * Retrieve the line containing @p label from the config file.
1250 * @param config_file The file to read from, usually @c /tmp/mondo-restore.cfg.
1251 * @param label What to read from the file.
1252 * @param value Where to put it.
1253 * @return 0 for success, 1 for failure.
1254 */
1255int read_cfg_var(char *config_file, char *label, char *value)
1256{
1257 /*@ buffer ****************************************************** */
1258 char command[MAX_STR_LEN * 2];
1259 char tmp[MAX_STR_LEN];
1260
1261 /*@ end vars *************************************************** */
1262
1263 assert_string_is_neither_NULL_nor_zerolength(config_file);
1264 assert_string_is_neither_NULL_nor_zerolength(label);
1265 if (!does_file_exist(config_file)) {
1266 sprintf(tmp, "(read_cfg_var) Cannot find %s config file",
1267 config_file);
1268 log_to_screen(tmp);
1269 value[0] = '\0';
1270 return (1);
1271 } else if (strstr(value, "/dev/") && strstr(value, "t0")
1272 && !strcmp(label, "media-dev")) {
1273 log_msg(2, "FYI, I shan't read new value for %s - already got %s",
1274 label, value);
1275 return (0);
1276 } else {
1277 sprintf(command, "grep '%s .*' %s| cut -d' ' -f2,3,4,5",
1278 label, config_file);
1279 strcpy(value, call_program_and_get_last_line_of_output(command));
1280 if (strlen(value) == 0) {
1281 return (1);
1282 } else {
1283 return (0);
1284 }
1285 }
1286}
1287
1288
1289
1290/**
1291 * Remount @c supermount if it was unmounted earlier.
1292 */
1293void remount_supermounts_if_necessary()
1294{
1295 if (g_remount_cdrom_at_end) {
1296 run_program_and_log_output("mount " MNT_CDROM, FALSE);
1297 }
1298 if (g_remount_floppy_at_end) {
1299 run_program_and_log_output("mount " MNT_FLOPPY, FALSE);
1300 }
1301}
1302
1303/**
1304 * Unmount @c supermount if it's mounted.
1305 */
1306void unmount_supermounts_if_necessary()
1307{
1308 if (run_program_and_log_output
1309 ("mount | grep cdrom | grep super", FALSE) == 0) {
1310 g_remount_cdrom_at_end = TRUE;
1311 run_program_and_log_output("umount " MNT_CDROM, FALSE);
1312 }
1313 if (run_program_and_log_output
1314 ("mount | grep floppy | grep super", FALSE) == 0) {
1315 g_remount_floppy_at_end = TRUE;
1316 run_program_and_log_output("umount " MNT_FLOPPY, FALSE);
1317 }
1318}
1319
1320/**
1321 * Whether we had to stop autofs (if so, restart it at end).
1322 */
1323bool g_autofs_stopped = FALSE;
1324
1325/**
1326 * Path to the autofs initscript ("" if none exists).
1327 */
1328char g_autofs_exe[MAX_STR_LEN];
1329
1330/**
1331 * Autofs initscript in Xandros Linux distribution.
1332 */
1333#define XANDROS_AUTOFS_FNAME "/etc/init.d/xandros-autofs"
1334
1335/**
1336 * Autofs initscript in most Linux distributions.
1337 */
1338#define STOCK_AUTOFS_FNAME "/etc/rc.d/init.d/autofs"
1339
1340/**
1341 * If autofs is mounted, stop it (restart at end).
1342 */
1343void stop_autofs_if_necessary()
1344{
1345 char tmp[MAX_STR_LEN];
1346
1347 g_autofs_exe[0] = '\0';
1348 if (does_file_exist(XANDROS_AUTOFS_FNAME)) {
1349 strcpy(g_autofs_exe, XANDROS_AUTOFS_FNAME);
1350 } else if (does_file_exist(STOCK_AUTOFS_FNAME)) {
1351 strcpy(g_autofs_exe, STOCK_AUTOFS_FNAME);
1352 }
1353
1354 if (!g_autofs_exe[0]) {
1355 log_msg(3, "No autofs detected.");
1356 } else {
1357 log_msg(3, "%s --- autofs detected", g_autofs_exe);
1358// FIXME -- only disable it if it's running --- sprintf(tmp, "%s status", autofs_exe);
1359 sprintf(tmp, "%s stop", g_autofs_exe);
1360 if (run_program_and_log_output(tmp, 2)) {
1361 log_it("Failed to stop autofs - I assume it wasn't running");
1362 } else {
1363 g_autofs_stopped = TRUE;
1364 log_it("Stopped autofs OK");
1365 }
1366 }
1367}
1368
1369/**
1370 * If autofs was stopped earlier, restart it.
1371 */
1372void restart_autofs_if_necessary()
1373{
1374 char tmp[MAX_STR_LEN];
1375
1376 if (!g_autofs_stopped || !g_autofs_exe[0]) {
1377 log_msg(3, "No autofs detected.");
1378 return;
1379 }
1380 sprintf(tmp, "%s start", g_autofs_exe);
1381 if (run_program_and_log_output(tmp, 2)) {
1382 log_it("Failed to start autofs");
1383 } else {
1384 g_autofs_stopped = FALSE;
1385 log_it("Started autofs OK");
1386 }
1387}
1388
1389
1390/**
1391 * If this is a distribution like Gentoo that doesn't keep /boot mounted, mount it.
1392 */
1393void mount_boot_if_necessary()
1394{
1395 char tmp[MAX_STR_LEN];
1396 char command[MAX_STR_LEN];
1397
1398 log_msg(1, "Started sub");
1399 log_msg(4, "About to set g_boot_mountpt[0] to '\\0'");
1400 g_boot_mountpt[0] = '\0';
1401 log_msg(4, "Done. Great. Seeting command to something");
1402 strcpy(command,
1403 "grep -v \":\" /etc/fstab | grep -vE '^#.*$' | grep -E \"[ ]/boot[ ]\" | tr -s ' ' '\t' | cut -f1 | head -n1");
1404 log_msg(4, "Cool. Command = '%s'", command);
1405 strcpy(tmp, call_program_and_get_last_line_of_output(command));
1406 log_msg(4, "tmp = '%s'", tmp);
1407 if (tmp[0]) {
1408 log_it("/boot is at %s according to /etc/fstab", tmp);
1409 if (strstr(tmp, "LABEL=")) {
1410 if (!run_program_and_log_output("mount /boot", 5)) {
1411 strcpy(g_boot_mountpt, "/boot");
1412 log_msg(1, "Mounted /boot");
1413 } else {
1414 log_it("...ignored cos it's a label :-)");
1415 }
1416 } else {
1417 sprintf(command, "mount | grep -E '^%s'", tmp);
1418 log_msg(3, "command = %s", command);
1419 if (run_program_and_log_output(command, 5)) {
1420 strcpy(g_boot_mountpt, tmp);
1421 sprintf(tmp,
1422 "%s (your /boot partition) is not mounted. I'll mount it before backing up",
1423 g_boot_mountpt);
1424 log_it(tmp);
1425 sprintf(tmp, "mount %s", g_boot_mountpt);
1426 if (run_program_and_log_output(tmp, 5)) {
1427 g_boot_mountpt[0] = '\0';
1428 log_msg(1, "Plan B");
1429 if (!run_program_and_log_output("mount /boot", 5)) {
1430 strcpy(g_boot_mountpt, "/boot");
1431 log_msg(1, "Plan B worked");
1432 } else {
1433 log_msg(1,
1434 "Plan B failed. Unable to mount /boot for backup purposes. This probably means /boot is mounted already, or doesn't have its own partition.");
1435 }
1436 }
1437 }
1438 }
1439 }
1440 log_msg(1, "Ended sub");
1441}
1442
1443
1444/**
1445 * If we mounted /boot earlier, unmount it.
1446 */
1447void unmount_boot_if_necessary()
1448{
1449 char tmp[MAX_STR_LEN];
1450
1451 log_msg(3, "starting");
1452 if (g_boot_mountpt[0]) {
1453 sprintf(tmp, "umount %s", g_boot_mountpt);
1454 if (run_program_and_log_output(tmp, 5)) {
1455 log_it("WARNING - unable to unmount /boot");
1456 }
1457 }
1458 log_msg(3, "leaving");
1459}
1460
1461
1462
1463/**
1464 * Write a line to a configuration file. Writes a line of the form,
1465 * @c label @c value.
1466 * @param config_file The file to write to. Usually @c mondo-restore.cfg.
1467 * @param label What to call this bit of data you're writing.
1468 * @param value The bit of data you're writing.
1469 * @return 0 for success, 1 for failure.
1470 */
1471int write_cfg_var(char *config_file, char *label, char *value)
1472{
1473 /*@ buffers ***************************************************** */
1474 char command[MAX_STR_LEN * 2];
1475 char tempfile[MAX_STR_LEN];
1476 char tmp[MAX_STR_LEN];
1477
1478
1479 /*@ end vars *************************************************** */
1480 assert_string_is_neither_NULL_nor_zerolength(config_file);
1481 assert_string_is_neither_NULL_nor_zerolength(label);
1482 assert(value != NULL);
1483 if (!does_file_exist(config_file)) {
1484 sprintf(tmp, "(write_cfg_file) Cannot find %s config file",
1485 config_file);
1486 log_to_screen(tmp);
1487 return (1);
1488 }
1489 strcpy(tempfile,
1490 call_program_and_get_last_line_of_output
1491 ("mktemp -q /tmp/mojo-jojo.blah.XXXXXX"));
1492 if (does_file_exist(config_file)) {
1493 sprintf(command, "grep -vE '^%s .*$' %s > %s",
1494 label, config_file, tempfile);
1495 paranoid_system(command);
1496 }
1497 sprintf(command, "echo \"%s %s\" >> %s", label, value, tempfile);
1498 paranoid_system(command);
1499 sprintf(command, "mv -f %s %s", tempfile, config_file);
1500 paranoid_system(command);
1501 unlink(tempfile);
1502 return (0);
1503}
1504
1505
1506/**
1507 * The standard log_debug_msg() (log_msg() also due to a macro). Writes some describing
1508 * information to the logfile.
1509 */
1510void standard_log_debug_msg(int debug_level, const char *szFile,
1511 const char *szFunction, int nLine,
1512 const char *fmt, ...)
1513{
1514 va_list args;
1515 int i;
1516 static int depth = 0;
1517 char *tmp;
1518 FILE *fout;
1519
1520 if (depth > 5) {
1521 depth--;
1522 return;
1523 }
1524 depth++;
1525
1526 malloc_string(tmp);
1527
1528 if (debug_level <= g_loglevel) {
1529 va_start(args, fmt);
1530 if (!(fout = fopen(MONDO_LOGFILE, "a"))) {
1531 return;
1532 } // fatal_error("Failed to openout to logfile - sheesh..."); }
1533
1534 // add tabs to distinguish log levels
1535 if (debug_level > 0) {
1536 for (i = 1; i < debug_level; i++)
1537 fprintf(fout, "\t");
1538 if (getpid() == g_main_pid)
1539 fprintf(fout, "[Main] %s->%s#%d: ", szFile, szFunction,
1540 nLine);
1541 else if (getpid() == g_buffer_pid && g_buffer_pid > 0)
1542 fprintf(fout, "[Buff] %s->%s#%d: ", szFile, szFunction,
1543 nLine);
1544 else
1545 fprintf(fout, "[TH=%d] %s->%s#%d: ", getpid(), szFile,
1546 szFunction, nLine);
1547 }
1548 vfprintf(fout, fmt, args);
1549
1550 // do not slow down the progran if standard debug level
1551 // must be enabled: if no flush, the log won't be up-to-date if there
1552 // is a segfault
1553 //if (g_dwDebugLevel != 1)
1554
1555 va_end(args);
1556 fprintf(fout, "\n");
1557 paranoid_fclose(fout);
1558 }
1559 depth--;
1560 paranoid_free(tmp);
1561}
1562
1563/**
1564 * Function pointer to the @c log_debug_msg function to use. Points to standard_log_debug_msg() by default.
1565 */
1566void (*log_debug_msg) (int, const char *, const char *, int, const char *,
1567 ...) = standard_log_debug_msg;
1568
1569
1570/**
1571 * If @p y, malloc @p x, else free @p x.
1572 * @bug This function seems orphaned. Please remove.
1573 */
1574#define do_alloc_or_free_depending(x,y) { if(y) {x=malloc(MAX_STR_LEN);} else {paranoid_free(x);} }
1575
1576/**
1577 * Allocate or free important globals, depending on @p mal.
1578 * @param mal If TRUE, malloc; if FALSE, free.
1579 */
1580void do_libmondo_global_strings_thing(int mal)
1581{
1582 if (mal) {
1583 iamhere("Malloc'ing globals");
1584 malloc_string(g_boot_mountpt);
1585 malloc_string(g_mondo_home);
1586 malloc_string(g_tmpfs_mountpt);
1587 malloc_string(g_erase_tmpdir_and_scratchdir);
1588 malloc_string(g_serial_string);
1589 malloc_string(g_magicdev_command);
1590 } else {
1591 iamhere("Freeing globals");
1592 paranoid_free(g_boot_mountpt);
1593 paranoid_free(g_mondo_home);
1594 paranoid_free(g_tmpfs_mountpt);
1595 paranoid_free(g_erase_tmpdir_and_scratchdir);
1596 paranoid_free(g_serial_string);
1597 paranoid_free(g_magicdev_command);
1598 }
1599
1600 /*
1601 char**list_of_arrays[] = {
1602 &g_boot_mountpt,
1603 &g_mondo_home,
1604 &g_tmpfs_mountpt,
1605 &g_erase_tmpdir_and_scratchdir,
1606 &g_serial_string,
1607 &g_magicdev_command,
1608 NULL};
1609
1610 char**ppcurr;
1611 int i;
1612
1613 for(i=0;list_of_arrays[i];i++)
1614 {
1615 log_msg(5, "Allocating %d", i);
1616 ppcurr = list_of_arrays[i];
1617 if (mal)
1618 { *ppcurr = malloc(MAX_STR_LEN); }
1619 else
1620 {
1621 if (*ppcurr)
1622 {
1623 free(*ppcurr);
1624 }
1625 }
1626 }
1627 log_msg(5, "Returning");
1628 */
1629}
1630
1631/**
1632 * Allocate important globals.
1633 * @see do_libmondo_global_strings_thing
1634 */
1635void malloc_libmondo_global_strings(void)
1636{
1637 do_libmondo_global_strings_thing(1);
1638}
1639
1640/**
1641 * Free important globals.
1642 * @see do_libmondo_global_strings_thing
1643 */
1644void free_libmondo_global_strings(void)
1645{
1646 do_libmondo_global_strings_thing(0);
1647}
1648
1649
1650
1651/**
1652 * Stop @c magicdev if it's running.
1653 * The command used to start it is saved in @p g_magicdev_command.
1654 */
1655void stop_magicdev_if_necessary()
1656{
1657 strcpy(g_magicdev_command,
1658 call_program_and_get_last_line_of_output
1659 ("ps ax | grep -w magicdev | grep -v grep | tr -s '\t' ' '| cut -d' ' -f6-99"));
1660 if (g_magicdev_command[0]) {
1661 log_msg(1, "g_magicdev_command = '%s'", g_magicdev_command);
1662 paranoid_system("killall magicdev");
1663 }
1664}
1665
1666
1667/**
1668 * Restart magicdev if it was stopped.
1669 */
1670void restart_magicdev_if_necessary()
1671{
1672 char *tmp;
1673
1674 malloc_string(tmp);
1675 if (g_magicdev_command && g_magicdev_command[0]) {
1676 sprintf(tmp, "%s &", g_magicdev_command);
1677 paranoid_system(tmp);
1678 }
1679 paranoid_free(tmp);
1680}
1681
1682/* @} - end of utilityGroup */
Note: See TracBrowser for help on using the repository browser.