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