source: MondoRescue/branches/3.2/mondo/src/common/libmondo-tools.c

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