source: MondoRescue/trunk/mondo/mondo/common/libmondo-tools.c@ 72

Last change on this file since 72 was 72, checked in by andree, 19 years ago

growisofs doesn't like to be called via sudo (there's a lengthy
explanation in the growisofs manpage).

This change checks for this condition in function
post_param_configuration() and gives a fatal error if it is detected.

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