]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/block.c
Implement Device Spool directory and sizes
[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, 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: 0 on failure (not a block)
210  *           1 on success
211  */
212 static int 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          Mmsg2(&dev->errmsg, _("Volume data error! Wanted ID: %s, got %s. Buffer discarded.\n"),
236             BLKHDR1_ID, Id);
237          if (block->read_errors == 0 || verbose >= 2) {
238             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
239          }
240          block->read_errors++;
241          return 0;
242       }
243    } else if (Id[3] == '2') {
244       unser_uint32(block->VolSessionId);
245       unser_uint32(block->VolSessionTime);
246       bhl = BLKHDR2_LENGTH;
247       block->BlockVer = 2;
248       block->bufp = block->buf + bhl;
249       if (strncmp(Id, BLKHDR2_ID, BLKHDR_ID_LENGTH) != 0) {
250          Mmsg2(&dev->errmsg, _("Volume data error! Wanted ID: %s, got %s. Buffer discarded.\n"),
251             BLKHDR2_ID, Id);
252          if (block->read_errors == 0 || verbose >= 2) {
253             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
254          }
255          block->read_errors++;
256          return 0;
257       }
258    } else {
259       Mmsg1(&dev->errmsg, _("Volume data error! Wanted block-id BB02, got %s. Buffer discarded.\n"), Id);
260       if (block->read_errors == 0 || verbose >= 2) {
261          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
262       }
263       block->read_errors++;
264       return 0;
265    }
266
267    /* Sanity check */
268    if (block_len > MAX_BLOCK_LENGTH) {
269       Mmsg1(&dev->errmsg,  _("Volume data error! Block length %u is insane (too large), probably due to a bad archive.\n"),
270          block_len);
271       if (block->read_errors == 0 || verbose >= 2) {
272          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
273       }
274       block->read_errors++;
275       return 0;
276    }
277
278    Dmsg1(190, "unser_block_header block_len=%d\n", block_len);
279    /* Find end of block or end of buffer whichever is smaller */
280    if (block_len > block->read_len) {
281       block_end = block->read_len;
282    } else {
283       block_end = block_len;
284    }
285    block->binbuf = block_end - bhl;
286    block->block_len = block_len;
287    block->BlockNumber = BlockNumber;
288    Dmsg3(190, "Read binbuf = %d %d block_len=%d\n", block->binbuf,
289       bhl, block_len);
290    if (block_len <= block->read_len) {
291       BlockCheckSum = bcrc32((uint8_t *)block->buf+BLKHDR_CS_LENGTH,
292                          block_len-BLKHDR_CS_LENGTH);
293       if (BlockCheckSum != CheckSum) {
294          Mmsg3(&dev->errmsg, _("Volume data error! Block checksum mismatch in block %u: calc=%x blk=%x\n"), 
295             (unsigned)BlockNumber, BlockCheckSum, CheckSum);
296          if (block->read_errors == 0 || verbose >= 2) {
297             Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
298          }
299          block->read_errors++;
300          return 0;
301       }
302    }
303    return 1;
304 }
305
306 /*  
307  * Write a block to the device, with locking and unlocking
308  *
309  * Returns: 1 on success
310  *        : 0 on failure
311  *
312  */
313 int write_block_to_device(DCR *dcr, DEV_BLOCK *block)
314 {
315    int stat = 1;
316    DEVICE *dev = dcr->dev;
317    JCR *jcr = dcr->jcr;
318
319
320    if (dcr->spooling) {
321       stat = write_block_to_spool_file(dcr, block);
322       return stat;
323    }
324
325    if (!dcr->dev_locked) {
326       lock_device(dev);
327    }
328
329    /*
330     * If a new volume has been mounted since our last write
331     *   Create a JobMedia record for the previous volume written,
332     *   and set new parameters to write this volume   
333     * The same applies for if we are in a new file.
334     */
335    if (dcr->NewVol || dcr->NewFile) {
336       /* Create a jobmedia record for this job */
337       if (!dir_create_jobmedia_record(jcr)) {
338          Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
339             jcr->VolCatInfo.VolCatName, jcr->Job);
340          set_new_volume_parameters(jcr, dev);
341          stat = 0;
342          goto bail_out;
343       }
344       if (dcr->NewVol) {
345          /* Note, setting a new volume also handles any pending new file */
346          set_new_volume_parameters(jcr, dev);
347          dcr->NewFile = false;        /* this handled for new file too */
348       } else {
349          set_new_file_parameters(jcr, dev);
350       }
351    }
352
353    if (!write_block_to_dev(dcr, block)) {
354        stat = fixup_device_block_write_error(jcr, dev, block);
355    }
356
357 bail_out:
358    if (!dcr->dev_locked) {
359       unlock_device(dev);
360    }
361    return stat;
362 }
363
364 /*
365  * Write a block to the device 
366  *
367  *  Returns: 1 on success or EOT
368  *           0 on hard error
369  */
370 int write_block_to_dev(DCR *dcr, DEV_BLOCK *block)
371 {
372    ssize_t stat = 0;
373    uint32_t wlen;                     /* length to write */
374    int hit_max1, hit_max2;
375    bool ok;
376    DEVICE *dev = dcr->dev;
377    JCR *jcr = dcr->jcr;
378
379 #ifdef NO_TAPE_WRITE_TEST
380    empty_block(block);
381    return 1;
382 #endif
383    ASSERT(block->binbuf == ((uint32_t) (block->bufp - block->buf)));
384
385    /* dump_block(block, "before write"); */
386    if (dev->state & ST_WEOT) {
387       Dmsg0(100, "return write_block_to_dev with ST_WEOT\n");
388       Jmsg(jcr, M_FATAL, 0,  _("Cannot write block. Device at EOM.\n"));
389       return 0;
390    }
391    wlen = block->binbuf;
392    if (wlen <= WRITE_BLKHDR_LENGTH) {  /* Does block have data in it? */
393       Dmsg0(100, "return write_block_to_dev no data to write\n");
394       return 1;
395    }
396    /* 
397     * Clear to the end of the buffer if it is not full,
398     *  and on tape devices, apply min and fixed blocking.
399     */
400    if (wlen != block->buf_len) {
401       uint32_t blen;                  /* current buffer length */
402
403       Dmsg2(200, "binbuf=%d buf_len=%d\n", block->binbuf, block->buf_len);
404       blen = wlen;
405
406       /* Adjust write size to min/max for tapes only */
407       if (dev->state & ST_TAPE) {
408          if (wlen < dev->min_block_size) {
409             wlen =  ((dev->min_block_size + TAPE_BSIZE - 1) / TAPE_BSIZE) * TAPE_BSIZE;
410          }
411          /* check for fixed block size */
412          if (dev->min_block_size == dev->max_block_size) {
413             wlen = block->buf_len;    /* fixed block size already rounded */
414          }
415       }
416       if (wlen-blen > 0) {
417          memset(block->bufp, 0, wlen-blen); /* clear garbage */
418       }
419    }  
420
421    ser_block_header(block);
422
423    /* Limit maximum Volume size to value specified by user */
424    hit_max1 = (dev->max_volume_size > 0) &&
425        ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->max_volume_size;
426    hit_max2 = (dev->VolCatInfo.VolCatMaxBytes > 0) &&
427        ((dev->VolCatInfo.VolCatBytes + block->binbuf)) >= dev->VolCatInfo.VolCatMaxBytes;
428    if (hit_max1 || hit_max2) {   
429       char ed1[50];
430       uint64_t max_cap;
431       Dmsg0(10, "==== Output bytes Triggered medium max capacity.\n");
432       if (hit_max1) {
433          max_cap = dev->max_volume_size;
434       } else {
435          max_cap = dev->VolCatInfo.VolCatMaxBytes;
436       }
437       Jmsg(jcr, M_INFO, 0, _("User defined maximum volume capacity %s exceeded on device %s.\n"),
438             edit_uint64_with_commas(max_cap, ed1),  dev->dev_name);
439       block->write_failed = true;
440       if (weof_dev(dev, 1) != 0) {            /* end tape */
441          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
442          dev->VolCatInfo.VolCatErrors++;
443       }
444       /* Don't do update after second EOF or file count will be wrong */
445       Dmsg0(100, "dir_update_volume_info\n");
446       dev->VolCatInfo.VolCatFiles = dev->file;
447       dir_update_volume_info(jcr, dev, 0);
448       if (dev_cap(dev, CAP_TWOEOF) && weof_dev(dev, 1) != 0) {  /* write eof */
449          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
450          dev->VolCatInfo.VolCatErrors++;
451       }
452       dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
453       return 0;   
454    }
455
456    /* Limit maximum File size on volume to user specified value */
457    if ((dev->max_file_size > 0) && 
458        (dev->file_size+block->binbuf) >= dev->max_file_size) {
459
460       if (dev_state(dev, ST_TAPE) && weof_dev(dev, 1) != 0) {            /* write eof */
461          /* Write EOF */
462          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
463          block->write_failed = true;
464          dev->VolCatInfo.VolCatErrors++;
465          dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
466          Dmsg0(100, "dir_update_volume_info\n");
467          dev->VolCatInfo.VolCatFiles = dev->file;
468          dir_update_volume_info(jcr, dev, 0);
469          return 0;   
470       }
471
472       /* Create a JobMedia record so restore can seek */
473       Dmsg0(100, "dir_update_volume_info\n");
474       dev->VolCatInfo.VolCatFiles = dev->file;
475       dir_update_volume_info(jcr, dev, 0);
476       if (!dir_create_jobmedia_record(jcr)) {
477           Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
478                dcr->VolCatInfo.VolCatName, jcr->Job);
479           return 0;
480       }
481       dev->file_size = 0;             /* reset file size */
482       /* 
483        * Walk through all attached jcrs indicating the file has changed   
484        */
485       Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
486       for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
487          if (mjcr->JobId == 0) {
488             continue;                 /* ignore console */
489          }
490          mjcr->dcr->NewFile = true;   /* set reminder to do set_new_file_params */
491       }
492       set_new_file_parameters(jcr, dev);
493    }
494
495    dev->VolCatInfo.VolCatWrites++;
496    Dmsg1(300, "Write block of %u bytes\n", wlen);      
497    stat = write(dev->fd, block->buf, (size_t)wlen);
498    if (stat != (ssize_t)wlen) {
499       /* We should check for errno == ENOSPC, BUT many 
500        * devices simply report EIO when the volume is full.
501        * With a little more thought we may be able to check
502        * capacity and distinguish real errors and EOT
503        * conditions.  In any case, we probably want to
504        * simulate an End of Medium.
505        */
506       if (stat == -1) {
507          /* I have added the ifdefing here because it appears on
508           * FreeBSD where MTIOCERRSTAT is defined, this not only
509           * clears the error but clears the residual unwritten
510           * buffers -> data loss. As a consequence, on those
511           * systems (FreeBSD like), do the clrerror() only after
512           * the weof_dev() call.
513           */
514          clrerror_dev(dev, -1);
515          if (dev->dev_errno == 0) {
516             dev->dev_errno = ENOSPC;        /* out of space */
517          }
518          Jmsg(jcr, M_ERROR, 0, _("Write error at %u:%u on device %s. ERR=%s.\n"), 
519             dev->file, dev->block_num, dev->dev_name, strerror(dev->dev_errno));
520       } else {
521         dev->dev_errno = ENOSPC;            /* out of space */
522          Jmsg(jcr, M_INFO, 0, _("End of medium at %u:%u on device %s. Write of %u bytes got %d.\n"), 
523             dev->file, dev->block_num, dev->dev_name, wlen, stat);
524       }  
525
526       Dmsg6(100, "=== Write error. size=%u rtn=%d dev_blk=%d blk_blk=%d errno=%d: ERR=%s\n", 
527          wlen, stat, dev->block_num, block->BlockNumber, dev->dev_errno, strerror(dev->dev_errno));
528
529       block->write_failed = true;
530       if (weof_dev(dev, 1) != 0) {         /* end the tape */
531          dev->VolCatInfo.VolCatErrors++;
532          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
533       }
534       Dmsg0(100, "dir_update_volume_info\n");
535       dev->VolCatInfo.VolCatFiles = dev->file;
536       dir_update_volume_info(jcr, dev, 0);
537       if (dev_cap(dev, CAP_TWOEOF) && weof_dev(dev, 1) != 0) {  /* end the tape */
538          dev->VolCatInfo.VolCatErrors++;
539          Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
540       }
541       dev->state |= (ST_EOF | ST_EOT | ST_WEOT);
542         
543       ok = true;
544 #define CHECK_LAST_BLOCK
545 #ifdef  CHECK_LAST_BLOCK
546       /* 
547        * If the device is a tape and it supports backspace record,
548        *   we backspace over one or two eof marks depending on 
549        *   how many we just wrote, then over the last record,
550        *   then re-read it and verify that the block number is
551        *   correct.
552        */
553       if (dev->state & ST_TAPE && dev_cap(dev, CAP_BSR)) {
554
555          /* Now back up over what we wrote and read the last block */
556          if (!bsf_dev(dev, 1)) {
557             ok = false;
558             Jmsg(jcr, M_ERROR, 0, _("Backspace file at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
559          }
560          if (ok && dev_cap(dev, CAP_TWOEOF) && !bsf_dev(dev, 1)) {
561             ok = false;
562             Jmsg(jcr, M_ERROR, 0, _("Backspace file at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
563          }
564          /* Backspace over record */
565          if (ok && !bsr_dev(dev, 1)) {
566             ok = false;
567             Jmsg(jcr, M_ERROR, 0, _("Backspace record at EOT failed. ERR=%s\n"), strerror(dev->dev_errno));
568             /*
569              *  On FreeBSD systems, if the user got here, it is likely that his/her
570              *    tape drive is "frozen".  The correct thing to do is a 
571              *    rewind(), but if we do that, higher levels in cleaning up, will
572              *    most likely write the EOS record over the beginning of the
573              *    tape.  The rewind *is* done later in mount.c when another
574              *    tape is requested. Note, the clrerror_dev() call in bsr_dev()
575              *    calls ioctl(MTCERRSTAT), which *should* fix the problem.
576              */
577          }
578          if (ok) {
579             DEV_BLOCK *lblock = new_block(dev);
580             /* Note, this can destroy dev->errmsg */
581             if (!read_block_from_dev(jcr, dev, lblock, NO_BLOCK_NUMBER_CHECK)) {
582                Jmsg(jcr, M_ERROR, 0, _("Re-read last block at EOT failed. ERR=%s"), dev->errmsg);
583             } else {
584                if (lblock->BlockNumber+1 == block->BlockNumber) {
585                   Jmsg(jcr, M_INFO, 0, _("Re-read of last block succeeded.\n"));
586                } else {
587                   Jmsg(jcr, M_ERROR, 0, _(
588 "Re-read of last block failed. Last block=%u Current block=%u.\n"),
589                        lblock->BlockNumber, block->BlockNumber);
590                }
591             }
592             free_block(lblock);
593          }
594       }
595 #endif
596       return 0;
597    }
598
599    /* We successfully wrote the block, now do housekeeping */
600
601    dev->VolCatInfo.VolCatBytes += block->binbuf;
602    dev->VolCatInfo.VolCatBlocks++;   
603    dev->EndBlock = dev->block_num;
604    dev->EndFile  = dev->file;
605    dev->block_num++;
606    block->BlockNumber++;
607
608    /* Update jcr values */
609    if (dev_state(dev, ST_TAPE)) {
610       dcr->EndBlock = dev->EndBlock;
611       dcr->EndFile  = dev->EndFile;
612    } else {
613       /* Save address of start of block just written */
614       dcr->EndBlock = (uint32_t)dev->file_addr;
615       dcr->EndFile = (uint32_t)(dev->file_addr >> 32);
616    }
617    if (dcr->VolFirstIndex == 0 && block->FirstIndex > 0) {
618       dcr->VolFirstIndex = block->FirstIndex;
619    }
620    if (block->LastIndex > 0) {
621       dcr->VolLastIndex = block->LastIndex;
622    }
623    dcr->WroteVol = true;
624    dev->file_addr += wlen;            /* update file address */
625    dev->file_size += wlen;
626
627    Dmsg2(190, "write_block: wrote block %d bytes=%d\n", dev->block_num,
628       wlen);
629    empty_block(block);
630    return 1;
631 }
632
633 /*  
634  * Read block with locking
635  *
636  */
637 int read_block_from_device(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, bool check_block_numbers)
638 {
639    int stat;
640    Dmsg0(90, "Enter read_block_from_device\n");
641    lock_device(dev);
642    stat = read_block_from_dev(jcr, dev, block, check_block_numbers);
643    unlock_device(dev);
644    Dmsg0(90, "Leave read_block_from_device\n");
645    return stat;
646 }
647
648 /*
649  * Read the next block into the block structure and unserialize
650  *  the block header.  For a file, the block may be partially
651  *  or completely in the current buffer.
652  */
653 int read_block_from_dev(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, bool check_block_numbers)
654 {
655    ssize_t stat;
656    int looping;
657    uint32_t BlockNumber;
658    int retry;
659    DCR *dcr = jcr->dcr;
660
661    if (dev_state(dev, ST_EOT)) {
662       return 0;
663    }
664    looping = 0;
665    Dmsg1(100, "Full read() in read_block_from_device() len=%d\n",
666          block->buf_len);
667 reread:
668    if (looping > 1) {
669       Mmsg1(&dev->errmsg, _("Block buffer size looping problem on device %s\n"),
670          dev->dev_name);
671       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
672       block->read_len = 0;
673       return 0;
674    }
675    retry = 0;
676    do {
677       stat = read(dev->fd, block->buf, (size_t)block->buf_len);
678       if (retry == 1) {
679          dev->VolCatInfo.VolCatErrors++;   
680       }
681    } while (stat == -1 && (errno == EINTR || errno == EIO) && retry++ < 11);
682 // Dmsg1(100, "read stat = %d\n", stat);
683    if (stat < 0) {
684       Dmsg1(90, "Read device got: ERR=%s\n", strerror(errno));
685       clrerror_dev(dev, -1);
686       block->read_len = 0;
687       Mmsg4(&dev->errmsg, _("Read error at file:block %d:%d on device %s. ERR=%s.\n"), 
688          dev->file, dev->block_num, dev->dev_name, strerror(dev->dev_errno));
689       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
690       if (dev->state & ST_EOF) {  /* EOF just seen? */
691          dev->state |= ST_EOT;    /* yes, error => EOT */
692       }
693       return 0;
694    }
695    Dmsg1(90, "Read device got %d bytes\n", stat);
696    if (stat == 0) {             /* Got EOF ! */
697       dev->block_num = block->read_len = 0;
698       Mmsg1(&dev->errmsg, _("Read zero bytes on device %s.\n"), dev->dev_name);
699       if (dev->state & ST_EOF) { /* EOF already read? */
700          dev->state |= ST_EOT;  /* yes, 2 EOFs => EOT */
701          block->read_len = 0;
702          return 0;
703       }
704       dev->file++;              /* increment file */
705       dev->state |= ST_EOF;     /* set EOF read */
706       block->read_len = 0;
707       return 0;                 /* return eof */
708    }
709    /* Continue here for successful read */
710    block->read_len = stat;      /* save length read */
711    if (block->read_len < BLKHDR2_LENGTH) {
712       Mmsg2(&dev->errmsg, _("Volume data error! Very short block of %d bytes on device %s discarded.\n"), 
713          block->read_len, dev->dev_name);
714       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
715       dev->state |= ST_SHORT;   /* set short block */
716       block->read_len = block->binbuf = 0;
717       return 0;                 /* return error */
718    }  
719
720    BlockNumber = block->BlockNumber + 1;
721    if (!unser_block_header(jcr, dev, block)) {
722       block->read_len = 0;
723       return 0;
724    }
725
726    /*
727     * If the block is bigger than the buffer, we reposition for
728     *  re-reading the block, allocate a buffer of the correct size,
729     *  and go re-read.
730     */
731    if (block->block_len > block->buf_len) {
732       Mmsg2(&dev->errmsg,  _("Block length %u is greater than buffer %u. Attempting recovery.\n"),
733          block->block_len, block->buf_len);
734       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
735       Pmsg1(000, "%s", dev->errmsg);
736       /* Attempt to reposition to re-read the block */
737       if (dev->state & ST_TAPE) {
738          Dmsg0(100, "Backspace record for reread.\n");
739          if (!bsr_dev(dev, 1)) {
740             Jmsg(jcr, M_ERROR, 0, "%s", strerror_dev(dev));
741             block->read_len = 0;
742             return 0;
743          }
744       } else {
745          Dmsg0(100, "Seek to beginning of block for reread.\n");
746          off_t pos = lseek(dev->fd, (off_t)0, SEEK_CUR); /* get curr pos */
747          pos -= block->read_len;
748          lseek(dev->fd, pos, SEEK_SET);   
749          dev->file_addr = pos;
750       }
751       Mmsg1(&dev->errmsg, _("Setting block buffer size to %u bytes.\n"), block->block_len);
752       Jmsg(jcr, M_INFO, 0, "%s", dev->errmsg);
753       Pmsg1(000, "%s", dev->errmsg);
754       /* Set new block length */
755       dev->max_block_size = block->block_len;
756       block->buf_len = block->block_len;
757       free_memory(block->buf);
758       block->buf = get_memory(block->buf_len);
759       empty_block(block);
760       looping++;
761       goto reread;                    /* re-read block with correct block size */
762    }
763
764    if (block->block_len > block->read_len) {
765       Mmsg3(&dev->errmsg, _("Volume data error! Short block at %u of %d bytes on device %s discarded.\n"), 
766          dev->block_num, block->read_len, dev->dev_name);
767       Jmsg(jcr, M_ERROR, 0, "%s", dev->errmsg);
768       dev->state |= ST_SHORT;   /* set short block */
769       block->read_len = block->binbuf = 0;
770       return 0;                 /* return error */
771    }  
772
773    dev->state &= ~(ST_EOF|ST_SHORT); /* clear EOF and short block */
774    dev->VolCatInfo.VolCatReads++;   
775    dev->VolCatInfo.VolCatRBytes += block->read_len;
776
777    dev->VolCatInfo.VolCatBytes += block->block_len;
778    dev->VolCatInfo.VolCatBlocks++;   
779    dev->EndBlock = dev->block_num;
780    dev->EndFile  = dev->file;
781    dev->block_num++;
782
783    /* Update jcr values */
784    if (dev->state & ST_TAPE) {
785       dcr->EndBlock = dev->EndBlock;
786       dcr->EndFile  = dev->EndFile;
787    } else {
788       dcr->EndBlock = (uint32_t)dev->file_addr;
789       dcr->EndFile = (uint32_t)(dev->file_addr >> 32);
790       dev->block_num = dcr->EndBlock;
791       dev->file = dcr->EndFile;
792    }
793    dev->file_addr += block->block_len;
794    dev->file_size += block->block_len;
795
796    /*
797     * If we read a short block on disk,
798     * seek to beginning of next block. This saves us
799     * from shuffling blocks around in the buffer. Take a
800     * look at this from an efficiency stand point later, but
801     * it should only happen once at the end of each job.
802     *
803     * I've been lseek()ing negative relative to SEEK_CUR for 30
804     *   years now. However, it seems that with the new off_t definition,
805     *   it is not possible to seek negative amounts, so we use two
806     *   lseek(). One to get the position, then the second to do an
807     *   absolute positioning -- so much for efficiency.  KES Sep 02.
808     */
809    Dmsg0(200, "At end of read block\n");
810    if (block->read_len > block->block_len && !(dev->state & ST_TAPE)) {
811       off_t pos = lseek(dev->fd, (off_t)0, SEEK_CUR); /* get curr pos */
812       pos -= (block->read_len - block->block_len);
813       lseek(dev->fd, pos, SEEK_SET);   
814       Dmsg2(100, "Did lseek blk_size=%d rdlen=%d\n", block->block_len,
815             block->read_len);
816       dev->file_addr = pos;
817    }
818    Dmsg2(200, "Exit read_block read_len=%d block_len=%d\n",
819       block->read_len, block->block_len);
820    block->block_read = true;
821    return 1;
822 }