]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/backup.c
- Fix cancel bug in FD on /lib/tls with zero pid in
[bacula/bacula] / bacula / src / filed / backup.c
1 /*
2  *  Bacula File Daemon  backup.c  send file attributes and data
3  *   to the Storage daemon.
4  *
5  *    Kern Sibbald, March MM
6  *
7  *   Version $Id$
8  *
9  */
10 /*
11    Copyright (C) 2000-2004 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "filed.h"
32
33 #ifdef HAVE_ACL
34 #include <sys/acl.h>
35 #include <acl/libacl.h>
36 #endif
37
38 static int save_file(FF_PKT *ff_pkt, void *pkt);
39
40 /* 
41  * Find all the requested files and send them
42  * to the Storage daemon. 
43  *
44  * Note, we normally carry on a one-way
45  * conversation from this point on with the SD, simply blasting
46  * data to him.  To properly know what is going on, we
47  * also run a "heartbeat" monitor which reads the socket and
48  * reacts accordingly (at the moment it has nothing to do
49  * except echo the heartbeat to the Director).
50  * 
51  */
52 bool blast_data_to_storage_daemon(JCR *jcr, char *addr) 
53 {
54    BSOCK *sd;
55    bool ok = true;
56
57    sd = jcr->store_bsock;
58
59    set_jcr_job_status(jcr, JS_Running);
60
61    Dmsg1(300, "bfiled: opened data connection %d to stored\n", sd->fd);
62
63    LockRes();
64    CLIENT *client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
65    UnlockRes();
66    uint32_t buf_size;
67    if (client) {
68       buf_size = client->max_network_buffer_size;
69    } else {
70       buf_size = 0;                   /* use default */
71    }
72    if (!bnet_set_buffer_size(sd, buf_size, BNET_SETBUF_WRITE)) {
73       set_jcr_job_status(jcr, JS_ErrorTerminated);
74       Jmsg(jcr, M_FATAL, 0, _("Cannot set buffer size FD->SD.\n"));
75       return false;
76    }
77
78    jcr->buf_size = sd->msglen;             
79    /* Adjust for compression so that output buffer is
80     * 12 bytes + 0.1% larger than input buffer plus 18 bytes.
81     * This gives a bit extra plus room for the sparse addr if any.
82     * Note, we adjust the read size to be smaller so that the
83     * same output buffer can be used without growing it.
84     */
85    jcr->compress_buf_size = jcr->buf_size + ((jcr->buf_size+999) / 1000) + 30;
86    jcr->compress_buf = get_memory(jcr->compress_buf_size);
87
88    Dmsg1(300, "set_find_options ff=%p\n", jcr->ff);
89    set_find_options((FF_PKT *)jcr->ff, jcr->incremental, jcr->mtime);
90    Dmsg0(300, "start find files\n");
91
92    start_heartbeat_monitor(jcr);
93
94    /* Subroutine save_file() is called for each file */
95    if (!find_files(jcr, (FF_PKT *)jcr->ff, save_file, (void *)jcr)) {
96       ok = false;                     /* error */
97       set_jcr_job_status(jcr, JS_ErrorTerminated);
98 //    Jmsg(jcr, M_FATAL, 0, _("Find files error.\n"));
99    }
100
101    stop_heartbeat_monitor(jcr);
102
103    bnet_sig(sd, BNET_EOD);            /* end data connection */
104
105    if (jcr->big_buf) {
106       free(jcr->big_buf);
107       jcr->big_buf = NULL;
108    }
109    if (jcr->compress_buf) {
110       free_pool_memory(jcr->compress_buf);
111       jcr->compress_buf = NULL;
112    }
113    Dmsg1(300, "end blast_data stat=%d\n", ok);
114    return ok;
115 }          
116
117 /* 
118  * Called here by find() for each file included.
119  *
120  *  *****FIXME*****   add FSMs File System Modules
121  *
122  *  Send the file and its data to the Storage daemon.
123  *
124  *  Returns: 1 if OK
125  *           0 if error
126  *          -1 to ignore file/directory (not used here)
127  */
128 static int save_file(FF_PKT *ff_pkt, void *vjcr)
129 {
130    char attribs[MAXSTRING];
131    char attribsEx[MAXSTRING];
132    int stat, attr_stream, data_stream;
133    struct MD5Context md5c;
134    struct SHA1Context sha1c;
135    int gotMD5 = 0;
136    int gotSHA1 = 0;
137    unsigned char signature[30];       /* large enough for either signature */
138    BSOCK *sd;
139    JCR *jcr = (JCR *)vjcr;
140    POOLMEM *msgsave;
141
142    if (job_canceled(jcr)) {
143       return 0;
144    }
145
146    sd = jcr->store_bsock;
147    jcr->num_files_examined++;         /* bump total file count */
148
149    switch (ff_pkt->type) {
150    case FT_LNKSAVED:                  /* Hard linked, file already saved */
151       Dmsg2(130, "FT_LNKSAVED hard link: %s => %s\n", ff_pkt->fname, ff_pkt->link);
152       break;
153    case FT_REGE:
154       Dmsg1(130, "FT_REGE saving: %s\n", ff_pkt->fname);
155       break;
156    case FT_REG:
157       Dmsg1(130, "FT_REG saving: %s\n", ff_pkt->fname);
158       break;
159    case FT_LNK:
160       Dmsg2(130, "FT_LNK saving: %s -> %s\n", ff_pkt->fname, ff_pkt->link);
161       break;
162    case FT_DIRBEGIN:
163       return 1;                       /* not used */
164    case FT_DIREND:
165       Dmsg1(130, "FT_DIR saving: %s\n", ff_pkt->link);
166       break;
167    case FT_SPEC:
168       Dmsg1(130, "FT_SPEC saving: %s\n", ff_pkt->fname);
169       break;
170    case FT_RAW:
171       Dmsg1(130, "FT_RAW saving: %s\n", ff_pkt->fname);
172       break;
173    case FT_FIFO:
174       Dmsg1(130, "FT_FIFO saving: %s\n", ff_pkt->fname);
175       break;
176    case FT_NOACCESS: {
177       berrno be;
178       be.set_errno(ff_pkt->ff_errno);
179       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not access %s: ERR=%s\n"), ff_pkt->fname, 
180          be.strerror());
181       jcr->Errors++;
182       return 1;
183    }
184    case FT_NOFOLLOW: {
185       berrno be;
186       be.set_errno(ff_pkt->ff_errno);
187       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not follow link %s: ERR=%s\n"), ff_pkt->fname, 
188          be.strerror());
189       jcr->Errors++;
190       return 1;
191    }
192    case FT_NOSTAT: {
193       berrno be;
194       be.set_errno(ff_pkt->ff_errno);
195       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not stat %s: ERR=%s\n"), ff_pkt->fname, 
196          be.strerror());
197       jcr->Errors++;
198       return 1;
199    }
200    case FT_DIRNOCHG:
201    case FT_NOCHG:
202       Jmsg(jcr, M_SKIPPED, 1, _("     Unchanged file skipped: %s\n"), ff_pkt->fname);
203       return 1;
204    case FT_ISARCH:
205       Jmsg(jcr, M_NOTSAVED, 0, _("     Archive file not saved: %s\n"), ff_pkt->fname);
206       return 1;
207    case FT_NORECURSE:
208       Jmsg(jcr, M_SKIPPED, 1, _("     Recursion turned off. Directory skipped: %s\n"), 
209          ff_pkt->fname);
210       return 1;
211    case FT_NOFSCHG:
212       Jmsg(jcr, M_SKIPPED, 1, _("     File system change prohibited. Directory skipped. %s\n"), 
213          ff_pkt->fname);
214       return 1;
215    case FT_NOOPEN: {
216       berrno be;
217       be.set_errno(ff_pkt->ff_errno);
218       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not open directory %s: ERR=%s\n"), ff_pkt->fname, 
219          be.strerror());
220       jcr->Errors++;
221       return 1;
222    }
223    default:
224       Jmsg(jcr, M_NOTSAVED, 0,  _("     Unknown file type %d; not saved: %s\n"), ff_pkt->type, ff_pkt->fname);
225       jcr->Errors++;
226       return 1;
227    }
228
229    binit(&ff_pkt->bfd);
230    if (ff_pkt->flags & FO_PORTABLE) {
231       set_portable_backup(&ff_pkt->bfd); /* disable Win32 BackupRead() */
232    }
233    if (ff_pkt->reader) {
234       set_prog(&ff_pkt->bfd, ff_pkt->reader, jcr);
235    }
236
237    /* 
238     * Open any file with data that we intend to save.  
239     * Note, if is_win32_backup, we must open the Directory so that
240     * the BackupRead will save its permissions and ownership streams.
241     */
242    if (ff_pkt->type != FT_LNKSAVED && (S_ISREG(ff_pkt->statp.st_mode) && 
243          ff_pkt->statp.st_size > 0) || 
244          ff_pkt->type == FT_RAW || ff_pkt->type == FT_FIFO ||
245          (!is_portable_backup(&ff_pkt->bfd) && ff_pkt->type == FT_DIREND)) {
246       btimer_t *tid;    
247       if (ff_pkt->type == FT_FIFO) {
248          tid = start_thread_timer(pthread_self(), 60);
249       } else {
250          tid = NULL;
251       }
252       if (bopen(&ff_pkt->bfd, ff_pkt->fname, O_RDONLY | O_BINARY, 0) < 0) {
253          ff_pkt->ff_errno = errno;
254          berrno be;
255          Jmsg(jcr, M_NOTSAVED, 0, _("     Cannot open %s: ERR=%s.\n"), ff_pkt->fname, 
256               be.strerror());
257          jcr->Errors++;
258          if (tid) {
259             stop_thread_timer(tid);
260             tid = NULL;
261          }
262          return 1;
263       }
264       if (tid) {
265          stop_thread_timer(tid);
266          tid = NULL;
267       }
268    }
269
270    Dmsg1(130, "bfiled: sending %s to stored\n", ff_pkt->fname);
271
272    /* Find what data stream we will use, then encode the attributes */
273    data_stream = select_data_stream(ff_pkt);
274    encode_stat(attribs, ff_pkt, data_stream);
275
276    /* Now possibly extend the attributes */
277    attr_stream = encode_attribsEx(jcr, attribsEx, ff_pkt);
278
279    Dmsg3(300, "File %s\nattribs=%s\nattribsEx=%s\n", ff_pkt->fname, attribs, attribsEx);
280      
281    P(jcr->mutex);
282    jcr->JobFiles++;                    /* increment number of files sent */
283    ff_pkt->FileIndex = jcr->JobFiles;  /* return FileIndex */
284    pm_strcpy(jcr->last_fname, ff_pkt->fname);
285    V(jcr->mutex);
286     
287    /*
288     * Send Attributes header to Storage daemon
289     *    <file-index> <stream> <info>
290     */
291    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, attr_stream)) {
292       berrno be;
293       if (is_bopen(&ff_pkt->bfd)) {
294          bclose(&ff_pkt->bfd);
295       }
296       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
297             bnet_strerror(sd));
298       return 0;
299    }
300    Dmsg1(300, ">stored: attrhdr %s\n", sd->msg);
301
302    /*
303     * Send file attributes to Storage daemon
304     *   File_index
305     *   File type
306     *   Filename (full path)
307     *   Encoded attributes
308     *   Link name (if type==FT_LNK or FT_LNKSAVED)
309     *   Encoded extended-attributes (for Win32)
310     *
311     * For a directory, link is the same as fname, but with trailing
312     * slash. For a linked file, link is the link.
313     */
314    if (ff_pkt->type == FT_LNK || ff_pkt->type == FT_LNKSAVED) {
315       Dmsg2(300, "Link %s to %s\n", ff_pkt->fname, ff_pkt->link);
316       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%s%c%s%c", jcr->JobFiles, 
317                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, ff_pkt->link, 0,
318                attribsEx, 0);
319    } else if (ff_pkt->type == FT_DIREND) {
320       /* Here link is the canonical filename (i.e. with trailing slash) */
321       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
322                ff_pkt->type, ff_pkt->link, 0, attribs, 0, 0, attribsEx, 0);
323    } else {
324       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles, 
325                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, 0, attribsEx, 0);
326    }
327
328    Dmsg2(300, ">stored: attr len=%d: %s\n", sd->msglen, sd->msg);
329    if (!stat) {
330       berrno be;
331       if (is_bopen(&ff_pkt->bfd)) {
332          bclose(&ff_pkt->bfd);
333       }
334       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
335             bnet_strerror(sd));
336       return 0;
337    }
338    bnet_sig(sd, BNET_EOD);            /* indicate end of attributes data */
339
340    /* 
341     * If the file has data, read it and send to the Storage daemon
342     *
343     */
344    if (is_bopen(&ff_pkt->bfd)) {
345       uint64_t fileAddr = 0;          /* file address */
346       char *rbuf, *wbuf;
347       int rsize = jcr->buf_size;      /* read buffer size */
348
349       msgsave = sd->msg;
350       rbuf = sd->msg;                 /* read buffer */             
351       wbuf = sd->msg;                 /* write buffer */
352
353
354       Dmsg1(300, "Saving data, type=%d\n", ff_pkt->type);
355
356
357 #ifdef HAVE_LIBZ
358       uLong compress_len, max_compress_len = 0;
359       const Bytef *cbuf = NULL;
360
361       if (ff_pkt->flags & FO_GZIP) {
362          if (ff_pkt->flags & FO_SPARSE) {
363             cbuf = (Bytef *)jcr->compress_buf + SPARSE_FADDR_SIZE;
364             max_compress_len = jcr->compress_buf_size - SPARSE_FADDR_SIZE;
365          } else {
366             cbuf = (Bytef *)jcr->compress_buf;
367             max_compress_len = jcr->compress_buf_size; /* set max length */
368          }
369          wbuf = jcr->compress_buf;    /* compressed output here */
370       }
371 #endif
372
373       /*
374        * Send Data header to Storage daemon
375        *    <file-index> <stream> <info>
376        */
377       if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, data_stream)) {
378          berrno be;
379          bclose(&ff_pkt->bfd);
380          Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
381                bnet_strerror(sd));
382          return 0;
383       }
384       Dmsg1(300, ">stored: datahdr %s\n", sd->msg);
385
386       if (ff_pkt->flags & FO_MD5) {
387          MD5Init(&md5c);
388       } else if (ff_pkt->flags & FO_SHA1) {
389          SHA1Init(&sha1c);
390       }
391
392       /*
393        * Make space at beginning of buffer for fileAddr because this
394        *   same buffer will be used for writing if compression if off. 
395        */
396       if (ff_pkt->flags & FO_SPARSE) {
397          rbuf += SPARSE_FADDR_SIZE;
398          rsize -= SPARSE_FADDR_SIZE;
399 #ifdef HAVE_FREEBSD_OS
400          /* 
401           * To read FreeBSD partitions, the read size must be
402           *  a multiple of 512.
403           */
404          rsize = (rsize/512) * 512;
405 #endif
406       }
407
408       /* 
409        * Read the file data
410        */
411       while ((sd->msglen=(uint32_t)bread(&ff_pkt->bfd, rbuf, rsize)) > 0) {
412          int sparseBlock = 0;
413
414          /* Check for sparse blocks */
415          if (ff_pkt->flags & FO_SPARSE) {
416             ser_declare;
417             if (sd->msglen == rsize && 
418                 (fileAddr+sd->msglen < (uint64_t)ff_pkt->statp.st_size)) {
419                sparseBlock = is_buf_zero(rbuf, rsize);
420             }
421                
422             ser_begin(wbuf, SPARSE_FADDR_SIZE);
423             ser_uint64(fileAddr);     /* store fileAddr in begin of buffer */
424          } 
425
426          jcr->ReadBytes += sd->msglen;      /* count bytes read */
427          fileAddr += sd->msglen;
428
429          /* Update MD5 if requested */
430          if (ff_pkt->flags & FO_MD5) {
431             MD5Update(&md5c, (unsigned char *)rbuf, sd->msglen);
432             gotMD5 = 1;
433          } else if (ff_pkt->flags & FO_SHA1) {
434             SHA1Update(&sha1c, (unsigned char *)rbuf, sd->msglen);
435             gotSHA1 = 1;
436          }
437
438 #ifdef HAVE_LIBZ
439          /* Do compression if turned on */
440          if (!sparseBlock && ff_pkt->flags & FO_GZIP) {
441             int zstat;
442             compress_len = max_compress_len;
443             Dmsg4(400, "cbuf=0x%x len=%u rbuf=0x%x len=%u\n", cbuf, compress_len,
444                rbuf, sd->msglen);
445             /* NOTE! This call modifies compress_len !!! */
446             if ((zstat=compress2((Bytef *)cbuf, &compress_len, 
447                   (const Bytef *)rbuf, (uLong)sd->msglen,
448                   ff_pkt->GZIP_level)) != Z_OK) {
449                Jmsg(jcr, M_FATAL, 0, _("Compression error: %d\n"), zstat);
450                sd->msg = msgsave;
451                sd->msglen = 0;
452                bclose(&ff_pkt->bfd);
453                set_jcr_job_status(jcr, JS_ErrorTerminated);
454                return 0;
455             }
456             Dmsg2(400, "compressed len=%d uncompressed len=%d\n", 
457                compress_len, sd->msglen);
458
459             sd->msglen = compress_len;   /* set compressed length */
460          }
461 #endif
462
463          /* Send the buffer to the Storage daemon */
464          if (!sparseBlock) {
465             if (ff_pkt->flags & FO_SPARSE) {
466                sd->msglen += SPARSE_FADDR_SIZE; /* include fileAddr in size */
467             }
468             sd->msg = wbuf;           /* set correct write buffer */
469             if (!bnet_send(sd)) {
470                berrno be;
471                Jmsg2(jcr, M_FATAL, 0, _("Network send error %d to SD. ERR=%s\n"),
472                      sd->msglen, bnet_strerror(sd));
473                sd->msg = msgsave;     /* restore bnet buffer */
474                sd->msglen = 0;
475                bclose(&ff_pkt->bfd);
476                return 0;
477             }
478          }
479          Dmsg1(130, "Send data to SD len=%d\n", sd->msglen);
480          /*       #endif */
481          jcr->JobBytes += sd->msglen;   /* count bytes saved possibly compressed */
482          sd->msg = msgsave;             /* restore read buffer */
483
484       } /* end while read file data */
485
486
487       if (sd->msglen < 0) {
488          berrno be;
489          be.set_errno(ff_pkt->bfd.berrno);
490          Jmsg(jcr, M_ERROR, 0, _("Read error on file %s. ERR=%s\n"),
491             ff_pkt->fname, be.strerror());
492       }
493
494       bclose(&ff_pkt->bfd);              /* close file */
495       if (!bnet_sig(sd, BNET_EOD)) {     /* indicate end of file data */
496          berrno be;
497          Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
498                bnet_strerror(sd));
499          return 0;
500       }
501    }
502    
503 #ifdef HAVE_ACL
504    /* ACL stream */
505    if (ff_pkt->flags & FO_ACL) {
506       char *acl_text;
507       /* Read ACLs for files, dirs and links */
508       if (ff_pkt->type == FT_DIREND) {
509          /* Directory: Try for default ACL*/
510          acl_t myAcl = acl_get_file(ff_pkt->fname, ACL_TYPE_DEFAULT);
511          if (!myAcl) {
512             Dmsg1(200, "No default ACL defined for directory: %s!\n", ff_pkt->fname);
513             /* If there is no default ACL get standard ACL */
514             myAcl = acl_get_file(ff_pkt->fname, ACL_TYPE_ACCESS);
515             if (!myAcl) {
516                Jmsg1(jcr, M_WARNING, 0, "Error while trying to get ACL of directory: %s!\n", ff_pkt->fname);
517             }
518          }
519          acl_text = acl_to_any_text(myAcl, NULL, ',', TEXT_ABBREVIATE);
520          /* Free memory */
521          acl_free(myAcl);
522       } else {
523          /* Files or links */
524          acl_t myAcl = acl_get_file(ff_pkt->fname, ACL_TYPE_ACCESS);
525          if (!myAcl) {
526             Jmsg1(jcr, M_WARNING, 0, "Error while trying to get ACL of file: %s!\n", ff_pkt->fname);
527             acl_free(myAcl);
528          }
529          acl_text = acl_to_any_text(myAcl, NULL, ',', TEXT_ABBREVIATE);
530          acl_free(myAcl);
531       }
532       
533       /* If there is an ACL, send it to the Storage daemon */
534       if (acl_text) {
535          sd = jcr->store_bsock;
536          pm_strcpy(&jcr->last_fname, ff_pkt->fname);
537       
538          /*
539          * Send ACL header
540          *
541          */
542          if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_UNIX_ATTRIBUTES_ACL)) {
543             berrno be;
544             Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
545                   bnet_strerror(sd));
546             return 0;
547          }
548       
549          /* Send the buffer to the storage deamon */
550          msgsave = sd->msg;
551          sd->msg = acl_text;
552          sd->msglen = strlen(acl_text) + 1;
553          if (!bnet_send(sd)) {
554             berrno be;
555             sd->msg = msgsave;
556             sd->msglen = 0;
557             bclose(&ff_pkt->bfd);
558             Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
559                   bnet_strerror(sd));
560          } else {
561             jcr->JobBytes += sd->msglen;
562             sd->msg = msgsave;
563             bclose(&ff_pkt->bfd);
564             if (!bnet_sig(sd, BNET_EOD)) {
565                berrno be;
566                Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
567                      bnet_strerror(sd));
568             } else {
569                Dmsg1(200, "ACL of file: %s successfully backed up!\n", ff_pkt->fname);
570             }
571          }  
572       }
573    }
574 #endif
575
576    /* Terminate any MD5 signature and send it to Storage daemon and the Director */
577    if (gotMD5 && ff_pkt->flags & FO_MD5) {
578       MD5Final(signature, &md5c);
579       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_MD5_SIGNATURE);
580       Dmsg1(300, "bfiled>stored:header %s\n", sd->msg);
581       memcpy(sd->msg, signature, 16);
582       sd->msglen = 16;
583       bnet_send(sd);
584       bnet_sig(sd, BNET_EOD);         /* end of MD5 */
585       gotMD5 = 0;
586
587    } else if (gotSHA1 && ff_pkt->flags & FO_SHA1) {
588    /* Terminate any SHA1 signature and send it to Storage daemon and the Director */
589       SHA1Final(&sha1c, signature);
590       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_SHA1_SIGNATURE);
591       Dmsg1(300, "bfiled>stored:header %s\n", sd->msg);
592       memcpy(sd->msg, signature, 20);
593       sd->msglen = 20;
594       bnet_send(sd);
595       bnet_sig(sd, BNET_EOD);         /* end of SHA1 */
596       gotMD5 = 0;
597    }
598    return 1;
599 }