]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/bsr.c
This commit was manufactured by cvs2svn to create tag
[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-2003 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 void 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%x\n", (unsigned)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 record 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 stat;
186
187    Mmsg(&fname, "%s/restore.bsr", working_directory);
188    fd = fopen(fname, "w+");
189    if (!fd) {
190       bsendmsg(ua, _("Unable to create bootstrap file %s. ERR=%s\n"), 
191          fname, strerror(errno));
192       free_pool_memory(fname);
193       return 0;
194    }
195    /* Write them to file */
196    write_bsr(ua, bsr, fd);
197    stat = !ferror(fd);
198    fclose(fd);
199    bsendmsg(ua, _("Bootstrap records written to %s\n"), fname);
200
201    /* Tell the user what he will need to mount */
202    bsendmsg(ua, "\n");
203    bsendmsg(ua, _("The restore job will require the following Volumes:\n"));
204    /* Create Unique list of Volumes using prompt list */
205    start_prompt(ua, "");
206    for (RBSR *nbsr=bsr; nbsr; nbsr=nbsr->next) {
207       for (int i=0; i < nbsr->VolCount; i++) {
208          if (nbsr->VolParams[i].VolumeName[0]) {
209             add_prompt(ua, nbsr->VolParams[i].VolumeName);
210          }
211       }
212    }
213    for (int i=0; i < ua->num_prompts; i++) {
214       bsendmsg(ua, "   %s\n", ua->prompt[i]);
215       free(ua->prompt[i]);
216    }
217    ua->num_prompts = 0;
218    bsendmsg(ua, "\n");
219    free_pool_memory(fname);
220    return stat;
221 }
222
223 static void write_bsr(UAContext *ua, RBSR *bsr, FILE *fd)
224 {
225    if (bsr) {
226       uint32_t count;
227       /*
228        * For a given volume, loop over all the JobMedia records.
229        *   VolCount is the number of JobMedia records.
230        */
231       for (int i=0; i < bsr->VolCount; i++) {
232          if (!is_volume_selected(bsr->fi, bsr->VolParams[i].FirstIndex,
233               bsr->VolParams[i].LastIndex)) {
234             bsr->VolParams[i].VolumeName[0] = 0;  /* zap VolumeName */
235             continue;
236          }
237          fprintf(fd, "Volume=\"%s\"\n", bsr->VolParams[i].VolumeName);
238          fprintf(fd, "VolSessionId=%u\n", bsr->VolSessionId);
239          fprintf(fd, "VolSessionTime=%u\n", bsr->VolSessionTime);
240          if (bsr->VolParams[i].StartFile == bsr->VolParams[i].EndFile) {
241             fprintf(fd, "VolFile=%u\n", bsr->VolParams[i].StartFile);
242          } else {
243          fprintf(fd, "VolFile=%u-%u\n", bsr->VolParams[i].StartFile, 
244                  bsr->VolParams[i].EndFile);
245          }
246          if (bsr->VolParams[i].StartBlock == bsr->VolParams[i].EndBlock) {
247             fprintf(fd, "VolFile=%u\n", bsr->VolParams[i].StartBlock);
248          } else {
249          fprintf(fd, "VolBlock=%u-%u\n", bsr->VolParams[i].StartBlock,
250                  bsr->VolParams[i].EndBlock);
251          }
252 //       Dmsg2(100, "bsr VolParam FI=%u LI=%u\n",
253 //          bsr->VolParams[i].FirstIndex, bsr->VolParams[i].LastIndex);
254
255          count = write_findex(ua, bsr->fi, bsr->VolParams[i].FirstIndex,
256             bsr->VolParams[i].LastIndex, fd);
257          if (count) {
258             fprintf(fd, "Count=%u\n", count);
259          }
260       }
261       write_bsr(ua, bsr->next, fd);
262    }
263 }
264
265 void print_bsr(UAContext *ua, RBSR *bsr)
266 {
267    if (bsr) {
268       for (int i=0; i < bsr->VolCount; i++) {
269          bsendmsg(ua, "Volume=\"%s\"\n", bsr->VolParams[i].VolumeName);
270          bsendmsg(ua, "VolSessionId=%u\n", bsr->VolSessionId);
271          bsendmsg(ua, "VolSessionTime=%u\n", bsr->VolSessionTime);
272          bsendmsg(ua, "VolFile=%u-%u\n", bsr->VolParams[i].StartFile, 
273                   bsr->VolParams[i].EndFile);
274          bsendmsg(ua, "VolBlock=%u-%u\n", bsr->VolParams[i].StartBlock,
275                   bsr->VolParams[i].EndBlock);
276          print_findex(ua, bsr->fi);
277       }
278       print_bsr(ua, bsr->next);
279    }
280 }
281
282
283 /*
284  * Add a FileIndex to the list of BootStrap records.
285  *  Here we are only dealing with JobId's and the FileIndexes
286  *  associated with those JobIds.
287  */
288 void add_findex(RBSR *bsr, uint32_t JobId, int32_t findex)
289 {
290    RBSR *nbsr;
291    RBSR_FINDEX *fi, *lfi;
292
293    if (findex == 0) {
294       return;                         /* probably a dummy directory */
295    }
296    
297    if (bsr->fi == NULL) {             /* if no FI add one */
298       /* This is the first FileIndex item in the chain */
299       bsr->fi = new_findex();
300       bsr->JobId = JobId;
301       bsr->fi->findex = findex;
302       bsr->fi->findex2 = findex;
303       return;
304    }
305    /* Walk down list of bsrs until we find the JobId */
306    if (bsr->JobId != JobId) {
307       for (nbsr=bsr->next; nbsr; nbsr=nbsr->next) {
308          if (nbsr->JobId == JobId) {
309             bsr = nbsr;
310             break;
311          }
312       }
313
314       if (!nbsr) {                    /* Must add new JobId */
315          /* Add new JobId at end of chain */
316          for (nbsr=bsr; nbsr->next; nbsr=nbsr->next) 
317             {  }
318          nbsr->next = new_bsr();
319          nbsr->next->JobId = JobId;
320          nbsr->next->fi = new_findex();
321          nbsr->next->fi->findex = findex;
322          nbsr->next->fi->findex2 = findex;
323          return;
324       }
325    }
326
327    /* 
328     * At this point, bsr points to bsr containing this JobId,
329     *  and we are sure that there is at least one fi record.
330     */
331    lfi = fi = bsr->fi;
332    /* Check if this findex is smaller than first item */
333    if (findex < fi->findex) {
334       if ((findex+1) == fi->findex) {
335          fi->findex = findex;         /* extend down */
336          return;
337       }
338       fi = new_findex();              /* yes, insert before first item */
339       fi->findex = findex;
340       fi->findex2 = findex;
341       fi->next = lfi;
342       bsr->fi = fi;
343       return;
344    }
345    /* Walk down fi chain and find where to insert insert new FileIndex */
346    for ( ; fi; fi=fi->next) {
347       if (findex == (fi->findex2 + 1)) {  /* extend up */
348          RBSR_FINDEX *nfi;     
349          fi->findex2 = findex;
350          /*
351           * If the following record contains one higher, merge its
352           *   file index by extending it up.
353           */
354          if (fi->next && ((findex+1) == fi->next->findex)) { 
355             nfi = fi->next;
356             fi->findex2 = nfi->findex2;
357             fi->next = nfi->next;
358             free(nfi);
359          }
360          return;
361       }
362       if (findex < fi->findex) {      /* add before */
363          if ((findex+1) == fi->findex) {
364             fi->findex = findex;
365             return;
366          }
367          break;
368       }
369       lfi = fi;
370    }
371    /* Add to last place found */
372    fi = new_findex();
373    fi->findex = findex;
374    fi->findex2 = findex;
375    fi->next = lfi->next;
376    lfi->next = fi;
377    return;
378 }