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