]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/block.c
Use dcr more in SD + int to bool conversions
[bacula/bacula] / bacula / src / stored / block.c
1 /*
2  *
3  *   block.c -- tape block handling functions
4  *
5  *              Kern Sibbald, March MMI
6  *                 added BB02 format October MMII
7  *
8  *   Version $Id$
9  *
10  */
11 /*
12    Copyright (C) 2000-2004 Kern Sibbald and John Walker
13
14    This program is free software; you can redistribute it and/or
15    modify it under the terms of the GNU General Public License as
16    published by the Free Software Foundation; either version 2 of
17    the License, or (at your option) any later version.
18
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 GNU
22    General Public License for more details.
23
24    You should have received a copy of the GNU General Public
25    License along with this program; if not, write to the Free
26    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27    MA 02111-1307, USA.
28
29  */
30
31
32 #include "bacula.h"
33 #include "stored.h"
34
35 extern int debug_level;
36
37 /*
38  * Dump the block header, then walk through
39  * the block printing out the record headers.
40  */
41 void dump_block(DEV_BLOCK *b, const char *msg)
42 {
43    ser_declare;
44    char *p;
45    char Id[BLKHDR_ID_LENGTH+1];
46    uint32_t CheckSum, BlockCheckSum;
47    uint32_t block_len;
48    uint32_t BlockNumber;
49    uint32_t VolSessionId, VolSessionTime, data_len;
50    int32_t  FileIndex;
51    int32_t  Stream;
52    int bhl, rhl;
53
54    unser_begin(b->buf, BLKHDR1_LENGTH);
55    unser_uint32(CheckSum);
56    unser_uint32(block_len);
57    unser_uint32(BlockNumber);
58    unser_bytes(Id, BLKHDR_ID_LENGTH);
59    ASSERT(unser_length(b->buf) == BLKHDR1_LENGTH);
60    Id[BLKHDR_ID_LENGTH] = 0;
61    if (Id[3] == '2') {
62       unser_uint32(VolSessionId);
63       unser_uint32(VolSessionTime);
64       bhl = BLKHDR2_LENGTH;
65       rhl = RECHDR2_LENGTH;
66    } else {
67       VolSessionId = VolSessionTime = 0;
68       bhl = BLKHDR1_LENGTH;
69       rhl = RECHDR1_LENGTH;
70    }
71
72    if (block_len > 100000) {
73       Dmsg3(20, "Dump block %s 0x%x blocksize too big %u\n", msg, b, block_len);
74       return;
75    }
76
77    BlockCheckSum = bcrc32((uint8_t *)b->buf+BLKHDR_CS_LENGTH,
78                          block_len-BLKHDR_CS_LENGTH);
79    Pmsg6(000, "Dump block %s %x: size=%d BlkNum=%d\n\
80                Hdrcksum=%x cksum=%x\n",
81       msg, b, block_len, BlockNumber, CheckSum, BlockCheckSum);
82    p = b->buf + bhl;
83    while (p < (b->buf + block_len+WRITE_RECHDR_LENGTH)) { 
84       unser_begin(p, WRITE_RECHDR_LENGTH);
85       if (rhl == RECHDR1_LENGTH) {
86          unser_uint32(VolSessionId);
87          unser_uint32(VolSessionTime);
88       }
89       unser_int32(FileIndex);
90       unser_int32(Stream);
91       unser_uint32(data_len);
92       Pmsg6(000, "   Rec: VId=%u VT=%u FI=%s Strm=%s len=%d p=%x\n",
93            VolSessionId, VolSessionTime, FI_to_ascii(FileIndex), 
94            stream_to_ascii(Stream, FileIndex), data_len, p);
95       p += data_len + rhl;
96   }
97 }
98     
99 /*
100  * Create a new block structure.                           
101  * We pass device so that the block can inherit the
102  * min and max block sizes.
103  */
104 DEV_BLOCK *new_block(DEVICE *dev)
105 {
106    DEV_BLOCK *block = (DEV_BLOCK *)get_memory(sizeof(DEV_BLOCK));
107
108    memset(block, 0, sizeof(DEV_BLOCK));
109
110    /* If the user has specified a max_block_size, use it as the default */
111    if (dev->max_block_size == 0) {
112       block->buf_len = DEFAULT_BLOCK_SIZE;
113    } else {
114       block->buf_len = dev->max_block_size;
115    }
116    block->dev = dev;
117    block->block_len = block->buf_len;  /* default block size */
118    block->buf = get_memory(block->buf_len); 
119    empty_block(block);
120    block->BlockVer = BLOCK_VER;       /* default write version */
121    Dmsg1(90, "Returning new block=%x\n", block);
122    return block;
123 }
124
125
126 /*
127  * Duplicate an existing block (eblock)
128  */
129 DEV_BLOCK *dup_block(DEV_BLOCK *eblock)
130 {
131    DEV_BLOCK *block = (DEV_BLOCK *)get_memory(sizeof(DEV_BLOCK));
132    int buf_len = sizeof_pool_memory(eblock->buf);
133
134    memcpy(block, eblock, sizeof(DEV_BLOCK));
135    block->buf = get_memory(buf_len);
136    memcpy(block->buf, eblock->buf, buf_len);
137    return block;
138 }
139
140
141 /* 
142  * Only the first block checksum error was reported.
143  *   If there are more, report it now.
144  */
145 void print_block_read_errors(JCR *jcr, DEV_BLOCK *block)
146 {
147    if (block->read_errors > 1) {
148       Jmsg(jcr, M_ERROR, 0, _("%d block read errors not printed.\n"),
149          block->read_errors);
150    }
151 }
152
153 /*
154  * Free block 
155  */
156 void free_block(DEV_BLOCK *block)
157 {
158    Dmsg1(199, "free_block buffer %x\n", block->buf);
159    free_memory(block->buf);
160    Dmsg1(199, "free_block block %x\n", block);
161    free_memory((POOLMEM *)block);
162 }
163
164 /* Empty the block -- for writing */
165 void empty_block(DEV_BLOCK *block)
166 {
167    block->binbuf = WRITE_BLKHDR_LENGTH;
168    block->bufp = block->buf + block->binbuf;
169    block->read_len = 0;
170    block->write_failed = false;
171    block->block_read = false;
172    block->FirstIndex = block->LastIndex = 0;
173 }
174
175 /*
176  * Create block header just before write. The space
177  * in the buffer should have already been reserved by
178  * init_block.
179  */
180 void ser_block_header(DEV_BLOCK *block)
181 {
182    ser_declare;
183    uint32_t CheckSum = 0;
184    uint32_t block_len = block->binbuf;
185    
186    Dmsg1(190, "ser_block_header: block_len=%d\n", block_len);
187    ser_begin(block->buf, BLKHDR2_LENGTH);
188    ser_uint32(CheckSum);
189    ser_uint32(block_len);
190    ser_uint32(block->BlockNumber);
191    ser_bytes(WRITE_BLKHDR_ID, BLKHDR_ID_LENGTH);
192    if (BLOCK_VER >= 2) {
193       ser_uint32(block->VolSessionId);
194       ser_uint32(block->VolSessionTime);
195    }
196
197    /* Checksum whole block except for the checksum */
198    CheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH, 
199                  block_len-BLKHDR_CS_LENGTH);
200    Dmsg1(190, "ser_bloc_header: checksum=%x\n", CheckSum);
201    ser_begin(block->buf, BLKHDR2_LENGTH);
202    ser_uint32(CheckSum);              /* now add checksum to block header */
203 }
204
205 /*
206  * Unserialize the block header for reading block.
207  *  This includes setting all the buffer pointers correctly.
208  *
209  *  Returns: false on failure (not a block)
210  *           true  on success
211  */
212 static bool unser_block_header(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
213 {
214    ser_declare;
215    char Id[BLKHDR_ID_LENGTH+1];
216    uint32_t CheckSum, BlockCheckSum;
217    uint32_t block_len;
218    uint32_t block_end;
219    uint32_t BlockNumber;
220    int bhl;
221
222    unser_begin(block->buf, BLKHDR_LENGTH);
223    unser_uint32(CheckSum);
224    unser_uint32(block_len);
225    unser_uint32(BlockNumber);
226    unser_bytes(Id, BLKHDR_ID_LENGTH);
227    ASSERT(unser_length(block->buf) == BLKHDR1_LENGTH);
228
229    Id[BLKHDR_ID_LENGTH] = 0;
230    if (Id[3] == '1') {
231       bhl = BLKHDR1_LENGTH;
232       block->BlockVer = 1;
233       block->bufp = block->buf + bhl;
234       if (strncmp(Id, BLKHDR1_ID, BLKHDR_ID_LENGTH) != 0) {
235          dev->dev_errno = EIO;
236          Mmsg4(&dev->errmsg, _("Volume data error at %u:%u! Wanted ID: %s, got %s. Buffer discarded.\n"),
237             dev->file, dev->block_num, BLKHDR1_ID, Id);
238          if (block->read_errors == 0 || verbose >= 2) {
239             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
240          }
241          block->read_errors++;
242          if (!forge_on) {
243             return false;
244          }
245       }
246    } else if (Id[3] == '2') {
247       unser_uint32(block->VolSessionId);
248       unser_uint32(block->VolSessionTime);
249       bhl = BLKHDR2_LENGTH;
250       block->BlockVer = 2;
251       block->bufp = block->buf + bhl;
252       if (strncmp(Id, BLKHDR2_ID, BLKHDR_ID_LENGTH) != 0) {
253          dev->dev_errno = EIO;
254          Mmsg4(&dev->errmsg, _("Volume data error at %u:%u! Wanted ID: %s, got %s. Buffer discarded.\n"),
255             dev->file, dev->block_num, BLKHDR2_ID, Id);
256          if (block->read_errors == 0 || verbose >= 2) {
257             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
258          }
259          block->read_errors++;
260          if (!forge_on) {
261             return false;
262          }
263       }
264    } else {
265       dev->dev_errno = EIO;
266       Mmsg4(&dev->errmsg, _("Volume data error at %u:%u! Wanted ID: %s, got %s. Buffer discarded.\n"),
267           dev->file, dev->block_num, BLKHDR2_ID, Id);
268       if (block->read_errors == 0 || verbose >= 2) {
269          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
270       }
271       block->read_errors++;
272       if (!forge_on) {
273          return false;
274       }
275       unser_uint32(block->VolSessionId);
276       unser_uint32(block->VolSessionTime);
277       bhl = BLKHDR2_LENGTH;
278       block->BlockVer = 2;
279       block->bufp = block->buf + bhl;
280    }
281
282    /* Sanity check */
283    if (block_len > MAX_BLOCK_LENGTH) {
284       dev->dev_errno = EIO;
285       Mmsg3(&dev->errmsg,  _("Volume data error at %u:%u! Block length %u is insane (too large), probably due to a bad archive.\n"),
286          dev->file, dev->block_num, block_len);
287       if (block->read_errors == 0 || verbose >= 2) {
288          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
289       }
290       block->read_errors++;
291       if (!forge_on) {
292          return false;
293       }
294    }
295
296    Dmsg1(190, "unser_block_header block_len=%d\n", block_len);
297    /* Find end of block or end of buffer whichever is smaller */
298    if (block_len > block->read_len) {
299       block_end = block->read_len;
300    } else {
301       block_end = block_len;
302    }
303    block->binbuf = block_end - bhl;
304    block->block_len = block_len;
305    block->BlockNumber = BlockNumber;
306    Dmsg3(190, "Read binbuf = %d %d block_len=%d\n", block->binbuf,
307       bhl, block_len);
308    if (block_len <= block->read_len) {
309       BlockCheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH,
310                          block_len-BLKHDR_CS_LENGTH);
311       if (BlockCheckSum != CheckSum) {
312          dev->dev_errno = EIO;
313          Mmsg5(&dev->errmsg, _("Volume data error at %u:%u! Block checksum mismatch in block %u: calc=%x blk=%x\n"), 
314             dev->file, dev->block_num, (unsigned)BlockNumber, BlockCheckSum, CheckSum);
315          if (block->read_errors == 0 || verbose >= 2) {
316             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
317          }
318          block->read_errors++;
319          if (!forge_on) {
320             return false;
321          }
322       }
323    }
324    return true;
325 }
326
327 /*  
328  * Write a block to the device, with locking and unlocking
329  *
330  * Returns: true  on success
331  *        : false on failure
332  *
333  */
334 bool write_block_to_device(DCR *dcr, DEV_BLOCK *block)
335 {
336    bool stat = true;
337    DEVICE *dev = dcr->dev;
338    JCR *jcr = dcr->jcr;
339
340
341    if (dcr->spooling) {
342       stat = write_block_to_spool_file(dcr, block);
343       return stat;
344    }
345
346    if (!dcr->dev_locked) {
347       lock_device(dev);
348    }
349
350    /*
351     * If a new volume has been mounted since our last write
352     *   Create a JobMedia record for the previous volume written,
353     *   and set new parameters to write this volume   
354     * The same applies for if we are in a new file.
355     */
356    if (dcr->NewVol || dcr->NewFile) {
357       /* Create a jobmedia record for this job */
358       if (!dir_create_jobmedia_record(jcr)) {
359          dev->dev_errno = EIO;
360          Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
361             jcr->VolCatInfo.VolCatName, jcr->Job);
362          set_new_volume_parameters(jcr, dev);
363          stat = false;
364          goto bail_out;
365       }
366       if (dcr->NewVol) {
367          /* Note, setting a new volume also handles any pending new file */
368          set_new_volume_parameters(jcr, dev);
369          dcr->NewFile = false;        /* this handled for new file too */
370       } else {
371          set_new_file_parameters(jcr, dev);
372       }
373    }
374
375    if (!write_block_to_dev(dcr, block)) {
376        stat = fixup_device_block_write_error(dcr, block);
377    }
378
379 bail_out:
380    if (!dcr->dev_locked) {
381       unlock_device(dev);
382    }
383    return stat;
384 }
385
386 /*
387  * Write a block to the device 
388  *
389  *  Returns: true  on success or EOT
390  *           false on hard error
391  */
392 bool write_block_to_dev(DCR *dcr, DEV_BLOCK *block)
393 {
394    ssize_t stat = 0;
395    uint32_t wlen;                     /* length to write */
396    int hit_max1, hit_max2;
397    bool ok;
398    DEVICE *dev = dcr->dev;
399    JCR *jcr = dcr->jcr;
400
401 #ifdef NO_TAPE_WRITE_TEST
402    empty_block(block);
403    return true;
404 #endif
405    ASSERT(block->binbuf == ((uint32_t) (block->bufp - block->buf)));
406
407    /* dump_block(block, "before write"); */
408    if (dev->state & ST_WEOT) {
409       Dmsg0(100, "return write_block_to_dev with ST_WEOT\n");
410       dev->dev_errno = ENOSPC;
411       Jmsg(jcr, M_FATAL, 0,  _("Cannot write block. Device at EOM.\n"));
412       return false;
413    }
414    wlen = block->binbuf;
415    if (wlen <= WRITE_BLKHDR_LENGTH) {  /* Does block have data in it? */
416       Dmsg0(100, "return write_block_to_dev no data to write\n");
417       return true;
418    }
419    /* 
420     * Clear to the end of the buffer if it is not full,
421     *  and on tape devices, apply min and fixed blocking.
422     */
423    if (wlen != block->buf_len) {
424       uint32_t blen;                  /* current buffer length */
425
426       Dmsg2(200, "binbuf=%d buf_len=%d\n", block->binbuf, block->buf_len);
427       blen = wlen;
428
429       /* Adjust write size to min/max for tapes only */
430       if (dev->state & ST_TAPE) {
431          /* check for fixed block size */
432          if (dev->min_block_size == dev->max_block_size) {
433             wlen = block->buf_len;    /* fixed block size already rounded */
434          /* Check for min block size */
435          } else if (wlen < dev->min_block_size) {
436             wlen =  ((dev->min_block_size + TAPE_BSIZE - 1) / TAPE_BSIZE) * TAPE_BSIZE;
437          /* Ensure size is rounded */
438          } else {
439             wlen = ((wlen + TAPE_BSIZE - 1) / TAPE_BSIZE) * TAPE_BSIZE;
440          }
441       }
442       if (wlen-blen > 0) {
443          memset(block->bufp, 0, wlen-blen); /* clear garbage */
444       }
445    }  
446
447    ser_block_header(block);
448
449    /* Limit maximum Volume size to value specified by user */
450    hit_max1 = (dev->max_volume_size > 0) &&
451        ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->max_volume_size;
452    hit_max2 = (dev->VolCatInfo.VolCatMaxBytes > 0) &&
453        ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->VolCatInfo.VolCatMaxBytes;
454    if (hit_max1 || hit_max2) {   
455       char ed1[50];
456       uint64_t max_cap;
457       Dmsg0(10, "==== Output bytes Triggered medium max capacity.\n");
458       if (hit_max1) {
459          max_cap = dev->max_volume_size;
460       } else {
461          max_cap = dev->VolCatInfo.VolCatMaxBytes;
462       }
463       Jmsg(jcr, M_INFO, 0, _("User defined maximum volume capacity %s exceeded on device %s.\n"),
464             edit_uint64_with_commas(max_cap, ed1),  dev->dev_name);
465       block->write_failed = true;
466       if (weof_dev(dev, 1) != 0) {            /* end tape */
467          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
468          dev->VolCatInfo.VolCatErrors++;
469       }
470       /* Don't do update after second EOF or file count will be wrong */
471       Dmsg0(100, "dir_update_volume_info\n");
472       dev->VolCatInfo.VolCatFiles = dev->file;
473       dir_update_volume_info(jcr, false);
474       if (dev_cap(dev, CAP_TWOEOF) && weof_dev(dev, 1) != 0) {  /* write eof */
475          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
476          dev->VolCatInfo.VolCatErrors++;
477       }
478       dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
479       dev->dev_errno = ENOSPC;
480       return false;
481    }
482
483    /* Limit maximum File size on volume to user specified value */
484    if ((dev->max_file_size > 0) && 
485        (dev->file_size+block->binbuf) >= dev->max_file_size) {
486
487       if (dev_state(dev, ST_TAPE) && weof_dev(dev, 1) != 0) {            /* write eof */
488          /* Write EOF */
489          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
490          block->write_failed = true;
491          dev->VolCatInfo.VolCatErrors++;
492          dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
493          Dmsg0(100, "dir_update_volume_info\n");
494          dev->VolCatInfo.VolCatFiles = dev->file;
495          dir_update_volume_info(jcr, false);
496          dev->dev_errno = ENOSPC;
497          return false;
498       }
499
500       /* Create a JobMedia record so restore can seek */
501       Dmsg0(100, "dir_update_volume_info\n");
502       dev->VolCatInfo.VolCatFiles = dev->file;
503       dir_update_volume_info(jcr, false);
504       if (!dir_create_jobmedia_record(jcr)) {
505          dev->dev_errno = EIO;
506           Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
507                dcr->VolCatInfo.VolCatName, jcr->Job);
508           if (!forge_on) {
509              return false;
510           }
511       }
512       dev->file_size = 0;             /* reset file size */
513       /* 
514        * Walk through all attached jcrs indicating the file has changed   
515        */
516       Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
517       for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
518          if (mjcr->JobId == 0) {
519             continue;                 /* ignore console */
520          }
521          mjcr->dcr->NewFile = true;   /* set reminder to do set_new_file_params */
522       }
523       set_new_file_parameters(jcr, dev);
524    }
525
526    dev->VolCatInfo.VolCatWrites++;
527    Dmsg1(200, "Write block of %u bytes\n", wlen);      
528    stat = write(dev->fd, block->buf, (size_t)wlen);
529    if (stat != (ssize_t)wlen) {
530       /* We should check for errno == ENOSPC, BUT many 
531        * devices simply report EIO when the volume is full.
532        * With a little more thought we may be able to check
533        * capacity and distinguish real errors and EOT
534        * conditions.  In any case, we probably want to
535        * simulate an End of Medium.
536        */
537       if (stat == -1) {
538          /* I have added the ifdefing here because it appears on
539           * FreeBSD where MTIOCERRSTAT is defined, this not only
540           * clears the error but clears the residual unwritten
541           * buffers -> data loss. As a consequence, on those
542           * systems (FreeBSD like), do the clrerror() only after
543           * the weof_dev() call.
544           */
545          clrerror_dev(dev, -1);
546          if (dev->dev_errno == 0) {
547             dev->dev_errno = ENOSPC;        /* out of space */
548          }
549          Jmsg4(jcr, M_ERROR, 0, _("Write error at %u:%u on device %s. ERR=%s.\n"), 
550             dev->file, dev->block_num, dev->dev_name, strerror(dev->dev_errno));
551       } else {
552         dev->dev_errno = ENOSPC;            /* out of space */
553          Jmsg(jcr, M_INFO, 0, _("End of medium at %u:%u on device %s. Write of %u bytes got %d.\n"), 
554             dev->file, dev->block_num, dev->dev_name, wlen, stat);
555       }  
556
557       Dmsg6(100, "=== Write error. size=%u rtn=%d dev_blk=%d blk_blk=%d errno=%d: ERR=%s\n", 
558          wlen, stat, dev->block_num, block->BlockNumber, dev->dev_errno, strerror(dev->dev_errno));
559
560       block->write_failed = true;
561       if (weof_dev(dev, 1) != 0) {         /* end the tape */
562          dev->VolCatInfo.VolCatErrors++;
563          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
564       }
565       Dmsg0(100, "dir_update_volume_info\n");
566       dev->VolCatInfo.VolCatFiles = dev->file;
567       dir_update_volume_info(jcr, false);
568       if (dev_cap(dev, CAP_TWOEOF) && weof_dev(dev, 1) != 0) {  /* end the tape */
569          dev->VolCatInfo.VolCatErrors++;
570          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
571       }
572       dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
573         
574       ok = true;
575 #define CHECK_LAST_BLOCK
576 #ifdef  CHECK_LAST_BLOCK
577       /* 
578        * If the device is a tape and it supports backspace record,
579        *   we backspace over one or two eof marks depending on 
580        *   how many we just wrote, then over the last record,
581        *   then re-read it and verify that the block number is
582        *   correct.
583        */
584       if (dev->state & ST_TAPE && dev_cap(dev, CAP_BSR)) {
585
586          /* Now back up over what we wrote and read the last block */
587          if (!bsf_dev(dev, 1)) {
588             ok = false;
589             Jmsg(jcr, M_ERROR, 0, _("Backspace file at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
590          }
591          if (ok && dev_cap(dev, CAP_TWOEOF) && !bsf_dev(dev, 1)) {
592             ok = false;
593             Jmsg(jcr, M_ERROR, 0, _("Backspace file at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
594          }
595          /* Backspace over record */
596          if (ok && !bsr_dev(dev, 1)) {
597             ok = false;
598             Jmsg(jcr, M_ERROR, 0, _("Backspace record at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
599             /*
600              *  On FreeBSD systems, if the user got here, it is likely that his/her
601              *    tape drive is "frozen".  The correct thing to do is a 
602              *    rewind(), but if we do that, higher levels in cleaning up, will
603              *    most likely write the EOS record over the beginning of the
604              *    tape.  The rewind *is* done later in mount.c when another
605              *    tape is requested. Note, the clrerror_dev() call in bsr_dev()
606              *    calls ioctl(MTCERRSTAT), which *should* fix the problem.
607              */
608          }
609          if (ok) {
610             DEV_BLOCK *lblock = new_block(dev);
611             /* Note, this can destroy dev->errmsg */
612             if (!read_block_from_dev(jcr, dev, lblock, NO_BLOCK_NUMBER_CHECK)) {
613                Jmsg(jcr, M_ERROR, 0, _("Re-read last block at EOT failed. ERR=%s"), dev->errmsg);
614             } else {
615                if (lblock->BlockNumber+1 == block->BlockNumber) {
616                   Jmsg(jcr, M_INFO, 0, _("Re-read of last block succeeded.\n"));
617                } else {
618                   Jmsg(jcr, M_ERROR, 0, _(
619 "Re-read of last block failed. Last block=%u Current block=%u.\n"),
620                        lblock->BlockNumber, block->BlockNumber);
621                }
622             }
623             free_block(lblock);
624          }
625       }
626 #endif
627       return false;
628    }
629
630    /* We successfully wrote the block, now do housekeeping */
631
632    dev->VolCatInfo.VolCatBytes += block->binbuf;
633    dev->VolCatInfo.VolCatBlocks++;   
634    dev->EndBlock = dev->block_num;
635    dev->EndFile  = dev->file;
636    dev->block_num++;
637    block->BlockNumber++;
638
639    /* Update jcr values */
640    if (dev_state(dev, ST_TAPE)) {
641       dcr->EndBlock = dev->EndBlock;
642       dcr->EndFile  = dev->EndFile;
643    } else {
644       /* Save address of start of block just written */
645       dcr->EndBlock = (uint32_t)dev->file_addr;
646       dcr->EndFile = (uint32_t)(dev->file_addr >> 32);
647    }
648    if (dcr->VolFirstIndex == 0 && block->FirstIndex > 0) {
649       dcr->VolFirstIndex = block->FirstIndex;
650    }
651    if (block->LastIndex > 0) {
652       dcr->VolLastIndex = block->LastIndex;
653    }
654    dcr->WroteVol = true;
655    dev->file_addr += wlen;            /* update file address */
656    dev->file_size += wlen;
657
658    Dmsg2(190, "write_block: wrote block %d bytes=%d\n", dev->block_num,
659       wlen);
660    empty_block(block);
661    return true;
662 }
663
664 /*  
665  * Read block with locking
666  *
667  */
668 int read_block_from_device(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, bool check_block_numbers)
669 {
670    int stat;
671    Dmsg0(90, "Enter read_block_from_device\n");
672    lock_device(dev);
673    stat = read_block_from_dev(jcr, dev, block, check_block_numbers);
674    unlock_device(dev);
675    Dmsg0(90, "Leave read_block_from_device\n");
676    return stat;
677 }
678
679 /*
680  * Read the next block into the block structure and unserialize
681  *  the block header.  For a file, the block may be partially
682  *  or completely in the current buffer.
683  */
684 int read_block_from_dev(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, bool check_block_numbers)
685 {
686    ssize_t stat;
687    int looping;
688    uint32_t BlockNumber;
689    int retry;
690    DCR *dcr = jcr->dcr;
691
692    if (!dcr) {
693       Jmsg0(jcr, M_ABORT, 0, _("DCR is NULL!\n"));
694    }
695    if (dev_state(dev, ST_EOT)) {
696       return 0;
697    }
698    looping = 0;
699    Dmsg1(100, "Full read() in read_block_from_device() len=%d\n",
700          block->buf_len);
701 reread:
702    if (looping > 1) {
703       dev->dev_errno = EIO;
704       Mmsg1(&dev->errmsg, _("Block buffer size looping problem on device %s\n"),
705          dev->dev_name);
706       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
707       block->read_len = 0;
708       return 0;
709    }
710    retry = 0;
711    do {
712       stat = read(dev->fd, block->buf, (size_t)block->buf_len);
713       if (retry == 1) {
714          dev->VolCatInfo.VolCatErrors++;   
715       }
716    } while (stat == -1 && (errno == EINTR || errno == EIO) && retry++ < 11);
717 // Dmsg1(100, "read stat = %d\n", stat);
718    if (stat < 0) {
719       Dmsg1(90, "Read device got: ERR=%s\n", strerror(errno));
720       clrerror_dev(dev, -1);
721       block->read_len = 0;
722       Mmsg4(&dev->errmsg, _("Read error at file:block %d:%d on device %s. ERR=%s.\n"), 
723          dev->file, dev->block_num, dev->dev_name, strerror(dev->dev_errno));
724       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
725       if (dev->state & ST_EOF) {  /* EOF just seen? */
726          dev->state |= ST_EOT;    /* yes, error => EOT */
727       }
728       return 0;
729    }
730    Dmsg1(90, "Read device got %d bytes\n", stat);
731    if (stat == 0) {             /* Got EOF ! */
732       dev->block_num = block->read_len = 0;
733       Mmsg1(&dev->errmsg, _("Read zero bytes on device %s.\n"), dev->dev_name);
734       if (dev->state & ST_EOF) { /* EOF already read? */
735          dev->state |= ST_EOT;  /* yes, 2 EOFs => EOT */
736          block->read_len = 0;
737          return 0;
738       }
739       dev->file++;              /* increment file */
740       dev->state |= ST_EOF;     /* set EOF read */
741       block->read_len = 0;
742       return 0;                 /* return eof */
743    }
744    /* Continue here for successful read */
745    block->read_len = stat;      /* save length read */
746    if (block->read_len < BLKHDR2_LENGTH) {
747       dev->dev_errno = EIO;
748       Mmsg2(&dev->errmsg, _("Volume data error! Very short block of %d bytes on device %s discarded.\n"), 
749          block->read_len, dev->dev_name);
750       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
751       dev->state |= ST_SHORT;   /* set short block */
752       block->read_len = block->binbuf = 0;
753       return 0;                 /* return error */
754    }  
755
756    BlockNumber = block->BlockNumber + 1;
757    if (!unser_block_header(jcr, dev, block)) {
758       block->read_len = 0;
759       return 0;
760    }
761
762    /*
763     * If the block is bigger than the buffer, we reposition for
764     *  re-reading the block, allocate a buffer of the correct size,
765     *  and go re-read.
766     */
767    if (block->block_len > block->buf_len) {
768       dev->dev_errno = EIO;
769       Mmsg2(&dev->errmsg,  _("Block length %u is greater than buffer %u. Attempting recovery.\n"),
770          block->block_len, block->buf_len);
771       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
772       Pmsg1(000, "%s", dev->errmsg);
773       /* Attempt to reposition to re-read the block */
774       if (dev->state & ST_TAPE) {
775          Dmsg0(100, "Backspace record for reread.\n");
776          if (!bsr_dev(dev, 1)) {
777             Jmsg(jcr, M_ERROR, 0, "%s", strerror_dev(dev));
778             block->read_len = 0;
779             return 0;
780          }
781       } else {
782          Dmsg0(100, "Seek to beginning of block for reread.\n");
783          off_t pos = lseek(dev->fd, (off_t)0, SEEK_CUR); /* get curr pos */
784          pos -= block->read_len;
785          lseek(dev->fd, pos, SEEK_SET);   
786          dev->file_addr = pos;
787       }
788       Mmsg1(&dev->errmsg, _("Setting block buffer size to %u bytes.\n"), block->block_len);
789       Jmsg(jcr, M_INFO, 0, "%s", dev->errmsg);
790       Pmsg1(000, "%s", dev->errmsg);
791       /* Set new block length */
792       dev->max_block_size = block->block_len;
793       block->buf_len = block->block_len;
794       free_memory(block->buf);
795       block->buf = get_memory(block->buf_len);
796       empty_block(block);
797       looping++;
798       goto reread;                    /* re-read block with correct block size */
799    }
800
801    if (block->block_len > block->read_len) {
802       dev->dev_errno = EIO;
803       Mmsg4(&dev->errmsg, _("Volume data error at %u:%u! Short block of %d bytes on device %s discarded.\n"), 
804          dev->file, dev->block_num, block->read_len, dev->dev_name);
805       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
806       dev->state |= ST_SHORT;   /* set short block */
807       block->read_len = block->binbuf = 0;
808       return 0;                 /* return error */
809    }  
810
811    dev->state &= ~(ST_EOF|ST_SHORT); /* clear EOF and short block */
812    dev->VolCatInfo.VolCatReads++;   
813    dev->VolCatInfo.VolCatRBytes += block->read_len;
814
815    dev->VolCatInfo.VolCatBytes += block->block_len;
816    dev->VolCatInfo.VolCatBlocks++;   
817    dev->EndBlock = dev->block_num;
818    dev->EndFile  = dev->file;
819    dev->block_num++;
820
821    /* Update jcr values */
822    if (dev->state & ST_TAPE) {
823       dcr->EndBlock = dev->EndBlock;
824       dcr->EndFile  = dev->EndFile;
825    } else {
826       dcr->EndBlock = (uint32_t)dev->file_addr;
827       dcr->EndFile = (uint32_t)(dev->file_addr >> 32);
828       dev->block_num = dcr->EndBlock;
829       dev->file = dcr->EndFile;
830    }
831    dev->file_addr += block->block_len;
832    dev->file_size += block->block_len;
833
834    /*
835     * If we read a short block on disk,
836     * seek to beginning of next block. This saves us
837     * from shuffling blocks around in the buffer. Take a
838     * look at this from an efficiency stand point later, but
839     * it should only happen once at the end of each job.
840     *
841     * I've been lseek()ing negative relative to SEEK_CUR for 30
842     *   years now. However, it seems that with the new off_t definition,
843     *   it is not possible to seek negative amounts, so we use two
844     *   lseek(). One to get the position, then the second to do an
845     *   absolute positioning -- so much for efficiency.  KES Sep 02.
846     */
847    Dmsg0(200, "At end of read block\n");
848    if (block->read_len > block->block_len && !(dev->state & ST_TAPE)) {
849       off_t pos = lseek(dev->fd, (off_t)0, SEEK_CUR); /* get curr pos */
850       pos -= (block->read_len - block->block_len);
851       lseek(dev->fd, pos, SEEK_SET);   
852       Dmsg2(100, "Did lseek blk_size=%d rdlen=%d\n", block->block_len,
853             block->read_len);
854       dev->file_addr = pos;
855    }
856    Dmsg2(200, "Exit read_block read_len=%d block_len=%d\n",
857       block->read_len, block->block_len);
858    block->block_read = true;
859    return 1;
860 }