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