]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_run.c
Rewrite spool error cod + level keyword for estimate
[bacula/bacula] / bacula / src / dird / ua_run.c
1 /*
2  *
3  *   Bacula Director -- Run Command
4  *
5  *     Kern Sibbald, December MMI
6  *
7  *   Version $Id$
8  */
9
10 /*
11    Copyright (C) 2001-2004 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 "dird.h"
32
33 /* Imported subroutines */
34
35 /* Imported variables */
36 extern struct s_kw ReplaceOptions[];
37
38 /*
39  * For Backup and Verify Jobs
40  *     run [job=]<job-name> level=<level-name>
41  *
42  * For Restore Jobs
43  *     run <job-name> jobid=nn
44  *
45  */
46 int run_cmd(UAContext *ua, const char *cmd)
47 {
48    JCR *jcr;
49    char *job_name, *level_name, *jid, *store_name, *pool_name;
50    char *where, *fileset_name, *client_name, *bootstrap;
51    const char *replace;
52    char *when, *verify_job_name;
53    int Priority = 0;
54    int i, j, opt, files = 0;
55    bool kw_ok;
56    JOB *job = NULL;
57    JOB *verify_job = NULL;
58    STORE *store = NULL;
59    CLIENT *client = NULL;
60    FILESET *fileset = NULL;
61    POOL *pool = NULL;
62    static const char *kw[] = {        /* command line arguments */
63       N_("job"),                      /*  Used in a switch() */
64       N_("jobid"),                    /* 1 */
65       N_("client"),                   /* 2 */
66       N_("fd"), 
67       N_("fileset"),                  /* 4 */
68       N_("level"),                    /* 5 */
69       N_("storage"),                  /* 6 */
70       N_("sd"),                       /* 7 */
71       N_("pool"),                     /* 8 */
72       N_("where"),                    /* 9 */
73       N_("bootstrap"),                /* 10 */
74       N_("replace"),                  /* 11 */
75       N_("when"),                     /* 12 */
76       N_("priority"),                 /* 13 */
77       N_("yes"),          /* 14 -- if you change this change YES_POS too */
78       N_("verifyjob"),                /* 15 */
79       N_("files"),                    /* 16 number of files to restore */
80       NULL};
81
82 #define YES_POS 14
83
84    if (!open_db(ua)) {
85       return 1;
86    }
87
88    job_name = NULL;
89    level_name = NULL;
90    jid = NULL;
91    store_name = NULL;
92    pool_name = NULL;
93    where = NULL;
94    when = NULL;
95    client_name = NULL;
96    fileset_name = NULL;
97    bootstrap = NULL;
98    replace = NULL;
99    verify_job_name = NULL;
100
101    for (i=1; i<ua->argc; i++) {
102       Dmsg2(200, "Doing arg %d = %s\n", i, ua->argk[i]);
103       kw_ok = false;
104       /* Keep looking until we find a good keyword */
105       for (j=0; !kw_ok && kw[j]; j++) {
106          if (strcasecmp(ua->argk[i], _(kw[j])) == 0) {
107             /* Note, yes and run have no value, so do not err */
108             if (!ua->argv[i] && j != YES_POS /*yes*/) {  
109                bsendmsg(ua, _("Value missing for keyword %s\n"), ua->argk[i]);
110                return 1;
111             }
112             Dmsg1(200, "Got keyword=%s\n", kw[j]);
113             switch (j) {
114             case 0: /* job */
115                if (job_name) {
116                   bsendmsg(ua, _("Job name specified twice.\n"));
117                   return 1;
118                }
119                job_name = ua->argv[i];
120                kw_ok = true;
121                break;
122             case 1: /* JobId */
123                if (jid) {
124                   bsendmsg(ua, _("JobId specified twice.\n"));
125                   return 1;
126                }
127                jid = ua->argv[i];
128                kw_ok = true;
129                break;
130             case 2: /* client */
131             case 3: /* fd */
132                if (client_name) {
133                   bsendmsg(ua, _("Client specified twice.\n"));
134                   return 1;
135                }
136                client_name = ua->argv[i];
137                kw_ok = true;
138                break;
139             case 4: /* fileset */
140                if (fileset_name) {
141                   bsendmsg(ua, _("FileSet specified twice.\n"));
142                   return 1;
143                }
144                fileset_name = ua->argv[i];
145                kw_ok = true;
146                break;
147             case 5: /* level */
148                if (level_name) {
149                   bsendmsg(ua, _("Level specified twice.\n"));
150                   return 1;
151                }
152                level_name = ua->argv[i];
153                kw_ok = true;
154                break;
155             case 6: /* storage */
156             case 7: /* sd */
157                if (store_name) {
158                   bsendmsg(ua, _("Storage specified twice.\n"));
159                   return 1;
160                }
161                store_name = ua->argv[i];
162                kw_ok = true;
163                break;
164             case 8: /* pool */
165                if (pool_name) {
166                   bsendmsg(ua, _("Pool specified twice.\n"));
167                   return 1;
168                }
169                pool_name = ua->argv[i];
170                kw_ok = true;
171                break;
172             case 9: /* where */
173                if (where) {
174                   bsendmsg(ua, _("Where specified twice.\n"));
175                   return 1;
176                }
177                where = ua->argv[i];
178                kw_ok = true;
179                break;
180             case 10: /* bootstrap */
181                if (bootstrap) {
182                   bsendmsg(ua, _("Bootstrap specified twice.\n"));
183                   return 1;
184                }
185                bootstrap = ua->argv[i];
186                kw_ok = true;
187                break;
188             case 11: /* replace */
189                if (replace) {
190                   bsendmsg(ua, _("Replace specified twice.\n"));
191                   return 1;
192                }
193                replace = ua->argv[i];
194                kw_ok = true;
195                break;
196             case 12: /* When */
197                if (when) {
198                   bsendmsg(ua, _("When specified twice.\n"));
199                   return 1;
200                }
201                when = ua->argv[i];
202                kw_ok = true;
203                break;
204             case 13:  /* Priority */
205                if (Priority) {
206                   bsendmsg(ua, _("Priority specified twice.\n"));
207                   return 1;
208                }
209                Priority = atoi(ua->argv[i]);
210                if (Priority <= 0) {
211                   bsendmsg(ua, _("Priority must be positive nonzero setting it to 10.\n"));
212                   Priority = 10;
213                }
214                kw_ok = true;
215                break;
216             case 14: /* yes */
217                kw_ok = true;
218                break;
219             case 15: /* Verify Job */
220                if (verify_job_name) {
221                   bsendmsg(ua, _("Verify Job specified twice.\n"));
222                   return 1;
223                }
224                verify_job_name = ua->argv[i];
225                kw_ok = true;
226                break;
227             case 16: /* files */
228                files = atoi(ua->argv[i]);
229                kw_ok = true;
230                break;
231
232             default:
233                break;
234             }
235          } /* end strcase compare */
236       } /* end keyword loop */
237       /*
238        * End of keyword for loop -- if not found, we got a bogus keyword
239        */
240       if (!kw_ok) {
241          Dmsg1(200, "%s not found\n", ua->argk[i]);
242          /*
243           * Special case for Job Name, it can be the first
244           * keyword that has no value.
245           */
246          if (!job_name && !ua->argv[i]) {
247             job_name = ua->argk[i];   /* use keyword as job name */
248             Dmsg1(200, "Set jobname=%s\n", job_name);
249          } else {
250             bsendmsg(ua, _("Invalid keyword: %s\n"), ua->argk[i]);
251             return 1;
252          }
253       }
254    } /* end argc loop */
255              
256    Dmsg0(200, "Done scan.\n");
257
258    if (job_name) {
259       /* Find Job */
260       job = (JOB *)GetResWithName(R_JOB, job_name);
261       if (!job) {
262          if (*job_name != 0) {
263             bsendmsg(ua, _("Job \"%s\" not found\n"), job_name);
264          }
265          job = select_job_resource(ua);
266       } else {
267          Dmsg1(200, "Found job=%s\n", job_name);
268       }
269    } else {
270       bsendmsg(ua, _("A job name must be specified.\n"));
271       job = select_job_resource(ua);
272    }
273    if (!job) {
274       return 1;
275    }
276
277    if (store_name) {
278       store = (STORE *)GetResWithName(R_STORAGE, store_name);
279       if (!store) {
280          if (*store_name != 0) {
281             bsendmsg(ua, _("Storage \"%s\" not found.\n"), store_name);
282          }
283          store = select_storage_resource(ua);
284       }
285    } else {
286       store = job->storage;           /* use default */
287    }
288    if (!store) {
289       return 1;
290    }
291
292
293    if (pool_name) {
294       pool = (POOL *)GetResWithName(R_POOL, pool_name);
295       if (!pool) {
296          if (*pool_name != 0) {
297             bsendmsg(ua, _("Pool \"%s\" not found.\n"), pool_name);
298          }
299          pool = select_pool_resource(ua);
300       }
301    } else {
302       pool = job->pool;             /* use default */
303    }
304    if (!pool) {
305       return 1;
306    }
307
308    if (client_name) {
309       client = (CLIENT *)GetResWithName(R_CLIENT, client_name);
310       if (!client) {
311          if (*client_name != 0) {
312             bsendmsg(ua, _("Client \"%s\" not found.\n"), client_name);
313          }
314          client = select_client_resource(ua);
315       }
316    } else {
317       client = job->client;           /* use default */
318    }
319    if (!client) {
320       return 1;
321    }
322
323    if (fileset_name) {
324       fileset = (FILESET *)GetResWithName(R_FILESET, fileset_name);
325       if (!fileset) {
326          bsendmsg(ua, _("FileSet \"%s\" not found.\n"), fileset_name);
327          fileset = select_fileset_resource(ua);
328       }
329    } else {
330       fileset = job->fileset;           /* use default */
331    }
332    if (!fileset) {
333       return 1;
334    }
335
336    if (verify_job_name) {
337       verify_job = (JOB *)GetResWithName(R_JOB, verify_job_name);
338       if (!verify_job) {
339          bsendmsg(ua, _("Verify Job \"%s\" not found.\n"), verify_job_name);
340          verify_job = select_job_resource(ua);
341       }
342    } else {
343       verify_job = job->verify_job;
344    }
345
346    /*
347     * Create JCR to run job.  NOTE!!! after this point, free_jcr()
348     *  before returning.
349     */
350    jcr = new_jcr(sizeof(JCR), dird_free_jcr);
351    set_jcr_defaults(jcr, job);
352
353    jcr->store = store;
354    jcr->client = client;
355    jcr->fileset = fileset;
356    jcr->pool = pool;
357    jcr->ExpectedFiles = files;
358    if (where) {
359       if (jcr->where) {
360          free(jcr->where);
361       }
362       jcr->where = bstrdup(where);
363    }
364
365    if (when) {
366       jcr->sched_time = str_to_utime(when);
367       if (jcr->sched_time == 0) {
368          bsendmsg(ua, _("Invalid time, using current time.\n"));
369          jcr->sched_time = time(NULL);
370       }
371    }
372          
373    if (bootstrap) {
374       if (jcr->RestoreBootstrap) {
375          free(jcr->RestoreBootstrap);
376       }
377       jcr->RestoreBootstrap = bstrdup(bootstrap);
378    }
379
380    if (replace) {
381       jcr->replace = 0;
382       for (i=0; ReplaceOptions[i].name; i++) {
383          if (strcasecmp(replace, ReplaceOptions[i].name) == 0) {
384             jcr->replace = ReplaceOptions[i].token;
385          }
386       }
387       if (!jcr->replace) {
388          bsendmsg(ua, _("Invalid replace option: %s\n"), replace);
389          goto bail_out;
390       }
391    } else if (job->replace) {
392       jcr->replace = job->replace;
393    } else {
394       jcr->replace = REPLACE_ALWAYS;
395    }
396
397    if (Priority) {
398       jcr->JobPriority = Priority;
399    }
400
401 try_again:
402    replace = ReplaceOptions[0].name;
403    for (i=0; ReplaceOptions[i].name; i++) {
404       if (ReplaceOptions[i].token == jcr->replace) {
405          replace = ReplaceOptions[i].name;
406       }
407    }
408    if (level_name) {
409       if (!get_level_from_name(jcr, level_name)) {
410          bsendmsg(ua, _("Level %s not valid.\n"), level_name);
411          goto bail_out;
412       }
413    }
414    if (jid) {
415       jcr->RestoreJobId = atoi(jid);
416    }
417
418    /* Run without prompting? */
419    if (find_arg(ua, _("yes")) > 0) {
420       Dmsg1(200, "Calling run_job job=%x\n", jcr->job);
421       run_job(jcr);
422       free_jcr(jcr);                  /* release jcr */
423       bsendmsg(ua, _("Run command submitted.\n"));
424       return 1;
425    }
426
427    /*  
428     * Prompt User to see if all run job parameters are correct, and
429     *   allow him to modify them.
430     */
431    Dmsg1(20, "JobType=%c\n", jcr->JobType);
432    switch (jcr->JobType) {
433       char ec1[30];
434       char dt[MAX_TIME_LENGTH];
435    case JT_ADMIN:
436          bsendmsg(ua, _("Run %s job\n\
437 JobName:  %s\n\
438 FileSet:  %s\n\
439 Client:   %s\n\
440 Storage:  %s\n\
441 When:     %s\n\
442 Priority: %d\n"),
443                  _("Admin"),
444                  job->hdr.name,
445                  jcr->fileset->hdr.name,
446                  NPRT(jcr->client->hdr.name),
447                  NPRT(jcr->store->hdr.name), 
448                  bstrutime(dt, sizeof(dt), jcr->sched_time), 
449                  jcr->JobPriority);
450       jcr->JobLevel = L_FULL;
451       break;
452    case JT_BACKUP:
453    case JT_VERIFY:
454       if (jcr->JobType == JT_BACKUP) {
455          bsendmsg(ua, _("Run %s job\n\
456 JobName:  %s\n\
457 FileSet:  %s\n\
458 Level:    %s\n\
459 Client:   %s\n\
460 Storage:  %s\n\
461 Pool:     %s\n\
462 When:     %s\n\
463 Priority: %d\n"),
464                  _("Backup"),
465                  job->hdr.name,
466                  jcr->fileset->hdr.name,
467                  level_to_str(jcr->JobLevel),
468                  jcr->client->hdr.name,
469                  jcr->store->hdr.name,
470                  NPRT(jcr->pool->hdr.name), 
471                  bstrutime(dt, sizeof(dt), jcr->sched_time),
472                  jcr->JobPriority);
473       } else {  /* JT_VERIFY */
474          const char *Name;
475          if (jcr->job->verify_job) {
476             Name = jcr->job->verify_job->hdr.name;
477          } else {
478             Name = "";
479          }
480          bsendmsg(ua, _("Run %s job\n\
481 JobName:     %s\n\
482 FileSet:     %s\n\
483 Level:       %s\n\
484 Client:      %s\n\
485 Storage:     %s\n\
486 Pool:        %s\n\
487 Verify Job:  %s\n\
488 When:        %s\n\
489 Priority:    %d\n"),
490               _("Verify"),
491               job->hdr.name,
492               jcr->fileset->hdr.name,
493               level_to_str(jcr->JobLevel),
494               jcr->client->hdr.name,
495               jcr->store->hdr.name,
496               NPRT(jcr->pool->hdr.name), 
497               Name,            
498               bstrutime(dt, sizeof(dt), jcr->sched_time),
499               jcr->JobPriority);
500       }
501       break;
502    case JT_RESTORE:
503       if (jcr->RestoreJobId == 0 && !jcr->RestoreBootstrap) {
504          if (jid) {
505             jcr->RestoreJobId = atoi(jid);
506          } else {
507             if (!get_pint(ua, _("Please enter a JobId for restore: "))) {
508                goto bail_out;
509             }  
510             jcr->RestoreJobId = ua->pint32_val;
511          }
512       }
513       jcr->JobLevel = L_FULL;      /* default level */
514       Dmsg1(20, "JobId to restore=%d\n", jcr->RestoreJobId);
515       if (jcr->RestoreJobId == 0) {
516          bsendmsg(ua, _("Run Restore job\n\
517 JobName:    %s\n\
518 Bootstrap:  %s\n\
519 Where:      %s\n\
520 Replace:    %s\n\
521 FileSet:    %s\n\
522 Client:     %s\n\
523 Storage:    %s\n\
524 When:       %s\n\
525 Priority:   %d\n"),
526               job->hdr.name,
527               NPRT(jcr->RestoreBootstrap),
528               jcr->where?jcr->where:NPRT(job->RestoreWhere),
529               replace,
530               jcr->fileset->hdr.name,
531               jcr->client->hdr.name,
532               jcr->store->hdr.name, 
533               bstrutime(dt, sizeof(dt), jcr->sched_time),
534               jcr->JobPriority);
535       } else {
536          bsendmsg(ua, _("Run Restore job\n\
537 JobName:    %s\n\
538 Bootstrap:  %s\n\
539 Where:      %s\n\
540 Replace:    %s\n\
541 FileSet:    %s\n\
542 Client:     %s\n\
543 Storage:    %s\n\
544 JobId:      %s\n\
545 When:       %s\n\
546 Priority:   %d\n"),
547               job->hdr.name,
548               NPRT(jcr->RestoreBootstrap),
549               jcr->where?jcr->where:NPRT(job->RestoreWhere),
550               replace,
551               jcr->fileset->hdr.name,
552               jcr->client->hdr.name,
553               jcr->store->hdr.name, 
554               jcr->RestoreJobId==0?"*None*":edit_uint64(jcr->RestoreJobId, ec1), 
555               bstrutime(dt, sizeof(dt), jcr->sched_time),
556               jcr->JobPriority);
557       }
558       break;
559    default:
560       bsendmsg(ua, _("Unknown Job Type=%d\n"), jcr->JobType);
561       goto bail_out;
562    }
563
564
565    if (!get_cmd(ua, _("OK to run? (yes/mod/no): "))) {
566       goto bail_out;
567    }
568    /*
569     * At user request modify parameters of job to be run.
570     */
571    if (ua->cmd[0] == 0) {
572       goto bail_out;
573    }
574    if (strncasecmp(ua->cmd, _("mod"), strlen(ua->cmd)) == 0) {
575       FILE *fd;
576
577       start_prompt(ua, _("Parameters to modify:\n"));
578       add_prompt(ua, _("Level"));            /* 0 */
579       add_prompt(ua, _("Storage"));          /* 1 */
580       add_prompt(ua, _("Job"));              /* 2 */
581       add_prompt(ua, _("FileSet"));          /* 3 */
582       add_prompt(ua, _("Client"));           /* 4 */
583       add_prompt(ua, _("When"));             /* 5 */
584       add_prompt(ua, _("Priority"));         /* 6 */
585       if (jcr->JobType == JT_BACKUP ||
586           jcr->JobType == JT_VERIFY) {
587          add_prompt(ua, _("Pool"));          /* 7 */
588          if (jcr->JobType == JT_VERIFY) {
589             add_prompt(ua, _("Verify Job"));  /* 8 */
590          }
591       } else if (jcr->JobType == JT_RESTORE) {
592          add_prompt(ua, _("Bootstrap"));     /* 7 */
593          add_prompt(ua, _("Where"));         /* 8 */
594          add_prompt(ua, _("Replace"));       /* 9 */
595          add_prompt(ua, _("JobId"));         /* 10 */
596       }
597       switch (do_prompt(ua, "", _("Select parameter to modify"), NULL, 0)) {
598       case 0:
599          /* Level */
600          if (jcr->JobType == JT_BACKUP) {
601             start_prompt(ua, _("Levels:\n"));
602             add_prompt(ua, _("Base"));
603             add_prompt(ua, _("Full"));
604             add_prompt(ua, _("Incremental"));
605             add_prompt(ua, _("Differential"));
606             add_prompt(ua, _("Since"));
607             switch (do_prompt(ua, "", _("Select level"), NULL, 0)) {
608             case 0:
609                jcr->JobLevel = L_BASE;
610                break;
611             case 1:
612                jcr->JobLevel = L_FULL;
613                break;
614             case 2:
615                jcr->JobLevel = L_INCREMENTAL;
616                break;
617             case 3:
618                jcr->JobLevel = L_DIFFERENTIAL;
619                break;
620             case 4:
621                jcr->JobLevel = L_SINCE;
622                break;
623             default:
624                break;
625             }
626             goto try_again;
627          } else if (jcr->JobType == JT_VERIFY) {
628             start_prompt(ua, _("Levels:\n"));
629             add_prompt(ua, _("Initialize Catalog"));
630             add_prompt(ua, _("Verify Catalog"));
631             add_prompt(ua, _("Verify Volume to Catalog"));
632             add_prompt(ua, _("Verify Disk to Catalog"));
633             add_prompt(ua, _("Verify Volume Data (not yet implemented)"));
634             switch (do_prompt(ua, "",  _("Select level"), NULL, 0)) {
635             case 0:
636                jcr->JobLevel = L_VERIFY_INIT;
637                break;
638             case 1:
639                jcr->JobLevel = L_VERIFY_CATALOG;
640                break;
641             case 2:
642                jcr->JobLevel = L_VERIFY_VOLUME_TO_CATALOG;
643                break;
644             case 3:
645                jcr->JobLevel = L_VERIFY_DISK_TO_CATALOG;
646                break;
647             case 4:
648                jcr->JobLevel = L_VERIFY_DATA;
649                break;
650             default:
651                break;
652             }
653             goto try_again;
654          } else {
655             bsendmsg(ua, _("Level not appropriate for this Job. Cannot be changed.\n"));
656          }
657          goto try_again;
658       case 1:
659          /* Storage */
660          store = select_storage_resource(ua);
661          if (store) {
662             jcr->store = store;
663             goto try_again;
664          }
665          break;
666       case 2:
667          /* Job */
668          job = select_job_resource(ua);
669          if (job) {
670             jcr->job = job;
671             set_jcr_defaults(jcr, job);
672             goto try_again;
673          }
674          break;
675       case 3:
676          /* FileSet */
677          fileset = select_fileset_resource(ua);
678          if (fileset) {
679             jcr->fileset = fileset;
680             goto try_again;
681          }      
682          break;
683       case 4:
684          /* Client */
685          client = select_client_resource(ua);
686          if (client) {
687             jcr->client = client;
688             goto try_again;
689          }
690          break;
691       case 5:
692          /* When */
693          if (!get_cmd(ua, _("Please enter desired start time as YYYY-MM-DD HH:MM:SS (return for now): "))) {
694             break;
695          }
696          if (ua->cmd[0] == 0) {
697             jcr->sched_time = time(NULL);
698          } else {
699             jcr->sched_time = str_to_utime(ua->cmd);
700             if (jcr->sched_time == 0) {
701                bsendmsg(ua, _("Invalid time, using current time.\n"));
702                jcr->sched_time = time(NULL);
703             }
704          }
705          goto try_again;
706       case 6:
707          /* Priority */
708          if (!get_pint(ua, _("Enter new Priority: "))) {
709             break;
710          }
711          if (ua->pint32_val == 0) {
712             bsendmsg(ua, _("Priority must be a positive integer.\n"));
713          } else {
714             jcr->JobPriority = ua->pint32_val;
715          }
716          goto try_again;
717       case 7:
718          /* Pool or Bootstrap depending on JobType */
719          if (jcr->JobType == JT_BACKUP ||
720              jcr->JobType == JT_VERIFY) {      /* Pool */
721             pool = select_pool_resource(ua);
722             if (pool) {
723                jcr->pool = pool;
724                goto try_again;
725             }
726             break;
727          }
728
729          /* Bootstrap */
730          if (!get_cmd(ua, _("Please enter the Bootstrap file name: "))) {
731             break;
732          }
733          if (jcr->RestoreBootstrap) {
734             free(jcr->RestoreBootstrap);
735             jcr->RestoreBootstrap = NULL;
736          }
737          if (ua->cmd[0] != 0) {
738             jcr->RestoreBootstrap = bstrdup(ua->cmd);
739             fd = fopen(jcr->RestoreBootstrap, "r");
740             if (!fd) {
741                bsendmsg(ua, _("Warning cannot open %s: ERR=%s\n"),
742                   jcr->RestoreBootstrap, strerror(errno));
743                free(jcr->RestoreBootstrap);
744                jcr->RestoreBootstrap = NULL;
745             } else {
746                fclose(fd);
747             }
748          }
749          goto try_again;
750       case 8:
751          /* Verify Job */
752          if (jcr->JobType == JT_VERIFY) {
753             JOB *job = select_job_resource(ua);
754             if (job) {
755                jcr->job->verify_job = job;
756             } else {
757                jcr->job->verify_job = NULL;
758             }
759             goto try_again;
760          }
761          /* Where */
762          if (!get_cmd(ua, _("Please enter path prefix for restore (/ for none): "))) {
763             break;
764          }
765          if (jcr->where) {
766             free(jcr->where);
767             jcr->where = NULL;
768          }
769          if (ua->cmd[0] == '/' && ua->cmd[1] == 0) {
770             ua->cmd[0] = 0;
771          }
772          jcr->where = bstrdup(ua->cmd);
773          goto try_again;
774       case 9:
775          /* Replace */
776          start_prompt(ua, _("Replace:\n"));
777          for (i=0; ReplaceOptions[i].name; i++) {
778             add_prompt(ua, ReplaceOptions[i].name);
779          }
780          opt = do_prompt(ua, "", _("Select replace option"), NULL, 0);
781          if (opt >=  0) {
782             jcr->replace = ReplaceOptions[opt].token;
783          }
784          goto try_again;
785       case 10:
786          /* JobId */
787          jid = NULL;                  /* force reprompt */
788          jcr->RestoreJobId = 0;
789          if (jcr->RestoreBootstrap) {
790             bsendmsg(ua, _("You must set the bootstrap file to NULL to be able to specify a JobId.\n"));
791          }
792          goto try_again;
793       default: 
794          goto try_again;
795       }
796       goto bail_out;
797    }
798
799    if (strncasecmp(ua->cmd, _("yes"), strlen(ua->cmd)) == 0) {
800       Dmsg1(200, "Calling run_job job=%x\n", jcr->job);
801       run_job(jcr);
802       free_jcr(jcr);                  /* release jcr */
803       bsendmsg(ua, _("Run command submitted.\n"));
804       return 1;
805    }
806
807 bail_out:
808    bsendmsg(ua, _("Job not run.\n"));
809    free_jcr(jcr);
810    return 0;                       /* do not run */
811 }