]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/fd_cmds.c
Fix: clock diff, Dan's patch, Nic's patch, segfault
[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-2003 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 jobcmd[]      = "JobId=%d Job=%s SDid=%u SDtime=%u Authorization=%s\n";
42 static char levelcmd[]    = "level = %s%s mtime_only=%d\n";
43 static char runbefore[]   = "RunBeforeJob %s\n";
44 static char runafter[]    = "RunAfterJob %s\n";
45
46
47 /* Responses received from File daemon */
48 static char OKinc[]       = "2000 OK include\n";
49 static char OKexc[]       = "2000 OK exclude\n";
50 static char OKjob[]       = "2000 OK Job";
51 static char OKbootstrap[] = "2000 OK bootstrap\n";
52 static char OKlevel[]     = "2000 OK level\n";
53 static char OKRunBefore[] = "2000 OK RunBefore\n";
54 static char OKRunAfter[]  = "2000 OK RunAfter\n";
55
56 /* Forward referenced functions */
57
58 /* External functions */
59 extern int debug_level;
60 extern DIRRES *director; 
61 extern int FDConnectTimeout;
62
63 #define INC_LIST 0
64 #define EXC_LIST 1
65
66 /*
67  * Open connection with File daemon. 
68  * Try connecting every retry_interval (default 10 sec), and
69  *   give up after max_retry_time (default 30 mins).
70  */
71
72 int connect_to_file_daemon(JCR *jcr, int retry_interval, int max_retry_time,
73                            int verbose)
74 {
75    BSOCK   *fd;
76
77    fd = bnet_connect(jcr, retry_interval, max_retry_time,
78         _("File daemon"), jcr->client->address, 
79         NULL, jcr->client->FDport, verbose);
80    if (fd == NULL) {
81       set_jcr_job_status(jcr, JS_ErrorTerminated);
82       return 0;
83    }
84    Dmsg0(10, "Opened connection with File daemon\n");
85    fd->res = (RES *)jcr->client;      /* save resource in BSOCK */
86    jcr->file_bsock = fd;
87    set_jcr_job_status(jcr, JS_Running);
88
89    if (!authenticate_file_daemon(jcr)) {
90       set_jcr_job_status(jcr, JS_ErrorTerminated);
91       return 0;
92    }
93         
94    /*
95     * Now send JobId and authorization key
96     */
97    bnet_fsend(fd, jobcmd, jcr->JobId, jcr->Job, jcr->VolSessionId, 
98       jcr->VolSessionTime, jcr->sd_auth_key);
99    if (strcmp(jcr->sd_auth_key, "dummy") != 0) {
100       memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
101    }
102    Dmsg1(100, ">filed: %s", fd->msg);
103    if (bget_dirmsg(fd) > 0) {
104        Dmsg1(110, "<filed: %s", fd->msg);
105        if (strncmp(fd->msg, OKjob, strlen(OKjob)) != 0) {
106           Jmsg(jcr, M_FATAL, 0, _("File daemon \"%s\" rejected Job command: %s\n"), 
107              jcr->client->hdr.name, fd->msg);
108           set_jcr_job_status(jcr, JS_ErrorTerminated);
109           return 0;
110        } else if (jcr->db) {
111           CLIENT_DBR cr;
112           memset(&cr, 0, sizeof(cr));
113           bstrncpy(cr.Name, jcr->client->hdr.name, sizeof(cr.Name));
114           cr.AutoPrune = jcr->client->AutoPrune;
115           cr.FileRetention = jcr->client->FileRetention;
116           cr.JobRetention = jcr->client->JobRetention;
117           bstrncpy(cr.Uname, fd->msg+strlen(OKjob)+1, sizeof(cr.Uname));
118           if (!db_update_client_record(jcr, jcr->db, &cr)) {
119              Jmsg(jcr, M_WARNING, 0, _("Error updating Client record. ERR=%s\n"),
120                 db_strerror(jcr->db));
121           }
122        }
123    } else {
124       Jmsg(jcr, M_FATAL, 0, _("FD gave bad response to JobId command: %s\n"),
125          bnet_strerror(fd));
126       set_jcr_job_status(jcr, JS_ErrorTerminated);
127       return 0;
128    }
129    return 1;
130 }
131
132 /*
133  * This subroutine edits the last job start time into a
134  *   "since=date/time" buffer that is returned in the  
135  *   variable since.  This is used for display purposes in
136  *   the job report.  The time in jcr->stime is later 
137  *   passed to tell the File daemon what to do.
138  */
139 void get_level_since_time(JCR *jcr, char *since, int since_len)
140 {
141    /* Lookup the last
142     * FULL backup job to get the time/date for a 
143     * differential or incremental save.
144     */
145    if (!jcr->stime) {
146       jcr->stime = get_pool_memory(PM_MESSAGE);
147    }
148    jcr->stime[0] = 0;
149    since[0] = 0;
150    switch (jcr->JobLevel) {
151    case L_DIFFERENTIAL:
152    case L_INCREMENTAL:
153       /* Look up start time of last job */
154       jcr->jr.JobId = 0;
155       if (!db_find_job_start_time(jcr, jcr->db, &jcr->jr, &jcr->stime)) {
156          Jmsg(jcr, M_INFO, 0, "%s", db_strerror(jcr->db));
157          Jmsg(jcr, M_INFO, 0, _("No prior or suitable Full backup found. Doing FULL backup.\n"));
158          bsnprintf(since, since_len, " (upgraded from %s)", 
159             level_to_str(jcr->JobLevel));
160          jcr->JobLevel = jcr->jr.Level = L_FULL;
161       } else {
162          bstrncpy(since, ", since=", since_len);
163          bstrncat(since, jcr->stime, since_len);
164       }
165       Dmsg1(100, "Last start time = %s\n", jcr->stime);
166       break;
167    }
168 }
169
170
171 /*
172  * Send level command to FD. 
173  * Used for backup jobs and estimate command.
174  */
175 int send_level_command(JCR *jcr) 
176 {
177    BSOCK   *fd = jcr->file_bsock;
178    utime_t stime;
179    char ed1[50];
180    /* 
181     * Send Level command to File daemon
182     */
183    switch (jcr->JobLevel) {
184    case L_BASE:
185       bnet_fsend(fd, levelcmd, "base", " ", 0);
186       break;
187    case L_FULL:
188       bnet_fsend(fd, levelcmd, "full", " ", 0);
189       break;
190    case L_DIFFERENTIAL:
191    case L_INCREMENTAL:
192 //    bnet_fsend(fd, levelcmd, "since ", jcr->stime, 0); /* old code, deprecated */
193       stime = str_to_utime(jcr->stime);
194       bnet_fsend(fd, levelcmd, "since_utime ", edit_uint64(stime, ed1), 0);
195       while (bget_dirmsg(fd) >= 0) {  /* allow him to poll us to sync clocks */
196          Jmsg(jcr, M_INFO, 0, "%s\n", fd->msg);
197       }
198       break;
199    case L_SINCE:
200    default:
201       Jmsg2(jcr, M_FATAL, 0, _("Unimplemented backup level %d %c\n"), 
202          jcr->JobLevel, jcr->JobLevel);
203       return 0;
204    }
205    Dmsg1(120, ">filed: %s", fd->msg);
206    if (!response(jcr, fd, OKlevel, "Level", DISPLAY_ERROR)) {
207       return 0;
208    }
209    return 1;
210 }
211
212
213 /*
214  * Send either an Included or an Excluded list to FD
215  */
216 static int send_list(JCR *jcr, int list)
217 {
218    FILESET *fileset;
219    BSOCK   *fd;
220    int num;
221
222    fd = jcr->file_bsock;
223    fileset = jcr->fileset;
224
225    if (list == INC_LIST) {
226       num = fileset->num_includes;
227    } else {
228       num = fileset->num_excludes;
229    }
230
231    for (int i=0; i < num; i++) {
232       BPIPE *bpipe;
233       FILE *ffd;
234       char buf[1000];
235       char *p;
236       int optlen, stat;
237       INCEXE *ie;
238       FOPTS  *fo;
239
240
241       if (list == INC_LIST) {
242          ie = fileset->include_items[i];
243       } else {
244          ie = fileset->exclude_items[i];
245       }
246       fo = ie->opts_list[0];
247       for (int j=0; j<fo->match.size(); j++) {
248          Dmsg1(100, "Match=%s\n", fo->match.get(j));
249       }
250       for (int j=0; j<ie->name_list.size(); j++) {
251          p = (char *)ie->name_list.get(j);
252          switch (*p) {
253          case '|':
254             fd->msg = edit_job_codes(jcr, fd->msg, p, "");
255             bpipe = open_bpipe(fd->msg, 0, "r");
256             if (!bpipe) {
257                Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
258                   p, strerror(errno));
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(100, "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(200, "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                Jmsg(jcr, M_FATAL, 0, _("Error running program: %s. RtnStat=%d ERR=%s\n"),
280                   p, stat, strerror(errno));
281                goto bail_out;
282             }
283             break;
284          case '<':
285             p++;                      /* skip over < */
286             if ((ffd = fopen(p, "r")) == NULL) {
287                Jmsg(jcr, M_FATAL, 0, _("Cannot open %s file: %s. ERR=%s\n"),
288                   list==INC_LIST?"included":"excluded", p, strerror(errno));
289                goto bail_out;
290             }
291             /* Copy File options */
292             if (ie->num_opts) {
293                bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf));
294                bstrncat(buf, " ", sizeof(buf));
295             } else {
296                bstrncpy(buf, "0 ", sizeof(buf));
297             }
298             Dmsg1(100, "Opts=%s\n", buf);
299             optlen = strlen(buf);
300             while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
301                fd->msglen = Mmsg(&fd->msg, "%s", buf);
302                if (!bnet_send(fd)) {
303                   Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
304                   goto bail_out;
305                }
306             }
307             fclose(ffd);
308             break;
309          case '\\':
310             p++;                      /* skip over \ */
311             /* Note, fall through wanted */
312          default:
313             Dmsg2(100, "numopts=%d opts=%s\n", ie->num_opts, NPRT(ie->opts_list[0]->opts));
314             if (ie->num_opts) {
315                pm_strcpy(&fd->msg, ie->opts_list[0]->opts);
316                pm_strcat(&fd->msg, " ");
317             } else {
318                pm_strcpy(&fd->msg, "0 ");
319             }
320             fd->msglen = pm_strcat(&fd->msg, p);
321             Dmsg1(100, "Inc/Exc name=%s\n", fd->msg);
322             if (!bnet_send(fd)) {
323                Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
324                goto bail_out;
325             }
326             break;
327          }
328       }
329    }
330    bnet_sig(fd, BNET_EOD);            /* end of data */
331    if (list == INC_LIST) {
332       if (!response(jcr, fd, OKinc, "Include", DISPLAY_ERROR)) {
333          goto bail_out;
334       }
335    } else if (!response(jcr, fd, OKexc, "Exclude", DISPLAY_ERROR)) {
336         goto bail_out;
337    }
338    return 1;
339
340 bail_out:
341    set_jcr_job_status(jcr, JS_ErrorTerminated);
342    return 0;
343
344 }
345
346 /*
347  * Send include list to File daemon
348  */
349 int send_include_list(JCR *jcr)
350 {
351    BSOCK *fd = jcr->file_bsock;
352    fd->msglen = pm_strcpy(&fd->msg, inc);
353    bnet_send(fd);
354    return send_list(jcr, INC_LIST);
355 }
356
357
358 /*
359  * Send exclude list to File daemon 
360  */
361 int send_exclude_list(JCR *jcr)
362 {
363    BSOCK *fd = jcr->file_bsock;
364    fd->msglen = pm_strcpy(&fd->msg, exc);
365    bnet_send(fd);
366    return send_list(jcr, EXC_LIST);
367 }
368
369
370 /*
371  * Send bootstrap file if any to the File daemon.
372  *  This is used for restore and verify VolumeToCatalog
373  */
374 int send_bootstrap_file(JCR *jcr)
375 {
376    FILE *bs;
377    char buf[1000];
378    BSOCK *fd = jcr->file_bsock;
379    char *bootstrap = "bootstrap\n";
380
381    Dmsg1(400, "send_bootstrap_file: %s\n", jcr->RestoreBootstrap);
382    if (!jcr->RestoreBootstrap) {
383       return 1;
384    }
385    bs = fopen(jcr->RestoreBootstrap, "r");
386    if (!bs) {
387       Jmsg(jcr, M_FATAL, 0, _("Could not open bootstrap file %s: ERR=%s\n"), 
388          jcr->RestoreBootstrap, strerror(errno));
389       set_jcr_job_status(jcr, JS_ErrorTerminated);
390       return 0;
391    }
392    bnet_fsend(fd, bootstrap);
393    while (fgets(buf, sizeof(buf), bs)) {
394       bnet_fsend(fd, "%s", buf);       
395    }
396    bnet_sig(fd, BNET_EOD);
397    fclose(bs);
398    if (!response(jcr, fd, OKbootstrap, "Bootstrap", DISPLAY_ERROR)) {
399       set_jcr_job_status(jcr, JS_ErrorTerminated);
400       return 0;
401    }
402    return 1;
403 }
404
405 /*
406  * Send ClientRunBeforeJob and ClientRunAfterJob to File daemon
407  */
408 int send_run_before_and_after_commands(JCR *jcr)
409 {
410    POOLMEM *msg = get_pool_memory(PM_FNAME);
411    BSOCK *fd = jcr->file_bsock;
412    if (jcr->job->ClientRunBeforeJob) {
413       pm_strcpy(&msg, jcr->job->ClientRunBeforeJob);
414       bash_spaces(msg);
415       bnet_fsend(fd, runbefore, msg);
416       if (!response(jcr, fd, OKRunBefore, "ClientRunBeforeJob", DISPLAY_ERROR)) {
417          set_jcr_job_status(jcr, JS_ErrorTerminated);
418          free_pool_memory(msg);
419          return 0;
420       }
421    }
422    if (jcr->job->ClientRunAfterJob) {
423       fd->msglen = pm_strcpy(&msg, jcr->job->ClientRunAfterJob);
424       bash_spaces(msg);
425       bnet_fsend(fd, runafter, msg);
426       if (!response(jcr, fd, OKRunAfter, "ClientRunAfterJob", DISPLAY_ERROR)) {
427          set_jcr_job_status(jcr, JS_ErrorTerminated);
428          free_pool_memory(msg);
429          return 0;
430       }
431    }
432    free_pool_memory(msg);
433    return 1;
434 }
435
436
437 /* 
438  * Read the attributes from the File daemon for
439  * a Verify job and store them in the catalog.
440  */
441 int get_attributes_and_put_in_catalog(JCR *jcr)
442 {
443    BSOCK   *fd;
444    int n = 0;
445    ATTR_DBR ar;
446
447    fd = jcr->file_bsock;
448    jcr->jr.FirstIndex = 1;
449    memset(&ar, 0, sizeof(ar));
450    jcr->FileIndex = 0;
451
452    Dmsg0(120, "bdird: waiting to receive file attributes\n");
453    /* Pickup file attributes and signature */
454    while (!fd->errors && (n = bget_dirmsg(fd)) > 0) {
455
456    /*****FIXME****** improve error handling to stop only on 
457     * really fatal problems, or the number of errors is too
458     * large.
459     */
460       long file_index;
461       int stream, len;
462       char *attr, *p, *fn;
463       char Opts_SIG[MAXSTRING];      /* either Verify opts or MD5/SHA1 signature */
464       char SIG[MAXSTRING];
465
466       jcr->fname = check_pool_memory_size(jcr->fname, fd->msglen);
467       if ((len = sscanf(fd->msg, "%ld %d %s", &file_index, &stream, Opts_SIG)) != 3) {
468          Jmsg(jcr, M_FATAL, 0, _("<filed: bad attributes, expected 3 fields got %d\n\
469 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
470          set_jcr_job_status(jcr, JS_ErrorTerminated);
471          return 0;
472       }
473       p = fd->msg;
474       skip_nonspaces(&p);             /* skip FileIndex */
475       skip_spaces(&p);
476       skip_nonspaces(&p);             /* skip Stream */
477       skip_spaces(&p);
478       skip_nonspaces(&p);             /* skip Opts_SHA1 */   
479       p++;                            /* skip space */
480       fn = jcr->fname;
481       while (*p != 0) {
482          *fn++ = *p++;                /* copy filename */
483       }
484       *fn = *p++;                     /* term filename and point to attribs */
485       attr = p;
486
487       if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_UNIX_ATTRIBUTES_EX) {
488          jcr->JobFiles++;
489          jcr->FileIndex = file_index;
490          ar.attr = attr;
491          ar.fname = jcr->fname;
492          ar.FileIndex = file_index;
493          ar.Stream = stream;
494          ar.link = NULL;
495          ar.JobId = jcr->JobId;
496          ar.ClientId = jcr->ClientId;
497          ar.PathId = 0;
498          ar.FilenameId = 0;
499
500          Dmsg2(111, "dird<filed: stream=%d %s\n", stream, jcr->fname);
501          Dmsg1(120, "dird<filed: attr=%s\n", attr);
502
503          if (!db_create_file_attributes_record(jcr, jcr->db, &ar)) {
504             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
505             set_jcr_job_status(jcr, JS_Error);
506             continue;
507          }
508          jcr->FileId = ar.FileId;
509       } else if (stream == STREAM_MD5_SIGNATURE || stream == STREAM_SHA1_SIGNATURE) {
510          if (jcr->FileIndex != (uint32_t)file_index) {
511             Jmsg2(jcr, M_ERROR, 0, _("MD5/SHA1 index %d not same as attributes %d\n"),
512                file_index, jcr->FileIndex);
513             set_jcr_job_status(jcr, JS_Error);
514             continue;
515          }
516          db_escape_string(SIG, Opts_SIG, strlen(Opts_SIG));
517          Dmsg2(120, "SIGlen=%d SIG=%s\n", strlen(SIG), SIG);
518          if (!db_add_SIG_to_file_record(jcr, jcr->db, jcr->FileId, SIG, 
519                    stream==STREAM_MD5_SIGNATURE?MD5_SIG:SHA1_SIG)) {
520             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
521             set_jcr_job_status(jcr, JS_Error);
522          }
523       }
524       jcr->jr.JobFiles = jcr->JobFiles = file_index;
525       jcr->jr.LastIndex = file_index;
526    } 
527    if (is_bnet_error(fd)) {
528       Jmsg1(jcr, M_FATAL, 0, _("<filed: Network error getting attributes. ERR=%s\n"),
529                         bnet_strerror(fd));
530       set_jcr_job_status(jcr, JS_ErrorTerminated);
531       return 0;
532    }
533
534    set_jcr_job_status(jcr, JS_Terminated);
535    return 1;
536 }