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

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

gettext fixes + last and i int removed (were forgotten)

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