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