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