]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/bextract.c
17e6dd570a74585f5ce6ed3d0fd33b4516582c1b
[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 static void do_extract(char *fname, char *prefix);
35 static void print_ls_output(char *fname, struct stat *statp);
36
37
38 static DEVICE *dev = NULL;
39 static int ofd = -1;
40
41 static JCR *jcr;
42 static FF_PKT my_ff;
43 static FF_PKT *ff = &my_ff;
44
45 static void usage()
46 {
47    fprintf(stderr,
48 "Usage: bextract [-d debug_level] <bacula-archive> <directory-to-store-files>\n"
49 "       -dnn            set debug level to nn\n"
50 "       -e <file>       exclude list\n"
51 "       -i <file>       include list\n"
52 "       -?              print this message\n\n");
53    exit(1);
54 }
55
56 static void my_free_jcr(JCR *jcr)
57 {
58    return;
59 }
60
61 int main (int argc, char *argv[])
62 {
63    int ch;   
64    FILE *fd;
65    char line[1000];
66
67    my_name_is(argc, argv, "bextract");
68    init_msg(NULL, NULL);              /* setup message handler */
69
70    memset(ff, 0, sizeof(FF_PKT));
71    init_include_exclude_files(ff);
72
73    while ((ch = getopt(argc, argv, "d:e:i:?")) != -1) {
74       switch (ch) {
75          case 'd':                    /* debug level */
76             debug_level = atoi(optarg);
77             if (debug_level <= 0)
78                debug_level = 1; 
79             break;
80
81          case 'e':                    /* exclude list */
82             if ((fd = fopen(optarg, "r")) == NULL) {
83                Dmsg2(0, "Could not open exclude file: %s, ERR=%s\n",
84                   optarg, strerror(errno));
85                exit(1);
86             }
87             while (fgets(line, sizeof(line), fd) != NULL) {
88                strip_trailing_junk(line);
89                Dmsg1(900, "add_exclude %s\n", line);
90                add_fname_to_exclude_list(ff, line);
91             }
92             fclose(fd);
93             break;
94
95          case 'i':                    /* include list */
96             if ((fd = fopen(optarg, "r")) == NULL) {
97                Dmsg2(0, "Could not open include file: %s, ERR=%s\n",
98                   optarg, strerror(errno));
99                exit(1);
100             }
101             while (fgets(line, sizeof(line), fd) != NULL) {
102                strip_trailing_junk(line);
103                Dmsg1(900, "add_include %s\n", line);
104                add_fname_to_include_list(ff, 0, line);
105             }
106             fclose(fd);
107             break;
108
109          case '?':
110          default:
111             usage();
112
113       }  
114    }
115    argc -= optind;
116    argv += optind;
117
118    if (argc != 2) {
119       Dmsg0(0, "Wrong number of arguments: \n");
120       usage();
121    }
122
123    jcr = new_jcr(sizeof(JCR), my_free_jcr);
124    jcr->VolSessionId = 1;
125    jcr->VolSessionTime = (uint32_t)time(NULL);
126    jcr->NumVolumes = 1;
127
128    do_extract(argv[0], argv[1]);
129
130    free_jcr(jcr);
131    return 0;
132 }
133   
134
135 static void do_extract(char *devname, char *where)
136 {
137    int n;     
138    char VolName[100];
139    char *p;
140    struct stat statp;
141    int extract = FALSE;
142    int type;
143    long record_file_index;
144    long total = 0;
145    DEV_RECORD rec;
146    DEV_BLOCK *block;
147    POOLMEM *fname;                    /* original file name */
148    POOLMEM *ofile;                    /* output name with prefix */
149    POOLMEM *lname;                    /* link name */
150    int wherelen;                      /* prefix length */
151
152    if (strncmp(devname, "/dev/", 5) != 0) {
153       /* Try stripping file part */
154       p = devname + strlen(devname);
155       while (p >= devname && *p != '/') {
156          p--;
157       }
158       if (*p == '/') {
159          strcpy(VolName, p+1);
160          *p = 0;
161       }
162    }
163
164    dev = init_dev(NULL, devname);
165    if (!dev || !open_device(dev)) {
166       Emsg1(M_ABORT, 0, "Cannot open %s\n", devname);
167    }
168    Dmsg0(90, "Device opened for read.\n");
169
170    if (stat(where, &statp) < 0) {
171       Emsg2(M_ABORT, 0, "Cannot stat %s. It must exist. ERR=%s\n",
172          where, strerror(errno));
173    }
174    if (!S_ISDIR(statp.st_mode)) {
175       Emsg1(M_ABORT, 0, "%s must be a directory.\n", where);
176    }
177
178    wherelen = strlen(where);
179    fname = get_pool_memory(PM_FNAME);
180    ofile = get_pool_memory(PM_FNAME);
181    lname = get_pool_memory(PM_FNAME);
182
183    block = new_block(dev);
184
185    strcpy(jcr->VolumeName, VolName);
186    Dmsg1(100, "Volume=%s\n", jcr->VolumeName);
187
188    if (!acquire_device_for_read(jcr, dev, block)) {
189       Emsg1(M_ABORT, 0, "Cannot open %s\n", devname);
190    }
191
192    memset(&rec, 0, sizeof(rec));
193    rec.data = get_memory(70000);
194
195    uint32_t compress_buf_size = 70000;
196    POOLMEM *compress_buf = get_memory(compress_buf_size);
197
198    for ( ;; ) {
199
200       if (!read_record(dev, block, &rec)) {
201          uint32_t status;
202          if (dev->state & ST_EOT) {
203             break;
204          }
205          if (dev->state & ST_EOF) {
206             continue;                 /* try again */
207          }
208          Dmsg0(0, "Read Record got a bad record\n");
209          status_dev(dev, &status);
210          Dmsg1(20, "Device status: %x\n", status);
211          if (status & MT_EOD)
212             Emsg0(M_ABORT, 0, "Unexpected End of Data\n");
213          else if (status & MT_EOT)
214             Emsg0(M_ABORT, 0, "Unexpected End of Tape\n");
215          else if (status & MT_EOF)
216             Emsg0(M_ABORT, 0, "Unexpected End of File\n");
217          else if (status & MT_DR_OPEN)
218             Emsg0(M_ABORT, 0, "Tape Door is Open\n");
219          else if (!(status & MT_ONLINE))
220             Emsg0(M_ABORT, 0, "Unexpected Tape is Off-line\n");
221          else
222             Emsg3(M_ABORT, 0, "Read error %d on Record Header %s: %s\n", n, dev_name(dev), strerror(errno));
223       }
224
225
226       /* This is no longer used */
227       if (rec.VolSessionId == 0 && rec.VolSessionTime == 0) {
228          Emsg0(M_ERROR, 0, "Zero header record. This shouldn't happen.\n");
229          break;                       /* END OF FILE */
230       }
231
232       /* 
233        * Check for Start or End of Session Record 
234        *
235        */
236       if (rec.FileIndex < 0) {
237          char *rtype;
238          switch (rec.FileIndex) {
239             case PRE_LABEL:
240                rtype = "Fresh Volume Label";   
241                break;
242             case VOL_LABEL:
243                rtype = "Volume Label";
244                break;
245             case SOS_LABEL:
246                rtype = "Begin Session";
247                break;
248             case EOS_LABEL:
249                rtype = "End Session";
250                break;
251             case EOM_LABEL:
252                rtype = "End of Media";
253                break;
254             default:
255                rtype = "Unknown";
256                break;
257          }
258          if (debug_level > 0) {
259             printf("%s Record: VolSessionId=%d VolSessionTime=%d JobId=%d DataLen=%d\n",
260                rtype, rec.VolSessionId, rec.VolSessionTime, rec.Stream, rec.data_len);
261          }
262          continue;
263       }
264
265       /* File Attributes stream */
266       if (rec.Stream == STREAM_UNIX_ATTRIBUTES) {
267          char *ap, *lp;
268
269          /* If extracting, it was from previous stream, so
270           * close the output file.
271           */
272          if (extract) {
273             if (ofd < 0) {
274                Emsg0(M_ABORT, 0, "Logic error output file should be open\n");
275             }
276             close(ofd);
277             ofd = -1;
278             extract = FALSE;
279             set_statp(jcr, fname, ofile, lname, type, &statp);
280          }
281
282          if (sizeof_pool_memory(fname) < rec.data_len) {
283             fname = realloc_pool_memory(fname, rec.data_len + 1);
284          }
285          if (sizeof_pool_memory(ofile) < sizeof_pool_memory(fname) + wherelen + 1) {
286             ofile = realloc_pool_memory(ofile, sizeof_pool_memory(fname) + wherelen + 1);
287          }
288          if (sizeof_pool_memory(lname) < rec.data_len) {
289             ofile = realloc_pool_memory(ofile, rec.data_len + 1);
290          }
291          *fname = 0;
292          *lname = 0;
293
294          /*              
295           * An Attributes record consists of:
296           *    File_index
297           *    Type   (FT_types)
298           *    Filename
299           *    Attributes
300           *    Link name (if file linked i.e. FT_LNK)
301           *
302           */
303          sscanf(rec.data, "%ld %d %s", &record_file_index, &type, fname);
304          if (record_file_index != rec.FileIndex)
305             Emsg2(M_ABORT, 0, "Record header file index %ld not equal record index %ld\n",
306                rec.FileIndex, record_file_index);
307          ap = rec.data;
308          /* Skip to attributes */
309          while (*ap++ != 0)
310             ;
311          /* Skip to Link name */
312          if (type == FT_LNK) {
313             lp = ap;
314             while (*lp++ != 0) {
315                ;
316             }
317             strcat(lname, lp);        /* "save" link name */
318          } else {
319             *lname = 0;
320          }
321
322          /* Is this the file we want? */
323          if (file_is_included(ff, fname) && !file_is_excluded(ff, fname)) {
324
325             decode_stat(ap, &statp);
326             /*
327              * Prepend the where directory so that the
328              * files are put where the user wants.
329              *
330              * We do a little jig here to handle Win32 files with
331              * a drive letter.  
332              *   If where is null and we are running on a win32 client,
333              *      change nothing.
334              *   Otherwise, if the second character of the filename is a
335              *   colon (:), change it into a slash (/) -- this creates
336              *   a reasonable pathname on most systems.
337              */
338             strcpy(ofile, where);
339             if (fname[1] == ':') {
340                fname[1] = '/';
341                strcat(ofile, fname);
342                fname[1] = ':';
343             } else {
344                strcat(ofile, fname);
345             }
346 /*          Dmsg1(000, "Restoring: %s\n", ofile); */
347
348             extract = create_file(jcr, fname, ofile, lname, type, &statp, &ofd);
349
350             if (extract) {
351                 print_ls_output(ofile, &statp);   
352             }
353          }
354
355       /* Data stream and extracting */
356       } else if (rec.Stream == STREAM_FILE_DATA) {
357          if (extract) {
358             total += rec.data_len;
359             Dmsg2(8, "Write %ld bytes, total=%ld\n", rec.data_len, total);
360             if ((uint32_t)write(ofd, rec.data, rec.data_len) != rec.data_len) {
361                Emsg1(M_ABORT, 0, "Write error: %s\n", strerror(errno));
362             }
363          }
364  
365       } else if (rec.Stream == STREAM_GZIP_DATA) {
366 #ifdef HAVE_LIBZ
367          if (extract) {
368             uLongf compress_len;
369
370             compress_len = compress_buf_size;
371             if (uncompress((Bytef *)compress_buf, &compress_len, 
372                   (const Bytef *)rec.data, (uLong)rec.data_len) != Z_OK) {
373                Emsg0(M_ABORT, 0, _("Uncompression error.\n"));
374             }
375
376             Dmsg2(100, "Write uncompressed %d bytes, total before write=%d\n", compress_len, total);
377             if ((uLongf)write(ofd, compress_buf, (size_t)compress_len) != compress_len) {
378                Dmsg0(0, "===Write error===\n");
379                Emsg2(M_ABORT, 0, "Write error on %s: %s\n", ofile, strerror(errno));
380             }
381             total += compress_len;
382             Dmsg2(100, "Compress len=%d uncompressed=%d\n", rec.data_len,
383                compress_len);
384          }
385 #else
386          if (extract) {
387             Emsg0(M_ABORT, 0, "GZIP data stream found, but GZIP not configured!\n");
388          }
389 #endif
390
391
392       /* If extracting, wierd stream (not 1 or 2), close output file anyway */
393       } else if (extract) {
394          if (ofd < 0) {
395             Emsg0(M_ABORT, 0, "Logic error output file should be open\n");
396          }
397          close(ofd);
398          ofd = -1;
399          extract = FALSE;
400          set_statp(jcr, fname, ofile, lname, type, &statp);
401       } else if (rec.Stream != STREAM_MD5_SIGNATURE) {
402          Dmsg2(0, "None of above!!! stream=%d data=%s\n", rec.Stream, rec.data);
403       }
404    }
405
406    /* If output file is still open, it was the last one in the
407     * archive since we just hit an end of file, so close the file. 
408     */
409    if (ofd >= 0) {
410       close(ofd);
411       set_statp(jcr, fname, ofile, lname, type, &statp);
412    }
413    release_device(jcr, dev, block);
414
415    free_pool_memory(fname);
416    free_pool_memory(ofile);
417    free_pool_memory(lname);
418    free_pool_memory(compress_buf);
419    term_dev(dev);
420    free_block(block);
421    return;
422 }
423
424 extern char *getuser(uid_t uid);
425 extern char *getgroup(gid_t gid);
426
427 static void print_ls_output(char *fname, struct stat *statp)
428 {
429    char buf[1000]; 
430    char *p, *f;
431    int n;
432
433    p = encode_mode(statp->st_mode, buf);
434    n = sprintf(p, "  %2d ", (uint32_t)statp->st_nlink);
435    p += n;
436    n = sprintf(p, "%-8.8s %-8.8s", getuser(statp->st_uid), getgroup(statp->st_gid));
437    p += n;
438    n = sprintf(p, "%8lld  ", (uint64_t)statp->st_size);
439    p += n;
440    p = encode_time(statp->st_ctime, p);
441    *p++ = ' ';
442    *p++ = ' ';
443    for (f=fname; *f; )
444       *p++ = *f++;
445    *p++ = '\n';
446    *p = 0;
447    fputs(buf, stdout);
448 }