]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/restore.c
43ef5e9c837f6259b3bccc084b151872566d0ba2
[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, 2001, 2002 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 static void print_ls_output(JCR *jcr, char *fname, char *lname, int type, struct stat *statp);
37
38 #define RETRY 10                      /* retry wait time */
39
40 /* 
41  * Restore the requested files.
42  * 
43  */
44 void do_restore(JCR *jcr)
45 {
46    int wherelen;
47    BSOCK *sd;
48    POOLMEM *fname;                    /* original file name */
49    POOLMEM *ofile;                    /* output name with possible prefix */
50    POOLMEM *lname;                    /* link name */
51    int32_t stream;
52    uint32_t size;
53    uint32_t VolSessionId, VolSessionTime, file_index;
54    uint32_t record_file_index;
55    struct stat statp;
56    int extract = FALSE;
57    int ofd = -1;
58    int type;
59    uint32_t total = 0;
60    
61    wherelen = strlen(jcr->where);
62
63    sd = jcr->store_bsock;
64    jcr->JobStatus = JS_Running;
65
66    if (!bnet_set_buffer_size(sd, MAX_NETWORK_BUFFER_SIZE, BNET_SETBUF_READ)) {
67       return;
68    }
69    jcr->buf_size = sd->msglen;
70
71    fname = get_pool_memory(PM_FNAME);
72    ofile = get_pool_memory(PM_FNAME);
73    lname = get_pool_memory(PM_FNAME);
74
75 #ifdef HAVE_LIBZ
76    uint32_t compress_buf_size = jcr->buf_size + 12 + ((jcr->buf_size+999) / 1000) + 100;
77    jcr->compress_buf = (char *)bmalloc(compress_buf_size);
78 #endif
79
80    /* 
81     * Get a record from the Storage daemon
82     */
83    while (bnet_recv(sd) > 0) {
84       /*
85        * First we expect a Stream Record Header 
86        */
87       if (sscanf(sd->msg, rec_header, &VolSessionId, &VolSessionTime, &file_index,
88           &stream, &size) != 5) {
89          Jmsg1(jcr, M_FATAL, 0, _("Record header scan error: %s\n"), sd->msg);
90          goto bail_out;
91       }
92       Dmsg2(30, "Got hdr: FilInx=%d Stream=%d.\n", file_index, stream);
93
94       /* 
95        * Now we expect the Stream Data
96        */
97       if (bnet_recv(sd) < 0) {
98          Jmsg1(jcr, M_FATAL, 0, _("Data record error. ERR=%s\n"), bnet_strerror(sd));
99       }
100       if (size != ((uint32_t) sd->msglen)) {
101          Jmsg2(jcr, M_FATAL, 0, _("Actual data size %d not same as header %d\n"), sd->msglen, size);
102          goto bail_out;
103       }
104       Dmsg1(30, "Got stream data, len=%d\n", sd->msglen);
105
106       /* File Attributes stream */
107       if (stream == STREAM_UNIX_ATTRIBUTES) {
108          char *ap, *lp;
109
110          Dmsg1(30, "Stream=Unix Attributes. extract=%d\n", extract);
111          /* If extracting, it was from previous stream, so
112           * close the output file.
113           */
114          if (extract) {
115             if (ofd < 0) {
116                Emsg0(M_ABORT, 0, _("Logic error output file should be open\n"));
117             }
118             close(ofd);
119             ofd = -1;
120             extract = FALSE;
121             set_statp(jcr, fname, ofile, lname, type, &statp);
122             Dmsg0(30, "Stop extracting.\n");
123          }
124
125          if ((int)sizeof_pool_memory(fname) <  sd->msglen) {
126             fname = (char *) realloc_pool_memory(fname, sd->msglen + 1);
127          }
128          if (sizeof_pool_memory(ofile) < sizeof_pool_memory(fname) + wherelen + 1) {
129             ofile = (char *) realloc_pool_memory(ofile, sizeof_pool_memory(fname) + wherelen + 1);
130          }
131          if ((int)sizeof_pool_memory(lname) < sd->msglen) {
132             ofile = (char *) realloc_pool_memory(ofile, sd->msglen + 1);
133          }
134          *fname = 0;
135          *lname = 0;
136
137          /*              
138           * An Attributes record consists of:
139           *    File_index
140           *    Type   (FT_types)
141           *    Filename
142           *    Attributes
143           *    Link name (if file linked i.e. FT_LNK)
144           *
145           */
146          if (sscanf(sd->msg, "%d %d %s", &record_file_index, &type, fname) != 3) {
147             Jmsg(jcr, M_FATAL, 0, _("Error scanning record header: %s\n"), sd->msg);
148             Dmsg0(0, "\nError scanning header\n");
149             goto bail_out;
150          }
151          Dmsg3(30, "Got Attr: FilInx=%d type=%d fname=%s\n", record_file_index,
152             type, fname);
153          if (record_file_index != file_index) {
154             Jmsg(jcr, M_FATAL, 0, _("Record header file index %ld not equal record index %ld\n"),
155                file_index, record_file_index);
156             Dmsg0(0, "File index error\n");
157             goto bail_out;
158          }
159          ap = sd->msg;
160          /* Skip to attributes */
161          while (*ap++ != 0) {
162             ;
163          }
164          /* Skip to Link name */
165          if (type == FT_LNK) {
166             lp = ap;
167             while (*lp++ != 0) {
168                ;
169             }
170             strcat(lname, lp);        /* "save" link name */
171          } else {
172             *lname = 0;
173          }
174
175          decode_stat(ap, &statp);
176          /*
177           * Prepend the where directory so that the
178           * files are put where the user wants.
179           *
180           * We do a little jig here to handle Win32 files with
181           * a drive letter.  
182           *   If where is null and we are running on a win32 client,
183           *      change nothing.
184           *   Otherwise, if the second character of the filename is a
185           *   colon (:), change it into a slash (/) -- this creates
186           *   a reasonable pathname on most systems.
187           */
188          if (jcr->where[0] == 0 && win32_client) {
189             strcpy(ofile, fname);
190          } else {
191             strcpy(ofile, jcr->where);
192             if (fname[1] == ':') {
193                fname[1] = '/';
194                strcat(ofile, fname);
195                fname[1] = ':';
196             } else {
197                strcat(ofile, fname);
198             }
199          }
200
201          Dmsg1(30, "Outfile=%s\n", ofile);
202          print_ls_output(jcr, ofile, lname, type, &statp);
203
204          extract = create_file(jcr, fname, ofile, lname, type, &statp, &ofd);
205          Dmsg1(40, "Extract=%d\n", extract);
206          if (extract) {
207             jcr->JobFiles++;
208          }
209          jcr->num_files_examined++;
210
211       /* Data stream */
212       } else if (stream == STREAM_FILE_DATA) {
213          if (extract) {
214             Dmsg2(30, "Write %d bytes, total before write=%d\n", sd->msglen, total);
215             if (write(ofd, sd->msg, sd->msglen) != sd->msglen) {
216                Dmsg0(0, "===Write error===\n");
217                Jmsg2(jcr, M_ERROR, 0, "Write error on %s: %s\n", ofile, strerror(errno));
218                goto bail_out;
219             }
220             total += sd->msglen;
221             jcr->JobBytes += sd->msglen;
222          }
223         
224       /* GZIP data stream */
225       } else if (stream == STREAM_GZIP_DATA) {
226 #ifdef HAVE_LIBZ
227          if (extract) {
228             uLong compress_len;
229             int stat;
230
231             compress_len = compress_buf_size;
232             Dmsg2(100, "Comp_len=%d msglen=%d\n", compress_len, sd->msglen);
233             if ((stat=uncompress((Byte *)jcr->compress_buf, &compress_len, 
234                   (const Byte *)sd->msg, (uLong)sd->msglen)) != Z_OK) {
235                Jmsg(jcr, M_ERROR, 0, _("Uncompression error. ERR=%d\n"), stat);
236                goto bail_out;
237             }
238
239             Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
240             if ((uLong)write(ofd, jcr->compress_buf, compress_len) != compress_len) {
241                Dmsg0(0, "===Write error===\n");
242                Jmsg2(jcr, M_ERROR, 0, "Write error on %s: %s\n", ofile, strerror(errno));
243                goto bail_out;
244             }
245             total += compress_len;
246             jcr->JobBytes += compress_len;
247          }
248 #else
249          if (extract) {
250             Jmsg(jcr, M_ERROR, 0, "GZIP data stream found, but GZIP not configured!\n");
251             goto bail_out;
252          }
253 #endif
254       /* If extracting, wierd stream (not 1 or 2), close output file anyway */
255       } else if (extract) {
256          Dmsg1(30, "Found wierd stream %d\n", stream);
257          if (ofd < 0) {
258             Emsg0(M_ABORT, 0, _("Logic error output file should be open\n"));
259          }
260          close(ofd);
261          ofd = -1;
262          extract = FALSE;
263          set_statp(jcr, fname, ofile, lname, type, &statp);
264       } else if (stream != STREAM_MD5_SIGNATURE) {
265          Dmsg2(0, "None of above!!! stream=%d data=%s\n", stream,sd->msg);
266       }
267    }
268
269    /* If output file is still open, it was the last one in the
270     * archive since we just hit an end of file, so close the file. 
271     */
272    if (ofd >= 0) {
273       close(ofd);
274       set_statp(jcr, fname, ofile, lname, type, &statp);
275    }
276
277 bail_out:
278    if (jcr->compress_buf) {
279       free(jcr->compress_buf);
280       jcr->compress_buf = NULL;
281    }
282    free_pool_memory(fname);
283    free_pool_memory(ofile);
284    free_pool_memory(lname);
285    Dmsg2(10, "End Do Restore. Files=%d Bytes=%" lld "\n", jcr->JobFiles,
286       jcr->JobBytes);
287 }          
288
289 extern char *getuser(uid_t uid);
290 extern char *getgroup(gid_t gid);
291
292 /*
293  * Print an ls style message, also send INFO
294  */
295 static void print_ls_output(JCR *jcr, char *fname, char *lname, int type, struct stat *statp)
296 {
297    /* ********FIXME******** make memory pool */
298    char buf[1000]; 
299    char *p, *f;
300    int n;
301
302    p = encode_mode(statp->st_mode, buf);
303    n = sprintf(p, "  %2d ", (uint32_t)statp->st_nlink);
304    p += n;
305    n = sprintf(p, "%-8.8s %-8.8s", getuser(statp->st_uid), getgroup(statp->st_gid));
306    p += n;
307    n = sprintf(p, "%8" lld " ", (uint64_t)statp->st_size);
308    p += n;
309    p = encode_time(statp->st_ctime, p);
310    *p++ = ' ';
311    *p++ = ' ';
312    for (f=fname; *f; )
313       *p++ = *f++;
314    if (type == FT_LNK) {
315       *p++ = ' ';
316       *p++ = '-';
317       *p++ = '>';
318       *p++ = ' ';
319       /* Copy link name */
320       for (f=lname; *f; )
321          *p++ = *f++;
322    }
323    *p++ = '\n';
324    *p = 0;
325    Dmsg0(20, buf);
326    Jmsg(jcr, M_INFO, 0, buf);
327 }