source: MondoRescue/branches/3.3/mondo/src/common/libmondo-tools.c@ 3836

Last change on this file since 3836 was 3836, checked in by Bruno Cornec, 3 months ago

manages isodir dynamically

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