source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-tools.c@ 2262

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

r3203@localhost: bruno | 2009-07-06 19:21:29 +0200

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