3 * Bacula Director -- Bootstrap Record routines.
5 * BSR (bootstrap record) handling routines split from
6 * ua_restore.c July MMIII
8 * Kern Sibbald, July MMII
14 Copyright (C) 2002-2003 Kern Sibbald and John Walker
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.
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.
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,
36 /* Forward referenced functions */
37 static void write_bsr(UAContext *ua, RBSR *bsr, FILE *fd);
41 * Create new FileIndex entry for BSR
43 RBSR_FINDEX *new_findex()
45 RBSR_FINDEX *fi = (RBSR_FINDEX *)bmalloc(sizeof(RBSR_FINDEX));
46 memset(fi, 0, sizeof(RBSR_FINDEX));
50 /* Free all BSR FileIndex entries */
51 static void free_findex(RBSR_FINDEX *fi)
54 free_findex(fi->next);
60 * Our data structures were not designed completely
61 * correctly, so the file indexes cover the full
62 * range regardless of volume. The FirstIndex and LastIndex
63 * passed in here are for the current volume, so when
64 * writing out the fi, constrain them to those values.
66 static void write_findex(UAContext *ua, RBSR_FINDEX *fi,
67 int32_t FirstIndex, int32_t LastIndex, FILE *fd)
70 int32_t findex, findex2;
71 findex = fi->findex < FirstIndex ? FirstIndex : fi->findex;
72 findex2 = fi->findex2 > LastIndex ? LastIndex : fi->findex2;
73 if (findex == findex2) {
74 fprintf(fd, "FileIndex=%d\n", findex);
76 fprintf(fd, "FileIndex=%d-%d\n", findex, findex2);
78 write_findex(ua, fi->next, FirstIndex, LastIndex, fd);
82 static bool is_volume_selected(RBSR_FINDEX *fi,
83 int32_t FirstIndex, int32_t LastIndex)
86 if ((fi->findex >= FirstIndex && fi->findex <= LastIndex) ||
87 (fi->findex2 >= FirstIndex && fi->findex2 <= LastIndex)) {
90 return is_volume_selected(fi->next, FirstIndex, LastIndex);
97 static void print_findex(UAContext *ua, RBSR_FINDEX *fi)
100 if (fi->findex == fi->findex2) {
101 bsendmsg(ua, "FileIndex=%d\n", fi->findex);
103 bsendmsg(ua, "FileIndex=%d-%d\n", fi->findex, fi->findex2);
105 print_findex(ua, fi->next);
109 /* Create a new bootstrap record */
112 RBSR *bsr = (RBSR *)bmalloc(sizeof(RBSR));
113 memset(bsr, 0, sizeof(RBSR));
117 /* Free the entire BSR */
118 void free_bsr(RBSR *bsr)
121 free_findex(bsr->fi);
123 if (bsr->VolParams) {
124 free(bsr->VolParams);
131 * Complete the BSR by filling in the VolumeName and
132 * VolSessionId and VolSessionTime using the JobId
134 int complete_bsr(UAContext *ua, RBSR *bsr)
138 memset(&jr, 0, sizeof(jr));
139 jr.JobId = bsr->JobId;
140 if (!db_get_job_record(ua->jcr, ua->db, &jr)) {
141 bsendmsg(ua, _("Unable to get Job record. ERR=%s\n"), db_strerror(ua->db));
144 bsr->VolSessionId = jr.VolSessionId;
145 bsr->VolSessionTime = jr.VolSessionTime;
146 if ((bsr->VolCount=db_get_job_volume_parameters(ua->jcr, ua->db, bsr->JobId,
147 &(bsr->VolParams))) == 0) {
148 bsendmsg(ua, _("Unable to get Job Volume Parameters. ERR=%s\n"), db_strerror(ua->db));
149 if (bsr->VolParams) {
150 free(bsr->VolParams);
151 bsr->VolParams = NULL;
155 return complete_bsr(ua, bsr->next);
161 * Write the bootstrap record to file
163 int write_bsr_file(UAContext *ua, RBSR *bsr)
166 POOLMEM *fname = get_pool_memory(PM_MESSAGE);
169 Mmsg(&fname, "%s/restore.bsr", working_directory);
170 fd = fopen(fname, "w+");
172 bsendmsg(ua, _("Unable to create bootstrap file %s. ERR=%s\n"),
173 fname, strerror(errno));
174 free_pool_memory(fname);
177 /* Write them to file */
178 write_bsr(ua, bsr, fd);
181 bsendmsg(ua, _("Bootstrap records written to %s\n"), fname);
183 /* Tell the user what he will need to mount */
185 bsendmsg(ua, _("The restore job will require the following Volumes:\n"));
186 /* Create Unique list of Volumes using prompt list */
187 start_prompt(ua, "");
188 for (RBSR *nbsr=bsr; nbsr; nbsr=nbsr->next) {
189 for (int i=0; i < nbsr->VolCount; i++) {
190 if (nbsr->VolParams[i].VolumeName[0]) {
191 add_prompt(ua, nbsr->VolParams[i].VolumeName);
195 for (int i=0; i < ua->num_prompts; i++) {
196 bsendmsg(ua, " %s\n", ua->prompt[i]);
201 free_pool_memory(fname);
205 static void write_bsr(UAContext *ua, RBSR *bsr, FILE *fd)
208 for (int i=0; i < bsr->VolCount; i++) {
209 if (!is_volume_selected(bsr->fi, bsr->VolParams[i].FirstIndex,
210 bsr->VolParams[i].LastIndex)) {
211 bsr->VolParams[i].VolumeName[0] = 0; /* zap VolumeName */
214 fprintf(fd, "Volume=\"%s\"\n", bsr->VolParams[i].VolumeName);
215 fprintf(fd, "VolSessionId=%u\n", bsr->VolSessionId);
216 fprintf(fd, "VolSessionTime=%u\n", bsr->VolSessionTime);
217 fprintf(fd, "VolFile=%u-%u\n", bsr->VolParams[i].StartFile,
218 bsr->VolParams[i].EndFile);
219 fprintf(fd, "VolBlock=%u-%u\n", bsr->VolParams[i].StartBlock,
220 bsr->VolParams[i].EndBlock);
222 // Dmsg2(000, "bsr VolParam FI=%u LI=%u\n",
223 // bsr->VolParams[i].FirstIndex, bsr->VolParams[i].LastIndex);
224 write_findex(ua, bsr->fi, bsr->VolParams[i].FirstIndex,
225 bsr->VolParams[i].LastIndex, fd);
227 write_bsr(ua, bsr->next, fd);
231 static void print_bsr(UAContext *ua, RBSR *bsr)
234 for (int i=0; i < bsr->VolCount; i++) {
235 bsendmsg(ua, "Volume=\"%s\"\n", bsr->VolParams[i].VolumeName);
236 bsendmsg(ua, "VolSessionId=%u\n", bsr->VolSessionId);
237 bsendmsg(ua, "VolSessionTime=%u\n", bsr->VolSessionTime);
238 bsendmsg(ua, "VolFile=%u-%u\n", bsr->VolParams[i].StartFile,
239 bsr->VolParams[i].EndFile);
240 bsendmsg(ua, "VolBlock=%u-%u\n", bsr->VolParams[i].StartBlock,
241 bsr->VolParams[i].EndBlock);
242 print_findex(ua, bsr->fi);
244 print_bsr(ua, bsr->next);
250 * Add a FileIndex to the list of BootStrap records.
251 * Here we are only dealing with JobId's and the FileIndexes
252 * associated with those JobIds.
254 void add_findex(RBSR *bsr, uint32_t JobId, int32_t findex)
257 RBSR_FINDEX *fi, *lfi;
260 return; /* probably a dummy directory */
263 if (!bsr->fi) { /* if no FI add one */
264 /* This is the first FileIndex item in the chain */
265 bsr->fi = new_findex();
267 bsr->fi->findex = findex;
268 bsr->fi->findex2 = findex;
271 /* Walk down list of bsrs until we find the JobId */
272 if (bsr->JobId != JobId) {
273 for (nbsr=bsr->next; nbsr; nbsr=nbsr->next) {
274 if (nbsr->JobId == JobId) {
280 if (!nbsr) { /* Must add new JobId */
281 /* Add new JobId at end of chain */
282 for (nbsr=bsr; nbsr->next; nbsr=nbsr->next)
284 nbsr->next = new_bsr();
285 nbsr->next->JobId = JobId;
286 nbsr->next->fi = new_findex();
287 nbsr->next->fi->findex = findex;
288 nbsr->next->fi->findex2 = findex;
294 * At this point, bsr points to bsr containing JobId,
295 * and we are sure that there is at least one fi record.
298 /* Check if this findex is smaller than first item */
299 if (findex < fi->findex) {
300 if ((findex+1) == fi->findex) {
301 fi->findex = findex; /* extend down */
304 fi = new_findex(); /* yes, insert before first item */
306 fi->findex2 = findex;
311 /* Walk down fi chain and find where to insert insert new FileIndex */
312 for ( ; fi; fi=fi->next) {
313 if (findex == (fi->findex2 + 1)) { /* extend up */
315 fi->findex2 = findex;
316 if (fi->next && ((findex+1) == fi->next->findex)) {
318 fi->findex2 = nfi->findex2;
319 fi->next = nfi->next;
324 if (findex < fi->findex) { /* add before */
325 if ((findex+1) == fi->findex) {
333 /* Add to last place found */
336 fi->findex2 = findex;
337 fi->next = lfi->next;