]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/backup.c
Make Bacula build without Python
[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-2005 Kern Sibbald
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 /* Forward referenced functions */
34 static int save_file(FF_PKT *ff_pkt, void *pkt, bool top_level);
35 static int send_data(JCR *jcr, int stream, FF_PKT *ff_pkt, struct CHKSUM *chksum);
36 static bool encode_and_send_attributes(JCR *jcr, FF_PKT *ff_pkt, int &data_stream);
37 static bool read_and_send_acl(JCR *jcr, int acltype, int stream);
38
39 /*
40  * Find all the requested files and send them
41  * to the Storage daemon.
42  *
43  * Note, we normally carry on a one-way
44  * conversation from this point on with the SD, simply blasting
45  * data to him.  To properly know what is going on, we
46  * also run a "heartbeat" monitor which reads the socket and
47  * reacts accordingly (at the moment it has nothing to do
48  * except echo the heartbeat to the Director).
49  *
50  */
51 bool blast_data_to_storage_daemon(JCR *jcr, char *addr)
52 {
53    BSOCK *sd;
54    bool ok = true;
55
56    sd = jcr->store_bsock;
57
58    set_jcr_job_status(jcr, JS_Running);
59
60    Dmsg1(300, "bfiled: opened data connection %d to stored\n", sd->fd);
61
62    LockRes();
63    CLIENT *client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
64    UnlockRes();
65    uint32_t buf_size;
66    if (client) {
67       buf_size = client->max_network_buffer_size;
68    } else {
69       buf_size = 0;                   /* use default */
70    }
71    if (!bnet_set_buffer_size(sd, buf_size, BNET_SETBUF_WRITE)) {
72       set_jcr_job_status(jcr, JS_ErrorTerminated);
73       Jmsg(jcr, M_FATAL, 0, _("Cannot set buffer size FD->SD.\n"));
74       return false;
75    }
76
77    jcr->buf_size = sd->msglen;
78    /* Adjust for compression so that output buffer is
79     * 12 bytes + 0.1% larger than input buffer plus 18 bytes.
80     * This gives a bit extra plus room for the sparse addr if any.
81     * Note, we adjust the read size to be smaller so that the
82     * same output buffer can be used without growing it.
83     */
84    jcr->compress_buf_size = jcr->buf_size + ((jcr->buf_size+999) / 1000) + 30;
85    jcr->compress_buf = get_memory(jcr->compress_buf_size);
86
87    Dmsg1(300, "set_find_options ff=%p\n", jcr->ff);
88    set_find_options((FF_PKT *)jcr->ff, jcr->incremental, jcr->mtime);
89    Dmsg0(300, "start find files\n");
90
91    start_heartbeat_monitor(jcr);
92
93    jcr->acl_text = get_pool_memory(PM_MESSAGE);
94
95    /* Subroutine save_file() is called for each file */
96    if (!find_files(jcr, (FF_PKT *)jcr->ff, save_file, (void *)jcr)) {
97       ok = false;                     /* error */
98       set_jcr_job_status(jcr, JS_ErrorTerminated);
99 //    Jmsg(jcr, M_FATAL, 0, _("Find files error.\n"));
100    }
101
102    free_pool_memory(jcr->acl_text);
103
104    stop_heartbeat_monitor(jcr);
105
106    bnet_sig(sd, BNET_EOD);            /* end data connection */
107
108    if (jcr->big_buf) {
109       free(jcr->big_buf);
110       jcr->big_buf = NULL;
111    }
112    if (jcr->compress_buf) {
113       free_pool_memory(jcr->compress_buf);
114       jcr->compress_buf = NULL;
115    }
116    Dmsg1(300, "end blast_data stat=%d\n", ok);
117    return ok;
118 }
119
120 /*
121  * Called here by find() for each file included.
122  *   This is a callback. The original is find_files() above.
123  *
124  *  Send the file and its data to the Storage daemon.
125  *
126  *  Returns: 1 if OK
127  *           0 if error
128  *          -1 to ignore file/directory (not used here)
129  */
130 static int save_file(FF_PKT *ff_pkt, void *vjcr, bool top_level)
131 {
132    int stat, data_stream;
133    struct CHKSUM chksum;
134    BSOCK *sd;
135    JCR *jcr = (JCR *)vjcr;
136
137    if (job_canceled(jcr)) {
138       return 0;
139    }
140
141    sd = jcr->store_bsock;
142    jcr->num_files_examined++;         /* bump total file count */
143
144    switch (ff_pkt->type) {
145    case FT_LNKSAVED:                  /* Hard linked, file already saved */
146       Dmsg2(130, "FT_LNKSAVED hard link: %s => %s\n", ff_pkt->fname, ff_pkt->link);
147       break;
148    case FT_REGE:
149       Dmsg1(130, "FT_REGE saving: %s\n", ff_pkt->fname);
150       break;
151    case FT_REG:
152       Dmsg1(130, "FT_REG saving: %s\n", ff_pkt->fname);
153       break;
154    case FT_LNK:
155       Dmsg2(130, "FT_LNK saving: %s -> %s\n", ff_pkt->fname, ff_pkt->link);
156       break;
157    case FT_DIRBEGIN:
158       return 1;                       /* not used */
159    case FT_NORECURSE:
160    case FT_NOFSCHG:
161    case FT_INVALIDFS:
162    case FT_DIREND:
163       if (ff_pkt->type == FT_NORECURSE) {
164          Jmsg(jcr, M_INFO, 1, _("     Recursion turned off. Will not descend into %s\n"),
165             ff_pkt->fname);
166       } else if (ff_pkt->type == FT_NOFSCHG) {
167          Jmsg(jcr, M_INFO, 1, _("     File system change prohibited. Will not descend into %s\n"),
168             ff_pkt->fname);
169       } else if (ff_pkt->type == FT_INVALIDFS) {
170          Jmsg(jcr, M_INFO, 1, _("     Disallowed filesystem. Will not descend into %s\n"),
171             ff_pkt->fname);
172       }
173       ff_pkt->type = FT_DIREND;       /* value is used below */
174       Dmsg1(130, "FT_DIR saving: %s\n", ff_pkt->link);
175       break;
176    case FT_SPEC:
177       Dmsg1(130, "FT_SPEC saving: %s\n", ff_pkt->fname);
178       break;
179    case FT_RAW:
180       Dmsg1(130, "FT_RAW saving: %s\n", ff_pkt->fname);
181       break;
182    case FT_FIFO:
183       Dmsg1(130, "FT_FIFO saving: %s\n", ff_pkt->fname);
184       break;
185    case FT_NOACCESS: {
186       berrno be;
187       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not access %s: ERR=%s\n"), ff_pkt->fname,
188          be.strerror(ff_pkt->ff_errno));
189       jcr->Errors++;
190       return 1;
191    }
192    case FT_NOFOLLOW: {
193       berrno be;
194       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not follow link %s: ERR=%s\n"), ff_pkt->fname,
195          be.strerror(ff_pkt->ff_errno));
196       jcr->Errors++;
197       return 1;
198    }
199    case FT_NOSTAT: {
200       berrno be;
201       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not stat %s: ERR=%s\n"), ff_pkt->fname,
202          be.strerror(ff_pkt->ff_errno));
203       jcr->Errors++;
204       return 1;
205    }
206    case FT_DIRNOCHG:
207    case FT_NOCHG:
208       Jmsg(jcr, M_SKIPPED, 1, _("     Unchanged file skipped: %s\n"), ff_pkt->fname);
209       return 1;
210    case FT_ISARCH:
211       Jmsg(jcr, M_NOTSAVED, 0, _("     Archive file not saved: %s\n"), ff_pkt->fname);
212       return 1;
213    case FT_NOOPEN: {
214       berrno be;
215       Jmsg(jcr, M_NOTSAVED, 0, _("     Could not open directory %s: ERR=%s\n"), ff_pkt->fname,
216          be.strerror(ff_pkt->ff_errno));
217       jcr->Errors++;
218       return 1;
219    }
220    default:
221       Jmsg(jcr, M_NOTSAVED, 0,  _("     Unknown file type %d; not saved: %s\n"), ff_pkt->type, ff_pkt->fname);
222       jcr->Errors++;
223       return 1;
224    }
225
226    Dmsg1(130, "bfiled: sending %s to stored\n", ff_pkt->fname);
227
228    if (!encode_and_send_attributes(jcr, ff_pkt, data_stream)) {
229       return 0;
230    }
231
232    /*
233     * Setup for signature handling.
234     * Then initialise the file descriptor we use for data and other streams.
235     */
236    chksum_init(&chksum, ff_pkt->flags);
237
238    binit(&ff_pkt->bfd);
239    if (ff_pkt->flags & FO_PORTABLE) {
240       set_portable_backup(&ff_pkt->bfd); /* disable Win32 BackupRead() */
241    }
242    if (ff_pkt->reader) {
243       if (!set_prog(&ff_pkt->bfd, ff_pkt->reader, jcr)) {
244          return 0;
245       }
246    }
247
248    /*
249     * Open any file with data that we intend to save, then save it.
250     *
251     * Note, if is_win32_backup, we must open the Directory so that
252     * the BackupRead will save its permissions and ownership streams.
253     */
254    if (ff_pkt->type != FT_LNKSAVED && (S_ISREG(ff_pkt->statp.st_mode) &&
255          ff_pkt->statp.st_size > 0) ||
256          ff_pkt->type == FT_RAW || ff_pkt->type == FT_FIFO ||
257          (!is_portable_backup(&ff_pkt->bfd) && ff_pkt->type == FT_DIREND)) {
258       btimer_t *tid;
259       if (ff_pkt->type == FT_FIFO) {
260          tid = start_thread_timer(pthread_self(), 60);
261       } else {
262          tid = NULL;
263       }
264       if (bopen(&ff_pkt->bfd, ff_pkt->fname, O_RDONLY | O_BINARY, 0) < 0) {
265          ff_pkt->ff_errno = errno;
266          berrno be;
267          Jmsg(jcr, M_NOTSAVED, 0, _("     Cannot open %s: ERR=%s.\n"), ff_pkt->fname,
268               be.strerror());
269          jcr->Errors++;
270          if (tid) {
271             stop_thread_timer(tid);
272             tid = NULL;
273          }
274          return 1;
275       }
276       if (tid) {
277          stop_thread_timer(tid);
278          tid = NULL;
279       }
280       stat = send_data(jcr, data_stream, ff_pkt, &chksum);
281       bclose(&ff_pkt->bfd);
282       if (!stat) {
283          return 0;
284       }
285    }
286
287 #ifdef HAVE_DARWIN_OS
288    /* Regular files can have resource forks and Finder Info */
289    if (ff_pkt->type != FT_LNKSAVED && (S_ISREG(ff_pkt->statp.st_mode) &&
290             ff_pkt->flags & FO_HFSPLUS)) {
291       if (ff_pkt->hfsinfo.rsrclength > 0) {
292          int flags;
293          if (!bopen_rsrc(&ff_pkt->bfd, ff_pkt->fname, O_RDONLY | O_BINARY, 0) < 0) {
294             ff_pkt->ff_errno = errno;
295             berrno be;
296             Jmsg(jcr, M_NOTSAVED, -1, _("     Cannot open resource fork for %s: ERR=%s.\n"), ff_pkt->fname,
297                   be.strerror());
298             jcr->Errors++;
299             if (is_bopen(&ff_pkt->bfd)) {
300                bclose(&ff_pkt->bfd);
301             }
302             return 1;
303          }
304          flags = ff_pkt->flags;
305          ff_pkt->flags &= ~(FO_GZIP|FO_SPARSE);
306          stat = send_data(jcr, STREAM_MACOS_FORK_DATA, ff_pkt, &chksum);
307          ff_pkt->flags = flags;
308          bclose(&ff_pkt->bfd);
309          if (!stat) {
310             return 0;
311          }
312       }
313
314       Dmsg1(300, "Saving Finder Info for \"%s\"\n", ff_pkt->fname);
315       bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, STREAM_HFSPLUS_ATTRIBUTES);
316       Dmsg1(300, "bfiled>stored:header %s\n", sd->msg);
317       memcpy(sd->msg, ff_pkt->hfsinfo.fndrinfo, 32);
318       sd->msglen = 32;
319       chksum_update(&chksum, (unsigned char *)sd->msg, sd->msglen);
320       bnet_send(sd);
321       bnet_sig(sd, BNET_EOD);
322    }
323 #endif
324
325    if (ff_pkt->flags & FO_ACL) {
326       /* Read access ACLs for files, dirs and links */
327       if (!read_and_send_acl(jcr, BACL_TYPE_ACCESS, STREAM_UNIX_ATTRIBUTES_ACCESS_ACL)) {
328          return 0;
329       }
330       /* Directories can have default ACLs too */
331       if (ff_pkt->type == FT_DIREND && (BACL_CAP & BACL_CAP_DEFAULTS_DIR)) {
332          if (!read_and_send_acl(jcr, BACL_TYPE_DEFAULT, STREAM_UNIX_ATTRIBUTES_DEFAULT_ACL)) {
333             return 0;
334          }
335       }
336    }
337
338    /* Terminate any signature and send it to Storage daemon and the Director */
339    if (chksum.updated) {
340       int stream = 0;
341       chksum_final(&chksum);
342       if (chksum.type == CHKSUM_MD5) {
343          stream = STREAM_MD5_SIGNATURE;
344       } else if (chksum.type == CHKSUM_SHA1) {
345          stream = STREAM_SHA1_SIGNATURE;
346       } else {
347          Jmsg1(jcr, M_WARNING, 0, _("Unknown signature type %i.\n"), chksum.type);
348       }
349       if (stream != 0) {
350          bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream);
351          Dmsg1(300, "bfiled>stored:header %s\n", sd->msg);
352          memcpy(sd->msg, chksum.signature, chksum.length);
353          sd->msglen = chksum.length;
354          bnet_send(sd);
355          bnet_sig(sd, BNET_EOD);              /* end of checksum */
356       }
357    }
358
359    return 1;
360 }
361
362 /*
363  * Send data read from an already open file descriptor.
364  *
365  * We return 1 on sucess and 0 on errors.
366  *
367  * ***FIXME***
368  * We use ff_pkt->statp.st_size when FO_SPARSE.
369  * Currently this is not a problem as the only other stream, resource forks,
370  * are not handled as sparse files.
371  */
372 int send_data(JCR *jcr, int stream, FF_PKT *ff_pkt, struct CHKSUM *chksum)
373 {
374    BSOCK *sd = jcr->store_bsock;
375    uint64_t fileAddr = 0;             /* file address */
376    char *rbuf, *wbuf;
377    int rsize = jcr->buf_size;      /* read buffer size */
378    POOLMEM *msgsave;
379
380    msgsave = sd->msg;
381    rbuf = sd->msg;                    /* read buffer */
382    wbuf = sd->msg;                    /* write buffer */
383
384
385    Dmsg1(300, "Saving data, type=%d\n", ff_pkt->type);
386
387
388 #ifdef HAVE_LIBZ
389    uLong compress_len, max_compress_len = 0;
390    const Bytef *cbuf = NULL;
391
392    if (ff_pkt->flags & FO_GZIP) {
393       if (ff_pkt->flags & FO_SPARSE) {
394          cbuf = (Bytef *)jcr->compress_buf + SPARSE_FADDR_SIZE;
395          max_compress_len = jcr->compress_buf_size - SPARSE_FADDR_SIZE;
396       } else {
397          cbuf = (Bytef *)jcr->compress_buf;
398          max_compress_len = jcr->compress_buf_size; /* set max length */
399       }
400       wbuf = jcr->compress_buf;    /* compressed output here */
401    }
402 #endif
403
404    /*
405     * Send Data header to Storage daemon
406     *    <file-index> <stream> <info>
407     */
408    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream)) {
409       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
410             bnet_strerror(sd));
411       return 0;
412    }
413    Dmsg1(300, ">stored: datahdr %s\n", sd->msg);
414
415    /*
416     * Make space at beginning of buffer for fileAddr because this
417     *   same buffer will be used for writing if compression if off.
418     */
419    if (ff_pkt->flags & FO_SPARSE) {
420       rbuf += SPARSE_FADDR_SIZE;
421       rsize -= SPARSE_FADDR_SIZE;
422 #ifdef HAVE_FREEBSD_OS
423       /*
424        * To read FreeBSD partitions, the read size must be
425        *  a multiple of 512.
426        */
427       rsize = (rsize/512) * 512;
428 #endif
429    }
430
431    /*
432     * Read the file data
433     */
434    while ((sd->msglen=(uint32_t)bread(&ff_pkt->bfd, rbuf, rsize)) > 0) {
435       int sparseBlock = 0;
436
437       /* Check for sparse blocks */
438       if (ff_pkt->flags & FO_SPARSE) {
439          ser_declare;
440          if (sd->msglen == rsize &&
441              (fileAddr+sd->msglen < (uint64_t)ff_pkt->statp.st_size)) {
442             sparseBlock = is_buf_zero(rbuf, rsize);
443          }
444
445          ser_begin(wbuf, SPARSE_FADDR_SIZE);
446          ser_uint64(fileAddr);     /* store fileAddr in begin of buffer */
447       }
448
449       jcr->ReadBytes += sd->msglen;         /* count bytes read */
450       fileAddr += sd->msglen;
451
452       /* Update checksum if requested */
453       chksum_update(chksum, (unsigned char *)rbuf, sd->msglen);
454
455 #ifdef HAVE_LIBZ
456       /* Do compression if turned on */
457       if (!sparseBlock && ff_pkt->flags & FO_GZIP) {
458          int zstat;
459          compress_len = max_compress_len;
460          Dmsg4(400, "cbuf=0x%x len=%u rbuf=0x%x len=%u\n", cbuf, compress_len,
461             rbuf, sd->msglen);
462          /* NOTE! This call modifies compress_len !!! */
463          if ((zstat=compress2((Bytef *)cbuf, &compress_len,
464                (const Bytef *)rbuf, (uLong)sd->msglen,
465                ff_pkt->GZIP_level)) != Z_OK) {
466             Jmsg(jcr, M_FATAL, 0, _("Compression error: %d\n"), zstat);
467             sd->msg = msgsave;
468             sd->msglen = 0;
469             set_jcr_job_status(jcr, JS_ErrorTerminated);
470             return 0;
471          }
472          Dmsg2(400, "compressed len=%d uncompressed len=%d\n",
473             compress_len, sd->msglen);
474
475          sd->msglen = compress_len;      /* set compressed length */
476       }
477 #endif
478
479       /* Send the buffer to the Storage daemon */
480       if (!sparseBlock) {
481          if (ff_pkt->flags & FO_SPARSE) {
482             sd->msglen += SPARSE_FADDR_SIZE; /* include fileAddr in size */
483          }
484          sd->msg = wbuf;              /* set correct write buffer */
485          if (!bnet_send(sd)) {
486             Jmsg2(jcr, M_FATAL, 0, _("Network send error %d to SD. ERR=%s\n"),
487                   sd->msglen, bnet_strerror(sd));
488             sd->msg = msgsave;     /* restore bnet buffer */
489             sd->msglen = 0;
490             return 0;
491          }
492       }
493       Dmsg1(130, "Send data to SD len=%d\n", sd->msglen);
494       /*          #endif */
495       jcr->JobBytes += sd->msglen;      /* count bytes saved possibly compressed */
496       sd->msg = msgsave;                /* restore read buffer */
497
498    } /* end while read file data */
499
500
501    if (sd->msglen < 0) {
502       berrno be;
503       Jmsg(jcr, M_ERROR, 0, _("Read error on file %s. ERR=%s\n"),
504          ff_pkt->fname, be.strerror(ff_pkt->bfd.berrno));
505    }
506
507    if (!bnet_sig(sd, BNET_EOD)) {        /* indicate end of file data */
508       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
509             bnet_strerror(sd));
510       return 0;
511    }
512
513    return 1;
514 }
515
516 /*
517  * Read and send an ACL for the last encountered file.
518  */
519 static bool read_and_send_acl(JCR *jcr, int acltype, int stream)
520 {
521 #ifdef HAVE_ACL
522    BSOCK *sd = jcr->store_bsock;
523    POOLMEM *msgsave;
524    int len;
525
526    len = bacl_get(jcr, acltype);
527    if (len < 0) {
528       Jmsg1(jcr, M_WARNING, 0, "Error reading ACL of %s\n", jcr->last_fname);
529       return true; 
530    }
531    if (len == 0) {
532       return true;                    /* no ACL */
533    }
534
535    /* Send header */
536    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, stream)) {
537       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
538             bnet_strerror(sd));
539       return false;
540    }
541
542    /* Send the buffer to the storage deamon */
543    Dmsg2(400, "Backing up ACL type 0x%2x <%s>\n", acltype, jcr->acl_text);
544    msgsave = sd->msg;
545    sd->msg = jcr->acl_text;
546    sd->msglen = len + 1;
547    if (!bnet_send(sd)) {
548       sd->msg = msgsave;
549       sd->msglen = 0;
550       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
551             bnet_strerror(sd));
552       return false;
553    }
554
555    jcr->JobBytes += sd->msglen;
556    sd->msg = msgsave;
557    if (!bnet_sig(sd, BNET_EOD)) {
558       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
559             bnet_strerror(sd));
560       return false;
561    }
562
563    Dmsg1(200, "ACL of file: %s successfully backed up!\n", jcr->last_fname);
564 #endif
565    return true;
566 }
567
568 static bool encode_and_send_attributes(JCR *jcr, FF_PKT *ff_pkt, int &data_stream) 
569 {
570    BSOCK *sd = jcr->store_bsock;
571    char attribs[MAXSTRING];
572    char attribsEx[MAXSTRING];
573    int attr_stream;
574    int stat;
575 #ifdef FD_NO_SEND_TEST
576    return true;
577 #endif
578
579    /* Find what data stream we will use, then encode the attributes */
580    data_stream = select_data_stream(ff_pkt);
581    encode_stat(attribs, ff_pkt, data_stream);
582
583    /* Now possibly extend the attributes */
584    attr_stream = encode_attribsEx(jcr, attribsEx, ff_pkt);
585
586    Dmsg3(300, "File %s\nattribs=%s\nattribsEx=%s\n", ff_pkt->fname, attribs, attribsEx);
587
588    P(jcr->mutex);
589    jcr->JobFiles++;                    /* increment number of files sent */
590    ff_pkt->FileIndex = jcr->JobFiles;  /* return FileIndex */
591    pm_strcpy(jcr->last_fname, ff_pkt->fname);
592    V(jcr->mutex);
593
594    /*
595     * Send Attributes header to Storage daemon
596     *    <file-index> <stream> <info>
597     */
598    if (!bnet_fsend(sd, "%ld %d 0", jcr->JobFiles, attr_stream)) {
599       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
600             bnet_strerror(sd));
601       return false;
602    }
603    Dmsg1(300, ">stored: attrhdr %s\n", sd->msg);
604
605    /*
606     * Send file attributes to Storage daemon
607     *   File_index
608     *   File type
609     *   Filename (full path)
610     *   Encoded attributes
611     *   Link name (if type==FT_LNK or FT_LNKSAVED)
612     *   Encoded extended-attributes (for Win32)
613     *
614     * For a directory, link is the same as fname, but with trailing
615     * slash. For a linked file, link is the link.
616     */
617    if (ff_pkt->type == FT_LNK || ff_pkt->type == FT_LNKSAVED) {
618       Dmsg2(300, "Link %s to %s\n", ff_pkt->fname, ff_pkt->link);
619       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%s%c%s%c", jcr->JobFiles,
620                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, ff_pkt->link, 0,
621                attribsEx, 0);
622    } else if (ff_pkt->type == FT_DIREND) {
623       /* Here link is the canonical filename (i.e. with trailing slash) */
624       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles,
625                ff_pkt->type, ff_pkt->link, 0, attribs, 0, 0, attribsEx, 0);
626    } else {
627       stat = bnet_fsend(sd, "%ld %d %s%c%s%c%c%s%c", jcr->JobFiles,
628                ff_pkt->type, ff_pkt->fname, 0, attribs, 0, 0, attribsEx, 0);
629    }
630
631    Dmsg2(300, ">stored: attr len=%d: %s\n", sd->msglen, sd->msg);
632    if (!stat) {
633       Jmsg1(jcr, M_FATAL, 0, _("Network send error to SD. ERR=%s\n"),
634             bnet_strerror(sd));
635       return false;
636    }
637    bnet_sig(sd, BNET_EOD);            /* indicate end of attributes data */
638    return true;
639 }