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