source: MondoRescue/branches/2.2.9/mondo/src/common/libmondo-archive.c@ 2449

Last change on this file since 2449 was 2449, checked in by Bruno Cornec, 15 years ago
  • Adds support for grub2 conf file grub.cfg in addition to menu.lst
  • Property svn:keywords set to Id
File size: 100.7 KB
Line 
1/* libmondo-archive.c
2 $Id: libmondo-archive.c 2449 2009-10-05 23:10:35Z bruno $
3
4subroutines to handle the archiving of files
5*/
6
7/**
8 * @file
9 * Functions to handle backing up data.
10 * This is the main file (at least the longest one) in libmondo.
11 */
12
13#include "my-stuff.h"
14#include "mr_mem.h"
15#include "mondostructures.h"
16#include "libmondo-string-EXT.h"
17#include "libmondo-stream-EXT.h"
18#include "libmondo-devices-EXT.h"
19#include "libmondo-tools-EXT.h"
20#include "libmondo-gui-EXT.h"
21#include "libmondo-fork-EXT.h"
22#include "libmondo-files-EXT.h"
23#include "libmondo-filelist-EXT.h"
24#include "libmondo-tools-EXT.h"
25#include "libmondo-verify-EXT.h"
26#include "libmondo-archive.h"
27#include "lib-common-externs.h"
28#include <sys/sem.h>
29#include <sys/types.h>
30#include <sys/ipc.h>
31#include <stdarg.h>
32#define DVDRWFORMAT 1
33
34
35
36#ifndef _SEMUN_H
37#define _SEMUN_H
38
39 /**
40 * The semaphore union, provided only in case the user's system doesn't.
41 */
42union semun {
43 int val;
44 struct semid_ds *buf;
45 unsigned short int *array;
46 struct seminfo *__buf;
47};
48#endif
49
50/*@unused@*/
51//static char cvsid[] = "$Id: libmondo-archive.c 2449 2009-10-05 23:10:35Z bruno $";
52//
53extern char *get_non_rewind_dev(char *);
54
55/* *************************** external global vars ******************/
56extern int g_current_media_number;
57extern int g_currentY;
58extern bool g_text_mode;
59extern bool g_exiting;
60extern long g_current_progress;
61extern FILE *g_tape_stream;
62extern long long g_tape_posK;
63extern bool g_cd_recovery;
64extern char *g_mondo_home;
65/*
66extern char *g_tmpfs_mountpt;
67*/
68extern char *g_serial_string;
69extern char *g_getfacl;
70extern char *g_getfattr;
71extern char *MONDO_LOGFILE;
72
73/* Reference to global bkpinfo */
74extern struct s_bkpinfo *bkpinfo;
75
76
77/**
78 * @addtogroup globalGroup
79 * @{
80 */
81/**
82 * The current backup media type in use.
83 */
84t_bkptype g_backup_media_type = none;
85
86/**
87 * Incremented by each archival thread when it starts up. After that,
88 * this is the number of threads running.
89 */
90int g_current_thread_no = 0;
91
92/* @} - end of globalGroup */
93
94extern int g_noof_rows;
95
96/* Semaphore-related code */
97
98static int set_semvalue(void);
99static void del_semvalue(void);
100static int semaphore_p(void);
101static int semaphore_v(void);
102
103static int g_sem_id;
104static int g_sem_key;
105
106/**
107 * Initialize the semaphore.
108 * @see del_semvalue
109 * @see semaphore_p
110 * @see semaphore_v
111 * @return 1 for success, 0 for failure.
112 */
113static int set_semvalue(void) // initializes semaphore
114{
115 union semun sem_union;
116 sem_union.val = 1;
117 if (semctl(g_sem_id, 0, SETVAL, sem_union) == -1) {
118 return (0);
119 }
120 return (1);
121}
122
123/**
124 * Frees (deletes) the semaphore. Failure is indicated by a log
125 * message.
126 * @see set_semvalue
127 */
128static void del_semvalue(void) // deletes semaphore
129{
130 union semun sem_union;
131
132 if (semctl(g_sem_id, 0, IPC_RMID, sem_union) == -1) {
133 log_msg(3, "Failed to delete semaphore");
134 }
135}
136
137/**
138 * Acquire (increment) the semaphore (change status to P).
139 * @return 1 for success, 0 for failure.
140 * @see semaphore_v
141 */
142static int semaphore_p(void) // changes status to 'P' (waiting)
143{
144 struct sembuf sem_b;
145
146 sem_b.sem_num = 0;
147 sem_b.sem_op = -1; // P()
148 sem_b.sem_flg = SEM_UNDO;
149 if (semop(g_sem_id, &sem_b, 1) == -1) {
150 log_msg(3, "semaphore_p failed");
151 return (0);
152 }
153 return (1);
154}
155
156/**
157 * Free (decrement) the semaphore (change status to V).
158 * @return 1 for success, 0 for failure.
159 */
160static int semaphore_v(void) // changes status to 'V' (free)
161{
162 struct sembuf sem_b;
163
164 sem_b.sem_num = 0;
165 sem_b.sem_op = 1; // V()
166 sem_b.sem_flg = SEM_UNDO;
167 if (semop(g_sem_id, &sem_b, 1) == -1) {
168 log_msg(3, "semaphore_v failed");
169 return (0);
170 }
171 return (1);
172}
173
174
175//------------------------------------------------------
176
177
178/**
179 * Size in megabytes of the buffer afforded to the executable "buffer".
180 * This figure is used when we calculate how much data we have probably 'lost'
181 * when writing off the end of tape N, so that we can then figure out how much
182 * data we must recreate & write to the start of tape N+1.
183 */
184extern int g_tape_buffer_size_MB;
185
186
187
188
189int
190archive_this_fileset_with_star(char *filelist, char *fname, int setno)
191{
192 int retval = 0;
193 unsigned int res = 0;
194 int tries = 0;
195 char *command = NULL;
196 char *tmp = NULL;
197 char *p;
198
199
200 if (!does_file_exist(filelist)) {
201 mr_asprintf(&tmp, "(archive_this_fileset) - filelist %s does not exist", filelist);
202 log_to_screen(tmp);
203 paranoid_free(tmp);
204 return (1);
205 }
206
207 mr_asprintf(&tmp, "echo hi > %s 2> /dev/null", fname);
208 if (system(tmp)) {
209 paranoid_free(tmp);
210 fatal_error("Unable to write tarball to scratchdir");
211 }
212 paranoid_free(tmp);
213
214 mr_asprintf(&command, "star H=exustar list=%s -c " STAR_ACL_SZ " file=%s",
215 filelist, fname);
216 if (bkpinfo->use_lzo) {
217 fatal_error("Can't use lzop");
218 }
219 if (bkpinfo->compression_level > 0) {
220 mr_strcat(command, " -bz");
221 }
222 mr_strcat(command, " 2>> %s", MONDO_LOGFILE);
223 log_msg(4, "command = '%s'", command);
224
225 for (res = 99, tries = 0; tries < 3 && res != 0; tries++) {
226 log_msg(5, "command='%s'", command);
227 res = system(command);
228 mr_asprintf(&tmp, "%s", last_line_of_file(MONDO_LOGFILE));
229 log_msg(1, "res=%d; tmp='%s'", res, tmp);
230 if (bkpinfo->use_star && (res == 254 || res == 65024)
231 && strstr(tmp, "star: Processed all possible files")
232 && tries > 0) {
233 log_msg(1, "Star returned nonfatal error");
234 res = 0;
235 }
236 paranoid_free(tmp);
237
238 if (res) {
239 log_OS_error(command);
240 p = strstr(command, "-acl ");
241 if (p) {
242 p[0] = p[1] = p[2] = p[3] = ' ';
243 log_msg(1, "new command = '%s'", command);
244 } else {
245 log_msg(3,
246 "Attempt #%d failed. Pausing 3 seconds and retrying...",
247 tries + 1);
248 sleep(3);
249 }
250 }
251 }
252 paranoid_free(command);
253
254 retval += res;
255 if (retval) {
256 log_msg(3, "Failed to write set %d", setno);
257 } else if (tries > 1) {
258 log_msg(3, "Succeeded in writing set %d, on try #%d", setno,
259 tries);
260 }
261 return (retval);
262}
263
264
265/**
266 * Call @c afio to archive the filelist @c filelist to the file @c fname.
267 *
268 * @param bkpinfo The backup information structure. Fields used:
269 * - @c compression_level
270 * - @c scratchdir (only verifies existence)
271 * - @c tmpdir (only verifies existence)
272 * - @c zip_exe
273 * - @c zip_suffix
274 * @param filelist The path to a file containing a list of files to be archived
275 * in this fileset.
276 * @param fname The output file to archive to.
277 * @param setno This fileset number.
278 * @return The number of errors encountered (0 for success).
279 * @ingroup LLarchiveGroup
280 */
281int
282archive_this_fileset(char *filelist, char *fname, int setno)
283{
284
285 /*@ int *************************************************************** */
286 int retval = 0;
287 int res = 0;
288 int tries = 0;
289 /*
290 int i = 0;
291 static int free_ramdisk_space = 9999;
292 */
293
294 /*@ buffers ************************************************************ */
295 char *command = NULL;
296 char *zipparams = NULL;
297 char *tmp = NULL;
298
299 assert(bkpinfo != NULL);
300 assert_string_is_neither_NULL_nor_zerolength(filelist);
301 assert_string_is_neither_NULL_nor_zerolength(fname);
302
303 if (bkpinfo->compression_level > 0 && bkpinfo->use_star) {
304 return (archive_this_fileset_with_star(filelist, fname, setno));
305 }
306
307 if (!does_file_exist(filelist)) {
308 mr_asprintf(&tmp, "(archive_this_fileset) - filelist %s does not exist",
309 filelist);
310 log_to_screen(tmp);
311 paranoid_free(tmp);
312 return (1);
313 }
314 mr_asprintf(&tmp, "echo hi > %s 2> /dev/null", fname);
315 if (system(tmp)) {
316 paranoid_free(tmp);
317 fatal_error("Unable to write tarball to scratchdir");
318 }
319 paranoid_free(tmp);
320
321
322 if (bkpinfo->compression_level > 0) {
323 mr_asprintf(&tmp, "%s/do-not-compress-these", g_mondo_home);
324 // -b %ld, TAPE_BLOCK_SIZE
325 mr_asprintf(&zipparams, "-Z -P %s -G %d -T 3k", bkpinfo->zip_exe,
326 bkpinfo->compression_level);
327 if (does_file_exist(tmp)) {
328 mr_strcat(zipparams, " -E %s",tmp);
329 } else {
330 log_msg(3, "%s not found. Cannot exclude zipfiles, etc.", tmp);
331 }
332 paranoid_free(tmp);
333 } else {
334 mr_asprintf(&zipparams, "");
335 }
336
337// make_hole_for_file(fname);
338
339 if (!does_file_exist(bkpinfo->tmpdir)) {
340 log_OS_error("tmpdir not found");
341 fatal_error("tmpdir not found");
342 }
343 if (!does_file_exist(bkpinfo->scratchdir)) {
344 log_OS_error("scratchdir not found");
345 fatal_error("scratchdir not found");
346 }
347 mr_asprintf(&command, "rm -f %s %s. %s.gz %s.%s", fname, fname, fname,
348 fname, bkpinfo->zip_suffix);
349 paranoid_system(command);
350 paranoid_free(command);
351
352 mr_asprintf(&command, "afio -o -b %ld -M 16m %s %s < %s 2>> %s",
353 TAPE_BLOCK_SIZE, zipparams, fname, filelist, MONDO_LOGFILE);
354 paranoid_free(zipparams);
355
356 mr_asprintf(&tmp, "echo hi > %s 2> /dev/null", fname);
357 if (system(tmp)) {
358 paranoid_free(tmp);
359 fatal_error("Unable to write tarball to scratchdir");
360 }
361 paranoid_free(tmp);
362
363 for (res = 99, tries = 0; tries < 3 && res != 0; tries++) {
364 log_msg(5, "command='%s'", command);
365 res = system(command);
366 if (res) {
367 log_OS_error(command);
368 log_msg(3,
369 "Attempt #%d failed. Pausing 3 seconds and retrying...",
370 tries + 1);
371 sleep(3);
372 }
373 }
374 paranoid_free(command);
375
376 retval += res;
377 if (retval) {
378 log_msg(3, "Failed to write set %d", setno);
379 } else if (tries > 1) {
380 log_msg(3, "Succeeded in writing set %d, on try #%d", setno,
381 tries);
382 }
383
384 return (retval);
385}
386
387
388
389
390
391
392/**
393 * Wrapper function for all the backup commands.
394 * Calls these other functions: @c prepare_filelist(),
395 * @c call_filelist_chopper(), @c copy_mondo_and_mindi_stuff_to_scratchdir(),
396 * @c call_mindi_to_supply_boot_disks(), @c do_that_initial_phase(),
397 * @c make_those_afios_phase(), @c make_those_slices_phase(), and
398 * @c do_that_final_phase(). If anything fails before @c do_that_initial_phase(),
399 * @c fatal_error is called with a suitable message.
400 * @param bkpinfo The backup information structure. Uses most fields.
401 * @return The number of non-fatal errors encountered (0 for success).
402 * @ingroup archiveGroup
403 */
404int backup_data()
405{
406 int retval = 0, res = 0;
407 char *tmp;
408
409 assert(bkpinfo != NULL);
410 set_g_cdrom_and_g_dvd_to_bkpinfo_value();
411 malloc_string(tmp);
412 if (bkpinfo->backup_media_type == dvd) {
413#ifdef DVDRWFORMAT
414 if (!find_home_of_exe("dvd+rw-format")) {
415 fatal_error
416 ("Cannot find dvd+rw-format. Please install it or fix your PATH.");
417 }
418#endif
419 if (!find_home_of_exe("growisofs")) {
420 fatal_error
421 ("Cannot find growisofs. Please install it or fix your PATH.");
422 }
423 }
424
425 if ((res = prepare_filelist())) { /* generate scratchdir/filelist.full */
426 fatal_error("Failed to generate filelist catalog");
427 }
428 if (call_filelist_chopper()) {
429 fatal_error("Failed to run filelist chopper");
430 }
431
432/*
433 sprintf(tmp, "wc -l %s/archives/filelist.full > %s/archives/filelist.count",bkpinfo->scratchdir, bkpinfo->scratchdir);
434 if (run_program_and_log_output(tmp, 2))
435 { fatal_error("Failed to count filelist.full"); }
436*/
437 sprintf(tmp, "gzip -9 %s/archives/filelist.full", bkpinfo->scratchdir);
438 if (run_program_and_log_output(tmp, 2)) {
439 fatal_error("Failed to gzip filelist.full");
440 }
441 sprintf(tmp, "cp -f %s/archives/*list*.gz %s", bkpinfo->scratchdir,
442 bkpinfo->tmpdir);
443 if (run_program_and_log_output(tmp, 2)) {
444 fatal_error("Failed to copy to tmpdir");
445 }
446
447 copy_mondo_and_mindi_stuff_to_scratchdir(); // payload, too, if it exists
448#if __FreeBSD__ == 5
449 strcpy(bkpinfo->kernel_path, "/boot/kernel/kernel");
450#elif __FreeBSD__ == 4
451 strcpy(bkpinfo->kernel_path, "/kernel");
452#elif linux
453 if (figure_out_kernel_path_interactively_if_necessary
454 (bkpinfo->kernel_path)) {
455 fatal_error
456 ("Kernel not found. Please specify manually with the '-k' switch.");
457 }
458#else
459#error "I don't know about this system!"
460#endif
461 if ((res = call_mindi_to_supply_boot_disks())) {
462 fatal_error("Failed to generate boot+data disks");
463 }
464 retval += do_that_initial_phase(); // prepare
465 sprintf(tmp, "rm -f %s/images/*.iso", bkpinfo->scratchdir);
466 run_program_and_log_output(tmp, 1);
467 retval += make_those_afios_phase(); // backup regular files
468 retval += make_those_slices_phase(); // backup BIG files
469 retval += do_that_final_phase(); // clean up
470 log_msg(1, "Creation of archives... complete.");
471 if (bkpinfo->verify_data) {
472 sleep(2);
473 }
474 paranoid_free(tmp);
475 return (retval);
476}
477
478
479
480
481/**
482 * Call Mindi to generate boot and data disks.
483 * @note This binds correctly to the new Perl version of mindi.
484 * @param bkpinfo The backup information structure. Fields used:
485 * - @c backup_media_type
486 * - @c boot_loader
487 * - @c boot_device
488 * - @c compression_level
489 * - @c differential
490 * - @c exclude_paths
491 * - @c image_devs
492 * - @c kernel_path
493 * - @c make_cd_use_lilo
494 * - @c media_device
495 * - @c media_size
496 * - @c nonbootable_backup
497 * - @c scratchdir
498 * - @c tmpdir
499 * - @c use_lzo
500 *
501 * @return The number of errors encountered (0 for success)
502 * @bug The code to automagically determine the boot drive
503 * is messy and system-dependent. In particular, it breaks
504 * for Linux RAID and LVM users.
505 * @ingroup MLarchiveGroup
506 */
507int call_mindi_to_supply_boot_disks()
508{
509 /*@ buffer ************************************************************ */
510 char *tmp = NULL;
511 char *tmp1 = NULL;
512 char *tmp2 = NULL;
513 char *command = NULL;
514 char *use_lzo_sz = NULL;
515 char *use_gzip_sz = NULL;
516 char *use_comp_sz = NULL;
517 char *use_star_sz = NULL;
518 char *bootldr_str = NULL;
519 char *tape_device = NULL;
520 char *last_filelist_number = NULL;
521 char *broken_bios_sz = NULL;
522 char *cd_recovery_sz = NULL;
523 char *tape_size_sz = NULL;
524 char *use_lilo_sz = NULL; /* BCO: shared between LILO/ELILO */
525 char *value = NULL;
526 char *bootdev = NULL;
527 char *ntapedev = NULL;
528
529
530
531 /*@ char ************************************************************** */
532 char ch = '\0';
533
534 /*@ long ********************************************************** */
535 long lines_in_filelist = 0;
536
537 /*@ int ************************************************************* */
538 int res = 0;
539 long estimated_total_noof_slices = 0;
540
541 assert(bkpinfo != NULL);
542
543 mvaddstr_and_log_it(g_currentY, 0,
544 "Calling MINDI to create boot+data disks");
545 mr_asprintf(&tmp, "%s/filelist.full", bkpinfo->tmpdir);
546 if (!does_file_exist(tmp)) {
547 mr_free(tmp);
548 mr_asprintf(&tmp, "%s/tmpfs/filelist.full", bkpinfo->tmpdir);
549 if (!does_file_exist(tmp)) {
550 fatal_error
551 ("Cannot find filelist.full, so I cannot count its lines");
552 }
553 }
554 lines_in_filelist = count_lines_in_file(tmp);
555 mr_free(tmp);
556
557 mr_asprintf(&tmp, "%s/LAST-FILELIST-NUMBER", bkpinfo->tmpdir);
558 mr_asprintf(&last_filelist_number, "%s", last_line_of_file(tmp));
559 mr_free(tmp);
560
561 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
562 mr_asprintf(&tape_size_sz, "%ld", bkpinfo->media_size[1]);
563 ntapedev = get_non_rewind_dev(bkpinfo->media_device);
564 if ((bkpinfo->use_obdr) && (ntapedev != NULL)) {
565 strncpy(bkpinfo->media_device,ntapedev,(size_t)(MAX_STR_LEN / 4));
566 } else {
567 if (ntapedev == NULL) {
568 log_it("Not able to create OBDR - Restore will have to be done manually");
569 }
570 }
571 paranoid_free(ntapedev);
572 mr_asprintf(&tape_device, "%s", bkpinfo->media_device);
573 } else {
574 mr_asprintf(&tape_size_sz, "%ld", 0L);;
575 mr_asprintf(&tape_device, "");
576 }
577 if (bkpinfo->use_lzo) {
578 mr_asprintf(&use_lzo_sz, "yes");
579 } else {
580 mr_asprintf(&use_lzo_sz, "no");
581 }
582 if (bkpinfo->use_gzip) {
583 mr_asprintf(&use_gzip_sz, "yes");
584 } else {
585 mr_asprintf(&use_gzip_sz, "no");
586 }
587 if (bkpinfo->use_star) {
588 mr_asprintf(&use_star_sz, "yes");
589 } else {
590 mr_asprintf(&use_star_sz, "no");
591 }
592
593 if (bkpinfo->compression_level > 0) {
594 mr_asprintf(&use_comp_sz, "yes");
595 } else {
596 mr_asprintf(&use_comp_sz, "no");
597 }
598
599 mr_asprintf(&broken_bios_sz, "yes"); /* assume so */
600 if (g_cd_recovery) {
601 mr_asprintf(&cd_recovery_sz, "yes");
602 } else {
603 mr_asprintf(&cd_recovery_sz, "no");
604 }
605 if (bkpinfo->make_cd_use_lilo) {
606 mr_asprintf(&use_lilo_sz, "yes");
607 } else {
608 mr_asprintf(&use_lilo_sz, "no");
609 }
610
611 if (!bkpinfo->nonbootable_backup
612 && (bkpinfo->boot_loader == '\0'
613 || bkpinfo->boot_device[0] == '\0')) {
614
615#ifdef __FreeBSD__
616 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
617 ("mount | grep ' /boot ' | head -1 | cut -d' ' -f1 | sed 's/\\([0-9]\\).*/\\1/'"));
618 if (!bootdev[0]) {
619 mr_free(bootdev);
620 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
621 ("mount | grep ' / ' | head -1 | cut -d' ' -f1 | sed 's/\\([0-9]\\).*/\\1/'"));
622 }
623#else
624 /* Linux */
625#ifdef __IA64__
626 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
627 ("mount | grep ' /boot/efi ' | head -1 | cut -d' ' -f1 | sed 's/[0-9].*//'"));
628#else
629 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
630 ("mount | grep ' /boot ' | head -1 | cut -d' ' -f1 | sed 's/[0-9].*//'"));
631#endif
632 if (strstr(bootdev, "/dev/cciss/")) {
633 mr_free(bootdev);
634#ifdef __IA64__
635 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
636 ("mount | grep ' /boot/efi ' | head -1 | cut -d' ' -f1 | cut -dp -f1"));
637#else
638 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
639 ("mount | grep ' /boot ' | head -1 | cut -d' ' -f1 | cut -dp -f1"));
640#endif
641 }
642 if (!bootdev[0]) {
643 mr_free(bootdev);
644 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
645 ("mount | grep ' / ' | head -1 | cut -d' ' -f1 | sed 's/[0-9].*//'"));
646 if (strstr(bootdev, "/dev/cciss/")) {
647 mr_free(bootdev);
648 mr_asprintf(&bootdev, "%s", call_program_and_get_last_line_of_output
649 ("mount | grep ' / ' | head -1 | cut -d' ' -f1 | cut -dp -f1"));
650 }
651 }
652 /* Linux */
653#endif
654 if (bootdev[0])
655 ch = which_boot_loader(bootdev);
656 else
657 ch = 'U';
658 if (bkpinfo->boot_loader != '\0') {
659 mr_asprintf(&tmp, "User specified boot loader. It is '%c'.", bkpinfo->boot_loader);
660 log_msg(2, tmp);
661 mr_free(tmp);
662 } else {
663 bkpinfo->boot_loader = ch;
664 }
665 if (bkpinfo->boot_device[0] != '\0') {
666 mr_asprintf(&tmp, "User specified boot device. It is '%s'.", bkpinfo->boot_device);
667 log_msg(2, tmp);
668 mr_free(tmp);
669 } else {
670 strcpy(bkpinfo->boot_device, bootdev);
671 }
672 }
673 mr_free(bootdev);
674
675 if (
676#ifdef __FreeBSD__
677 bkpinfo->boot_loader != 'B' && bkpinfo->boot_loader != 'D' &&
678#endif
679#ifdef __IA64__
680 bkpinfo->boot_loader != 'E' &&
681#endif
682 bkpinfo->boot_loader != 'L' && bkpinfo->boot_loader != 'G'
683 && bkpinfo->boot_loader != 'R'
684 && !bkpinfo->nonbootable_backup) {
685 fatal_error
686 ("Please specify your boot loader and device, e.g. -l GRUB -f /dev/hda. Type 'man mondoarchive' to read the manual.");
687 }
688 if (bkpinfo->boot_loader == 'L') {
689 mr_asprintf(&bootldr_str, "LILO");
690 if (!does_file_exist("/etc/lilo.conf")) {
691 fatal_error
692 ("The de facto standard location for your boot loader's config file is /etc/lilo.conf but I cannot find it there. What is wrong with your Linux distribution?");
693 }
694 } else if (bkpinfo->boot_loader == 'G') {
695 mr_asprintf(&bootldr_str, "GRUB");
696 if (!does_file_exist("/boot/grub/menu.lst")
697 && does_file_exist("/boot/grub/grub.conf")) {
698 run_program_and_log_output
699 ("ln -sf /boot/grub/grub.conf /boot/grub/menu.lst", 5);
700 }
701 if ((!does_file_exist("/boot/grub/menu.lst")) || (!does_file_exist("/boot/grub/grub.cfg"))) {
702 fatal_error
703 ("The de facto standard location for your boot loader's config file is /boot/grub/menu.lst /boot/grub/grub.cfg or but I cannot find it there. What is wrong with your Linux distribution?");
704 }
705 } else if (bkpinfo->boot_loader == 'E') {
706 mr_asprintf(&bootldr_str, "ELILO");
707 /* BCO: fix it for Debian, Mandrake, ... */
708 if (!does_file_exist("/etc/elilo.conf")
709 && does_file_exist("/boot/efi/efi/redhat/elilo.conf")) {
710 run_program_and_log_output
711 ("ln -sf /boot/efi/efi/redhat/elilo.conf /etc/elilo.conf",
712 5);
713 }
714 if (!does_file_exist("/etc/elilo.conf")
715 && does_file_exist("/boot/efi/efi/SuSE/elilo.conf")) {
716 run_program_and_log_output
717 ("ln -sf /boot/efi/efi/SuSE/elilo.conf /etc/elilo.conf",
718 5);
719 }
720 if (!does_file_exist("/etc/elilo.conf")
721 && does_file_exist("/boot/efi/efi/debian/elilo.conf")) {
722 run_program_and_log_output
723 ("ln -sf /boot/efi/efi/debian/elilo.conf /etc/elilo.conf",
724 5);
725 }
726 if (!does_file_exist("/etc/elilo.conf")
727 && does_file_exist("/boot/efi/debian/elilo.conf")) {
728 run_program_and_log_output
729 ("ln -sf /boot/efi/debian/elilo.conf /etc/elilo.conf",
730 5);
731 }
732 if (!does_file_exist("/etc/elilo.conf")) {
733 fatal_error
734 ("The de facto mondo standard location for your boot loader's config file is /etc/elilo.conf but I cannot find it there. What is wrong with your Linux distribution? Try finding it under /boot/efi and do 'ln -s /boot/efi/..../elilo.conf /etc/elilo.conf'");
735 }
736 } else if (bkpinfo->boot_loader == 'R') {
737 mr_asprintf(&bootldr_str, "RAW");
738 }
739#ifdef __FreeBSD__
740 else if (bkpinfo->boot_loader == 'D') {
741 mr_asprintf(&bootldr_str, "DD");
742 }
743
744 else if (bkpinfo->boot_loader == 'B') {
745 mr_asprintf(&bootldr_str, "BOOT0");
746 }
747#endif
748 else {
749 mr_asprintf(&bootldr_str, "unknown");
750 }
751 mr_asprintf(&tmp, "Your boot loader is %s and it boots from %s", bootldr_str, bkpinfo->boot_device);
752 log_to_screen(tmp);
753 mr_free(tmp);
754
755 mr_asprintf(&tmp, "%s/BOOTLOADER.DEVICE", bkpinfo->tmpdir);
756 if (write_one_liner_data_file(tmp, bkpinfo->boot_device)) {
757 log_msg(1, "%ld: Unable to write one-liner boot device", __LINE__);
758 }
759 mr_free(tmp);
760
761 switch (bkpinfo->backup_media_type) {
762 case cdr:
763 mr_asprintf(&value, "cdr");
764 break;
765 case cdrw:
766 mr_asprintf(&value, "cdrw");
767 break;
768 case cdstream:
769 mr_asprintf(&value, "cdstream");
770 break;
771 case tape:
772 mr_asprintf(&value, "tape");
773 break;
774 case udev:
775 mr_asprintf(&value, "udev");
776 break;
777 case iso:
778 mr_asprintf(&value, "iso");
779 break;
780 case netfs:
781 mr_asprintf(&value, "netfs");
782 break;
783 case dvd:
784 mr_asprintf(&value, "dvd");
785 break;
786 case usb:
787 mr_asprintf(&value, "usb");
788 break;
789 default:
790 fatal_error("Unknown backup_media_type");
791 }
792 if (bkpinfo->backup_media_type == usb) {
793 mr_asprintf(&tmp2, "--usb %s", bkpinfo->media_device);
794 } else {
795 mr_asprintf(&tmp2," ");
796 }
797
798 mr_asprintf(&tmp, "%s/BACKUP-MEDIA-TYPE", bkpinfo->tmpdir);
799 if (write_one_liner_data_file(tmp, value)) {
800 res++;
801 log_msg(1, "%ld: Unable to write one-liner backup-media-type",
802 __LINE__);
803 }
804 mr_free(value);
805 mr_free(tmp);
806
807 mr_asprintf(&tmp, "%s/BOOTLOADER.NAME", bkpinfo->tmpdir);
808 if (write_one_liner_data_file(tmp, bootldr_str)) {
809 res++;
810 log_msg(1, "%ld: Unable to write one-liner bootloader.name",
811 __LINE__);
812 }
813 mr_free(bootldr_str);
814 mr_free(tmp);
815
816 mr_asprintf(&tmp, "%s/DIFFERENTIAL", bkpinfo->tmpdir);
817 if (bkpinfo->differential) {
818 res += write_one_liner_data_file(tmp, "1");
819 } else {
820 res += write_one_liner_data_file(tmp, "0");
821 }
822 mr_free(tmp);
823
824 if (g_getfattr) {
825 mr_asprintf(&tmp1, "%s/XATTR", bkpinfo->tmpdir);
826 if (write_one_liner_data_file(tmp1, "TRUE")) {
827 log_msg(1, "%ld: Unable to write one-liner XATTR",
828 __LINE__);
829 }
830 paranoid_free(tmp1);
831 }
832 if (g_getfacl) {
833 mr_asprintf(&tmp1, "%s/ACL", bkpinfo->tmpdir);
834 if (write_one_liner_data_file(tmp1, "TRUE")) {
835 log_msg(1, "%ld: Unable to write one-liner ACL",
836 __LINE__);
837 }
838 paranoid_free(tmp1);
839 }
840 if (bkpinfo->use_obdr) {
841 mr_asprintf(&tmp1, "%s/OBDR", bkpinfo->tmpdir);
842 if (write_one_liner_data_file(tmp1, "TRUE")) {
843 log_msg(1, "%ld: Unable to write one-liner OBDR",
844 __LINE__);
845 }
846 paranoid_free(tmp1);
847 }
848
849 estimated_total_noof_slices =
850 size_of_all_biggiefiles_K(bkpinfo) / bkpinfo->optimal_set_size + 1;
851 /* add netfs stuff here? */
852 mr_asprintf(&command, "mkdir -p %s/images", bkpinfo->scratchdir);
853 if (system(command)) {
854 res++;
855 log_OS_error("Unable to make images directory");
856 }
857 paranoid_free(command);
858 log_msg(1, "lines_in_filelist = %ld", lines_in_filelist);
859
860/* "mindi --custom 2=%s 3=%s/images 4=\"%s\" 5=\"%s\" \
8616=\"%s\" 7=%ld 8=\"%s\" 9=\"%s\" 10=\"%s\" \
86211=\"%s\" 12=%s 13=%ld 14=\"%s\" 15=\"%s\" 16=\"%s\" 17=\"%s\" 18=%ld 19=%d",*/
863 mr_asprintf(&command, "mindi %s --custom %s %s/images '%s' '%s' \
864'%s' %ld '%s' '%s' '%s' \
865'%s' %s %ld '%s' '%s' '%s' '%s' %ld %d '%s'", tmp2, bkpinfo->tmpdir, // parameter #2
866 bkpinfo->scratchdir, // parameter #3
867 bkpinfo->kernel_path, // parameter #4
868 tape_device, // parameter #5
869 tape_size_sz, // parameter #6
870 lines_in_filelist, // parameter #7 (INT)
871 use_lzo_sz, // parameter #8
872 cd_recovery_sz, // parameter #9
873 bkpinfo->image_devs, // parameter #10
874 broken_bios_sz, // parameter #11
875 last_filelist_number, // parameter #12 (STRING)
876 estimated_total_noof_slices, // parameter #13 (INT)
877 (bkpinfo->exclude_devs == NULL) ? "\"\"" : bkpinfo->exclude_devs, // parameter #14
878 use_comp_sz, // parameter #15
879 use_lilo_sz, // parameter #16
880 use_star_sz, // parameter #17
881 bkpinfo->internal_tape_block_size, // parameter #18 (LONG)
882 bkpinfo->differential, // parameter #19 (INT)
883 use_gzip_sz); // parameter #20 (STRING)
884
885 mr_free(last_filelist_number);
886 mr_free(tape_device);
887 mr_free(use_lzo_sz);
888 mr_free(use_gzip_sz);
889 mr_free(use_star_sz);
890 mr_free(use_comp_sz);
891 mr_free(broken_bios_sz);
892 mr_free(cd_recovery_sz);
893 mr_free(use_lilo_sz);
894 mr_free(tape_size_sz);
895
896 if (bkpinfo->nonbootable_backup) {
897 mr_strcat(command, " NONBOOTABLE");
898 }
899 log_msg(2, command);
900
901// popup_and_OK("Pausing");
902
903 res = run_program_and_log_to_screen(command, "Generating boot+data disks");
904 paranoid_free(command);
905
906 if (bkpinfo->nonbootable_backup) {
907 res = 0;
908 } // hack
909 if (!res) {
910 log_to_screen("Boot+data disks were created OK");
911 mr_asprintf(&command, "cp -f %s/images/mindi.iso %s/mondorescue.iso",
912 bkpinfo->scratchdir, MINDI_CACHE);
913 log_msg(2, command);
914 run_program_and_log_output(command, FALSE);
915 paranoid_free(command);
916
917 if (bkpinfo->nonbootable_backup) {
918 mr_asprintf(&command, "cp -f %s/all.tar.gz %s/images",
919 bkpinfo->tmpdir, bkpinfo->scratchdir);
920 if (system(command)) {
921 paranoid_free(command);
922 fatal_error("Unable to create temporary all tarball");
923 }
924 paranoid_free(command);
925 }
926 /* For USB we already have everything on the key */
927 if (bkpinfo->backup_media_type == usb) {
928 mr_asprintf(&command, "rm -rf %s/images", bkpinfo->scratchdir);
929 run_program_and_log_output(command, FALSE);
930 paranoid_free(command);
931 } else {
932 mr_asprintf(&tmp, "cp -f %s/images/all.tar.gz %s", bkpinfo->scratchdir,
933 bkpinfo->tmpdir);
934 if (system(tmp)) {
935 fatal_error("Cannot find all.tar.gz in tmpdir");
936 }
937 mr_free(tmp);
938 }
939 if (res) {
940 mvaddstr_and_log_it(g_currentY++, 74, "Errors.");
941 } else {
942 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
943 }
944 } else {
945 log_to_screen("Mindi failed to create your boot+data disks.");
946 mr_asprintf(&command, "grep 'Fatal error' /var/log/mindi.log");
947 mr_asprintf(&tmp, "%s", call_program_and_get_last_line_of_output(command));
948 paranoid_free(command);
949
950 if (strlen(tmp) > 1) {
951 popup_and_OK(tmp);
952 }
953 mr_free(tmp);
954 }
955 return (res);
956}
957
958
959
960/**
961 * Maximum number of filesets allowed in this function.
962 */
963#define MAX_NOOF_SETS_HERE 32767
964
965/**
966 * Offset of the bkpinfo pointer (in bytes) from the
967 * buffer passed to create_afio_files_in_background.
968 */
969#define BKPINFO_LOC_OFFSET (16+MAX_NOOF_SETS_HERE/8+16)
970
971/**
972 * Main function for each @c afio thread.
973 * @param inbuf A transfer block containing:
974 * - @c p_last_set_archived: [offset 0] pointer to an @c int
975 * containing the last set archived.
976 * - @c p_archival_threads_running: [offset 4] pointer to an @c int
977 * containing the number of archival threads currently running.
978 * - @c p_next_set_to_archive: [offset 8] pointer to an @c int containing
979 * the next set that should be archived.
980 * - @c p_list_of_fileset_flags: [offset 12] @c char pointer pointing to a
981 * bit array, where each bit corresponds to a filelist (1=needs
982 * to be archived, 0=archived).
983 * - @c bkpinfo: [offset BKPINFO_LOC_OFFSET] pointer to backup information
984 * structure. Fields used:
985 * - @c tmpdir
986 * - @c zip_suffix
987 *
988 * Any of the above may be modified by the caller at any time.
989 *
990 * @bug Assumes @c int pointers are 4 bytes.
991 * @see archive_this_fileset
992 * @see make_afioballs_and_images
993 * @return NULL, always.
994 * @ingroup LLarchiveGroup
995 */
996void *create_afio_files_in_background(void *inbuf)
997{
998 long int archiving_set_no;
999 char *archiving_filelist_fname;
1000 char *archiving_afioball_fname;
1001 char *curr_xattr_list_fname = NULL;
1002 char *curr_acl_list_fname;
1003
1004 struct s_bkpinfo *bkpinfo_bis;
1005 char *tmp;
1006 int res = 0, retval = 0;
1007 int *p_archival_threads_running;
1008 int *p_last_set_archived;
1009 int *p_next_set_to_archive;
1010 char *p_list_of_fileset_flags;
1011 int this_thread_no = g_current_thread_no++;
1012
1013 malloc_string(curr_xattr_list_fname);
1014 malloc_string(curr_acl_list_fname);
1015 malloc_string(archiving_filelist_fname);
1016 malloc_string(archiving_afioball_fname);
1017 malloc_string(tmp);
1018 p_last_set_archived = (int *) inbuf;
1019 p_archival_threads_running = (int *) (inbuf + 4);
1020 p_next_set_to_archive = (int *) (inbuf + 8);
1021 p_list_of_fileset_flags = (char *) (inbuf + 12);
1022 bkpinfo_bis = (struct s_bkpinfo *) (inbuf + BKPINFO_LOC_OFFSET);
1023
1024 sprintf(archiving_filelist_fname, FILELIST_FNAME_RAW_SZ,
1025 bkpinfo->tmpdir, 0L);
1026 for (archiving_set_no = 0; does_file_exist(archiving_filelist_fname);
1027 sprintf(archiving_filelist_fname, FILELIST_FNAME_RAW_SZ,
1028 bkpinfo->tmpdir, archiving_set_no)) {
1029 if (g_exiting) {
1030 fatal_error("Execution run aborted (pthread)");
1031 }
1032 if (archiving_set_no >= MAX_NOOF_SETS_HERE) {
1033 fatal_error
1034 ("Maximum number of filesets exceeded. Adjust MAX_NOOF_SETS_HERE, please.");
1035 }
1036 if (!semaphore_p()) {
1037 log_msg(3, "P sem failed (pid=%d)", (int) getpid());
1038 fatal_error("Cannot get semaphore P");
1039 }
1040 if (archiving_set_no < *p_next_set_to_archive) {
1041 archiving_set_no = *p_next_set_to_archive;
1042 }
1043 *p_next_set_to_archive = *p_next_set_to_archive + 1;
1044 if (!semaphore_v()) {
1045 fatal_error("Cannot get semaphore V");
1046 }
1047
1048 /* backup this set of files */
1049 sprintf(archiving_afioball_fname, AFIOBALL_FNAME_RAW_SZ,
1050 bkpinfo->tmpdir, archiving_set_no, bkpinfo->zip_suffix);
1051 sprintf(archiving_filelist_fname, FILELIST_FNAME_RAW_SZ,
1052 bkpinfo->tmpdir, archiving_set_no);
1053 if (!does_file_exist(archiving_filelist_fname)) {
1054 log_msg(3,
1055 "%s[%d:%d] - well, I would archive %d, except that it doesn't exist. I'll stop now.",
1056 FORTY_SPACES, getpid(), this_thread_no,
1057 archiving_set_no);
1058 break;
1059 }
1060
1061 sprintf(tmp, AFIOBALL_FNAME_RAW_SZ, bkpinfo->tmpdir,
1062 archiving_set_no - ARCH_BUFFER_NUM, bkpinfo->zip_suffix);
1063 if (does_file_exist(tmp)) {
1064 log_msg(4, "%s[%d:%d] - waiting for storer", FORTY_SPACES,
1065 getpid(), this_thread_no);
1066 while (does_file_exist(tmp)) {
1067 sleep(1);
1068 }
1069 log_msg(4, "[%d] - continuing", getpid());
1070 }
1071
1072 log_msg(4, "%s[%d:%d] - EXATing %d...", FORTY_SPACES, getpid(),
1073 this_thread_no, archiving_set_no);
1074 if (g_getfattr) {
1075 sprintf(curr_xattr_list_fname, XATTR_LIST_FNAME_RAW_SZ,
1076 bkpinfo->tmpdir, archiving_set_no);
1077 get_fattr_list(archiving_filelist_fname, curr_xattr_list_fname);
1078 }
1079 if (g_getfacl) {
1080 sprintf(curr_acl_list_fname, ACL_LIST_FNAME_RAW_SZ,
1081 bkpinfo->tmpdir, archiving_set_no);
1082 get_acl_list(archiving_filelist_fname, curr_acl_list_fname);
1083 }
1084
1085 log_msg(4, "%s[%d:%d] - archiving %d...", FORTY_SPACES, getpid(),
1086 this_thread_no, archiving_set_no);
1087 res =
1088 archive_this_fileset(archiving_filelist_fname,
1089 archiving_afioball_fname,
1090 archiving_set_no);
1091 retval += res;
1092
1093 if (res) {
1094 sprintf(tmp,
1095 "Errors occurred while archiving set %ld. Please review logs.",
1096 archiving_set_no);
1097 log_to_screen(tmp);
1098 }
1099 if (!semaphore_p()) {
1100 fatal_error("Cannot get semaphore P");
1101 }
1102
1103 set_bit_N_of_array(p_list_of_fileset_flags, archiving_set_no, 5);
1104
1105 if (*p_last_set_archived < archiving_set_no) {
1106 *p_last_set_archived = archiving_set_no;
1107 } // finished archiving this one
1108
1109 if (!semaphore_v()) {
1110 fatal_error("Cannot get semaphore V");
1111 }
1112 log_msg(4, "%s[%d:%d] - archived %d OK", FORTY_SPACES, getpid(),
1113 this_thread_no, archiving_set_no);
1114 archiving_set_no++;
1115 }
1116 if (!semaphore_p()) {
1117 fatal_error("Cannot get semaphore P");
1118 }
1119 (*p_archival_threads_running)--;
1120 if (!semaphore_v()) {
1121 fatal_error("Cannot get semaphore V");
1122 }
1123 log_msg(3, "%s[%d:%d] - exiting", FORTY_SPACES, getpid(),
1124 this_thread_no);
1125 paranoid_free(archiving_filelist_fname);
1126 paranoid_free(archiving_afioball_fname);
1127 paranoid_free(curr_xattr_list_fname);
1128 paranoid_free(curr_acl_list_fname);
1129 paranoid_free(tmp);
1130 pthread_exit(NULL);
1131}
1132
1133
1134
1135
1136
1137/**
1138 * Finalize the backup.
1139 * For streaming backups, this writes the closing block
1140 * to the stream. For CD-based backups, this creates
1141 * the final ISO image.
1142 * @param bkpinfo The backup information structure, used only
1143 * for the @c backup_media_type.
1144 * @ingroup MLarchiveGroup
1145 */
1146int do_that_final_phase()
1147{
1148
1149 /*@ int ************************************** */
1150 int res = 0;
1151 int retval = 0;
1152
1153 /*@ buffers ********************************** */
1154
1155 assert(bkpinfo != NULL);
1156 mvaddstr_and_log_it(g_currentY, 0,
1157 "Writing any remaining data to media ");
1158
1159 log_msg(1, "Closing tape/CD/USB ... ");
1160 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1161 /* write tape/cdstream */
1162 closeout_tape();
1163 } else {
1164 /* write final ISO/USB */
1165 res = write_final_iso_if_necessary();
1166 retval += res;
1167 if (res) {
1168 log_msg(1, "write_final_iso_if_necessary returned an error");
1169 }
1170 }
1171 log_msg(2, "Fork is exiting ... ");
1172
1173 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1174
1175 /* final stuff */
1176 if (retval) {
1177 mvaddstr_and_log_it(g_currentY++, 74, "Errors.");
1178 } else {
1179 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1180 }
1181
1182 return (retval);
1183}
1184
1185
1186/**
1187 * Initialize the backup.
1188 * Does the following:
1189 * - Sets up the serial number.
1190 * - For streaming backups, opens the tape stream and writes the data disks
1191 * and backup headers.
1192 * - For CD-based backups, wipes the ISOs in the target directory.
1193 *
1194 * @param bkpinfo The backup information structure. Fields used:
1195 * - @c backup_media_type
1196 * - @c cdrw_speed
1197 * - @c prefix
1198 * - @c isodir
1199 * - @c media_device
1200 * - @c scratchdir
1201 * - @c tmpdir
1202 * @return The number of errors encountered (0 for success).
1203 * @ingroup MLarchiveGroup
1204 */
1205int do_that_initial_phase()
1206{
1207 /*@ int *************************************** */
1208 int retval = 0;
1209
1210 /*@ buffers *********************************** */
1211 char *command, *tmpfile, *data_disks_file;
1212
1213 assert(bkpinfo != NULL);
1214 malloc_string(command);
1215 malloc_string(tmpfile);
1216 malloc_string(data_disks_file);
1217 sprintf(data_disks_file, "%s/all.tar.gz", bkpinfo->tmpdir);
1218
1219 snprintf(g_serial_string, MAX_STR_LEN - 8, "%s",
1220 call_program_and_get_last_line_of_output("dd \
1221if=/dev/urandom bs=16 count=1 2> /dev/null | \
1222hexdump | tr -s ' ' '0' | head -n1"));
1223 strip_spaces(g_serial_string);
1224 strcat(g_serial_string, "...word.");
1225 log_msg(2, "g_serial_string = '%s'", g_serial_string);
1226 assert(strlen(g_serial_string) < MAX_STR_LEN);
1227
1228 sprintf(tmpfile, "%s/archives/SERIAL-STRING", bkpinfo->scratchdir);
1229 if (write_one_liner_data_file(tmpfile, g_serial_string)) {
1230 log_msg(1, "%ld: Failed to write serial string", __LINE__);
1231 }
1232
1233 mvaddstr_and_log_it(g_currentY, 0, "Preparing to archive your data");
1234 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1235 if (bkpinfo->backup_media_type == cdstream) {
1236 openout_cdstream(bkpinfo->media_device, bkpinfo->cdrw_speed);
1237 } else {
1238 openout_tape(); /* sets g_tape_stream */
1239 }
1240 if (!g_tape_stream) {
1241 fatal_error("Cannot open backup (streaming) device");
1242 }
1243 log_msg(1, "Backup (stream) opened OK");
1244 write_data_disks_to_stream(data_disks_file);
1245 } else {
1246 if (bkpinfo->backup_media_type == usb) {
1247 log_msg(1, "Backing up to USB's");
1248 } else {
1249 log_msg(1, "Backing up to CD's");
1250 }
1251 }
1252
1253 sprintf(command, "rm -f %s/%s/%s-[1-9]*.iso", bkpinfo->isodir,
1254 bkpinfo->netfs_remote_dir, bkpinfo->prefix);
1255 paranoid_system(command);
1256 wipe_archives(bkpinfo->scratchdir);
1257 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
1258 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1259 write_header_block_to_stream((off_t)0, "start-of-tape",
1260 BLK_START_OF_TAPE);
1261 write_header_block_to_stream((off_t)0, "start-of-backup",
1262 BLK_START_OF_BACKUP);
1263 }
1264 paranoid_free(command);
1265 paranoid_free(tmpfile);
1266 paranoid_free(data_disks_file);
1267 return (retval);
1268}
1269
1270
1271/**
1272 * Get the <tt>N</tt>th bit of @c array.
1273 * @param array The bit-array (as a @c char pointer).
1274 * @param N The number of the bit you want.
1275 * @return TRUE (bit is set) or FALSE (bit is not set).
1276 * @see set_bit_N_of_array
1277 * @ingroup utilityGroup
1278 */
1279bool get_bit_N_of_array(char *array, int N)
1280{
1281 int element_number;
1282 int bit_number;
1283 int mask;
1284
1285 element_number = N / 8;
1286 bit_number = N % 8;
1287 mask = 1 << bit_number;
1288 if (array[element_number] & mask) {
1289 return (TRUE);
1290 } else {
1291 return (FALSE);
1292 }
1293}
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303/**
1304 * @addtogroup LLarchiveGroup
1305 * @{
1306 */
1307/**
1308 * Start up threads to archive your files.
1309 *
1310 * This function starts @c ARCH_THREADS threads,
1311 * each starting execution in @c create_afio_files_in_background().
1312 * Each thread will archive individual filesets, based on the
1313 * pointers passed to it and continually updated, until all files
1314 * have been backed up. This function coordinates the threads
1315 * and copies their output to the @c scratchdir.
1316 *
1317 * @param bkpinfo The backup information structure. Fields used:
1318 * - @c backup_media_type
1319 * - @c scratchdir
1320 * - @c tmpdir
1321 * - @c zip_suffix
1322 *
1323 * @return The number of errors encountered (0 for success)
1324 */
1325int make_afioballs_and_images()
1326{
1327
1328 /*@ int ************************************************** */
1329 int retval = 0;
1330 long int storing_set_no = 0;
1331 int res = 0;
1332 bool done_storing = FALSE;
1333 char *result_str;
1334 char *transfer_block;
1335 void *vp;
1336 void **pvp;
1337
1338 /*@ buffers ********************************************** */
1339 char *storing_filelist_fname;
1340 char *storing_afioball_fname;
1341 char *tmp = NULL;
1342 char *media_usage_comment = NULL;
1343 pthread_t archival_thread[ARCH_THREADS];
1344 char *p_list_of_fileset_flags;
1345 int *p_archival_threads_running;
1346 int *p_last_set_archived;
1347 int *p_next_set_to_archive;
1348 int noof_threads;
1349 int i;
1350 char *curr_xattr_list_fname = NULL;
1351 char *curr_acl_list_fname = NULL;
1352 int misc_counter_that_is_not_important = 0;
1353
1354 log_msg(8, "here");
1355 assert(bkpinfo != NULL);
1356 malloc_string(result_str);
1357 malloc_string(curr_xattr_list_fname);
1358 malloc_string(curr_acl_list_fname);
1359 malloc_string(storing_filelist_fname);
1360 malloc_string(storing_afioball_fname);
1361 transfer_block =
1362 malloc(sizeof(struct s_bkpinfo) + BKPINFO_LOC_OFFSET + 64);
1363 memset((void *) transfer_block, 0,
1364 sizeof(struct s_bkpinfo) + BKPINFO_LOC_OFFSET + 64);
1365 p_last_set_archived = (int *) transfer_block;
1366 p_archival_threads_running = (int *) (transfer_block + 4);
1367 p_next_set_to_archive = (int *) (transfer_block + 8);
1368 p_list_of_fileset_flags = (char *) (transfer_block + 12);
1369 memcpy((void *) (transfer_block + BKPINFO_LOC_OFFSET),
1370 (void *) bkpinfo, sizeof(struct s_bkpinfo));
1371 pvp = &vp;
1372 vp = (void *) result_str;
1373 *p_archival_threads_running = 0;
1374 *p_last_set_archived = -1;
1375 *p_next_set_to_archive = 0;
1376 log_to_screen("Archiving regular files");
1377 log_msg(5, "Go, Shorty. It's your birthday.");
1378 open_progress_form("Backing up filesystem",
1379 "I am backing up your live filesystem now.",
1380 "Please wait. This may take a couple of hours.",
1381 "Working...",
1382 get_last_filelist_number() + 1);
1383
1384 log_msg(5, "We're gonna party like it's your birthday.");
1385
1386 srand((unsigned int) getpid());
1387 g_sem_key = 1234 + random() % 30000;
1388 if ((g_sem_id =
1389 semget((key_t) g_sem_key, 1,
1390 IPC_CREAT | S_IREAD | S_IWRITE)) == -1) {
1391 fatal_error("MABAI - unable to semget");
1392 }
1393 if (!set_semvalue()) {
1394 fatal_error("Unable to init semaphore");
1395 } // initialize semaphore
1396 for (noof_threads = 0; noof_threads < ARCH_THREADS; noof_threads++) {
1397 log_msg(8, "Creating thread #%d", noof_threads);
1398 (*p_archival_threads_running)++;
1399 if ((res =
1400 pthread_create(&archival_thread[noof_threads], NULL,
1401 create_afio_files_in_background,
1402 (void *) transfer_block))) {
1403 fatal_error("Unable to create an archival thread");
1404 }
1405 }
1406
1407 log_msg(8, "About to enter while() loop");
1408 while (!done_storing) {
1409 if (g_exiting) {
1410 fatal_error("Execution run aborted (main loop)");
1411 }
1412 if (*p_archival_threads_running == 0
1413 && *p_last_set_archived == storing_set_no - 1) {
1414 log_msg(2,
1415 "No archival threads are running. The last stored set was %d and I'm looking for %d. Take off your make-up; the party's over... :-)",
1416 *p_last_set_archived, storing_set_no);
1417 done_storing = TRUE;
1418 } else
1419 if (!get_bit_N_of_array
1420 (p_list_of_fileset_flags, storing_set_no)) {
1421 misc_counter_that_is_not_important =
1422 (misc_counter_that_is_not_important + 1) % 5;
1423 /* BCO the media_usage_comment is not really initialized there !
1424 if (!misc_counter_that_is_not_important) {
1425 update_progress_form(media_usage_comment);
1426 }
1427 */
1428 sleep(1);
1429 } else
1430 // store set N
1431 {
1432 sprintf(storing_filelist_fname, FILELIST_FNAME_RAW_SZ,
1433 bkpinfo->tmpdir, storing_set_no);
1434 sprintf(storing_afioball_fname, AFIOBALL_FNAME_RAW_SZ,
1435 bkpinfo->tmpdir, storing_set_no, bkpinfo->zip_suffix);
1436 if (g_getfattr) {
1437 sprintf(curr_xattr_list_fname, XATTR_LIST_FNAME_RAW_SZ,
1438 bkpinfo->tmpdir, storing_set_no);
1439 }
1440 if (g_getfacl) {
1441 sprintf(curr_acl_list_fname, ACL_LIST_FNAME_RAW_SZ,
1442 bkpinfo->tmpdir, storing_set_no);
1443 }
1444
1445 log_msg(2, "Storing set %d", storing_set_no);
1446 while (!does_file_exist(storing_filelist_fname)
1447 || !does_file_exist(storing_afioball_fname)) {
1448 log_msg(2,
1449 "Warning - either %s or %s doesn't exist yet. I'll pause 5 secs.",
1450 storing_filelist_fname, storing_afioball_fname);
1451 sleep(5);
1452 }
1453 mr_asprintf(&media_usage_comment, "%s", percent_media_full_comment());
1454 /* copy to CD (scratchdir) ... and an actual CD-R if necessary */
1455 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
1456 register_in_tape_catalog(fileset, storing_set_no, -1,
1457 storing_afioball_fname);
1458 maintain_collection_of_recent_archives(bkpinfo->tmpdir,
1459 storing_afioball_fname);
1460 log_it("Writing EXAT files");
1461 res +=
1462 write_EXAT_files_to_tape(curr_xattr_list_fname,
1463 curr_acl_list_fname);
1464 // archives themselves
1465 res +=
1466 move_files_to_stream(storing_afioball_fname,
1467 NULL);
1468 } else {
1469 if (g_getfacl) {
1470 if (g_getfattr) {
1471 res = move_files_to_cd(storing_filelist_fname,
1472 curr_xattr_list_fname,
1473 curr_acl_list_fname,
1474 storing_afioball_fname, NULL);
1475 } else {
1476 res = move_files_to_cd(storing_filelist_fname,
1477 curr_acl_list_fname,
1478 storing_afioball_fname, NULL);
1479 }
1480 } else {
1481 if (g_getfattr) {
1482 res = move_files_to_cd(storing_filelist_fname,
1483 curr_xattr_list_fname,
1484 storing_afioball_fname, NULL);
1485 } else {
1486 res = move_files_to_cd(storing_filelist_fname,
1487 storing_afioball_fname, NULL);
1488 }
1489 }
1490 }
1491 retval += res;
1492 g_current_progress++;
1493 update_progress_form(media_usage_comment);
1494 mr_free(media_usage_comment);
1495 if (res) {
1496 mr_asprintf(&tmp, "Failed to add archive %ld's files to CD dir\n",
1497 storing_set_no);
1498 log_to_screen(tmp);
1499 paranoid_free(tmp);
1500 fatal_error
1501 ("Is your hard disk full? If not, please send the author the logfile.");
1502 }
1503 storing_set_no++;
1504 // sleep(2);
1505 }
1506 }
1507 close_progress_form();
1508
1509 mr_asprintf(&tmp, "Your regular files have been archived ");
1510 log_msg(2, "Joining background threads to foreground thread");
1511 for (i = 0; i < noof_threads; i++) {
1512 pthread_join(archival_thread[i], pvp);
1513 log_msg(3, "Thread %d of %d: closed OK", i + 1, noof_threads);
1514 }
1515 del_semvalue();
1516 log_msg(2, "Done.");
1517 if (retval) {
1518 mr_strcat(tmp, "(with errors).");
1519 } else {
1520 mr_strcat(tmp, "successfully.");
1521 }
1522 log_to_screen(tmp);
1523 paranoid_free(tmp);
1524
1525 paranoid_free(transfer_block);
1526 paranoid_free(result_str);
1527 paranoid_free(storing_filelist_fname);
1528 paranoid_free(storing_afioball_fname);
1529 paranoid_free(curr_xattr_list_fname);
1530 paranoid_free(curr_acl_list_fname);
1531 return (retval);
1532}
1533
1534
1535void pause_for_N_seconds(int how_long, char *msg)
1536{
1537 int i;
1538 open_evalcall_form(msg);
1539 for (i = 0; i < how_long; i++) {
1540 update_evalcall_form((int) ((100.0 / (float) (how_long) * i)));
1541 sleep(1);
1542 }
1543 close_evalcall_form();
1544}
1545
1546
1547
1548
1549/**
1550 * Create a USB image in @c destfile, from files in @c bkpinfo->scratchdir.
1551 *
1552 * @param bkpinfo The backup information structure. Fields used:
1553 * - @c backup_media_type
1554 * - @c nonbootable_backup
1555 * - @c scratchdir
1556 *
1557 * @param destfile Where to put the generated USB image.
1558 * @return The number of errors encountered (0 for success)
1559 */
1560int make_usb_fs()
1561{
1562 /*@ int ********************************************** */
1563 int retval = 0;
1564 int res;
1565
1566 /*@ buffers ****************************************** */
1567 char *tmp = NULL;
1568 char *tmp1 = NULL;
1569 char *result_sz = NULL;
1570 char *message_to_screen = NULL;
1571 char *old_pwd;
1572 char *mds = NULL;
1573
1574 malloc_string(old_pwd);
1575 assert(bkpinfo != NULL);
1576
1577 log_msg(2, "make_usb_fs --- scratchdir=%s", bkpinfo->scratchdir);
1578 (void) getcwd(old_pwd, MAX_STR_LEN - 1);
1579 mr_asprintf(&tmp, "chmod 755 %s", bkpinfo->scratchdir);
1580 run_program_and_log_output(tmp, FALSE);
1581 paranoid_free(tmp);
1582 (void)chdir(bkpinfo->scratchdir);
1583
1584 mds = media_descriptor_string(bkpinfo->backup_media_type);
1585 mr_asprintf(&message_to_screen, "Copying data to make %s #%d",mds, g_current_media_number);
1586 mr_free(mds);
1587 log_msg(1, message_to_screen);
1588
1589 mr_asprintf(&tmp1, "%s1", bkpinfo->media_device);
1590 if (is_this_device_mounted(tmp1)) {
1591 log_msg(1, "USB device mounted. Remounting it at the right place");
1592 mr_asprintf(&tmp, "umount %s", tmp1);
1593 run_program_and_log_output(tmp, FALSE);
1594 paranoid_free(tmp);
1595 }
1596 paranoid_free(tmp);
1597
1598 log_msg(1, "Mounting USB device.");
1599 mr_asprintf(&tmp1, "%s/usb", bkpinfo->tmpdir);
1600 mr_asprintf(&tmp, "mkdir -p %s", tmp1);
1601 run_program_and_log_output(tmp, FALSE);
1602 paranoid_free(tmp);
1603 /* Mindi always create one single parition on the USB dev */
1604 mr_asprintf(&tmp, "mount %s1 %s", bkpinfo->media_device, tmp1);
1605 run_program_and_log_output(tmp, FALSE);
1606 paranoid_free(tmp);
1607
1608 if (bkpinfo->nonbootable_backup) {
1609 log_msg(1, "Making nonbootable USB backup not implemented yet");
1610 } else {
1611 log_msg(1, "Making bootable backup");
1612
1613 /* Command to execute */
1614 mr_asprintf(&tmp,"mv %s/* %s", bkpinfo->scratchdir, tmp1);
1615 res = eval_call_to_make_USB(tmp, message_to_screen);
1616 if (res) {
1617 mr_asprintf(&result_sz, "%s ...failed",tmp);
1618 } else {
1619 mr_asprintf(&result_sz, "%s ...OK",tmp);
1620 }
1621 log_to_screen(result_sz);
1622 paranoid_free(result_sz);
1623 paranoid_free(tmp);
1624 retval += res;
1625
1626 /* Recreate the required structure under the scratch dir */
1627 mr_asprintf(&tmp,"mkdir %s/archive", bkpinfo->scratchdir);
1628 run_program_and_log_output(tmp, FALSE);
1629 paranoid_free(tmp);
1630 }
1631 paranoid_free(message_to_screen);
1632 paranoid_free(tmp1);
1633
1634 if (is_this_device_mounted(bkpinfo->media_device)) {
1635 mr_asprintf(&tmp, "umount %s1", bkpinfo->media_device);
1636 run_program_and_log_output(tmp, FALSE);
1637 paranoid_free(tmp);
1638 }
1639
1640 (void)chdir(old_pwd);
1641 if (retval) {
1642 log_msg(1, "WARNING - make_usb_fs returned an error");
1643 }
1644 paranoid_free(old_pwd);
1645 return (retval);
1646}
1647
1648
1649/**
1650 * Create an ISO image in @c destfile, from files in @c bkpinfo->scratchdir.
1651 *
1652 * @param bkpinfo The backup information structure. Fields used:
1653 * - @c backup_media_type
1654 * - @c call_after_iso
1655 * - @c call_before_iso
1656 * - @c call_burn_iso
1657 * - @c call_make_iso
1658 * - @c make_cd_use_lilo
1659 * - @c manual_cd_tray
1660 * - @c nonbootable_backup
1661 * - @c scratchdir
1662 *
1663 * @param destfile Where to put the generated ISO image.
1664 * @return The number of errors encountered (0 for success)
1665 */
1666int make_iso_fs(char *destfile)
1667{
1668 /*@ int ********************************************** */
1669 int retval = 0;
1670 int res;
1671
1672 /*@ buffers ****************************************** */
1673 char *tmp;
1674 char *old_pwd;
1675 char *result_sz = NULL;
1676 char *message_to_screen = NULL;
1677 char *sz_blank_disk = NULL;
1678 char *fnam;
1679 char *tmp2;
1680 char *tmp3;
1681 char *mds = NULL;
1682 bool cd_is_mountable;
1683
1684 malloc_string(old_pwd);
1685 malloc_string(fnam);
1686 tmp = malloc(1200);
1687 tmp2 = malloc(1200);
1688 tmp3 = malloc(1200);
1689 assert(bkpinfo != NULL);
1690 assert_string_is_neither_NULL_nor_zerolength(destfile);
1691
1692 sprintf(tmp, "%s/isolinux.bin", bkpinfo->scratchdir);
1693 sprintf(tmp2, "%s/isolinux.bin", bkpinfo->tmpdir);
1694 if (does_file_exist(tmp)) {
1695 sprintf(tmp3, "cp -f %s %s", tmp, tmp2);
1696 paranoid_system(tmp3);
1697 }
1698 if (!does_file_exist(tmp) && does_file_exist(tmp2)) {
1699 sprintf(tmp3, "cp -f %s %s", tmp2, tmp);
1700 paranoid_system(tmp3);
1701 }
1702 free(tmp2);
1703 free(tmp3);
1704 tmp2 = NULL;
1705 tmp3 = NULL;
1706 if (bkpinfo->backup_media_type == iso && bkpinfo->manual_cd_tray) {
1707 popup_and_OK("Please insert new media and press Enter.");
1708 }
1709
1710 log_msg(2, "make_iso_fs --- scratchdir=%s --- destfile=%s",
1711 bkpinfo->scratchdir, destfile);
1712 (void) getcwd(old_pwd, MAX_STR_LEN - 1);
1713 sprintf(tmp, "chmod 744 %s", bkpinfo->scratchdir);
1714 run_program_and_log_output(tmp, FALSE);
1715 chdir(bkpinfo->scratchdir);
1716
1717 if (bkpinfo->call_before_iso[0] != '\0') {
1718 mr_asprintf(&message_to_screen, "Running pre-ISO call for CD#%d",
1719 g_current_media_number);
1720 res =
1721 eval_call_to_make_ISO(bkpinfo->call_before_iso,
1722 destfile, g_current_media_number,
1723 MONDO_LOGFILE, message_to_screen);
1724 if (res) {
1725 mr_strcat(message_to_screen, "...failed");
1726 } else {
1727 mr_strcat(message_to_screen, "...OK");
1728 }
1729 log_to_screen(message_to_screen);
1730 paranoid_free(message_to_screen);
1731
1732 retval += res;
1733 }
1734
1735 if (bkpinfo->call_make_iso[0] != '\0') {
1736 log_msg(2, "bkpinfo->call_make_iso = %s", bkpinfo->call_make_iso);
1737 sprintf(tmp, "%s/archives/NOT-THE-LAST", bkpinfo->scratchdir);
1738 mds = media_descriptor_string(bkpinfo->backup_media_type);
1739 mr_asprintf(&message_to_screen, "Making an ISO (%s #%d)", mds, g_current_media_number);
1740 mr_free(mds);
1741
1742 pause_and_ask_for_cdr(2, &cd_is_mountable); /* if g_current_media_number >= 2 then pause & ask */
1743 if (retval) {
1744 log_to_screen
1745 ("Serious error(s) occurred already. I shan't try to write to media.");
1746 } else {
1747 res =
1748 eval_call_to_make_ISO(bkpinfo->call_make_iso,
1749 bkpinfo->scratchdir,
1750 g_current_media_number,
1751 MONDO_LOGFILE, message_to_screen);
1752 if (res) {
1753 log_to_screen("%s...failed to write", message_to_screen);
1754 } else {
1755 log_to_screen("%s...OK", message_to_screen);
1756 sprintf(tmp, "tail -n10 %s | grep -F ':-('", MONDO_LOGFILE);
1757 if (!run_program_and_log_output(tmp, 1)) {
1758 log_to_screen
1759 ("Despite nonfatal errors, growisofs confirms the write was successful.");
1760 }
1761 }
1762 retval += res;
1763#ifdef DVDRWFORMAT
1764 sprintf(tmp,
1765 "tail -n8 %s | grep 'blank=full.*dvd-compat.*DAO'",
1766 MONDO_LOGFILE);
1767 if (g_backup_media_type == dvd
1768 && (res || !run_program_and_log_output(tmp, 1))) {
1769 log_to_screen
1770 ("Failed to write to disk. I shall blank it and then try again.");
1771 sleep(5);
1772 (void)system("sync");
1773 pause_for_N_seconds(5, "Letting DVD drive settle");
1774
1775// dvd+rw-format --- OPTION 2
1776 if (!bkpinfo->please_dont_eject) {
1777 log_to_screen("Ejecting media to clear drive status.");
1778 eject_device(bkpinfo->media_device);
1779 inject_device(bkpinfo->media_device);
1780 }
1781 pause_for_N_seconds(5, "Letting DVD drive settle");
1782 mr_asprintf(&sz_blank_disk, "dvd+rw-format -force %s", bkpinfo->media_device);
1783 log_msg(3, "sz_blank_disk = '%s'", sz_blank_disk);
1784 res =
1785 run_external_binary_with_percentage_indicator_NEW
1786 ("Blanking DVD disk", sz_blank_disk);
1787 if (res) {
1788 log_to_screen
1789 ("Warning - format failed. (Was it a DVD-R?) Sleeping for 5 seconds to take a breath...");
1790 pause_for_N_seconds(5,
1791 "Letting DVD drive settle... and trying again.");
1792 res =
1793 run_external_binary_with_percentage_indicator_NEW
1794 ("Blanking DVD disk", sz_blank_disk);
1795 if (res) {
1796 log_to_screen("Format failed a second time.");
1797 }
1798 } else {
1799 log_to_screen
1800 ("Format succeeded. Sleeping for 5 seconds to take a breath...");
1801 }
1802 mr_free(sz_blank_disk);
1803 pause_for_N_seconds(5, "Letting DVD drive settle");
1804 if (!bkpinfo->please_dont_eject) {
1805 log_to_screen("Ejecting media to clear drive status.");
1806 eject_device(bkpinfo->media_device);
1807 inject_device(bkpinfo->media_device);
1808 }
1809 pause_for_N_seconds(5, "Letting DVD drive settle");
1810 res =
1811 eval_call_to_make_ISO(bkpinfo->call_make_iso,
1812 bkpinfo->scratchdir,
1813 g_current_media_number,
1814 MONDO_LOGFILE,
1815 message_to_screen);
1816 retval += res;
1817 if (!bkpinfo->please_dont_eject) {
1818 log_to_screen("Ejecting media.");
1819 eject_device(bkpinfo->media_device);
1820 }
1821 if (res) {
1822 log_to_screen("Dagnabbit. It still failed.");
1823 } else {
1824 log_to_screen
1825 ("OK, this time I successfully backed up to DVD.");
1826 }
1827 }
1828#endif
1829 if (g_backup_media_type == dvd && !bkpinfo->please_dont_eject) {
1830 eject_device(bkpinfo->media_device);
1831 }
1832 }
1833 paranoid_free(message_to_screen);
1834 } else {
1835 mds = media_descriptor_string(bkpinfo->backup_media_type);
1836 mr_asprintf(&message_to_screen, "Running mkisofs to make %s #%d", mds, g_current_media_number);
1837 log_msg(1, message_to_screen);
1838 mr_asprintf(&result_sz, "Call to mkisofs to make ISO (%s #%d) ", mds, g_current_media_number);
1839 mr_free(mds);
1840 if (bkpinfo->nonbootable_backup) {
1841 log_msg(1, "Making nonbootable backup");
1842// FIXME --- change mkisofs string to MONDO_MKISOFS_NONBOOTABLE and add ' .' at end
1843 res =
1844 eval_call_to_make_ISO("mkisofs -o '_ISO_' -r -p MondoRescue -publisher www.mondorescue.org -A MondoRescue_GPL -V _CD#_ .",
1845 destfile, g_current_media_number,
1846 MONDO_LOGFILE, message_to_screen);
1847 } else {
1848 log_msg(1, "Making bootable backup");
1849
1850#ifdef __FreeBSD__
1851 bkpinfo->make_cd_use_lilo = TRUE;
1852#endif
1853
1854
1855 log_msg(1, "make_cd_use_lilo is actually %d",
1856 bkpinfo->make_cd_use_lilo);
1857 if (bkpinfo->make_cd_use_lilo) {
1858 log_msg(1, "make_cd_use_lilo = TRUE");
1859// FIXME --- change mkisofs string to MONDO_MKISOFS_REGULAR_SYSLINUX/LILO depending on bkpinfo->make_cd_usE_lilo
1860// and add ' .' at end
1861#ifdef __IA64__
1862 log_msg(1, "IA64 --> elilo");
1863 res = eval_call_to_make_ISO("mkisofs -no-emul-boot -b images/mindi-bootroot."
1864 IA64_BOOT_SIZE
1865 ".img -c boot.cat -o '_ISO_' -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ .",
1866 destfile,
1867 g_current_media_number,
1868 MONDO_LOGFILE,
1869 message_to_screen);
1870#else
1871// FIXME --- change mkisofs string to MONDO_MKISOFS_REGULAR_SYSLINUX/LILO depending on bkpinfo->make_cd_usE_lilo
1872// and add ' .' at end
1873 log_msg(1, "Non-ia64 --> lilo");
1874 res =
1875 eval_call_to_make_ISO("mkisofs -b images/mindi-bootroot.2880.img -c boot.cat -o '_ISO_' -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ .",
1876 destfile, g_current_media_number,
1877 MONDO_LOGFILE,
1878 message_to_screen);
1879#endif
1880 } else {
1881 log_msg(1, "make_cd_use_lilo = FALSE");
1882 log_msg(1, "Isolinux");
1883 res =
1884 eval_call_to_make_ISO("mkisofs -no-emul-boot -b isolinux.bin -boot-load-size 4 -boot-info-table -c boot.cat -o '_ISO_' -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL -V _CD#_ .",
1885 destfile, g_current_media_number,
1886 MONDO_LOGFILE,
1887 message_to_screen);
1888 }
1889 }
1890 paranoid_free(message_to_screen);
1891
1892 if (res) {
1893 mr_strcat(result_sz, "...failed");
1894 } else {
1895 mr_strcat(result_sz, "...OK");
1896 }
1897 log_to_screen(result_sz);
1898 paranoid_free(result_sz);
1899 retval += res;
1900 }
1901
1902 if (bkpinfo->backup_media_type == cdr
1903 || bkpinfo->backup_media_type == cdrw) {
1904 if (is_this_device_mounted(bkpinfo->media_device)) {
1905 log_msg(2,
1906 "Warning - %s mounted. I'm unmounting it before I burn to it.",
1907 bkpinfo->media_device);
1908 sprintf(tmp, "umount %s", bkpinfo->media_device);
1909 run_program_and_log_output(tmp, FALSE);
1910 }
1911 }
1912
1913 if (bkpinfo->call_burn_iso[0] != '\0') {
1914 log_msg(2, "bkpinfo->call_burn_iso = %s", bkpinfo->call_burn_iso);
1915 mds = media_descriptor_string(bkpinfo->backup_media_type);
1916 mr_asprintf(&message_to_screen, "Burning %s #%d", mds, g_current_media_number);
1917 mr_free(mds);
1918 pause_and_ask_for_cdr(2, &cd_is_mountable);
1919 res =
1920 eval_call_to_make_ISO(bkpinfo->call_burn_iso,
1921 destfile, g_current_media_number,
1922 MONDO_LOGFILE, message_to_screen);
1923 if (res) {
1924 mr_strcat(message_to_screen, "...failed");
1925 } else {
1926 mr_strcat(message_to_screen, "...OK");
1927 }
1928 log_to_screen(message_to_screen);
1929 paranoid_free(message_to_screen);
1930
1931 retval += res;
1932 }
1933
1934 if (bkpinfo->call_after_iso[0] != '\0') {
1935 mds = media_descriptor_string(bkpinfo->backup_media_type);
1936 mr_asprintf(&message_to_screen, "Running post-ISO call (%s #%d)", mds, g_current_media_number);
1937 mr_free(mds);
1938 res =
1939 eval_call_to_make_ISO(bkpinfo->call_after_iso,
1940 destfile, g_current_media_number,
1941 MONDO_LOGFILE, message_to_screen);
1942 if (res) {
1943 mr_strcat(message_to_screen, "...failed");
1944 } else {
1945 mr_strcat(message_to_screen, "...OK");
1946 }
1947 log_to_screen(message_to_screen);
1948 paranoid_free(message_to_screen);
1949
1950 retval += res;
1951 }
1952
1953 chdir(old_pwd);
1954 if (retval) {
1955 log_msg(1, "WARNING - make_iso_fs returned an error");
1956 }
1957 paranoid_free(old_pwd);
1958 paranoid_free(fnam);
1959 paranoid_free(tmp);
1960 return (retval);
1961}
1962
1963
1964bool is_dev_an_NTFS_dev(char *bigfile_fname)
1965{
1966 char *tmp = NULL;
1967 char *command = NULL;
1968 bool ret = TRUE;
1969
1970 mr_asprintf(&command, "dd if=%s bs=512 count=1 2> /dev/null | strings | head -n1", bigfile_fname);
1971 log_msg(1, "command = '%s'", command);
1972 mr_asprintf(&tmp, "%s", call_program_and_get_last_line_of_output(command));
1973 mr_free(command);
1974
1975 log_msg(1, "--> tmp = '%s'", tmp);
1976 if (strstr(tmp, "NTFS")) {
1977 log_it("TRUE");
1978 ret = TRUE;
1979 } else {
1980 log_it("FALSE");
1981 ret = FALSE;
1982 }
1983 mr_free(tmp);
1984 return(ret);
1985}
1986
1987
1988/**
1989 * Back up big files by chopping them up.
1990 * This function backs up all "big" files (where "big" depends
1991 * on your backup media) in "chunks" (whose size again depends
1992 * on your media).
1993 *
1994 * @param bkpinfo The backup information structure. Fields used:
1995 * - @c backup_media_type
1996 * - @c optimal_set_size
1997 * @param biggielist_fname The path to a file containing a list of
1998 * all "big" files.
1999 * @return The number of errors encountered (0 for success)
2000 * @see slice_up_file_etc
2001 */
2002int
2003make_slices_and_images(char *biggielist_fname)
2004{
2005
2006 /*@ pointers ******************************************* */
2007 FILE *fin;
2008 char *p;
2009
2010 /*@ buffers ******************************************** */
2011 char *tmp = NULL;
2012 char *bigfile_fname;
2013 char *sz_devfile = NULL;
2014 char *ntfsprog_fifo = NULL;
2015 /*@ long *********************************************** */
2016 long biggie_file_number = 0;
2017 long noof_biggie_files = 0;
2018 long estimated_total_noof_slices = 0;
2019
2020 /*@ int ************************************************ */
2021 int retval = 0;
2022 int res = 0;
2023 pid_t pid;
2024 FILE *ftmp = NULL;
2025 bool delete_when_done;
2026 bool use_ntfsprog;
2027 off_t biggie_fsize;
2028
2029 assert(bkpinfo != NULL);
2030 assert_string_is_neither_NULL_nor_zerolength(biggielist_fname);
2031
2032 estimated_total_noof_slices =
2033 size_of_all_biggiefiles_K() / bkpinfo->optimal_set_size + 1;
2034
2035 log_msg(1, "size of all biggiefiles = %ld",
2036 size_of_all_biggiefiles_K());
2037 log_msg(1, "estimated_total_noof_slices = %ld KB / %ld KB = %ld",
2038 size_of_all_biggiefiles_K(), bkpinfo->optimal_set_size,
2039 estimated_total_noof_slices);
2040
2041 if (length_of_file(biggielist_fname) < 6) {
2042 log_msg(1, "No biggiefiles; fair enough...");
2043 return (0);
2044 }
2045 mr_asprintf(&tmp, "I am now backing up all large files.");
2046 log_to_screen(tmp);
2047 noof_biggie_files = count_lines_in_file(biggielist_fname);
2048 open_progress_form("Backing up big files", tmp,
2049 "Please wait. This may take some time.", "",
2050 estimated_total_noof_slices);
2051 paranoid_free(tmp);
2052
2053 if (!(fin = fopen(biggielist_fname, "r"))) {
2054 log_OS_error("Unable to openin biggielist");
2055 return (1);
2056 }
2057
2058 malloc_string(bigfile_fname);
2059 for (fgets(bigfile_fname, MAX_STR_LEN, fin); !feof(fin);
2060 fgets(bigfile_fname, MAX_STR_LEN, fin), biggie_file_number++) {
2061 use_ntfsprog = FALSE;
2062 if (bigfile_fname[strlen(bigfile_fname) - 1] < 32) {
2063 bigfile_fname[strlen(bigfile_fname) - 1] = '\0';
2064 }
2065 biggie_fsize = length_of_file(bigfile_fname);
2066 delete_when_done = FALSE;
2067
2068 if (!does_file_exist(bigfile_fname)) {
2069 ftmp = fopen(bigfile_fname, "w");
2070 if (ftmp == NULL) {
2071 log_msg(3, "Unable to write to %s", bigfile_fname);
2072 // So skip it as it doesn't exist
2073 continue;
2074 } else {
2075 paranoid_fclose(ftmp);
2076 }
2077 delete_when_done = TRUE;
2078 } else {
2079 // Call ntfsclone (formerly partimagehack) if it's a /dev entry
2080 // (i.e. a partition to be imaged)
2081 log_msg(2, "bigfile_fname = %s", bigfile_fname);
2082 use_ntfsprog = FALSE;
2083 if (!strncmp(bigfile_fname, "/dev/", 5)
2084 && is_dev_an_NTFS_dev(bigfile_fname)) {
2085 use_ntfsprog = TRUE;
2086 log_msg(2,
2087 "Calling ntfsclone in background because %s is an NTFS partition",
2088 bigfile_fname);
2089 mr_asprintf(&sz_devfile, "%s/%d.%d.000", bkpinfo->tmpdir,
2090 (int) (random() % 32768),
2091 (int) (random() % 32768));
2092 mkfifo(sz_devfile, 0x770);
2093 ntfsprog_fifo = sz_devfile;
2094 switch (pid = fork()) {
2095 case -1:
2096 mr_free(sz_devfile);
2097 fatal_error("Fork failure");
2098 case 0:
2099 log_msg(2,
2100 "CHILD - fip - calling feed_into_ntfsprog(%s, %s)",
2101 bigfile_fname, sz_devfile);
2102 res = feed_into_ntfsprog(bigfile_fname, sz_devfile);
2103 /* BCO/BERLIOS Does the child need to unalocate memory as well ?
2104 paranoid_free(bigfile_fname);
2105 mr_free(sz_devfile);
2106 */
2107 exit(res);
2108 break;
2109 default:
2110 log_msg(2,
2111 "feed_into_ntfsprog() called in background --- pid=%ld",
2112 (long int) (pid));
2113 mr_free(sz_devfile);
2114 }
2115 }
2116 // Otherwise, use good old 'dd' and 'bzip2'
2117 else {
2118 ntfsprog_fifo = NULL;
2119 }
2120
2121 // Whether partition or biggiefile, just do your thang :-)
2122 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2123 write_header_block_to_stream(biggie_fsize, bigfile_fname,
2124 use_ntfsprog ?
2125 BLK_START_A_PIHBIGGIE :
2126 BLK_START_A_NORMBIGGIE);
2127 }
2128 res =
2129 slice_up_file_etc(bigfile_fname,
2130 ntfsprog_fifo, biggie_file_number,
2131 noof_biggie_files, use_ntfsprog);
2132 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2133 write_header_block_to_stream((off_t)0,
2134 calc_checksum_of_file
2135 (bigfile_fname),
2136 BLK_STOP_A_BIGGIE);
2137 }
2138 retval += res;
2139 p = strrchr(bigfile_fname, '/');
2140 if (p) {
2141 p++;
2142 } else {
2143 p = bigfile_fname;
2144 }
2145 mr_asprintf(&tmp, "Archiving %s ... ", bigfile_fname);
2146 if (res) {
2147 mr_strcat(tmp, "Failed!");
2148 } else {
2149 mr_strcat(tmp, "OK");
2150 }
2151 if (delete_when_done) {
2152 unlink(bigfile_fname);
2153 delete_when_done = FALSE;
2154 }
2155 }
2156#ifndef _XWIN
2157 if (!g_text_mode) {
2158 newtDrawRootText(0, g_noof_rows - 2, tmp);
2159 newtRefresh();
2160 }
2161#endif
2162 paranoid_free(tmp);
2163 }
2164 log_msg(1, "Finished backing up bigfiles");
2165 log_msg(1, "estimated slices = %ld; actual slices = %ld",
2166 estimated_total_noof_slices, g_current_progress);
2167 close_progress_form();
2168 paranoid_fclose(fin);
2169 paranoid_free(bigfile_fname);
2170 return (retval);
2171}
2172
2173
2174
2175
2176/**
2177 * Single-threaded version of @c make_afioballs_and_images().
2178 * @see make_afioballs_and_images
2179 */
2180int make_afioballs_and_images_OLD()
2181{
2182
2183 /*@ int ************************************************** */
2184 int retval = 0;
2185 long int curr_set_no = 0L;
2186 int res = 0;
2187
2188 /*@ buffers ********************************************** */
2189 char *curr_filelist_fname = NULL;
2190 char *curr_afioball_fname = NULL;
2191 char *curr_xattr_list_fname = NULL;
2192 char *curr_acl_list_fname = NULL;
2193 char *tmp = NULL;
2194 char *media_usage_comment = NULL;
2195
2196 log_to_screen("Archiving regular files");
2197
2198 open_progress_form("Backing up filesystem",
2199 "I am backing up your live filesystem now.",
2200 "Please wait. This may take a couple of hours.",
2201 "Working...",
2202 get_last_filelist_number() + 1);
2203
2204 for (; does_file_exist(curr_filelist_fname); curr_set_no++) {
2205 /* backup this set of files */
2206 mr_asprintf(&curr_filelist_fname, FILELIST_FNAME_RAW_SZ, bkpinfo->tmpdir, curr_set_no);
2207 if (! does_file_exist(curr_filelist_fname)) {
2208 mr_free(curr_filelist_fname);
2209 break;
2210 }
2211
2212 mr_asprintf(&curr_afioball_fname, AFIOBALL_FNAME_RAW_SZ, bkpinfo->tmpdir, curr_set_no, bkpinfo->zip_suffix);
2213
2214 log_msg(1, "EXAT'g set %ld", curr_set_no);
2215 if (g_getfattr) {
2216 mr_asprintf(&curr_xattr_list_fname, XATTR_LIST_FNAME_RAW_SZ, bkpinfo->tmpdir, curr_set_no);
2217 get_fattr_list(curr_filelist_fname, curr_xattr_list_fname);
2218 }
2219 if (g_getfacl) {
2220 mr_asprintf(&curr_acl_list_fname, ACL_LIST_FNAME_RAW_SZ, bkpinfo->tmpdir, curr_set_no);
2221 get_acl_list(curr_filelist_fname, curr_acl_list_fname);
2222 }
2223
2224 log_msg(1, "Archiving set %ld", curr_set_no);
2225 res =
2226 archive_this_fileset(curr_filelist_fname,
2227 curr_afioball_fname, curr_set_no);
2228 retval += res;
2229 if (res) {
2230 mr_asprintf(&tmp, "Errors occurred while archiving set %ld. Perhaps your live filesystem changed?", curr_set_no);
2231 log_to_screen(tmp);
2232 mr_free(tmp);
2233 }
2234
2235 mr_asprintf(&media_usage_comment, "%s", percent_media_full_comment());
2236
2237 /* copy to CD (scratchdir) ... and an actual CD-R if necessary */
2238 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2239 register_in_tape_catalog(fileset, curr_set_no, -1, curr_afioball_fname);
2240 maintain_collection_of_recent_archives(bkpinfo->tmpdir, curr_afioball_fname);
2241 log_it("Writing EXAT files");
2242 res +=
2243 write_EXAT_files_to_tape(curr_xattr_list_fname,
2244 curr_acl_list_fname);
2245 // archives themselves
2246 res = move_files_to_stream(curr_afioball_fname, NULL);
2247 } else {
2248 if (g_getfacl) {
2249 if (g_getfattr) {
2250 res = move_files_to_cd(curr_filelist_fname,
2251 curr_xattr_list_fname,
2252 curr_acl_list_fname,
2253 curr_afioball_fname, NULL);
2254 } else {
2255 res = move_files_to_cd(curr_filelist_fname,
2256 curr_acl_list_fname,
2257 curr_afioball_fname, NULL);
2258 }
2259 } else {
2260 if (g_getfattr) {
2261 res = move_files_to_cd(curr_filelist_fname,
2262 curr_xattr_list_fname,
2263 curr_afioball_fname, NULL);
2264 } else {
2265 res = move_files_to_cd(curr_filelist_fname,
2266 curr_afioball_fname, NULL);
2267 }
2268 }
2269 }
2270 if (g_getfattr) {
2271 mr_free(curr_xattr_list_fname);
2272 }
2273 if (g_getfacl) {
2274 mr_free(curr_acl_list_fname);
2275 }
2276 retval += res;
2277 g_current_progress++;
2278 update_progress_form(media_usage_comment);
2279 mr_free(media_usage_comment);
2280
2281 if (res) {
2282 mr_asprintf(&tmp, "Failed to add archive %ld's files to CD dir\n", curr_set_no);
2283 log_to_screen(tmp);
2284 mr_free(tmp);
2285 fatal_error
2286 ("Is your hard disk is full? If not, please send the author the logfile.");
2287 }
2288 mr_free(curr_filelist_fname);
2289 mr_free(curr_afioball_fname);
2290 }
2291 close_progress_form();
2292 mr_asprintf(&tmp, "Your regular files have been archived ");
2293 if (retval) {
2294 mr_strcat(tmp, "(with errors).");
2295 } else {
2296 mr_strcat(tmp, "successfully.");
2297 }
2298 log_to_screen(tmp);
2299 mr_free(tmp);
2300 return (retval);
2301}
2302
2303/* @} - end of LLarchiveGroup */
2304
2305
2306/**
2307 * Wrapper around @c make_afioballs_and_images().
2308 * @param bkpinfo the backup information structure. Only the
2309 * @c backup_media_type field is used within this function.
2310 * @return return code of make_afioballs_and_images
2311 * @see make_afioballs_and_images
2312 * @ingroup MLarchiveGroup
2313 */
2314int make_those_afios_phase()
2315{
2316 /*@ int ******************************************* */
2317 int res = 0;
2318 int retval = 0;
2319
2320 assert(bkpinfo != NULL);
2321
2322 mvaddstr_and_log_it(g_currentY, 0,
2323 "Archiving regular files to media ");
2324
2325 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2326 write_header_block_to_stream((off_t)0, "start-of-afioballs",
2327 BLK_START_AFIOBALLS);
2328#if __FreeBSD__ == 5
2329 log_msg(1,
2330 "Using single-threaded make_afioballs_and_images() to suit b0rken FreeBSD 5.0");
2331 res = make_afioballs_and_images_OLD();
2332#else
2333 res = make_afioballs_and_images_OLD();
2334#endif
2335 write_header_block_to_stream((off_t)0, "stop-afioballs",
2336 BLK_STOP_AFIOBALLS);
2337 } else {
2338 res = make_afioballs_and_images();
2339 }
2340
2341 retval += res;
2342 if (res) {
2343 mvaddstr_and_log_it(g_currentY++, 74, "Errors.");
2344 log_msg(1, "make_afioballs_and_images returned an error");
2345 } else {
2346 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
2347 }
2348 return (retval);
2349}
2350
2351/**
2352 * Wrapper around @c make_slices_and_images().
2353 * @param bkpinfo The backup information structure. Fields used:
2354 * - @c backup_media_type
2355 * - @c scratchdir
2356 * - @c tmpdir
2357 * @return The number of errors encountered (0 for success)
2358 * @ingroup MLarchiveGroup
2359 */
2360int make_those_slices_phase()
2361{
2362
2363 /*@ int ***************************************************** */
2364 int res = 0;
2365 int retval = 0;
2366
2367 /*@ buffers ************************************************** */
2368 char *biggielist = NULL;
2369 char *command = NULL;
2370 char *blah = NULL;
2371 char *xattr_fname = NULL;
2372 char *acl_fname = NULL;
2373
2374 assert(bkpinfo != NULL);
2375 /* slice big files */
2376 mvaddstr_and_log_it(g_currentY, 0,
2377 "Archiving large files to media ");
2378 mr_asprintf(&biggielist, "%s/archives/biggielist.txt", bkpinfo->scratchdir);
2379 if (g_getfattr) {
2380 mr_asprintf(&xattr_fname, XATTR_BIGGLST_FNAME_RAW_SZ, bkpinfo->tmpdir);
2381 }
2382 if (g_getfacl) {
2383 mr_asprintf(&acl_fname, ACL_BIGGLST_FNAME_RAW_SZ, bkpinfo->tmpdir);
2384 }
2385
2386 mr_asprintf(&command, "cp %s/biggielist.txt %s", bkpinfo->tmpdir,
2387 biggielist);
2388 paranoid_system(command);
2389 mr_free(command);
2390
2391 mr_asprintf(&blah, "biggielist = %s", biggielist);
2392 log_msg(2, blah);
2393 mr_free(blah);
2394
2395 if (!does_file_exist(biggielist)) {
2396 log_msg(1, "BTW, the biggielist does not exist");
2397 }
2398
2399 if (g_getfattr) {
2400 get_fattr_list(biggielist, xattr_fname);
2401 mr_asprintf(&command, "cp %s %s/archives/", xattr_fname,
2402 bkpinfo->scratchdir);
2403 paranoid_system(command);
2404 mr_free(command);
2405 }
2406 if (g_getfacl) {
2407 get_acl_list(biggielist, acl_fname);
2408 mr_asprintf(&command, "cp %s %s/archives/", acl_fname, bkpinfo->scratchdir);
2409 paranoid_system(command);
2410 mr_free(command);
2411 }
2412
2413 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2414 res += write_EXAT_files_to_tape(xattr_fname, acl_fname);
2415 mr_asprintf(&blah, "%ld", count_lines_in_file(biggielist));
2416 write_header_block_to_stream((off_t)0, blah, BLK_START_BIGGIEFILES);
2417 mr_free(blah);
2418 }
2419 res = make_slices_and_images(biggielist);
2420 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
2421 write_header_block_to_stream((off_t)0, "end-of-biggiefiles",
2422 BLK_STOP_BIGGIEFILES);
2423 }
2424 retval += res;
2425 if (res) {
2426 log_msg(1, "make_slices_and_images returned an error");
2427 mvaddstr_and_log_it(g_currentY++, 74, "Errors.");
2428 } else {
2429 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
2430 }
2431 mr_free(biggielist);
2432 mr_free(xattr_fname);
2433 mr_free(acl_fname);
2434 return (retval);
2435}
2436
2437
2438/**
2439 * @addtogroup LLarchiveGroup
2440 * @{
2441 */
2442/**
2443 * Function pointer to an appropriate @c move_files_to_cd routine.
2444 * You can set this to your own function (for example, one to
2445 * transfer files over the network) or leave it as is.
2446 */
2447int (*move_files_to_cd) (char *, ...) =
2448 _move_files_to_cd;
2449
2450/**
2451 * Move some files to the ISO scratch directory.
2452 * This function moves files specified as parameters, into the directory
2453 * @c bkpinfo->scratchdir, where the files that will be stored on the next
2454 * CD are waiting.
2455 *
2456 * @param bkpinfo The backup information structure. Fields used:
2457 * - @c media_size
2458 * - @c scratchdir
2459 * @param files_to_add The files to add to the scratchdir.
2460 * @warning The list of @c files_to_add must be terminated with @c NULL.
2461 * @note If and when the space occupied by the scratchdir would exceed
2462 * the capacity of the current CD,
2463 * <tt>write_iso_and_go_on(bkpinfo, FALSE)</tt> is called and the
2464 * scratchdir is emptied.
2465 *
2466 * @return The number of errors encountered (0 for success)
2467 */
2468int _move_files_to_cd(char *files_to_add, ...)
2469{
2470
2471 /*@ int ************************************************************ */
2472 int retval = 0;
2473 int res = 0;
2474
2475 /*@ buffers ******************************************************** */
2476 char *tmp = NULL;
2477 char *curr_file = NULL;
2478 char *cf;
2479
2480 /*@ long ************************************************************ */
2481 va_list ap;
2482 long long would_occupy;
2483
2484 assert(bkpinfo != NULL);
2485 would_occupy = space_occupied_by_cd(bkpinfo->scratchdir);
2486 va_start(ap, files_to_add); // initialize the variable arguments
2487 for (cf = files_to_add; cf != NULL; cf = va_arg(ap, char *)) {
2488 if (!cf) {
2489 continue;
2490 }
2491 mr_asprintf(&curr_file, "%s", cf);
2492 if (!does_file_exist(curr_file)) {
2493 log_msg(1,
2494 "Warning - you're trying to add a non-existent file - '%s' to the CD",
2495 curr_file);
2496 } else {
2497 log_msg(8, "Trying to add file %s to CD", curr_file);
2498 would_occupy += length_of_file(curr_file) / 1024;
2499 }
2500 mr_free(curr_file);
2501 }
2502 va_end(ap);
2503
2504 if (bkpinfo->media_size[g_current_media_number] <= 0) {
2505 fatal_error("move_files_to_cd() - unknown media size");
2506 }
2507 if (would_occupy / 1024 > bkpinfo->media_size[g_current_media_number]) {
2508 res = write_iso_and_go_on(FALSE); /* FALSE because this is not the last CD we'll write */
2509 retval += res;
2510 if (res) {
2511 log_msg(1, "WARNING - write_iso_and_go_on returned an error");
2512 }
2513 }
2514
2515 va_start(ap, files_to_add); // initialize the variable arguments
2516 for (cf = files_to_add; cf != NULL; cf = va_arg(ap, char *)) {
2517 if (!cf) {
2518 continue;
2519 }
2520 mr_asprintf(&curr_file, "%s", cf);
2521
2522 mr_asprintf(&tmp, "mv -f %s %s/archives/", curr_file, bkpinfo->scratchdir);
2523 mr_free(curr_file);
2524 res = run_program_and_log_output(tmp, 5);
2525 retval += res;
2526 if (res) {
2527 log_msg(1, "(move_files_to_cd) '%s' failed", tmp);
2528 } else {
2529 log_msg(8, "Moved %s to CD OK", tmp);
2530 }
2531 mr_free(tmp);
2532 }
2533 va_end(ap);
2534
2535 if (retval) {
2536 log_msg(1,
2537 "Warning - errors occurred while I was adding files to CD dir");
2538 }
2539 return (retval);
2540}
2541
2542/* @} - end of LLarchiveGroup */
2543
2544
2545/**
2546 * @addtogroup LLarchiveGroup
2547 * @{
2548 */
2549/**
2550 * Function pointer to an appropriate @c move_files_to_stream routine.
2551 * You can set this to your own function (for example, one to
2552 * transfer files over the network) or leave it as is.
2553 */
2554int (*move_files_to_stream) (char *, ...) =
2555 _move_files_to_stream;
2556
2557/**
2558 * Copy some files to tape.
2559 * This function copies the files specified as parameters into the tape stream.
2560 *
2561 * @param bkpinfo The backup information structure. Used only in the call to
2562 * @c write_file_to_stream_from_file().
2563 *
2564 * @param files_to_add The files to copy to the tape stream.
2565 * @warning The list of @c files_to_add must be terminated with @c NULL.
2566 * @note Files may be split across multiple tapes if necessary.
2567 *
2568 * @return The number of errors encountered (0 for success)
2569 */
2570int
2571_move_files_to_stream(char *files_to_add, ...)
2572{
2573
2574 /*@ int ************************************************************ */
2575 int retval = 0;
2576 int res = 0;
2577 /*@ buffers ******************************************************** */
2578
2579 /*@ char *********************************************************** */
2580 char start_chr;
2581 char stop_chr;
2582 char *curr_file = NULL;
2583 char *cf;
2584 /*@ long long ****************************************************** */
2585 off_t length_of_incoming_file = (off_t)0;
2586 t_archtype type;
2587 va_list ap;
2588
2589 assert(bkpinfo != NULL);
2590 va_start(ap, files_to_add);
2591 for (cf = files_to_add; cf != NULL; cf = va_arg(ap, char *)) {
2592 if (!cf) {
2593 continue;
2594 }
2595 mr_asprintf(&curr_file, "%s", cf);
2596 if (!does_file_exist(curr_file)) {
2597 log_msg(1,
2598 "Warning - you're trying to add a non-existent file - '%s' to the tape",
2599 curr_file);
2600 }
2601 /* create header chars */
2602 start_chr = BLK_START_AN_AFIO_OR_SLICE;
2603 stop_chr = BLK_STOP_AN_AFIO_OR_SLICE;
2604 /* ask for new tape if necessary */
2605 length_of_incoming_file = length_of_file(curr_file);
2606 write_header_block_to_stream(length_of_incoming_file, curr_file,
2607 start_chr);
2608 if (strstr(curr_file, ".afio.") || strstr(curr_file, ".star.")) {
2609 type = fileset;
2610 } else if (strstr(curr_file, "slice")) {
2611 type = biggieslice;
2612 } else {
2613 type = other;
2614 }
2615 res = write_file_to_stream_from_file(curr_file);
2616 retval += res;
2617 unlink(curr_file);
2618 mr_free(curr_file);
2619 /* write closing header */
2620 write_header_block_to_stream((off_t)0, "finished-writing-file", stop_chr);
2621 }
2622 va_end(ap);
2623
2624 if (retval) {
2625 log_msg(1,
2626 "Warning - errors occurred while I was adding file to tape");
2627 }
2628 return (retval);
2629}
2630
2631/* @} - end of LLarchiveGroup */
2632
2633
2634
2635/**
2636 * @addtogroup utilityGroup
2637 * @{
2638 */
2639/**
2640 * Make sure the user has a valid CD-R(W) in the CD drive.
2641 * @param cdrw_dev Set to the CD-R(W) device checked.
2642 * @param keep_looping If TRUE, keep pestering user until they insist
2643 * or insert a correct CD; if FALSE, only check once.
2644 * @return 0 (there was an OK CD in the drive) or 1 (there wasn't).
2645 */
2646int interrogate_disk_currently_in_cdrw_drive(char *cdrw_dev,
2647 bool keep_looping)
2648{
2649 int res = 0;
2650 char *bkp = NULL;
2651 char *cdrecord = NULL;
2652
2653 mr_asprintf(&bkp, "%s", cdrw_dev);
2654 if (find_cdrw_device(cdrw_dev)) {
2655 strcpy(cdrw_dev, bkp);
2656 } else {
2657 if (!system("which cdrecord > /dev/null 2> /dev/null")) {
2658 mr_asprintf(&cdrecord, "cdrecord dev=%s -atip", cdrw_dev);
2659 } else if (!system("which dvdrecord > /dev/null 2> /dev/null")) {
2660 mr_asprintf(&cdrecord, "cdrecord dev=%s -atip", cdrw_dev);
2661 } else {
2662 log_msg(2, "Oh well. I guess I'll just pray then.");
2663 }
2664 if (cdrecord != NULL) {
2665 if (!keep_looping) {
2666 retract_CD_tray_and_defeat_autorun();
2667 res = run_program_and_log_output(cdrecord, 5);
2668 } else {
2669 while ((res = run_program_and_log_output(cdrecord, 5))) {
2670 retract_CD_tray_and_defeat_autorun();
2671 if (ask_me_yes_or_no
2672 ("Unable to examine CD. Are you sure this is a valid CD-R(W) CD?"))
2673 {
2674 log_msg(1, "Well, he insisted...");
2675 break;
2676 }
2677 }
2678 }
2679 }
2680 }
2681 mr_free(bkp);
2682
2683 mr_free(cdrecord);
2684 return (res);
2685}
2686
2687
2688/**
2689 * Asks the user to put a CD-R(W) in the drive.
2690 * @param ask_for_one_if_more_than_this (unused)
2691 * @param pmountable If non-NULL, pointed-to value is set to TRUE if the CD is mountable, FALSE otherwise.
2692 */
2693void
2694pause_and_ask_for_cdr(int ask_for_one_if_more_than_this, bool * pmountable)
2695{
2696
2697 /*@ buffers ********************************************* */
2698 char *tmp = NULL;
2699 char *cdrom_dev;
2700 char *cdrw_dev;
2701 char *our_serial_str = NULL;
2702 bool ok_go_ahead_burn_it;
2703 int cd_number = -1;
2704 int attempt_to_mount_returned_this = 999;
2705 char *mtpt = NULL;
2706 char *szcdno;
2707 char *szserfname;
2708 char *szunmount;
2709 char *mds = NULL;
2710
2711 malloc_string(cdrom_dev);
2712 malloc_string(cdrw_dev);
2713 malloc_string(szcdno);
2714 malloc_string(szserfname);
2715 malloc_string(szunmount);
2716
2717 mds = media_descriptor_string(g_backup_media_type);
2718 mr_asprintf(&tmp, "I am about to burn %s #%d", mds, g_current_media_number);
2719 mr_free(mds);
2720 log_to_screen(tmp);
2721 mr_free(tmp);
2722 if (g_current_media_number < ask_for_one_if_more_than_this) {
2723 return;
2724 }
2725 log_to_screen("Scanning CD-ROM drive...");
2726 sprintf(mtpt, "%s/cd.mtpt", bkpinfo->tmpdir);
2727 make_hole_for_dir(mtpt);
2728
2729 gotos_make_me_puke:
2730 ok_go_ahead_burn_it = TRUE;
2731 if (!find_cdrom_device(cdrom_dev, FALSE)) {
2732/* When enabled, it made CD eject-and-retract when wrong CD inserted.. Weird
2733 log_msg(2, "paafcd: Retracting CD-ROM drive if possible" );
2734 retract_CD_tray_and_defeat_autorun();
2735*/
2736 mr_asprintf(&tmp, "umount %s", cdrom_dev);
2737 run_program_and_log_output(tmp, 1);
2738 sprintf(szcdno, "%s/archives/THIS-CD-NUMBER", mtpt);
2739 sprintf(szserfname, "%s/archives/SERIAL-STRING", mtpt);
2740 sprintf(szunmount, "umount %s", mtpt);
2741 cd_number = -1;
2742 mr_asprintf(&tmp, "mount %s %s", cdrom_dev, mtpt);
2743 mr_asprintf(&our_serial_str, "%s", "");
2744 attempt_to_mount_returned_this = run_program_and_log_output(tmp, 1);
2745 mr_free(tmp);
2746 if (attempt_to_mount_returned_this) {
2747 log_msg(4, "Failed to mount %s at %s", cdrom_dev, mtpt);
2748 log_to_screen("If there's a CD/DVD in the drive, it's blank.");
2749 /*
2750 if (interrogate_disk_currently_in_cdrw_drive(cdrw_dev, FALSE))
2751 {
2752 ok_go_ahead_burn_it = FALSE;
2753 log_to_screen("There isn't a writable CD/DVD in the drive.");
2754 }
2755 else
2756 {
2757 log_to_screen("Confirmed. There is a blank CD/DVD in the drive.");
2758 }
2759 */
2760 } else if (!does_file_exist(szcdno)
2761 || !does_file_exist(szserfname)) {
2762 mds = media_descriptor_string(g_backup_media_type);
2763 log_to_screen
2764 ("%s has data on it but it's probably not a Mondo CD.", mds);
2765 mr_free(mds);
2766 } else {
2767 mds = media_descriptor_string(g_backup_media_type);
2768 log_to_screen("%s found in drive. It's a Mondo disk.", mds);
2769 mr_free(mds);
2770
2771 cd_number = atoi(last_line_of_file(szcdno));
2772 mr_asprintf(&tmp, "cat %s 2> /dev/null", szserfname);
2773 mr_free(our_serial_str);
2774 mr_asprintf(&our_serial_str, "%s",
2775 call_program_and_get_last_line_of_output(tmp));
2776 mr_free(tmp);
2777 // FIXME - should be able to use last_line_of_file(), surely?
2778 }
2779 run_program_and_log_output(szunmount, 1);
2780 log_msg(2, "paafcd: cd_number = %d", cd_number);
2781 log_msg(2, "our serial str = %s; g_serial_string = %s",
2782 our_serial_str, g_serial_string);
2783 if (cd_number > 0 && !strcmp(our_serial_str, g_serial_string)) {
2784 mds = media_descriptor_string(g_backup_media_type);
2785 log_msg(2, "This %s is part of this backup set!", mds);
2786 ok_go_ahead_burn_it = FALSE;
2787 if (cd_number == g_current_media_number - 1) {
2788 log_to_screen("I think you've left the previous %s in the drive.", mds);
2789 } else {
2790 log_to_screen("Please remove this %s. It is part of the backup set you're making now.", mds);
2791 }
2792 mr_free(mds);
2793
2794 } else {
2795 log_to_screen("...but not part of _our_ backup set.");
2796 }
2797 mr_free(our_serial_str);
2798 } else {
2799 mds = media_descriptor_string(g_backup_media_type);
2800 log_msg(2,
2801 "paafcd: Can't find CD-ROM drive. Perhaps it has a blank %s in it?", mds);
2802 if (interrogate_disk_currently_in_cdrw_drive(cdrw_dev, FALSE)) {
2803 ok_go_ahead_burn_it = FALSE;
2804 log_to_screen("There isn't a writable %s in the drive.", mds);
2805 }
2806 mr_free(mds);
2807 }
2808
2809 if (!ok_go_ahead_burn_it) {
2810 eject_device(cdrom_dev);
2811 mds = media_descriptor_string(g_backup_media_type);
2812 mr_asprintf(&tmp, "I am about to burn %s #%d of the backup set. Please insert %s and press Enter.",
2813 mds, g_current_media_number, mds);
2814 mr_free(mds);
2815
2816 popup_and_OK(tmp);
2817 mr_free(tmp);
2818 goto gotos_make_me_puke;
2819 } else {
2820 log_msg(2, "paafcd: OK, going ahead and burning it.");
2821 }
2822
2823 mds = media_descriptor_string(g_backup_media_type);
2824 log_msg(2,
2825 "paafcd: OK, I assume I have a blank/reusable %s in the drive...", mds);
2826
2827 log_to_screen("Proceeding w/ %s in drive.", mds);
2828 mr_free(mds);
2829
2830 paranoid_free(cdrom_dev);
2831 paranoid_free(cdrw_dev);
2832 paranoid_free(mtpt);
2833 paranoid_free(szcdno);
2834 paranoid_free(szserfname);
2835 paranoid_free(szunmount);
2836 if (pmountable) {
2837 if (attempt_to_mount_returned_this) {
2838 *pmountable = FALSE;
2839 } else {
2840 *pmountable = TRUE;
2841 }
2842 }
2843
2844}
2845
2846
2847
2848
2849
2850
2851
2852
2853/**
2854 * Set the <tt>N</tt>th bit of @c array to @c true_or_false.
2855 * @param array The bit array (as a @c char pointer).
2856 * @param N The bit number to set or reset.
2857 * @param true_or_false If TRUE then set bit @c N, if FALSE then reset bit @c N.
2858 * @see get_bit_N_of_array
2859 */
2860void set_bit_N_of_array(char *array, int N, bool true_or_false)
2861{
2862 int bit_number;
2863 int mask, orig_val, to_add;
2864 int element_number;
2865
2866 assert(array != NULL);
2867
2868 element_number = N / 8;
2869 bit_number = N % 8;
2870 to_add = (1 << bit_number);
2871 mask = 255 - to_add;
2872 orig_val = array[element_number] & mask;
2873 // log_it("array[%d]=%02x; %02x&%02x = %02x", element_number, array[element_number], mask, orig_val);
2874 if (true_or_false) {
2875 array[element_number] = orig_val | to_add;
2876 }
2877}
2878
2879/* @} - end of utilityGroup */
2880
2881
2882
2883
2884
2885
2886
2887
2888/**
2889 * Chop up @c filename.
2890 * @param bkpinfo The backup information structure. Fields used:
2891 * - @c backup_media_type
2892 * - @c compression_level
2893 * - @c optimal_set_size
2894 * - @c tmpdir
2895 * - @c use_lzo
2896 * - @c zip_exe
2897 * - @c zip_suffix
2898 *
2899 * @param biggie_filename The file to chop up.
2900 * @param ntfsprog_fifo The FIFO to ntfsclone if this is an imagedev, NULL otherwise.
2901 * @param biggie_file_number The sequence number of this biggie file (starting from 0).
2902 * @param noof_biggie_files The number of biggie files there are total.
2903 * @return The number of errors encountered (0 for success)
2904 * @see make_slices_and_images
2905 * @ingroup LLarchiveGroup
2906 */
2907int
2908slice_up_file_etc(char *biggie_filename,
2909 char *ntfsprog_fifo, long biggie_file_number,
2910 long noof_biggie_files, bool use_ntfsprog)
2911{
2912
2913 /*@ buffers ************************************************** */
2914 char *tmp = NULL;
2915 char *checksum_line, *command;
2916 char *tempblock;
2917 char *curr_slice_fname_uncompressed = NULL;
2918 char *curr_slice_fname_compressed = NULL;
2919 char *file_to_archive = NULL;
2920 char *file_to_openin;
2921 /*@ pointers ************************************************** */
2922 char *pB;
2923 FILE *fin = NULL, *fout = NULL;
2924
2925 /*@ bool ****************************************************** */
2926 bool finished = FALSE;
2927
2928 /*@ long ****************************************************** */
2929 size_t blksize = 0;
2930 long slice_num = 0;
2931 long i;
2932 long optimal_set_size;
2933 bool should_I_compress_slices;
2934 char *suffix = NULL; // for compressed slices
2935
2936 /*@ long long ************************************************** */
2937 off_t totalread = (off_t)0;
2938 off_t totallength = (off_t)0;
2939 off_t length;
2940
2941 /*@ int ******************************************************** */
2942 int retval = 0;
2943 int res = 0;
2944
2945 /*@ structures ************************************************** */
2946 struct s_filename_and_lstat_info biggiestruct;
2947// struct stat statbuf;
2948
2949 assert(bkpinfo != NULL);
2950 assert_string_is_neither_NULL_nor_zerolength(biggie_filename);
2951 malloc_string(checksum_line);
2952
2953 biggiestruct.for_backward_compatibility = '\n';
2954 biggiestruct.use_ntfsprog = use_ntfsprog;
2955 optimal_set_size = bkpinfo->optimal_set_size;
2956 if (is_this_file_compressed(biggie_filename)
2957 || bkpinfo->compression_level == 0) {
2958 mr_asprintf(&suffix, "%s", "");
2959 // log_it("%s is indeed compressed :-)", filename);
2960 should_I_compress_slices = FALSE;
2961 } else {
2962 mr_asprintf(&suffix, "%s", bkpinfo->zip_suffix);
2963 should_I_compress_slices = TRUE;
2964 }
2965
2966 if (optimal_set_size < 999) {
2967 fatal_error("bkpinfo->optimal_set_size is insanely small");
2968 }
2969 if (ntfsprog_fifo) {
2970 file_to_openin = ntfsprog_fifo;
2971 strcpy(checksum_line, "IGNORE");
2972 log_msg(2,
2973 "Not calculating checksum for %s: it would take too long",
2974 biggie_filename);
2975 if ( !find_home_of_exe("ntfsresize")) {
2976 fatal_error("ntfsresize not found");
2977 }
2978 mr_asprintf(&command, "ntfsresize --force --info %s|grep '^You might resize at '|cut -d' ' -f5", biggie_filename);
2979 log_it("command = %s", command);
2980 mr_asprintf(&tmp, "%s", call_program_and_get_last_line_of_output(command));
2981 mr_free(command);
2982 log_it("res of it = %s", tmp);
2983 totallength = (off_t)atoll(tmp);
2984 paranoid_free(tmp);
2985 } else {
2986 file_to_openin = biggie_filename;
2987 if (strchr(biggie_filename,'\'') != NULL) {
2988 mr_asprintf(&command, "md5sum \"%s\"", biggie_filename);
2989 } else {
2990 mr_asprintf(&command, "md5sum '%s'", biggie_filename);
2991 }
2992 if (!(fin = popen(command, "r"))) {
2993 log_OS_error("Unable to popen-in command");
2994 mr_free(suffix);
2995 return (1);
2996 }
2997 mr_free(command);
2998 (void) fgets(checksum_line, MAX_STR_LEN, fin);
2999 pclose(fin);
3000 totallength = length_of_file (biggie_filename);
3001 }
3002 lstat(biggie_filename, &biggiestruct.properties);
3003 strcpy(biggiestruct.filename, biggie_filename);
3004 pB = strchr(checksum_line, ' ');
3005 if (!pB) {
3006 pB = strchr(checksum_line, '\t');
3007 }
3008 if (pB) {
3009 *pB = '\0';
3010 }
3011 strcpy(biggiestruct.checksum, checksum_line);
3012
3013 mr_asprintf(&tmp, "%s", slice_fname(biggie_file_number, 0, bkpinfo->tmpdir, ""));
3014 fout = fopen(tmp, "w");
3015 if (fout == NULL) {
3016 log_msg(1, "Unable to open and write to %s\n", tmp);
3017 paranoid_free(tmp);
3018 mr_free(suffix);
3019 return (1);
3020 }
3021 paranoid_free(tmp);
3022
3023 (void) fwrite((void *) &biggiestruct, 1, sizeof(biggiestruct), fout);
3024 if (fout) {
3025 paranoid_fclose(fout);
3026 }
3027 length = totallength / optimal_set_size / 1024;
3028 log_msg(1, "Opening in %s; slicing it and writing to CD/tape",
3029 file_to_openin);
3030 if (!(fin = fopen(file_to_openin, "r"))) {
3031 log_OS_error("Unable to openin biggie_filename");
3032 mr_asprintf(&tmp, "Cannot archive bigfile '%s': not found", biggie_filename);
3033 log_to_screen(tmp);
3034 paranoid_free(tmp);
3035
3036 paranoid_free(checksum_line);
3037 mr_free(suffix);
3038 return (1);
3039 }
3040 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
3041 res =
3042 move_files_to_stream(slice_fname(biggie_file_number, 0,
3043 bkpinfo->tmpdir, ""), NULL);
3044 } else {
3045 res =
3046 move_files_to_cd(slice_fname(biggie_file_number, 0,
3047 bkpinfo->tmpdir, ""), NULL);
3048 }
3049 i = bkpinfo->optimal_set_size / 256;
3050 if (!(tempblock = (char *) malloc(256 * 1024))) {
3051 fatal_error("malloc error 256*1024");
3052 }
3053 for (slice_num = 1; !finished; slice_num++) {
3054 mr_asprintf(&curr_slice_fname_uncompressed, "%s", slice_fname(biggie_file_number, slice_num, bkpinfo->tmpdir, ""));
3055 mr_asprintf(&curr_slice_fname_compressed, "%s", slice_fname(biggie_file_number, slice_num, bkpinfo->tmpdir, suffix));
3056
3057 mr_asprintf(&tmp, "%s", percent_media_full_comment());
3058 update_progress_form(tmp);
3059 paranoid_free(tmp);
3060
3061 if (!(fout = fopen(curr_slice_fname_uncompressed, "w"))) {
3062 log_OS_error(curr_slice_fname_uncompressed);
3063 mr_free(suffix);
3064 return (1);
3065 }
3066 if ((i == bkpinfo->optimal_set_size / 256)
3067 && (totalread < 1.1 * totallength)) {
3068 for (i = 0; i < bkpinfo->optimal_set_size / 256; i++) {
3069 blksize = fread(tempblock, 1, 256 * 1024, fin);
3070 if (blksize > 0) {
3071 totalread = totalread + blksize;
3072 (void) fwrite(tempblock, 1, blksize, fout);
3073 } else {
3074 break;
3075 }
3076 }
3077 } else {
3078 i = 0;
3079 }
3080 paranoid_fclose(fout);
3081 if (i > 0) // length_of_file (curr_slice_fname_uncompressed)
3082 {
3083 if (!does_file_exist(curr_slice_fname_uncompressed)) {
3084 log_msg(2,
3085 "Warning - '%s' doesn't exist. How can I compress slice?",
3086 curr_slice_fname_uncompressed);
3087 }
3088 if (should_I_compress_slices && bkpinfo->compression_level > 0) {
3089 mr_asprintf(&command, "%s -%d %s", bkpinfo->zip_exe, bkpinfo->compression_level, curr_slice_fname_uncompressed);
3090 log_msg(2, command);
3091 if ((res = system(command))) {
3092 log_OS_error(command);
3093 }
3094 // did_I_compress_slice = TRUE;
3095 } else {
3096 mr_asprintf(&command, "mv %s %s 2>> %s", curr_slice_fname_uncompressed, curr_slice_fname_compressed, MONDO_LOGFILE);
3097 res = 0; // don't do it :)
3098 // did_I_compress_slice = FALSE;
3099 }
3100 mr_free(command);
3101
3102 retval += res;
3103 if (res) {
3104 log_msg(2, "Failed to compress the slice");
3105 }
3106 if (bkpinfo->use_lzo
3107 && strcmp(curr_slice_fname_compressed,
3108 curr_slice_fname_uncompressed)) {
3109 unlink(curr_slice_fname_uncompressed);
3110 }
3111 if (res) {
3112 mr_asprintf(&tmp, "Problem with slice # %ld", slice_num);
3113 } else {
3114 mr_asprintf(&tmp, "%s - Bigfile #%ld, slice #%ld compressed OK ", biggie_filename, biggie_file_number + 1,
3115 slice_num);
3116 }
3117#ifndef _XWIN
3118 if (!g_text_mode) {
3119 newtDrawRootText(0, g_noof_rows - 2, tmp);
3120 newtRefresh();
3121 } else {
3122 log_msg(2, tmp);
3123 }
3124#else
3125 log_msg(2, tmp);
3126#endif
3127 paranoid_free(tmp);
3128
3129 mr_asprintf(&file_to_archive, "%s", curr_slice_fname_compressed);
3130 g_current_progress++;
3131 } else { /* if i==0 then ... */
3132
3133 finished = TRUE;
3134 mr_asprintf(&file_to_archive, "%s", curr_slice_fname_uncompressed);
3135 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
3136 break;
3137 }
3138 }
3139 mr_free(curr_slice_fname_uncompressed);
3140 mr_free(curr_slice_fname_compressed);
3141
3142 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
3143 register_in_tape_catalog(biggieslice, biggie_file_number,
3144 slice_num, file_to_archive);
3145 maintain_collection_of_recent_archives(bkpinfo->tmpdir,
3146 file_to_archive);
3147 res = move_files_to_stream(file_to_archive, NULL);
3148 } else {
3149 res = move_files_to_cd(file_to_archive, NULL);
3150 }
3151 mr_free(file_to_archive);
3152
3153 retval += res;
3154 if (res) {
3155 mr_asprintf(&tmp, "Failed to add slice %ld of bigfile %ld to scratchdir", slice_num, biggie_file_number + 1);
3156 log_to_screen(tmp);
3157 paranoid_free(tmp);
3158 fatal_error
3159 ("Hard disk full. You should have bought a bigger one.");
3160 }
3161 }
3162 mr_free(tempblock);
3163 mr_free(suffix);
3164 paranoid_fclose(fin);
3165 mr_asprintf(&tmp, "Sliced bigfile #%ld", biggie_file_number + 1);
3166 if (retval) {
3167 mr_strcat(tmp, "...FAILED");
3168 } else {
3169 mr_strcat(tmp, "...OK!");
3170 }
3171 log_msg(1, tmp);
3172 paranoid_free(tmp);
3173
3174 paranoid_free(checksum_line);
3175 return (retval);
3176}
3177
3178
3179/**
3180 * Remove the archives in @c d.
3181 * This could possibly include any of:
3182 * - all afioballs (compressed and not)
3183 * - all filelists
3184 * - all slices
3185 * - all checksums
3186 * - a zero filler file
3187 *
3188 * @param d The directory to wipe the archives from.
3189 * @ingroup utilityGroup
3190 */
3191void wipe_archives(char *d)
3192{
3193 /*@ buffers ********************************************* */
3194 char *tmp = NULL;
3195 char *dir = NULL;
3196
3197 assert_string_is_neither_NULL_nor_zerolength(d);
3198
3199 mr_asprintf(&dir, "%s/archives", d);
3200 mr_asprintf(&tmp, "find %s -name '*.afio*' -exec rm -f '{}' \\;", dir);
3201 run_program_and_log_output(tmp, FALSE);
3202 mr_free(tmp);
3203 mr_asprintf(&tmp, "find %s -name '*list.[0-9]*' -exec rm -f '{}' \\;", dir);
3204 run_program_and_log_output(tmp, FALSE);
3205 mr_free(tmp);
3206 mr_asprintf(&tmp, "find %s -name 'slice*' -exec rm -f '{}' \\;", dir);
3207 run_program_and_log_output(tmp, FALSE);
3208 mr_free(tmp);
3209 mr_asprintf(&tmp, "rm -f %s/cklist*", dir);
3210 run_program_and_log_output(tmp, FALSE);
3211 mr_free(tmp);
3212 mr_asprintf(&tmp, "rm -f %s/zero", dir);
3213 run_program_and_log_output(tmp, FALSE);
3214 mr_free(tmp);
3215 log_msg(1, "Wiped %s's archives", dir);
3216 mr_asprintf(&tmp, "ls -l %s", dir);
3217 mr_free(dir);
3218 run_program_and_log_output(tmp, FALSE);
3219 mr_free(tmp);
3220}
3221
3222
3223/**
3224 * @addtogroup LLarchiveGroup
3225 * @{
3226 */
3227/**
3228 * Write the final ISO image.
3229 * @param bkpinfo The backup information structure. Used only
3230 * in the call to @c write_iso_and_go_on().
3231 * @return The number of errors encountered (0 for success)
3232 * @see write_iso_and_go_on
3233 * @see make_iso_fs
3234 * @bug The final ISO is written even if there are no files on it. In practice,
3235 * however, this occurs rarely.
3236 */
3237int write_final_iso_if_necessary()
3238{
3239 /*@ int ***************************************************** */
3240 int res;
3241
3242 /*@ buffers ************************************************** */
3243 char *tmp;
3244
3245 malloc_string(tmp);
3246 assert(bkpinfo != NULL);
3247
3248// I should really check if there are any slices or tarballs to be copied to CD-R(W)'s; the odds are approx. 1 in a million that there are no files here, so I'll just go ahead & make one more CD anyway
3249
3250 sprintf(tmp, "Writing the final ISO");
3251 log_msg(2, tmp);
3252 center_string(tmp, 80);
3253#ifndef _XWIN
3254 if (!g_text_mode) {
3255 newtPushHelpLine(tmp);
3256 }
3257#endif
3258 res = write_iso_and_go_on(TRUE);
3259#ifndef _XWIN
3260 if (!g_text_mode) {
3261 newtPopHelpLine();
3262 }
3263#endif
3264 log_msg(2, "Returning from writing final ISO (res=%d)", res);
3265 paranoid_free(tmp);
3266 return (res);
3267}
3268
3269
3270/**
3271 * Write an ISO image to <tt>[bkpinfo->isodir]/bkpinfo->prefix-[g_current_media_number].iso</tt>.
3272 * @param bkpinfo The backup information structure. Fields used:
3273 * - @c backup_media_type
3274 * - @c prefix
3275 * - @c isodir
3276 * - @c manual_cd_tray
3277 * - @c media_size
3278 * - @c netfs_mount
3279 * - @c netfs_remote_dir
3280 * - @c scratchdir
3281 * - @c verify_data
3282 *
3283 * @param last_cd If TRUE, this is the last CD to write; if FALSE, it's not.
3284 * @return The number of errors encountered (0 for success)
3285 * @see make_iso_fs
3286 */
3287int write_iso_and_go_on(bool last_cd)
3288{
3289 /*@ pointers **************************************************** */
3290 FILE *fout;
3291
3292 /*@ buffers ***************************************************** */
3293 char *tmp;
3294 char *cdno_fname;
3295 char *lastcd_fname;
3296 char *isofile;
3297 char *mds = NULL;
3298
3299 /*@ bool ******************************************************** */
3300 bool that_one_was_ok;
3301 bool orig_vfy_flag_val;
3302
3303 /*@ int *********************************************************** */
3304 int res = 0;
3305
3306 malloc_string(tmp);
3307 malloc_string(cdno_fname);
3308 malloc_string(lastcd_fname);
3309 malloc_string(isofile);
3310
3311 assert(bkpinfo != NULL);
3312 orig_vfy_flag_val = bkpinfo->verify_data;
3313 if (bkpinfo->media_size[g_current_media_number] <= 0) {
3314 fatal_error("write_iso_and_go_on() - unknown media size");
3315 }
3316
3317 mds = media_descriptor_string(bkpinfo->backup_media_type);
3318 log_msg(1, "OK, time to make %s #%d", mds, g_current_media_number);
3319 mr_free(mds);
3320
3321 /* label the ISO with its number */
3322
3323 sprintf(cdno_fname, "%s/archives/THIS-CD-NUMBER", bkpinfo->scratchdir);
3324 fout = fopen(cdno_fname, "w");
3325 fprintf(fout, "%d", g_current_media_number);
3326 paranoid_fclose(fout);
3327
3328 sprintf(tmp, "cp -f %s/autorun %s/", g_mondo_home,
3329 bkpinfo->scratchdir);
3330 if (run_program_and_log_output(tmp, FALSE)) {
3331 log_msg(2, "Warning - unable to copy autorun to scratchdir");
3332 }
3333
3334 /* last CD or not? Label accordingly */
3335 sprintf(lastcd_fname, "%s/archives/NOT-THE-LAST", bkpinfo->scratchdir);
3336 if (last_cd) {
3337 unlink(lastcd_fname);
3338 log_msg(2,
3339 "OK, you're telling me this is the last CD. Fair enough.");
3340 } else {
3341 fout = fopen(lastcd_fname, "w");
3342 fprintf(fout,
3343 "You're listening to 90.3 WPLN, Nashville Public Radio.\n");
3344 paranoid_fclose(fout);
3345 }
3346 if (space_occupied_by_cd(bkpinfo->scratchdir) / 1024 >
3347 bkpinfo->media_size[g_current_media_number]) {
3348 sprintf(tmp,
3349 "Warning! CD is too big. It occupies %ld KB, which is more than the %ld KB allowed.",
3350 (long) space_occupied_by_cd(bkpinfo->scratchdir),
3351 (long) bkpinfo->media_size[g_current_media_number]);
3352 log_to_screen(tmp);
3353 }
3354 sprintf(isofile, "%s/%s/%s-%d.iso", bkpinfo->isodir,
3355 bkpinfo->netfs_remote_dir, bkpinfo->prefix,
3356 g_current_media_number);
3357 for (that_one_was_ok = FALSE; !that_one_was_ok;) {
3358 if (bkpinfo->backup_media_type != usb) {
3359 res = make_iso_fs(isofile);
3360 } else {
3361 res = make_usb_fs();
3362 }
3363 if (g_current_media_number == 1 && !res
3364 && (bkpinfo->backup_media_type == cdr
3365 || bkpinfo->backup_media_type == cdrw)) {
3366 if (find_cdrom_device(tmp, FALSE)) // make sure find_cdrom_device() finds, records CD-R's loc
3367 {
3368 log_msg(3, "*Sigh* Mike, I hate your computer.");
3369 bkpinfo->manual_cd_tray = TRUE;
3370 } // if it can't be found then force pausing
3371 else {
3372 log_msg(3, "Great. Found Mike's CD-ROM drive.");
3373 }
3374 }
3375 if (bkpinfo->verify_data && !res) {
3376 mds = media_descriptor_string(g_backup_media_type);
3377 log_to_screen
3378 ("Please reboot from the 1st %s in Compare Mode, as a precaution.", mds);
3379 mr_free(mds);
3380 chdir("/");
3381 log_it("Before calling verification of image()");
3382 if (bkpinfo->backup_media_type == usb) {
3383 res += verify_usb_image();
3384 } else {
3385 res += verify_cd_image();
3386 }
3387 log_it("After calling verification of image()");
3388 }
3389 if (!res) {
3390 that_one_was_ok = TRUE;
3391 } else {
3392 mds = media_descriptor_string(bkpinfo->backup_media_type);
3393 sprintf(tmp, "Failed to create %s #%d. Retry?", mds, g_current_media_number);
3394 mr_free(mds);
3395 res = ask_me_yes_or_no(tmp);
3396 if (!res) {
3397 if (ask_me_yes_or_no("Abort the backup?")) {
3398 fatal_error("FAILED TO BACKUP");
3399 } else {
3400 break;
3401 }
3402 } else {
3403 log_msg(2, "Retrying, at user's request...");
3404 res = 0;
3405 }
3406 }
3407 }
3408 g_current_media_number++;
3409 if (g_current_media_number > MAX_NOOF_MEDIA) {
3410 fatal_error("Too many media. Use tape or net.");
3411 }
3412 wipe_archives(bkpinfo->scratchdir);
3413 sprintf(tmp, "rm -Rf %s/images/*gz %s/images/*data*img",
3414 bkpinfo->scratchdir, bkpinfo->scratchdir);
3415 if (system(tmp)) {
3416 log_msg
3417 (2,
3418 "Error occurred when I tried to delete the redundant IMGs and GZs");
3419 }
3420
3421 if (last_cd) {
3422 log_msg(2, "This was your last media.");
3423 } else {
3424 log_msg(2, "Continuing to backup your data...");
3425 }
3426
3427 bkpinfo->verify_data = orig_vfy_flag_val;
3428 paranoid_free(tmp);
3429 paranoid_free(cdno_fname);
3430 paranoid_free(lastcd_fname);
3431 paranoid_free(isofile);
3432 return (0);
3433}
3434
3435/* @} - end of LLarchiveGroup */
3436
3437
3438
3439
3440/**
3441 * Verify the user's data.
3442 * @param bkpinfo The backup information structure. Fields used:
3443 * - @c backup_data
3444 * - @c backup_media_type
3445 * - @c media_device
3446 * - @c verify_data
3447 *
3448 * @return The number of errors encountered (0 for success)
3449 * @ingroup verifyGroup
3450 */
3451int verify_data()
3452{
3453 int res = 0, retval = 0, cdno = 0;
3454 char *tmp = NULL;
3455 char *mds = NULL;
3456 long diffs = 0;
3457
3458 assert(bkpinfo != NULL);
3459 if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
3460 chdir("/");
3461 mvaddstr_and_log_it(g_currentY, 0,
3462 "Verifying archives against live filesystem");
3463 if (bkpinfo->backup_media_type == cdstream) {
3464 strcpy(bkpinfo->media_device, "/dev/cdrom");
3465 }
3466 verify_tape_backups();
3467 mvaddstr_and_log_it(g_currentY++, 74, "Done.");
3468 } else if (bkpinfo->backup_data)
3469 //bkpinfo->backup_media_type == cdrw || bkpinfo->backup_media_type == cdr))
3470 {
3471 log_msg(2,
3472 "Not verifying again. Per-CD/ISO verification already carried out.");
3473 mr_asprintf(&tmp, "cat %s/changed.files > %s/changed.files 2> /dev/null",bkpinfo->tmpdir, MONDO_CACHE);
3474 paranoid_system(tmp);
3475 mr_free(tmp);
3476 } else {
3477 g_current_media_number = cdno;
3478 if (bkpinfo->backup_media_type != iso) {
3479 find_cdrom_device(bkpinfo->media_device, FALSE); // replace 0,0,0 with /dev/cdrom
3480 }
3481 chdir("/");
3482 for (cdno = 1; cdno < 99 && bkpinfo->verify_data; cdno++) {
3483 if (cdno != g_current_media_number) {
3484 log_msg(2,
3485 "Warning - had to change g_current_media_number from %d to %d",
3486 g_current_media_number, cdno);
3487 g_current_media_number = cdno;
3488 }
3489 if (bkpinfo->backup_media_type != iso) {
3490 insist_on_this_cd_number(cdno);
3491 }
3492 res = verify_cd_image(); // sets verify_data to FALSE if it's time to stop verifying
3493 retval += res;
3494 if (res) {
3495 mds = media_descriptor_string(bkpinfo->backup_media_type);
3496 mr_asprintf(&tmp, "Warnings/errors were reported while checking %s #%d", mds, g_current_media_number);
3497 mr_free(mds);
3498 log_to_screen(tmp);
3499 mr_free(tmp);
3500
3501 }
3502 }
3503 mr_asprintf(&tmp, "grep 'afio: ' %s | sed 's/afio: //' | grep -vE '^/dev/.*$' >> %s/changed.files", MONDO_LOGFILE, MONDO_CACHE);
3504 (void)system(tmp);
3505 mr_free(tmp);
3506
3507 mr_asprintf(&tmp, "grep 'star: ' %s | sed 's/star: //' | grep -vE '^/dev/.*$' >> %s/changed.files", MONDO_LOGFILE, MONDO_CACHE);
3508 (void)system(tmp);
3509 mr_free(tmp);
3510 run_program_and_log_output("umount " MNT_CDROM, FALSE);
3511// if (bkpinfo->backup_media_type != iso && !bkpinfo->please_dont_eject_when_restoring)
3512//{
3513 eject_device(bkpinfo->media_device);
3514//}
3515 }
3516 mr_asprintf(&tmp, "%s/changed.files", MONDO_CACHE);
3517 diffs = count_lines_in_file(tmp);
3518 mr_free(tmp);
3519
3520 if (diffs > 0) {
3521 if (retval == 0) {
3522 retval = (int) (-diffs);
3523 }
3524 }
3525 return (retval);
3526}
3527
3528
3529void setenv_mondo_share(void) {
3530
3531setenv("MONDO_SHARE", MONDO_SHARE, 1);
3532}
Note: See TracBrowser for help on using the repository browser.