]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_cmds.c
Add extern C to callback functions
[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, 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, 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, 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    if (!ua->cons || !acl_access_ok(ua, Client_ACL, ua->cons->hdr.name)) {
567       bsendmsg(ua, _("Illegal command from this console.\n"));
568       return 1;
569    }
570    LockRes();
571    client = (CLIENT *)GetResWithName(R_CLIENT, ua->cons->hdr.name);
572
573    if (!client) {
574       bsendmsg(ua, _("Client \"%s\" not found.\n"), ua->cons->hdr.name);
575       goto get_out;
576    }
577    if (client->address) {
578       free(client->address);
579    }
580    client->address = bstrdup(inet_ntoa(ua->UA_sock->client_addr.sin_addr));
581    bsendmsg(ua, _("Client \"%s\" address set to %s\n"),
582             client->hdr.name, client->address);
583 get_out:
584    UnlockRes();
585    return 1;
586 }
587
588
589 /*
590  * Update a Pool Record in the database.
591  *  It is always updated from the Resource record.
592  *
593  *    update pool=<pool-name>
594  *         updates pool from Pool resource
595  *    update media pool=<pool-name> volume=<volume-name>
596  *         changes pool info for volume
597  *    update slots [scan=...]
598  *         updates autochanger slots
599  */
600 static int update_cmd(UAContext *ua, const char *cmd) 
601 {
602    static const char *kw[] = {
603       N_("media"),  /* 0 */
604       N_("volume"), /* 1 */
605       N_("pool"),   /* 2 */
606       N_("slots"),  /* 3 */
607       NULL};
608
609    if (!open_db(ua)) {
610       return 1;
611    }
612
613    switch (find_arg_keyword(ua, kw)) {
614    case 0:
615    case 1:
616       update_volume(ua);
617       return 1;
618    case 2:
619       update_pool(ua);
620       return 1;
621    case 3:
622       update_slots(ua);
623       return 1;
624    default:
625       break;
626    }
627     
628    start_prompt(ua, _("Update choice:\n"));
629    add_prompt(ua, _("Volume parameters"));
630    add_prompt(ua, _("Pool from resource"));
631    add_prompt(ua, _("Slots from autochanger"));
632    switch (do_prompt(ua, _("item"), _("Choose catalog item to update"), NULL, 0)) {
633    case 0:
634       update_volume(ua);
635       break;
636    case 1:
637       update_pool(ua);
638       break;
639    case 2:
640       update_slots(ua);
641       break;
642    default:
643       break;
644    }
645    return 1;
646 }
647
648 static void update_volstatus(UAContext *ua, const char *val, MEDIA_DBR *mr)
649 {
650    POOLMEM *query = get_pool_memory(PM_MESSAGE);
651    const char *kw[] = {
652       "Append",
653       "Archive",
654       "Disabled",
655       "Full",
656       "Used", 
657       "Cleaning", 
658       "Recycle",
659       "Read-Only",
660       NULL};
661    bool found = false;
662    int i;
663
664    for (i=0; kw[i]; i++) {
665       if (strcasecmp(val, kw[i]) == 0) {
666          found = true;
667          break;
668       }
669    }
670    if (!found) {
671       bsendmsg(ua, _("Invalid VolStatus specified: %s\n"), val);
672    } else {
673       bstrncpy(mr->VolStatus, kw[i], sizeof(mr->VolStatus));
674       Mmsg(&query, "UPDATE Media SET VolStatus='%s' WHERE MediaId=%u",
675          mr->VolStatus, mr->MediaId);
676       if (!db_sql_query(ua->db, query, NULL, NULL)) {  
677          bsendmsg(ua, "%s", db_strerror(ua->db));
678       } else {
679          bsendmsg(ua, _("New Volume status is: %s\n"), mr->VolStatus);
680       }
681    }
682    free_pool_memory(query);
683 }
684
685 static void update_volretention(UAContext *ua, char *val, MEDIA_DBR *mr)
686 {
687    char ed1[50];
688    POOLMEM *query;
689    if (!duration_to_utime(val, &mr->VolRetention)) {
690       bsendmsg(ua, _("Invalid retention period specified: %s\n"), val);
691       return;
692    }
693    query = get_pool_memory(PM_MESSAGE);
694    Mmsg(&query, "UPDATE Media SET VolRetention=%s WHERE MediaId=%u",
695       edit_uint64(mr->VolRetention, ed1), mr->MediaId);
696    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
697       bsendmsg(ua, "%s", db_strerror(ua->db));
698    } else {
699       bsendmsg(ua, _("New retention seconds is: %s\n"),
700          edit_utime(mr->VolRetention, ed1));
701    }
702    free_pool_memory(query);
703 }
704
705 static void update_voluseduration(UAContext *ua, char *val, MEDIA_DBR *mr)
706 {
707    char ed1[50];
708    POOLMEM *query;
709
710    if (!duration_to_utime(val, &mr->VolUseDuration)) {
711       bsendmsg(ua, _("Invalid use duration specified: %s\n"), val);
712       return;
713    }
714    query = get_pool_memory(PM_MESSAGE);
715    Mmsg(&query, "UPDATE Media SET VolUseDuration=%s WHERE MediaId=%u",
716       edit_uint64(mr->VolUseDuration, ed1), mr->MediaId);
717    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
718       bsendmsg(ua, "%s", db_strerror(ua->db));
719    } else {
720       bsendmsg(ua, _("New use duration is: %s\n"),
721          edit_utime(mr->VolUseDuration, ed1));
722    }
723    free_pool_memory(query);
724 }
725
726 static void update_volmaxjobs(UAContext *ua, char *val, MEDIA_DBR *mr)
727 {
728    POOLMEM *query = get_pool_memory(PM_MESSAGE);
729    Mmsg(&query, "UPDATE Media SET MaxVolJobs=%s WHERE MediaId=%u",
730       val, mr->MediaId);
731    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
732       bsendmsg(ua, "%s", db_strerror(ua->db));
733    } else {
734       bsendmsg(ua, _("New max jobs is: %s\n"), val);
735    }
736    free_pool_memory(query);
737 }
738
739 static void update_volmaxfiles(UAContext *ua, char *val, MEDIA_DBR *mr)
740 {
741    POOLMEM *query = get_pool_memory(PM_MESSAGE);
742    Mmsg(&query, "UPDATE Media SET MaxVolFiles=%s WHERE MediaId=%u",
743       val, mr->MediaId);
744    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
745       bsendmsg(ua, "%s", db_strerror(ua->db));
746    } else {
747       bsendmsg(ua, _("New max files is: %s\n"), val);
748    }
749    free_pool_memory(query);
750 }
751
752 static void update_volmaxbytes(UAContext *ua, char *val, MEDIA_DBR *mr)
753 {
754    uint64_t maxbytes;
755    char ed1[50];
756    POOLMEM *query;
757
758    if (!size_to_uint64(val, strlen(val), &maxbytes)) {
759       bsendmsg(ua, _("Invalid max. bytes specification: %s\n"), val);
760       return;
761    } 
762    query = get_pool_memory(PM_MESSAGE);
763    Mmsg(&query, "UPDATE Media SET MaxVolBytes=%s WHERE MediaId=%u",
764       edit_uint64(maxbytes, ed1), mr->MediaId);
765    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
766       bsendmsg(ua, "%s", db_strerror(ua->db));
767    } else {
768       bsendmsg(ua, _("New Max bytes is: %s\n"), edit_uint64(maxbytes, ed1));
769    }
770    free_pool_memory(query);
771 }
772
773 static void update_volrecycle(UAContext *ua, char *val, MEDIA_DBR *mr)
774 {
775    int recycle;
776    POOLMEM *query;
777    if (strcasecmp(val, _("yes")) == 0) {
778       recycle = 1;
779    } else if (strcasecmp(val, _("no")) == 0) {
780       recycle = 0;
781    } else {
782       bsendmsg(ua, _("Invalid value. It must by yes or no.\n"));
783       return;
784    }
785    query = get_pool_memory(PM_MESSAGE);
786    Mmsg(&query, "UPDATE Media SET Recycle=%d WHERE MediaId=%u",
787       recycle, mr->MediaId);
788    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
789       bsendmsg(ua, "%s", db_strerror(ua->db));
790    } else {       
791       bsendmsg(ua, _("New Recycle flag is: %s\n"),
792          mr->Recycle==1?_("yes"):_("no"));
793    }
794    free_pool_memory(query);
795 }
796
797 /* Modify the Pool in which this Volume is located */
798 static void update_volpool(UAContext *ua, char *val, MEDIA_DBR *mr)
799 {
800    POOL_DBR pr;
801    POOLMEM *query;
802
803    memset(&pr, 0, sizeof(pr));
804    bstrncpy(pr.Name, val, sizeof(pr.Name));
805    if (!get_pool_dbr(ua, &pr)) {
806       return;
807    }
808    mr->PoolId = pr.PoolId;            /* set new PoolId */
809    /*
810     */
811    query = get_pool_memory(PM_MESSAGE);
812    db_lock(ua->db);
813    Mmsg(&query, "UPDATE Media SET PoolId=%d WHERE MediaId=%u",
814       mr->PoolId, mr->MediaId);
815    if (!db_sql_query(ua->db, query, NULL, NULL)) {  
816       bsendmsg(ua, "%s", db_strerror(ua->db));
817    } else {       
818       bsendmsg(ua, _("New Pool is: %s\n"), pr.Name);
819    }
820    db_make_inchanger_unique(ua->jcr, ua->db, mr);
821    db_unlock(ua->db);
822    free_pool_memory(query);
823 }
824
825 static void update_volfrompool(UAContext *ua, MEDIA_DBR *mr)
826 {
827    POOL_DBR pr;
828    char VolStatus[50];
829
830    memset(&pr, 0, sizeof(pr));
831    pr.PoolId = mr->PoolId;
832    if (!get_pool_dbr(ua, &pr)) {
833       return;
834    }
835    bstrncpy(VolStatus, mr->VolStatus, sizeof(VolStatus));
836    set_pool_dbr_defaults_in_media_dbr(mr, &pr);
837    bstrncpy(mr->VolStatus, VolStatus, sizeof(mr->VolStatus));
838    if (!db_update_media_record(ua->jcr, ua->db, mr)) {
839       bsendmsg(ua, _("Error updating Volume record: ERR=%s"), db_strerror(ua->db));
840    } else {
841       bsendmsg(ua, _("Volume defaults updated from Pool record.\n"));
842    }
843 }
844
845 /*
846  * Update a media record -- allows you to change the
847  *  Volume status. E.g. if you want Bacula to stop
848  *  writing on the volume, set it to anything other
849  *  than Append.
850  */              
851 static int update_volume(UAContext *ua)
852 {
853    MEDIA_DBR mr;
854    POOL_DBR pr;
855    POOLMEM *query;
856    char ed1[30];
857    bool done = false;
858    const char *kw[] = {
859       N_("VolStatus"),                /* 0 */
860       N_("VolRetention"),             /* 1 */
861       N_("VolUse"),                   /* 2 */
862       N_("MaxVolJobs"),               /* 3 */
863       N_("MaxVolFiles"),              /* 4 */
864       N_("MaxVolBytes"),              /* 5 */
865       N_("Recycle"),                  /* 6 */
866       N_("Pool"),                     /* 7 */
867       N_("FromPool"),                 /* 8 */
868       NULL };
869
870    for (int i=0; kw[i]; i++) {
871       int j;
872       if ((j=find_arg_with_value(ua, kw[i])) > 0) {
873          if (!select_media_dbr(ua, &mr)) {
874             return 0;
875          }
876          switch (i) {
877          case 0:
878             update_volstatus(ua, ua->argv[j], &mr);
879             break;
880          case 1:
881             update_volretention(ua, ua->argv[j], &mr);
882             break;
883          case 2:
884             update_voluseduration(ua, ua->argv[j], &mr);
885             break;
886          case 3:
887             update_volmaxjobs(ua, ua->argv[j], &mr);
888             break;
889          case 4:
890             update_volmaxfiles(ua, ua->argv[j], &mr);
891             break;
892          case 5:
893             update_volmaxbytes(ua, ua->argv[j], &mr);
894             break;
895          case 6:
896             update_volrecycle(ua, ua->argv[j], &mr);
897             break;
898          case 7:
899             update_volpool(ua, ua->argv[j], &mr);
900             break;
901          case 8:
902             update_volfrompool(ua, &mr);
903             break;
904          }
905          done = true;
906       }
907    }
908
909    for ( ; !done; ) {
910       if (!select_media_dbr(ua, &mr)) {
911          return 0;
912       }
913       bsendmsg(ua, _("Updating Volume \"%s\"\n"), mr.VolumeName);
914       start_prompt(ua, _("Parameters to modify:\n"));
915       add_prompt(ua, _("Volume Status"));
916       add_prompt(ua, _("Volume Retention Period"));
917       add_prompt(ua, _("Volume Use Duration"));
918       add_prompt(ua, _("Maximum Volume Jobs"));
919       add_prompt(ua, _("Maximum Volume Files"));
920       add_prompt(ua, _("Maximum Volume Bytes"));
921       add_prompt(ua, _("Recycle Flag"));
922       add_prompt(ua, _("Slot"));
923       add_prompt(ua, _("InChanger Flag"));
924       add_prompt(ua, _("Volume Files"));
925       add_prompt(ua, _("Pool"));
926       add_prompt(ua, _("Done"));
927       switch (do_prompt(ua, "", _("Select parameter to modify"), NULL, 0)) {
928       case 0:                         /* Volume Status */
929          /* Modify Volume Status */
930          bsendmsg(ua, _("Current Volume status is: %s\n"), mr.VolStatus);
931          start_prompt(ua, _("Possible Values are:\n"));
932          add_prompt(ua, "Append");      /* Better not translate these as */
933          add_prompt(ua, "Archive");     /* They are known in the database code */
934          add_prompt(ua, "Disabled");
935          add_prompt(ua, "Full");
936          add_prompt(ua, "Used");
937          add_prompt(ua, "Cleaning");
938          if (strcmp(mr.VolStatus, "Purged") == 0) {
939             add_prompt(ua, "Recycle");
940          }
941          add_prompt(ua, "Read-Only");
942          if (do_prompt(ua, "", _("Choose new Volume Status"), ua->cmd, sizeof(mr.VolStatus)) < 0) {
943             return 1;
944          }
945          update_volstatus(ua, ua->cmd, &mr);
946          break;
947       case 1:                         /* Retention */
948          bsendmsg(ua, _("Current retention seconds is: %s\n"),
949             edit_utime(mr.VolRetention, ed1));
950          if (!get_cmd(ua, _("Enter Volume Retention period: "))) {
951             return 0;
952          }
953          update_volretention(ua, ua->cmd, &mr);
954          break;
955
956       case 2:                         /* Use Duration */
957          bsendmsg(ua, _("Current use duration is: %s\n"),
958             edit_utime(mr.VolUseDuration, ed1));
959          if (!get_cmd(ua, _("Enter Volume Use Duration: "))) {
960             return 0;
961          }
962          update_voluseduration(ua, ua->cmd, &mr);
963          break;
964
965       case 3:                         /* Max Jobs */
966          bsendmsg(ua, _("Current max jobs is: %u\n"), mr.MaxVolJobs);
967          if (!get_pint(ua, _("Enter new Maximum Jobs: "))) {
968             return 0;
969          }
970          update_volmaxjobs(ua, ua->cmd, &mr);
971          break;
972
973       case 4:                         /* Max Files */
974          bsendmsg(ua, _("Current max files is: %u\n"), mr.MaxVolFiles);
975          if (!get_pint(ua, _("Enter new Maximum Files: "))) {
976             return 0;
977          }
978          update_volmaxfiles(ua, ua->cmd, &mr);
979          break;
980
981       case 5:                         /* Max Bytes */
982          bsendmsg(ua, _("Current value is: %s\n"), edit_uint64(mr.MaxVolBytes, ed1));
983          if (!get_cmd(ua, _("Enter new Maximum Bytes: "))) {
984             return 0;
985          }
986          update_volmaxbytes(ua, ua->cmd, &mr);
987          break;
988
989
990       case 6:                         /* Recycle */
991          bsendmsg(ua, _("Current recycle flag is: %s\n"),
992             mr.Recycle==1?_("yes"):_("no"));
993          if (!get_yesno(ua, _("Enter new Recycle status: "))) {
994             return 0;
995          }
996          update_volrecycle(ua, ua->cmd, &mr);
997          break;
998
999       case 7:                         /* Slot */
1000          int Slot;
1001
1002          memset(&pr, 0, sizeof(POOL_DBR));
1003          pr.PoolId = mr.PoolId;
1004          if (!db_get_pool_record(ua->jcr, ua->db, &pr)) {
1005             bsendmsg(ua, "%s", db_strerror(ua->db));
1006             return 0;
1007          }
1008          bsendmsg(ua, _("Current Slot is: %d\n"), mr.Slot);
1009          if (!get_pint(ua, _("Enter new Slot: "))) {
1010             return 0;
1011          }
1012          Slot = ua->pint32_val;
1013          if (pr.MaxVols > 0 && Slot > (int)pr.MaxVols) {
1014             bsendmsg(ua, _("Invalid slot, it must be between 0 and %d\n"),
1015                pr.MaxVols);
1016             break;
1017          }
1018          mr.Slot = Slot;
1019          /*
1020           * Make sure to use db_update... rather than doing this directly,
1021           *   so that any Slot is handled correctly. 
1022           */
1023          if (!db_update_media_record(ua->jcr, ua->db, &mr)) {
1024             bsendmsg(ua, _("Error updating media record Slot: ERR=%s"), db_strerror(ua->db));
1025          } else {
1026             bsendmsg(ua, _("New Slot is: %d\n"), mr.Slot);
1027          }
1028          break;
1029
1030       case 8:                         /* InChanger */
1031          bsendmsg(ua, _("Current InChanger flag is: %d\n"), mr.InChanger);
1032          if (!get_yesno(ua, _("Set InChanger flag? yes/no: "))) {
1033             return 0;
1034          }
1035          mr.InChanger = ua->pint32_val;
1036          /*
1037           * Make sure to use db_update... rather than doing this directly,
1038           *   so that any Slot is handled correctly. 
1039           */
1040          if (!db_update_media_record(ua->jcr, ua->db, &mr)) {
1041             bsendmsg(ua, _("Error updating media record Slot: ERR=%s"), db_strerror(ua->db));
1042          } else {
1043             bsendmsg(ua, _("New InChanger flag is: %d\n"), mr.InChanger);
1044          }
1045          break;
1046
1047
1048       case 9:                         /* Volume Files */
1049          int32_t VolFiles;
1050          bsendmsg(ua, _("Warning changing Volume Files can result\n"
1051                         "in loss of data on your Volume\n\n"));
1052          bsendmsg(ua, _("Current Volume Files is: %u\n"), mr.VolFiles);
1053          if (!get_pint(ua, _("Enter new number of Files for Volume: "))) {
1054             return 0;
1055          }
1056          VolFiles = ua->pint32_val;
1057          if (VolFiles != (int)(mr.VolFiles + 1)) {
1058             bsendmsg(ua, _("Normally, you should only increase Volume Files by one!\n"));
1059             if (!get_yesno(ua, _("Continue? (yes/no): ")) || ua->pint32_val == 0) {
1060                break;
1061             }
1062          }
1063          query = get_pool_memory(PM_MESSAGE);
1064          Mmsg(&query, "UPDATE Media SET VolFiles=%u WHERE MediaId=%u",
1065             VolFiles, mr.MediaId);
1066          if (!db_sql_query(ua->db, query, NULL, NULL)) {  
1067             bsendmsg(ua, "%s", db_strerror(ua->db));
1068          } else {
1069             bsendmsg(ua, _("New Volume Files is: %u\n"), VolFiles);
1070          }
1071          free_pool_memory(query);
1072          break;
1073
1074       case 10:                        /* Volume's Pool */
1075          memset(&pr, 0, sizeof(POOL_DBR));
1076          pr.PoolId = mr.PoolId;
1077          if (!db_get_pool_record(ua->jcr, ua->db, &pr)) {
1078             bsendmsg(ua, "%s", db_strerror(ua->db));
1079             return 0;
1080          }
1081          bsendmsg(ua, _("Current Pool is: %s\n"), pr.Name);
1082          if (!get_cmd(ua, _("Enter new Pool name: "))) {
1083             return 0;
1084          }
1085          update_volpool(ua, ua->cmd, &mr);
1086          return 1;
1087
1088       default:                        /* Done or error */
1089          bsendmsg(ua, "Selection done.\n");
1090          return 1;
1091       }
1092    }
1093    return 1;
1094 }
1095
1096 /* 
1097  * Update pool record -- pull info from current POOL resource
1098  */
1099 static int update_pool(UAContext *ua)
1100 {
1101    POOL_DBR  pr;
1102    int id;
1103    POOL *pool;
1104    POOLMEM *query;       
1105    
1106    pool = get_pool_resource(ua);
1107    if (!pool) {
1108       return 0;
1109    }
1110
1111    memset(&pr, 0, sizeof(pr));
1112    strcpy(pr.Name, pool->hdr.name);
1113    if (!get_pool_dbr(ua, &pr)) {
1114       return 0;
1115    }
1116
1117    set_pooldbr_from_poolres(&pr, pool, POOL_OP_UPDATE); /* update */
1118
1119    id = db_update_pool_record(ua->jcr, ua->db, &pr);
1120    if (id <= 0) {
1121       bsendmsg(ua, _("db_update_pool_record returned %d. ERR=%s\n"),
1122          id, db_strerror(ua->db));
1123    }
1124    query = get_pool_memory(PM_MESSAGE);
1125    Mmsg(&query, list_pool, pr.PoolId);
1126    db_list_sql_query(ua->jcr, ua->db, query, prtit, ua, 1, HORZ_LIST);
1127    free_pool_memory(query);
1128    bsendmsg(ua, _("Pool DB record updated from resource.\n"));
1129    return 1;
1130 }
1131
1132
1133 static void do_storage_setdebug(UAContext *ua, STORE *store, int level, int trace_flag)
1134 {
1135    BSOCK *sd;
1136
1137    ua->jcr->store = store;
1138    /* Try connecting for up to 15 seconds */
1139    bsendmsg(ua, _("Connecting to Storage daemon %s at %s:%d\n"), 
1140       store->hdr.name, store->address, store->SDport);
1141    if (!connect_to_storage_daemon(ua->jcr, 1, 15, 0)) {
1142       bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
1143       return;
1144    }
1145    Dmsg0(120, _("Connected to storage daemon\n"));
1146    sd = ua->jcr->store_bsock;
1147    bnet_fsend(sd, "setdebug=%d trace=%d\n", level, trace_flag);
1148    if (bnet_recv(sd) >= 0) {
1149       bsendmsg(ua, "%s", sd->msg);
1150    }
1151    bnet_sig(sd, BNET_TERMINATE);
1152    bnet_close(sd);
1153    ua->jcr->store_bsock = NULL;
1154    return;  
1155 }
1156    
1157 static void do_client_setdebug(UAContext *ua, CLIENT *client, int level, int trace_flag)
1158 {
1159    BSOCK *fd;
1160
1161    /* Connect to File daemon */
1162
1163    ua->jcr->client = client;
1164    /* Try to connect for 15 seconds */
1165    bsendmsg(ua, _("Connecting to Client %s at %s:%d\n"), 
1166       client->hdr.name, client->address, client->FDport);
1167    if (!connect_to_file_daemon(ua->jcr, 1, 15, 0)) {
1168       bsendmsg(ua, _("Failed to connect to Client.\n"));
1169       return;
1170    }
1171    Dmsg0(120, "Connected to file daemon\n");
1172    fd = ua->jcr->file_bsock;
1173    bnet_fsend(fd, "setdebug=%d trace=%d\n", level, trace_flag);
1174    if (bnet_recv(fd) >= 0) {
1175       bsendmsg(ua, "%s", fd->msg);
1176    }
1177    bnet_sig(fd, BNET_TERMINATE);
1178    bnet_close(fd);
1179    ua->jcr->file_bsock = NULL;
1180    return;  
1181 }
1182
1183
1184 static void do_all_setdebug(UAContext *ua, int level, int trace_flag)
1185 {
1186    STORE *store, **unique_store;
1187    CLIENT *client, **unique_client;
1188    int i, j, found;
1189
1190    /* Director */
1191    debug_level = level;
1192
1193    /* Count Storage items */
1194    LockRes();
1195    store = NULL;
1196    for (i=0; (store = (STORE *)GetNextRes(R_STORAGE, (RES *)store)); i++)
1197       { }
1198    unique_store = (STORE **) malloc(i * sizeof(STORE));
1199    /* Find Unique Storage address/port */         
1200    store = (STORE *)GetNextRes(R_STORAGE, NULL);
1201    i = 0;
1202    unique_store[i++] = store;
1203    while ((store = (STORE *)GetNextRes(R_STORAGE, (RES *)store))) {
1204       found = 0;
1205       for (j=0; j<i; j++) {
1206          if (strcmp(unique_store[j]->address, store->address) == 0 &&
1207              unique_store[j]->SDport == store->SDport) {
1208             found = 1;
1209             break;
1210          }
1211       }
1212       if (!found) {
1213          unique_store[i++] = store;
1214          Dmsg2(140, "Stuffing: %s:%d\n", store->address, store->SDport);
1215       }
1216    }
1217    UnlockRes();
1218
1219    /* Call each unique Storage daemon */
1220    for (j=0; j<i; j++) {
1221       do_storage_setdebug(ua, unique_store[j], level, trace_flag);
1222    }
1223    free(unique_store);
1224
1225    /* Count Client items */
1226    LockRes();
1227    client = NULL;
1228    for (i=0; (client = (CLIENT *)GetNextRes(R_CLIENT, (RES *)client)); i++)
1229       { }
1230    unique_client = (CLIENT **) malloc(i * sizeof(CLIENT));
1231    /* Find Unique Client address/port */         
1232    client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
1233    i = 0;
1234    unique_client[i++] = client;
1235    while ((client = (CLIENT *)GetNextRes(R_CLIENT, (RES *)client))) {
1236       found = 0;
1237       for (j=0; j<i; j++) {
1238          if (strcmp(unique_client[j]->address, client->address) == 0 &&
1239              unique_client[j]->FDport == client->FDport) {
1240             found = 1;
1241             break;
1242          }
1243       }
1244       if (!found) {
1245          unique_client[i++] = client;
1246          Dmsg2(140, "Stuffing: %s:%d\n", client->address, client->FDport);
1247       }
1248    }
1249    UnlockRes();
1250
1251    /* Call each unique File daemon */
1252    for (j=0; j<i; j++) {
1253       do_client_setdebug(ua, unique_client[j], level, trace_flag);
1254    }
1255    free(unique_client);
1256 }
1257
1258 /*
1259  * setdebug level=nn all trace=1/0
1260  */
1261 static int setdebug_cmd(UAContext *ua, const char *cmd)
1262 {
1263    STORE *store;
1264    CLIENT *client;
1265    int level;
1266    int trace_flag = -1;
1267    int i;
1268
1269    if (!open_db(ua)) {
1270       return 1;
1271    }
1272    Dmsg1(120, "setdebug:%s:\n", cmd);
1273
1274    level = -1;
1275    i = find_arg_with_value(ua, _("level"));
1276    if (i >= 0) {
1277       level = atoi(ua->argv[i]);
1278    }
1279    if (level < 0) {
1280       if (!get_pint(ua, _("Enter new debug level: "))) {
1281          return 1;
1282       }
1283       level = ua->pint32_val;
1284    }
1285
1286    /* Look for trace flag. -1 => not change */
1287    i = find_arg_with_value(ua, _("trace"));
1288    if (i >= 0) {
1289       trace_flag = atoi(ua->argv[i]);
1290       if (trace_flag > 0) {
1291          trace_flag = 1;
1292       }
1293    }
1294
1295    /* General debug? */
1296    for (i=1; i<ua->argc; i++) {
1297       if (strcasecmp(ua->argk[i], _("all")) == 0) {
1298          do_all_setdebug(ua, level, trace_flag);
1299          return 1;
1300       }
1301       if (strcasecmp(ua->argk[i], _("dir")) == 0 ||
1302           strcasecmp(ua->argk[i], _("director")) == 0) {
1303          debug_level = level;
1304          set_trace(trace_flag);
1305          return 1;
1306       }
1307       if (strcasecmp(ua->argk[i], _("client")) == 0 ||
1308           strcasecmp(ua->argk[i], _("fd")) == 0) {
1309          client = NULL;
1310          if (ua->argv[i]) {
1311             client = (CLIENT *)GetResWithName(R_CLIENT, ua->argv[i]);
1312             if (client) {
1313                do_client_setdebug(ua, client, level, trace_flag);
1314                return 1;
1315             }
1316          }
1317          client = select_client_resource(ua);   
1318          if (client) {
1319             do_client_setdebug(ua, client, level, trace_flag);
1320             return 1;
1321          }
1322       }
1323
1324       if (strcasecmp(ua->argk[i], _("store")) == 0 ||
1325           strcasecmp(ua->argk[i], _("storage")) == 0 ||
1326           strcasecmp(ua->argk[i], _("sd")) == 0) {
1327          store = NULL;
1328          if (ua->argv[i]) {
1329             store = (STORE *)GetResWithName(R_STORAGE, ua->argv[i]);
1330             if (store) {
1331                do_storage_setdebug(ua, store, level, trace_flag);
1332                return 1;
1333             }
1334          }
1335          store = get_storage_resource(ua, 0);
1336          if (store) {
1337             do_storage_setdebug(ua, store, level, trace_flag);
1338             return 1;
1339          }
1340       }
1341    } 
1342    /*
1343     * We didn't find an appropriate keyword above, so
1344     * prompt the user.
1345     */
1346    start_prompt(ua, _("Available daemons are: \n"));
1347    add_prompt(ua, _("Director"));
1348    add_prompt(ua, _("Storage"));
1349    add_prompt(ua, _("Client"));
1350    add_prompt(ua, _("All"));
1351    switch(do_prompt(ua, "", _("Select daemon type to set debug level"), NULL, 0)) {
1352    case 0:                         /* Director */
1353       debug_level = level;
1354       set_trace(trace_flag);
1355       break;
1356    case 1:
1357       store = get_storage_resource(ua, 0);
1358       if (store) {
1359          do_storage_setdebug(ua, store, level, trace_flag);
1360       }
1361       break;
1362    case 2:
1363       client = select_client_resource(ua);
1364       if (client) {
1365          do_client_setdebug(ua, client, level, trace_flag);
1366       }
1367       break;
1368    case 3:
1369       do_all_setdebug(ua, level, trace_flag);
1370       break;
1371    default:
1372       break;
1373    }
1374    return 1;
1375 }
1376
1377 /*
1378  * Turn debug tracing to file on/off
1379  */
1380 static int trace_cmd(UAContext *ua, const char *cmd)
1381 {
1382    char *onoff;
1383
1384    if (ua->argc != 2) {
1385       if (!get_cmd(ua, _("Turn on or off? "))) {
1386             return 1;
1387       }
1388       onoff = ua->cmd;
1389    } else {
1390       onoff = ua->argk[1];
1391    }
1392
1393    set_trace((strcasecmp(onoff, _("off")) == 0) ? false : true);
1394    return 1; 
1395
1396 }
1397
1398 static int var_cmd(UAContext *ua, const char *cmd)
1399 {
1400    POOLMEM *val = get_pool_memory(PM_FNAME);
1401    char *var;
1402
1403    if (!open_db(ua)) {
1404       return 1;
1405    }
1406    for (var=ua->cmd; *var != ' '; ) {    /* skip command */
1407       var++;
1408    }
1409    while (*var == ' ') {                 /* skip spaces */
1410       var++;
1411    }
1412    Dmsg1(100, "Var=%s:\n", var);
1413    variable_expansion(ua->jcr, var, &val);  
1414    bsendmsg(ua, "%s\n", val);
1415    free_pool_memory(val);
1416    return 1;
1417 }
1418
1419 static int estimate_cmd(UAContext *ua, const char *cmd)
1420 {
1421    JOB *job = NULL;
1422    CLIENT *client = NULL;
1423    FILESET *fileset = NULL;
1424    int listing = 0;
1425    BSOCK *fd;
1426    char since[MAXSTRING];
1427
1428    for (int i=1; i<ua->argc; i++) {
1429       if (strcasecmp(ua->argk[i], _("client")) == 0 ||
1430           strcasecmp(ua->argk[i], _("fd")) == 0) {
1431          if (ua->argv[i]) {
1432             client = (CLIENT *)GetResWithName(R_CLIENT, ua->argv[i]);
1433             continue;
1434          }
1435       }
1436       if (strcasecmp(ua->argk[i], _("job")) == 0) {
1437          if (ua->argv[i]) {
1438             job = (JOB *)GetResWithName(R_JOB, ua->argv[i]);
1439             continue;
1440          }
1441       }
1442       if (strcasecmp(ua->argk[i], _("fileset")) == 0) {
1443          if (ua->argv[i]) {
1444             fileset = (FILESET *)GetResWithName(R_FILESET, ua->argv[i]);
1445             continue;
1446          }
1447       }
1448       if (strcasecmp(ua->argk[i], _("listing")) == 0) {
1449          listing = 1;
1450       }
1451    } 
1452    if (!job && !(client && fileset)) {
1453       if (!(job = select_job_resource(ua))) {
1454          return 1;
1455       }
1456    }
1457    if (!job) {
1458       job = (JOB *)GetResWithName(R_JOB, ua->argk[1]);
1459    }
1460    if (!client) {
1461       client = job->client;
1462    }
1463    if (!fileset) {
1464       fileset = job->fileset;
1465    }
1466    ua->jcr->client = client;
1467    ua->jcr->fileset = fileset;
1468    close_db(ua);
1469    ua->catalog = client->catalog;
1470
1471    if (!open_db(ua)) {
1472       return 1;
1473    }
1474
1475    get_level_since_time(ua->jcr, since, sizeof(since));
1476
1477    bsendmsg(ua, _("Connecting to Client %s at %s:%d\n"),
1478       job->client->hdr.name, job->client->address, job->client->FDport);
1479    if (!connect_to_file_daemon(ua->jcr, 1, 15, 0)) {
1480       bsendmsg(ua, _("Failed to connect to Client.\n"));
1481       return 1;
1482    }
1483    fd = ua->jcr->file_bsock;
1484
1485    if (!send_include_list(ua->jcr)) {
1486       bsendmsg(ua, _("Error sending include list.\n"));
1487       return 1;
1488    }
1489
1490    if (!send_exclude_list(ua->jcr)) {
1491       bsendmsg(ua, _("Error sending exclude list.\n"));
1492       return 1;
1493    }
1494
1495    if (!send_level_command(ua->jcr)) {
1496       return 1;
1497    }
1498
1499    bnet_fsend(fd, "estimate listing=%d\n", listing);
1500    while (bnet_recv(fd) >= 0) {
1501       bsendmsg(ua, "%s", fd->msg);
1502    }
1503
1504    bnet_sig(fd, BNET_TERMINATE);
1505    bnet_close(fd);
1506    ua->jcr->file_bsock = NULL;
1507
1508    return 1;
1509 }
1510
1511
1512 /*
1513  * print time
1514  */
1515 static int time_cmd(UAContext *ua, const char *cmd)
1516 {
1517    char sdt[50];
1518    time_t ttime = time(NULL);
1519    struct tm tm;
1520    localtime_r(&ttime, &tm);
1521    strftime(sdt, sizeof(sdt), "%d-%b-%Y %H:%M:%S", &tm);
1522    bsendmsg(ua, "%s\n", sdt);
1523    return 1;
1524 }
1525
1526 /*
1527  * reload the conf file
1528  */
1529 extern "C" void reload_config(int sig);
1530
1531 static int reload_cmd(UAContext *ua, const char *cmd)
1532 {
1533    reload_config(1);   
1534    return 1;
1535 }
1536
1537
1538
1539 /*
1540  * Delete Pool records (should purge Media with it).
1541  *
1542  *  delete pool=<pool-name>
1543  *  delete volume pool=<pool-name> volume=<name>
1544  *  delete job jobid=xxx
1545  */
1546 static int delete_cmd(UAContext *ua, const char *cmd)
1547 {
1548    static const char *keywords[] = {
1549       N_("volume"),
1550       N_("pool"),
1551       N_("job"),
1552       N_("jobid"),
1553       NULL};
1554
1555    if (!open_db(ua)) {
1556       return 1;
1557    }
1558
1559    switch (find_arg_keyword(ua, keywords)) {      
1560    case 0:
1561       delete_volume(ua);     
1562       return 1;
1563    case 1:
1564       delete_pool(ua);
1565       return 1;
1566    case 2:
1567    case 3:
1568       int i;
1569       while ((i=find_arg(ua, _("jobid"))) > 0) {
1570          delete_job(ua);
1571          *ua->argk[i] = 0;         /* zap keyword already visited */
1572       }
1573       return 1;
1574    default:
1575       break;
1576    }
1577
1578    bsendmsg(ua, _(
1579 "In general it is not a good idea to delete either a\n"
1580 "Pool or a Volume since they may contain data.\n\n"));
1581
1582    switch (do_keyword_prompt(ua, _("Choose catalog item to delete"), keywords)) {
1583    case 0:
1584       delete_volume(ua);
1585       break;
1586    case 1:
1587       delete_pool(ua);
1588       break;
1589    case 2:
1590       delete_job(ua);
1591       return 1;
1592    default:
1593       bsendmsg(ua, _("Nothing done.\n"));
1594       break;
1595    }
1596    return 1;
1597 }
1598
1599 static int delete_job(UAContext *ua)
1600 {
1601    POOLMEM *query = get_pool_memory(PM_MESSAGE);
1602    JobId_t JobId;
1603
1604    int i = find_arg_with_value(ua, _("jobid"));
1605    if (i >= 0) {
1606       JobId = str_to_int64(ua->argv[i]);
1607    } else if (!get_pint(ua, _("Enter JobId to delete: "))) {
1608       return 0;
1609    } else {
1610       JobId = ua->pint32_val; 
1611    }
1612    Mmsg(&query, "DELETE FROM Job WHERE JobId=%u", JobId);
1613    db_sql_query(ua->db, query, NULL, (void *)NULL);
1614    Mmsg(&query, "DELETE FROM File WHERE JobId=%u", JobId);
1615    db_sql_query(ua->db, query, NULL, (void *)NULL);
1616    Mmsg(&query, "DELETE FROM JobMedia WHERE JobId=%u", JobId);
1617    db_sql_query(ua->db, query, NULL, (void *)NULL);
1618    free_pool_memory(query);
1619    bsendmsg(ua, _("Job %u and associated records deleted from the catalog.\n"), JobId);
1620    return 1;
1621 }
1622
1623 /*
1624  * Delete media records from database -- dangerous 
1625  */
1626 static int delete_volume(UAContext *ua)
1627 {
1628    MEDIA_DBR mr;
1629
1630    if (!select_media_dbr(ua, &mr)) {
1631       return 1;
1632    }
1633    bsendmsg(ua, _("\nThis command will delete volume %s\n"
1634       "and all Jobs saved on that volume from the Catalog\n"),
1635       mr.VolumeName);
1636
1637    if (!get_yesno(ua, _("Are you sure you want to delete this Volume? (yes/no): "))) {
1638       return 1;
1639    }
1640    if (ua->pint32_val) {
1641       db_delete_media_record(ua->jcr, ua->db, &mr);
1642    }
1643    return 1;
1644 }
1645
1646 /*
1647  * Delete a pool record from the database -- dangerous   
1648  */
1649 static int delete_pool(UAContext *ua)
1650 {
1651    POOL_DBR  pr;
1652    
1653    memset(&pr, 0, sizeof(pr));
1654
1655    if (!get_pool_dbr(ua, &pr)) {
1656       return 1;
1657    }
1658    if (!get_yesno(ua, _("Are you sure you want to delete this Pool? (yes/no): "))) {
1659       return 1;
1660    }
1661    if (ua->pint32_val) {
1662       db_delete_pool_record(ua->jcr, ua->db, &pr);
1663    }
1664    return 1;
1665 }
1666
1667
1668 static void do_mount_cmd(UAContext *ua, const char *command)
1669 {
1670    STORE *store;
1671    BSOCK *sd;
1672    char dev_name[MAX_NAME_LENGTH];
1673
1674
1675    if (!open_db(ua)) {
1676       return;
1677    }
1678    Dmsg2(120, "%s: %s\n", command, ua->UA_sock->msg);
1679
1680    store = get_storage_resource(ua, 1);
1681    if (!store) {
1682       return;
1683    }
1684
1685    Dmsg2(120, "Found storage, MediaType=%s DevName=%s\n",
1686       store->media_type, store->dev_name);
1687
1688    ua->jcr->store = store;
1689    if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
1690       bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
1691       return;
1692    }
1693    sd = ua->jcr->store_bsock;
1694    strcpy(dev_name, store->dev_name);
1695    bash_spaces(dev_name);
1696    bnet_fsend(sd, "%s %s", command, dev_name);
1697    while (bnet_recv(sd) >= 0) {
1698       bsendmsg(ua, "%s", sd->msg);
1699    }
1700    bnet_sig(sd, BNET_TERMINATE);
1701    bnet_close(sd);
1702    ua->jcr->store_bsock = NULL;
1703 }
1704
1705 /*
1706  * mount [storage | device] <name>
1707  */
1708 static int mount_cmd(UAContext *ua, const char *cmd)
1709 {
1710    do_mount_cmd(ua, "mount");          /* mount */
1711    return 1;
1712 }
1713
1714
1715 /*
1716  * unmount [storage | device] <name>
1717  */
1718 static int unmount_cmd(UAContext *ua, const char *cmd)
1719 {
1720    do_mount_cmd(ua, "unmount");          /* unmount */
1721    return 1;
1722 }
1723
1724
1725 /*
1726  * release [storage | device] <name>
1727  */
1728 static int release_cmd(UAContext *ua, const char *cmd)
1729 {
1730    do_mount_cmd(ua, "release");          /* release */
1731    return 1;
1732 }
1733
1734
1735 /*
1736  * Switch databases
1737  *   use catalog=<name>
1738  */
1739 static int use_cmd(UAContext *ua, const char *cmd)
1740 {
1741    CAT *oldcatalog, *catalog;
1742
1743
1744    close_db(ua);                      /* close any previously open db */
1745    oldcatalog = ua->catalog;
1746
1747    if (!(catalog = get_catalog_resource(ua))) {
1748       ua->catalog = oldcatalog;
1749    } else {
1750       ua->catalog = catalog;
1751    }
1752    if (open_db(ua)) {
1753       bsendmsg(ua, _("Using Catalog name=%s DB=%s\n"),
1754          ua->catalog->hdr.name, ua->catalog->db_name);
1755    }
1756    return 1;
1757 }
1758
1759 int quit_cmd(UAContext *ua, const char *cmd) 
1760 {
1761    ua->quit = TRUE;
1762    return 1;
1763 }
1764
1765 /*
1766  * Wait until no job is running 
1767  */
1768 int wait_cmd(UAContext *ua, const char *cmd) 
1769 {
1770    JCR *jcr;
1771    bmicrosleep(0, 200000);            /* let job actually start */
1772    for (bool running=true; running; ) {
1773       running = false;
1774       lock_jcr_chain();
1775       foreach_jcr(jcr) {
1776          if (jcr->JobId != 0) {
1777             running = true;
1778             free_locked_jcr(jcr);
1779             break;
1780          }
1781          free_locked_jcr(jcr);
1782       }
1783       unlock_jcr_chain();
1784       if (running) {
1785          bmicrosleep(1, 0);
1786       }
1787    }
1788    return 1;
1789 }
1790
1791
1792 static int help_cmd(UAContext *ua, const char *cmd)
1793 {
1794    unsigned int i;
1795
1796    bsendmsg(ua, _("  Command    Description\n  =======    ===========\n"));
1797    for (i=0; i<comsize; i++) {
1798       bsendmsg(ua, _("  %-10s %s\n"), _(commands[i].key), _(commands[i].help));
1799    }
1800    bsendmsg(ua, _("\nWhen at a prompt, entering a period cancels the command.\n\n"));
1801    return 1;
1802 }
1803
1804 static int version_cmd(UAContext *ua, const char *cmd)
1805 {
1806    bsendmsg(ua, "%s Version: " VERSION " (" BDATE ")\n", my_name);
1807    return 1;
1808 }
1809
1810
1811 /* A bit brain damaged in that if the user has not done
1812  * a "use catalog xxx" command, we simply find the first
1813  * catalog resource and open it.
1814  */
1815 int open_db(UAContext *ua)
1816 {
1817    if (ua->db) {
1818       return 1;
1819    }
1820    if (!ua->catalog) {
1821       LockRes();
1822       ua->catalog = (CAT *)GetNextRes(R_CATALOG, NULL);
1823       UnlockRes();
1824       if (!ua->catalog) {    
1825          bsendmsg(ua, _("Could not find a Catalog resource\n"));
1826          return 0;
1827       } else {
1828          bsendmsg(ua, _("Using default Catalog name=%s DB=%s\n"), 
1829             ua->catalog->hdr.name, ua->catalog->db_name);
1830       }
1831    }
1832
1833    ua->jcr->catalog = ua->catalog;
1834
1835    Dmsg0(150, "Open database\n");
1836    ua->db = db_init_database(ua->jcr, ua->catalog->db_name, ua->catalog->db_user,
1837                              ua->catalog->db_password, ua->catalog->db_address,
1838                              ua->catalog->db_port, ua->catalog->db_socket);
1839    if (!ua->db || !db_open_database(ua->jcr, ua->db)) {
1840       bsendmsg(ua, _("Could not open database \"%s\".\n"),
1841                  ua->catalog->db_name);
1842       if (ua->db) {
1843          bsendmsg(ua, "%s", db_strerror(ua->db));
1844       }
1845       close_db(ua);
1846       return 0;
1847    }
1848    ua->jcr->db = ua->db;
1849    Dmsg1(150, "DB %s opened\n", ua->catalog->db_name);
1850    return 1;
1851 }
1852
1853 void close_db(UAContext *ua)
1854 {
1855    if (ua->db) {
1856       db_close_database(ua->jcr, ua->db);
1857       ua->db = NULL;
1858       if (ua->jcr) {
1859          ua->jcr->db = NULL;
1860       }
1861    }
1862 }