]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_cmds.c
30788df097f7e9663da3f08eb0139621abb42cef
[bacula/bacula] / bacula / src / dird / ua_cmds.c
1 /*
2  *
3  *   Bacula Director -- User Agent Commands
4  *
5  *     Kern Sibbald, September MM
6  *
7  *   Version $Id$
8  */
9
10 /*
11    Copyright (C) 2000-2003 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 int r_first;
37 extern int r_last;
38 extern struct s_res resources[];
39 extern char my_name[];
40 #ifdef JOB_QUEUE
41 extern jobq_t job_queue;              /* job queue */
42 #endif
43
44 extern char *list_pool;
45
46 /* Imported functions */
47 extern int statuscmd(UAContext *ua, char *cmd);
48 extern int listcmd(UAContext *ua, char *cmd);
49 extern int llistcmd(UAContext *ua, char *cmd);
50 extern int show_cmd(UAContext *ua, char *cmd);
51 extern int messagescmd(UAContext *ua, char *cmd);
52 extern int autodisplaycmd(UAContext *ua, char *cmd);
53 extern int sqlquerycmd(UAContext *ua, char *cmd);
54 extern int querycmd(UAContext *ua, char *cmd);
55 extern int runcmd(UAContext *ua, char *cmd);
56 extern int retentioncmd(UAContext *ua, char *cmd);
57 extern int prunecmd(UAContext *ua, char *cmd);
58 extern int purgecmd(UAContext *ua, char *cmd);
59 extern int restorecmd(UAContext *ua, char *cmd);
60 extern int label_cmd(UAContext *ua, char *cmd);
61 extern int relabel_cmd(UAContext *ua, char *cmd);
62 extern int update_slots(UAContext *ua);  /* ua_label.c */
63
64 /* Forward referenced functions */
65 static int add_cmd(UAContext *ua, char *cmd),  createcmd(UAContext *ua, char *cmd), cancelcmd(UAContext *ua, char *cmd);
66 static int setdebug_cmd(UAContext *ua, char *cmd);
67 static int var_cmd(UAContext *ua, char *cmd);
68 static int estimate_cmd(UAContext *ua, char *cmd);
69 static int help_cmd(UAContext *ua, char *cmd);
70 static int delete_cmd(UAContext *ua, char *cmd);
71 static int use_cmd(UAContext *ua, char *cmd),  unmount_cmd(UAContext *ua, char *cmd);
72 static int version_cmd(UAContext *ua, char *cmd), automount_cmd(UAContext *ua, char *cmd);
73 static int time_cmd(UAContext *ua, char *cmd);
74 static int update_volume(UAContext *ua);
75 static int update_pool(UAContext *ua);
76 static int delete_volume(UAContext *ua);
77 static int delete_pool(UAContext *ua);
78 static int mount_cmd(UAContext *ua, char *cmd);
79 static int release_cmd(UAContext *ua, char *cmd);
80 static int update_cmd(UAContext *ua, char *cmd);
81 static int wait_cmd(UAContext *ua, char *cmd);
82
83 int quit_cmd(UAContext *ua, char *cmd);
84
85
86 struct cmdstruct { char *key; int (*func)(UAContext *ua, char *cmd); char *help; }; 
87 static struct cmdstruct commands[] = {
88  { N_("add"),        add_cmd,         _("add media to a pool")},
89  { N_("autodisplay"), autodisplaycmd, _("autodisplay [on/off] -- console messages")},
90  { N_("automount"),   automount_cmd,  _("automount [on/off] -- after label")},
91  { N_("cancel"),     cancelcmd,     _("cancel job=nnn -- cancel a job")},
92  { N_("create"),     createcmd,     _("create DB Pool from resource")},  
93  { N_("delete"),     delete_cmd,    _("delete [pool=<pool-name> | media volume=<volume-name>]")},    
94  { N_("estimate"),   estimate_cmd,  _("performs FileSet estimate, listing gives full listing")},
95  { N_("exit"),       quit_cmd,      _("exit = quit")},
96  { N_("help"),       help_cmd,      _("print this command")},
97  { N_("label"),      label_cmd,     _("label a tape")},
98  { N_("list"),       listcmd,       _("list [pools | jobs | jobtotals | media <pool> | files job=<nn>]; from catalog")},
99  { N_("llist"),      llistcmd,      _("full or long list like list command")},
100  { N_("messages"),   messagescmd,   _("messages")},
101  { N_("mount"),      mount_cmd,     _("mount <storage-name>")},
102  { N_("prune"),      prunecmd,      _("prune expired records from catalog")},
103  { N_("purge"),      purgecmd,      _("purge records from catalog")},
104  { N_("query"),      querycmd,      _("query catalog")},
105  { N_("quit"),       quit_cmd,      _("quit")},
106  { N_("relabel"),    relabel_cmd,   _("relabel a tape")},
107  { N_("release"),    release_cmd,   _("release <storage-name>")},
108  { N_("restore"),    restorecmd,    _("restore files")},
109  { N_("run"),        runcmd,        _("run <job-name>")},
110  { N_("setdebug"),   setdebug_cmd,  _("sets debug level")},
111  { N_("show"),       show_cmd,      _("show (resource records) [jobs | pools | ... | all]")},
112  { N_("sqlquery"),   sqlquerycmd,   _("use SQL to query catalog")}, 
113  { N_("status"),     statuscmd,     _("status [storage | client]=<name>")},
114  { N_("time"),       time_cmd,      _("print current time")},
115  { N_("unmount"),    unmount_cmd,   _("unmount <storage-name>")},
116  { N_("update"),     update_cmd,    _("update Volume or Pool")},
117  { N_("use"),        use_cmd,       _("use catalog xxx")},
118  { N_("var"),        var_cmd,       _("does variable expansion")},
119  { N_("version"),    version_cmd,   _("print Director version")},
120  { N_("wait"),       wait_cmd,      _("wait until no jobs are running")},
121              };
122 #define comsize (sizeof(commands)/sizeof(struct cmdstruct))
123
124 /*
125  * Execute a command from the UA
126  */
127 int do_a_command(UAContext *ua, char *cmd)
128 {
129    unsigned int i;
130    int len, stat;
131    int found;
132
133    found = 0;
134    stat = 1;
135
136    Dmsg1(120, "Command: %s\n", ua->UA_sock->msg);
137    if (ua->argc == 0) {
138       return 1;
139    }
140
141    len = strlen(ua->argk[0]);
142    for (i=0; i<comsize; i++) {     /* search for command */
143       if (strncasecmp(ua->argk[0],  _(commands[i].key), len) == 0) {
144          stat = (*commands[i].func)(ua, cmd);   /* go execute command */
145          found = 1;
146          break;
147       }
148    }
149    if (!found) {
150       pm_strcat(&ua->UA_sock->msg, _(": is an illegal command\n"));
151       ua->UA_sock->msglen = strlen(ua->UA_sock->msg);
152       bnet_send(ua->UA_sock);
153    }
154    return stat;
155 }
156
157 /*
158  * This is a common routine used to stuff the Pool DB record defaults
159  *   into the Media DB record just before creating a media (Volume) 
160  *   record.
161  */
162 void set_pool_dbr_defaults_in_media_dbr(MEDIA_DBR *mr, POOL_DBR *pr)
163 {
164    mr->PoolId = pr->PoolId;
165    strcpy(mr->VolStatus, "Append");
166    mr->Recycle = pr->Recycle;
167    mr->VolRetention = pr->VolRetention;
168    mr->VolUseDuration = pr->VolUseDuration;
169    mr->MaxVolJobs = pr->MaxVolJobs;
170    mr->MaxVolFiles = pr->MaxVolFiles;
171    mr->MaxVolBytes = pr->MaxVolBytes;
172 }
173
174
175 /*
176  *  Add Volumes to an existing Pool
177  */
178 static int add_cmd(UAContext *ua, char *cmd) 
179 {
180    POOL_DBR pr;
181    MEDIA_DBR mr;
182    int num, i, max, startnum;
183    int first_id = 0;
184    char name[MAX_NAME_LENGTH];
185    STORE *store;
186    int slot = 0;
187
188    bsendmsg(ua, _(
189 "You probably don't want to be using this command since it\n"
190 "creates database records without labeling the Volumes.\n"
191 "You probably want to use the \"label\" command.\n\n"));
192
193    if (!open_db(ua)) {
194       return 1;
195    }
196
197    memset(&pr, 0, sizeof(pr));
198    memset(&mr, 0, sizeof(mr));
199
200    if (!get_pool_dbr(ua, &pr)) {
201       return 1;
202    }
203
204    Dmsg4(120, "id=%d Num=%d Max=%d type=%s\n", pr.PoolId, pr.NumVols,
205       pr.MaxVols, pr.PoolType);
206
207    while (pr.MaxVols > 0 && pr.NumVols >= pr.MaxVols) {
208       bsendmsg(ua, _("Pool already has maximum volumes = %d\n"), pr.MaxVols);
209       for (;;) {
210          if (!get_pint(ua, _("Enter new maximum (zero for unlimited): "))) {
211             return 1;
212          }
213          pr.MaxVols = ua->pint32_val;
214       }
215    }
216
217    /* Get media type */
218    if ((store = get_storage_resource(ua, 0)) != NULL) {
219       bstrncpy(mr.MediaType, store->media_type, sizeof(mr.MediaType));
220    } else if (!get_media_type(ua, mr.MediaType, sizeof(mr.MediaType))) {
221       return 1;
222    }
223       
224    if (pr.MaxVols == 0) {
225       max = 1000;
226    } else {
227       max = pr.MaxVols - pr.NumVols;
228    }
229    for (;;) {
230       char buf[100]; 
231       bsnprintf(buf, sizeof(buf), _("Enter number of Volumes to create. 0=>fixed name. Max=%d: "), max);
232       if (!get_pint(ua, buf)) {
233          return 1;
234       }
235       num = ua->pint32_val;
236       if (num < 0 || num > max) {
237          bsendmsg(ua, _("The number must be between 0 and %d\n"), max);
238          continue;
239       }
240       break;
241    }
242 getVolName:
243    if (num == 0) {
244       if (!get_cmd(ua, _("Enter Volume name: "))) {
245          return 1;
246       }
247    } else {
248       if (!get_cmd(ua, _("Enter base volume name: "))) {
249          return 1;
250       }
251    }
252    /* Don't allow | in Volume name because it is the volume separator character */
253    if (!is_volume_name_legal(ua, ua->cmd)) {
254       goto getVolName;
255    }
256    if (strlen(ua->cmd) >= MAX_NAME_LENGTH-10) {
257       bsendmsg(ua, _("Volume name too long.\n"));
258       goto getVolName;
259    }
260    if (strlen(ua->cmd) == 0) {
261       bsendmsg(ua, _("Volume name must be at least one character long.\n"));
262       goto getVolName;
263    }
264
265    bstrncpy(name, ua->cmd, sizeof(name));
266    if (num > 0) {
267       strcat(name, "%04d");
268
269       for (;;) {
270          if (!get_pint(ua, _("Enter the starting number: "))) {
271             return 1;
272          }
273          startnum = ua->pint32_val;
274          if (startnum < 1) {
275             bsendmsg(ua, _("Start number must be greater than zero.\n"));
276             continue;
277          }
278          break;
279       }
280    } else {
281       startnum = 1;
282       num = 1;
283    }
284
285    if (store && store->autochanger) {
286       if (!get_pint(ua, _("Enter slot (0 for none): "))) {
287          return 1;
288       }
289       slot = ua->pint32_val;
290    }
291            
292    set_pool_dbr_defaults_in_media_dbr(&mr, &pr);
293    for (i=startnum; i < num+startnum; i++) { 
294       bsnprintf(mr.VolumeName, sizeof(mr.VolumeName), name, i);
295       mr.Slot = slot++;
296       Dmsg1(200, "Create Volume %s\n", mr.VolumeName);
297       if (!db_create_media_record(ua->jcr, ua->db, &mr)) {
298          bsendmsg(ua, db_strerror(ua->db));
299          return 1;
300       }
301       if (i == startnum) {
302          first_id = mr.PoolId;
303       }
304    }
305    pr.NumVols += num;
306    Dmsg0(200, "Update pool record.\n"); 
307    if (db_update_pool_record(ua->jcr, ua->db, &pr) != 1) {
308       bsendmsg(ua, db_strerror(ua->db));
309       return 1;
310    }
311    bsendmsg(ua, _("%d Volumes created in pool %s\n"), num, pr.Name);
312
313    return 1;
314 }
315
316 /*
317  * Turn auto mount on/off  
318  * 
319  *  automount on 
320  *  automount off
321  */
322 int automount_cmd(UAContext *ua, char *cmd)
323 {
324    char *onoff;
325
326    if (ua->argc != 2) {
327       if (!get_cmd(ua, _("Turn on or off? "))) {
328             return 1;
329       }
330       onoff = ua->cmd;
331    } else {
332       onoff = ua->argk[1];
333    }
334
335    ua->automount = (strcasecmp(onoff, _("off")) == 0) ? 0 : 1;
336    return 1; 
337 }
338
339
340 /*
341  * Cancel a job
342  */
343 static int cancelcmd(UAContext *ua, char *cmd)
344 {
345    int i;
346    int njobs = 0;
347    BSOCK *sd, *fd;
348    JCR *jcr = NULL;
349    char JobName[MAX_NAME_LENGTH];
350
351    if (!open_db(ua)) {
352       return 1;
353    }
354
355    for (i=1; i<ua->argc; i++) {
356       if (strcasecmp(ua->argk[i], _("jobid")) == 0) {
357          if (!ua->argv[i]) {
358             break;
359          }
360          if (!(jcr=get_jcr_by_id(atoi(ua->argv[i])))) {
361             bsendmsg(ua, _("JobId %d is not running.\n"), atoi(ua->argv[i]));
362             return 1;
363          }
364          break;
365       } else if (strcasecmp(ua->argk[i], _("job")) == 0) {
366          if (!ua->argv[i]) {
367             break;
368          }
369          if (!(jcr=get_jcr_by_partial_name(ua->argv[i]))) {
370             bsendmsg(ua, _("Job %s is not running.\n"), ua->argv[i]);
371             return 1;
372          }
373          break;
374       }
375    }
376    /* If we still do not have a jcr,
377     *   throw up a list and ask the user to select one.
378     */
379    if (!jcr) {
380       /* Count Jobs running */
381       lock_jcr_chain();
382       for (jcr=NULL; (jcr=get_next_jcr(jcr)); njobs++) {
383          if (jcr->JobId == 0) {      /* this is us */
384             free_locked_jcr(jcr);
385             njobs--;
386             continue;
387          }
388          free_locked_jcr(jcr);
389       }
390       unlock_jcr_chain();
391
392       if (njobs == 0) {
393          bsendmsg(ua, _("No Jobs running.\n"));
394          return 1;
395       }
396       start_prompt(ua, _("Select Job:\n"));
397       lock_jcr_chain();
398       for (jcr=NULL; (jcr=get_next_jcr(jcr)); ) {
399          if (jcr->JobId == 0) {      /* this is us */
400             free_locked_jcr(jcr);
401             continue;
402          }
403          add_prompt(ua, jcr->Job);
404          free_locked_jcr(jcr);
405       }
406       unlock_jcr_chain();
407
408       if (do_prompt(ua, _("Job"),  _("Choose Job to cancel"), JobName, sizeof(JobName)) < 0) {
409          return 1;
410       }
411       if (njobs == 1) {
412          if (!get_yesno(ua, _("Confirm cancel (yes/no): ")) || ua->pint32_val == 0) {
413             return 1;
414          }
415       }
416       jcr = get_jcr_by_full_name(JobName);
417       if (!jcr) {
418          bsendmsg(ua, _("Job %s not found.\n"), JobName);
419          return 1;
420       }
421    }
422      
423    switch (jcr->JobStatus) {
424    case JS_Created:
425    case JS_WaitJobRes:
426    case JS_WaitClientRes:
427    case JS_WaitStoreRes:
428    case JS_WaitPriority:
429    case JS_WaitMaxJobs:
430    case JS_WaitStartTime:
431       set_jcr_job_status(jcr, JS_Canceled);
432       bsendmsg(ua, _("JobId %d, Job %s marked to be canceled.\n"),
433               jcr->JobId, jcr->Job);
434 #ifdef JOB_QUEUE
435       jobq_remove(&job_queue, jcr); /* attempt to remove it from queue */
436 #endif
437       free_jcr(jcr);                  /* this decrements the use count only */
438       return 1;
439          
440    default:
441       set_jcr_job_status(jcr, JS_Canceled);
442
443       /* Cancel File daemon */
444       if (jcr->file_bsock) {
445          ua->jcr->client = jcr->client;
446          if (!connect_to_file_daemon(ua->jcr, 10, FDConnectTimeout, 1)) {
447             bsendmsg(ua, _("Failed to connect to File daemon.\n"));
448             free_jcr(jcr);
449             return 1;
450          }
451          Dmsg0(200, "Connected to file daemon\n");
452          fd = ua->jcr->file_bsock;
453          bnet_fsend(fd, "cancel Job=%s\n", jcr->Job);
454          while (bnet_recv(fd) >= 0) {
455             bsendmsg(ua, "%s", fd->msg);
456          }
457          bnet_sig(fd, BNET_TERMINATE);
458          bnet_close(fd);
459          ua->jcr->file_bsock = NULL;
460       }
461
462       /* Cancel Storage daemon */
463       if (jcr->store_bsock) {
464          ua->jcr->store = jcr->store;
465          if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
466             bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
467             free_jcr(jcr);
468             return 1;
469          }
470          Dmsg0(200, "Connected to storage daemon\n");
471          sd = ua->jcr->store_bsock;
472          bnet_fsend(sd, "cancel Job=%s\n", jcr->Job);
473          while (bnet_recv(sd) >= 0) {
474             bsendmsg(ua, "%s", sd->msg);
475          }
476          bnet_sig(sd, BNET_TERMINATE);
477          bnet_close(sd);
478          ua->jcr->store_bsock = NULL;
479       }
480    }
481    free_jcr(jcr);
482
483    return 1; 
484 }
485
486 /*
487  * This is a common routine to create or update a
488  *   Pool DB base record from a Pool Resource. We handle
489  *   the setting of MaxVols and NumVols slightly differently
490  *   depending on if we are creating the Pool or we are
491  *   simply bringing it into agreement with the resource (updage).
492  */
493 static void set_pooldbr_from_poolres(POOL_DBR *pr, POOL *pool, e_pool_op op)
494 {
495    strcpy(pr->PoolType, pool->pool_type);
496    if (op == POOL_OP_CREATE) {
497       pr->MaxVols = pool->max_volumes;
498       pr->NumVols = 0;
499    } else {          /* update pool */
500       if (pr->MaxVols != pool->max_volumes) {
501          pr->MaxVols = pool->max_volumes;
502       }
503       if (pr->MaxVols != 0 && pr->MaxVols < pr->NumVols) {
504          pr->MaxVols = pr->NumVols;
505       }
506    }
507    pr->UseOnce = pool->use_volume_once;
508    pr->UseCatalog = pool->use_catalog;
509    pr->AcceptAnyVolume = pool->accept_any_volume;
510    pr->Recycle = pool->Recycle;
511    pr->VolRetention = pool->VolRetention;
512    pr->VolUseDuration = pool->VolUseDuration;
513    pr->MaxVolJobs = pool->MaxVolJobs;
514    pr->MaxVolFiles = pool->MaxVolFiles;
515    pr->MaxVolBytes = pool->MaxVolBytes;
516    pr->AutoPrune = pool->AutoPrune;
517    pr->Recycle = pool->Recycle;
518    if (pool->label_format) {
519       strcpy(pr->LabelFormat, pool->label_format);
520    } else {
521       strcpy(pr->LabelFormat, "*");    /* none */
522    }
523 }
524
525
526 /*
527  * Create a pool record from a given Pool resource
528  *   Also called from backup.c
529  * Returns: -1  on error
530  *           0  record already exists
531  *           1  record created
532  */
533
534 int create_pool(JCR *jcr, B_DB *db, POOL *pool, e_pool_op op)
535 {
536    POOL_DBR  pr;
537
538    memset(&pr, 0, sizeof(POOL_DBR));
539
540    strcpy(pr.Name, pool->hdr.name);
541
542    if (db_get_pool_record(jcr, db, &pr)) {
543       /* Pool Exists */
544       if (op == POOL_OP_UPDATE) {  /* update request */
545          set_pooldbr_from_poolres(&pr, pool, op);
546          db_update_pool_record(jcr, db, &pr);
547       }
548       return 0;                       /* exists */
549    }
550
551    set_pooldbr_from_poolres(&pr, pool, op);
552
553    if (!db_create_pool_record(jcr, db, &pr)) {
554       return -1;                      /* error */
555    }
556    return 1;
557 }
558
559
560
561 /*
562  * Create a Pool Record in the database.
563  *  It is always created from the Resource record.
564  */
565 static int createcmd(UAContext *ua, char *cmd) 
566 {
567    POOL *pool;
568
569    if (!open_db(ua)) {
570       return 1;
571    }
572
573    pool = get_pool_resource(ua);
574    if (!pool) {
575       return 1;
576    }
577
578    switch (create_pool(ua->jcr, ua->db, pool, POOL_OP_CREATE)) {
579    case 0:
580       bsendmsg(ua, _("Error: Pool %s already exists.\n\
581 Use update to change it.\n"), pool->hdr.name);
582       break;
583
584    case -1:
585       bsendmsg(ua, db_strerror(ua->db));
586       break;
587
588    default:
589      break;
590    }
591    bsendmsg(ua, _("Pool %s created.\n"), pool->hdr.name);
592    return 1;
593 }
594
595
596
597
598 /*
599  * Update a Pool Record in the database.
600  *  It is always updated from the Resource record.
601  *
602  *    update pool=<pool-name>
603  *         updates pool from Pool resource
604  *    update media pool=<pool-name> volume=<volume-name>
605  *         changes pool info for volume
606  */
607 static int update_cmd(UAContext *ua, char *cmd) 
608 {
609    static char *kw[] = {
610       N_("media"),  /* 0 */
611       N_("volume"), /* 1 */
612       N_("pool"),   /* 2 */
613       N_("slots"),  /* 3 */
614       NULL};
615
616    if (!open_db(ua)) {
617       return 1;
618    }
619
620    switch (find_arg_keyword(ua, kw)) {
621    case 0:
622    case 1:
623       update_volume(ua);
624       return 1;
625    case 2:
626       update_pool(ua);
627       return 1;
628    case 3:
629       update_slots(ua);
630       return 1;
631    default:
632       break;
633    }
634     
635    start_prompt(ua, _("Update choice:\n"));
636    add_prompt(ua, _("Volume parameters"));
637    add_prompt(ua, _("Pool from resource"));
638    add_prompt(ua, _("Slots from autochanger"));
639    switch (do_prompt(ua, _("item"), _("Choose catalog item to update"), NULL, 0)) {
640    case 0:
641       update_volume(ua);
642       break;
643    case 1:
644       update_pool(ua);
645       break;
646    case 2:
647       update_slots(ua);
648       break;
649    default:
650       break;
651    }
652    return 1;
653 }
654
655 static void update_volstatus(UAContext *ua, char *val, MEDIA_DBR *mr)
656 {
657    POOLMEM *query = get_pool_memory(PM_MESSAGE);
658    char *kw[] = {
659       "Append",
660       "Archive",
661       "Disabled",
662       "Full",
663       "Used", 
664       "Cleaning", 
665       "Recycle",
666       "Read-Only",
667       NULL};
668    bool found = false;
669    int i;
670
671    for (i=0; kw[i]; i++) {
672       if (strcasecmp(val, kw[i]) == 0) {
673          found = true;
674          break;
675       }
676    }
677    if (!found) {
678       bsendmsg(ua, _("Invalid VolStatus specified: %s\n"), val);
679    } else {
680       bstrncpy(mr->VolStatus, kw[i], sizeof(mr->VolStatus));
681       Mmsg(&query, "UPDATE Media SET VolStatus='%s' WHERE MediaId=%u",
682          mr->VolStatus, mr->MediaId);
683       if (!db_sql_query(ua->db, query, NULL, NULL)) {  
684          bsendmsg(ua, "%s", db_strerror(ua->db));
685       } else {
686          bsendmsg(ua, _("New Volume status is: %s\n"), mr->VolStatus);
687       }
688    }
689    free_pool_memory(query);
690 }
691
692 static void update_volretention(UAContext *ua, char *val, MEDIA_DBR *mr)
693 {
694    char ed1[50];
695    POOLMEM *query;
696    if (!duration_to_utime(val, &mr->VolRetention)) {
697       bsendmsg(ua, _("Invalid retention period specified: %s\n"), val);
698       return;
699    }
700    query = get_pool_memory(PM_MESSAGE);
701    Mmsg(&query, "UPDATE Media SET VolRetention=%s WHERE MediaId=%u",
702       edit_uint64(mr->VolRetention, ed1), mr->MediaId);
703    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
704       bsendmsg(ua, "%s", db_strerror(ua->db));
705    } else {
706       bsendmsg(ua, _("New retention seconds is: %s\n"),
707          edit_utime(mr->VolRetention, ed1));
708    }
709    free_pool_memory(query);
710 }
711
712 static void update_voluseduration(UAContext *ua, char *val, MEDIA_DBR *mr)
713 {
714    char ed1[50];
715    POOLMEM *query;
716
717    if (!duration_to_utime(val, &mr->VolUseDuration)) {
718       bsendmsg(ua, _("Invalid use duration specified: %s\n"), val);
719       return;
720    }
721    query = get_pool_memory(PM_MESSAGE);
722    Mmsg(&query, "UPDATE Media SET VolUseDuration=%s WHERE MediaId=%u",
723       edit_uint64(mr->VolUseDuration, ed1), mr->MediaId);
724    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
725       bsendmsg(ua, "%s", db_strerror(ua->db));
726    } else {
727       bsendmsg(ua, _("New use duration is: %s\n"),
728          edit_utime(mr->VolUseDuration, ed1));
729    }
730    free_pool_memory(query);
731 }
732
733 static void update_volmaxjobs(UAContext *ua, char *val, MEDIA_DBR *mr)
734 {
735    POOLMEM *query = get_pool_memory(PM_MESSAGE);
736    Mmsg(&query, "UPDATE Media SET MaxVolJobs=%s WHERE MediaId=%u",
737       val, mr->MediaId);
738    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
739       bsendmsg(ua, "%s", db_strerror(ua->db));
740    } else {
741       bsendmsg(ua, _("New max jobs is: %s\n"), val);
742    }
743    free_pool_memory(query);
744 }
745
746 static void update_volmaxfiles(UAContext *ua, char *val, MEDIA_DBR *mr)
747 {
748    POOLMEM *query = get_pool_memory(PM_MESSAGE);
749    Mmsg(&query, "UPDATE Media SET MaxVolFiles=%s WHERE MediaId=%u",
750       val, mr->MediaId);
751    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
752       bsendmsg(ua, "%s", db_strerror(ua->db));
753    } else {
754       bsendmsg(ua, _("New max files is: %s\n"), val);
755    }
756    free_pool_memory(query);
757 }
758
759 static void update_volmaxbytes(UAContext *ua, char *val, MEDIA_DBR *mr)
760 {
761    uint64_t maxbytes;
762    char ed1[50];
763    POOLMEM *query;
764
765    if (!size_to_uint64(val, strlen(val), &maxbytes)) {
766       bsendmsg(ua, _("Invalid max. bytes specification: %s\n"), val);
767       return;
768    } 
769    query = get_pool_memory(PM_MESSAGE);
770    Mmsg(&query, "UPDATE Media SET MaxVolBytes=%s WHERE MediaId=%u",
771       edit_uint64(maxbytes, ed1), mr->MediaId);
772    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
773       bsendmsg(ua, "%s", db_strerror(ua->db));
774    } else {
775       bsendmsg(ua, _("New Max bytes is: %s\n"), edit_uint64(maxbytes, ed1));
776    }
777    free_pool_memory(query);
778 }
779
780 static void update_volrecycle(UAContext *ua, char *val, MEDIA_DBR *mr)
781 {
782    int recycle;
783    POOLMEM *query;
784    if (strcasecmp(val, _("yes")) == 0) {
785       recycle = 1;
786    } else if (strcasecmp(val, _("no")) == 0) {
787       recycle = 0;
788    } else {
789       bsendmsg(ua, _("Invalid value. It must by yes or no.\n"));
790       return;
791    }
792    query = get_pool_memory(PM_MESSAGE);
793    Mmsg(&query, "UPDATE Media SET Recycle=%d WHERE MediaId=%u",
794       recycle, mr->MediaId);
795    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
796       bsendmsg(ua, "%s", db_strerror(ua->db));
797    } else {       
798       bsendmsg(ua, _("New recycle flag is: %s\n"),
799          mr->Recycle==1?_("yes"):_("no"));
800    }
801    free_pool_memory(query);
802 }
803
804 /*
805  * Update a media record -- allows you to change the
806  *  Volume status. E.g. if you want Bacula to stop
807  *  writing on the volume, set it to anything other
808  *  than Append.
809  */              
810 static int update_volume(UAContext *ua)
811 {
812    MEDIA_DBR mr;
813    POOLMEM *query;
814    char ed1[30];
815    bool done = false;
816    char *kw[] = {
817       N_("VolStatus"),                /* 0 */
818       N_("VolRetention"),             /* 1 */
819       N_("VolUse"),                   /* 2 */
820       N_("MaxVolJobs"),               /* 3 */
821       N_("MaxVolFiles"),              /* 4 */
822       N_("MaxVolBytes"),              /* 5 */
823       N_("Recycle"),                  /* 6 */
824       NULL };
825
826    if (!select_media_dbr(ua, &mr)) {
827       return 0;
828    }
829    for (int i=0; kw[i]; i++) {
830       int j;
831       if ((j=find_arg_with_value(ua, kw[i])) > 0) {
832          switch (i) {
833          case 0:
834             update_volstatus(ua, ua->argv[j], &mr);
835             break;
836          case 1:
837             update_volretention(ua, ua->argv[j], &mr);
838             break;
839          case 2:
840             update_voluseduration(ua, ua->argv[j], &mr);
841             break;
842          case 3:
843             update_volmaxjobs(ua, ua->argv[j], &mr);
844             break;
845          case 4:
846             update_volmaxfiles(ua, ua->argv[j], &mr);
847             break;
848          case 5:
849             update_volmaxbytes(ua, ua->argv[j], &mr);
850             break;
851          case 6:
852             update_volrecycle(ua, ua->argv[j], &mr);
853             break;
854          }
855          done = true;
856       }
857    }
858
859    for ( ; !done; ) {
860       if (!select_media_dbr(ua, &mr)) {
861          return 0;
862       }
863       bsendmsg(ua, _("Updating Volume \"%s\"\n"), mr.VolumeName);
864       start_prompt(ua, _("Parameters to modify:\n"));
865       add_prompt(ua, _("Volume Status"));
866       add_prompt(ua, _("Volume Retention Period"));
867       add_prompt(ua, _("Volume Use Duration"));
868       add_prompt(ua, _("Maximum Volume Jobs"));
869       add_prompt(ua, _("Maximum Volume Files"));
870       add_prompt(ua, _("Maximum Volume Bytes"));
871       add_prompt(ua, _("Recycle Flag"));
872       add_prompt(ua, _("Slot"));
873       add_prompt(ua, _("Volume Files"));
874       add_prompt(ua, _("Done"));
875       switch (do_prompt(ua, "", _("Select parameter to modify"), NULL, 0)) {
876       case 0:                         /* Volume Status */
877          /* Modify Volume Status */
878          bsendmsg(ua, _("Current Volume status is: %s\n"), mr.VolStatus);
879          start_prompt(ua, _("Possible Values are:\n"));
880          add_prompt(ua, "Append");      /* Better not translate these as */
881          add_prompt(ua, "Archive");     /* They are known in the database code */
882          add_prompt(ua, "Disabled");
883          add_prompt(ua, "Full");
884          add_prompt(ua, "Used");
885          add_prompt(ua, "Cleaning");
886          if (strcmp(mr.VolStatus, "Purged") == 0) {
887             add_prompt(ua, "Recycle");
888          }
889          add_prompt(ua, "Read-Only");
890          if (do_prompt(ua, "", _("Choose new Volume Status"), ua->cmd, sizeof(mr.VolStatus)) < 0) {
891             return 1;
892          }
893          update_volstatus(ua, ua->cmd, &mr);
894          break;
895       case 1:                         /* Retention */
896          bsendmsg(ua, _("Current retention seconds is: %s\n"),
897             edit_utime(mr.VolRetention, ed1));
898          if (!get_cmd(ua, _("Enter Volume Retention period: "))) {
899             return 0;
900          }
901          update_volretention(ua, ua->cmd, &mr);
902          break;
903
904       case 2:                         /* Use Duration */
905          bsendmsg(ua, _("Current use duration is: %s\n"),
906             edit_utime(mr.VolUseDuration, ed1));
907          if (!get_cmd(ua, _("Enter Volume Use Duration: "))) {
908             return 0;
909          }
910          update_voluseduration(ua, ua->cmd, &mr);
911          break;
912
913       case 3:                         /* Max Jobs */
914          bsendmsg(ua, _("Current max jobs is: %u\n"), mr.MaxVolJobs);
915          if (!get_pint(ua, _("Enter new Maximum Jobs: "))) {
916             return 0;
917          }
918          update_volmaxjobs(ua, ua->cmd, &mr);
919          break;
920
921       case 4:                         /* Max Files */
922          bsendmsg(ua, _("Current max files is: %u\n"), mr.MaxVolFiles);
923          if (!get_pint(ua, _("Enter new Maximum Files: "))) {
924             return 0;
925          }
926          update_volmaxfiles(ua, ua->cmd, &mr);
927          break;
928
929       case 5:                         /* Max Bytes */
930          bsendmsg(ua, _("Current value is: %s\n"), edit_uint64(mr.MaxVolBytes, ed1));
931          if (!get_cmd(ua, _("Enter new Maximum Bytes: "))) {
932             return 0;
933          }
934          update_volmaxbytes(ua, ua->cmd, &mr);
935          break;
936
937
938       case 6:                         /* Recycle */
939          bsendmsg(ua, _("Current recycle flag is: %s\n"),
940             mr.Recycle==1?_("yes"):_("no"));
941          if (!get_yesno(ua, _("Enter new Recycle status: "))) {
942             return 0;
943          }
944          update_volrecycle(ua, ua->cmd, &mr);
945          break;
946
947       case 7:                         /* Slot */
948          int slot;
949          POOL_DBR pr;
950
951          memset(&pr, 0, sizeof(POOL_DBR));
952          pr.PoolId = mr.PoolId;
953          if (!db_get_pool_record(ua->jcr, ua->db, &pr)) {
954             bsendmsg(ua, "%s", db_strerror(ua->db));
955             return 0;
956          }
957          bsendmsg(ua, _("Current Slot is: %d\n"), mr.Slot);
958          if (!get_pint(ua, _("Enter new Slot: "))) {
959             return 0;
960          }
961          slot = ua->pint32_val;
962          if (pr.MaxVols > 0 && slot > (int)pr.MaxVols) {
963             bsendmsg(ua, _("Invalid slot, it must be between 0 and %d\n"),
964                pr.MaxVols);
965             break;
966          }
967          query = get_pool_memory(PM_MESSAGE);
968          Mmsg(&query, "UPDATE Media SET Slot=%d WHERE MediaId=%u",
969             slot, mr.MediaId);
970          if (!db_sql_query(ua->db, query, NULL, NULL)) {  
971             bsendmsg(ua, "%s", db_strerror(ua->db));
972          } else {
973             bsendmsg(ua, "New Slot is: %d\n", slot);
974          }
975          free_pool_memory(query);
976          break;
977
978       case 8:                         /* Volume Files */
979          int32_t VolFiles;
980          bsendmsg(ua, _("Warning changing Volume Files can result\n"
981                         "in loss of data on your Volume\n\n"));
982          bsendmsg(ua, _("Current Volume Files is: %u\n"), mr.VolFiles);
983          if (!get_pint(ua, _("Enter new number of Files for Volume: "))) {
984             return 0;
985          }
986          VolFiles = ua->pint32_val;
987          if (VolFiles != (int)(mr.VolFiles + 1)) {
988             bsendmsg(ua, _("Normally, you should only increase Volume Files by one!\n"));
989             if (!get_yesno(ua, _("Continue? (yes/no): ")) || ua->pint32_val == 0) {
990                break;
991             }
992          }
993          query = get_pool_memory(PM_MESSAGE);
994          Mmsg(&query, "UPDATE Media SET VolFiles=%u WHERE MediaId=%u",
995             VolFiles, mr.MediaId);
996          if (!db_sql_query(ua->db, query, NULL, NULL)) {  
997             bsendmsg(ua, "%s", db_strerror(ua->db));
998          } else {
999             bsendmsg(ua, _("New Volume Files is: %u\n"), VolFiles);
1000          }
1001          free_pool_memory(query);
1002          break;
1003
1004       default:                        /* Done or error */
1005          bsendmsg(ua, "Selection done.\n");
1006          return 1;
1007       }
1008    }
1009    return 1;
1010 }
1011
1012 /* 
1013  * Update pool record -- pull info from current POOL resource
1014  */
1015 static int update_pool(UAContext *ua)
1016 {
1017    POOL_DBR  pr;
1018    int id;
1019    POOL *pool;
1020    POOLMEM *query;       
1021    
1022    pool = get_pool_resource(ua);
1023    if (!pool) {
1024       return 0;
1025    }
1026
1027    memset(&pr, 0, sizeof(pr));
1028    strcpy(pr.Name, pool->hdr.name);
1029    if (!get_pool_dbr(ua, &pr)) {
1030       return 0;
1031    }
1032
1033    set_pooldbr_from_poolres(&pr, pool, POOL_OP_UPDATE); /* update */
1034
1035    id = db_update_pool_record(ua->jcr, ua->db, &pr);
1036    if (id <= 0) {
1037       bsendmsg(ua, _("db_update_pool_record returned %d. ERR=%s\n"),
1038          id, db_strerror(ua->db));
1039    }
1040    query = get_pool_memory(PM_MESSAGE);
1041    Mmsg(&query, list_pool, pr.PoolId);
1042    db_list_sql_query(ua->jcr, ua->db, query, prtit, ua, 1, HORZ_LIST);
1043    free_pool_memory(query);
1044    bsendmsg(ua, _("Pool DB record updated from resource.\n"));
1045    return 1;
1046 }
1047
1048
1049 static void do_storage_setdebug(UAContext *ua, STORE *store, int level)
1050 {
1051    BSOCK *sd;
1052
1053    ua->jcr->store = store;
1054    /* Try connecting for up to 15 seconds */
1055    bsendmsg(ua, _("Connecting to Storage daemon %s at %s:%d\n"), 
1056       store->hdr.name, store->address, store->SDport);
1057    if (!connect_to_storage_daemon(ua->jcr, 1, 15, 0)) {
1058       bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
1059       return;
1060    }
1061    Dmsg0(120, _("Connected to storage daemon\n"));
1062    sd = ua->jcr->store_bsock;
1063    bnet_fsend(sd, "setdebug=%d\n", level);
1064    if (bnet_recv(sd) >= 0) {
1065       bsendmsg(ua, "%s", sd->msg);
1066    }
1067    bnet_sig(sd, BNET_TERMINATE);
1068    bnet_close(sd);
1069    ua->jcr->store_bsock = NULL;
1070    return;  
1071 }
1072    
1073 static void do_client_setdebug(UAContext *ua, CLIENT *client, int level)
1074 {
1075    BSOCK *fd;
1076
1077    /* Connect to File daemon */
1078
1079    ua->jcr->client = client;
1080    /* Try to connect for 15 seconds */
1081    bsendmsg(ua, _("Connecting to Client %s at %s:%d\n"), 
1082       client->hdr.name, client->address, client->FDport);
1083    if (!connect_to_file_daemon(ua->jcr, 1, 15, 0)) {
1084       bsendmsg(ua, _("Failed to connect to Client.\n"));
1085       return;
1086    }
1087    Dmsg0(120, "Connected to file daemon\n");
1088    fd = ua->jcr->file_bsock;
1089    bnet_fsend(fd, "setdebug=%d\n", level);
1090    if (bnet_recv(fd) >= 0) {
1091       bsendmsg(ua, "%s", fd->msg);
1092    }
1093    bnet_sig(fd, BNET_TERMINATE);
1094    bnet_close(fd);
1095    ua->jcr->file_bsock = NULL;
1096    return;  
1097 }
1098
1099
1100 static void do_all_setdebug(UAContext *ua, int level)
1101 {
1102    STORE *store, **unique_store;
1103    CLIENT *client, **unique_client;
1104    int i, j, found;
1105
1106    /* Director */
1107    debug_level = level;
1108
1109    /* Count Storage items */
1110    LockRes();
1111    store = NULL;
1112    for (i=0; (store = (STORE *)GetNextRes(R_STORAGE, (RES *)store)); i++)
1113       { }
1114    unique_store = (STORE **) malloc(i * sizeof(STORE));
1115    /* Find Unique Storage address/port */         
1116    store = (STORE *)GetNextRes(R_STORAGE, NULL);
1117    i = 0;
1118    unique_store[i++] = store;
1119    while ((store = (STORE *)GetNextRes(R_STORAGE, (RES *)store))) {
1120       found = 0;
1121       for (j=0; j<i; j++) {
1122          if (strcmp(unique_store[j]->address, store->address) == 0 &&
1123              unique_store[j]->SDport == store->SDport) {
1124             found = 1;
1125             break;
1126          }
1127       }
1128       if (!found) {
1129          unique_store[i++] = store;
1130          Dmsg2(140, "Stuffing: %s:%d\n", store->address, store->SDport);
1131       }
1132    }
1133    UnlockRes();
1134
1135    /* Call each unique Storage daemon */
1136    for (j=0; j<i; j++) {
1137       do_storage_setdebug(ua, unique_store[j], level);
1138    }
1139    free(unique_store);
1140
1141    /* Count Client items */
1142    LockRes();
1143    client = NULL;
1144    for (i=0; (client = (CLIENT *)GetNextRes(R_CLIENT, (RES *)client)); i++)
1145       { }
1146    unique_client = (CLIENT **) malloc(i * sizeof(CLIENT));
1147    /* Find Unique Client address/port */         
1148    client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
1149    i = 0;
1150    unique_client[i++] = client;
1151    while ((client = (CLIENT *)GetNextRes(R_CLIENT, (RES *)client))) {
1152       found = 0;
1153       for (j=0; j<i; j++) {
1154          if (strcmp(unique_client[j]->address, client->address) == 0 &&
1155              unique_client[j]->FDport == client->FDport) {
1156             found = 1;
1157             break;
1158          }
1159       }
1160       if (!found) {
1161          unique_client[i++] = client;
1162          Dmsg2(140, "Stuffing: %s:%d\n", client->address, client->FDport);
1163       }
1164    }
1165    UnlockRes();
1166
1167    /* Call each unique File daemon */
1168    for (j=0; j<i; j++) {
1169       do_client_setdebug(ua, unique_client[j], level);
1170    }
1171    free(unique_client);
1172 }
1173
1174 /*
1175  * setdebug level=nn all
1176  */
1177 static int setdebug_cmd(UAContext *ua, char *cmd)
1178 {
1179    STORE *store;
1180    CLIENT *client;
1181    int level;
1182    int i;
1183
1184    if (!open_db(ua)) {
1185       return 1;
1186    }
1187    Dmsg1(120, "setdebug:%s:\n", cmd);
1188
1189    level = -1;
1190    i = find_arg_with_value(ua, _("level"));
1191    if (i >= 0) {
1192       level = atoi(ua->argv[i]);
1193    }
1194    if (level < 0) {
1195       if (!get_pint(ua, _("Enter new debug level: "))) {
1196          return 1;
1197       }
1198       level = ua->pint32_val;
1199    }
1200
1201    /* General debug? */
1202    for (i=1; i<ua->argc; i++) {
1203       if (strcasecmp(ua->argk[i], _("all")) == 0) {
1204          do_all_setdebug(ua, level);
1205          return 1;
1206       }
1207       if (strcasecmp(ua->argk[i], _("dir")) == 0 ||
1208           strcasecmp(ua->argk[i], _("director")) == 0) {
1209          debug_level = level;
1210          return 1;
1211       }
1212       if (strcasecmp(ua->argk[i], _("client")) == 0) {
1213          client = NULL;
1214          if (ua->argv[i]) {
1215             client = (CLIENT *)GetResWithName(R_CLIENT, ua->argv[i]);
1216             if (client) {
1217                do_client_setdebug(ua, client, level);
1218                return 1;
1219             }
1220          }
1221          client = select_client_resource(ua);   
1222          if (client) {
1223             do_client_setdebug(ua, client, level);
1224             return 1;
1225          }
1226       }
1227
1228       if (strcasecmp(ua->argk[i], _("store")) == 0 ||
1229           strcasecmp(ua->argk[i], _("storage")) == 0) {
1230          store = NULL;
1231          if (ua->argv[i]) {
1232             store = (STORE *)GetResWithName(R_STORAGE, ua->argv[i]);
1233             if (store) {
1234                do_storage_setdebug(ua, store, level);
1235                return 1;
1236             }
1237          }
1238          store = get_storage_resource(ua, 0);
1239          if (store) {
1240             do_storage_setdebug(ua, store, level);
1241             return 1;
1242          }
1243       }
1244    } 
1245    /*
1246     * We didn't find an appropriate keyword above, so
1247     * prompt the user.
1248     */
1249    start_prompt(ua, _("Available daemons are: \n"));
1250    add_prompt(ua, _("Director"));
1251    add_prompt(ua, _("Storage"));
1252    add_prompt(ua, _("Client"));
1253    add_prompt(ua, _("All"));
1254    switch(do_prompt(ua, "", _("Select daemon type to set debug level"), NULL, 0)) {
1255    case 0:                         /* Director */
1256       debug_level = level;
1257       break;
1258    case 1:
1259       store = get_storage_resource(ua, 0);
1260       if (store) {
1261          do_storage_setdebug(ua, store, level);
1262       }
1263       break;
1264    case 2:
1265       client = select_client_resource(ua);
1266       if (client) {
1267          do_client_setdebug(ua, client, level);
1268       }
1269       break;
1270    case 3:
1271       do_all_setdebug(ua, level);
1272       break;
1273    default:
1274       break;
1275    }
1276    return 1;
1277 }
1278
1279 static int var_cmd(UAContext *ua, char *cmd)
1280 {
1281    POOLMEM *var = get_pool_memory(PM_FNAME);
1282    for (int i=1; i<ua->argc; i++) {
1283       if (ua->argk[i] && variable_expansion(ua->jcr, ua->argk[i], &var)) {
1284          bsendmsg(ua, "%s\n", var);
1285       }
1286    }
1287    free_pool_memory(var);
1288    return 1;
1289 }
1290
1291 static int estimate_cmd(UAContext *ua, char *cmd)
1292 {
1293    JOB *job = NULL;
1294    CLIENT *client = NULL;
1295    FILESET *fileset = NULL;
1296    int listing = 0;
1297    BSOCK *fd;
1298    char since[MAXSTRING];
1299
1300    for (int i=1; i<ua->argc; i++) {
1301       if (strcasecmp(ua->argk[i], _("client")) == 0) {
1302          if (ua->argv[i]) {
1303             client = (CLIENT *)GetResWithName(R_CLIENT, ua->argv[i]);
1304             continue;
1305          }
1306       }
1307       if (strcasecmp(ua->argk[i], _("job")) == 0) {
1308          if (ua->argv[i]) {
1309             job = (JOB *)GetResWithName(R_JOB, ua->argv[i]);
1310             continue;
1311          }
1312       }
1313       if (strcasecmp(ua->argk[i], _("fileset")) == 0) {
1314          if (ua->argv[i]) {
1315             fileset = (FILESET *)GetResWithName(R_FILESET, ua->argv[i]);
1316             continue;
1317          }
1318       }
1319       if (strcasecmp(ua->argk[i], _("listing")) == 0) {
1320          listing = 1;
1321       }
1322    } 
1323    if (!job && !(client && fileset)) {
1324       if (!(job = select_job_resource(ua))) {
1325          return 1;
1326       }
1327    }
1328    if (!job) {
1329       job = (JOB *)GetResWithName(R_JOB, ua->argk[1]);
1330    }
1331    if (!client) {
1332       client = job->client;
1333    }
1334    if (!fileset) {
1335       fileset = job->fileset;
1336    }
1337    ua->jcr->client = client;
1338    ua->jcr->fileset = fileset;
1339    close_db(ua);
1340    ua->catalog = client->catalog;
1341
1342    if (!open_db(ua)) {
1343       return 1;
1344    }
1345
1346    get_level_since_time(ua->jcr, since, sizeof(since));
1347
1348    bsendmsg(ua, _("Connecting to Client %s at %s:%d\n"),
1349       job->client->hdr.name, job->client->address, job->client->FDport);
1350    if (!connect_to_file_daemon(ua->jcr, 1, 15, 0)) {
1351       bsendmsg(ua, _("Failed to connect to Client.\n"));
1352       return 1;
1353    }
1354    fd = ua->jcr->file_bsock;
1355
1356    if (!send_include_list(ua->jcr)) {
1357       bsendmsg(ua, _("Error sending include list.\n"));
1358       return 1;
1359    }
1360
1361    if (!send_exclude_list(ua->jcr)) {
1362       bsendmsg(ua, _("Error sending exclude list.\n"));
1363       return 1;
1364    }
1365
1366    if (!send_level_command(ua->jcr)) {
1367       return 1;
1368    }
1369
1370    bnet_fsend(fd, "estimate listing=%d\n", listing);
1371    while (bnet_recv(fd) >= 0) {
1372       bsendmsg(ua, "%s", fd->msg);
1373    }
1374
1375    bnet_sig(fd, BNET_TERMINATE);
1376    bnet_close(fd);
1377    ua->jcr->file_bsock = NULL;
1378
1379    return 1;
1380 }
1381
1382
1383 /*
1384  * print time
1385  */
1386 static int time_cmd(UAContext *ua, char *cmd)
1387 {
1388    char sdt[50];
1389    time_t ttime = time(NULL);
1390    struct tm tm;
1391    localtime_r(&ttime, &tm);
1392    strftime(sdt, sizeof(sdt), "%d-%b-%Y %H:%M:%S", &tm);
1393    bsendmsg(ua, "%s\n", sdt);
1394    return 1;
1395 }
1396
1397
1398
1399 /*
1400  * Delete Pool records (should purge Media with it).
1401  *
1402  *  delete pool=<pool-name>
1403  *  delete media pool=<pool-name> volume=<name>
1404  */
1405 static int delete_cmd(UAContext *ua, char *cmd)
1406 {
1407    static char *keywords[] = {
1408       N_("volume"),
1409       N_("pool"),
1410       NULL};
1411
1412    if (!open_db(ua)) {
1413       return 1;
1414    }
1415
1416    bsendmsg(ua, _(
1417 "In general it is not a good idea to delete either a\n"
1418 "Pool or a Volume since they may contain data.\n\n"));
1419      
1420    switch (find_arg_keyword(ua, keywords)) {
1421    case 0:
1422       delete_volume(ua);     
1423       return 1;
1424    case 1:
1425       delete_pool(ua);
1426       return 1;
1427    default:
1428       break;
1429    }
1430    switch (do_keyword_prompt(ua, _("Choose catalog item to delete"), keywords)) {
1431    case 0:
1432       delete_volume(ua);
1433       break;
1434    case 1:
1435       delete_pool(ua);
1436       break;
1437    default:
1438       bsendmsg(ua, _("Nothing done.\n"));
1439       break;
1440    }
1441    return 1;
1442 }
1443
1444 /*
1445  * Delete media records from database -- dangerous 
1446  */
1447 static int delete_volume(UAContext *ua)
1448 {
1449    MEDIA_DBR mr;
1450
1451    if (!select_media_dbr(ua, &mr)) {
1452       return 1;
1453    }
1454    bsendmsg(ua, _("\nThis command will delete volume %s\n"
1455       "and all Jobs saved on that volume from the Catalog\n"),
1456       mr.VolumeName);
1457
1458    if (!get_yesno(ua, _("Are you sure you want to delete this Volume? (yes/no): "))) {
1459       return 1;
1460    }
1461    if (ua->pint32_val) {
1462       db_delete_media_record(ua->jcr, ua->db, &mr);
1463    }
1464    return 1;
1465 }
1466
1467 /*
1468  * Delete a pool record from the database -- dangerous   
1469  */
1470 static int delete_pool(UAContext *ua)
1471 {
1472    POOL_DBR  pr;
1473    
1474    memset(&pr, 0, sizeof(pr));
1475
1476    if (!get_pool_dbr(ua, &pr)) {
1477       return 1;
1478    }
1479    if (!get_yesno(ua, _("Are you sure you want to delete this Pool? (yes/no): "))) {
1480       return 1;
1481    }
1482    if (ua->pint32_val) {
1483       db_delete_pool_record(ua->jcr, ua->db, &pr);
1484    }
1485    return 1;
1486 }
1487
1488
1489 static void do_mount_cmd(UAContext *ua, char *command)
1490 {
1491    STORE *store;
1492    BSOCK *sd;
1493    char dev_name[MAX_NAME_LENGTH];
1494
1495
1496    if (!open_db(ua)) {
1497       return;
1498    }
1499    Dmsg2(120, "%s: %s\n", command, ua->UA_sock->msg);
1500
1501    store = get_storage_resource(ua, 1);
1502    if (!store) {
1503       return;
1504    }
1505
1506    Dmsg2(120, "Found storage, MediaType=%s DevName=%s\n",
1507       store->media_type, store->dev_name);
1508
1509    ua->jcr->store = store;
1510    if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
1511       bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
1512       return;
1513    }
1514    sd = ua->jcr->store_bsock;
1515    strcpy(dev_name, store->dev_name);
1516    bash_spaces(dev_name);
1517    bnet_fsend(sd, "%s %s", command, dev_name);
1518    while (bnet_recv(sd) >= 0) {
1519       bsendmsg(ua, "%s", sd->msg);
1520    }
1521    bnet_sig(sd, BNET_TERMINATE);
1522    bnet_close(sd);
1523    ua->jcr->store_bsock = NULL;
1524 }
1525
1526 /*
1527  * mount [storage | device] <name>
1528  */
1529 static int mount_cmd(UAContext *ua, char *cmd)
1530 {
1531    do_mount_cmd(ua, "mount");          /* mount */
1532    return 1;
1533 }
1534
1535
1536 /*
1537  * unmount [storage | device] <name>
1538  */
1539 static int unmount_cmd(UAContext *ua, char *cmd)
1540 {
1541    do_mount_cmd(ua, "unmount");          /* unmount */
1542    return 1;
1543 }
1544
1545
1546 /*
1547  * release [storage | device] <name>
1548  */
1549 static int release_cmd(UAContext *ua, char *cmd)
1550 {
1551    do_mount_cmd(ua, "release");          /* release */
1552    return 1;
1553 }
1554
1555
1556 /*
1557  * Switch databases
1558  *   use catalog=<name>
1559  */
1560 static int use_cmd(UAContext *ua, char *cmd)
1561 {
1562    CAT *oldcatalog, *catalog;
1563
1564
1565    close_db(ua);                      /* close any previously open db */
1566    oldcatalog = ua->catalog;
1567
1568    if (!(catalog = get_catalog_resource(ua))) {
1569       ua->catalog = oldcatalog;
1570    } else {
1571       ua->catalog = catalog;
1572    }
1573    if (open_db(ua)) {
1574       bsendmsg(ua, _("Using Catalog name=%s DB=%s\n"),
1575          ua->catalog->hdr.name, ua->catalog->db_name);
1576    }
1577    return 1;
1578 }
1579
1580 int quit_cmd(UAContext *ua, char *cmd) 
1581 {
1582    ua->quit = TRUE;
1583    return 1;
1584 }
1585
1586 /*
1587  * Wait until no job is running 
1588  */
1589 int wait_cmd(UAContext *ua, char *cmd) 
1590 {
1591    bmicrosleep(0, 200000);            /* let job actually start */
1592    for (int running=1; running; ) {
1593       running = 0;
1594       lock_jcr_chain();
1595       for (JCR *jcr=NULL; (jcr=get_next_jcr(jcr)); ) {
1596          if (jcr->JobId != 0) {
1597             running = 1;
1598             free_locked_jcr(jcr);
1599             break;
1600          }
1601          free_locked_jcr(jcr);
1602       }
1603       unlock_jcr_chain();
1604       if (running) {
1605          bmicrosleep(1, 0);
1606       }
1607    }
1608    return 1;
1609 }
1610
1611
1612 static int help_cmd(UAContext *ua, char *cmd)
1613 {
1614    unsigned int i;
1615
1616 /* usage(); */
1617    bsendmsg(ua, _("  Command    Description\n  =======    ===========\n"));
1618    for (i=0; i<comsize; i++) {
1619       bsendmsg(ua, _("  %-10s %s\n"), _(commands[i].key), _(commands[i].help));
1620    }
1621    bsendmsg(ua, "\n");
1622    return 1;
1623 }
1624
1625 static int version_cmd(UAContext *ua, char *cmd)
1626 {
1627    bsendmsg(ua, "%s Version: " VERSION " (" BDATE ")\n", my_name);
1628    return 1;
1629 }
1630
1631
1632 /* A bit brain damaged in that if the user has not done
1633  * a "use catalog xxx" command, we simply find the first
1634  * catalog resource and open it.
1635  */
1636 int open_db(UAContext *ua)
1637 {
1638    if (ua->db) {
1639       return 1;
1640    }
1641    if (!ua->catalog) {
1642       LockRes();
1643       ua->catalog = (CAT *)GetNextRes(R_CATALOG, NULL);
1644       UnlockRes();
1645       if (!ua->catalog) {    
1646          bsendmsg(ua, _("Could not find a Catalog resource\n"));
1647          return 0;
1648       } else {
1649          bsendmsg(ua, _("Using default Catalog name=%s DB=%s\n"), 
1650             ua->catalog->hdr.name, ua->catalog->db_name);
1651       }
1652    }
1653
1654    ua->jcr->catalog = ua->catalog;
1655
1656    Dmsg0(150, "Open database\n");
1657    ua->db = db_init_database(ua->jcr, ua->catalog->db_name, ua->catalog->db_user,
1658                              ua->catalog->db_password, ua->catalog->db_address,
1659                              ua->catalog->db_port, ua->catalog->db_socket);
1660    if (!db_open_database(ua->jcr, ua->db)) {
1661       bsendmsg(ua, _("Could not open DB %s: ERR=%s"), 
1662          ua->catalog->db_name, db_strerror(ua->db));
1663       close_db(ua);
1664       return 0;
1665    }
1666    ua->jcr->db = ua->db;
1667    Dmsg1(150, "DB %s opened\n", ua->catalog->db_name);
1668    return 1;
1669 }
1670
1671 void close_db(UAContext *ua)
1672 {
1673    if (ua->db) {
1674       db_close_database(ua->jcr, ua->db);
1675    }
1676    ua->db = NULL;
1677 }