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