]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/fd_cmds.c
Add Raw file save/restore
[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       jcr->JobStatus = 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    jcr->JobStatus = JS_Running;
77
78    if (!authenticate_file_daemon(jcr)) {
79       jcr->JobStatus = 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    Dmsg1(110, ">filed: %s", fd->msg);
89    if (bnet_recv(fd) > 0) {
90        Dmsg1(110, "<filed: %s", fd->msg);
91        if (strncmp(fd->msg, OKjob, strlen(OKjob)) != 0) {
92           Jmsg(jcr, M_FATAL, 0, _("File daemon rejected Job command: %s\n"), fd->msg);
93           jcr->JobStatus = JS_ErrorTerminated;
94           return 0;
95        } else {
96           /***** ***FIXME***** update Client Uname */
97        }
98    } else {
99       Jmsg(jcr, M_FATAL, 0, _("<filed: bad response to JobId command: %s\n"),
100          bnet_strerror(fd));
101       jcr->JobStatus = JS_ErrorTerminated;
102       return 0;
103    }
104    return 1;
105 }
106
107
108 /*
109  * Send include list to File daemon
110  */
111 int send_include_list(JCR *jcr)
112 {
113    FILESET *fileset;
114    BSOCK   *fd;
115    int i;
116    char *msgsave;
117
118    fd = jcr->file_bsock;
119    fileset = jcr->fileset;
120
121    msgsave = fd->msg;
122
123    fd->msglen = sprintf(fd->msg, inc);
124    bnet_send(fd);
125    for (i=0; i < fileset->num_includes; i++) {
126       fd->msglen = strlen(fileset->include_array[i]);
127       Dmsg1(120, "dird>filed: include file: %s\n", fileset->include_array[i]);
128       fd->msg = fileset->include_array[i];
129       if (!bnet_send(fd)) {
130          fd->msg = msgsave;
131          Emsg0(M_FATAL, 0, _(">filed: write error on socket\n"));
132          jcr->JobStatus = JS_ErrorTerminated;
133          return 0;
134       }
135    }
136    bnet_sig(fd, BNET_EOD);            /* end of data */
137    fd->msg = msgsave;
138    if (!response(fd, OKinc, "Include")) {
139       jcr->JobStatus = JS_ErrorTerminated;
140       return 0;
141    }
142    return 1;
143 }
144
145 /*
146  * Send exclude list to File daemon 
147  */
148 int send_exclude_list(JCR *jcr)
149 {
150    FILESET *fileset;
151    BSOCK   *fd;
152    int i;
153    char *msgsave;
154
155    fd = jcr->file_bsock;
156    fileset = jcr->fileset;
157
158    msgsave = fd->msg;
159    fd->msglen = sprintf(fd->msg, exc);
160    bnet_send(fd);
161    for (i=0; i < fileset->num_excludes; i++) {
162       fd->msglen = strlen(fileset->exclude_array[i]);
163       Dmsg1(120, "dird>filed: exclude file: %s\n", fileset->exclude_array[i]);
164       fd->msg = fileset->exclude_array[i];
165       if (!bnet_send(fd)) {
166          Emsg0(M_FATAL, 0, _(">filed: write error on socket\n"));
167          jcr->JobStatus = JS_ErrorTerminated;
168          return 0;
169       }
170    }
171    bnet_sig(fd, BNET_EOD);
172    fd->msg = msgsave;
173    if (!response(fd, OKexc, "Exclude")) {
174       jcr->JobStatus = JS_ErrorTerminated;
175       return 0;
176    }
177    return 1;
178 }
179
180
181 /* 
182  * Read the attributes from the File daemon for
183  * a Verify job and store them in the catalog.
184  */
185 int get_attributes_and_put_in_catalog(JCR *jcr)
186 {
187    BSOCK   *fd;
188    int n = 0;
189    ATTR_DBR ar;
190
191    fd = jcr->file_bsock;
192    jcr->jr.FirstIndex = 1;
193    memset(&ar, 0, sizeof(ar));
194    jcr->FileIndex = 0;
195
196    Dmsg0(120, "bdird: waiting to receive file attributes\n");
197    /* Pickup file attributes and signature */
198    while (!fd->errors && (n = bget_msg(fd, 0)) > 0) {
199
200    /*****FIXME****** improve error handling to stop only on 
201     * really fatal problems, or the number of errors is too
202     * large.
203     */
204       long file_index;
205       int stream, len;
206       char *attr, *p, *fn;
207       char Opts_MD5[MAXSTRING];      /* either Verify opts or MD5 signature */
208       char MD5[MAXSTRING];
209
210       jcr->fname = check_pool_memory_size(jcr->fname, fd->msglen);
211       if ((len = sscanf(fd->msg, "%ld %d %s", &file_index, &stream, Opts_MD5)) != 3) {
212          Jmsg(jcr, M_FATAL, 0, _("<filed: bad attributes, expected 3 fields got %d\n\
213 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
214          jcr->JobStatus = JS_ErrorTerminated;
215          return 0;
216       }
217       p = fd->msg;
218       skip_nonspaces(&p);             /* skip FileIndex */
219       skip_spaces(&p);
220       skip_nonspaces(&p);             /* skip Stream */
221       skip_spaces(&p);
222       skip_nonspaces(&p);             /* skip Opts_MD5 */   
223       p++;                            /* skip space */
224       fn = jcr->fname;
225       while (*p != 0) {
226          *fn++ = *p++;                /* copy filename */
227       }
228       *fn = *p++;                     /* term filename and point to attribs */
229       attr = p;
230
231       if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_WIN32_ATTRIBUTES) {
232          jcr->JobFiles++;
233          jcr->FileIndex = file_index;
234          ar.attr = attr;
235          ar.fname = jcr->fname;
236          ar.FileIndex = file_index;
237          ar.Stream = stream;
238          ar.link = NULL;
239          ar.JobId = jcr->JobId;
240          ar.ClientId = jcr->ClientId;
241          ar.PathId = 0;
242          ar.FilenameId = 0;
243
244          Dmsg2(111, "dird<filed: stream=%d %s\n", stream, jcr->fname);
245          Dmsg1(120, "dird<filed: attr=%s\n", attr);
246
247          if (!db_create_file_attributes_record(jcr->db, &ar)) {
248             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
249             jcr->JobStatus = JS_Error;
250             continue;
251          }
252          jcr->FileId = ar.FileId;
253       } else if (stream == STREAM_MD5_SIGNATURE) {
254          if (jcr->FileIndex != (uint32_t)file_index) {
255             Jmsg2(jcr, M_ERROR, 0, _("MD5 index %d not same as attributes %d\n"),
256                file_index, jcr->FileIndex);
257             jcr->JobStatus = JS_Error;
258             continue;
259          }
260          db_escape_string(MD5, Opts_MD5, strlen(Opts_MD5));
261          Dmsg2(120, "MD5len=%d MD5=%s\n", strlen(MD5), MD5);
262          if (!db_add_MD5_to_file_record(jcr->db, jcr->FileId, MD5)) {
263             Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
264             jcr->JobStatus = JS_Error;
265          }
266       }
267       jcr->jr.JobFiles = jcr->JobFiles = file_index;
268       jcr->jr.LastIndex = file_index;
269    } 
270    if (is_bnet_error(fd)) {
271       Jmsg1(jcr, M_FATAL, 0, _("<filed: Network error getting attributes. ERR=%s\n"),
272                         bnet_strerror(fd));
273       jcr->JobStatus = JS_ErrorTerminated;
274       return 0;
275    }
276
277    jcr->JobStatus = JS_Terminated;
278    return 1;
279 }