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