]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/restore.c
fc356f09dc3e65a32c9a5a936d4e08cb107438cc
[bacula/bacula] / bacula / src / filed / restore.c
1 /*
2  *  Bacula File Daemon  restore.c Restorefiles.
3  *
4  *    Kern Sibbald, November MM
5  *
6  *   Version $Id$
7  *
8  */
9 /*
10    Copyright (C) 2000-2003 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "filed.h"
31
32 /* Data received from Storage Daemon */
33 static char rec_header[] = "rechdr %ld %ld %ld %ld %ld";
34
35 /* Forward referenced functions */
36
37 #define RETRY 10                      /* retry wait time */
38
39 /* 
40  * Restore the requested files.
41  * 
42  */
43 void do_restore(JCR *jcr)
44 {
45    int wherelen;
46    BSOCK *sd;
47    int32_t stream;
48    uint32_t size;
49    uint32_t VolSessionId, VolSessionTime;
50    int32_t file_index;
51    int extract = FALSE;
52    BFILE bfd;
53    int stat;
54    uint32_t total = 0;                /* Job total but only 32 bits for debug */
55    char *wbuf;                        /* write buffer */
56    uint32_t wsize;                    /* write size */
57    uint64_t fileAddr = 0;             /* file write address */
58    int non_support_data = 0;
59    int non_support_attr = 0;
60    int prog_name_msg = 0;
61    ATTR *attr;
62    
63    wherelen = strlen(jcr->where);
64
65    binit(&bfd);
66    sd = jcr->store_bsock;
67    set_jcr_job_status(jcr, JS_Running);
68
69    if (!bnet_set_buffer_size(sd, MAX_NETWORK_BUFFER_SIZE, BNET_SETBUF_READ)) {
70       set_jcr_job_status(jcr, JS_ErrorTerminated);
71       return;
72    }
73    jcr->buf_size = sd->msglen;
74
75    attr = new_attr();
76
77 #ifdef HAVE_LIBZ
78    uint32_t compress_buf_size = jcr->buf_size + 12 + ((jcr->buf_size+999) / 1000) + 100;
79    jcr->compress_buf = (char *)bmalloc(compress_buf_size);
80 #endif
81
82    /* 
83     * Get a record from the Storage daemon. We are guaranteed to 
84     *   receive records in the following order:
85     *   1. Stream record header
86     *   2. Stream data
87     *        a. Attributes (Unix or Win32)
88     *    or  b. File data for the file
89     *    or  c. Possibly MD5 or SHA1 record
90     *   3. Repeat step 1
91     */
92    while (bget_msg(sd) >= 0 && !job_canceled(jcr)) {
93       /*
94        * First we expect a Stream Record Header 
95        */
96       if (sscanf(sd->msg, rec_header, &VolSessionId, &VolSessionTime, &file_index,
97           &stream, &size) != 5) {
98          Jmsg1(jcr, M_FATAL, 0, _("Record header scan error: %s\n"), sd->msg);
99          goto bail_out;
100       }
101       Dmsg2(30, "Got hdr: FilInx=%d Stream=%d.\n", file_index, stream);
102
103       /* 
104        * Now we expect the Stream Data
105        */
106       if (bget_msg(sd) < 0) {
107          Jmsg1(jcr, M_FATAL, 0, _("Data record error. ERR=%s\n"), bnet_strerror(sd));
108          goto bail_out;
109       }
110       if (size != (uint32_t)sd->msglen) {
111          Jmsg2(jcr, M_FATAL, 0, _("Actual data size %d not same as header %d\n"), sd->msglen, size);
112          goto bail_out;
113       }
114       Dmsg1(30, "Got stream data, len=%d\n", sd->msglen);
115
116       /* File Attributes stream */
117       switch (stream) {
118       case STREAM_UNIX_ATTRIBUTES:
119       case STREAM_UNIX_ATTRIBUTES_EX:
120
121          Dmsg1(30, "Stream=Unix Attributes. extract=%d\n", extract);
122          /* If extracting, it was from previous stream, so
123           * close the output file.
124           */
125          if (extract) {
126             if (!is_bopen(&bfd)) {
127                Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open\n"));
128             }
129             set_attributes(jcr, attr, &bfd);
130             extract = FALSE;
131             Dmsg0(30, "Stop extracting.\n");
132          }
133
134          if (!unpack_attributes_record(jcr, stream, sd->msg, attr)) {
135             goto bail_out;
136          }
137          if (file_index != attr->file_index) {
138             Jmsg(jcr, M_FATAL, 0, _("Record header file index %ld not equal record index %ld\n"),
139                  file_index, attr->file_index);
140             Dmsg0(100, "File index error\n");
141             goto bail_out;
142          }
143             
144          Dmsg3(200, "File %s\nattrib=%s\nattribsEx=%s\n", attr->fname, 
145                attr->attr, attr->attrEx);
146
147          attr->data_stream = decode_stat(attr->attr, &attr->statp, &attr->LinkFI);
148
149          if (!is_stream_supported(attr->data_stream)) {
150             if (!non_support_data++) {
151                Jmsg(jcr, M_ERROR, 0, _("%s stream not supported on this Client.\n"),
152                   stream_to_ascii(attr->data_stream));
153             }
154             continue;
155          }
156
157          build_attr_output_fnames(jcr, attr);
158
159          jcr->num_files_examined++;
160
161          Dmsg1(30, "Outfile=%s\n", attr->ofname);
162          extract = FALSE;
163          stat = create_file(jcr, attr, &bfd, jcr->replace);
164          switch (stat) {
165          case CF_ERROR:
166          case CF_SKIP:
167             break;
168          case CF_EXTRACT:
169             extract = TRUE;
170             P(jcr->mutex);
171             pm_strcpy(&jcr->last_fname, attr->ofname);
172             V(jcr->mutex);
173             jcr->JobFiles++;
174             fileAddr = 0;
175             print_ls_output(jcr, attr);
176             /* Set attributes after file extracted */
177             break;
178          case CF_CREATED:
179             P(jcr->mutex);
180             pm_strcpy(&jcr->last_fname, attr->ofname);
181             V(jcr->mutex);
182             jcr->JobFiles++;
183             fileAddr = 0;
184             print_ls_output(jcr, attr);
185             /* set attributes now because file will not be extracted */
186             set_attributes(jcr, attr, &bfd);
187             break;
188          }  
189          break;
190
191       /* Windows Backup data stream */
192       case STREAM_WIN32_DATA:  
193          if (!is_win32_backup()) {
194             if (!non_support_data) {
195                Jmsg(jcr, M_ERROR, 0, _("%s stream not supported on this Client.\n"),
196                   stream_to_ascii(stream));
197             }
198             extract = FALSE;
199             non_support_data++;
200             continue;
201          }
202          goto extract_data;
203
204       /* Data stream */
205       case STREAM_FILE_DATA:
206       case STREAM_SPARSE_DATA:  
207
208 extract_data:
209          if (extract) {
210             if (stream == STREAM_SPARSE_DATA) {
211                ser_declare;
212                uint64_t faddr;
213                char ec1[50];
214
215                wbuf = sd->msg + SPARSE_FADDR_SIZE;
216                wsize = sd->msglen - SPARSE_FADDR_SIZE;
217                ser_begin(sd->msg, SPARSE_FADDR_SIZE);
218                unser_uint64(faddr);
219                if (fileAddr != faddr) {
220                   fileAddr = faddr;
221                   if (blseek(&bfd, (off_t)fileAddr, SEEK_SET) < 0) {
222                      Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
223                          edit_uint64(fileAddr, ec1), attr->ofname, berror(&bfd));
224                      extract = FALSE;
225                      continue;
226                   }
227                }
228             } else {
229                wbuf = sd->msg;
230                wsize = sd->msglen;
231             }
232             Dmsg2(30, "Write %u bytes, total before write=%u\n", wsize, total);
233             if ((uint32_t)bwrite(&bfd, wbuf, wsize) != wsize) {
234                Dmsg0(0, "===Write error===\n");
235                Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: ERR=%s\n"), attr->ofname, berror(&bfd));
236                extract = FALSE;
237                continue;
238             } 
239             total += wsize;
240             jcr->JobBytes += wsize;
241             jcr->ReadBytes += wsize;
242             fileAddr += wsize;
243          }
244          break;
245
246       /* Windows Backup GZIP data stream */
247       case STREAM_WIN32_GZIP_DATA:  
248          if (!is_win32_backup()) {
249             if (!non_support_attr) {
250                Jmsg(jcr, M_ERROR, 0, _("%s stream not supported on this Client.\n"),
251                   stream_to_ascii(stream));
252             }
253             extract = FALSE;
254             non_support_attr++;
255             continue;
256          }
257          /* Fall through desired */
258
259       /* GZIP data stream */
260       case STREAM_GZIP_DATA:
261       case STREAM_SPARSE_GZIP_DATA:  
262 #ifdef HAVE_LIBZ
263          if (extract) {
264             ser_declare;
265             uLong compress_len;
266             uint64_t faddr;
267             char ec1[50];
268             int stat;
269
270             if (stream == STREAM_SPARSE_GZIP_DATA) {
271                wbuf = sd->msg + SPARSE_FADDR_SIZE;
272                wsize = sd->msglen - SPARSE_FADDR_SIZE;
273                ser_begin(sd->msg, SPARSE_FADDR_SIZE);
274                unser_uint64(faddr);
275                if (fileAddr != faddr) {
276                   fileAddr = faddr;
277                   if (blseek(&bfd, (off_t)fileAddr, SEEK_SET) < 0) {
278                      Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
279                          edit_uint64(fileAddr, ec1), attr->ofname, berror(&bfd));
280                      extract = FALSE;
281                      continue;
282                   }
283                }
284             } else {
285                wbuf = sd->msg;
286                wsize = sd->msglen;
287             }
288             compress_len = compress_buf_size;
289             Dmsg2(100, "Comp_len=%d msglen=%d\n", compress_len, wsize);
290             if ((stat=uncompress((Byte *)jcr->compress_buf, &compress_len, 
291                   (const Byte *)wbuf, (uLong)wsize)) != Z_OK) {
292                Jmsg(jcr, M_ERROR, 0, _("Uncompression error. ERR=%d\n"), stat);
293                extract = FALSE;
294                continue;
295             }
296
297             Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
298             if ((uLong)bwrite(&bfd, jcr->compress_buf, compress_len) != compress_len) {
299                Dmsg0(0, "===Write error===\n");
300                Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: %s\n"), attr->ofname, berror(&bfd));
301                extract = FALSE;
302                continue;
303             }
304             total += compress_len;
305             jcr->JobBytes += compress_len;
306             jcr->ReadBytes += wsize;
307             fileAddr += compress_len;
308          }
309 #else
310          if (extract) {
311             Jmsg(jcr, M_ERROR, 0, _("GZIP data stream found, but GZIP not configured!\n"));
312             extract = FALSE;
313             continue;
314          }
315 #endif
316          break;
317
318       case STREAM_MD5_SIGNATURE:
319       case STREAM_SHA1_SIGNATURE:
320          break;
321
322       case STREAM_PROGRAM_NAMES:
323       case STREAM_PROGRAM_DATA:
324          if (!prog_name_msg) {
325             Pmsg0(000, "Got Program Name or Data Stream. Ignored.\n");
326             prog_name_msg++;
327          }
328          break;
329
330       default:
331          /* If extracting, wierd stream (not 1 or 2), close output file anyway */
332          if (extract) {
333             Dmsg1(30, "Found wierd stream %d\n", stream);
334             if (!is_bopen(&bfd)) {
335                Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open but is not.\n"));
336             }
337             set_attributes(jcr, attr, &bfd);
338             extract = FALSE;
339          }
340          Jmsg(jcr, M_ERROR, 0, _("Unknown stream=%d ignored. This shouldn't happen!\n"), stream);
341          Dmsg2(0, "None of above!!! stream=%d data=%s\n", stream,sd->msg);
342          break;
343       } /* end switch(stream) */
344
345    } /* end while get_msg() */
346
347    /* If output file is still open, it was the last one in the
348     * archive since we just hit an end of file, so close the file. 
349     */
350    if (is_bopen(&bfd)) {
351       set_attributes(jcr, attr, &bfd);
352    }
353    set_jcr_job_status(jcr, JS_Terminated);
354    goto ok_out;
355
356 bail_out:
357    set_jcr_job_status(jcr, JS_ErrorTerminated);
358 ok_out:
359    if (jcr->compress_buf) {
360       free(jcr->compress_buf);
361       jcr->compress_buf = NULL;
362    }
363    free_attr(attr);
364    Dmsg2(10, "End Do Restore. Files=%d Bytes=%" lld "\n", jcr->JobFiles,
365       jcr->JobBytes);
366    if (non_support_data > 1 || non_support_attr > 1) {
367       Jmsg(jcr, M_ERROR, 0, _("%d non-supported data streams and %d non-supported attrib streams ignored.\n"),
368          non_support_data, non_support_attr);
369    }
370 }