]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/fd_cmds.c
- Added argument to berrno::strerror() to pass errno.
[bacula/bacula] / bacula / src / dird / fd_cmds.c
1 /*
2  *
3  *   Bacula Director -- fd_cmds.c -- send commands to File daemon
4  *
5  *     Kern Sibbald, October MM
6  *
7  *    This routine is run as a separate thread.  There may be more
8  *    work to be done to make it totally reentrant!!!!
9  * 
10  *  Utility functions for sending info to File Daemon.
11  *   These functions are used by both backup and verify.
12  *   
13  *   Version $Id$
14  */
15 /*
16    Copyright (C) 2000-2004 Kern Sibbald and John Walker
17
18    This program is free software; you can redistribute it and/or
19    modify it under the terms of the GNU General Public License as
20    published by the Free Software Foundation; either version 2 of
21    the License, or (at your option) any later version.
22
23    This program is distributed in the hope that it will be useful,
24    but WITHOUT ANY WARRANTY; without even the implied warranty of
25    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26    General Public License for more details.
27
28    You should have received a copy of the GNU General Public
29    License along with this program; if not, write to the Free
30    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
31    MA 02111-1307, USA.
32
33  */
34
35 #include "bacula.h"
36 #include "dird.h"
37
38 /* Commands sent to File daemon */
39 static char inc[]         = "include\n";
40 static char exc[]         = "exclude\n";
41 static char fileset[]     = "fileset\n"; /* set full fileset */
42 static char jobcmd[]      = "JobId=%d Job=%s SDid=%u SDtime=%u Authorization=%s\n";
43 /* Note, mtime_only is not used here -- implemented as file option */
44 static char levelcmd[]    = "level = %s%s mtime_only=%d\n";
45 static char runbefore[]   = "RunBeforeJob %s\n";
46 static char runafter[]    = "RunAfterJob %s\n";
47
48
49 /* Responses received from File daemon */
50 static char OKinc[]       = "2000 OK include\n";
51 static char OKexc[]       = "2000 OK exclude\n";
52 static char OKjob[]       = "2000 OK Job";
53 static char OKbootstrap[] = "2000 OK bootstrap\n";
54 static char OKlevel[]     = "2000 OK level\n";
55 static char OKRunBefore[] = "2000 OK RunBefore\n";
56 static char OKRunAfter[]  = "2000 OK RunAfter\n";
57
58 /* Forward referenced functions */
59
60 /* External functions */
61 extern int debug_level;
62 extern DIRRES *director; 
63 extern int FDConnectTimeout;
64
65 #define INC_LIST 0
66 #define EXC_LIST 1
67
68 /*
69  * Open connection with File daemon. 
70  * Try connecting every retry_interval (default 10 sec), and
71  *   give up after max_retry_time (default 30 mins).
72  */
73
74 int connect_to_file_daemon(JCR *jcr, int retry_interval, int max_retry_time,
75                            int verbose)
76 {
77    BSOCK   *fd;
78
79    fd = bnet_connect(jcr, retry_interval, max_retry_time,
80         _("File daemon"), jcr->client->address, 
81         NULL, jcr->client->FDport, verbose);
82    if (fd == NULL) {
83       set_jcr_job_status(jcr, JS_ErrorTerminated);
84       return 0;
85    }
86    Dmsg0(10, "Opened connection with File daemon\n");
87    fd->res = (RES *)jcr->client;      /* save resource in BSOCK */
88    jcr->file_bsock = fd;
89    set_jcr_job_status(jcr, JS_Running);
90
91    if (!authenticate_file_daemon(jcr)) {
92       set_jcr_job_status(jcr, JS_ErrorTerminated);
93       return 0;
94    }
95         
96    /*
97     * Now send JobId and authorization key
98     */
99    bnet_fsend(fd, jobcmd, jcr->JobId, jcr->Job, jcr->VolSessionId, 
100       jcr->VolSessionTime, jcr->sd_auth_key);
101    if (strcmp(jcr->sd_auth_key, "dummy") != 0) {
102       memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
103    }
104    Dmsg1(100, ">filed: %s", fd->msg);
105    if (bget_dirmsg(fd) > 0) {
106        Dmsg1(110, "<filed: %s", fd->msg);
107        if (strncmp(fd->msg, OKjob, strlen(OKjob)) != 0) {
108           Jmsg(jcr, M_FATAL, 0, _("File daemon \"%s\" rejected Job command: %s\n"), 
109              jcr->client->hdr.name, fd->msg);
110           set_jcr_job_status(jcr, JS_ErrorTerminated);
111           return 0;
112        } else if (jcr->db) {
113           CLIENT_DBR cr;
114           memset(&cr, 0, sizeof(cr));
115           bstrncpy(cr.Name, jcr->client->hdr.name, sizeof(cr.Name));
116           cr.AutoPrune = jcr->client->AutoPrune;
117           cr.FileRetention = jcr->client->FileRetention;
118           cr.JobRetention = jcr->client->JobRetention;
119           bstrncpy(cr.Uname, fd->msg+strlen(OKjob)+1, sizeof(cr.Uname));
120           if (!db_update_client_record(jcr, jcr->db, &cr)) {
121              Jmsg(jcr, M_WARNING, 0, _("Error updating Client record. ERR=%s\n"),
122                 db_strerror(jcr->db));
123           }
124        }
125    } else {
126       Jmsg(jcr, M_FATAL, 0, _("FD gave bad response to JobId command: %s\n"),
127          bnet_strerror(fd));
128       set_jcr_job_status(jcr, JS_ErrorTerminated);
129       return 0;
130    }
131    return 1;
132 }
133
134 /*
135  * This subroutine edits the last job start time into a
136  *   "since=date/time" buffer that is returned in the  
137  *   variable since.  This is used for display purposes in
138  *   the job report.  The time in jcr->stime is later 
139  *   passed to tell the File daemon what to do.
140  */
141 void get_level_since_time(JCR *jcr, char *since, int since_len)
142 {
143    /* Lookup the last FULL backup job to get the time/date for a 
144     * differential or incremental save.
145     */
146    if (!jcr->stime) {
147       jcr->stime = get_pool_memory(PM_MESSAGE);
148    }
149    jcr->stime[0] = 0;
150    since[0] = 0;
151    switch (jcr->JobLevel) {
152    case L_DIFFERENTIAL:
153    case L_INCREMENTAL:
154       /* Look up start time of last job */
155       jcr->jr.JobId = 0;     /* flag for db_find_job_start time */
156       if (!db_find_job_start_time(jcr, jcr->db, &jcr->jr, &jcr->stime)) {
157          Jmsg(jcr, M_INFO, 0, "%s", db_strerror(jcr->db));
158          Jmsg(jcr, M_INFO, 0, _("No prior or suitable Full backup found. Doing FULL backup.\n"));
159          bsnprintf(since, since_len, " (upgraded from %s)", 
160             level_to_str(jcr->JobLevel));
161          jcr->JobLevel = jcr->jr.JobLevel = L_FULL;
162       } else {
163          bstrncpy(since, ", since=", since_len);
164          bstrncat(since, jcr->stime, since_len);
165       }
166       jcr->jr.JobId = jcr->JobId;
167       break;
168    }
169    Dmsg2(100, "Level=%c last start time=%s\n", jcr->JobLevel, jcr->stime);
170 }
171
172
173 /*
174  * Send level command to FD. 
175  * Used for backup jobs and estimate command.
176  */
177 int send_level_command(JCR *jcr) 
178 {
179    BSOCK   *fd = jcr->file_bsock;
180    utime_t stime;
181    char ed1[50];
182    /* 
183     * Send Level command to File daemon
184     */
185    switch (jcr->JobLevel) {
186    case L_BASE:
187       bnet_fsend(fd, levelcmd, "base", " ", 0);
188       break;
189    /* L_NONE is the console, sending something off to the FD */
190    case L_NONE:
191    case L_FULL:
192       bnet_fsend(fd, levelcmd, "full", " ", 0);
193       break;
194    case L_DIFFERENTIAL:
195    case L_INCREMENTAL:
196       stime = str_to_utime(jcr->stime);
197       bnet_fsend(fd, levelcmd, "since_utime ", edit_uint64(stime, ed1), 0);
198       while (bget_dirmsg(fd) >= 0) {  /* allow him to poll us to sync clocks */
199          Jmsg(jcr, M_INFO, 0, "%s\n", fd->msg);
200       }
201       break;
202    case L_SINCE:
203    default:
204       Jmsg2(jcr, M_FATAL, 0, _("Unimplemented backup level %d %c\n"), 
205          jcr->JobLevel, jcr->JobLevel);
206       return 0;
207    }
208    Dmsg1(120, ">filed: %s", fd->msg);
209    if (!response(jcr, fd, OKlevel, "Level", DISPLAY_ERROR)) {
210       return 0;
211    }
212    return 1;
213 }
214
215
216 /*
217  * Send either an Included or an Excluded list to FD
218  */
219 static int send_list(JCR *jcr, int list)
220 {
221    FILESET *fileset;
222    BSOCK   *fd;
223    int num;
224
225    fd = jcr->file_bsock;
226    fileset = jcr->fileset;
227
228    if (list == INC_LIST) {
229       num = fileset->num_includes;
230    } else {
231       num = fileset->num_excludes;
232    }
233
234    for (int i=0; i<num; i++) {
235       BPIPE *bpipe;
236       FILE *ffd;
237       char buf[2000];
238       char *p;
239       int optlen, stat;
240       INCEXE *ie;
241
242
243       if (list == INC_LIST) {
244          ie = fileset->include_items[i];
245       } else {
246          ie = fileset->exclude_items[i];
247       }
248       for (int j=0; j<ie->name_list.size(); j++) {
249          p = (char *)ie->name_list.get(j);
250          switch (*p) {
251          case '|':
252             p++;                      /* skip over the | */
253             fd->msg = edit_job_codes(jcr, fd->msg, p, "");
254             bpipe = open_bpipe(fd->msg, 0, "r");
255             if (!bpipe) {
256                berrno be;
257                Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
258                   p, be.strerror());
259                goto bail_out;
260             }
261             /* Copy File options */
262             if (ie->num_opts) {
263                bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf));
264                bstrncat(buf, " ", sizeof(buf));
265             } else {
266                bstrncpy(buf, "0 ", sizeof(buf));
267             }
268             Dmsg1(500, "Opts=%s\n", buf);
269             optlen = strlen(buf);
270             while (fgets(buf+optlen, sizeof(buf)-optlen, bpipe->rfd)) {
271                fd->msglen = Mmsg(fd->msg, "%s", buf);
272                Dmsg2(500, "Inc/exc len=%d: %s", fd->msglen, fd->msg);
273                if (!bnet_send(fd)) {
274                   Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
275                   goto bail_out;
276                }
277             }
278             if ((stat=close_bpipe(bpipe)) != 0) {
279                berrno be;
280                Jmsg(jcr, M_FATAL, 0, _("Error running program %p: ERR=%s\n"),
281                   p, be.strerror(stat));
282                goto bail_out;
283             }
284             break;
285          case '<':
286             p++;                      /* skip over < */
287             if ((ffd = fopen(p, "r")) == NULL) {
288                Jmsg(jcr, M_FATAL, 0, _("Cannot open %s file: %s. ERR=%s\n"),
289                   list==INC_LIST?"included":"excluded", p, strerror(errno));
290                goto bail_out;
291             }
292             /* Copy File options */
293             if (ie->num_opts) {
294                bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf));
295                bstrncat(buf, " ", sizeof(buf));
296             } else {
297                bstrncpy(buf, "0 ", sizeof(buf));
298             }
299             Dmsg1(500, "Opts=%s\n", buf);
300             optlen = strlen(buf);
301             while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
302                fd->msglen = Mmsg(fd->msg, "%s", buf);
303                if (!bnet_send(fd)) {
304                   Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
305                   goto bail_out;
306                }
307             }
308             fclose(ffd);
309             break;
310          case '\\':
311             p++;                      /* skip over \ */
312             /* Note, fall through wanted */
313          default:
314             if (ie->num_opts) {
315                Dmsg2(500, "numopts=%d opts=%s\n", ie->num_opts, NPRT(ie->opts_list[0]->opts));
316                pm_strcpy(fd->msg, ie->opts_list[0]->opts);
317                pm_strcat(fd->msg, " ");
318             } else {
319                pm_strcpy(fd->msg, "0 ");
320             }
321             fd->msglen = pm_strcat(fd->msg, p);
322             Dmsg1(500, "Inc/Exc name=%s\n", fd->msg);
323             if (!bnet_send(fd)) {
324                Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
325                goto bail_out;
326             }
327             break;
328          }
329       }
330    }
331    bnet_sig(fd, BNET_EOD);            /* end of data */
332    if (list == INC_LIST) {
333       if (!response(jcr, fd, OKinc, "Include", DISPLAY_ERROR)) {
334          goto bail_out;
335       }
336    } else if (!response(jcr, fd, OKexc, "Exclude", DISPLAY_ERROR)) {
337         goto bail_out;
338    }
339    return 1;
340
341 bail_out:
342    set_jcr_job_status(jcr, JS_ErrorTerminated);
343    return 0;
344
345 }
346
347
348 /*
349  * Send either an Included or an Excluded list to FD
350  */
351 static int send_fileset(JCR *jcr)
352 {
353    FILESET *fileset = jcr->fileset;
354    BSOCK   *fd = jcr->file_bsock;
355    int num;
356    bool include = true;
357
358    for ( ;; ) {
359       if (include) {
360          num = fileset->num_includes;
361       } else {
362          num = fileset->num_excludes;
363       }  
364       for (int i=0; i<num; i++) {
365          BPIPE *bpipe;
366          FILE *ffd;
367          char buf[2000];
368          char *p;
369          int optlen, stat;
370          INCEXE *ie;
371          int j, k;
372
373          if (include) {
374             ie = fileset->include_items[i];
375             bnet_fsend(fd, "I\n");
376          } else {
377             ie = fileset->exclude_items[i];
378             bnet_fsend(fd, "E\n");
379          }       
380          for (j=0; j<ie->num_opts; j++) {
381             FOPTS *fo = ie->opts_list[j];
382             bnet_fsend(fd, "O %s\n", fo->opts);
383             for (k=0; k<fo->regex.size(); k++) {
384                bnet_fsend(fd, "R %s\n", fo->regex.get(k));
385             }
386             for (k=0; k<fo->wild.size(); k++) {
387                bnet_fsend(fd, "W %s\n", fo->wild.get(k));
388             }
389             for (k=0; k<fo->base.size(); k++) {
390                bnet_fsend(fd, "B %s\n", fo->base.get(k));
391             }
392             if (fo->reader) {
393                bnet_fsend(fd, "D %s\n", fo->reader);
394             }
395             if (fo->writer) {
396                bnet_fsend(fd, "T %s\n", fo->writer);
397             }
398             bnet_fsend(fd, "N\n");
399          }
400
401          for (j=0; j<ie->name_list.size(); j++) {
402             p = (char *)ie->name_list.get(j);
403             switch (*p) {
404             case '|':
405                p++;                      /* skip over the | */
406                fd->msg = edit_job_codes(jcr, fd->msg, p, "");
407                bpipe = open_bpipe(fd->msg, 0, "r");
408                if (!bpipe) {
409                   berrno be;
410                   Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
411                      p, be.strerror());
412                   goto bail_out;
413                }
414                bstrncpy(buf, "F ", sizeof(buf));
415                Dmsg1(500, "Opts=%s\n", buf);
416                optlen = strlen(buf);
417                while (fgets(buf+optlen, sizeof(buf)-optlen, bpipe->rfd)) {
418                   fd->msglen = Mmsg(fd->msg, "%s", buf);
419                   Dmsg2(500, "Inc/exc len=%d: %s", fd->msglen, fd->msg);
420                   if (!bnet_send(fd)) {
421                      Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
422                      goto bail_out;
423                   }
424                }
425                if ((stat=close_bpipe(bpipe)) != 0) {
426                   berrno be;
427                   Jmsg(jcr, M_FATAL, 0, _("Error running program: %s. ERR=%s\n"),
428                      p, be.strerror(stat));
429                   goto bail_out;
430                }
431                break;
432             case '<':
433                p++;                      /* skip over < */
434                if ((ffd = fopen(p, "r")) == NULL) {
435                   berrno be;
436                   Jmsg(jcr, M_FATAL, 0, _("Cannot open included file: %s. ERR=%s\n"),
437                      p, be.strerror());
438                   goto bail_out;
439                }
440                bstrncpy(buf, "F ", sizeof(buf));
441                Dmsg1(500, "Opts=%s\n", buf);
442                optlen = strlen(buf);
443                while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
444                   fd->msglen = Mmsg(fd->msg, "%s", buf);
445                   if (!bnet_send(fd)) {
446                      Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
447                      goto bail_out;
448                   }
449                }
450                fclose(ffd);
451                break;
452             case '\\':
453                p++;                      /* skip over \ */
454                /* Note, fall through wanted */
455             default:
456                pm_strcpy(fd->msg, "F ");
457                fd->msglen = pm_strcat(fd->msg, p);
458                Dmsg1(500, "Inc/Exc name=%s\n", fd->msg);
459                if (!bnet_send(fd)) {
460                   Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
461                   goto bail_out;
462                }
463                break;
464             }
465          }
466          bnet_fsend(fd, "N\n");
467       }
468       if (!include) {                 /* If we just did excludes */
469          break;                       /*   all done */
470       }
471       include = false;                /* Now do excludes */
472    }
473
474    bnet_sig(fd, BNET_EOD);            /* end of data */
475    if (!response(jcr, fd, OKinc, "Include", DISPLAY_ERROR)) {
476       goto bail_out;
477    }
478    return 1;
479
480 bail_out:
481    set_jcr_job_status(jcr, JS_ErrorTerminated);
482    return 0;
483
484 }
485
486
487 /*
488  * Send include list to File daemon
489  */
490 int send_include_list(JCR *jcr)
491 {
492    BSOCK *fd = jcr->file_bsock;
493    if (jcr->fileset->new_include) {
494       bnet_fsend(fd, fileset);
495       return send_fileset(jcr);
496    } else {
497       bnet_fsend(fd, inc);
498    }
499    return send_list(jcr, INC_LIST);
500 }
501
502
503 /*
504  * Send exclude list to File daemon 
505  */
506 int send_exclude_list(JCR *jcr)
507 {
508    BSOCK *fd = jcr->file_bsock;
509    if (jcr->fileset->new_include) {
510       return 1;
511    }
512    bnet_fsend(fd, exc);
513    return send_list(jcr, EXC_LIST);
514 }
515
516
517 /*
518  * Send bootstrap file if any to the File daemon.
519  *  This is used for restore and verify VolumeToCatalog
520  */
521 int send_bootstrap_file(JCR *jcr)
522 {
523    FILE *bs;
524    char buf[1000];
525    BSOCK *fd = jcr->file_bsock;
526    const char *bootstrap = "bootstrap\n";
527
528    Dmsg1(400, "send_bootstrap_file: %s\n", jcr->RestoreBootstrap);
529    if (!jcr->RestoreBootstrap) {
530       return 1;
531    }
532    bs = fopen(jcr->RestoreBootstrap, "r");
533    if (!bs) {
534       berrno be;
535       Jmsg(jcr, M_FATAL, 0, _("Could not open bootstrap file %s: ERR=%s\n"), 
536          jcr->RestoreBootstrap, be.strerror());
537       set_jcr_job_status(jcr, JS_ErrorTerminated);
538       return 0;
539    }
540    bnet_fsend(fd, bootstrap);
541    while (fgets(buf, sizeof(buf), bs)) {
542       bnet_fsend(fd, "%s", buf);       
543    }
544    bnet_sig(fd, BNET_EOD);
545    fclose(bs);
546    if (!response(jcr, fd, OKbootstrap, "Bootstrap", DISPLAY_ERROR)) {
547       set_jcr_job_status(jcr, JS_ErrorTerminated);
548       return 0;
549    }
550    return 1;
551 }
552
553 /*
554  * Send ClientRunBeforeJob and ClientRunAfterJob to File daemon
555  */
556 int send_run_before_and_after_commands(JCR *jcr)
557 {
558    POOLMEM *msg = get_pool_memory(PM_FNAME);
559    BSOCK *fd = jcr->file_bsock;
560    if (jcr->job->ClientRunBeforeJob) {
561       pm_strcpy(msg, jcr->job->ClientRunBeforeJob);
562       bash_spaces(msg);
563       bnet_fsend(fd, runbefore, msg);
564       if (!response(jcr, fd, OKRunBefore, "ClientRunBeforeJob", DISPLAY_ERROR)) {
565          set_jcr_job_status(jcr, JS_ErrorTerminated);
566          free_pool_memory(msg);
567          return 0;
568       }
569    }
570    if (jcr->job->ClientRunAfterJob) {
571       fd->msglen = pm_strcpy(msg, jcr->job->ClientRunAfterJob);
572       bash_spaces(msg);
573       bnet_fsend(fd, runafter, msg);
574       if (!response(jcr, fd, OKRunAfter, "ClientRunAfterJob", DISPLAY_ERROR)) {
575          set_jcr_job_status(jcr, JS_ErrorTerminated);
576          free_pool_memory(msg);
577          return 0;
578       }
579    }
580    free_pool_memory(msg);
581    return 1;
582 }
583
584
585 /* 
586  * Read the attributes from the File daemon for
587  * a Verify job and store them in the catalog.
588  */
589 int get_attributes_and_put_in_catalog(JCR *jcr)
590 {
591    BSOCK   *fd;
592    int n = 0;
593    ATTR_DBR ar;
594
595    fd = jcr->file_bsock;
596    jcr->jr.FirstIndex = 1;
597    memset(&ar, 0, sizeof(ar));
598    jcr->FileIndex = 0;
599
600    Dmsg0(120, "bdird: waiting to receive file attributes\n");
601    /* Pickup file attributes and signature */
602    while (!fd->errors && (n = bget_dirmsg(fd)) > 0) {
603
604    /*****FIXME****** improve error handling to stop only on 
605     * really fatal problems, or the number of errors is too
606     * large.
607     */
608       long file_index;
609       int stream, len;
610       char *attr, *p, *fn;
611       char Opts_SIG[MAXSTRING];      /* either Verify opts or MD5/SHA1 signature */
612       char SIG[MAXSTRING];
613
614       jcr->fname = check_pool_memory_size(jcr->fname, fd->msglen);
615       if ((len = sscanf(fd->msg, "%ld %d %s", &file_index, &stream, Opts_SIG)) != 3) {
616          Jmsg(jcr, M_FATAL, 0, _("<filed: bad attributes, expected 3 fields got %d\n\
617 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
618          set_jcr_job_status(jcr, JS_ErrorTerminated);
619          return 0;
620       }
621       p = fd->msg;
622       skip_nonspaces(&p);             /* skip FileIndex */
623       skip_spaces(&p);
624       skip_nonspaces(&p);             /* skip Stream */
625       skip_spaces(&p);
626       skip_nonspaces(&p);             /* skip Opts_SHA1 */   
627       p++;                            /* skip space */
628       fn = jcr->fname;
629       while (*p != 0) {
630          *fn++ = *p++;                /* copy filename */
631       }
632       *fn = *p++;                     /* term filename and point to attribs */
633       attr = p;
634
635       if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_UNIX_ATTRIBUTES_EX) {
636          jcr->JobFiles++;
637          jcr->FileIndex = file_index;
638          ar.attr = attr;
639          ar.fname = jcr->fname;
640          ar.FileIndex = file_index;
641          ar.Stream = stream;
642          ar.link = NULL;
643          ar.JobId = jcr->JobId;
644          ar.ClientId = jcr->ClientId;
645          ar.PathId = 0;
646          ar.FilenameId = 0;
647
648          Dmsg2(111, "dird<filed: stream=%d %s\n", stream, jcr->fname);
649          Dmsg1(120, "dird<filed: attr=%s\n", attr);
650
651          if (!db_create_file_attributes_record(jcr, jcr->db, &ar)) {
652             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
653             set_jcr_job_status(jcr, JS_Error);
654             continue;
655          }
656          jcr->FileId = ar.FileId;
657       } else if (stream == STREAM_MD5_SIGNATURE || stream == STREAM_SHA1_SIGNATURE) {
658          if (jcr->FileIndex != (uint32_t)file_index) {
659             Jmsg2(jcr, M_ERROR, 0, _("MD5/SHA1 index %d not same as attributes %d\n"),
660                file_index, jcr->FileIndex);
661             set_jcr_job_status(jcr, JS_Error);
662             continue;
663          }
664          db_escape_string(SIG, Opts_SIG, strlen(Opts_SIG));
665          Dmsg2(120, "SIGlen=%d SIG=%s\n", strlen(SIG), SIG);
666          if (!db_add_SIG_to_file_record(jcr, jcr->db, jcr->FileId, SIG, 
667                    stream==STREAM_MD5_SIGNATURE?MD5_SIG:SHA1_SIG)) {
668             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
669             set_jcr_job_status(jcr, JS_Error);
670          }
671       }
672       jcr->jr.JobFiles = jcr->JobFiles = file_index;
673       jcr->jr.LastIndex = file_index;
674    } 
675    if (is_bnet_error(fd)) {
676       Jmsg1(jcr, M_FATAL, 0, _("<filed: Network error getting attributes. ERR=%s\n"),
677                         bnet_strerror(fd));
678       set_jcr_job_status(jcr, JS_ErrorTerminated);
679       return 0;
680    }
681
682    set_jcr_job_status(jcr, JS_Terminated);
683    return 1;
684 }