]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/fd_cmds.c
SHA1 implementation
[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
43
44 /* Responses received from File daemon */
45 static char OKinc[]      = "2000 OK include\n";
46 static char OKexc[]      = "2000 OK exclude\n";
47 static char OKjob[]      = "2000 OK Job";
48
49 /* Forward referenced functions */
50
51 /* External functions */
52 extern int debug_level;
53 extern DIRRES *director; 
54 extern int FDConnectTimeout;
55
56 /*
57  * Open connection with File daemon. 
58  * Try connecting every 10 seconds, give up after 1 hour.
59  */
60
61 int connect_to_file_daemon(JCR *jcr, int retry_interval, int max_retry_time,
62                            int verbose)
63 {
64    BSOCK   *fd;
65
66    fd = bnet_connect(jcr, retry_interval, max_retry_time,
67         _("File daemon"), jcr->client->address, 
68         NULL, jcr->client->FDport, verbose);
69    if (fd == NULL) {
70       set_jcr_job_status(jcr, JS_ErrorTerminated);
71       return 0;
72    }
73    Dmsg0(10, "Opened connection with File daemon\n");
74    fd->res = (RES *)jcr->client;      /* save resource in BSOCK */
75    jcr->file_bsock = fd;
76    set_jcr_job_status(jcr, JS_Running);
77
78    if (!authenticate_file_daemon(jcr)) {
79       set_jcr_job_status(jcr, JS_ErrorTerminated);
80       return 0;
81    }
82         
83    /*
84     * Now send JobId and authorization key
85     */
86    bnet_fsend(fd, jobcmd, jcr->JobId, jcr->Job, jcr->VolSessionId, 
87       jcr->VolSessionTime, jcr->sd_auth_key);
88    if (strcmp(jcr->sd_auth_key, "dummy") != 0) {
89       memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
90    }
91    Dmsg1(100, ">filed: %s", fd->msg);
92    if (bnet_recv(fd) > 0) {
93        Dmsg1(110, "<filed: %s", fd->msg);
94        if (strncmp(fd->msg, OKjob, strlen(OKjob)) != 0) {
95           Jmsg(jcr, M_FATAL, 0, _("File daemon \"%s\" rejected Job command: %s\n"), 
96              jcr->client->hdr.name, fd->msg);
97           set_jcr_job_status(jcr, JS_ErrorTerminated);
98           return 0;
99        } else {
100           /***** ***FIXME***** update Client Uname */
101        }
102    } else {
103       Jmsg(jcr, M_FATAL, 0, _("<filed: bad response to JobId command: %s\n"),
104          bnet_strerror(fd));
105       set_jcr_job_status(jcr, JS_ErrorTerminated);
106       return 0;
107    }
108    return 1;
109 }
110
111
112 /*
113  * Send include list to File daemon
114  */
115 int send_include_list(JCR *jcr)
116 {
117    FILESET *fileset;
118    BSOCK   *fd;
119    int i, j;
120    char *msgsave;
121
122    fd = jcr->file_bsock;
123    fileset = jcr->fileset;
124
125    fd->msglen = sprintf(fd->msg, inc);
126    bnet_send(fd);
127    for (i=0; i < fileset->num_includes; i++) {
128       BPIPE *bpipe;
129       FILE *ffd;
130       char buf[1000];
131       char *o, *p, *q;
132       int optlen, stat;
133
134       Dmsg1(120, "dird>filed: include file: %s\n", fileset->include_array[i]);
135       o = p = fileset->include_array[i];
136       skip_nonspaces(&p);             /* skip options */
137       skip_spaces(&p);
138       q = p;                          /* save end of options */
139       switch (*p++) {
140       case '|':
141          fd->msg = edit_job_codes(jcr, fd->msg, p, "");
142          bpipe = open_bpipe(fd->msg, 0, "r");
143          if (!bpipe) {
144             Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
145                p, strerror(errno));
146             goto bail_out;
147          }
148          /* Copy File options */
149          optlen = q - o;
150          for (j=0; j < optlen; j++) {
151             buf[j] = *o++;
152          }
153          while (fgets(buf+optlen, sizeof(buf)-optlen, bpipe->rfd)) {
154             fd->msglen = Mmsg(&fd->msg, "%s", buf);
155             Dmsg2(200, "Including len=%d: %s", fd->msglen, fd->msg);
156             if (!bnet_send(fd)) {
157                Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
158                goto bail_out;
159             }
160          }
161          if ((stat=close_bpipe(bpipe)) != 0) {
162             Jmsg(jcr, M_FATAL, 0, _("Error running program: %s. RtnStat=%d ERR=%s\n"),
163                p, stat, strerror(errno));
164             goto bail_out;
165          }
166          break;
167       case '<':
168          if ((ffd = fopen(p, "r")) == NULL) {
169             Jmsg(jcr, M_FATAL, 0, _("Cannot open included file: %s. ERR=%s\n"),
170                p, strerror(errno));
171             goto bail_out;
172          }
173          /* Copy File options */
174          optlen = q - o;
175          for (j=0; j < optlen; j++) {
176             buf[j] = *o++;
177          }
178          while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
179             fd->msglen = Mmsg(&fd->msg, "%s", buf);
180             if (!bnet_send(fd)) {
181                Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
182                goto bail_out;
183             }
184          }
185          fclose(ffd);
186          break;
187       default:
188          msgsave = fd->msg;
189          fd->msg = fileset->include_array[i];
190          fd->msglen = strlen(fileset->include_array[i]);
191          if (!bnet_send(fd)) {
192             Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
193             goto bail_out;
194          }
195         fd->msg = msgsave;
196          break;
197       }
198    }
199    bnet_sig(fd, BNET_EOD);            /* end of data */
200    if (!response(fd, OKinc, "Include")) {
201       goto bail_out;
202    }
203    return 1;
204
205 bail_out:
206    set_jcr_job_status(jcr, JS_ErrorTerminated);
207    return 0;
208
209 }
210
211 /*
212  * Send exclude list to File daemon 
213  */
214 int send_exclude_list(JCR *jcr)
215 {
216    FILESET *fileset;
217    BSOCK   *fd;
218    int i;
219    char *msgsave;
220
221    fd = jcr->file_bsock;
222    fileset = jcr->fileset;
223
224    msgsave = fd->msg;
225    fd->msglen = sprintf(fd->msg, exc);
226    bnet_send(fd);
227    for (i=0; i < fileset->num_excludes; i++) {
228       fd->msglen = strlen(fileset->exclude_array[i]);
229       Dmsg1(120, "dird>filed: exclude file: %s\n", fileset->exclude_array[i]);
230       fd->msg = fileset->exclude_array[i];
231       if (!bnet_send(fd)) {
232          Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
233          set_jcr_job_status(jcr, JS_ErrorTerminated);
234          return 0;
235       }
236    }
237    bnet_sig(fd, BNET_EOD);
238    fd->msg = msgsave;
239    if (!response(fd, OKexc, "Exclude")) {
240       set_jcr_job_status(jcr, JS_ErrorTerminated);
241       return 0;
242    }
243    return 1;
244 }
245
246
247 /* 
248  * Read the attributes from the File daemon for
249  * a Verify job and store them in the catalog.
250  */
251 int get_attributes_and_put_in_catalog(JCR *jcr)
252 {
253    BSOCK   *fd;
254    int n = 0;
255    ATTR_DBR ar;
256
257    fd = jcr->file_bsock;
258    jcr->jr.FirstIndex = 1;
259    memset(&ar, 0, sizeof(ar));
260    jcr->FileIndex = 0;
261
262    Dmsg0(120, "bdird: waiting to receive file attributes\n");
263    /* Pickup file attributes and signature */
264    while (!fd->errors && (n = bget_msg(fd, 0)) > 0) {
265
266    /*****FIXME****** improve error handling to stop only on 
267     * really fatal problems, or the number of errors is too
268     * large.
269     */
270       long file_index;
271       int stream, len;
272       char *attr, *p, *fn;
273       char Opts_SIG[MAXSTRING];      /* either Verify opts or MD5/SHA1 signature */
274       char SIG[MAXSTRING];
275
276       jcr->fname = check_pool_memory_size(jcr->fname, fd->msglen);
277       if ((len = sscanf(fd->msg, "%ld %d %s", &file_index, &stream, Opts_SIG)) != 3) {
278          Jmsg(jcr, M_FATAL, 0, _("<filed: bad attributes, expected 3 fields got %d\n\
279 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
280          set_jcr_job_status(jcr, JS_ErrorTerminated);
281          return 0;
282       }
283       p = fd->msg;
284       skip_nonspaces(&p);             /* skip FileIndex */
285       skip_spaces(&p);
286       skip_nonspaces(&p);             /* skip Stream */
287       skip_spaces(&p);
288       skip_nonspaces(&p);             /* skip Opts_SHA1 */   
289       p++;                            /* skip space */
290       fn = jcr->fname;
291       while (*p != 0) {
292          *fn++ = *p++;                /* copy filename */
293       }
294       *fn = *p++;                     /* term filename and point to attribs */
295       attr = p;
296
297       if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_WIN32_ATTRIBUTES) {
298          jcr->JobFiles++;
299          jcr->FileIndex = file_index;
300          ar.attr = attr;
301          ar.fname = jcr->fname;
302          ar.FileIndex = file_index;
303          ar.Stream = stream;
304          ar.link = NULL;
305          ar.JobId = jcr->JobId;
306          ar.ClientId = jcr->ClientId;
307          ar.PathId = 0;
308          ar.FilenameId = 0;
309
310          Dmsg2(111, "dird<filed: stream=%d %s\n", stream, jcr->fname);
311          Dmsg1(120, "dird<filed: attr=%s\n", attr);
312
313          if (!db_create_file_attributes_record(jcr, jcr->db, &ar)) {
314             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
315             set_jcr_job_status(jcr, JS_Error);
316             continue;
317          }
318          jcr->FileId = ar.FileId;
319       } else if (stream == STREAM_MD5_SIGNATURE || stream == STREAM_SHA1_SIGNATURE) {
320          if (jcr->FileIndex != (uint32_t)file_index) {
321             Jmsg2(jcr, M_ERROR, 0, _("MD5/SHA1 index %d not same as attributes %d\n"),
322                file_index, jcr->FileIndex);
323             set_jcr_job_status(jcr, JS_Error);
324             continue;
325          }
326          db_escape_string(SIG, Opts_SIG, strlen(Opts_SIG));
327          Dmsg2(120, "SIGlen=%d SIG=%s\n", strlen(SIG), SIG);
328          if (!db_add_SIG_to_file_record(jcr, jcr->db, jcr->FileId, SIG, 
329                    stream==STREAM_MD5_SIGNATURE?MD5_SIG:SHA1_SIG)) {
330             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
331             set_jcr_job_status(jcr, JS_Error);
332          }
333       }
334       jcr->jr.JobFiles = jcr->JobFiles = file_index;
335       jcr->jr.LastIndex = file_index;
336    } 
337    if (is_bnet_error(fd)) {
338       Jmsg1(jcr, M_FATAL, 0, _("<filed: Network error getting attributes. ERR=%s\n"),
339                         bnet_strerror(fd));
340       set_jcr_job_status(jcr, JS_ErrorTerminated);
341       return 0;
342    }
343
344    set_jcr_job_status(jcr, JS_Terminated);
345    return 1;
346 }