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