]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/bsr.c
- Apply Peter Eriksson's patch to configure.in fixes finding
[bacula/bacula] / bacula / src / dird / bsr.c
1 /*
2  *
3  *   Bacula Director -- Bootstrap Record routines.
4  *
5  *      BSR (bootstrap record) handling routines split from 
6  *        ua_restore.c July MMIII
7  *
8  *     Kern Sibbald, July MMII
9  *
10  *   Version $Id$
11  */
12
13 /*
14    Copyright (C) 2002-2004 Kern Sibbald and John Walker
15
16    This program is free software; you can redistribute it and/or
17    modify it under the terms of the GNU General Public License as
18    published by the Free Software Foundation; either version 2 of
19    the License, or (at your option) any later version.
20
21    This program is distributed in the hope that it will be useful,
22    but WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24    General Public License for more details.
25
26    You should have received a copy of the GNU General Public
27    License along with this program; if not, write to the Free
28    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
29    MA 02111-1307, USA.
30
31  */
32
33 #include "bacula.h"
34 #include "dird.h"
35
36 /* Forward referenced functions */
37 static int write_bsr(UAContext *ua, RBSR *bsr, FILE *fd);
38 void print_bsr(UAContext *ua, RBSR *bsr);
39
40
41 /*
42  * Create new FileIndex entry for BSR 
43  */
44 RBSR_FINDEX *new_findex() 
45 {
46    RBSR_FINDEX *fi = (RBSR_FINDEX *)bmalloc(sizeof(RBSR_FINDEX));
47    memset(fi, 0, sizeof(RBSR_FINDEX));
48    return fi;
49 }
50
51 /* Free all BSR FileIndex entries */
52 static void free_findex(RBSR_FINDEX *fi)
53 {
54    if (fi) {
55       free_findex(fi->next);
56       free(fi);
57    }
58 }
59
60 /*
61  * Our data structures were not designed completely
62  *  correctly, so the file indexes cover the full
63  *  range regardless of volume. The FirstIndex and LastIndex
64  *  passed in here are for the current volume, so when 
65  *  writing out the fi, constrain them to those values.
66  *
67  * We are called here once for each JobMedia record
68  *  for each Volume.
69  */
70 static uint32_t write_findex(UAContext *ua, RBSR_FINDEX *fi, 
71               int32_t FirstIndex, int32_t LastIndex, FILE *fd) 
72 {
73    uint32_t count = 0;
74    for ( ; fi; fi=fi->next) {
75       int32_t findex, findex2;
76       if ((fi->findex >= FirstIndex && fi->findex <= LastIndex) ||
77           (fi->findex2 >= FirstIndex && fi->findex2 <= LastIndex) ||
78           (fi->findex < FirstIndex && fi->findex2 > LastIndex)) {
79          findex = fi->findex < FirstIndex ? FirstIndex : fi->findex;
80          findex2 = fi->findex2 > LastIndex ? LastIndex : fi->findex2;
81          if (findex == findex2) {
82             fprintf(fd, "FileIndex=%d\n", findex);
83             count++;
84          } else {
85             fprintf(fd, "FileIndex=%d-%d\n", findex, findex2);
86             count += findex2 - findex + 1;
87          }
88       }
89    }
90    return count;
91 }
92
93 /*
94  * Find out if Volume defined with FirstIndex and LastIndex
95  *   falls within the range of selected files in the bsr.
96  */
97 static bool is_volume_selected(RBSR_FINDEX *fi, 
98               int32_t FirstIndex, int32_t LastIndex) 
99 {
100    if (fi) {
101       if ((fi->findex >= FirstIndex && fi->findex <= LastIndex) ||
102           (fi->findex2 >= FirstIndex && fi->findex2 <= LastIndex) ||
103           (fi->findex < FirstIndex && fi->findex2 > LastIndex)) {
104          return true;
105       }
106       return is_volume_selected(fi->next, FirstIndex, LastIndex);
107    }
108    return false;
109 }
110
111
112
113 static void print_findex(UAContext *ua, RBSR_FINDEX *fi)
114 {
115    bsendmsg(ua, "fi=0x%lx\n", fi);
116    for ( ; fi; fi=fi->next) {
117       if (fi->findex == fi->findex2) {
118          bsendmsg(ua, "FileIndex=%d\n", fi->findex);
119 //       Dmsg1(100, "FileIndex=%d\n", fi->findex);
120       } else {
121          bsendmsg(ua, "FileIndex=%d-%d\n", fi->findex, fi->findex2);
122 //       Dmsg2(100, "FileIndex=%d-%d\n", fi->findex, fi->findex2);
123       }
124    }
125 }
126
127 /* Create a new bootstrap record */
128 RBSR *new_bsr()
129 {
130    RBSR *bsr = (RBSR *)bmalloc(sizeof(RBSR));
131    memset(bsr, 0, sizeof(RBSR));
132    return bsr;
133 }
134
135 /* Free the entire BSR */
136 void free_bsr(RBSR *bsr)
137 {
138    if (bsr) {
139       free_findex(bsr->fi);
140       if (bsr->VolParams) {
141          free(bsr->VolParams);
142       }
143       free_bsr(bsr->next);
144       free(bsr);
145    }
146 }
147
148 /*
149  * Complete the BSR by filling in the VolumeName and
150  *  VolSessionId and VolSessionTime using the JobId
151  */
152 int complete_bsr(UAContext *ua, RBSR *bsr)
153 {
154    if (bsr) {
155       JOB_DBR jr;
156       memset(&jr, 0, sizeof(jr));
157       jr.JobId = bsr->JobId;
158       if (!db_get_job_record(ua->jcr, ua->db, &jr)) {
159          bsendmsg(ua, _("Unable to get Job record. ERR=%s\n"), db_strerror(ua->db));
160          return 0;
161       }
162       bsr->VolSessionId = jr.VolSessionId;
163       bsr->VolSessionTime = jr.VolSessionTime;
164       if ((bsr->VolCount=db_get_job_volume_parameters(ua->jcr, ua->db, bsr->JobId, 
165            &(bsr->VolParams))) == 0) {
166          bsendmsg(ua, _("Unable to get Job Volume Parameters. ERR=%s\n"), db_strerror(ua->db));
167          if (bsr->VolParams) {
168             free(bsr->VolParams);
169             bsr->VolParams = NULL;
170          }
171          return 0;
172       }
173       return complete_bsr(ua, bsr->next);
174    }
175    return 1;
176 }
177
178 /*
179  * Write the bootstrap records to file
180  */
181 int write_bsr_file(UAContext *ua, RBSR *bsr)
182 {
183    FILE *fd;
184    POOLMEM *fname = get_pool_memory(PM_MESSAGE);
185    int count = 0;;
186    bool err;
187
188    Mmsg(fname, "%s/restore.bsr", working_directory);
189    fd = fopen(fname, "w+");
190    if (!fd) {
191       berrno be;
192       bsendmsg(ua, _("Unable to create bootstrap file %s. ERR=%s\n"), 
193          fname, be.strerror());
194       goto bail_out;
195    }
196    /* Write them to file */
197    count = write_bsr(ua, bsr, fd);
198    err = ferror(fd);
199    fclose(fd);
200    if (err) {
201       bsendmsg(ua, _("Error writing bsr file.\n"));
202       count = 0;
203       goto bail_out;
204    }
205
206
207    bsendmsg(ua, _("Bootstrap records written to %s\n"), fname);
208
209    /* Tell the user what he will need to mount */
210    bsendmsg(ua, "\n");
211    bsendmsg(ua, _("The job will require the following Volumes:\n"));
212    /* Create Unique list of Volumes using prompt list */
213    start_prompt(ua, "");
214    for (RBSR *nbsr=bsr; nbsr; nbsr=nbsr->next) {
215       for (int i=0; i < nbsr->VolCount; i++) {
216          if (nbsr->VolParams[i].VolumeName[0]) {
217             add_prompt(ua, nbsr->VolParams[i].VolumeName);
218          }
219       }
220    }
221    for (int i=0; i < ua->num_prompts; i++) {
222       bsendmsg(ua, "   %s\n", ua->prompt[i]);
223       free(ua->prompt[i]);
224    }
225    if (ua->num_prompts == 0) {
226       bsendmsg(ua, _("No Volumes found to restore.\n"));
227       count = 0;
228    }
229    ua->num_prompts = 0;
230    bsendmsg(ua, "\n");
231
232 bail_out:
233    free_pool_memory(fname);
234    return count;
235 }
236
237 static int write_bsr(UAContext *ua, RBSR *bsr, FILE *fd)
238 {
239    uint32_t count = 0;
240    if (bsr) {
241       /*
242        * For a given volume, loop over all the JobMedia records.
243        *   VolCount is the number of JobMedia records.
244        */
245       for (int i=0; i < bsr->VolCount; i++) {
246          if (!is_volume_selected(bsr->fi, bsr->VolParams[i].FirstIndex,
247               bsr->VolParams[i].LastIndex)) {
248             bsr->VolParams[i].VolumeName[0] = 0;  /* zap VolumeName */
249             continue;
250          }
251          fprintf(fd, "Volume=\"%s\"\n", bsr->VolParams[i].VolumeName);
252          fprintf(fd, "VolSessionId=%u\n", bsr->VolSessionId);
253          fprintf(fd, "VolSessionTime=%u\n", bsr->VolSessionTime);
254          if (bsr->VolParams[i].StartFile == bsr->VolParams[i].EndFile) {
255             fprintf(fd, "VolFile=%u\n", bsr->VolParams[i].StartFile);
256          } else {
257             fprintf(fd, "VolFile=%u-%u\n", bsr->VolParams[i].StartFile, 
258                     bsr->VolParams[i].EndFile);
259          }
260          if (bsr->VolParams[i].StartBlock == bsr->VolParams[i].EndBlock) {
261             fprintf(fd, "VolFile=%u\n", bsr->VolParams[i].StartBlock);
262          } else {
263             fprintf(fd, "VolBlock=%u-%u\n", bsr->VolParams[i].StartBlock,
264                     bsr->VolParams[i].EndBlock);
265          }
266 //       Dmsg2(100, "bsr VolParam FI=%u LI=%u\n",
267 //          bsr->VolParams[i].FirstIndex, bsr->VolParams[i].LastIndex);
268
269          count = write_findex(ua, bsr->fi, bsr->VolParams[i].FirstIndex,
270                               bsr->VolParams[i].LastIndex, fd);
271          if (count) {
272             fprintf(fd, "Count=%u\n", count);
273          }
274       }
275       write_bsr(ua, bsr->next, fd);
276    }
277    return count;
278 }
279
280 void print_bsr(UAContext *ua, RBSR *bsr)
281 {
282    if (bsr) {
283       for (int i=0; i < bsr->VolCount; i++) {
284          bsendmsg(ua, "Volume=\"%s\"\n", bsr->VolParams[i].VolumeName);
285          bsendmsg(ua, "VolSessionId=%u\n", bsr->VolSessionId);
286          bsendmsg(ua, "VolSessionTime=%u\n", bsr->VolSessionTime);
287          bsendmsg(ua, "VolFile=%u-%u\n", bsr->VolParams[i].StartFile, 
288                   bsr->VolParams[i].EndFile);
289          bsendmsg(ua, "VolBlock=%u-%u\n", bsr->VolParams[i].StartBlock,
290                   bsr->VolParams[i].EndBlock);
291          print_findex(ua, bsr->fi);
292       }
293       print_bsr(ua, bsr->next);
294    }
295 }
296
297
298 /*
299  * Add a FileIndex to the list of BootStrap records.
300  *  Here we are only dealing with JobId's and the FileIndexes
301  *  associated with those JobIds.
302  */
303 void add_findex(RBSR *bsr, uint32_t JobId, int32_t findex)
304 {
305    RBSR *nbsr;
306    RBSR_FINDEX *fi, *lfi;
307
308    if (findex == 0) {
309       return;                         /* probably a dummy directory */
310    }
311    
312    if (bsr->fi == NULL) {             /* if no FI add one */
313       /* This is the first FileIndex item in the chain */
314       bsr->fi = new_findex();
315       bsr->JobId = JobId;
316       bsr->fi->findex = findex;
317       bsr->fi->findex2 = findex;
318       return;
319    }
320    /* Walk down list of bsrs until we find the JobId */
321    if (bsr->JobId != JobId) {
322       for (nbsr=bsr->next; nbsr; nbsr=nbsr->next) {
323          if (nbsr->JobId == JobId) {
324             bsr = nbsr;
325             break;
326          }
327       }
328
329       if (!nbsr) {                    /* Must add new JobId */
330          /* Add new JobId at end of chain */
331          for (nbsr=bsr; nbsr->next; nbsr=nbsr->next) 
332             {  }
333          nbsr->next = new_bsr();
334          nbsr->next->JobId = JobId;
335          nbsr->next->fi = new_findex();
336          nbsr->next->fi->findex = findex;
337          nbsr->next->fi->findex2 = findex;
338          return;
339       }
340    }
341
342    /* 
343     * At this point, bsr points to bsr containing this JobId,
344     *  and we are sure that there is at least one fi record.
345     */
346    lfi = fi = bsr->fi;
347    /* Check if this findex is smaller than first item */
348    if (findex < fi->findex) {
349       if ((findex+1) == fi->findex) {
350          fi->findex = findex;         /* extend down */
351          return;
352       }
353       fi = new_findex();              /* yes, insert before first item */
354       fi->findex = findex;
355       fi->findex2 = findex;
356       fi->next = lfi;
357       bsr->fi = fi;
358       return;
359    }
360    /* Walk down fi chain and find where to insert insert new FileIndex */
361    for ( ; fi; fi=fi->next) {
362       if (findex == (fi->findex2 + 1)) {  /* extend up */
363          RBSR_FINDEX *nfi;     
364          fi->findex2 = findex;
365          /*
366           * If the following record contains one higher, merge its
367           *   file index by extending it up.
368           */
369          if (fi->next && ((findex+1) == fi->next->findex)) { 
370             nfi = fi->next;
371             fi->findex2 = nfi->findex2;
372             fi->next = nfi->next;
373             free(nfi);
374          }
375          return;
376       }
377       if (findex < fi->findex) {      /* add before */
378          if ((findex+1) == fi->findex) {
379             fi->findex = findex;
380             return;
381          }
382          break;
383       }
384       lfi = fi;
385    }
386    /* Add to last place found */
387    fi = new_findex();
388    fi->findex = findex;
389    fi->findex2 = findex;
390    fi->next = lfi->next;
391    lfi->next = fi;
392    return;
393 }