]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/bextract.c
c5a5554d7622626af6eb2599b1ff90fdda5670ad
[bacula/bacula] / bacula / src / stored / bextract.c
1 /*
2  *
3  *  Dumb program to extract files from a Bacula backup.
4  *
5  *   Kern E. Sibbald
6  *
7  *   Version $Id$
8  *
9  */
10 /*
11    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "stored.h"
32 #include "findlib/find.h"
33
34 #ifdef HAVE_CYGWIN
35 int win32_client = 1;
36 #else
37 int win32_client = 0;
38 #endif
39
40
41 static void do_extract(char *fname);
42 static void record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec);
43
44 static DEVICE *dev = NULL;
45 static int ofd = -1;
46 static JCR *jcr;
47 static FF_PKT my_ff;
48 static FF_PKT *ff = &my_ff;
49 static BSR *bsr = NULL;
50 static int extract = FALSE;
51 static long record_file_index;
52 static long total = 0;
53 static POOLMEM *fname;                    /* original file name */
54 static POOLMEM *ofile;                    /* output name with prefix */
55 static POOLMEM *lname;                    /* link name */
56 static POOLMEM *attribsEx;                /* extended attributes (Win32) */
57 static char *where;
58 static int wherelen;                      /* prefix length */
59 static uint32_t num_files = 0;
60 static struct stat statp;
61 static uint32_t compress_buf_size = 70000;
62 static POOLMEM *compress_buf;
63 static int type;
64 static int stream;
65 static int prog_name_msg = 0;
66
67 static char *wbuf;                    /* write buffer address */
68 static uint32_t wsize;                /* write size */
69 static uint64_t fileAddr = 0;         /* file write address */
70
71 #define CONFIG_FILE "bacula-sd.conf"
72 char *configfile;
73
74
75 static void usage()
76 {
77    fprintf(stderr,
78 "\nVersion: " VERSION " (" DATE ")\n\n"
79 "Usage: bextract [-d debug_level] <bacula-archive> <directory-to-store-files>\n"
80 "       -b <file>       specify a bootstrap file\n"
81 "       -c <file>       specify a configuration file\n"
82 "       -dnn            set debug level to nn\n"
83 "       -e <file>       exclude list\n"
84 "       -i <file>       include list\n"
85 "       -?              print this message\n\n");
86    exit(1);
87 }
88
89
90 int main (int argc, char *argv[])
91 {
92    int ch;   
93    FILE *fd;
94    char line[1000];
95    int got_inc = FALSE;
96
97    working_directory = "/tmp";
98    my_name_is(argc, argv, "bextract");
99    init_msg(NULL, NULL);              /* setup message handler */
100
101    memset(ff, 0, sizeof(FF_PKT));
102    init_include_exclude_files(ff);
103
104    while ((ch = getopt(argc, argv, "b:c:d:e:i:?")) != -1) {
105       switch (ch) {
106          case 'b':                    /* bootstrap file */
107             bsr = parse_bsr(NULL, optarg);
108 //          dump_bsr(bsr);
109             break;
110
111          case 'c':                    /* specify config file */
112             if (configfile != NULL) {
113                free(configfile);
114             }
115             configfile = bstrdup(optarg);
116             break;
117
118          case 'd':                    /* debug level */
119             debug_level = atoi(optarg);
120             if (debug_level <= 0)
121                debug_level = 1; 
122             break;
123
124          case 'e':                    /* exclude list */
125             if ((fd = fopen(optarg, "r")) == NULL) {
126                Pmsg2(0, "Could not open exclude file: %s, ERR=%s\n",
127                   optarg, strerror(errno));
128                exit(1);
129             }
130             while (fgets(line, sizeof(line), fd) != NULL) {
131                strip_trailing_junk(line);
132                Dmsg1(900, "add_exclude %s\n", line);
133                add_fname_to_exclude_list(ff, line);
134             }
135             fclose(fd);
136             break;
137
138          case 'i':                    /* include list */
139             if ((fd = fopen(optarg, "r")) == NULL) {
140                Pmsg2(0, "Could not open include file: %s, ERR=%s\n",
141                   optarg, strerror(errno));
142                exit(1);
143             }
144             while (fgets(line, sizeof(line), fd) != NULL) {
145                strip_trailing_junk(line);
146                Dmsg1(900, "add_include %s\n", line);
147                add_fname_to_include_list(ff, 0, line);
148             }
149             fclose(fd);
150             got_inc = TRUE;
151             break;
152
153          case '?':
154          default:
155             usage();
156
157       }  
158    }
159    argc -= optind;
160    argv += optind;
161
162    if (argc != 2) {
163       Pmsg0(0, "Wrong number of arguments: \n");
164       usage();
165    }
166
167    if (configfile == NULL) {
168       configfile = bstrdup(CONFIG_FILE);
169    }
170
171    parse_config(configfile);
172
173    if (!got_inc) {                            /* If no include file, */
174       add_fname_to_include_list(ff, 0, "/");  /*   include everything */
175    }
176
177    where = argv[1];
178    do_extract(argv[0]);
179
180    if (bsr) {
181       free_bsr(bsr);
182    }
183    return 0;
184 }
185
186 static void do_extract(char *devname)
187 {
188
189    jcr = setup_jcr("bextract", devname, bsr);
190    dev = setup_to_access_device(jcr, 1);    /* acquire for read */
191    if (!dev) {
192       exit(1);
193    }
194
195    /* Make sure where directory exists and that it is a directory */
196    if (stat(where, &statp) < 0) {
197       Emsg2(M_ERROR_TERM, 0, "Cannot stat %s. It must exist. ERR=%s\n",
198          where, strerror(errno));
199    }
200    if (!S_ISDIR(statp.st_mode)) {
201       Emsg1(M_ERROR_TERM, 0, "%s must be a directory.\n", where);
202    }
203
204    wherelen = strlen(where);
205    fname = get_pool_memory(PM_FNAME);
206    ofile = get_pool_memory(PM_FNAME);
207    lname = get_pool_memory(PM_FNAME);
208    attribsEx = get_pool_memory(PM_FNAME);
209
210    compress_buf = get_memory(compress_buf_size);
211
212    read_records(jcr, dev, record_cb, mount_next_read_volume);
213    /* If output file is still open, it was the last one in the
214     * archive since we just hit an end of file, so close the file. 
215     */
216    if (ofd >= 0) {
217       set_attributes(jcr, fname, ofile, lname, type, stream, &statp,
218                      attribsEx, &ofd);
219    }
220    release_device(jcr, dev);
221
222    free_pool_memory(fname);
223    free_pool_memory(ofile);
224    free_pool_memory(lname);
225    free_pool_memory(compress_buf);
226    term_dev(dev);
227    free_jcr(jcr);
228    printf("%u files restored.\n", num_files);
229    return;
230 }
231
232 /*
233  * Called here for each record from read_records()
234  */
235 static void record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec)
236 {
237
238    if (rec->FileIndex < 0) {
239       return;                         /* we don't want labels */
240    }
241
242    /* File Attributes stream */
243    if (rec->Stream == STREAM_UNIX_ATTRIBUTES || rec->Stream == STREAM_WIN32_ATTRIBUTES) {
244       char *ap, *lp, *fp, *apex;
245
246       stream = rec->Stream;
247
248       /* If extracting, it was from previous stream, so
249        * close the output file.
250        */
251       if (extract) {
252          if (ofd < 0) {
253             Emsg0(M_ERROR, 0, "Logic error output file should be open\n");
254          }
255          extract = FALSE;
256          set_attributes(jcr, fname, ofile, lname, type, stream, &statp,
257                         attribsEx, &ofd);
258       }
259
260       if (sizeof_pool_memory(fname) < rec->data_len) {
261          fname = realloc_pool_memory(fname, rec->data_len + 1);
262       }
263       if (sizeof_pool_memory(ofile) < rec->data_len + wherelen + 1) {
264          ofile = realloc_pool_memory(ofile, rec->data_len + wherelen + 1);
265       }
266       if (sizeof_pool_memory(lname) < rec->data_len) {
267          lname = realloc_pool_memory(lname, rec->data_len + wherelen + 1);
268       }
269       *fname = 0;
270       *lname = 0;
271
272       /*              
273        * An Attributes record consists of:
274        *    File_index
275        *    Type   (FT_types)
276        *    Filename
277        *    Attributes
278        *    Link name (if file linked i.e. FT_LNK)
279        *    Extended Attributes (Win32) 
280        *
281        */
282       sscanf(rec->data, "%ld %d", &record_file_index, &type);
283       if (record_file_index != rec->FileIndex)
284          Emsg2(M_ERROR_TERM, 0, "Record header file index %ld not equal record index %ld\n",
285             rec->FileIndex, record_file_index);
286       ap = rec->data;
287       while (*ap++ != ' ')         /* skip record file index */
288          ;
289       while (*ap++ != ' ')         /* skip type */
290          ;
291       /* Save filename and position to attributes */
292       fp = fname;
293       while (*ap != 0) {
294          *fp++  = *ap++;
295       }
296       *fp = *ap++;                 /* terminate filename & point to attribs */
297
298       /* Skip to Link name */
299       if (type == FT_LNK || type == FT_LNKSAVED) {
300          lp = ap;
301          while (*lp++ != 0) {
302             ;
303          }
304       } else {
305          lp = "";
306       }
307
308       if (rec->Stream == STREAM_WIN32_ATTRIBUTES) {
309          apex = ap;                   /* start at attributes */
310          while (*apex++ != 0) {       /* skip attributes */
311             ;
312          }
313          while (*apex++ != 0) {      /* skip link name */
314             ;
315          }
316          pm_strcpy(&attribsEx, apex);  /* make a copy of Extended attributes */
317       } else {
318          *attribsEx = 0;              /* no extended attributes */
319       }
320
321          
322       if (file_is_included(ff, fname) && !file_is_excluded(ff, fname)) {
323
324          decode_stat(ap, &statp);
325          /*
326           * Prepend the where directory so that the
327           * files are put where the user wants.
328           *
329           * We do a little jig here to handle Win32 files with
330           *   a drive letter -- we simply strip the drive: from
331           *   every filename if a prefix is supplied.
332           */
333          if (where[0] == 0) {
334             strcpy(ofile, fname);
335             strcpy(lname, lp);
336          } else {
337             char *fn;
338             strcpy(ofile, where);
339             if (win32_client && fname[1] == ':') {
340                fn = fname+2;          /* skip over drive: */
341             } else {
342                fn = fname;            /* take whole name */
343             }
344             /* Ensure where is terminated with a slash */
345             if (where[wherelen-1] != '/' && fn[0] != '/') {
346                strcat(ofile, "/");
347             }
348             strcat(ofile, fn);        /* copy rest of name */
349             /* Fixup link name */
350             if (type == FT_LNK || type == FT_LNKSAVED) {
351                if (lp[0] == '/') {      /* if absolute path */
352                   strcpy(lname, where);
353                }       
354                if (win32_client && lp[1] == ':') {
355                   strcat(lname, lp+2); /* copy rest of name */
356                } else {
357                   strcat(lname, lp);   /* On Unix systems we take everything */
358                }
359             }
360          }
361
362          /*          Pmsg1(000, "Restoring: %s\n", ofile); */
363
364          extract = create_file(jcr, fname, ofile, lname, type, stream,
365                                &statp, attribsEx, &ofd);
366          num_files++;
367
368          if (extract) {
369              print_ls_output(ofile, lname, type, &statp);   
370              fileAddr = 0;
371          }
372       }
373
374    /* Data stream and extracting */
375    } else if (rec->Stream == STREAM_FILE_DATA || rec->Stream == STREAM_SPARSE_DATA) {
376       if (extract) {
377          if (rec->Stream == STREAM_SPARSE_DATA) {
378             ser_declare;
379             uint64_t faddr;
380             wbuf = rec->data + SPARSE_FADDR_SIZE;
381             wsize = rec->data_len - SPARSE_FADDR_SIZE;
382             ser_begin(rec->data, SPARSE_FADDR_SIZE);
383             unser_uint64(faddr);
384             if (fileAddr != faddr) {
385                fileAddr = faddr;
386                if (lseek(ofd, (off_t)fileAddr, SEEK_SET) < 0) {
387                   Emsg2(M_ERROR_TERM, 0, _("Seek error on %s: %s\n"), ofile, strerror(errno));
388                }
389             }
390          } else {
391             wbuf = rec->data;
392             wsize = rec->data_len;
393          }
394          total += wsize;
395          Dmsg2(8, "Write %u bytes, total=%u\n", wsize, total);
396          if ((uint32_t)write(ofd, wbuf, wsize) != wsize) {
397             Emsg2(M_ERROR_TERM, 0, _("Write error on %s: %s\n"), ofile, strerror(errno));
398          }
399          fileAddr += wsize;
400       }
401
402    } else if (rec->Stream == STREAM_GZIP_DATA || rec->Stream == STREAM_SPARSE_GZIP_DATA) {
403 #ifdef HAVE_LIBZ
404       if (extract) {
405          uLongf compress_len;
406          int stat;
407
408          if (rec->Stream == STREAM_SPARSE_GZIP_DATA) {
409             ser_declare;
410             uint64_t faddr;
411             wbuf = rec->data + SPARSE_FADDR_SIZE;
412             wsize = rec->data_len - SPARSE_FADDR_SIZE;
413             ser_begin(rec->data, SPARSE_FADDR_SIZE);
414             unser_uint64(faddr);
415             if (fileAddr != faddr) {
416                fileAddr = faddr;
417                if (lseek(ofd, (off_t)fileAddr, SEEK_SET) < 0) {
418                   Emsg2(M_ERROR, 0, _("Seek error on %s: %s\n"), ofile, strerror(errno));
419                }
420             }
421          } else {
422             wbuf = rec->data;
423             wsize = rec->data_len;
424          }
425          compress_len = compress_buf_size;
426          if ((stat=uncompress((Bytef *)compress_buf, &compress_len, 
427                (const Bytef *)wbuf, (uLong)wsize) != Z_OK)) {
428             Emsg1(M_ERROR_TERM, 0, _("Uncompression error. ERR=%d\n"), stat);
429          }
430
431          Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
432          if ((uLongf)write(ofd, compress_buf, (size_t)compress_len) != compress_len) {
433             Pmsg0(0, "===Write error===\n");
434             Emsg2(M_ERROR_TERM, 0, _("Write error on %s: %s\n"), ofile, strerror(errno));
435          }
436          total += compress_len;
437          fileAddr += compress_len;
438          Dmsg2(100, "Compress len=%d uncompressed=%d\n", rec->data_len,
439             compress_len);
440       }
441 #else
442       if (extract) {
443          Emsg0(M_ERROR, 0, "GZIP data stream found, but GZIP not configured!\n");
444       }
445 #endif
446
447
448    /* If extracting, wierd stream (not 1 or 2), close output file anyway */
449    } else if (extract) {
450       if (ofd < 0) {
451          Emsg0(M_ERROR, 0, "Logic error output file should be open\n");
452       }
453       extract = FALSE;
454       set_attributes(jcr, fname, ofile, lname, type, stream, &statp,
455                      attribsEx, &ofd);
456    } else if (rec->Stream == STREAM_PROGRAM_NAMES || rec->Stream == STREAM_PROGRAM_DATA) {
457       if (!prog_name_msg) {
458          Pmsg0(000, "Got Program Name or Data Stream. Ignored.\n");
459          prog_name_msg = 1;
460       }
461    } else if (rec->Stream != STREAM_MD5_SIGNATURE) {
462       Pmsg2(0, "None of above!!! stream=%d data=%s\n", rec->Stream, rec->data);
463    }
464 }
465
466
467
468
469 /* Dummies to replace askdir.c */
470 int     dir_get_volume_info(JCR *jcr, int writing) { return 1;}
471 int     dir_find_next_appendable_volume(JCR *jcr) { return 1;}
472 int     dir_update_volume_info(JCR *jcr, VOLUME_CAT_INFO *vol, int relabel) { return 1; }
473 int     dir_create_jobmedia_record(JCR *jcr) { return 1; }
474 int     dir_ask_sysop_to_mount_next_volume(JCR *jcr, DEVICE *dev) { return 1; }
475 int     dir_update_file_attributes(JCR *jcr, DEV_RECORD *rec) { return 1;}
476 int     dir_send_job_status(JCR *jcr) {return 1;}
477
478
479 int dir_ask_sysop_to_mount_volume(JCR *jcr, DEVICE *dev)
480 {
481    fprintf(stderr, "Mount Volume %s on device %s and press return when ready: ",
482       jcr->VolumeName, dev_name(dev));
483    getchar();   
484    return 1;
485 }