source: MondoRescue/trunk/mondo/mondo/common/libmondo-stream.c@ 689

Last change on this file since 689 was 689, checked in by bcornec, 18 years ago

Still other memory management improvements ( I hope :-)

  • Property svn:keywords set to Id
File size: 46.8 KB
Line 
1/* $Id: libmondo-stream.c 689 2006-07-17 17:43:58Z bcornec $
2
3...tools for talking to tapes, Monitas streams, etc.
4*/
5
6/*
7 *
8 * @file
9 * Functions for writing data to/reading data from streams (tape, CD stream, etc.)
10 */
11
12#include <unistd.h>
13
14#include "my-stuff.h"
15#include "mondostructures.h"
16#include "libmondo-devices.h"
17#include "libmondo-stream.h"
18#include "libmondo-string-EXT.h"
19#include "libmondo-files-EXT.h"
20#include "newt-specific-EXT.h"
21#include "libmondo-fork-EXT.h"
22#include "libmondo-tools-EXT.h"
23#include "libmondo-fifo-EXT.h"
24
25#define EXTRA_TAPE_CHECKSUMS
26
27extern bool g_sigpipe;
28extern int g_tape_buffer_size_MB;
29
30/**
31 * @addtogroup globalGroup
32 * @{
33 */
34/**
35 * The file pointer for the opened tape/CD stream.
36 * Opened and closed by openin_tape(), openin_cdstream(),
37 * openout_tape(), openout_cdstream(), closein_tape(), closein_cdstream(),
38 * closeout_tape(), and closeout_cdstream().
39 */
40FILE *g_tape_stream = NULL;
41
42
43/**
44 * The position (in kilobytes) where we are on the tape.
45 */
46long long g_tape_posK = 0;
47
48/**
49 * The current media number we're using. This value is 1-based.
50 */
51int g_current_media_number = -1;
52
53/**
54 * The tape catalog that keeps track of files written to tape.
55 */
56struct s_tapecatalog *g_tapecatalog;
57
58/* @} - end of globalGroup */
59
60int write_backcatalog_to_tape(struct s_bkpinfo *bkpinfo);
61
62
63
64
65
66/**
67 * @addtogroup streamGroup
68 * @{
69 */
70/**
71 * Close the global output file descriptor which Mondo has used to read
72 * from the CD stream.
73 * @param bkpinfo The backup information structure. Passed directly to closein_tape().
74 * @return 0 for success, nonzero for failure.
75 * @note This should be called by restore processes only.
76 */
77int closein_cdstream(struct s_bkpinfo *bkpinfo)
78{
79 return (closein_tape(bkpinfo));
80}
81
82
83/**
84 * Close the global output file descriptor which Mondo has used to read
85 * from buffer or dd, which read from the tape.
86 * @param bkpinfo The backup information structure. Unused.
87 * @return 0 for success, nonzero for failure.
88 * @note This should be called by restore processes only.
89 * @note This function also works for cdstreams for now, but don't count on this behavior.
90 * @bug @p bkpinfo parameter is unused.
91 */
92int closein_tape(struct s_bkpinfo *bkpinfo)
93{
94 /*@ int's ******************************************************* */
95 int retval = 0;
96 int res = 0;
97 int ctrl_chr = '\0';
98
99 /*@ long long's ************************************************* */
100 long long size;
101 char *blk;
102 int i;
103
104 blk = (char *) malloc(256 * 1024);
105
106 log_it("closein_tape() -- entering");
107 res = read_header_block_from_stream(&size, NULL, &ctrl_chr);
108 retval += res;
109 if (ctrl_chr != BLK_END_OF_BACKUP) {
110 wrong_marker(BLK_END_OF_BACKUP, ctrl_chr);
111 }
112 res = read_header_block_from_stream(&size, NULL, &ctrl_chr);
113 retval += res;
114 if (ctrl_chr != BLK_END_OF_TAPE) {
115 wrong_marker(BLK_END_OF_TAPE, ctrl_chr);
116 }
117 for (i = 0; i < 8 && !feof(g_tape_stream); i++) {
118 (void) fread(blk, 1, 256 * 1024, g_tape_stream);
119 }
120 sleep(1);
121 sync();
122 sleep(1);
123 paranoid_pclose(g_tape_stream);
124 log_it("closein_tape() -- leaving");
125 if (!bkpinfo->please_dont_eject) {
126 eject_device(bkpinfo->media_device);
127 }
128 paranoid_free(blk);
129 paranoid_free(g_tapecatalog);
130 return (retval);
131}
132
133
134
135/**
136 * Close the global output file descriptor which Mondo has been using to write
137 * to the tape device (via buffer or dd).
138 * @param bkpinfo The backup information structure. @c bkpinfo->media_size is the only field used.
139 * @return 0 for success, nonzero for failure.
140 * @note This should be called by backup processes only.
141 */
142int closeout_tape(struct s_bkpinfo *bkpinfo)
143{
144 /*@ int's ******************************************************* */
145 int retval = 0;
146
147 /*@ long long's ************************************************* */
148 int i;
149 char *blk;
150
151 blk = (char *) malloc(256 * 1024);
152
153 sleep(1);
154 sync();
155 sleep(1);
156 log_it("closeout_tape() -- entering");
157 retval +=
158 write_header_block_to_stream((off_t)0, "end-of-backup",
159 BLK_END_OF_BACKUP);
160 retval += write_header_block_to_stream((off_t)0, "end-of-tape", BLK_END_OF_TAPE); /* just in case */
161 /* write 1MB of crap */
162 for (i = 0; i < 256 * 1024; i++) {
163 blk[i] = (int) (random() & 0xFF);
164 }
165 for (i = 0; i < 4 * 8; i++) {
166 (void) fwrite(blk, 1, 256 * 1024, g_tape_stream);
167 if (should_we_write_to_next_tape
168 (bkpinfo->media_size[g_current_media_number], (off_t)256 * 1024)) {
169 start_to_write_to_next_tape(bkpinfo);
170 }
171 }
172 sleep(2);
173 paranoid_pclose(g_tape_stream);
174 log_it("closeout_tape() -- leaving");
175 for (i = 0; i < g_tapecatalog->entries; i++) {
176 log_it("i=%d type=%s num=%d aux=%ld posK=%lld", i,
177 (g_tapecatalog->el[i].type ==
178 fileset) ? "fileset" : "bigslice",
179 g_tapecatalog->el[i].number, g_tapecatalog->el[i].aux,
180 g_tapecatalog->el[i].tape_posK);
181 }
182 paranoid_free(blk);
183 paranoid_free(g_tapecatalog);
184 return (retval);
185}
186
187
188
189bool mt_says_tape_exists(char *dev)
190{
191 char *command;
192 int res;
193
194 asprintf(&command, "mt -f %s status", dev);
195 res = run_program_and_log_output(command, 1);
196 paranoid_free(command);
197 if (res) {
198 return (FALSE);
199 } else {
200 return (TRUE);
201 }
202}
203
204
205
206/**
207 * Determine the name and size of the tape device. Tries the SCSI tape for
208 * this platform, then the IDE tape, then "/dev/st0", then "/dev/osst0".
209 * @param dev Where to put the found tape device.
210 * @param siz Where to put the tape size (a string like "4GB"). Should be freed by caller
211 * @return 0 if success, nonzero if failure (in which @p dev and @p siz are undefined).
212 */
213int find_tape_device_and_size(char *dev, char *siz)
214{
215 char *tmp = NULL;
216 char *tmp1 = NULL;
217 char *command = NULL;
218 char *cdr_exe = NULL;
219 int res = 0;
220
221 log_to_screen("I am looking for your tape streamer. Please wait.");
222 dev = NULL;
223 siz = NULL;
224 tmp = find_home_of_exe("cdrecord");
225 if (tmp) {
226 asprintf(&cdr_exe, "cdrecord");
227 } else {
228 asprintf(&cdr_exe, "dvdrecord");
229 }
230 paranoid_free(tmp);
231
232 asprintf(&command, "%s -scanbus 2> /dev/null | grep -i tape | wc -l",
233 cdr_exe);
234 tmp = call_program_and_get_last_line_of_output(command);
235 paranoid_free(command);
236
237 if (atoi(tmp) != 1) {
238 log_it
239 ("Either too few or too many tape streamers for me to detect...");
240 asprintf(&dev, VANILLA_SCSI_TAPE"0");
241 paranoid_free(tmp);
242 paranoid_free(cdr_exe);
243 return 1;
244 }
245 paranoid_free(tmp);
246
247 asprintf(&command,
248 "%s -scanbus 2> /dev/null | tr -s '\t' ' ' | grep \"[0-9]*,[0-9]*,[0-9]*\" | grep -v \"[0-9]*) \\*\" | grep -i TAPE | cut -d' ' -f2 | head -n1",
249 cdr_exe);
250 tmp = call_program_and_get_last_line_of_output(command);
251 paranoid_free(command);
252 if (strlen(tmp) < 2) {
253 log_it("Could not find tape device");
254 paranoid_free(tmp);
255 paranoid_free(cdr_exe);
256 return 1;
257 }
258 paranoid_free(tmp);
259
260 asprintf(&command,
261 "%s -scanbus 2> /dev/null | tr -s '\t' ' ' | grep \"[0-9]*,[0-9]*,[0-9]*\" | grep -v \"[0-9]*) \\*\" | grep -i TAPE | cut -d' ' -f3 | cut -d')' -f1 | head -n1",
262 cdr_exe);
263 paranoid_free(cdr_exe);
264
265 tmp = call_program_and_get_last_line_of_output(command);
266 paranoid_free(command);
267
268 asprintf(&dev, VANILLA_SCSI_TAPE"%s", tmp);
269 paranoid_free(tmp);
270
271 if (!mt_says_tape_exists(dev)) {
272 paranoid_free(dev);
273
274 asprintf(&dev, ALT_TAPE"%s", tmp);
275 if (!mt_says_tape_exists(dev)) {
276 log_it("Cannot openin %s", dev);
277 paranoid_free(dev);
278
279 asprintf(&dev, VANILLA_SCSI_TAPE"0");
280 if (!mt_says_tape_exists(dev)) {
281 log_it("Cannot openin %s", dev);
282 paranoid_free(dev);
283
284 asprintf(&dev, "/dev/osst0");
285 if (!mt_says_tape_exists(dev)) {
286 res++;
287 } else {
288 res = 0;
289 }
290 }
291 }
292 }
293
294 log_it("At this point, dev = %s and res = %d", dev, res);
295
296 tmp = call_program_and_get_last_line_of_output("\
297cdrecord -scanbus 2> /dev/null | tr -s '\t' ' ' | \
298grep \"[0-9]*,[0-9]*,[0-9]*\" | grep -v \"[0-9]*) \\*\" | grep -i TAPE | \
299awk '{for(i=1; i<NF; i++) { if (index($i, \"GB\")>0) { print $i;};};};'");
300
301 if (mt_says_tape_exists(dev)) {
302 res = 0;
303 } else {
304 log_it("Turning %s", dev);
305 paranoid_free(tmp);
306 asprintf(&tmp1,
307 (strrchr(dev, '/') != NULL) ? strrchr(dev, '/') : dev);
308 paranoid_free(dev);
309 asprintf(&dev, "/dev/os%s", tmp1);
310 paranoid_free(tmp1);
311
312 log_it("...into %s", dev);
313 if (mt_says_tape_exists(dev)) {
314 res = 0;
315 } else {
316 res++;
317 }
318 }
319
320 log_it("res=%d; dev=%s", res, dev);
321
322 if (res) {
323 paranoid_free(tmp);
324 return (res);
325 }
326
327 if (strlen(tmp) < 2) {
328 log_it("Warning - size of tape unknown");
329 paranoid_free(tmp);
330 return (0);
331 } else {
332 siz = tmp;
333 return (0);
334 }
335}
336
337int read_EXAT_files_from_tape(struct s_bkpinfo *bkpinfo,
338 long long *ptmp_size, char *tmp_fname,
339 int *pctrl_chr, char *xattr_fname,
340 char *acl_fname)
341{
342 int res = 0;
343 int retval = 0;
344 char *fname = (char *)&res; /* Should NOT be NULL */
345
346// xattr
347 res = read_header_block_from_stream(ptmp_size, fname, pctrl_chr);
348 if (*pctrl_chr != BLK_START_EXAT_FILE) {
349 wrong_marker(BLK_START_EXAT_FILE, *pctrl_chr);
350 }
351 if (!strstr(fname, "xattr")) {
352 fatal_error("Wrong order, sunshine.");
353 }
354 paranoid_free(fname);
355 fname = (char *)&res;
356 read_file_from_stream_to_file(bkpinfo, xattr_fname, *ptmp_size);
357 res = read_header_block_from_stream(ptmp_size, NULL, pctrl_chr);
358 if (*pctrl_chr != BLK_STOP_EXAT_FILE) {
359 wrong_marker(BLK_STOP_EXAT_FILE, *pctrl_chr);
360 }
361 // acl
362 res = read_header_block_from_stream(ptmp_size, fname, pctrl_chr);
363 if (!strstr(fname, "acl")) {
364 fatal_error("Wrong order, sunshine.");
365 }
366 paranoid_free(fname);
367 fname = (char *)&res;
368 if (*pctrl_chr != BLK_START_EXAT_FILE) {
369 wrong_marker(BLK_START_EXAT_FILE, *pctrl_chr);
370 }
371 read_file_from_stream_to_file(bkpinfo, acl_fname, *ptmp_size);
372 res = read_header_block_from_stream(ptmp_size, NULL, pctrl_chr);
373 if (*pctrl_chr != BLK_STOP_EXAT_FILE) {
374 wrong_marker(BLK_STOP_EXAT_FILE, *pctrl_chr);
375 }
376 res = read_header_block_from_stream(ptmp_size, NULL, pctrl_chr);
377 if (*pctrl_chr != BLK_STOP_EXTENDED_ATTRIBUTES) {
378 wrong_marker(BLK_STOP_EXTENDED_ATTRIBUTES, *pctrl_chr);
379 }
380 // tarball itself
381 res = read_header_block_from_stream(ptmp_size, fname, pctrl_chr);
382 log_msg(1, "Got xattr and acl; now looking for afioball");
383 tmp_fname = fname;
384 return (retval);
385}
386
387
388int write_EXAT_files_to_tape(struct s_bkpinfo *bkpinfo, char *xattr_fname,
389 char *acl_fname)
390{
391 int res = 0;
392 // EXATs
393 write_header_block_to_stream(length_of_file(xattr_fname), xattr_fname,
394 BLK_START_EXTENDED_ATTRIBUTES);
395 // xattr
396 write_header_block_to_stream(length_of_file(xattr_fname), xattr_fname,
397 BLK_START_EXAT_FILE);
398 write_file_to_stream_from_file(bkpinfo, xattr_fname);
399 write_header_block_to_stream((off_t)-1, xattr_fname, BLK_STOP_EXAT_FILE);
400// acl
401 write_header_block_to_stream(length_of_file(acl_fname), acl_fname,
402 BLK_START_EXAT_FILE);
403 write_file_to_stream_from_file(bkpinfo, acl_fname);
404 write_header_block_to_stream((off_t)-1, acl_fname, BLK_STOP_EXAT_FILE);
405 write_header_block_to_stream(length_of_file(xattr_fname), xattr_fname,
406 BLK_STOP_EXTENDED_ATTRIBUTES);
407 return (res);
408}
409
410
411
412
413/**
414 * Tell the user to insert tape @p tapeno and wait for it to settle (5 seconds).
415 * @param tapeno The tape number to insist on.
416 * @bug There is currently no way to actually verify that the user has actually
417 * inserted the right tape.
418 */
419void insist_on_this_tape_number(int tapeno)
420{
421 int i;
422 char *tmp;
423
424 log_it("Insisting on tape #%d", tapeno);
425 if (g_current_media_number != tapeno) {
426 // log_it("g_current_media_number = %d", g_current_media_number);
427 asprintf(&tmp,
428 _("When the tape drive goes quiet, please insert volume %d in this series."),
429 tapeno);
430 popup_and_OK(tmp);
431 paranoid_free(tmp);
432 open_evalcall_form(_("Waiting while the tape drive settles"));
433 } else {
434 open_evalcall_form(_("Waiting while the tape drive rewinds"));
435 }
436
437 for (i = 0; i <= 100; i += 2) {
438 usleep(100000);
439 update_evalcall_form(i);
440 }
441 close_evalcall_form();
442 log_it("I assume user has inserted it. They _say_ they have...");
443 g_current_media_number = tapeno;
444
445 // log_it("g_current_media_number = %d", g_current_media_number);
446 log_it("OK, I've finished insisting. On with the revelry.");
447}
448
449
450/**
451 * Debugging aid - log the offset we're at on the tape (reading or writing).
452 */
453void log_tape_pos(void)
454{
455 log_it("Tape position -- %ld KB (%ld MB)", (long) g_tape_posK,
456 (long) g_tape_posK >> 10);
457}
458
459
460
461
462/**
463 * Add a file to a collection of recently archived filesets/slices.
464 * The type is determined by the filename: if it contains ".afio." it is
465 * assumed to be a fileset, otherwise if it contains "slice" it's a slice,
466 * otherwise we generate a fatal_error().
467 * @param td The current @c bkpinfo->tempdir (file will be placed in <tt>td</tt>/tmpfs/backcatalog/).
468 * @param latest_fname The file to place in the collection.
469 * @return 0, always.
470 * @bug Return value is redundant.
471 * @bug The detection won't work for uncompressed afioballs (they end in ".afio", no dot afterwards). // Not true. They end in '.' -Hugo
472 */
473int maintain_collection_of_recent_archives(char *td, char *latest_fname)
474{
475 long long final_alleged_writeK, final_projected_certain_writeK,
476 final_actually_certain_writeK = 0, cposK, bufsize_K;
477 int last, curr, i;
478 t_archtype type = other;
479 char *command;
480 char *tmpdir;
481 char *old_fname;
482
483 bufsize_K = (long long) (1024LL * (1 + g_tape_buffer_size_MB));
484 asprintf(&tmpdir, "%s/tmpfs/backcatalog", td);
485 if (strstr(latest_fname, ".afio.") || strstr(latest_fname, ".star.")) {
486 type = fileset;
487 } else if (strstr(latest_fname, "slice")) {
488 type = biggieslice;
489 } else {
490 log_it("fname = %s", latest_fname);
491 fatal_error
492 ("Unknown type. Internal error in maintain_collection_of_recent_archives()");
493 }
494 mkdir(tmpdir, 0x700);
495 asprintf(&command, "cp -f %s %s", latest_fname, tmpdir);
496 if (run_program_and_log_output(command, 6)) {
497 log_it("Warning - failed to copy %s to backcatalog at %s",
498 latest_fname, tmpdir);
499 }
500 paranoid_free(command);
501
502 last = g_tapecatalog->entries - 1;
503 if (last <= 0) {
504 iamhere("Too early to start deleting from collection.");
505 return (0);
506 }
507 final_alleged_writeK = g_tapecatalog->el[last].tape_posK;
508 final_projected_certain_writeK = final_alleged_writeK - bufsize_K;
509 for (curr = last; curr >= 0; curr--) {
510 cposK = g_tapecatalog->el[curr].tape_posK;
511 if (cposK < final_projected_certain_writeK) {
512 final_actually_certain_writeK = cposK;
513 break;
514 }
515 }
516 if (curr < 0) {
517 iamhere
518 ("Not far enough into tape to start deleting old archives from collection.");
519 return (0);
520 }
521// log_it( "There are %lld KB (more than %d KB) in my backcatalog", final_alleged_writeK - final_actually_certain_writeK, bufsize_K);
522
523 for (i = curr - 1; i >= 0 && curr - i < 10; i--) {
524 asprintf(&old_fname, "%s/%s", tmpdir, g_tapecatalog->el[i].fname);
525 unlink(old_fname);
526 paranoid_free(old_fname);
527 }
528 paranoid_free(tmpdir);
529 return (0);
530}
531
532
533/**
534 * Open the CD stream for input.
535 * @param bkpinfo The backup information structure. Passed to openin_tape().
536 * @return 0 for success, nonzero for failure.
537 * @note Equivalent to openin_tape() for now, but don't count on this behavior.
538 */
539int openin_cdstream(struct s_bkpinfo *bkpinfo)
540{
541 return (openin_tape(bkpinfo));
542}
543
544
545/**
546 * FIFO used to read/write to the tape device.
547 * @bug This seems obsolete now that we call an external @c buffer program. Please look onto this.
548 */
549char g_tape_fifo[MAX_STR_LEN];
550
551int set_tape_block_size_with_mt(char *tapedev,
552 long internal_tape_block_size)
553{
554 char *tmp;
555 int res;
556
557 if (strncmp(tapedev, "/dev/", 5)) {
558 log_msg(1,
559 "Not using 'mt setblk'. This isn't an actual /dev entry.");
560 return (0);
561 }
562 asprintf(&tmp, "mt -f %s setblk %ld", tapedev,
563 internal_tape_block_size);
564 res = run_program_and_log_output(tmp, 3);
565 paranoid_free(tmp);
566 return (res);
567}
568
569
570/**
571 * Open the tape device for input.
572 * @param bkpinfo The backup information structure. Fields used:
573 * - @c bkpinfo->media_device
574 * - @c bkpinfo->tmpdir
575 * @return 0 for success, nonzero for failure.
576 * @note This will also work with a cdstream for now, but don't count on this behavior.
577 */
578int openin_tape(struct s_bkpinfo *bkpinfo)
579{
580 /*@ buffer ***************************************************** */
581 char *datablock;
582 char *tmp;
583 char old_cwd[MAX_STR_LEN];
584 char *outfname;
585 /*@ int ******************************************************* */
586 int i;
587 int j;
588 int res;
589 long length, templong;
590 size_t k;
591 int retval = 0;
592 int ctrl_chr;
593
594 /*@ long long ************************************************* */
595 long long size;
596
597 /*@ pointers ************************************************** */
598 FILE *fout;
599
600 /*@ end vars *************************************************** */
601
602 assert_string_is_neither_NULL_nor_zerolength(bkpinfo->media_device);
603 if (!(g_tapecatalog = malloc(sizeof(struct s_tapecatalog)))) {
604 fatal_error("Cannot alloc mem for tape catalog");
605 }
606 g_tapecatalog->entries = 0;
607 g_tape_posK = 0;
608 if (g_tape_stream) {
609 log_it("FYI - I won't 'openin' the tape. It's already open.");
610 return (0);
611 }
612 insist_on_this_tape_number(1);
613 asprintf(&outfname, "%s/tmp/all.tar.gz", bkpinfo->tmpdir);
614 make_hole_for_file(outfname);
615
616 set_tape_block_size_with_mt(bkpinfo->media_device,
617 bkpinfo->internal_tape_block_size);
618
619 log_it("Opening IN tape");
620 if (!
621 (g_tape_stream =
622 open_device_via_buffer(bkpinfo->media_device, 'r',
623 bkpinfo->internal_tape_block_size))) {
624 log_OS_error(g_tape_fifo);
625 log_to_screen(_("Cannot openin stream device"));
626 return (1);
627 }
628 log_to_screen(_("Reading stream"));
629 log_it("stream device = '%s'", bkpinfo->media_device);
630/* skip data disks */
631 open_evalcall_form("Skipping data disks on stream");
632 log_to_screen(_("Skipping data disks on stream"));
633 if (!(fout = fopen(outfname, "w"))) {
634 log_OS_error(outfname);
635 log_to_screen(_("Cannot openout datadisk all.tar.gz file"));
636 return (-1);
637 }
638 if (!(datablock = (char *) malloc(256 * 1024))) {
639 log_to_screen(_("Unable to malloc 256*1024"));
640 exit(1);
641 }
642 for (i = 0; i < 32; i++) {
643 for (j = 0; j < 4; j++) {
644 for (length = 0, k = 0; length < 256 * 1024; length += k) {
645 k = fread(datablock + length, 1, 256 * 1024 - length,
646 g_tape_stream);
647 }
648 (void) fwrite(datablock, 1, (size_t) length, fout);
649 g_tape_posK += length / 1024;
650 }
651 if (i > 8) // otherwise, 'buffer' distorts calculations
652 {
653 templong = ((i - 8) * 4 + j) * 100 / (128 - 8 * 4);
654 update_evalcall_form((int) (templong));
655 }
656 }
657 paranoid_fclose(fout);
658 paranoid_free(datablock);
659 /* find initial blocks */
660 res = read_header_block_from_stream(&size, NULL, &ctrl_chr);
661 retval += res;
662 if (ctrl_chr != BLK_START_OF_TAPE) {
663 wrong_marker(BLK_START_OF_TAPE, ctrl_chr);
664 }
665 res = read_header_block_from_stream(&size, NULL, &ctrl_chr);
666 retval += res;
667 if (ctrl_chr != BLK_START_OF_BACKUP) {
668 wrong_marker(BLK_START_OF_BACKUP, ctrl_chr);
669 }
670 close_evalcall_form();
671 log_it("Saved all.tar.gz to '%s'", outfname);
672 (void) getcwd(old_cwd, MAX_STR_LEN);
673 chdir(bkpinfo->tmpdir);
674 asprintf(&tmp, "tar -zxf %s tmp/mondo-restore.cfg 2> /dev/null",
675 outfname);
676 paranoid_system(tmp);
677 paranoid_free(tmp);
678 paranoid_system("cp -f tmp/mondo-restore.cfg . 2> /dev/null");
679 chdir(old_cwd);
680 unlink(outfname);
681 paranoid_free(outfname);
682 return (retval);
683}
684
685
686/**
687 * Start writing to a CD stream.
688 * @param cddev The CD device to openout via cdrecord.
689 * @param speed The speed to write at.
690 * @return 0 for success, nonzero for failure.
691 * @note This should be called only from backup processes.
692 */
693int openout_cdstream(char *cddev, int speed)
694{
695 /*@ buffers ***************************************************** */
696 char *command;
697
698 /*@ end vars *************************************************** */
699
700 /* add 'dummy' if testing */
701 asprintf(&command,
702 "cdrecord -eject dev=%s speed=%d fs=24m -waiti - >> %s 2>> %s",
703 cddev, speed, MONDO_LOGFILE, MONDO_LOGFILE);
704 /* initialise the catalog */
705 g_current_media_number = 1;
706 if (!(g_tapecatalog = malloc(sizeof(struct s_tapecatalog)))) {
707 fatal_error("Cannot alloc mem for tape catalog");
708 }
709 g_tapecatalog->entries = 0;
710 /* log stuff */
711 log_it("Opening OUT cdstream with the command");
712 log_it(command);
713 /* log_it("Let's see what happens, shall we?"); */
714 g_tape_stream = popen(command, "w");
715 paranoid_free(command);
716 if (g_tape_stream) {
717 return (0);
718 } else {
719 log_to_screen(_("Failed to openout to cdstream (fifo)"));
720 return (1);
721 }
722}
723
724
725/**
726 * Start writing to a tape device for the backup.
727 * @param tapedev The tape device to open for writing.
728 * @return 0 for success, nonzero for failure.
729 * @note This should be called ONLY from backup processes. It will OVERWRITE ANY
730 * EXISTING DATA on the tape!
731 */
732int openout_tape(char *tapedev, long internal_tape_block_size)
733{
734 g_current_media_number = 1;
735 if (g_tape_stream) {
736 log_it("FYI - I won't 'openout' the tape. It's already open.");
737 return (0);
738 }
739 if (!(g_tapecatalog = malloc(sizeof(struct s_tapecatalog)))) {
740 fatal_error("Cannot alloc mem for tape catalog");
741 }
742 g_tapecatalog->entries = 0;
743 g_tape_posK = 0;
744
745 set_tape_block_size_with_mt(tapedev, internal_tape_block_size);
746 log_it("Opening OUT tape");
747 if (!
748 (g_tape_stream =
749 open_device_via_buffer(tapedev, 'w', internal_tape_block_size))) {
750 log_OS_error(g_tape_fifo);
751 log_to_screen(_("Cannot openin stream device"));
752 return (1);
753 }
754 return (0);
755}
756
757
758/**
759 * Copy a file from the opened stream (CD or tape) to @p outfile.
760 * @param bkpinfo The backup information structure. @c bkpinfo->media_device is the only field used.
761 * @param outfile The file to write to.
762 * @param size The size of the file in the input stream.
763 * @return 0 for success, nonzero for failure.
764 */
765int
766read_file_from_stream_to_file(struct s_bkpinfo *bkpinfo, char *outfile,
767 long long size)
768{
769
770 /*@ int ******************************************************** */
771 int res;
772
773 /*@ end vars *************************************************** */
774
775 res = read_file_from_stream_FULL(bkpinfo, outfile, NULL, size);
776
777 return (res);
778}
779
780
781/**
782 * Copy a file from the currently opened stream (CD or tape) to the stream indicated
783 * by @p fout.
784 * @param bkpinfo The backup information structure. @c bkpinfo->media_size is the only field used.
785 * @param fout The stream to write the file to.
786 * @param size The size of the file in bytes.
787 * @return 0 for success, nonzero for failure.
788 */
789int
790read_file_from_stream_to_stream(struct s_bkpinfo *bkpinfo, FILE * fout,
791 long long size)
792{
793
794 /*@ int ******************************************************** */
795 int res;
796
797 /*@ end vars *************************************************** */
798
799 res = read_file_from_stream_FULL(bkpinfo, NULL, fout, size);
800 return (res);
801}
802
803
804/**
805 * Copy a file from the currently opened stream (CD or tape) to either a
806 * @c FILE pointer indicating a currently-opened file, or a filename indicating
807 * a new file to create. This is the backbone function that read_file_from_stream_to_file()
808 * and read_file_from_stream_to_stream() are wrappers for.
809 * @param bkpinfo The backup information structure. @c bkpinfo->media_size is the only field used.
810 * @param outfname If non-NULL, write to this file.
811 * @param foutstream If non-NULL, write to this stream.
812 * @param orig_size The original length of the file in bytes.
813 * @return 0 for success, nonzero for failure.
814 * @note Only @b one of @p outfname or @p foutstream may be non-NULL.
815 */
816int
817read_file_from_stream_FULL(struct s_bkpinfo *bkpinfo, char *outfname,
818 FILE * foutstream, long long orig_size)
819{
820 /*@ buffers ***************************************************** */
821 char *tmp;
822 char *datablock;
823 char *temp_fname = (char *)bkpinfo; /* Should NOT be NULL */
824 char *temp_cksum = (char *)bkpinfo; /* Should NOT be NULL */
825 char *actual_cksum;
826
827 /*@ int ********************************************************* */
828 int retval = 0;
829#ifdef EXTRA_TAPE_CHECKSUMS
830 int i, ch;
831#endif
832 int noof_blocks;
833 int ctrl_chr;
834 int res;
835 /*@ pointers **************************************************** */
836 FILE *fout;
837
838 /*@ long ***************************************************** */
839 long bytes_to_write = 0;
840
841 /*@ long long *************************************************** */
842 long long temp_size, size;
843 long bytes_read, bytes_to_read;
844 long long total_read_from_tape_for_this_file = 0;
845 long long where_I_was_before_tape_change = 0;
846 /*@ unsigned int ************************************************ */
847 unsigned int crc16;
848 unsigned int crctt;
849
850 bool had_to_resync = FALSE;
851
852 /*@ init ******************************************************* */
853 datablock = malloc(TAPE_BLOCK_SIZE);
854 crc16 = 0;
855 crctt = 0;
856 size = orig_size;
857
858 /*@ end vars *************************************************** */
859
860 res = read_header_block_from_stream(&temp_size, temp_fname, &ctrl_chr);
861 if (orig_size != temp_size && orig_size != -1) {
862 asprintf(&tmp,
863 "output file's size should be %ld K but is apparently %ld K",
864 (long) size >> 10, (long) temp_size >> 10);
865 log_to_screen(tmp);
866 paranoid_free(tmp);
867 }
868 if (ctrl_chr != BLK_START_FILE) {
869 wrong_marker(BLK_START_FILE, ctrl_chr);
870 return (1);
871 }
872 asprintf(&tmp, "Reading file from tape; writing to '%s'; %ld KB",
873 outfname, (long) size >> 10);
874 log_to_screen(tmp);
875 paranoid_free(tmp);
876
877 if (foutstream) {
878 fout = foutstream;
879 } else {
880 fout = fopen(outfname, "w");
881 }
882 if (!fout) {
883 log_OS_error(outfname);
884 log_to_screen(_("Cannot openout file"));
885 return (1);
886 }
887 total_read_from_tape_for_this_file = 0;
888 for (noof_blocks = 0; size > 0;
889 noof_blocks++, size -=
890 bytes_to_write, total_read_from_tape_for_this_file +=
891 bytes_read) {
892 bytes_to_write =
893 (size < TAPE_BLOCK_SIZE) ? (long) size : TAPE_BLOCK_SIZE;
894 bytes_to_read = TAPE_BLOCK_SIZE;
895 bytes_read = fread(datablock, 1, bytes_to_read, g_tape_stream);
896 while (bytes_read < bytes_to_read) { // next tape!
897// crctt=crc16=0;
898 where_I_was_before_tape_change = size;
899 log_msg(4, "where_I_was_... = %lld",
900 where_I_was_before_tape_change);
901 start_to_read_from_next_tape(bkpinfo);
902 log_msg(4, "Started reading from next tape.");
903 skip_incoming_files_until_we_find_this_one(temp_fname);
904 log_msg(4, "Skipped irrelevant files OK.");
905 for (size = orig_size; size > where_I_was_before_tape_change;
906 size -= bytes_to_write) {
907 bytes_read =
908 fread(datablock, 1, bytes_to_read, g_tape_stream);
909 }
910 log_msg(4, "'size' is now %lld (should be %lld)", size,
911 where_I_was_before_tape_change);
912 log_to_screen("Successfully re-sync'd tape");
913 had_to_resync = TRUE;
914 bytes_read = fread(datablock, 1, bytes_to_read, g_tape_stream);
915 }
916
917 (void) fwrite(datablock, 1, (size_t) bytes_to_write, fout); // for blocking reasons, bytes_successfully_read_in isn't necessarily the same as bytes_to_write
918
919#ifdef EXTRA_TAPE_CHECKSUMS
920 for (i = 0; i < (int) bytes_to_write; i++) {
921 ch = datablock[i];
922 crc16 = updcrcr(crc16, (unsigned) ch);
923 crctt = updcrc(crctt, (unsigned) ch);
924 }
925#endif
926 }
927 log_msg(6, "Total read from tape for this file = %lld",
928 total_read_from_tape_for_this_file);
929 log_msg(6, ".......................... Should be %lld", orig_size);
930 g_tape_posK += total_read_from_tape_for_this_file / 1024;
931 asprintf(&actual_cksum, "%04x%04x", crc16, crctt);
932 if (foutstream) { /*log_it("Finished writing to foutstream"); */
933 } else {
934 paranoid_fclose(fout);
935 }
936 res = read_header_block_from_stream(&temp_size, temp_cksum, &ctrl_chr);
937 if (ctrl_chr != BLK_STOP_FILE) {
938 wrong_marker(BLK_STOP_FILE, ctrl_chr);
939// fatal_error("Bad marker"); // return(1);
940 }
941 if (strcmp(temp_cksum, actual_cksum)) {
942 asprintf(&tmp, _("actual cksum=%s; recorded cksum=%s"), actual_cksum,
943 temp_cksum);
944 log_to_screen(tmp);
945 paranoid_free(tmp);
946
947 asprintf(&tmp, _("%s (%ld K) is corrupt on tape"), temp_fname,
948 (long) orig_size >> 10);
949 log_to_screen(tmp);
950 paranoid_free(tmp);
951 retval++;
952 }
953 paranoid_free(actual_cksum);
954 paranoid_free(datablock);
955 paranoid_free(temp_fname);
956 paranoid_free(temp_cksum);
957 return (retval);
958}
959
960
961/**
962 * Read a header block from the currently opened stream (CD or tape).
963 * This block indicates the length of the following file (if it's file-related)
964 * the filename (if it's file-related), and the block type.
965 * @param plen Where to put the length of the file. Valid only for file-related header blocks.
966 * @param filename Where to put the name of the file. Valid only for file-related header blocks.
967 * @param pcontrol_char Where to put the type of block (e.g. start-file, end-file, start-tape, ...)
968 * @return 0 for success, nonzero for failure.
969 * @note If you read a marker (@p pcontrol_char) you're not expecting, you can call wrong_marker().
970 */
971int
972read_header_block_from_stream(long long *plen, char *filename,
973 int *pcontrol_char)
974{
975
976 /*@ buffers ***************************************************** */
977 char *tempblock;
978
979 /*@ int ********************************************************* */
980 int i, retval;
981
982 /*@ end vars *************************************************** */
983
984 tempblock = (char *) malloc((size_t) TAPE_BLOCK_SIZE);
985
986 for (i = 0; i < (int) TAPE_BLOCK_SIZE; i++) {
987 tempblock[i] = 0;
988 }
989 while (!(*pcontrol_char = tempblock[7000])) {
990 g_tape_posK +=
991 fread(tempblock, 1, (size_t) TAPE_BLOCK_SIZE,
992 g_tape_stream) / 1024;
993 }
994 memcpy((char *) plen, tempblock + 7001, sizeof(long long));
995 if (strcmp(tempblock + 6000 + *pcontrol_char, "Mondolicious, baby")) {
996 log_it("Bad header block at %ld K", (long) g_tape_posK);
997 }
998 /* the caller manages whether we should allocate or not
999 * by setting the value to NULL (do not allocate) or
1000 * something (allocate) */
1001 if (filename != NULL) {
1002 asprintf(&filename, tempblock + 1000);
1003 }
1004 if (*pcontrol_char == BLK_ABORTED_BACKUP) {
1005 log_to_screen("I can't verify an aborted backup.");
1006 retval = 1;
1007 } else {
1008 retval = 0;
1009 }
1010 for (i = 1000; i < 1020; i++) {
1011 if (tempblock[i] < 32 || tempblock[i] > 126) {
1012 tempblock[i] = ' ';
1013 }
1014 }
1015 tempblock[i] = '\0';
1016 log_msg(6, "%s (fname=%s, size=%ld K)",
1017 marker_to_string(*pcontrol_char), tempblock + 1000,
1018 (long) (*plen) >> 10);
1019 paranoid_free(tempblock);
1020 return (retval);
1021}
1022
1023
1024/**
1025 * Add specified file/slice to the internal catalog of all archives written.
1026 * This lets us restart on a new CD/tape/whatever if it runs out of room. We just
1027 * write the last [buffer size] MB from the catalog to the new tape, so we know
1028 * we have @e all archives on some CD/tape/whatever.
1029 * @param type The type of file we're cataloging (afioball, slice, something else)
1030 * @param number The fileset number or biggiefile number.
1031 * @param aux The slice number if it's a biggiefile, or any other additional info.
1032 * @param fn The original full pathname of the file we're recording.
1033 * @return The index of the record we just added.
1034 */
1035int register_in_tape_catalog(t_archtype type, int number, long aux,
1036 char *fn)
1037{
1038 int last;
1039 char fname[MAX_TAPECAT_FNAME_LEN];
1040 char *p;
1041
1042 p = strrchr(fn, '/');
1043 if (p) {
1044 p++;
1045 } else {
1046 p = fn;
1047 }
1048 strncpy(fname, p, MAX_TAPECAT_FNAME_LEN);
1049 fname[MAX_TAPECAT_FNAME_LEN] = '\0';
1050 last = g_tapecatalog->entries;
1051 if (last >= MAX_TAPECATALOG_ENTRIES) {
1052 log_it
1053 ("Warning - can't log #%d in tape catalog - too many entries already",
1054 number);
1055 return (-1);
1056 }
1057 g_tapecatalog->el[last].type = type;
1058 g_tapecatalog->el[last].number = number;
1059 g_tapecatalog->el[last].aux = aux;
1060 g_tapecatalog->el[last].tape_posK = g_tape_posK;
1061 strcpy(g_tapecatalog->el[last].fname, fname);
1062 g_tapecatalog->entries++;
1063 return (last); // returns the index of the record we've jsut added
1064}
1065
1066
1067/**
1068 * Decide whether we should start a new tape. This is TRUE if we've run out of tape
1069 * (got SIGPIPE) or look like we will.
1070 * @param mediasize The size of the tape in megabytes.
1071 * @param length_of_incoming_file The length of the file we're about to write, in bytes.
1072 * @bug This seems like it'll only work for media_size != autodetect, but Mondo only allows
1073 * autodetecting the size. Huh?
1074 */
1075
1076/* BERLIOS: Should be reviewed for mediasize being a off_t ??? */
1077bool
1078should_we_write_to_next_tape(long mediasize,
1079 off_t length_of_incoming_file)
1080{
1081 /*@ bool's ***************************************************** */
1082 bool we_need_a_new_tape = FALSE;
1083
1084 /*@ end vars *************************************************** */
1085
1086 if (mediasize == 0) {
1087 return (FALSE);
1088 }
1089 if (mediasize > 0 && (g_tape_posK >> 10 >= mediasize)) {
1090 log_it("mediasize = %ld", mediasize);
1091 we_need_a_new_tape = TRUE;
1092 log_to_screen(_("Should have started a new tape/CD already"));
1093 }
1094 if ((g_tape_posK + length_of_incoming_file / 1024) >> 10 >=
1095 mediasize - (SLICE_SIZE * 4 / 1024)) {
1096 log_it("g_tape_posK = %ld\nmediasize = %ld\n", g_tape_posK,
1097 mediasize);
1098 we_need_a_new_tape = TRUE;
1099 }
1100 return (we_need_a_new_tape);
1101}
1102
1103
1104/**
1105 * Seek through the stream until we find a header block where the NAME field matches
1106 * @p the_file_I_was_reading. This is useful if you've just started reading from
1107 * a new tape and want to find the file you were reading when the tape ended.
1108 * @param the_file_I_was_reading File name to look for.
1109 * @return 0 for success, nonzero for failure.
1110 */
1111int skip_incoming_files_until_we_find_this_one(char
1112 *the_file_I_was_reading)
1113{
1114 char *pA;
1115 char *pB;
1116 int res;
1117 int ctrl_chr;
1118 char *temp_fname = (char *)&res; /* should NOT be NULL */
1119 char *datablock;
1120 long long temp_size, size;
1121 long bytes_to_write;
1122
1123 datablock = malloc(TAPE_BLOCK_SIZE);
1124 pB = strrchr(the_file_I_was_reading, '/');
1125 if (pB) {
1126 pB++;
1127 } else {
1128 pB = the_file_I_was_reading;
1129 }
1130 log_msg(1, "skip_incoming_..(%s)", pB);
1131 log_msg(2, "Looking for initial START_AN_AFIO_OR_SLICE");
1132 ctrl_chr = -1;
1133 while (ctrl_chr != BLK_START_AN_AFIO_OR_SLICE) {
1134 res =
1135 read_header_block_from_stream(&temp_size, temp_fname,
1136 &ctrl_chr);
1137 if (ctrl_chr == BLK_START_AN_AFIO_OR_SLICE) {
1138 break;
1139 }
1140 log_msg(1, "%lld %s %c", temp_size, temp_fname, ctrl_chr);
1141 wrong_marker(BLK_START_AN_AFIO_OR_SLICE, ctrl_chr);
1142 log_msg(3, "Still trying to re-sync w/ tape");
1143 paranoid_free(temp_fname);
1144 temp_fname = (char *)&res;
1145 }
1146 while (ctrl_chr != BLK_START_FILE) {
1147 res =
1148 read_header_block_from_stream(&temp_size, temp_fname,
1149 &ctrl_chr);
1150 if (ctrl_chr == BLK_START_FILE) {
1151 break;
1152 }
1153 log_msg(1, "%lld %s %c", temp_size, temp_fname, ctrl_chr);
1154 wrong_marker(BLK_START_FILE, ctrl_chr);
1155 log_msg(3, "Still trying to re-sync w/ tape");
1156 /* Do not desallocate when the while condition is met */
1157 if (ctrl_chr != BLK_START_FILE) {
1158 paranoid_free(temp_fname);
1159 temp_fname = (char *)&res;
1160 }
1161 }
1162 pA = strrchr(temp_fname, '/');
1163 if (pA) {
1164 pA++;
1165 } else {
1166 pA = temp_fname;
1167 }
1168 pB = strrchr(the_file_I_was_reading, '/');
1169 if (pB) {
1170 pB++;
1171 } else {
1172 pB = the_file_I_was_reading;
1173 }
1174 while (strcmp(pA, pB)) {
1175 log_msg(6, "Skipping %s (it's not %s)", temp_fname,
1176 the_file_I_was_reading);
1177 for (size = temp_size; size > 0; size -= bytes_to_write) {
1178 bytes_to_write =
1179 (size < TAPE_BLOCK_SIZE) ? (long) size : TAPE_BLOCK_SIZE;
1180 // FIXME - needs error-checking and -catching
1181 fread(datablock, 1, (size_t) TAPE_BLOCK_SIZE, g_tape_stream);
1182 }
1183
1184 paranoid_free(temp_fname);
1185 temp_fname = (char *)&res;
1186 res = read_header_block_from_stream(&temp_size, NULL, &ctrl_chr);
1187 if (ctrl_chr != BLK_STOP_FILE) {
1188 wrong_marker(BLK_STOP_FILE, ctrl_chr);
1189 }
1190 res = read_header_block_from_stream(&temp_size, NULL, &ctrl_chr);
1191 if (ctrl_chr != BLK_STOP_AN_AFIO_OR_SLICE) {
1192 wrong_marker(BLK_STOP_AN_AFIO_OR_SLICE, ctrl_chr);
1193 }
1194 res = read_header_block_from_stream(&temp_size, NULL, &ctrl_chr);
1195 if (ctrl_chr != BLK_START_AN_AFIO_OR_SLICE) {
1196 wrong_marker(BLK_START_AN_AFIO_OR_SLICE, ctrl_chr);
1197 }
1198 res =
1199 read_header_block_from_stream(&temp_size, temp_fname,
1200 &ctrl_chr);
1201 if (ctrl_chr != BLK_START_FILE) {
1202 wrong_marker(BLK_START_FILE, ctrl_chr);
1203 }
1204 pA = strrchr(temp_fname, '/');
1205 if (pA) {
1206 pA++;
1207 } else {
1208 pA = temp_fname;
1209 }
1210 /* BERLIOS: useless ?
1211 pB = strrchr(the_file_I_was_reading, '/');
1212 if (pB) {
1213 pB++;
1214 } else {
1215 pB = the_file_I_was_reading;
1216 }
1217 */
1218 }
1219 log_msg(2, "Reading %s (it matches %s)", temp_fname,
1220 the_file_I_was_reading);
1221 paranoid_free(temp_fname);
1222 paranoid_free(datablock);
1223 return (0);
1224}
1225
1226
1227/**
1228 * Start to read from the next tape. Assumes the user has already inserted it.
1229 * @param bkpinfo The backup information structure. @c bkpinfo->media_device is the only field used.
1230 * @return 0 for success, nonzero for failure.
1231 */
1232int start_to_read_from_next_tape(struct s_bkpinfo *bkpinfo)
1233{
1234 /*@ int ********************************************************* */
1235 int res = 0;
1236 int ctrlchr;
1237 long long temp_size;
1238 /*@ end vars *************************************************** */
1239
1240 paranoid_pclose(g_tape_stream);
1241 sync();
1242 sync();
1243 sync();
1244 log_it("Next tape requested.");
1245 insist_on_this_tape_number(g_current_media_number + 1); // will increment it, too
1246 log_it("Opening IN the next tape");
1247 if (!
1248 (g_tape_stream =
1249 open_device_via_buffer(bkpinfo->media_device, 'r',
1250 bkpinfo->internal_tape_block_size))) {
1251 log_OS_error(g_tape_fifo);
1252 log_to_screen(_("Cannot openin stream device"));
1253 return (1);
1254 }
1255 g_tape_posK = 0;
1256 g_sigpipe = FALSE;
1257 res += read_header_block_from_stream(&temp_size, NULL, &ctrlchr); /* just in case */
1258 if (ctrlchr != BLK_START_OF_TAPE) {
1259 wrong_marker(BLK_START_OF_TAPE, ctrlchr);
1260 }
1261 res += read_header_block_from_stream(&temp_size, NULL, &ctrlchr); /* just in case */
1262 if (ctrlchr != BLK_START_OF_BACKUP) {
1263 wrong_marker(BLK_START_OF_BACKUP, ctrlchr);
1264 } else {
1265 log_msg(3, "Next tape opened OK. Whoopee!");
1266 }
1267 return (res);
1268}
1269
1270
1271/**
1272 * Start to write to the next tape. Assume the user has already inserted it.
1273 * @param bkpinfo The backup information structure. @c bkpinfo->media_device is the only field used.
1274 * @return 0 for success, nonzero for failure.
1275 */
1276int start_to_write_to_next_tape(struct s_bkpinfo *bkpinfo)
1277{
1278 int res = 0;
1279 char *command;
1280
1281 paranoid_pclose(g_tape_stream);
1282 sync();
1283 sync();
1284 sync();
1285 log_it("New tape requested.");
1286 insist_on_this_tape_number(g_current_media_number + 1); // will increment g_current_media, too
1287 if (g_current_media_number > MAX_NOOF_MEDIA) {
1288 res++;
1289 log_to_screen(_("Too many tapes. Man, you need to use nfs!"));
1290 }
1291 if (bkpinfo->backup_media_type == cdstream) {
1292 asprintf(&command,
1293 "cdrecord -eject dev=%s speed=%d fs=24m -waiti - >> %s 2>> %s",
1294 bkpinfo->media_device, bkpinfo->cdrw_speed, MONDO_LOGFILE,
1295 MONDO_LOGFILE);
1296 log_it("Opening OUT to next CD with the command");
1297 log_it(command);
1298 log_it("Let's see what happens, shall we?");
1299 g_tape_stream = popen(command, "w");
1300 paranoid_free(command);
1301 if (!g_tape_stream) {
1302 log_to_screen(_("Failed to openout to cdstream (fifo)"));
1303 return (1);
1304 }
1305 } else {
1306 log_it("Opening OUT to next tape");
1307 if (!
1308 (g_tape_stream =
1309 open_device_via_buffer(bkpinfo->media_device, 'w',
1310 bkpinfo->internal_tape_block_size))) {
1311 log_OS_error(g_tape_fifo);
1312 log_to_screen(_("Cannot openin stream device"));
1313 return (1);
1314 }
1315 }
1316 g_tape_posK = 0;
1317 g_sigpipe = FALSE;
1318 res += write_header_block_to_stream((off_t)0, "start-of-tape", BLK_START_OF_TAPE); /* just in case */
1319 res += write_header_block_to_stream((off_t)0, "start-of-backup", BLK_START_OF_BACKUP); /* just in case */
1320 return (res);
1321}
1322
1323
1324/**
1325 * Write a bufferfull of the most recent archives to the tape. The
1326 * rationale behind this is a bit complex. If the previous tape ended
1327 * suddenly (EOF or otherwise) some archives were probably left in the
1328 * buffer. That means that Mondo thinks they have been written, but
1329 * the external binary @c buffer has not actually written them. So to
1330 * be safe, we start the new tape by writing the last bufferfull from
1331 * the old one. This insures that all archives will be on at least
1332 * one tape. Sounds inelegant, but it works.
1333 * @param bkpinfo The backup information structure. @c bkpinfo->tmpdir is the only field used.
1334 * @return 0 for success, nonzero for failure.
1335 */
1336int write_backcatalog_to_tape(struct s_bkpinfo *bkpinfo)
1337{
1338 int i, last, res = 0;
1339 char *fname;
1340
1341 log_msg(2, "I am now writing back catalog to tape");
1342 last = g_tapecatalog->entries - 1;
1343 for (i = 0; i <= last; i++) {
1344 asprintf(&fname, "%s/tmpfs/backcatalog/%s", bkpinfo->tmpdir,
1345 g_tapecatalog->el[i].fname);
1346 if (!does_file_exist(fname)) {
1347 log_msg(6, "Can't write %s - it doesn't exist.", fname);
1348 } else {
1349 write_header_block_to_stream(length_of_file(fname),
1350 "start-backcatalog-afio-or-slice",
1351 BLK_START_AN_AFIO_OR_SLICE);
1352 log_msg(2, "Writing %s", fname);
1353 if (write_file_to_stream_from_file(bkpinfo, fname)) {
1354 res++;
1355 log_msg(2, "%s failed", fname);
1356 }
1357 if (i != last) {
1358 write_header_block_to_stream((off_t)0,
1359 "stop-backcatalog-afio-or-slice",
1360 BLK_STOP_AN_AFIO_OR_SLICE);
1361 }
1362 }
1363 paranoid_free(fname);
1364 }
1365 log_msg(2, "Finished writing back catalog to tape");
1366 return (res);
1367}
1368
1369
1370/**
1371 * Write all.tar.gz (produced by Mindi) to the first 32M of the first tape.
1372 * @param fname The path to all.tar.gz.
1373 * @return 0 for success, nonzero for failure.
1374 */
1375int write_data_disks_to_stream(char *fname)
1376{
1377 /*@ pointers *************************************************** */
1378 FILE *fin;
1379 char *tmp;
1380
1381 /*@ long ******************************************************* */
1382 long m = -1;
1383 long templong;
1384
1385 /*@ int ******************************************************** */
1386 int i, j;
1387
1388 /*@ buffers **************************************************** */
1389 char tempblock[256 * 1024];
1390
1391 /*@ end vars *************************************************** */
1392
1393 open_evalcall_form(_("Writing data disks to tape"));
1394 log_to_screen(_("Writing data disks to tape"));
1395 log_it("Data disks = %s", fname);
1396 if (!does_file_exist(fname)) {
1397 asprintf(&tmp, _("Cannot find %s"), fname);
1398 log_to_screen(tmp);
1399 paranoid_free(tmp);
1400 return (1);
1401 }
1402 if (!(fin = fopen(fname, "r"))) {
1403 log_OS_error(fname);
1404 fatal_error("Cannot openin the data disk");
1405 }
1406 for (i = 0; i < 32; i++) { /* 32MB */
1407 for (j = 0; j < 4; j++) { /* 256K x 4 = 1MB (1024K) */
1408 if (!feof(fin)) {
1409 m = (long) fread(tempblock, 1, 256 * 1024, fin);
1410 } else {
1411 m = 0;
1412 }
1413 for (; m < 256 * 1024; m++) {
1414 tempblock[m] = '\0';
1415 }
1416 g_tape_posK +=
1417 fwrite(tempblock, 1, 256 * 1024, g_tape_stream) / 1024;
1418 }
1419 if (i > g_tape_buffer_size_MB) // otherwise, 'buffer' distorts calculations
1420 {
1421 templong = ((i - 8) * 4 + j) * 100 / (128 - 8 * 4);
1422 update_evalcall_form((int) (templong));
1423 }
1424 }
1425 paranoid_fclose(fin);
1426 close_evalcall_form();
1427 return (0);
1428}
1429
1430
1431/**
1432 * Copy @p infile to the opened stream (CD or tape).
1433 * @param bkpinfo The backup information structure. @c bkpinfo->media_size is the only field used.
1434 * @param infile The file to write to the stream.
1435 * @return 0 for success, nonzero for failure.
1436 */
1437int write_file_to_stream_from_file(struct s_bkpinfo *bkpinfo, char *infile)
1438{
1439 /*@ buffers **************************************************** */
1440 char *tmp;
1441 char datablock[TAPE_BLOCK_SIZE];
1442 char *checksum;
1443 char *infile_basename;
1444
1445 /*@ int ******************************************************** */
1446 int retval = 0;
1447 int noof_blocks;
1448
1449 /* unsigned int ch; */
1450 unsigned int crc16;
1451 unsigned int crctt;
1452
1453 /*@ pointers *************************************************** */
1454 FILE *fin;
1455 char *p;
1456
1457 /*@ long ******************************************************* */
1458 long bytes_to_read = 0;
1459 long i;
1460
1461 off_t filesize;
1462
1463#ifdef EXTRA_TAPE_CHECKSUMS
1464 int ch;
1465#endif
1466
1467 /*@ initialize ************************************************ */
1468 crc16 = 0;
1469 crctt = 0;
1470
1471 /*@ end vars *************************************************** */
1472
1473 infile_basename = strrchr(infile, '/');
1474 if (infile_basename) {
1475 infile_basename++;
1476 } else {
1477 infile_basename = infile;
1478 }
1479 filesize = length_of_file(infile);
1480 if (should_we_write_to_next_tape
1481 (bkpinfo->media_size[g_current_media_number], filesize)) {
1482 start_to_write_to_next_tape(bkpinfo);
1483 write_backcatalog_to_tape(bkpinfo);
1484 }
1485 p = strrchr(infile, '/');
1486 if (!p) {
1487 p = infile;
1488 } else {
1489 p++;
1490 }
1491 asprintf(&tmp, "Writing file '%s' to tape (%ld KB)", p,
1492 (long) filesize >> 10);
1493 log_it(tmp);
1494 paranoid_free(tmp);
1495
1496 write_header_block_to_stream(filesize, infile_basename,
1497 BLK_START_FILE);
1498//go_here_to_restart_saving_of_file:
1499 if (!(fin = fopen(infile, "r"))) {
1500 log_OS_error(infile);
1501 return (1);
1502 }
1503 for (noof_blocks = 0; filesize > 0;
1504 noof_blocks++, filesize -= bytes_to_read) {
1505 if (filesize < TAPE_BLOCK_SIZE) {
1506 bytes_to_read = (long) filesize;
1507 for (i = 0; i < TAPE_BLOCK_SIZE; i++) {
1508 datablock[i] = '\0';
1509 }
1510 } else {
1511 bytes_to_read = TAPE_BLOCK_SIZE;
1512 }
1513 (void) fread(datablock, 1, (size_t) bytes_to_read, fin);
1514 g_tape_posK += fwrite(datablock, 1, /*bytes_to_read */
1515 (size_t) TAPE_BLOCK_SIZE,
1516 g_tape_stream) / 1024;
1517 if (g_sigpipe) {
1518 iamhere("Sigpipe occurred recently. I'll start a new tape.");
1519 fclose(fin);
1520 g_sigpipe = FALSE;
1521 start_to_write_to_next_tape(bkpinfo);
1522 write_backcatalog_to_tape(bkpinfo); // kinda-sorta recursive :)
1523 return (0);
1524 }
1525#ifdef EXTRA_TAPE_CHECKSUMS
1526 for (i = 0; i < bytes_to_read; i++) {
1527 ch = datablock[i];
1528 crc16 = updcrcr(crc16, (unsigned) ch);
1529 crctt = updcrc(crctt, (unsigned) ch);
1530 }
1531#endif
1532 }
1533 paranoid_fclose(fin);
1534 asprintf(&checksum, "%04x%04x", crc16, crctt);
1535 /* BERLIOS: what does it do ??? */
1536 write_header_block_to_stream((off_t)g_current_media_number, checksum,
1537 BLK_STOP_FILE);
1538 paranoid_free(checksum);
1539// log_it("File '%s' written to tape.", infile);
1540 return (retval);
1541}
1542
1543
1544/**
1545 * Write a header block to the opened stream (CD or tape).
1546 * @param length_of_incoming_file The length to store in the header block.
1547 * Usually matters only if this is a file-related header, in which case it should
1548 * be the length of the file that will follow.
1549 * @param filename The filename to store in the header block. Usually matters
1550 * only if this is a file-related header, in which case this should be the name
1551 * if the file that will follow.
1552 * @param control_char The type of header block this is (start-file, end-file, start-tape, ...)
1553 * @return 0 for success, nonzero for failure.
1554 */
1555int
1556write_header_block_to_stream(off_t length_of_incoming_file,
1557 char *filename, int control_char)
1558{
1559 /*@ buffers **************************************************** */
1560 char tempblock[TAPE_BLOCK_SIZE];
1561 char *tmp;
1562 char *p;
1563
1564 /*@ int ******************************************************** */
1565 int i;
1566
1567 off_t olen;
1568
1569 /*@ end vars *************************************************** */
1570
1571
1572 olen = length_of_incoming_file;
1573 p = strrchr(filename, '/'); /* Make 'em go, "Unnnh!" Oh wait, that was _Master_ P... */
1574 if (!p) {
1575 p = filename;
1576 } else {
1577 p++;
1578 }
1579 if (!g_tape_stream) {
1580 log_to_screen
1581 (_("You're not backing up to tape. Why write a tape header?"));
1582 return (1);
1583 }
1584 for (i = 0; i < (int) TAPE_BLOCK_SIZE; i++) {
1585 tempblock[i] = 0;
1586 }
1587 sprintf(tempblock + 6000 + control_char, "Mondolicious, baby");
1588 tempblock[7000] = control_char;
1589 memcpy(tempblock + 7001, (char *) &olen, sizeof(off_t));
1590 strcpy(tempblock + 1000, filename);
1591 g_tape_posK +=
1592 fwrite(tempblock, 1, (size_t) TAPE_BLOCK_SIZE,
1593 g_tape_stream) / 1024;
1594 asprintf(&tmp, "%s (fname=%s, size=%ld K)",
1595 marker_to_string(control_char), p,
1596 (long) length_of_incoming_file >> 10);
1597 log_msg(6, tmp);
1598 paranoid_free(tmp);
1599 return (0);
1600}
1601
1602
1603/**
1604 * Log (to screen) an erroneous marker, along with what it should have been.
1605 * @param should_be What we were expecting.
1606 * @param it_is What we got.
1607 */
1608void wrong_marker(int should_be, int it_is)
1609{
1610 /*@ buffer ***************************************************** */
1611 char *tmp;
1612
1613
1614 /*@ end vars *************************************************** */
1615 asprintf(&tmp, _("Wrong marker! (Should be %s, is actually %s)"),
1616 marker_to_string(should_be), marker_to_string(it_is));
1617 log_to_screen(tmp);
1618 paranoid_free(tmp);
1619}
1620
1621/* @} - end of streamGroup */
Note: See TracBrowser for help on using the repository browser.