]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/fd_cmds.c
5af2618dde5e4719d87e264cc1b24a56b19301c0
[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
120    fd = jcr->file_bsock;
121    fileset = jcr->fileset;
122
123    fd->msglen = sprintf(fd->msg, inc);
124    bnet_send(fd);
125    for (int i=0; i < fileset->num_includes; i++) {
126       BPIPE *bpipe;
127       FILE *ffd;
128       char buf[1000];
129       char *p;
130       int optlen, stat;
131       INCEXE *ie;
132
133       ie = fileset->include_items[i];
134       for (int j=0; j<ie->num_names; j++) {
135          p = ie->name_list[j];
136          switch (*p++) {
137          case '|':
138             fd->msg = edit_job_codes(jcr, fd->msg, p, "");
139             bpipe = open_bpipe(fd->msg, 0, "r");
140             if (!bpipe) {
141                Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
142                   p, strerror(errno));
143                goto bail_out;
144             }
145             /* Copy File options */
146             if (ie->num_opts) {
147                strcpy(buf, ie->opts_list[0]->opts);
148                strcat(buf, " ");
149             } else {
150                strcpy(buf, "0 ");
151             }
152             optlen = strlen(buf);
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             if (ie->num_opts) {
175                strcpy(buf, ie->opts_list[0]->opts);
176                strcat(buf, " ");
177             } else {
178                strcpy(buf, "0 ");
179             }
180             optlen = strlen(buf);
181             while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
182                fd->msglen = Mmsg(&fd->msg, "%s", buf);
183                if (!bnet_send(fd)) {
184                   Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
185                   goto bail_out;
186                }
187             }
188             fclose(ffd);
189             break;
190          default:
191             if (ie->num_opts) {
192                pm_strcpy(&fd->msg, ie->opts_list[0]->opts);
193                pm_strcat(&fd->msg, " ");
194             } else {
195                pm_strcpy(&fd->msg, "0 ");
196             }
197             pm_strcat(&fd->msg, ie->name_list[j]);
198             Dmsg1(000, "Include name=%s\n", fd->msg);
199             fd->msglen = strlen(fd->msg);
200             if (!bnet_send(fd)) {
201                Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
202                goto bail_out;
203             }
204             break;
205          }
206       }
207    }
208    bnet_sig(fd, BNET_EOD);            /* end of data */
209    if (!response(fd, OKinc, "Include")) {
210       goto bail_out;
211    }
212    return 1;
213
214 bail_out:
215    set_jcr_job_status(jcr, JS_ErrorTerminated);
216    return 0;
217
218 }
219
220 /*
221  * Send exclude list to File daemon 
222  */
223 int send_exclude_list(JCR *jcr)
224 {
225    FILESET *fileset;
226    BSOCK   *fd;
227
228    fd = jcr->file_bsock;
229    fileset = jcr->fileset;
230
231    fd->msglen = sprintf(fd->msg, exc);
232    bnet_send(fd);
233    for (int i=0; i < fileset->num_excludes; i++) {
234       INCEXE *ie;
235       ie = fileset->exclude_items[i];
236       for (int j=0; j<ie->num_names; j++) {
237          pm_strcpy(&fd->msg, ie->name_list[j]);
238          fd->msglen = strlen(fd->msg);
239          Dmsg1(200, "Exclude name: %s\n", fd->msg);
240          if (!bnet_send(fd)) {
241             Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
242             set_jcr_job_status(jcr, JS_ErrorTerminated);
243             return 0;
244          }
245       }
246    }
247    bnet_sig(fd, BNET_EOD);
248    if (!response(fd, OKexc, "Exclude")) {
249       set_jcr_job_status(jcr, JS_ErrorTerminated);
250       return 0;
251    }
252    return 1;
253 }
254
255
256 /* 
257  * Read the attributes from the File daemon for
258  * a Verify job and store them in the catalog.
259  */
260 int get_attributes_and_put_in_catalog(JCR *jcr)
261 {
262    BSOCK   *fd;
263    int n = 0;
264    ATTR_DBR ar;
265
266    fd = jcr->file_bsock;
267    jcr->jr.FirstIndex = 1;
268    memset(&ar, 0, sizeof(ar));
269    jcr->FileIndex = 0;
270
271    Dmsg0(120, "bdird: waiting to receive file attributes\n");
272    /* Pickup file attributes and signature */
273    while (!fd->errors && (n = bget_msg(fd, 0)) > 0) {
274
275    /*****FIXME****** improve error handling to stop only on 
276     * really fatal problems, or the number of errors is too
277     * large.
278     */
279       long file_index;
280       int stream, len;
281       char *attr, *p, *fn;
282       char Opts_SIG[MAXSTRING];      /* either Verify opts or MD5/SHA1 signature */
283       char SIG[MAXSTRING];
284
285       jcr->fname = check_pool_memory_size(jcr->fname, fd->msglen);
286       if ((len = sscanf(fd->msg, "%ld %d %s", &file_index, &stream, Opts_SIG)) != 3) {
287          Jmsg(jcr, M_FATAL, 0, _("<filed: bad attributes, expected 3 fields got %d\n\
288 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
289          set_jcr_job_status(jcr, JS_ErrorTerminated);
290          return 0;
291       }
292       p = fd->msg;
293       skip_nonspaces(&p);             /* skip FileIndex */
294       skip_spaces(&p);
295       skip_nonspaces(&p);             /* skip Stream */
296       skip_spaces(&p);
297       skip_nonspaces(&p);             /* skip Opts_SHA1 */   
298       p++;                            /* skip space */
299       fn = jcr->fname;
300       while (*p != 0) {
301          *fn++ = *p++;                /* copy filename */
302       }
303       *fn = *p++;                     /* term filename and point to attribs */
304       attr = p;
305
306       if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_WIN32_ATTRIBUTES) {
307          jcr->JobFiles++;
308          jcr->FileIndex = file_index;
309          ar.attr = attr;
310          ar.fname = jcr->fname;
311          ar.FileIndex = file_index;
312          ar.Stream = stream;
313          ar.link = NULL;
314          ar.JobId = jcr->JobId;
315          ar.ClientId = jcr->ClientId;
316          ar.PathId = 0;
317          ar.FilenameId = 0;
318
319          Dmsg2(111, "dird<filed: stream=%d %s\n", stream, jcr->fname);
320          Dmsg1(120, "dird<filed: attr=%s\n", attr);
321
322          if (!db_create_file_attributes_record(jcr, jcr->db, &ar)) {
323             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
324             set_jcr_job_status(jcr, JS_Error);
325             continue;
326          }
327          jcr->FileId = ar.FileId;
328       } else if (stream == STREAM_MD5_SIGNATURE || stream == STREAM_SHA1_SIGNATURE) {
329          if (jcr->FileIndex != (uint32_t)file_index) {
330             Jmsg2(jcr, M_ERROR, 0, _("MD5/SHA1 index %d not same as attributes %d\n"),
331                file_index, jcr->FileIndex);
332             set_jcr_job_status(jcr, JS_Error);
333             continue;
334          }
335          db_escape_string(SIG, Opts_SIG, strlen(Opts_SIG));
336          Dmsg2(120, "SIGlen=%d SIG=%s\n", strlen(SIG), SIG);
337          if (!db_add_SIG_to_file_record(jcr, jcr->db, jcr->FileId, SIG, 
338                    stream==STREAM_MD5_SIGNATURE?MD5_SIG:SHA1_SIG)) {
339             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
340             set_jcr_job_status(jcr, JS_Error);
341          }
342       }
343       jcr->jr.JobFiles = jcr->JobFiles = file_index;
344       jcr->jr.LastIndex = file_index;
345    } 
346    if (is_bnet_error(fd)) {
347       Jmsg1(jcr, M_FATAL, 0, _("<filed: Network error getting attributes. ERR=%s\n"),
348                         bnet_strerror(fd));
349       set_jcr_job_status(jcr, JS_ErrorTerminated);
350       return 0;
351    }
352
353    set_jcr_job_status(jcr, JS_Terminated);
354    return 1;
355 }