]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/restore.c
Fix breaks in bextract + in restore print only volumes to be actually used
[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       /* Data stream */
192       case STREAM_FILE_DATA:
193       case STREAM_SPARSE_DATA:  
194       case STREAM_WIN32_DATA:  
195
196          if (extract) {
197             if (stream == STREAM_SPARSE_DATA) {
198                ser_declare;
199                uint64_t faddr;
200                char ec1[50];
201
202                wbuf = sd->msg + SPARSE_FADDR_SIZE;
203                wsize = sd->msglen - SPARSE_FADDR_SIZE;
204                ser_begin(sd->msg, SPARSE_FADDR_SIZE);
205                unser_uint64(faddr);
206                if (fileAddr != faddr) {
207                   fileAddr = faddr;
208                   if (blseek(&bfd, (off_t)fileAddr, SEEK_SET) < 0) {
209                      Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
210                          edit_uint64(fileAddr, ec1), attr->ofname, berror(&bfd));
211                      extract = FALSE;
212                      continue;
213                   }
214                }
215             } else {
216                wbuf = sd->msg;
217                wsize = sd->msglen;
218             }
219             Dmsg2(30, "Write %u bytes, total before write=%u\n", wsize, total);
220             if ((uint32_t)bwrite(&bfd, wbuf, wsize) != wsize) {
221                Dmsg0(0, "===Write error===\n");
222                Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: ERR=%s\n"), attr->ofname, berror(&bfd));
223                extract = FALSE;
224                continue;
225             } 
226             total += wsize;
227             jcr->JobBytes += wsize;
228             jcr->ReadBytes += wsize;
229             fileAddr += wsize;
230          }
231          break;
232
233       /* GZIP data stream */
234       case STREAM_GZIP_DATA:
235       case STREAM_SPARSE_GZIP_DATA:  
236       case STREAM_WIN32_GZIP_DATA:  
237 #ifdef HAVE_LIBZ
238          if (extract) {
239             uLong compress_len;
240             int stat;
241
242             if (stream == STREAM_SPARSE_GZIP_DATA) {
243                ser_declare;
244                uint64_t faddr;
245                char ec1[50];
246                wbuf = sd->msg + SPARSE_FADDR_SIZE;
247                wsize = sd->msglen - SPARSE_FADDR_SIZE;
248                ser_begin(sd->msg, SPARSE_FADDR_SIZE);
249                unser_uint64(faddr);
250                if (fileAddr != faddr) {
251                   fileAddr = faddr;
252                   if (blseek(&bfd, (off_t)fileAddr, SEEK_SET) < 0) {
253                      Jmsg3(jcr, M_ERROR, 0, _("Seek to %s error on %s: ERR=%s\n"),
254                          edit_uint64(fileAddr, ec1), attr->ofname, berror(&bfd));
255                      extract = FALSE;
256                      continue;
257                   }
258                }
259             } else {
260                wbuf = sd->msg;
261                wsize = sd->msglen;
262             }
263             compress_len = compress_buf_size;
264             Dmsg2(100, "Comp_len=%d msglen=%d\n", compress_len, wsize);
265             if ((stat=uncompress((Byte *)jcr->compress_buf, &compress_len, 
266                   (const Byte *)wbuf, (uLong)wsize)) != Z_OK) {
267                Jmsg(jcr, M_ERROR, 0, _("Uncompression error. ERR=%d\n"), stat);
268                extract = FALSE;
269                continue;
270             }
271
272             Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
273             if ((uLong)bwrite(&bfd, jcr->compress_buf, compress_len) != compress_len) {
274                Dmsg0(0, "===Write error===\n");
275                Jmsg2(jcr, M_ERROR, 0, _("Write error on %s: %s\n"), attr->ofname, berror(&bfd));
276                extract = FALSE;
277                continue;
278             }
279             total += compress_len;
280             jcr->JobBytes += compress_len;
281             jcr->ReadBytes += wsize;
282             fileAddr += compress_len;
283          }
284 #else
285          if (extract) {
286             Jmsg(jcr, M_ERROR, 0, _("GZIP data stream found, but GZIP not configured!\n"));
287             extract = FALSE;
288             continue;
289          }
290 #endif
291          break;
292
293       case STREAM_MD5_SIGNATURE:
294       case STREAM_SHA1_SIGNATURE:
295          break;
296
297       case STREAM_PROGRAM_NAMES:
298       case STREAM_PROGRAM_DATA:
299          if (!prog_name_msg) {
300             Pmsg0(000, "Got Program Name or Data Stream. Ignored.\n");
301             prog_name_msg++;
302          }
303          break;
304
305       default:
306          /* If extracting, wierd stream (not 1 or 2), close output file anyway */
307          if (extract) {
308             Dmsg1(30, "Found wierd stream %d\n", stream);
309             if (!is_bopen(&bfd)) {
310                Jmsg0(jcr, M_ERROR, 0, _("Logic error output file should be open but is not.\n"));
311             }
312             set_attributes(jcr, attr, &bfd);
313             extract = FALSE;
314          }
315          Jmsg(jcr, M_ERROR, 0, _("Unknown stream=%d ignored. This shouldn't happen!\n"), stream);
316          Dmsg2(0, "None of above!!! stream=%d data=%s\n", stream,sd->msg);
317          break;
318       } /* end switch(stream) */
319
320    } /* end while get_msg() */
321
322    /* If output file is still open, it was the last one in the
323     * archive since we just hit an end of file, so close the file. 
324     */
325    if (is_bopen(&bfd)) {
326       set_attributes(jcr, attr, &bfd);
327    }
328    set_jcr_job_status(jcr, JS_Terminated);
329    goto ok_out;
330
331 bail_out:
332    set_jcr_job_status(jcr, JS_ErrorTerminated);
333 ok_out:
334    if (jcr->compress_buf) {
335       free(jcr->compress_buf);
336       jcr->compress_buf = NULL;
337    }
338    free_attr(attr);
339    Dmsg2(10, "End Do Restore. Files=%d Bytes=%" lld "\n", jcr->JobFiles,
340       jcr->JobBytes);
341    if (non_support_data > 1 || non_support_attr > 1) {
342       Jmsg(jcr, M_ERROR, 0, _("%d non-supported data streams and %d non-supported attrib streams ignored.\n"),
343          non_support_data, non_support_attr);
344    }
345 }