]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/block.c
4f49ded7e054589d6f4e8341749f1b822909ab7b
[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-2003 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, 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    if (block->buf == NULL) {
120       Mmsg0(&dev->errmsg, _("Unable to malloc block buffer.\n"));
121       Emsg0(M_FATAL, 0, dev->errmsg);
122       return NULL;
123    }
124    empty_block(block);
125    block->BlockVer = BLOCK_VER;       /* default write version */
126    Dmsg1(90, "Returning new block=%x\n", block);
127    return block;
128 }
129
130 /*
131  * Free block 
132  */
133 void free_block(DEV_BLOCK *block)
134 {
135    Dmsg1(199, "free_block buffer %x\n", block->buf);
136    free_memory(block->buf);
137    Dmsg1(199, "free_block block %x\n", block);
138    free_memory((POOLMEM *)block);
139 }
140
141 /* Empty the block -- for writing */
142 void empty_block(DEV_BLOCK *block)
143 {
144    block->binbuf = WRITE_BLKHDR_LENGTH;
145    block->bufp = block->buf + block->binbuf;
146    block->read_len = 0;
147    block->write_failed = false;
148    block->block_read = false;
149 }
150
151 /*
152  * Create block header just before write. The space
153  * in the buffer should have already been reserved by
154  * init_block.
155  */
156 static void ser_block_header(DEV_BLOCK *block)
157 {
158    ser_declare;
159    uint32_t CheckSum = 0;
160    uint32_t block_len = block->binbuf;
161    
162    Dmsg1(190, "ser_block_header: block_len=%d\n", block_len);
163    ser_begin(block->buf, BLKHDR2_LENGTH);
164    ser_uint32(CheckSum);
165    ser_uint32(block_len);
166    ser_uint32(block->BlockNumber);
167    ser_bytes(WRITE_BLKHDR_ID, BLKHDR_ID_LENGTH);
168    if (BLOCK_VER >= 2) {
169       ser_uint32(block->VolSessionId);
170       ser_uint32(block->VolSessionTime);
171    }
172
173    /* Checksum whole block except for the checksum */
174    CheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH, 
175                  block_len-BLKHDR_CS_LENGTH);
176    Dmsg1(190, "ser_bloc_header: checksum=%x\n", CheckSum);
177    ser_begin(block->buf, BLKHDR2_LENGTH);
178    ser_uint32(CheckSum);              /* now add checksum to block header */
179 }
180
181 /*
182  * Unserialized the block header for reading block.
183  *  This includes setting all the buffer pointers correctly.
184  *
185  *  Returns: 0 on failure (not a block)
186  *           1 on success
187  */
188 static int unser_block_header(DEVICE *dev, DEV_BLOCK *block)
189 {
190    ser_declare;
191    char Id[BLKHDR_ID_LENGTH+1];
192    uint32_t CheckSum, BlockCheckSum;
193    uint32_t block_len;
194    uint32_t block_end;
195    uint32_t BlockNumber;
196    int bhl;
197
198    unser_begin(block->buf, BLKHDR_LENGTH);
199    unser_uint32(CheckSum);
200    unser_uint32(block_len);
201    unser_uint32(BlockNumber);
202    unser_bytes(Id, BLKHDR_ID_LENGTH);
203    ASSERT(unser_length(block->buf) == BLKHDR1_LENGTH);
204
205    Id[BLKHDR_ID_LENGTH] = 0;
206    if (Id[3] == '1') {
207       bhl = BLKHDR1_LENGTH;
208       block->BlockVer = 1;
209       block->bufp = block->buf + bhl;
210       if (strncmp(Id, BLKHDR1_ID, BLKHDR_ID_LENGTH) != 0) {
211          Mmsg2(&dev->errmsg, _("Buffer ID error. Wanted: %s, got %s. Buffer discarded.\n"),
212             BLKHDR1_ID, Id);
213          Emsg0(M_ERROR, 0, dev->errmsg);
214          return 0;
215       }
216    } else if (Id[3] == '2') {
217       unser_uint32(block->VolSessionId);
218       unser_uint32(block->VolSessionTime);
219       bhl = BLKHDR2_LENGTH;
220       block->BlockVer = 2;
221       block->bufp = block->buf + bhl;
222       if (strncmp(Id, BLKHDR2_ID, BLKHDR_ID_LENGTH) != 0) {
223          Mmsg2(&dev->errmsg, _("Buffer ID error. Wanted: %s, got %s. Buffer discarded.\n"),
224             BLKHDR2_ID, Id);
225          Emsg0(M_ERROR, 0, dev->errmsg);
226          return 0;
227       }
228    } else {
229       Mmsg1(&dev->errmsg, _("Expected block-id BB01 or BB02, got %s. Buffer discarded.\n"), Id);
230       Emsg0(M_ERROR, 0, dev->errmsg);
231       return 0;
232    }
233
234    /* Sanity check */
235    if (block_len > MAX_BLOCK_LENGTH) {
236       Mmsg1(&dev->errmsg,  _("Block length %u is insane (too large), probably due to a bad archive.\n"),
237          block_len);
238       Emsg0(M_ERROR, 0, dev->errmsg);
239       return 0;
240    }
241
242    Dmsg1(190, "unser_block_header block_len=%d\n", block_len);
243    /* Find end of block or end of buffer whichever is smaller */
244    if (block_len > block->read_len) {
245       block_end = block->read_len;
246    } else {
247       block_end = block_len;
248    }
249    block->binbuf = block_end - bhl;
250    block->block_len = block_len;
251    block->BlockNumber = BlockNumber;
252    Dmsg3(190, "Read binbuf = %d %d block_len=%d\n", block->binbuf,
253       bhl, block_len);
254    if (block_len <= block->read_len) {
255       BlockCheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH,
256                          block_len-BLKHDR_CS_LENGTH);
257       if (BlockCheckSum != CheckSum) {
258          Dmsg2(00, "Block checksum mismatch: calc=%x blk=%x\n", BlockCheckSum,
259             CheckSum);
260          Mmsg3(&dev->errmsg, _("Block checksum mismatch in block %u: calc=%x blk=%x\n"), 
261             (unsigned)BlockNumber, BlockCheckSum, CheckSum);
262          return 0;
263       }
264    }
265    return 1;
266 }
267
268 /*  
269  * Write a block to the device, with locking and unlocking
270  *
271  * Returns: 1 on success
272  *        : 0 on failure
273  *
274  */
275 int write_block_to_device(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
276 {
277    int stat = 1;
278    lock_device(dev);
279
280    /*
281     * If a new volume has been mounted since our last write
282     *   Create a JobMedia record for the previous volume written,
283     *   and set new parameters to write this volume   
284     */
285    if (jcr->NewVol) {
286       /* Create a jobmedia record for this job */
287       if (!dir_create_jobmedia_record(jcr)) {
288          Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
289             jcr->VolCatInfo.VolCatName, jcr->Job);
290          unlock_device(dev);
291          return 0;
292       }
293       set_new_volume_parameters(jcr, dev);
294    }
295
296    if (!write_block_to_dev(jcr, dev, block)) {
297        stat = fixup_device_block_write_error(jcr, dev, block);
298    }
299
300    unlock_device(dev);
301    return stat;
302 }
303
304 /*
305  * Write a block to the device 
306  *
307  *  Returns: 1 on success or EOT
308  *           0 on hard error
309  */
310 int write_block_to_dev(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
311 {
312    ssize_t stat = 0;
313    uint32_t wlen;                     /* length to write */
314    int hit_max1, hit_max2;
315    int ok;
316
317 #ifdef NO_TAPE_WRITE_TEST
318    empty_block(block);
319    return 1;
320 #endif
321    ASSERT(block->binbuf == ((uint32_t) (block->bufp - block->buf)));
322
323    /* dump_block(block, "before write"); */
324    if (dev->state & ST_WEOT) {
325       Dmsg0(100, "return write_block_to_dev with ST_WEOT\n");
326       Jmsg(jcr, M_FATAL, 0,  _("Cannot write block. Device at EOM.\n"));
327       return 0;
328    }
329    wlen = block->binbuf;
330    if (wlen <= WRITE_BLKHDR_LENGTH) {  /* Does block have data in it? */
331       Dmsg0(100, "return write_block_to_dev no data to write\n");
332       return 1;
333    }
334    /* 
335     * Clear to the end of the buffer if it is not full,
336     *  and on tape devices, apply min and fixed blocking.
337     */
338    if (wlen != block->buf_len) {
339       uint32_t blen;                  /* current buffer length */
340
341       Dmsg2(200, "binbuf=%d buf_len=%d\n", block->binbuf, block->buf_len);
342       blen = wlen;
343
344       /* Adjust write size to min/max for tapes only */
345       if (dev->state & ST_TAPE) {
346          if (wlen < dev->min_block_size) {
347             wlen =  ((dev->min_block_size + TAPE_BSIZE - 1) / TAPE_BSIZE) * TAPE_BSIZE;
348          }
349          /* check for fixed block size */
350          if (dev->min_block_size == dev->max_block_size) {
351             wlen = block->buf_len;    /* fixed block size already rounded */
352          }
353       }
354       if (wlen-blen > 0) {
355          memset(block->bufp, 0, wlen-blen); /* clear garbage */
356       }
357    }  
358
359    ser_block_header(block);
360
361    /* Limit maximum Volume size to value specified by user */
362    hit_max1 = (dev->max_volume_size > 0) &&
363        ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->max_volume_size;
364    hit_max2 = (dev->VolCatInfo.VolCatMaxBytes > 0) &&
365        ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->VolCatInfo.VolCatMaxBytes;
366    if (hit_max1 || hit_max2) {   
367       char ed1[50];
368       uint64_t max_cap;
369       Dmsg0(10, "==== Output bytes Triggered medium max capacity.\n");
370       if (hit_max1) {
371          max_cap = dev->max_volume_size;
372       } else {
373          max_cap = dev->VolCatInfo.VolCatMaxBytes;
374       }
375       Jmsg(jcr, M_INFO, 0, _("User defined maximum volume capacity %s exceeded on device %s.\n"),
376             edit_uint64(max_cap, ed1),  dev->dev_name);
377       block->write_failed = true;
378       weof_dev(dev, 1);               /* end the tape */
379       weof_dev(dev, 1);               /* write second eof */
380       dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
381       return 0;
382    }
383
384    /* Limit maximum File size on volume to user specified value */
385    if (dev->state & ST_TAPE) {
386       if ((dev->max_file_size > 0) && 
387           (dev->file_addr+block->binbuf) >= dev->max_file_size) {
388          if (weof_dev(dev, 1) != 0) {            /* write eof */
389             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
390             /* Plunge on anyway -- if tape is bad we will die on write */
391          }
392       }
393    }
394
395    dev->VolCatInfo.VolCatWrites++;
396    Dmsg1(300, "Write block of %u bytes\n", wlen);      
397    if ((uint32_t)(stat=write(dev->fd, block->buf, (size_t)wlen)) != wlen) {
398       /* We should check for errno == ENOSPC, BUT many 
399        * devices simply report EIO when the volume is full.
400        * With a little more thought we may be able to check
401        * capacity and distinguish real errors and EOT
402        * conditions.  In any case, we probably want to
403        * simulate an End of Medium.
404        */
405       if (stat == -1) {
406          clrerror_dev(dev, -1);
407          if (dev->dev_errno == 0) {
408             dev->dev_errno = ENOSPC;        /* out of space */
409          }
410          Jmsg(jcr, M_ERROR, 0, _("Write error on device %s. ERR=%s.\n"), 
411             dev->dev_name, strerror(dev->dev_errno));
412       } else {
413         dev->dev_errno = ENOSPC;            /* out of space */
414          Jmsg3(jcr, M_INFO, 0, _("End of medium on device %s. Write of %u bytes got %d.\n"), 
415             dev->dev_name, wlen, stat);
416       }  
417
418       Dmsg4(10, "=== Write error. size=%u rtn=%d  errno=%d: ERR=%s\n", 
419          wlen, stat, dev->dev_errno, strerror(dev->dev_errno));
420
421       block->write_failed = true;
422       weof_dev(dev, 1);               /* end the tape */
423       weof_dev(dev, 1);               /* write second eof */
424       dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
425         
426       ok = TRUE;
427 #define CHECK_LAST_BLOCK
428 #ifdef  CHECK_LAST_BLOCK
429       /* 
430        * If the device is a tape and it supports backspace record,
431        *   we backspace over two eof marks and over the last record,
432        *   then re-read it and verify that the block number is
433        *   correct.
434        */
435       if (dev->state & ST_TAPE && dev_cap(dev, CAP_BSR)) {
436
437          /* Now back up over what we wrote and read the last block */
438          if (bsf_dev(dev, 1) != 0 || bsf_dev(dev, 1) != 0) {
439             ok = FALSE;
440             Jmsg(jcr, M_ERROR, 0, _("Back space file at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
441          }
442          /* Backspace over record */
443          if (ok && bsr_dev(dev, 1) != 0) {
444             ok = FALSE;
445             Jmsg(jcr, M_ERROR, 0, _("Back space record at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
446             /*
447              *  On FreeBSD systems, if the user got here, it is likely that his/her
448              *    tape drive is "frozen".  The correct thing to do is a 
449              *    rewind(), but if we do that, higher levels in cleaning up, will
450              *    most likely write the EOS record over the beginning of the
451              *    tape.  The rewind *is* done later in mount.c when another
452              *    tape is requested. Note, the clrerror_dev() call in bsr_dev()
453              *    calls ioctl(MTCERRSTAT), which *should* fix the problem.
454              */
455          }
456          if (ok) {
457             DEV_BLOCK *lblock = new_block(dev);
458             /* Note, this can destroy dev->errmsg */
459             if (!read_block_from_dev(jcr, dev, lblock, NO_BLOCK_NUMBER_CHECK)) {
460                Jmsg(jcr, M_ERROR, 0, _("Re-read last block at EOT failed. ERR=%s"), dev->errmsg);
461             } else {
462                if (lblock->BlockNumber+1 == block->BlockNumber) {
463                   Jmsg(jcr, M_INFO, 0, _("Re-read of last block succeeded.\n"));
464                } else {
465                   Jmsg(jcr, M_ERROR, 0, _(
466 "Re-read of last block failed. Last block=%u Current block=%u.\n"),
467                        lblock->BlockNumber, block->BlockNumber);
468                }
469             }
470             free_block(lblock);
471          }
472       }
473 #endif
474       return 0;
475    }
476
477    /* Do housekeeping */
478
479    dev->VolCatInfo.VolCatBytes += block->binbuf;
480    dev->VolCatInfo.VolCatBlocks++;   
481    dev->file_addr += wlen;
482    dev->EndBlock = dev->block_num;
483    dev->EndFile  = dev->file;
484    dev->block_num++;
485    block->BlockNumber++;
486
487    /* Update jcr values */
488    if (dev->state & ST_TAPE) {
489       jcr->EndBlock = dev->EndBlock;
490       jcr->EndFile  = dev->EndFile;
491    } else {
492       jcr->EndBlock = (uint32_t)dev->file_addr;
493       jcr->EndFile = (uint32_t)(dev->file_addr >> 32);
494    }
495    jcr->WroteVol = true;
496
497    Dmsg2(190, "write_block: wrote block %d bytes=%d\n", dev->block_num,
498       wlen);
499    empty_block(block);
500    return 1;
501 }
502
503 /*  
504  * Read block with locking
505  *
506  */
507 int read_block_from_device(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, bool check_block_numbers)
508 {
509    int stat;
510    Dmsg0(90, "Enter read_block_from_device\n");
511    lock_device(dev);
512    stat = read_block_from_dev(jcr, dev, block, check_block_numbers);
513    unlock_device(dev);
514    Dmsg0(90, "Leave read_block_from_device\n");
515    return stat;
516 }
517
518 /*
519  * Read the next block into the block structure and unserialize
520  *  the block header.  For a file, the block may be partially
521  *  or completely in the current buffer.
522  */
523 int read_block_from_dev(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, bool check_block_numbers)
524 {
525    ssize_t stat;
526    int looping;
527    uint32_t BlockNumber;
528    int retry = 0;
529
530    looping = 0;
531    Dmsg1(100, "Full read() in read_block_from_device() len=%d\n",
532          block->buf_len);
533 reread:
534    if (looping > 1) {
535       Mmsg1(&dev->errmsg, _("Block buffer size looping problem on device %s\n"),
536          dev->dev_name);
537       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
538       block->read_len = 0;
539       return 0;
540    }
541    do {
542       stat = read(dev->fd, block->buf, (size_t)block->buf_len);
543       if (retry == 1) {
544          dev->VolCatInfo.VolCatErrors++;   
545       }
546    } while (stat == -1 && (errno == EINTR || errno == EIO) && retry++ < 11);
547    if (stat < 0) {
548       Dmsg1(90, "Read device got: ERR=%s\n", strerror(errno));
549       clrerror_dev(dev, -1);
550       block->read_len = 0;
551       Mmsg2(&dev->errmsg, _("Read error on device %s. ERR=%s.\n"), 
552          dev->dev_name, strerror(dev->dev_errno));
553       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
554       if (dev->state & ST_EOF) {  /* EOF just seen? */
555          dev->state |= ST_EOT;    /* yes, error => EOT */
556       }
557       return 0;
558    }
559    Dmsg1(90, "Read device got %d bytes\n", stat);
560    if (stat == 0) {             /* Got EOF ! */
561       dev->block_num = block->read_len = 0;
562       Mmsg1(&dev->errmsg, _("Read zero bytes on device %s.\n"), dev->dev_name);
563       if (dev->state & ST_EOF) { /* EOF already read? */
564          dev->state |= ST_EOT;  /* yes, 2 EOFs => EOT */
565          block->read_len = 0;
566          return 0;
567       }
568       dev->file++;              /* increment file */
569       dev->state |= ST_EOF;     /* set EOF read */
570       block->read_len = 0;
571       return 0;                 /* return eof */
572    }
573    /* Continue here for successful read */
574    block->read_len = stat;      /* save length read */
575    if (block->read_len < BLKHDR2_LENGTH) {
576       Mmsg2(&dev->errmsg, _("Very short block of %d bytes on device %s discarded.\n"), 
577          block->read_len, dev->dev_name);
578       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
579       dev->state |= ST_SHORT;   /* set short block */
580       block->read_len = block->binbuf = 0;
581       return 0;                 /* return error */
582    }  
583
584    BlockNumber = block->BlockNumber + 1;
585    if (!unser_block_header(dev, block)) {
586       block->read_len = 0;
587       return 0;
588    }
589
590    /*
591     * If the block is bigger than the buffer, we reposition for
592     *  re-reading the block, allocate a buffer of the correct size,
593     *  and go re-read.
594     */
595    if (block->block_len > block->buf_len) {
596       Mmsg2(&dev->errmsg,  _("Block length %u is greater than buffer %u. Attempting recovery.\n"),
597          block->block_len, block->buf_len);
598       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
599       Pmsg1(000, "%s", dev->errmsg);
600       /* Attempt to reposition to re-read the block */
601       if (dev->state & ST_TAPE) {
602          Dmsg0(100, "Backspace record for reread.\n");
603          if (bsr_dev(dev, 1) != 0) {
604             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
605             block->read_len = 0;
606             return 0;
607          }
608       } else {
609          Dmsg0(100, "Seek to beginning of block for reread.\n");
610          off_t pos = lseek(dev->fd, (off_t)0, SEEK_CUR); /* get curr pos */
611          pos -= block->read_len;
612          lseek(dev->fd, pos, SEEK_SET);   
613       }
614       Mmsg1(&dev->errmsg, _("Setting block buffer size to %u bytes.\n"), block->block_len);
615       Jmsg(jcr, M_INFO, 0, "%s", dev->errmsg);
616       Pmsg1(000, "%s", dev->errmsg);
617       /* Set new block length */
618       dev->max_block_size = block->block_len;
619       block->buf_len = block->block_len;
620       free_memory(block->buf);
621       block->buf = get_memory(block->buf_len);
622       empty_block(block);
623       looping++;
624       goto reread;                    /* re-read block with correct block size */
625    }
626
627    if (block->block_len > block->read_len) {
628       Mmsg2(&dev->errmsg, _("Short block of %d bytes on device %s discarded.\n"), 
629          block->read_len, dev->dev_name);
630       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
631       dev->state |= ST_SHORT;   /* set short block */
632       block->read_len = block->binbuf = 0;
633       return 0;                 /* return error */
634    }  
635
636    dev->state &= ~(ST_EOF|ST_SHORT); /* clear EOF and short block */
637    dev->block_num++;
638    dev->VolCatInfo.VolCatReads++;   
639    dev->VolCatInfo.VolCatRBytes += block->read_len;
640
641    /*
642     * If we read a short block on disk,
643     * seek to beginning of next block. This saves us
644     * from shuffling blocks around in the buffer. Take a
645     * look at this from an efficiency stand point later, but
646     * it should only happen once at the end of each job.
647     *
648     * I've been lseek()ing negative relative to SEEK_CUR for 30
649     *   years now. However, it seems that with the new off_t definition,
650     *   it is not possible to seek negative amounts, so we use two
651     *   lseek(). One to get the position, then the second to do an
652     *   absolute positioning -- so much for efficiency.  KES Sep 02.
653     */
654    Dmsg0(200, "At end of read block\n");
655    if (block->read_len > block->block_len && !(dev->state & ST_TAPE)) {
656       off_t pos = lseek(dev->fd, (off_t)0, SEEK_CUR); /* get curr pos */
657       pos -= (block->read_len - block->block_len);
658       lseek(dev->fd, pos, SEEK_SET);   
659       Dmsg2(100, "Did lseek blk_size=%d rdlen=%d\n", block->block_len,
660             block->read_len);
661    }
662    Dmsg2(200, "Exit read_block read_len=%d block_len=%d\n",
663       block->read_len, block->block_len);
664    block->block_read = true;
665    return 1;
666 }