]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/restore.c
Fix tree code from bashing restore args + pass prefix links to FD + sort Console...
[bacula/bacula] / bacula / src / dird / restore.c
1 /*
2  *   Bacula Director -- restore.c -- responsible for restoring files
3  *
4  *     Kern Sibbald, November MM
5  *
6  *    This routine is run as a separate thread.  
7  * 
8  * Current implementation is Catalog verification only (i.e. no
9  *  verification versus tape).
10  *
11  *  Basic tasks done here:
12  *     Open DB
13  *     Open Message Channel with Storage daemon to tell him a job will be starting.
14  *     Open connection with File daemon and pass him commands
15  *       to do the restore.
16  *     Update the DB according to what files where restored????
17  *
18  *   Version $Id$
19  */
20
21 /*
22    Copyright (C) 2000-2003 Kern Sibbald and John Walker
23
24    This program is free software; you can redistribute it and/or
25    modify it under the terms of the GNU General Public License as
26    published by the Free Software Foundation; either version 2 of
27    the License, or (at your option) any later version.
28
29    This program is distributed in the hope that it will be useful,
30    but WITHOUT ANY WARRANTY; without even the implied warranty of
31    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
32    General Public License for more details.
33
34    You should have received a copy of the GNU General Public
35    License along with this program; if not, write to the Free
36    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
37    MA 02111-1307, USA.
38
39  */
40
41 #include "bacula.h"
42 #include "dird.h"
43
44 /* Commands sent to File daemon */
45 static char restorecmd[]   = "restore replace=%c prelinks=%d where=%s\n";
46 static char storaddr[]     = "storage address=%s port=%d ssl=0\n";
47 static char sessioncmd[]   = "session %s %ld %ld %ld %ld %ld %ld\n";  
48
49 /* Responses received from File daemon */
50 static char OKrestore[]   = "2000 OK restore\n";
51 static char OKstore[]     = "2000 OK storage\n";
52 static char OKsession[]   = "2000 OK session\n";
53
54 /* Forward referenced functions */
55 static void restore_cleanup(JCR *jcr, int status);
56
57 /* External functions */
58
59 /* 
60  * Do a restore of the specified files
61  *    
62  *  Returns:  0 on failure
63  *            1 on success
64  */
65 int do_restore(JCR *jcr) 
66 {
67    BSOCK   *fd;
68    JOB_DBR rjr;                       /* restore job record */
69
70    if (!get_or_create_client_record(jcr)) {
71       restore_cleanup(jcr, JS_ErrorTerminated);
72       return 0;
73    }
74
75    memset(&rjr, 0, sizeof(rjr));
76    jcr->jr.Level = 'F';            /* Full restore */
77    jcr->jr.StartTime = jcr->start_time;
78    if (!db_update_job_start_record(jcr, jcr->db, &jcr->jr)) {
79       Jmsg(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
80       restore_cleanup(jcr, JS_ErrorTerminated);
81       return 0;
82    }
83    Dmsg0(20, "Updated job start record\n");
84    jcr->fname = (char *) get_pool_memory(PM_FNAME);
85
86    Dmsg1(20, "RestoreJobId=%d\n", jcr->job->RestoreJobId);
87
88    /* 
89     * The following code is kept temporarily for compatibility.
90     * It is the predecessor to the Bootstrap file.
91     */
92    if (!jcr->RestoreBootstrap) {
93       /*
94        * Find Job Record for Files to be restored
95        */
96       if (jcr->RestoreJobId != 0) {
97          rjr.JobId = jcr->RestoreJobId;     /* specified by UA */
98       } else {
99          rjr.JobId = jcr->job->RestoreJobId; /* specified by Job Resource */
100       }
101       if (!db_get_job_record(jcr, jcr->db, &rjr)) {
102          Jmsg2(jcr, M_FATAL, 0, _("Cannot get job record id=%d %s"), rjr.JobId,
103             db_strerror(jcr->db));
104          restore_cleanup(jcr, JS_ErrorTerminated);
105          return 0;
106       }
107
108       /*
109        * Now find the Volumes we will need for the Restore
110        */
111       jcr->VolumeName[0] = 0;
112       if (!db_get_job_volume_names(jcr, jcr->db, rjr.JobId, &jcr->VolumeName) ||
113            jcr->VolumeName[0] == 0) {
114          Jmsg(jcr, M_FATAL, 0, _("Cannot find Volume Name for restore Job %d. %s"), 
115             rjr.JobId, db_strerror(jcr->db));
116          restore_cleanup(jcr, JS_ErrorTerminated);
117          return 0;
118       }
119       Dmsg1(20, "Got job Volume Names: %s\n", jcr->VolumeName);
120    }
121       
122
123    /* Print Job Start message */
124    Jmsg(jcr, M_INFO, 0, _("Start Restore Job %s\n"), jcr->Job);
125
126    /*
127     * Open a message channel connection with the Storage
128     * daemon. This is to let him know that our client
129     * will be contacting him for a backup  session.
130     *
131     */
132    Dmsg0(10, "Open connection with storage daemon\n");
133    set_jcr_job_status(jcr, JS_Blocked);
134    /*
135     * Start conversation with Storage daemon  
136     */
137    if (!connect_to_storage_daemon(jcr, 10, SDConnectTimeout, 1)) {
138       restore_cleanup(jcr, JS_ErrorTerminated);
139       return 0;
140    }
141    /*
142     * Now start a job with the Storage daemon
143     */
144    if (!start_storage_daemon_job(jcr)) {
145       restore_cleanup(jcr, JS_ErrorTerminated);
146       return 0;
147    }
148    /*
149     * Now start a Storage daemon message thread
150     */
151    if (!start_storage_daemon_message_thread(jcr)) {
152       restore_cleanup(jcr, JS_ErrorTerminated);
153       return 0;
154    }
155    Dmsg0(50, "Storage daemon connection OK\n");
156
157    /* 
158     * Start conversation with File daemon  
159     */
160    if (!connect_to_file_daemon(jcr, 10, FDConnectTimeout, 1)) {
161       restore_cleanup(jcr, JS_ErrorTerminated);
162       return 0;
163    }
164
165    fd = jcr->file_bsock;
166    set_jcr_job_status(jcr, JS_Running);
167
168    if (!send_include_list(jcr)) {
169       restore_cleanup(jcr, JS_ErrorTerminated);
170       return 0;
171    }
172
173    if (!send_exclude_list(jcr)) {
174       restore_cleanup(jcr, JS_ErrorTerminated);
175       return 0;
176    }
177
178    /* 
179     * send Storage daemon address to the File daemon,
180     *   then wait for File daemon to make connection
181     *   with Storage daemon.
182     */
183    set_jcr_job_status(jcr, JS_Blocked);
184    if (jcr->store->SDDport == 0) {
185       jcr->store->SDDport = jcr->store->SDport;
186    }
187    bnet_fsend(fd, storaddr, jcr->store->address, jcr->store->SDDport);
188    Dmsg1(6, "dird>filed: %s\n", fd->msg);
189    if (!response(jcr, fd, OKstore, "Storage", DISPLAY_ERROR)) {
190       restore_cleanup(jcr, JS_ErrorTerminated);
191       return 0;
192    }
193    set_jcr_job_status(jcr, JS_Running);
194
195    /* 
196     * Send the bootstrap file -- what Volumes/files to restore
197     */
198    if (!send_bootstrap_file(jcr)) {
199       restore_cleanup(jcr, JS_ErrorTerminated);
200       return 0;
201    }
202
203    /* 
204     * The following code is deprecated   
205     */
206    if (!jcr->RestoreBootstrap) {
207       /*
208        * Pass the VolSessionId, VolSessionTime, Start and
209        * end File and Blocks on the session command.
210        */
211       bnet_fsend(fd, sessioncmd, 
212                 jcr->VolumeName,
213                 rjr.VolSessionId, rjr.VolSessionTime, 
214                 rjr.StartFile, rjr.EndFile, rjr.StartBlock, 
215                 rjr.EndBlock);
216       if (!response(jcr, fd, OKsession, "Session", DISPLAY_ERROR)) {
217          restore_cleanup(jcr, JS_ErrorTerminated);
218          return 0;
219       }
220    }
221
222    /* Send restore command */
223    char replace, *where;
224
225    if (jcr->replace != 0) {
226       replace = jcr->replace;
227    } else if (jcr->job->replace != 0) {
228       replace = jcr->job->replace;
229    } else {
230       replace = REPLACE_ALWAYS;       /* always replace */
231    }
232    if (jcr->where) {
233       where = jcr->where;             /* override */
234    } else if (jcr->job->RestoreWhere) {
235       where = jcr->job->RestoreWhere; /* no override take from job */
236    } else {
237       where = "";                     /* None */
238    }
239    jcr->prefix_links = jcr->job->PrefixLinks;
240    bash_spaces(where);
241    bnet_fsend(fd, restorecmd, replace, jcr->prefix_links, where);
242    unbash_spaces(where);
243
244    if (!response(jcr, fd, OKrestore, "Restore", DISPLAY_ERROR)) {
245       restore_cleanup(jcr, JS_ErrorTerminated);
246       return 0;
247    }
248
249    /* Wait for Job Termination */
250    int stat = wait_for_job_termination(jcr);
251    restore_cleanup(jcr, stat);
252
253    return 1;
254 }
255
256 /*
257  * Release resources allocated during restore.
258  *
259  */
260 static void restore_cleanup(JCR *jcr, int TermCode)
261 {
262    char sdt[MAX_TIME_LENGTH], edt[MAX_TIME_LENGTH];
263    char ec1[30], ec2[30];
264    char term_code[100], fd_term_msg[100], sd_term_msg[100];
265    char *term_msg;
266    int msg_type;
267    double kbps;
268
269    Dmsg0(20, "In restore_cleanup\n");
270    set_jcr_job_status(jcr, TermCode);
271
272    update_job_end_record(jcr);
273
274    msg_type = M_INFO;                 /* by default INFO message */
275    switch (TermCode) {
276    case JS_Terminated:
277       term_msg = _("Restore OK");
278       break;
279    case JS_FatalError:
280    case JS_ErrorTerminated:
281       term_msg = _("*** Restore Error ***"); 
282       msg_type = M_ERROR;          /* Generate error message */
283       if (jcr->store_bsock) {
284          bnet_sig(jcr->store_bsock, BNET_TERMINATE);
285          pthread_cancel(jcr->SD_msg_chan);
286       }
287       break;
288    case JS_Canceled:
289       term_msg = _("Restore Canceled");
290       if (jcr->store_bsock) {
291          bnet_sig(jcr->store_bsock, BNET_TERMINATE);
292          pthread_cancel(jcr->SD_msg_chan);
293       }
294       break;
295    default:
296       term_msg = term_code;
297       sprintf(term_code, _("Inappropriate term code: %c\n"), TermCode);
298       break;
299    }
300    bstrftime(sdt, sizeof(sdt), jcr->jr.StartTime);
301    bstrftime(edt, sizeof(edt), jcr->jr.EndTime);
302    if (jcr->jr.EndTime - jcr->jr.StartTime > 0) {
303       kbps = (double)jcr->jr.JobBytes / (1000 * (jcr->jr.EndTime - jcr->jr.StartTime));
304    } else {
305       kbps = 0;
306    }
307    if (kbps < 0.05) {
308       kbps = 0;
309    }
310
311    jobstatus_to_ascii(jcr->FDJobStatus, fd_term_msg, sizeof(fd_term_msg));
312    jobstatus_to_ascii(jcr->SDJobStatus, sd_term_msg, sizeof(sd_term_msg));
313
314    Jmsg(jcr, msg_type, 0, _("Bacula " VERSION " (" LSMDATE "): %s\n\
315 JobId:                  %d\n\
316 Job:                    %s\n\
317 Client:                 %s\n\
318 Start time:             %s\n\
319 End time:               %s\n\
320 Files Restored:         %s\n\
321 Bytes Restored:         %s\n\
322 Rate:                   %.1f KB/s\n\
323 Non-fatal FD Errors:    %d\n\
324 FD termination status:  %s\n\
325 SD termination status:  %s\n\
326 Termination:            %s\n\n"),
327         edt,
328         jcr->jr.JobId,
329         jcr->jr.Job,
330         jcr->client->hdr.name,
331         sdt,
332         edt,
333         edit_uint64_with_commas((uint64_t)jcr->jr.JobFiles, ec1),
334         edit_uint64_with_commas(jcr->jr.JobBytes, ec2),
335         (float)kbps,
336         jcr->Errors,
337         fd_term_msg,
338         sd_term_msg,
339         term_msg);
340
341    Dmsg0(20, "Leaving restore_cleanup\n");
342 }