3 * block.c -- tape block handling functions
5 * Kern Sibbald, March MMI
6 * added BB02 format October MMII
12 Copyright (C) 2001-2006 Kern Sibbald
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License
16 version 2 as amended with additional clauses defined in the
17 file LICENSE in the main source directory.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 the file LICENSE for additional details.
30 static bool terminate_writing_volume(DCR *dcr);
31 static bool do_new_file_bookkeeping(DCR *dcr);
32 static bool do_dvd_size_checks(DCR *dcr);
33 static void reread_last_block(DCR *dcr);
36 * Dump the block header, then walk through
37 * the block printing out the record headers.
39 void dump_block(DEV_BLOCK *b, const char *msg)
43 char Id[BLKHDR_ID_LENGTH+1];
44 uint32_t CheckSum, BlockCheckSum;
47 uint32_t VolSessionId, VolSessionTime, data_len;
51 char buf1[100], buf2[100];
53 unser_begin(b->buf, BLKHDR1_LENGTH);
54 unser_uint32(CheckSum);
55 unser_uint32(block_len);
56 unser_uint32(BlockNumber);
57 unser_bytes(Id, BLKHDR_ID_LENGTH);
58 ASSERT(unser_length(b->buf) == BLKHDR1_LENGTH);
59 Id[BLKHDR_ID_LENGTH] = 0;
61 unser_uint32(VolSessionId);
62 unser_uint32(VolSessionTime);
66 VolSessionId = VolSessionTime = 0;
71 if (block_len > 100000) {
72 Dmsg3(20, "Dump block %s 0x%x blocksize too big %u\n", msg, b, block_len);
76 BlockCheckSum = bcrc32((uint8_t *)b->buf+BLKHDR_CS_LENGTH,
77 block_len-BLKHDR_CS_LENGTH);
78 Pmsg6(000, _("Dump block %s %x: size=%d BlkNum=%d\n"
79 " Hdrcksum=%x cksum=%x\n"),
80 msg, b, block_len, BlockNumber, CheckSum, BlockCheckSum);
82 while (p < (b->buf + block_len+WRITE_RECHDR_LENGTH)) {
83 unser_begin(p, WRITE_RECHDR_LENGTH);
84 if (rhl == RECHDR1_LENGTH) {
85 unser_uint32(VolSessionId);
86 unser_uint32(VolSessionTime);
88 unser_int32(FileIndex);
90 unser_uint32(data_len);
91 Pmsg6(000, _(" Rec: VId=%u VT=%u FI=%s Strm=%s len=%d p=%x\n"),
92 VolSessionId, VolSessionTime, FI_to_ascii(buf1, FileIndex),
93 stream_to_ascii(buf2, Stream, FileIndex), data_len, p);
99 * Create a new block structure.
100 * We pass device so that the block can inherit the
101 * min and max block sizes.
103 DEV_BLOCK *new_block(DEVICE *dev)
105 DEV_BLOCK *block = (DEV_BLOCK *)get_memory(sizeof(DEV_BLOCK));
107 memset(block, 0, sizeof(DEV_BLOCK));
109 /* If the user has specified a max_block_size, use it as the default */
110 if (dev->max_block_size == 0) {
111 block->buf_len = DEFAULT_BLOCK_SIZE;
113 block->buf_len = dev->max_block_size;
116 block->block_len = block->buf_len; /* default block size */
117 block->buf = get_memory(block->buf_len);
119 block->BlockVer = BLOCK_VER; /* default write version */
120 Dmsg1(650, "Returning new block=%x\n", block);
126 * Duplicate an existing block (eblock)
128 DEV_BLOCK *dup_block(DEV_BLOCK *eblock)
130 DEV_BLOCK *block = (DEV_BLOCK *)get_memory(sizeof(DEV_BLOCK));
131 int buf_len = sizeof_pool_memory(eblock->buf);
133 memcpy(block, eblock, sizeof(DEV_BLOCK));
134 block->buf = get_memory(buf_len);
135 memcpy(block->buf, eblock->buf, buf_len);
141 * Only the first block checksum error was reported.
142 * If there are more, report it now.
144 void print_block_read_errors(JCR *jcr, DEV_BLOCK *block)
146 if (block->read_errors > 1) {
147 Jmsg(jcr, M_ERROR, 0, _("%d block read errors not printed.\n"),
155 void free_block(DEV_BLOCK *block)
157 Dmsg1(999, "free_block buffer %x\n", block->buf);
158 free_memory(block->buf);
159 Dmsg1(999, "free_block block %x\n", block);
160 free_memory((POOLMEM *)block);
163 /* Empty the block -- for writing */
164 void empty_block(DEV_BLOCK *block)
166 block->binbuf = WRITE_BLKHDR_LENGTH;
167 block->bufp = block->buf + block->binbuf;
169 block->write_failed = false;
170 block->block_read = false;
171 block->FirstIndex = block->LastIndex = 0;
175 * Create block header just before write. The space
176 * in the buffer should have already been reserved by
179 void ser_block_header(DEV_BLOCK *block)
182 uint32_t CheckSum = 0;
183 uint32_t block_len = block->binbuf;
185 Dmsg1(1390, "ser_block_header: block_len=%d\n", block_len);
186 ser_begin(block->buf, BLKHDR2_LENGTH);
187 ser_uint32(CheckSum);
188 ser_uint32(block_len);
189 ser_uint32(block->BlockNumber);
190 ser_bytes(WRITE_BLKHDR_ID, BLKHDR_ID_LENGTH);
191 if (BLOCK_VER >= 2) {
192 ser_uint32(block->VolSessionId);
193 ser_uint32(block->VolSessionTime);
196 /* Checksum whole block except for the checksum */
197 CheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH,
198 block_len-BLKHDR_CS_LENGTH);
199 Dmsg1(1390, "ser_bloc_header: checksum=%x\n", CheckSum);
200 ser_begin(block->buf, BLKHDR2_LENGTH);
201 ser_uint32(CheckSum); /* now add checksum to block header */
205 * Unserialize the block header for reading block.
206 * This includes setting all the buffer pointers correctly.
208 * Returns: false on failure (not a block)
211 static bool unser_block_header(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
214 char Id[BLKHDR_ID_LENGTH+1];
215 uint32_t CheckSum, BlockCheckSum;
218 uint32_t BlockNumber;
221 unser_begin(block->buf, BLKHDR_LENGTH);
222 unser_uint32(CheckSum);
223 unser_uint32(block_len);
224 unser_uint32(BlockNumber);
225 unser_bytes(Id, BLKHDR_ID_LENGTH);
226 ASSERT(unser_length(block->buf) == BLKHDR1_LENGTH);
228 Id[BLKHDR_ID_LENGTH] = 0;
230 bhl = BLKHDR1_LENGTH;
232 block->bufp = block->buf + bhl;
233 if (strncmp(Id, BLKHDR1_ID, BLKHDR_ID_LENGTH) != 0) {
234 dev->dev_errno = EIO;
235 Mmsg4(dev->errmsg, _("Volume data error at %u:%u! Wanted ID: \"%s\", got \"%s\". Buffer discarded.\n"),
236 dev->file, dev->block_num, BLKHDR1_ID, Id);
237 if (block->read_errors == 0 || verbose >= 2) {
238 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
240 block->read_errors++;
243 } else if (Id[3] == '2') {
244 unser_uint32(block->VolSessionId);
245 unser_uint32(block->VolSessionTime);
246 bhl = BLKHDR2_LENGTH;
248 block->bufp = block->buf + bhl;
249 if (strncmp(Id, BLKHDR2_ID, BLKHDR_ID_LENGTH) != 0) {
250 dev->dev_errno = EIO;
251 Mmsg4(dev->errmsg, _("Volume data error at %u:%u! Wanted ID: \"%s\", got \"%s\". Buffer discarded.\n"),
252 dev->file, dev->block_num, BLKHDR2_ID, Id);
253 if (block->read_errors == 0 || verbose >= 2) {
254 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
256 block->read_errors++;
260 dev->dev_errno = EIO;
261 Mmsg4(dev->errmsg, _("Volume data error at %u:%u! Wanted ID: \"%s\", got \"%s\". Buffer discarded.\n"),
262 dev->file, dev->block_num, BLKHDR2_ID, Id);
263 if (block->read_errors == 0 || verbose >= 2) {
264 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
266 block->read_errors++;
267 unser_uint32(block->VolSessionId);
268 unser_uint32(block->VolSessionTime);
273 if (block_len > MAX_BLOCK_LENGTH) {
274 dev->dev_errno = EIO;
275 Mmsg3(dev->errmsg, _("Volume data error at %u:%u! Block length %u is insane (too large), probably due to a bad archive.\n"),
276 dev->file, dev->block_num, block_len);
277 if (block->read_errors == 0 || verbose >= 2) {
278 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
280 block->read_errors++;
284 Dmsg1(390, "unser_block_header block_len=%d\n", block_len);
285 /* Find end of block or end of buffer whichever is smaller */
286 if (block_len > block->read_len) {
287 block_end = block->read_len;
289 block_end = block_len;
291 block->binbuf = block_end - bhl;
292 block->block_len = block_len;
293 block->BlockNumber = BlockNumber;
294 Dmsg3(390, "Read binbuf = %d %d block_len=%d\n", block->binbuf,
296 if (block_len <= block->read_len) {
297 BlockCheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH,
298 block_len-BLKHDR_CS_LENGTH);
299 if (BlockCheckSum != CheckSum) {
300 dev->dev_errno = EIO;
301 Mmsg6(dev->errmsg, _("Volume data error at %u:%u!\n"
302 "Block checksum mismatch in block=%u len=%d: calc=%x blk=%x\n"),
303 dev->file, dev->block_num, (unsigned)BlockNumber,
304 block_len, BlockCheckSum, CheckSum);
305 if (block->read_errors == 0 || verbose >= 2) {
306 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
308 block->read_errors++;
318 * Write a block to the device, with locking and unlocking
320 * Returns: true on success
324 bool write_block_to_device(DCR *dcr)
327 DEVICE *dev = dcr->dev;
331 stat = write_block_to_spool_file(dcr);
335 if (!dcr->dev_locked) {
340 * If a new volume has been mounted since our last write
341 * Create a JobMedia record for the previous volume written,
342 * and set new parameters to write this volume
343 * The same applies for if we are in a new file.
345 if (dcr->NewVol || dcr->NewFile) {
346 if (job_canceled(jcr)) {
350 /* Create a jobmedia record for this job */
351 if (!dir_create_jobmedia_record(dcr)) {
352 dev->dev_errno = EIO;
353 Jmsg(jcr, M_FATAL, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
354 dcr->VolCatInfo.VolCatName, jcr->Job);
355 set_new_volume_parameters(dcr);
360 /* Note, setting a new volume also handles any pending new file */
361 set_new_volume_parameters(dcr);
362 dcr->NewFile = false; /* this handled for new file too */
364 set_new_file_parameters(dcr);
368 if (!write_block_to_dev(dcr)) {
369 if (job_canceled(jcr) || jcr->JobType == JT_SYSTEM) {
372 stat = fixup_device_block_write_error(dcr);
377 if (!dcr->dev_locked) {
384 * Write a block to the device
386 * Returns: true on success or EOT
387 * false on hard error
389 bool write_block_to_dev(DCR *dcr)
392 uint32_t wlen; /* length to write */
393 int hit_max1, hit_max2;
395 DEVICE *dev = dcr->dev;
397 DEV_BLOCK *block = dcr->block;
399 #ifdef NO_TAPE_WRITE_TEST
403 ASSERT(block->binbuf == ((uint32_t) (block->bufp - block->buf)));
404 ASSERT(dev->is_open());
406 /* dump_block(block, "before write"); */
407 if (dev->at_weot()) {
408 Dmsg0(100, "return write_block_to_dev with ST_WEOT\n");
409 dev->dev_errno = ENOSPC;
410 Jmsg(jcr, M_FATAL, 0, _("Cannot write block. Device at EOM.\n"));
413 if (!dev->can_append()) {
414 dev->dev_errno = EIO;
415 Jmsg(jcr, M_FATAL, 0, _("Attempt to write on read-only Volume.\n"));
418 wlen = block->binbuf;
419 if (wlen <= WRITE_BLKHDR_LENGTH) { /* Does block have data in it? */
420 Dmsg0(100, "return write_block_to_dev no data to write\n");
424 * Clear to the end of the buffer if it is not full,
425 * and on tape devices, apply min and fixed blocking.
427 if (wlen != block->buf_len) {
428 uint32_t blen; /* current buffer length */
430 Dmsg2(200, "binbuf=%d buf_len=%d\n", block->binbuf, block->buf_len);
433 /* Adjust write size to min/max for tapes only */
434 if (dev->is_tape()) {
435 /* check for fixed block size */
436 if (dev->min_block_size == dev->max_block_size) {
437 wlen = block->buf_len; /* fixed block size already rounded */
438 /* Check for min block size */
439 } else if (wlen < dev->min_block_size) {
440 wlen = ((dev->min_block_size + TAPE_BSIZE - 1) / TAPE_BSIZE) * TAPE_BSIZE;
441 /* Ensure size is rounded */
443 wlen = ((wlen + TAPE_BSIZE - 1) / TAPE_BSIZE) * TAPE_BSIZE;
447 memset(block->bufp, 0, wlen-blen); /* clear garbage */
451 ser_block_header(block);
453 /* Limit maximum Volume size to value specified by user */
454 hit_max1 = (dev->max_volume_size > 0) &&
455 ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->max_volume_size;
456 hit_max2 = (dev->VolCatInfo.VolCatMaxBytes > 0) &&
457 ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->VolCatInfo.VolCatMaxBytes;
458 if (hit_max1 || hit_max2) {
461 Dmsg0(10, "==== Output bytes Triggered medium max capacity.\n");
463 max_cap = dev->max_volume_size;
465 max_cap = dev->VolCatInfo.VolCatMaxBytes;
467 Jmsg(jcr, M_INFO, 0, _("User defined maximum volume capacity %s exceeded on device %s.\n"),
468 edit_uint64_with_commas(max_cap, ed1), dev->print_name());
469 terminate_writing_volume(dcr);
470 reread_last_block(dcr); /* DEBUG */
471 dev->dev_errno = ENOSPC;
475 /* Limit maximum File size on volume to user specified value */
476 if ((dev->max_file_size > 0) &&
477 (dev->file_size+block->binbuf) >= dev->max_file_size) {
478 dev->file_size = 0; /* reset file size */
480 if (!dev->weof(1)) { /* write eof */
481 Dmsg0(190, "WEOF error in max file size.\n");
482 Jmsg(jcr, M_FATAL, 0, _("Unable to write EOF. ERR=%s\n"),
484 terminate_writing_volume(dcr);
485 dev->dev_errno = ENOSPC;
488 if (!write_ansi_ibm_labels(dcr, ANSI_EOF_LABEL, dev->VolHdr.VolumeName)) {
492 if (!do_new_file_bookkeeping(dcr)) {
493 /* Error message already sent */
498 if (!do_dvd_size_checks(dcr)) {
499 /* Error message already sent */
503 dev->VolCatInfo.VolCatWrites++;
504 Dmsg1(1300, "Write block of %u bytes\n", wlen);
505 #ifdef DEBUG_BLOCK_ZEROING
506 uint32_t *bp = (uint32_t *)block->buf;
507 if (bp[0] == 0 && bp[1] == 0 && bp[2] == 0 && block->buf[12] == 0) {
508 Jmsg0(jcr, M_ABORT, 0, _("Write block header zeroed.\n"));
513 * Do write here, make a somewhat feeble attempt to recover from
514 * I/O errors, or from the OS telling us it is busy.
520 if (retry > 0 && stat == -1 && errno == EBUSY) {
522 Dmsg4(100, "===== write retry=%d stat=%d errno=%d: ERR=%s\n",
523 retry, stat, errno, be.strerror());
524 bmicrosleep(5, 0); /* pause a bit if busy or lots of errors */
527 if (dev->is_tape()) {
528 stat = tape_write(dev->fd, block->buf, (size_t)wlen);
530 stat = write(dev->fd, block->buf, (size_t)wlen);
532 } while (stat == -1 && (errno == EBUSY || errno == EIO) && retry++ < 3);
534 #ifdef DEBUG_BLOCK_ZEROING
535 if (bp[0] == 0 && bp[1] == 0 && bp[2] == 0 && block->buf[12] == 0) {
536 Jmsg0(jcr, M_ABORT, 0, _("Write block header zeroed.\n"));
540 if (stat != (ssize_t)wlen) {
541 /* Some devices simply report EIO when the volume is full.
542 * With a little more thought we may be able to check
543 * capacity and distinguish real errors and EOT
544 * conditions. In any case, we probably want to
545 * simulate an End of Medium.
550 if (dev->dev_errno == 0) {
551 dev->dev_errno = ENOSPC; /* out of space */
553 if (dev->dev_errno != ENOSPC) {
554 dev->VolCatInfo.VolCatErrors++;
555 Jmsg4(jcr, M_ERROR, 0, _("Write error at %u:%u on device %s. ERR=%s.\n"),
556 dev->file, dev->block_num, dev->print_name(), be.strerror());
559 dev->dev_errno = ENOSPC; /* out of space */
561 if (dev->dev_errno == ENOSPC) {
562 Jmsg(jcr, M_INFO, 0, _("End of Volume \"%s\" at %u:%u on device %s. Write of %u bytes got %d.\n"),
563 dev->VolCatInfo.VolCatName,
564 dev->file, dev->block_num, dev->print_name(), wlen, stat);
566 Dmsg7(100, "=== Write error. fd=%d size=%u rtn=%d dev_blk=%d blk_blk=%d errno=%d: ERR=%s\n",
567 dev->fd, wlen, stat, dev->block_num, block->BlockNumber,
568 dev->dev_errno, strerror(dev->dev_errno));
570 ok = terminate_writing_volume(dcr);
571 if (!ok && !forge_on) {
575 reread_last_block(dcr);
580 /* We successfully wrote the block, now do housekeeping */
581 Dmsg2(1300, "VolCatBytes=%d newVolCatBytes=%d\n", (int)dev->VolCatInfo.VolCatBytes,
582 (int)(dev->VolCatInfo.VolCatBytes+wlen));
583 dev->VolCatInfo.VolCatBytes += wlen;
584 dev->VolCatInfo.VolCatBlocks++;
585 dev->EndBlock = dev->block_num;
586 dev->EndFile = dev->file;
587 block->BlockNumber++;
589 /* Update dcr values */
590 if (dev->is_tape()) {
591 dcr->EndBlock = dev->EndBlock;
592 dcr->EndFile = dev->EndFile;
595 /* Save address of block just written */
596 uint64_t addr = dev->file_addr + wlen - 1;
597 dcr->EndBlock = (uint32_t)addr;
598 dcr->EndFile = (uint32_t)(addr >> 32);
599 dev->block_num = dcr->EndBlock;
600 dev->file = dcr->EndFile;
602 if (dcr->VolFirstIndex == 0 && block->FirstIndex > 0) {
603 dcr->VolFirstIndex = block->FirstIndex;
605 if (block->LastIndex > 0) {
606 dcr->VolLastIndex = block->LastIndex;
608 dcr->WroteVol = true;
609 dev->file_addr += wlen; /* update file address */
610 dev->file_size += wlen;
611 dev->part_size += wlen;
613 Dmsg2(1300, "write_block: wrote block %d bytes=%d\n", dev->block_num, wlen);
618 static void reread_last_block(DCR *dcr)
620 #define CHECK_LAST_BLOCK
621 #ifdef CHECK_LAST_BLOCK
623 DEVICE *dev = dcr->dev;
625 DEV_BLOCK *block = dcr->block;
627 * If the device is a tape and it supports backspace record,
628 * we backspace over one or two eof marks depending on
629 * how many we just wrote, then over the last record,
630 * then re-read it and verify that the block number is
633 if (dev->is_tape() && dev_cap(dev, CAP_BSR)) {
634 /* Now back up over what we wrote and read the last block */
638 Jmsg(jcr, M_ERROR, 0, _("Backspace file at EOT failed. ERR=%s\n"),
639 be.strerror(dev->dev_errno));
641 if (ok && dev->has_cap(CAP_TWOEOF) && !dev->bsf(1)) {
644 Jmsg(jcr, M_ERROR, 0, _("Backspace file at EOT failed. ERR=%s\n"),
645 be.strerror(dev->dev_errno));
647 /* Backspace over record */
648 if (ok && !dev->bsr(1)) {
651 Jmsg(jcr, M_ERROR, 0, _("Backspace record at EOT failed. ERR=%s\n"),
652 be.strerror(dev->dev_errno));
654 * On FreeBSD systems, if the user got here, it is likely that his/her
655 * tape drive is "frozen". The correct thing to do is a
656 * rewind(), but if we do that, higher levels in cleaning up, will
657 * most likely write the EOS record over the beginning of the
658 * tape. The rewind *is* done later in mount.c when another
659 * tape is requested. Note, the clrerror() call in bsr()
660 * calls ioctl(MTCERRSTAT), which *should* fix the problem.
664 DEV_BLOCK *lblock = new_block(dev);
665 /* Note, this can destroy dev->errmsg */
667 if (!read_block_from_dev(dcr, NO_BLOCK_NUMBER_CHECK)) {
668 Jmsg(jcr, M_ERROR, 0, _("Re-read last block at EOT failed. ERR=%s"),
672 * If we wrote block and the block numbers don't agree
673 * we have a possible problem.
675 if (lblock->VolSessionId == block->VolSessionId &&
676 lblock->BlockNumber+1 != block->BlockNumber) {
677 Jmsg(jcr, M_ERROR, 0, _(
678 "Re-read of last block OK, but block numbers differ. Last block=%u Current block=%u.\n"),
679 lblock->BlockNumber, block->BlockNumber);
681 Jmsg(jcr, M_INFO, 0, _("Re-read of last block succeeded.\n"));
691 static bool terminate_writing_volume(DCR *dcr)
693 DEVICE *dev = dcr->dev;
696 /* Create a JobMedia record to indicated end of tape */
697 dev->VolCatInfo.VolCatFiles = dev->file;
698 if (!dir_create_jobmedia_record(dcr)) {
699 Dmsg0(190, "Error from create JobMedia\n");
700 dev->dev_errno = EIO;
701 Jmsg(dcr->jcr, M_FATAL, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
702 dcr->VolCatInfo.VolCatName, dcr->jcr->Job);
706 dcr->block->write_failed = true;
707 if (!dev->weof(1)) { /* end the tape */
708 dev->VolCatInfo.VolCatErrors++;
709 Jmsg(dcr->jcr, M_ERROR, 0, _("Error writing final EOF to tape. This Volume may not be readable.\n"
712 Dmsg0(100, "WEOF error.\n");
715 ok = write_ansi_ibm_labels(dcr, ANSI_EOV_LABEL, dev->VolHdr.VolumeName);
717 bstrncpy(dev->VolCatInfo.VolCatStatus, "Full", sizeof(dev->VolCatInfo.VolCatStatus));
718 dev->VolCatInfo.VolCatFiles = dev->file; /* set number of files */
719 dev->VolCatInfo.VolCatJobs++; /* increment number of jobs */
722 if (!dvd_write_part(dcr)) { /* write last part */
723 dev->VolCatInfo.VolCatErrors++;
724 Jmsg(dcr->jcr, M_FATAL, 0, _("Error writing final part to DVD. "
725 "This Volume may not be readable.\n%s"),
728 Dmsg0(100, "dvd_write_part error.\n");
730 dev->VolCatInfo.VolCatParts = dev->num_dvd_parts;
733 if (!dir_update_volume_info(dcr, false)) {
736 Dmsg1(100, "dir_update_volume_info terminate writing -- %s\n", ok?"OK":"ERROR");
739 * Walk through all attached dcrs setting flag to call
740 * set_new_file_parameters() when that dcr is next used.
743 foreach_dlist(mdcr, dev->attached_dcrs) {
744 if (mdcr->jcr->JobId == 0) {
747 mdcr->NewFile = true; /* set reminder to do set_new_file_params */
749 /* Set new file/block parameters for current dcr */
750 set_new_file_parameters(dcr);
752 if (ok && dev_cap(dev, CAP_TWOEOF) && !dev->weof(1)) { /* end the tape */
753 dev->VolCatInfo.VolCatErrors++;
754 /* This may not be fatal since we already wrote an EOF */
755 Jmsg(dcr->jcr, M_ERROR, 0, "%s", dev->errmsg);
758 dev->set_ateot(); /* no more writing this tape */
759 Dmsg1(100, "Leave terminate_writing_volume -- %s\n", ok?"OK":"ERROR");
764 * Do bookkeeping when a new file is created on a Volume. This is
765 * also done for disk files to generate the jobmedia records for
768 static bool do_new_file_bookkeeping(DCR *dcr)
770 DEVICE *dev = dcr->dev;
773 /* Create a JobMedia record so restore can seek */
774 if (!dir_create_jobmedia_record(dcr)) {
775 Dmsg0(190, "Error from create_job_media.\n");
776 dev->dev_errno = EIO;
777 Jmsg(jcr, M_FATAL, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
778 dcr->VolCatInfo.VolCatName, jcr->Job);
779 terminate_writing_volume(dcr);
780 dev->dev_errno = EIO;
783 dev->VolCatInfo.VolCatFiles = dev->file;
784 if (!dir_update_volume_info(dcr, false)) {
785 Dmsg0(190, "Error from update_vol_info.\n");
786 terminate_writing_volume(dcr);
787 dev->dev_errno = EIO;
790 Dmsg0(100, "dir_update_volume_info max file size -- OK\n");
793 * Walk through all attached dcrs setting flag to call
794 * set_new_file_parameters() when that dcr is next used.
797 foreach_dlist(mdcr, dev->attached_dcrs) {
798 if (mdcr->jcr->JobId == 0) {
801 mdcr->NewFile = true; /* set reminder to do set_new_file_params */
803 /* Set new file/block parameters for current dcr */
804 set_new_file_parameters(dcr);
809 * Do all checks for DVD sizes during writing.
811 static bool do_dvd_size_checks(DCR *dcr)
813 DEVICE *dev = dcr->dev;
815 DEV_BLOCK *block = dcr->block;
817 /* Don't go further if the device is not a dvd */
818 if (!dev->is_dvd()) {
822 /* Limit maximum part size to value specified by user
824 if (dev->max_part_size > 0 && ((dev->part_size + block->binbuf) >= dev->max_part_size)) {
825 if (dev->part < dev->num_dvd_parts) {
826 Jmsg3(dcr->jcr, M_FATAL, 0, _("Error while writing, current part number"
827 " is less than the total number of parts (%d/%d, device=%s)\n"),
828 dev->part, dev->num_dvd_parts, dev->print_name());
829 dev->dev_errno = EIO;
833 if (dvd_open_next_part(dcr) < 0) {
834 Jmsg2(dcr->jcr, M_FATAL, 0, _("Unable to open device next part %s: ERR=%s\n"),
835 dev->print_name(), dev->bstrerror());
836 dev->dev_errno = EIO;
840 dev->VolCatInfo.VolCatParts = dev->num_dvd_parts;
842 if (!dir_update_volume_info(dcr, false)) {
843 Dmsg0(190, "Error from update_vol_info.\n");
844 dev->dev_errno = EIO;
849 if (!dev->is_freespace_ok()) {
850 update_free_space_dev(dev);
853 if (!dev->is_freespace_ok()) { /* Error while getting free space */
854 char ed1[50], ed2[50];
855 Dmsg1(10, "Cannot get free space on the device ERR=%s.\n", dev->errmsg);
856 Jmsg(jcr, M_FATAL, 0, _("End of Volume \"%s\" at %u:%u on device %s "
857 "(part_size=%s, free_space=%s, free_space_errno=%d, errmsg=%s).\n"),
858 dev->VolCatInfo.VolCatName,
859 dev->file, dev->block_num, dev->print_name(),
860 edit_uint64_with_commas(dev->part_size, ed1), edit_uint64_with_commas(dev->free_space, ed2),
861 dev->free_space_errno, dev->errmsg);
862 dev->dev_errno = dev->free_space_errno;
866 if ((dev->is_freespace_ok() && (dev->part_size + block->binbuf) >= dev->free_space)) {
867 char ed1[50], ed2[50];
868 Dmsg0(10, "==== Just enough free space on the device to write the current part...\n");
869 Jmsg(jcr, M_INFO, 0, _("End of Volume \"%s\" at %u:%u on device %s "
870 "(part_size=%s, free_space=%s, free_space_errno=%d).\n"),
871 dev->VolCatInfo.VolCatName,
872 dev->file, dev->block_num, dev->print_name(),
873 edit_uint64_with_commas(dev->part_size, ed1), edit_uint64_with_commas(dev->free_space, ed2),
874 dev->free_space_errno);
875 terminate_writing_volume(dcr);
876 dev->dev_errno = ENOSPC;
884 * Read block with locking
887 bool read_block_from_device(DCR *dcr, bool check_block_numbers)
890 DEVICE *dev = dcr->dev;
891 Dmsg0(200, "Enter read_block_from_device\n");
893 ok = read_block_from_dev(dcr, check_block_numbers);
895 Dmsg0(200, "Leave read_block_from_device\n");
900 * Read the next block into the block structure and unserialize
901 * the block header. For a file, the block may be partially
902 * or completely in the current buffer.
904 bool read_block_from_dev(DCR *dcr, bool check_block_numbers)
908 uint32_t BlockNumber;
911 DEVICE *dev = dcr->dev;
912 DEV_BLOCK *block = dcr->block;
914 ASSERT(dev->is_open());
920 Dmsg1(200, "Full read in read_block_from_device() len=%d\n",
924 dev->dev_errno = EIO;
925 Mmsg1(dev->errmsg, _("Block buffer size looping problem on device %s\n"),
927 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
932 #define lots_of_debug
934 if (dev->at_eof() && dev->is_dvd()) {
935 Dmsg1(100, "file_size=%u\n",(unsigned int)dev->file_size);
936 Dmsg1(100, "file_addr=%u\n",(unsigned int)dev->file_addr);
937 Dmsg1(100, "lseek=%u\n",(unsigned int)lseek(dev->fd, 0, SEEK_CUR));
938 Dmsg1(100, "part_start=%u\n",(unsigned int)dev->part_start);
939 Dmsg1(100, "part_size=%u\n", (unsigned int)dev->part_size);
940 Dmsg2(100, "part=%u num_dvd_parts=%u\n", dev->part, dev->num_dvd_parts);
941 Dmsg1(100, "VolCatInfo.VolCatParts=%u\n", (unsigned int)dev->VolCatInfo.VolCatParts);
942 Dmsg3(100, "Tests : %d %d %d\n", (dev->VolCatInfo.VolCatParts > 0),
943 ((dev->file_addr-dev->part_start) == dev->part_size),
944 (dev->part <= dev->VolCatInfo.VolCatParts));
948 /* Check for DVD part file end */
949 if (dev->at_eof() && dev->is_dvd() && dev->num_dvd_parts > 0 &&
950 dev->part <= dev->num_dvd_parts) {
951 Dmsg0(400, "Call dvd_open_next_part\n");
952 if (dvd_open_next_part(dcr) < 0) {
953 Jmsg3(dcr->jcr, M_FATAL, 0, _("Unable to open device part=%d %s: ERR=%s\n"),
954 dev->part, dev->print_name(), dev->bstrerror());
955 dev->dev_errno = EIO;
964 if ((retry > 0 && stat == -1 && errno == EBUSY)) {
966 Dmsg4(100, "===== read retry=%d stat=%d errno=%d: ERR=%s\n",
967 retry, stat, errno, be.strerror());
968 bmicrosleep(10, 0); /* pause a bit if busy or lots of errors */
971 if (dev->is_tape()) {
972 stat = tape_read(dev->fd, block->buf, (size_t)block->buf_len);
974 stat = read(dev->fd, block->buf, (size_t)block->buf_len);
976 } while (stat == -1 && (errno == EBUSY || errno == EINTR || errno == EIO) && retry++ < 3);
980 Dmsg1(200, "Read device got: ERR=%s\n", be.strerror());
982 Mmsg5(dev->errmsg, _("Read error on fd=%d at file:blk %u:%u on device %s. ERR=%s.\n"),
983 dev->fd, dev->file, dev->block_num, dev->print_name(), be.strerror());
984 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
985 if (dev->at_eof()) { /* EOF just seen? */
986 dev->set_eot(); /* yes, error => EOT */
990 Dmsg3(200, "Read device got %d bytes at %u:%u\n", stat,
991 dev->file, dev->block_num);
992 if (stat == 0) { /* Got EOF ! */
995 Mmsg3(dev->errmsg, _("Read zero bytes at %u:%u on device %s.\n"),
996 dev->file, dev->block_num, dev->print_name());
997 if (dev->at_eof()) { /* EOF already read? */
998 dev->set_eot(); /* yes, 2 EOFs => EOT */
1002 return false; /* return eof */
1004 /* Continue here for successful read */
1005 block->read_len = stat; /* save length read */
1006 if (block->read_len < BLKHDR2_LENGTH) {
1007 dev->dev_errno = EIO;
1008 Mmsg4(dev->errmsg, _("Volume data error at %u:%u! Very short block of %d bytes on device %s discarded.\n"),
1009 dev->file, dev->block_num, block->read_len, dev->print_name());
1010 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
1011 dev->set_short_block();
1012 block->read_len = block->binbuf = 0;
1013 return false; /* return error */
1016 BlockNumber = block->BlockNumber + 1;
1017 if (!unser_block_header(jcr, dev, block)) {
1019 dev->file_addr += block->read_len;
1020 dev->file_size += block->read_len;
1027 * If the block is bigger than the buffer, we reposition for
1028 * re-reading the block, allocate a buffer of the correct size,
1031 if (block->block_len > block->buf_len) {
1032 dev->dev_errno = EIO;
1033 Mmsg2(dev->errmsg, _("Block length %u is greater than buffer %u. Attempting recovery.\n"),
1034 block->block_len, block->buf_len);
1035 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
1036 Pmsg1(000, "%s", dev->errmsg);
1037 /* Attempt to reposition to re-read the block */
1038 if (dev->is_tape()) {
1039 Dmsg0(200, "BSR for reread; block too big for buffer.\n");
1041 Jmsg(jcr, M_ERROR, 0, "%s", dev->bstrerror());
1042 block->read_len = 0;
1046 Dmsg0(200, "Seek to beginning of block for reread.\n");
1047 off_t pos = dev->lseek(dcr, (off_t)0, SEEK_CUR); /* get curr pos */
1048 pos -= block->read_len;
1049 dev->lseek(dcr, pos, SEEK_SET);
1050 dev->file_addr = pos;
1052 Mmsg1(dev->errmsg, _("Setting block buffer size to %u bytes.\n"), block->block_len);
1053 Jmsg(jcr, M_INFO, 0, "%s", dev->errmsg);
1054 Pmsg1(000, "%s", dev->errmsg);
1055 /* Set new block length */
1056 dev->max_block_size = block->block_len;
1057 block->buf_len = block->block_len;
1058 free_memory(block->buf);
1059 block->buf = get_memory(block->buf_len);
1062 goto reread; /* re-read block with correct block size */
1065 if (block->block_len > block->read_len) {
1066 dev->dev_errno = EIO;
1067 Mmsg4(dev->errmsg, _("Volume data error at %u:%u! Short block of %d bytes on device %s discarded.\n"),
1068 dev->file, dev->block_num, block->read_len, dev->print_name());
1069 Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
1070 dev->set_short_block();
1071 block->read_len = block->binbuf = 0;
1072 return false; /* return error */
1075 dev->clear_short_block();
1077 dev->VolCatInfo.VolCatReads++;
1078 dev->VolCatInfo.VolCatRBytes += block->read_len;
1080 dev->VolCatInfo.VolCatBytes += block->block_len;
1081 dev->VolCatInfo.VolCatBlocks++;
1082 if (dev->VolCatInfo.VolFirstWritten == 0) {
1083 dev->VolCatInfo.VolFirstWritten = time(NULL); /* Set first written time */
1085 dev->EndBlock = dev->block_num;
1086 dev->EndFile = dev->file;
1089 /* Update dcr values */
1090 if (dev->is_tape()) {
1091 dcr->EndBlock = dev->EndBlock;
1092 dcr->EndFile = dev->EndFile;
1094 uint64_t addr = dev->file_addr + block->read_len - 1;
1095 dcr->EndBlock = (uint32_t)addr;
1096 dcr->EndFile = (uint32_t)(addr >> 32);
1097 dev->block_num = dcr->EndBlock;
1098 dev->file = dcr->EndFile;
1100 dev->file_addr += block->read_len;
1101 dev->file_size += block->read_len;
1104 * If we read a short block on disk,
1105 * seek to beginning of next block. This saves us
1106 * from shuffling blocks around in the buffer. Take a
1107 * look at this from an efficiency stand point later, but
1108 * it should only happen once at the end of each job.
1110 * I've been lseek()ing negative relative to SEEK_CUR for 30
1111 * years now. However, it seems that with the new off_t definition,
1112 * it is not possible to seek negative amounts, so we use two
1113 * lseek(). One to get the position, then the second to do an
1114 * absolute positioning -- so much for efficiency. KES Sep 02.
1116 Dmsg0(200, "At end of read block\n");
1117 if (block->read_len > block->block_len && !dev->is_tape()) {
1119 off_t pos = dev->lseek(dcr, (off_t)0, SEEK_CUR); /* get curr pos */
1120 Dmsg1(200, "Current lseek pos=%s\n", edit_int64(pos, ed1));
1121 pos -= (block->read_len - block->block_len);
1122 dev->lseek(dcr, pos, SEEK_SET);
1123 Dmsg3(200, "Did lseek pos=%s blk_size=%d rdlen=%d\n",
1124 edit_int64(pos, ed1), block->block_len,
1126 dev->file_addr = pos;
1127 dev->file_size = pos;
1129 Dmsg2(200, "Exit read_block read_len=%d block_len=%d\n",
1130 block->read_len, block->block_len);
1131 block->block_read = true;