source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-archive.c@ 2595

Last change on this file since 2595 was 2595, checked in by Bruno Cornec, 14 years ago

r3736@localhost: bruno | 2010-03-14 20:37:04 +0100

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