Imported Upstream version 3.2.0
[debian/amanda] / server-src / amadmin.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1998 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Author: James da Silva, Systems Design and Analysis Group
24  *                         Computer Science Department
25  *                         University of Maryland at College Park
26  */
27 /*
28  * $Id: amadmin.c,v 1.124 2006/07/26 15:17:37 martinea Exp $
29  *
30  * controlling process for the Amanda backup system
31  */
32 #include "amanda.h"
33 #include "cmdline.h"
34 #include "conffile.h"
35 #include "diskfile.h"
36 #include "tapefile.h"
37 #include "infofile.h"
38 #include "logfile.h"
39 #include "version.h"
40 #include "holding.h"
41 #include "find.h"
42 #include "util.h"
43 #include "timestamp.h"
44 #include "server_util.h"
45
46 disklist_t diskq;
47
48 int main(int argc, char **argv);
49 void usage(void);
50 static void estimate(int argc, char **argv);
51 static void estimate_one(disk_t *dp);
52 void force(int argc, char **argv);
53 void force_one(disk_t *dp);
54 void unforce(int argc, char **argv);
55 void unforce_one(disk_t *dp);
56 void force_bump(int argc, char **argv);
57 void force_bump_one(disk_t *dp);
58 void force_no_bump(int argc, char **argv);
59 void force_no_bump_one(disk_t *dp);
60 void unforce_bump(int argc, char **argv);
61 void unforce_bump_one(disk_t *dp);
62 void reuse(int argc, char **argv);
63 void noreuse(int argc, char **argv);
64 void info(int argc, char **argv);
65 void info_one(disk_t *dp);
66 void due(int argc, char **argv);
67 void due_one(disk_t *dp);
68 void find(int argc, char **argv);
69 void holding(int argc, char **argv);
70 void delete(int argc, char **argv);
71 void delete_one(disk_t *dp);
72 void balance(int argc, char **argv);
73 void tape(int argc, char **argv);
74 void bumpsize(int argc, char **argv);
75 void diskloop(int argc, char **argv, char *cmdname, void (*func)(disk_t *dp));
76 char *seqdatestr(int seq);
77 static int next_level0(disk_t *dp, info_t *info);
78 int bump_thresh(int level);
79 void export_db(int argc, char **argv);
80 void import_db(int argc, char **argv);
81 void hosts(int argc, char **argv);
82 void dles(int argc, char **argv);
83 void disklist(int argc, char **argv);
84 void disklist_one(disk_t *dp);
85 void show_version(int argc, char **argv);
86 static void show_config(int argc, char **argv);
87
88 static char *conf_tapelist = NULL;
89 static char *displayunit;
90 static long int unitdivisor;
91
92 static const struct {
93     const char *name;
94     void (*fn)(int, char **);
95     const char *usage;
96 } cmdtab[] = {
97     { "version", show_version,
98         T_("\t\t\t\t\t# Show version info.") },
99     { "config", show_config,
100         T_("\t\t\t\t\t# Show configuration.") },
101     { "estimate", estimate,
102         T_(" [<hostname> [<disks>]* ]*\t# Print server estimate.") },
103     { "force", force,
104         T_(" [<hostname> [<disks>]* ]+\t\t# Force level 0 at next run.") },
105     { "unforce", unforce,
106         T_(" [<hostname> [<disks>]* ]+\t# Clear force command.") },
107     { "force-bump", force_bump,
108         T_(" [<hostname> [<disks>]* ]+\t# Force bump at next run.") },
109     { "force-no-bump", force_no_bump,
110         T_(" [<hostname> [<disks>]* ]+\t# Force no-bump at next run.") },
111     { "unforce-bump", unforce_bump,
112         T_(" [<hostname> [<disks>]* ]+\t# Clear bump command.") },
113     { "disklist", disklist,
114         T_(" [<hostname> [<disks>]* ]*\t# Debug disklist entries.") },
115     { "hosts", hosts,
116         T_("\t\t\t\t\t# Show all distinct hosts in disklist.") },
117     { "dles", dles,
118         T_("\t\t\t\t\t# Show all dles in disklist, one per line.") },
119     { "reuse", reuse,
120         T_(" <tapelabel> ...\t\t # re-use this tape.") },
121     { "no-reuse", noreuse,
122         T_(" <tapelabel> ...\t # never re-use this tape.") },
123     { "find", find,
124         T_(" [<hostname> [<disks>]* ]*\t # Show which tapes these dumps are on.") },
125     { "holding", holding,
126         T_(" {list [ -l ] |delete} [ <hostname> [ <disk> [ <datestamp> [ .. ] ] ] ]+\t # Show or delete holding disk contents.") },
127     { "delete", delete,
128         T_(" [<hostname> [<disks>]* ]+ # Delete from database.") },
129     { "info", info,
130         T_(" [<hostname> [<disks>]* ]*\t # Show current info records.") },
131     { "due", due,
132         T_(" [<hostname> [<disks>]* ]*\t # Show due date.") },
133     { "balance", balance,
134         T_(" [--days <num>]\t\t # Show nightly dump size balance.") },
135     { "tape", tape,
136         T_(" [--days <num>]\t\t # Show which tape is due next.") },
137     { "bumpsize", bumpsize,
138         T_("\t\t\t # Show current bump thresholds.") },
139     { "export", export_db,
140         T_(" [<hostname> [<disks>]* ]* # Export curinfo database to stdout.") },
141     { "import", import_db,
142         T_("\t\t\t\t # Import curinfo database from stdin.") },
143 };
144 #define NCMDS   (int)(sizeof(cmdtab) / sizeof(cmdtab[0]))
145
146 int
147 main(
148     int         argc,
149     char **     argv)
150 {
151     int i;
152     char *conf_diskfile;
153     char *conf_infofile;
154     config_overrides_t *cfg_ovr = NULL;
155
156     /*
157      * Configure program for internationalization:
158      *   1) Only set the message locale for now.
159      *   2) Set textdomain for all amanda related programs to "amanda"
160      *      We don't want to be forced to support dozens of message catalogs.
161      */  
162     setlocale(LC_MESSAGES, "C");
163     textdomain("amanda"); 
164
165     safe_fd(-1, 0);
166     safe_cd();
167
168     set_pname("amadmin");
169
170     /* Don't die when child closes pipe */
171     signal(SIGPIPE, SIG_IGN);
172
173     dbopen(DBG_SUBDIR_SERVER);
174
175     add_amanda_log_handler(amanda_log_stderr);
176
177     cfg_ovr = extract_commandline_config_overrides(&argc, &argv);
178
179     if(argc < 3) usage();
180
181     set_config_overrides(cfg_ovr);
182     config_init(CONFIG_INIT_EXPLICIT_NAME, argv[1]);
183
184     if(strcmp(argv[2],"version") == 0) {
185         show_version(argc, argv);
186         goto done;
187     }
188
189     conf_diskfile = config_dir_relative(getconf_str(CNF_DISKFILE));
190     read_diskfile(conf_diskfile, &diskq);
191     amfree(conf_diskfile);
192
193     if (config_errors(NULL) >= CFGERR_WARNINGS) {
194         config_print_errors();
195         if (config_errors(NULL) >= CFGERR_ERRORS) {
196             g_critical(_("errors processing config file"));
197         }
198     }
199
200     dbrename(get_config_name(), DBG_SUBDIR_SERVER);
201
202     check_running_as(RUNNING_AS_DUMPUSER);
203
204     conf_tapelist = config_dir_relative(getconf_str(CNF_TAPELIST));
205     if(read_tapelist(conf_tapelist)) {
206         error(_("could not load tapelist \"%s\""), conf_tapelist);
207         /*NOTREACHED*/
208     }
209     /* conf_tapelist is not freed yet -- it may be used to write the
210      * tapelist later. */
211
212     conf_infofile = config_dir_relative(getconf_str(CNF_INFOFILE));
213     if(open_infofile(conf_infofile)) {
214         error(_("could not open info db \"%s\""), conf_infofile);
215         /*NOTREACHED*/
216     }
217     amfree(conf_infofile);
218
219     displayunit = getconf_str(CNF_DISPLAYUNIT);
220     unitdivisor = getconf_unit_divisor();
221
222     for (i = 0; i < NCMDS; i++)
223         if (strcmp(argv[2], cmdtab[i].name) == 0) {
224             (*cmdtab[i].fn)(argc, argv);
225             break;
226         }
227     if (i == NCMDS) {
228         g_fprintf(stderr, _("%s: unknown command \"%s\"\n"), argv[0], argv[2]);
229         usage();
230     }
231
232     close_infofile();
233     clear_tapelist();
234     amfree(conf_tapelist);
235
236 done:
237
238     free_disklist(&diskq);
239     dbclose();
240     return 0;
241 }
242
243
244 void
245 usage(void)
246 {
247     int i;
248
249     g_fprintf(stderr, _("\nUsage: %s <conf> <command> {<args>} [-o configoption]* ...\n"),
250             get_pname());
251     g_fprintf(stderr, _("    Valid <command>s are:\n"));
252     for (i = 0; i < NCMDS; i++)
253         g_fprintf(stderr, "\t%s%s\n", cmdtab[i].name, _(cmdtab[i].usage));
254     exit(1);
255 }
256
257
258 /* ----------------------------------------------- */
259
260 #define SECS_PER_DAY (24*60*60)
261 time_t today;
262
263 char *
264 seqdatestr(
265     int         seq)
266 {
267     static char str[16];
268     static char *dow[7] = {
269                         T_("Sun"),
270                         T_("Mon"),
271                         T_("Tue"),
272                         T_("Wed"),
273                         T_("Thu"),
274                         T_("Fri"),
275                         T_("Sat")
276                 };
277     time_t t = today + seq*SECS_PER_DAY;
278     struct tm *tm;
279
280     tm = localtime(&t);
281
282     if (tm)
283         g_snprintf(str, SIZEOF(str),
284                  "%2d/%02d %3s", tm->tm_mon+1, tm->tm_mday, _(dow[tm->tm_wday]));
285     else
286         strcpy(str, _("BAD DATE"));
287
288     return str;
289 }
290
291 #undef days_diff
292 #define days_diff(a, b)        (int)(((b) - (a) + SECS_PER_DAY) / SECS_PER_DAY)
293
294 /* when is next level 0 due? 0 = tonight, 1 = tommorrow, etc*/
295 static int
296 next_level0(
297     disk_t *    dp,
298     info_t *    info)
299 {
300     if(dp->strategy == DS_NOFULL)
301         return 1;       /* fake it */
302     if(info->inf[0].date < (time_t)0)
303         return 0;       /* new disk */
304     else
305         return dp->dumpcycle - days_diff(info->inf[0].date, today);
306 }
307
308 /* ----------------------------------------------- */
309
310 void
311 diskloop(
312     int         argc,
313     char **     argv,
314     char *      cmdname,
315     void        (*func)(disk_t *dp))
316 {
317     disk_t *dp;
318     int count = 0;
319     char *errstr;
320
321     if(argc < 4) {
322         g_fprintf(stderr,_("%s: expecting \"%s [<hostname> [<disks>]* ]+\"\n"),
323                 get_pname(), cmdname);
324         usage();
325     }
326
327     errstr = match_disklist(&diskq, argc-3, argv+3);
328     if (errstr) {
329         g_printf("%s", errstr);
330         amfree(errstr);
331     }
332
333     for(dp = diskq.head; dp != NULL; dp = dp->next) {
334         if(dp->todo) {
335             count++;
336             func(dp);
337         }
338     }
339     if(count==0) {
340         g_fprintf(stderr,_("%s: no disk matched\n"),get_pname());
341     }
342 }
343
344 /* ----------------------------------------------- */
345
346
347 static void
348 estimate_one(
349     disk_t *    dp)
350 {
351     char   *hostname = dp->host->hostname;
352     char   *diskname = dp->name;
353     char   *qhost = quote_string(hostname);
354     char   *qdisk = quote_string(diskname);
355     info_t  info;
356     int     stats;
357     gint64  size;
358
359     get_info(hostname, diskname, &info);
360
361     size = internal_server_estimate(dp, &info, 0, &stats);
362     if (stats) {
363         printf("%s %s %d %jd\n", qhost, qdisk, 0, (intmax_t)size);
364     }
365
366     if (info.last_level > 0) {
367         size = internal_server_estimate(dp, &info, info.last_level, &stats);
368         if (stats) {
369             printf("%s %s %d %jd\n", qhost, qdisk, info.last_level,
370                    (intmax_t)size);
371         }
372     }
373
374     if (info.last_level > -1) {
375         size = internal_server_estimate(dp, &info, info.last_level+1, &stats);
376         if (stats) {
377             printf("%s %s %d %jd\n", qhost, qdisk, info.last_level+1,
378                    (intmax_t)size);
379         }
380     }
381
382     amfree(qhost);
383     amfree(qdisk);
384 }
385
386
387 static void
388 estimate(
389     int         argc,
390     char **     argv)
391 {
392     disk_t *dp;
393
394     if(argc >= 4)
395         diskloop(argc, argv, "estimate", estimate_one);
396     else
397         for(dp = diskq.head; dp != NULL; dp = dp->next)
398             estimate_one(dp);
399 }
400
401
402 /* ----------------------------------------------- */
403
404
405 void
406 force_one(
407     disk_t *    dp)
408 {
409     char *hostname = dp->host->hostname;
410     char *diskname = dp->name;
411     info_t info;
412
413     get_info(hostname, diskname, &info);
414     SET(info.command, FORCE_FULL);
415     if (ISSET(info.command, FORCE_BUMP)) {
416         CLR(info.command, FORCE_BUMP);
417         g_printf(_("%s: WARNING: %s:%s FORCE_BUMP command was cleared.\n"),
418                get_pname(), hostname, diskname);
419     }
420     if(put_info(hostname, diskname, &info) == 0) {
421         if (dp->strategy == DS_INCRONLY) {
422             g_printf(_("%s: %s:%s, full dump done offline, next dump will be at level 1.\n"),
423                      get_pname(), hostname, diskname);
424         } else {
425             g_printf(_("%s: %s:%s is set to a forced level 0 at next run.\n"),
426                      get_pname(), hostname, diskname);
427         }
428     } else {
429         g_fprintf(stderr, _("%s: %s:%s could not be forced.\n"),
430                 get_pname(), hostname, diskname);
431     }
432 }
433
434
435 void
436 force(
437     int         argc,
438     char **     argv)
439 {
440     diskloop(argc, argv, "force", force_one);
441 }
442
443
444 /* ----------------------------------------------- */
445
446
447 void
448 unforce_one(
449     disk_t *    dp)
450 {
451     char *hostname = dp->host->hostname;
452     char *diskname = dp->name;
453     info_t info;
454
455     get_info(hostname, diskname, &info);
456     if (ISSET(info.command, FORCE_FULL)) {
457         CLR(info.command, FORCE_FULL);
458         if(put_info(hostname, diskname, &info) == 0){
459             g_printf(_("%s: force command for %s:%s cleared.\n"),
460                    get_pname(), hostname, diskname);
461         } else {
462             g_fprintf(stderr,
463                     _("%s: force command for %s:%s could not be cleared.\n"),
464                     get_pname(), hostname, diskname);
465         }
466     }
467     else {
468         g_printf(_("%s: no force command outstanding for %s:%s, unchanged.\n"),
469                get_pname(), hostname, diskname);
470     }
471 }
472
473 void
474 unforce(
475     int         argc,
476     char **     argv)
477 {
478     diskloop(argc, argv, "unforce", unforce_one);
479 }
480
481
482 /* ----------------------------------------------- */
483
484
485 void
486 force_bump_one(
487     disk_t *    dp)
488 {
489     char *hostname = dp->host->hostname;
490     char *diskname = dp->name;
491     info_t info;
492
493     get_info(hostname, diskname, &info);
494     SET(info.command, FORCE_BUMP);
495     if (ISSET(info.command, FORCE_NO_BUMP)) {
496         CLR(info.command, FORCE_NO_BUMP);
497         g_printf(_("%s: WARNING: %s:%s FORCE_NO_BUMP command was cleared.\n"),
498                get_pname(), hostname, diskname);
499     }
500     if (ISSET(info.command, FORCE_FULL)) {
501         CLR(info.command, FORCE_FULL);
502         g_printf(_("%s: WARNING: %s:%s FORCE_FULL command was cleared.\n"),
503                get_pname(), hostname, diskname);
504     }
505     if(put_info(hostname, diskname, &info) == 0) {
506         g_printf(_("%s: %s:%s is set to bump at next run.\n"),
507                get_pname(), hostname, diskname);
508     } else {
509         g_fprintf(stderr, _("%s: %s:%s could not be forced to bump.\n"),
510                 get_pname(), hostname, diskname);
511     }
512 }
513
514
515 void
516 force_bump(
517     int         argc,
518     char **     argv)
519 {
520     diskloop(argc, argv, "force-bump", force_bump_one);
521 }
522
523
524 /* ----------------------------------------------- */
525
526
527 void
528 force_no_bump_one(
529     disk_t *    dp)
530 {
531     char *hostname = dp->host->hostname;
532     char *diskname = dp->name;
533     info_t info;
534
535     get_info(hostname, diskname, &info);
536     SET(info.command, FORCE_NO_BUMP);
537     if (ISSET(info.command, FORCE_BUMP)) {
538         CLR(info.command, FORCE_BUMP);
539         g_printf(_("%s: WARNING: %s:%s FORCE_BUMP command was cleared.\n"),
540                get_pname(), hostname, diskname);
541     }
542     if(put_info(hostname, diskname, &info) == 0) {
543         g_printf(_("%s: %s:%s is set to not bump at next run.\n"),
544                get_pname(), hostname, diskname);
545     } else {
546         g_fprintf(stderr, _("%s: %s:%s could not be force to not bump.\n"),
547                 get_pname(), hostname, diskname);
548     }
549 }
550
551
552 void
553 force_no_bump(
554     int         argc,
555     char **     argv)
556 {
557     diskloop(argc, argv, "force-no-bump", force_no_bump_one);
558 }
559
560
561 /* ----------------------------------------------- */
562
563
564 void
565 unforce_bump_one(
566     disk_t *    dp)
567 {
568     char *hostname = dp->host->hostname;
569     char *diskname = dp->name;
570     info_t info;
571
572     get_info(hostname, diskname, &info);
573     if (ISSET(info.command, FORCE_BUMP|FORCE_NO_BUMP)) {
574         CLR(info.command, FORCE_BUMP|FORCE_NO_BUMP);
575         if(put_info(hostname, diskname, &info) == 0) {
576             g_printf(_("%s: bump command for %s:%s cleared.\n"),
577                    get_pname(), hostname, diskname);
578         } else {
579             g_fprintf(stderr, _("%s: %s:%s bump command could not be cleared.\n"),
580                     get_pname(), hostname, diskname);
581         }
582     }
583     else {
584         g_printf(_("%s: no bump command outstanding for %s:%s, unchanged.\n"),
585                get_pname(), hostname, diskname);
586     }
587 }
588
589
590 void
591 unforce_bump(
592     int         argc,
593     char **     argv)
594 {
595     diskloop(argc, argv, "unforce-bump", unforce_bump_one);
596 }
597
598
599 /* ----------------------------------------------- */
600
601 void
602 reuse(
603     int         argc,
604     char **     argv)
605 {
606     tape_t *tp;
607     int count;
608
609     if(argc < 4) {
610         g_fprintf(stderr,_("%s: expecting \"reuse <tapelabel> ...\"\n"),
611                 get_pname());
612         usage();
613     }
614
615     for(count=3; count< argc; count++) {
616         tp = lookup_tapelabel(argv[count]);
617         if ( tp == NULL) {
618             g_fprintf(stderr, _("reuse: tape label %s not found in tapelist.\n"),
619                 argv[count]);
620             continue;
621         }
622         if( tp->reuse == 0 ) {
623             tp->reuse = 1;
624             g_printf(_("%s: marking tape %s as reusable.\n"),
625                    get_pname(), argv[count]);
626         } else {
627             g_fprintf(stderr, _("%s: tape %s already reusable.\n"),
628                     get_pname(), argv[count]);
629         }
630     }
631
632     if(write_tapelist(conf_tapelist)) {
633         error(_("could not write tapelist \"%s\""), conf_tapelist);
634         /*NOTREACHED*/
635     }
636 }
637
638 void
639 noreuse(
640     int         argc,
641     char **     argv)
642 {
643     tape_t *tp;
644     int count;
645
646     if(argc < 4) {
647         g_fprintf(stderr,_("%s: expecting \"no-reuse <tapelabel> ...\"\n"),
648                 get_pname());
649         usage();
650     }
651
652     for(count=3; count< argc; count++) {
653         tp = lookup_tapelabel(argv[count]);
654         if ( tp == NULL) {
655             g_fprintf(stderr, _("no-reuse: tape label %s not found in tapelist.\n"),
656                 argv[count]);
657             continue;
658         }
659         if( tp->reuse == 1 ) {
660             tp->reuse = 0;
661             g_printf(_("%s: marking tape %s as not reusable.\n"),
662                    get_pname(), argv[count]);
663         } else {
664             g_fprintf(stderr, _("%s: tape %s already not reusable.\n"),
665                     get_pname(), argv[count]);
666         }
667     }
668
669     if(write_tapelist(conf_tapelist)) {
670         error(_("could not write tapelist \"%s\""), conf_tapelist);
671         /*NOTREACHED*/
672     }
673 }
674
675
676 /* ----------------------------------------------- */
677
678 static int deleted;
679
680 void
681 delete_one(
682     disk_t *    dp)
683 {
684     char *hostname = dp->host->hostname;
685     char *diskname = dp->name;
686     info_t info;
687
688     if(get_info(hostname, diskname, &info)) {
689         g_printf(_("%s: %s:%s NOT currently in database.\n"),
690                get_pname(), hostname, diskname);
691         return;
692     }
693
694     deleted++;
695     if(del_info(hostname, diskname)) {
696         error(_("couldn't delete %s:%s from database: %s"),
697               hostname, diskname, strerror(errno));
698         /*NOTREACHED*/
699     } else {
700         g_printf(_("%s: %s:%s deleted from curinfo database.\n"),
701                get_pname(), hostname, diskname);
702     }
703 }
704
705 void
706 delete(
707     int         argc,
708     char **     argv)
709 {
710     deleted = 0;
711     diskloop(argc, argv, "delete", delete_one);
712
713    if(deleted)
714         g_printf(
715          _("%s: NOTE: you'll have to remove these from the disklist yourself.\n"),
716          get_pname());
717 }
718
719 /* ----------------------------------------------- */
720
721 void
722 info_one(
723     disk_t *    dp)
724 {
725     info_t info;
726     int lev;
727     struct tm *tm;
728     stats_t *sp;
729
730     get_info(dp->host->hostname, dp->name, &info);
731
732     g_printf(_("\nCurrent info for %s %s:\n"), dp->host->hostname, dp->name);
733     if (ISSET(info.command, FORCE_FULL))
734         g_printf(_("  (Forcing to level 0 dump at next run)\n"));
735     if (ISSET(info.command, FORCE_BUMP))
736         g_printf(_("  (Forcing bump at next run)\n"));
737     if (ISSET(info.command, FORCE_NO_BUMP))
738         g_printf(_("  (Forcing no-bump at next run)\n"));
739     g_printf(_("  Stats: dump rates (kps), Full:  %5.1lf, %5.1lf, %5.1lf\n"),
740            info.full.rate[0], info.full.rate[1], info.full.rate[2]);
741     g_printf(_("                    Incremental:  %5.1lf, %5.1lf, %5.1lf\n"),
742            info.incr.rate[0], info.incr.rate[1], info.incr.rate[2]);
743     g_printf(_("          compressed size, Full: %5.1lf%%,%5.1lf%%,%5.1lf%%\n"),
744            info.full.comp[0]*100, info.full.comp[1]*100, info.full.comp[2]*100);
745     g_printf(_("                    Incremental: %5.1lf%%,%5.1lf%%,%5.1lf%%\n"),
746            info.incr.comp[0]*100, info.incr.comp[1]*100, info.incr.comp[2]*100);
747
748     g_printf(_("  Dumps: lev datestmp  tape             file   origK   compK secs\n"));
749     for(lev = 0, sp = &info.inf[0]; lev < 9; lev++, sp++) {
750         if(sp->date < (time_t)0 && sp->label[0] == '\0') continue;
751         tm = localtime(&sp->date);
752         if (tm) {
753             g_printf(_("          %d  %04d%02d%02d  %-15s  %lld %lld %lld %jd\n"),
754                    lev, tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
755                    sp->label,
756                    (long long)sp->filenum,
757                    (long long)sp->size,
758                    (long long)sp->csize,
759                    (intmax_t)sp->secs);
760         } else {
761             g_printf(_("          %d  BAD-DATE  %-15s  %lld %lld %lld %jd\n"),
762                    lev,
763                    sp->label,
764                    (long long)sp->filenum,
765                    (long long)sp->size,
766                    (long long)sp->csize,
767                    (intmax_t)sp->secs);
768         }
769     }
770 }
771
772
773 void
774 info(
775     int         argc,
776     char **     argv)
777 {
778     disk_t *dp;
779
780     if(argc >= 4)
781         diskloop(argc, argv, "info", info_one);
782     else
783         for(dp = diskq.head; dp != NULL; dp = dp->next)
784             info_one(dp);
785 }
786
787 /* ----------------------------------------------- */
788
789 void
790 due_one(
791     disk_t *    dp)
792 {
793     am_host_t *hp;
794     int days;
795     info_t info;
796
797     hp = dp->host;
798     if(get_info(hp->hostname, dp->name, &info)) {
799         g_printf(_("new disk %s:%s ignored.\n"), hp->hostname, dp->name);
800     }
801     else {
802         days = next_level0(dp, &info);
803         if(days < 0) {
804             g_printf(_("Overdue %2d day%s %s:%s\n"),
805                    -days, (-days == 1) ? ": " : "s:",
806                    hp->hostname, dp->name);
807         }
808         else if(days == 0) {
809             g_printf(_("Due today: %s:%s\n"), hp->hostname, dp->name);
810         }
811         else {
812             g_printf(_("Due in %2d day%s %s:%s\n"), days,
813                    (days == 1) ? ": " : "s:",
814                    hp->hostname, dp->name);
815         }
816     }
817 }
818
819 void
820 due(
821     int         argc,
822     char **     argv)
823 {
824     disk_t *dp;
825
826     time(&today);
827     if(argc >= 4)
828         diskloop(argc, argv, "due", due_one);
829     else
830         for(dp = diskq.head; dp != NULL; dp = dp->next)
831             due_one(dp);
832 }
833
834 /* ----------------------------------------------- */
835
836 void
837 tape(
838     int         argc,
839     char **     argv)
840 {
841     int     nb_days = 1;
842     int     runtapes;
843     tape_t *tp;
844     int     i, j;
845     int     skip;
846     int     nb_new_tape;
847
848     if(argc > 4 && strcmp(argv[3],"--days") == 0) {
849         nb_days = atoi(argv[4]);
850         if(nb_days < 1) {
851             g_printf(_("days must be an integer bigger than 0\n"));
852             return;
853         }
854         if (nb_days > 10000)
855             nb_days = 10000;
856     }
857
858     runtapes = getconf_int(CNF_RUNTAPES);
859     tp = lookup_last_reusable_tape(0);
860     skip = 0;
861
862     for ( j=0 ; j < nb_days ; j++ ) {
863         nb_new_tape=0;
864         for ( i=0 ; i < runtapes ; i++ ) {
865             if(i==0)
866                 g_fprintf(stdout, _("The next Amanda run should go onto "));
867             if(tp != NULL) {
868                 if (nb_new_tape > 0) {
869                     if (nb_new_tape == 1)
870                         g_fprintf(stdout, _("1 new tape.\n"));
871                     else
872                         g_fprintf(stdout, _("%d new tapes.\n"), nb_new_tape);
873                     g_fprintf(stdout, "                                   ");
874                     nb_new_tape = 0;
875                 }
876                 g_fprintf(stdout, _("tape %s or a new tape.\n"), tp->label);
877                 if (i < runtapes-1)
878                     g_fprintf(stdout, "                                   ");
879             } else {
880                 nb_new_tape++;
881             }
882             skip++;
883
884             tp = lookup_last_reusable_tape(skip);
885         }
886         if (nb_new_tape > 0) {
887             if (nb_new_tape == 1)
888                 g_fprintf(stdout, _("1 new tape.\n"));
889             else
890                 g_fprintf(stdout, _("%d new tapes.\n"), nb_new_tape);
891         }
892     }
893
894     print_new_tapes(stdout, nb_days * runtapes);
895 }
896
897 /* ----------------------------------------------- */
898
899 void
900 balance(
901     int         argc,
902     char **     argv)
903 {
904     disk_t *dp;
905     struct balance_stats {
906         int disks;
907         off_t origsize, outsize;
908     } *sp;
909     int conf_runspercycle, conf_dumpcycle;
910     int seq, runs_per_cycle, overdue, max_overdue;
911     int later, total, balance, distinct;
912     double fseq, disk_dumpcycle;
913     info_t info;
914     off_t total_balanced, balanced;
915     int empty_day;
916
917     time(&today);
918     conf_dumpcycle = getconf_int(CNF_DUMPCYCLE);
919     conf_runspercycle = getconf_int(CNF_RUNSPERCYCLE);
920     later = conf_dumpcycle;
921     overdue = 0;
922     max_overdue = 0;
923
924     if(argc > 4 && strcmp(argv[3],"--days") == 0) {
925         later = atoi(argv[4]);
926         if(later < 0) later = conf_dumpcycle;
927     }
928     if(later > 10000) later = 10000;
929
930     if(conf_runspercycle == 0) {
931         runs_per_cycle = conf_dumpcycle;
932     } else if(conf_runspercycle == -1 ) {
933         runs_per_cycle = guess_runs_from_tapelist();
934     } else
935         runs_per_cycle = conf_runspercycle;
936
937     if (runs_per_cycle <= 0) {
938         runs_per_cycle = 1;
939     }
940
941     total = later + 1;
942     balance = later + 2;
943     distinct = later + 3;
944
945     sp = (struct balance_stats *)
946         alloc(SIZEOF(struct balance_stats) * (distinct+1));
947
948     for(seq=0; seq <= distinct; seq++) {
949         sp[seq].disks = 0;
950         sp[seq].origsize = sp[seq].outsize = (off_t)0;
951     }
952
953     for(dp = diskq.head; dp != NULL; dp = dp->next) {
954         if(get_info(dp->host->hostname, dp->name, &info)) {
955             g_printf(_("new disk %s:%s ignored.\n"), dp->host->hostname, dp->name);
956             continue;
957         }
958         if (dp->strategy == DS_NOFULL) {
959             continue;
960         }
961         sp[distinct].disks++;
962         sp[distinct].origsize += info.inf[0].size/(off_t)unitdivisor;
963         sp[distinct].outsize += info.inf[0].csize/(off_t)unitdivisor;
964
965         sp[balance].disks++;
966         if(dp->dumpcycle == 0) {
967             sp[balance].origsize += (info.inf[0].size/(off_t)unitdivisor) * (off_t)runs_per_cycle;
968             sp[balance].outsize += (info.inf[0].csize/(off_t)unitdivisor) * (off_t)runs_per_cycle;
969         }
970         else {
971             sp[balance].origsize += (info.inf[0].size/(off_t)unitdivisor) *
972                                     (off_t)(conf_dumpcycle / dp->dumpcycle);
973             sp[balance].outsize += (info.inf[0].csize/(off_t)unitdivisor) *
974                                    (off_t)(conf_dumpcycle / dp->dumpcycle);
975         }
976
977         disk_dumpcycle = (double)dp->dumpcycle;
978         if(dp->dumpcycle <= 0)
979             disk_dumpcycle = ((double)conf_dumpcycle) / ((double)runs_per_cycle);
980
981         seq = next_level0(dp, &info);
982         fseq = seq + 0.0001;
983         do {
984             if(seq < 0) {
985                 overdue++;
986                 if (-seq > max_overdue)
987                     max_overdue = -seq;
988                 seq = 0;
989                 fseq = seq + 0.0001;
990             }
991             if(seq > later) {
992                 seq = later;
993             }
994             
995             sp[seq].disks++;
996             sp[seq].origsize += info.inf[0].size/(off_t)unitdivisor;
997             sp[seq].outsize += info.inf[0].csize/(off_t)unitdivisor;
998
999             if(seq < later) {
1000                 sp[total].disks++;
1001                 sp[total].origsize += info.inf[0].size/(off_t)unitdivisor;
1002                 sp[total].outsize += info.inf[0].csize/(off_t)unitdivisor;
1003             }
1004             
1005             /* See, if there's another run in this dumpcycle */
1006             fseq += disk_dumpcycle;
1007             seq = (int)fseq;
1008         } while (seq < later);
1009     }
1010
1011     if(sp[total].outsize == (off_t)0 && sp[later].outsize == (off_t)0) {
1012         g_printf(_("\nNo data to report on yet.\n"));
1013         amfree(sp);
1014         return;
1015     }
1016
1017     balanced = sp[balance].outsize / (off_t)runs_per_cycle;
1018     if(conf_dumpcycle == later) {
1019         total_balanced = sp[total].outsize / (off_t)runs_per_cycle;
1020     }
1021     else {
1022         total_balanced = (((sp[total].outsize/(off_t)1024) * (off_t)conf_dumpcycle)
1023                             / (off_t)(runs_per_cycle * later)) * (off_t)1024;
1024     }
1025
1026     empty_day = 0;
1027     g_printf(_("\n due-date  #fs    orig %cB     out %cB   balance\n"),
1028            displayunit[0], displayunit[0]);
1029     g_printf("----------------------------------------------\n");
1030     for(seq = 0; seq < later; seq++) {
1031         if(sp[seq].disks == 0 &&
1032            ((seq > 0 && sp[seq-1].disks == 0) ||
1033             ((seq < later-1) && sp[seq+1].disks == 0))) {
1034             empty_day++;
1035         }
1036         else {
1037             if(empty_day > 0) {
1038                 g_printf("\n");
1039                 empty_day = 0;
1040             }
1041             g_printf(_("%-9.9s  %3d %10lld %10lld "),
1042                    seqdatestr(seq), sp[seq].disks,
1043                    (long long)sp[seq].origsize,
1044                    (long long)sp[seq].outsize);
1045             if(!sp[seq].outsize) g_printf("     --- \n");
1046             else g_printf(_("%+8.1lf%%\n"),
1047                         (((double)sp[seq].outsize - (double)balanced) * 100.0 /
1048                         (double)balanced));
1049         }
1050     }
1051
1052     if(sp[later].disks != 0) {
1053         g_printf(_("later      %3d %10lld %10lld "),
1054                sp[later].disks,
1055                (long long)sp[later].origsize,
1056                (long long)sp[later].outsize);
1057         if(!sp[later].outsize) g_printf("     --- \n");
1058         else g_printf(_("%+8.1lf%%\n"),
1059                     (((double)sp[later].outsize - (double)balanced) * 100.0 /
1060                     (double)balanced));
1061     }
1062     g_printf("----------------------------------------------\n");
1063     g_printf(_("TOTAL      %3d %10lld %10lld %9lld\n"),
1064            sp[total].disks,
1065            (long long)sp[total].origsize,
1066            (long long)sp[total].outsize,
1067            (long long)total_balanced);
1068     if (sp[balance].origsize != sp[total].origsize ||
1069         sp[balance].outsize != sp[total].outsize ||
1070         balanced != total_balanced) {
1071         g_printf(_("BALANCED       %10lld %10lld %9lld\n"),
1072                (long long)sp[balance].origsize,
1073                (long long)sp[balance].outsize,
1074                (long long)balanced);
1075     }
1076     if (sp[distinct].disks != sp[total].disks) {
1077         g_printf(_("DISTINCT   %3d %10lld %10lld\n"),
1078                sp[distinct].disks,
1079                (long long)sp[distinct].origsize,
1080                (long long)sp[distinct].outsize);
1081     }
1082     g_printf(plural(_("  (estimated %d run per dumpcycle)\n"),
1083                   _("  (estimated %d runs per dumpcycle)\n"),
1084                   runs_per_cycle),
1085            runs_per_cycle);
1086     if (overdue) {
1087         g_printf(plural(_(" (%d filesystem overdue."),
1088                       _(" (%d filesystems overdue."), overdue),
1089                overdue);
1090         g_printf(plural(_(" The most being overdue %d day.)\n"),
1091                       _(" The most being overdue %d days.)\n"), max_overdue),
1092                max_overdue);
1093     }
1094     amfree(sp);
1095 }
1096
1097
1098 /* ----------------------------------------------- */
1099
1100 void
1101 find(
1102     int         argc,
1103     char **     argv)
1104 {
1105     int start_argc;
1106     char *sort_order = NULL;
1107     find_result_t *output_find;
1108     char *errstr;
1109     char **output_find_log;
1110     char **name;
1111
1112     if(argc < 3) {
1113         g_fprintf(stderr,
1114                 _("%s: expecting \"find [--sort <hkdlpbfw>] [hostname [<disk>]]*\"\n"),
1115                 get_pname());
1116         usage();
1117     }
1118
1119
1120     sort_order = newstralloc(sort_order, DEFAULT_SORT_ORDER);
1121     if(argc > 4 && strcmp(argv[3],"--sort") == 0) {
1122         size_t i, valid_sort=1;
1123
1124         for(i = strlen(argv[4]); i > 0; i--) {
1125             switch (argv[4][i - 1]) {
1126             case 'h':
1127             case 'H':
1128             case 'k':
1129             case 'K':
1130             case 'd':
1131             case 'D':
1132             case 'f':
1133             case 'F':
1134             case 'l':
1135             case 'L':
1136             case 'p':
1137             case 'P':
1138             case 'b':
1139             case 'B':
1140             case 'w':
1141             case 'W':
1142                     break;
1143             default: valid_sort=0;
1144             }
1145         }
1146         if(valid_sort) {
1147             sort_order = newstralloc(sort_order, argv[4]);
1148         } else {
1149             g_printf(_("Invalid sort order: %s\n"), argv[4]);
1150             g_printf(_("Use default sort order: %s\n"), sort_order);
1151         }
1152         start_argc=6;
1153     } else {
1154         start_argc=4;
1155     }
1156     errstr = match_disklist(&diskq, argc-(start_argc-1), argv+(start_argc-1));
1157
1158     /* check all log file exists */
1159     output_find_log = find_log();
1160     for (name = output_find_log; *name != NULL; name++) {
1161         amfree(*name);
1162     }
1163     amfree(output_find_log);
1164
1165     output_find = find_dump(&diskq); /* Add deleted dump to diskq */
1166     if(argc-(start_argc-1) > 0) {
1167         amfree(errstr);
1168         free_find_result(&output_find);
1169         errstr = match_disklist(&diskq, argc-(start_argc-1),
1170                                         argv+(start_argc-1));
1171         if (errstr) {
1172             g_printf("%s", errstr);
1173             amfree(errstr);
1174         }
1175         output_find = find_dump(NULL);
1176     } else if (errstr) {
1177         g_printf("%s", errstr);
1178         amfree(errstr);
1179     }
1180
1181     sort_find_result(sort_order, &output_find);
1182     print_find_result(output_find);
1183     free_find_result(&output_find);
1184
1185     amfree(sort_order);
1186 }
1187
1188
1189 /* ------------------------ */
1190
1191 static GSList *
1192 get_file_list(
1193     int argc,
1194     char **argv,
1195     int allow_empty)
1196 {
1197     GSList * file_list = NULL;
1198     GSList * dumplist;
1199     int flags;
1200
1201     flags = CMDLINE_PARSE_DATESTAMP;
1202     if (allow_empty) flags |= CMDLINE_EMPTY_TO_WILDCARD;
1203     dumplist = cmdline_parse_dumpspecs(argc, argv, flags);
1204
1205     file_list = cmdline_match_holding(dumplist);
1206     dumpspec_list_free(dumplist);
1207
1208     return file_list;
1209 }
1210
1211 /* Given a file header, find the history element in curinfo most likely
1212  * corresponding to that dump (this is not an exact science).
1213  *
1214  * @param info: the info_t element for this DLE
1215  * @param file: the header of the file
1216  * @returns: index of the matching history element, or -1 if not found
1217  */
1218 static int
1219 holding_file_find_history(
1220     info_t *info,
1221     dumpfile_t *file)
1222 {
1223     int matching_hist_idx = -1;
1224     int nhist;
1225     int i;
1226
1227     /* Begin by trying to find the history element matching this dump.
1228      * The datestamp on the dump is for the entire run of amdump, while the
1229      * 'date' in the history element of 'info' is the time the dump itself
1230      * began.  A matching history element, then, is the earliest element
1231      * with a 'date' equal to or later than the date of the dumpfile.
1232      *
1233      * We compare using formatted datestamps; even using seconds since epoch,
1234      * we would still face timezone issues, and have to do a reverse (timezone
1235      * to gmt) translation.
1236      */
1237
1238     /* get to the end of the history list and search backward */
1239     for (nhist = 0; info->history[nhist].level > -1; nhist++) /* empty loop */;
1240     for (i = nhist-1; i > -1; i--) {
1241         char *info_datestamp = get_timestamp_from_time(info->history[i].date);
1242         int order = strcmp(file->datestamp, info_datestamp);
1243         amfree(info_datestamp);
1244
1245         if (order <= 0) {
1246             /* only a match if the levels are equal */
1247             if (info->history[i].level == file->dumplevel) {
1248                 matching_hist_idx = i;
1249             }
1250             break;
1251         }
1252     }
1253
1254     return matching_hist_idx;
1255 }
1256
1257 /* A holding file is 'outdated' if a subsequent dump of the same DLE was made
1258  * at the same level or a lower leve; for example, a level 2 dump is outdated if
1259  * there is a subsequent level 2, or a subsequent level 0.
1260  *
1261  * @param file: the header of the file
1262  * @returns: true if the file is outdated
1263  */
1264 static int
1265 holding_file_is_outdated(
1266     dumpfile_t *file)
1267 {
1268     info_t info;
1269     int matching_hist_idx;
1270
1271     if (get_info(file->name, file->disk, &info) == -1) {
1272         return 0; /* assume it's not outdated */
1273     }
1274
1275     /* if the last level is less than the level of this dump, then
1276      * it's outdated */
1277     if (info.last_level < file->dumplevel)
1278         return 1;
1279
1280     /* otherwise, we need to see if this dump is the last at its level */
1281     matching_hist_idx = holding_file_find_history(&info, file);
1282     if (matching_hist_idx == -1) {
1283         return 0; /* assume it's not outdated */
1284     }
1285
1286     /* compare the date of the history element with the most recent date
1287      * for this level.  If they match, then this is the last dump at this
1288      * level, and we checked above for more recent lower-level dumps, so
1289      * the dump is not outdated. */
1290     if (info.history[matching_hist_idx].date == 
1291         info.inf[info.history[matching_hist_idx].level].date) {
1292         return 0;
1293     } else {
1294         return 1;
1295     }
1296 }
1297
1298 static int
1299 remove_holding_file_from_catalog(
1300     char *filename)
1301 {
1302     static int warnings_printed; /* only print once per invocation */
1303     dumpfile_t file;
1304     info_t info;
1305     int matching_hist_idx = -1;
1306     history_t matching_hist; /* will be a copy */
1307     int i;
1308
1309     if (!holding_file_get_dumpfile(filename, &file)) {
1310         g_printf(_("Could not read holding file %s\n"), filename);
1311         return 0;
1312     }
1313
1314     if (get_info(file.name, file.disk, &info) == -1) {
1315         g_printf(_("WARNING: No curinfo record for %s:%s\n"), file.name, file.disk);
1316         dumpfile_free_data(&file);
1317         return 1; /* not an error */
1318     }
1319
1320     matching_hist_idx = holding_file_find_history(&info, &file);
1321
1322     if (matching_hist_idx == -1) {
1323         g_printf(_("WARNING: No dump matching %s found in curinfo.\n"), filename);
1324         dumpfile_free_data(&file);
1325         return 1; /* not an error */
1326     }
1327
1328     /* make a copy */
1329     matching_hist = info.history[matching_hist_idx];
1330
1331     /* Remove the history element itself before doing the stats */
1332     for (i = matching_hist_idx; i < NB_HISTORY; i++) {
1333         info.history[i] = info.history[i+1];
1334     }
1335     info.history[NB_HISTORY].level = -1;
1336
1337     /* Remove stats for that history element, if necessary.  Doing so
1338      * will result in an inconsistent set of backups, so we warn the
1339      * user and adjust last_level to make the next dump get us a 
1340      * consistent picture. */
1341     if (matching_hist.date == info.inf[matching_hist.level].date) {
1342         /* search for an earlier dump at this level */
1343         for (i = matching_hist_idx; info.history[i].level > -1; i++) {
1344             if (info.history[i].level == matching_hist.level)
1345                 break;
1346         }
1347
1348         if (info.history[i].level < 0) {
1349             /* not found => zero it out */
1350             info.inf[matching_hist.level].date = (time_t)-1; /* flag as not set */
1351             info.inf[matching_hist.level].label[0] = '\0';
1352         } else {
1353             /* found => reconstruct stats as best we can */
1354             info.inf[matching_hist.level].size = info.history[i].size;
1355             info.inf[matching_hist.level].csize = info.history[i].csize;
1356             info.inf[matching_hist.level].secs = info.history[i].secs;
1357             info.inf[matching_hist.level].date = info.history[i].date;
1358             info.inf[matching_hist.level].filenum = 0; /* we don't know */
1359             info.inf[matching_hist.level].label[0] = '\0'; /* we don't know */
1360         }
1361
1362         /* set last_level to the level we just deleted, and set command
1363          * appropriately to make sure planner does a new dump at this level
1364          * or lower */
1365         info.last_level = matching_hist.level;
1366         if (info.last_level == 0) {
1367             g_printf(_("WARNING: Deleting the most recent full dump; forcing a full dump at next run.\n"));
1368             SET(info.command, FORCE_FULL);
1369         } else {
1370             g_printf(_("WARNING: Deleting the most recent level %d dump; forcing a level %d dump or \nWARNING: lower at next run.\n"),
1371                 info.last_level, info.last_level);
1372             SET(info.command, FORCE_NO_BUMP);
1373         }
1374
1375         /* Search for and display any subsequent runs that depended on this one */
1376         warnings_printed = 0;
1377         for (i = matching_hist_idx-1; i >= 0; i--) {
1378             char *datestamp;
1379             if (info.history[i].level <= matching_hist.level) break;
1380
1381             datestamp = get_timestamp_from_time(info.history[i].date);
1382             g_printf(_("WARNING: Level %d dump made %s can no longer be accurately restored.\n"), 
1383                 info.history[i].level, datestamp);
1384             amfree(datestamp);
1385
1386             warnings_printed = 1;
1387         }
1388         if (warnings_printed)
1389             g_printf(_("WARNING: (note, dates shown above are for dumps, and may be later than the\nWARNING: corresponding run date)\n"));
1390     }
1391
1392     /* recalculate consecutive_runs based on the history: find the first run
1393      * at this level, and then count the consecutive runs at that level. This
1394      * number may be zero (if we just deleted the last run at this level) */
1395     info.consecutive_runs = 0;
1396     for (i = 0; info.history[i].level >= 0; i++) {
1397         if (info.history[i].level == info.last_level) break;
1398     }
1399     while (info.history[i+info.consecutive_runs].level == info.last_level)
1400         info.consecutive_runs++;
1401
1402     /* this function doesn't touch the performance stats */
1403
1404     /* write out the changes */
1405     if (put_info(file.name, file.disk, &info) == -1) {
1406         g_printf(_("Could not write curinfo record for %s:%s\n"), file.name, file.disk);
1407         dumpfile_free_data(&file);
1408         return 0;
1409     }
1410
1411     dumpfile_free_data(&file);
1412     return 1;
1413 }
1414
1415 void
1416 holding(
1417     int         argc,
1418     char **     argv)
1419 {
1420     GSList *file_list;
1421     GSList *li;
1422     enum { HOLDING_USAGE, HOLDING_LIST, HOLDING_DELETE } action = HOLDING_USAGE;
1423     int long_list = 0;
1424     int outdated_list = 0;
1425     dumpfile_t file;
1426
1427     if (argc < 4)
1428         action = HOLDING_USAGE;
1429     else if (strcmp(argv[3], "list") == 0 && argc >= 4)
1430         action = HOLDING_LIST;
1431     else if (strcmp(argv[3], "delete") == 0 && argc > 4)
1432         action = HOLDING_DELETE;
1433
1434     switch (action) {
1435         case HOLDING_USAGE:
1436             g_fprintf(stderr,
1437                     _("%s: expecting \"holding list [-l] [-d]\" or \"holding delete <host> [ .. ]\"\n"),
1438                     get_pname());
1439             usage();
1440             return;
1441
1442         case HOLDING_LIST:
1443             argc -= 4; argv += 4;
1444             while (argc && argv[0][0] == '-') {
1445                 switch (argv[0][1]) {
1446                     case 'l': 
1447                         long_list = 1; 
1448                         break;
1449                     case 'd': /* have to use '-d', and not '-o', because of parse_config */
1450                         outdated_list = 1;
1451                         break;
1452                     default:
1453                         g_fprintf(stderr, _("Unknown option -%c\n"), argv[0][1]);
1454                         usage();
1455                         return;
1456                 }
1457                 argc--; argv++;
1458             }
1459
1460             /* header */
1461             if (long_list) {
1462                 g_printf("%-10s %-2s %-4s %s\n", 
1463                     _("size (kB)"), _("lv"), _("outd"), _("dump specification"));
1464             }
1465
1466             file_list = get_file_list(argc, argv, 1);
1467             for (li = file_list; li != NULL; li = li->next) {
1468                 char *dumpstr;
1469                 int is_outdated;
1470
1471                 if (!holding_file_get_dumpfile((char *)li->data, &file)) {
1472                     g_fprintf(stderr, _("Error reading %s\n"), (char *)li->data);
1473                     continue;
1474                 }
1475
1476                 is_outdated = holding_file_is_outdated(&file);
1477
1478                 dumpstr = cmdline_format_dumpspec_components(file.name, file.disk, file.datestamp, NULL);
1479                 /* only print this entry if we're printing everything, or if it's outdated and
1480                  * we're only printing outdated files (-o) */
1481                 if (!outdated_list || is_outdated) {
1482                     if (long_list) {
1483                         g_printf("%-10lld %-2d %-4s %s\n", 
1484                                (long long)holding_file_size((char *)li->data, 0),
1485                                file.dumplevel,
1486                                is_outdated? " *":"",
1487                                dumpstr);
1488                     } else {
1489                         g_printf("%s\n", dumpstr);
1490                     }
1491                 }
1492                 amfree(dumpstr);
1493                 dumpfile_free_data(&file);
1494             }
1495             g_slist_free_full(file_list);
1496             break;
1497
1498         case HOLDING_DELETE:
1499             argc -= 4; argv += 4;
1500
1501             file_list = get_file_list(argc, argv, 0);
1502             for (li = file_list; li != NULL; li = li->next) {
1503                 g_fprintf(stderr, _("Deleting '%s'\n"), (char *)li->data);
1504                 /* remove it from the catalog */
1505                 if (!remove_holding_file_from_catalog((char *)li->data))
1506                     exit(1);
1507
1508                 /* unlink it */
1509                 if (!holding_file_unlink((char *)li->data)) {
1510                     error(_("Could not delete '%s'"), (char *)li->data);
1511                 }
1512             }
1513             g_slist_free_full(file_list);
1514             break;
1515     }
1516 }
1517
1518
1519 /* ------------------------ */
1520
1521
1522 /* shared code with planner.c */
1523
1524 int
1525 bump_thresh(
1526     int         level)
1527 {
1528     int bump = getconf_int(CNF_BUMPSIZE);
1529     double mult = getconf_real(CNF_BUMPMULT);
1530
1531     while(--level)
1532         bump = (int)((double)bump * mult);
1533     return bump;
1534 }
1535
1536 void
1537 bumpsize(
1538     int         argc,
1539     char **     argv)
1540 {
1541     int l;
1542     int conf_bumppercent = getconf_int(CNF_BUMPPERCENT);
1543     double conf_bumpmult = getconf_real(CNF_BUMPMULT);
1544
1545     (void)argc; /* Quiet unused parameter warning */
1546     (void)argv; /* Quiet unused parameter warning */
1547
1548     g_printf(_("Current bump parameters:\n"));
1549     if(conf_bumppercent == 0) {
1550         g_printf(_("  bumpsize %5d KB\t- minimum savings (threshold) to bump level 1 -> 2\n"),
1551                getconf_int(CNF_BUMPSIZE));
1552         g_printf(_("  bumpdays %5d\t- minimum days at each level\n"),
1553                getconf_int(CNF_BUMPDAYS));
1554         g_printf(_("  bumpmult %5.5lg\t- threshold = bumpsize * bumpmult**(level-1)\n\n"),
1555                conf_bumpmult);
1556
1557         g_printf(_("      Bump -> To  Threshold\n"));
1558         for(l = 1; l < 9; l++)
1559             g_printf(_("\t%d  ->  %d  %9d KB\n"), l, l+1, bump_thresh(l));
1560         putchar('\n');
1561     }
1562     else {
1563         double bumppercent = (double)conf_bumppercent;
1564
1565         g_printf(_("  bumppercent %3d %%\t- minimum savings (threshold) to bump level 1 -> 2\n"),
1566                conf_bumppercent);
1567         g_printf(_("  bumpdays %5d\t- minimum days at each level\n"),
1568                getconf_int(CNF_BUMPDAYS));
1569         g_printf(_("  bumpmult %5.5lg\t- threshold = disk_size * bumppercent * bumpmult**(level-1)\n\n"),
1570                conf_bumpmult);
1571         g_printf(_("      Bump -> To  Threshold\n"));
1572         for(l = 1; l < 9; l++) {
1573             g_printf(_("\t%d  ->  %d  %7.2lf %%\n"), l, l+1, bumppercent);
1574             bumppercent *= conf_bumpmult;
1575             if(bumppercent >= 100.000) { bumppercent = 100.0;}
1576         }
1577         putchar('\n');
1578     }
1579 }
1580
1581 /* ----------------------------------------------- */
1582
1583 void export_one(disk_t *dp);
1584
1585 void
1586 export_db(
1587     int         argc,
1588     char **     argv)
1589 {
1590     disk_t *dp;
1591     time_t curtime;
1592     char hostname[MAX_HOSTNAME_LENGTH+1];
1593     int i;
1594
1595     g_printf(_("CURINFO Version %s CONF %s\n"), VERSION, getconf_str(CNF_ORG));
1596
1597     curtime = time(0);
1598     if(gethostname(hostname, SIZEOF(hostname)-1) == -1) {
1599         error(_("could not determine host name: %s\n"), strerror(errno));
1600         /*NOTREACHED*/
1601     }
1602     hostname[SIZEOF(hostname)-1] = '\0';
1603     g_printf(_("# Generated by:\n#    host: %s\n#    date: %s"),
1604            hostname, ctime(&curtime));
1605
1606     g_printf(_("#    command:"));
1607     for(i = 0; i < argc; i++)
1608         g_printf(_(" %s"), argv[i]);
1609
1610     g_printf(_("\n# This file can be merged back in with \"amadmin import\".\n"));
1611     g_printf(_("# Edit only with care.\n"));
1612
1613     if(argc >= 4)
1614         diskloop(argc, argv, "export", export_one);
1615     else for(dp = diskq.head; dp != NULL; dp = dp->next)
1616         export_one(dp);
1617 }
1618
1619 void
1620 export_one(
1621     disk_t *    dp)
1622 {
1623     info_t info;
1624     int i,l;
1625
1626     if(get_info(dp->host->hostname, dp->name, &info)) {
1627         g_fprintf(stderr, _("Warning: no curinfo record for %s:%s\n"),
1628                 dp->host->hostname, dp->name);
1629         return;
1630     }
1631     g_printf(_("host: %s\ndisk: %s\n"), dp->host->hostname, dp->name);
1632     g_printf(_("command: %u\n"), info.command);
1633     g_printf(_("last_level: %d\n"),info.last_level);
1634     g_printf(_("consecutive_runs: %d\n"),info.consecutive_runs);
1635     g_printf(_("full-rate:"));
1636     for(i=0;i<AVG_COUNT;i++) g_printf(_(" %lf"), info.full.rate[i]);
1637     g_printf(_("\nfull-comp:"));
1638     for(i=0;i<AVG_COUNT;i++) g_printf(_(" %lf"), info.full.comp[i]);
1639
1640     g_printf(_("\nincr-rate:"));
1641     for(i=0;i<AVG_COUNT;i++) g_printf(_(" %lf"), info.incr.rate[i]);
1642     g_printf(_("\nincr-comp:"));
1643     for(i=0;i<AVG_COUNT;i++) g_printf(_(" %lf"), info.incr.comp[i]);
1644     g_printf("\n");
1645     for(l=0;l<DUMP_LEVELS;l++) {
1646         if(info.inf[l].date < (time_t)0 && info.inf[l].label[0] == '\0') continue;
1647         g_printf(_("stats: %d %lld %lld %jd %jd %lld %s\n"), l,
1648                (long long)info.inf[l].size,
1649                (long long)info.inf[l].csize,
1650                (intmax_t)info.inf[l].secs,
1651                (intmax_t)info.inf[l].date,
1652                (long long)info.inf[l].filenum,
1653                info.inf[l].label);
1654     }
1655     for(l=0;info.history[l].level > -1;l++) {
1656         g_printf(_("history: %d %lld %lld %jd\n"),
1657                info.history[l].level,
1658                (long long)info.history[l].size,
1659                (long long)info.history[l].csize,
1660                (intmax_t)info.history[l].date);
1661     }
1662     g_printf("//\n");
1663 }
1664
1665 /* ----------------------------------------------- */
1666
1667 int import_one(void);
1668 char *impget_line(void);
1669
1670 void
1671 import_db(
1672     int         argc,
1673     char **     argv)
1674 {
1675     int vers_maj;
1676     int vers_min;
1677     int vers_patch;
1678     int newer;
1679     char *org;
1680     char *line = NULL;
1681     char *hdr;
1682     char *s;
1683     int rc;
1684     int ch;
1685
1686     (void)argc; /* Quiet unused parameter warning */
1687     (void)argv; /* Quiet unused parameter warning */
1688
1689     /* process header line */
1690
1691     if((line = agets(stdin)) == NULL) {
1692         g_fprintf(stderr, _("%s: empty input.\n"), get_pname());
1693         return;
1694     }
1695
1696     s = line;
1697     ch = *s++;
1698
1699     hdr = "version";
1700     if(strncmp_const_skip(s - 1, "CURINFO Version", s, ch) != 0) {
1701         goto bad_header;
1702     }
1703     ch = *s++;
1704     skip_whitespace(s, ch);
1705     if(ch == '\0'
1706        || sscanf(s - 1, "%d.%d.%d", &vers_maj, &vers_min, &vers_patch) != 3) {
1707         goto bad_header;
1708     }
1709
1710     skip_integer(s, ch);                        /* skip over major */
1711     if(ch != '.') {
1712         goto bad_header;
1713     }
1714     ch = *s++;
1715     skip_integer(s, ch);                        /* skip over minor */
1716     if(ch != '.') {
1717         goto bad_header;
1718     }
1719     ch = *s++;
1720     skip_integer(s, ch);                        /* skip over patch */
1721
1722     hdr = "comment";
1723     if(ch == '\0') {
1724         goto bad_header;
1725     }
1726     skip_non_whitespace(s, ch);
1727     s[-1] = '\0';
1728
1729     hdr = "CONF";
1730     skip_whitespace(s, ch);                     /* find the org keyword */
1731     if(ch == '\0' || strncmp_const_skip(s - 1, "CONF", s, ch) != 0) {
1732         goto bad_header;
1733     }
1734     ch = *s++;
1735
1736     hdr = "org";
1737     skip_whitespace(s, ch);                     /* find the org string */
1738     if(ch == '\0') {
1739         goto bad_header;
1740     }
1741     org = s - 1;
1742
1743     /*@ignore@*/
1744     newer = (vers_maj != VERSION_MAJOR)? vers_maj > VERSION_MAJOR :
1745             (vers_min != VERSION_MINOR)? vers_min > VERSION_MINOR :
1746                                          vers_patch > VERSION_PATCH;
1747     if(newer)
1748         g_fprintf(stderr,
1749              _("%s: WARNING: input is from newer Amanda version: %d.%d.%d.\n"),
1750                 get_pname(), vers_maj, vers_min, vers_patch);
1751     /*@end@*/
1752
1753     if(strcmp(org, getconf_str(CNF_ORG)) != 0) {
1754         g_fprintf(stderr, _("%s: WARNING: input is from different org: %s\n"),
1755                 get_pname(), org);
1756     }
1757
1758     do {
1759         rc = import_one();
1760     } while (rc);
1761
1762     amfree(line);
1763     return;
1764
1765  bad_header:
1766
1767     /*@i@*/ amfree(line);
1768     g_fprintf(stderr, _("%s: bad CURINFO header line in input: %s.\n"),
1769             get_pname(), hdr);
1770     g_fprintf(stderr, _("    Was the input in \"amadmin export\" format?\n"));
1771     return;
1772 }
1773
1774
1775 int
1776 import_one(void)
1777 {
1778     info_t info;
1779     stats_t onestat;
1780     int rc, level;
1781     char *line = NULL;
1782     char *s, *fp;
1783     int ch;
1784     int nb_history, i;
1785     char *hostname = NULL;
1786     char *diskname = NULL;
1787     long long off_t_tmp;
1788     long long time_t_tmp;
1789
1790     memset(&info, 0, SIZEOF(info_t));
1791
1792     for(level = 0; level < DUMP_LEVELS; level++) {
1793         info.inf[level].date = (time_t)-1;
1794     }
1795
1796     /* get host: disk: command: lines */
1797
1798     hostname = diskname = NULL;
1799
1800     if((line = impget_line()) == NULL) return 0;        /* nothing there */
1801     s = line;
1802     ch = *s++;
1803
1804     skip_whitespace(s, ch);
1805     if(ch == '\0' || strncmp_const_skip(s - 1, "host:", s, ch) != 0) goto parse_err;
1806     skip_whitespace(s, ch);
1807     if(ch == '\0') goto parse_err;
1808     fp = s-1;
1809     skip_non_whitespace(s, ch);
1810     s[-1] = '\0';
1811     hostname = stralloc(fp);
1812     s[-1] = (char)ch;
1813
1814     skip_whitespace(s, ch);
1815     while (ch == 0) {
1816       amfree(line);
1817       if((line = impget_line()) == NULL) goto shortfile_err;
1818       s = line;
1819       ch = *s++;
1820       skip_whitespace(s, ch);
1821     }
1822     if(strncmp_const_skip(s - 1, "disk:", s, ch) != 0) goto parse_err;
1823     skip_whitespace(s, ch);
1824     if(ch == '\0') goto parse_err;
1825     fp = s-1;
1826     skip_non_whitespace(s, ch);
1827     s[-1] = '\0';
1828     diskname = stralloc(fp);
1829     s[-1] = (char)ch;
1830
1831     amfree(line);
1832     if((line = impget_line()) == NULL) goto shortfile_err;
1833     if(sscanf(line, "command: %u", &info.command) != 1) goto parse_err;
1834
1835     /* get last_level and consecutive_runs */
1836
1837     amfree(line);
1838     if((line = impget_line()) == NULL) goto shortfile_err;
1839     rc = sscanf(line, "last_level: %d", &info.last_level);
1840     if(rc == 1) {
1841         amfree(line);
1842         if((line = impget_line()) == NULL) goto shortfile_err;
1843         if(sscanf(line, "consecutive_runs: %d", &info.consecutive_runs) != 1) goto parse_err;
1844         amfree(line);
1845         if((line = impget_line()) == NULL) goto shortfile_err;
1846     }
1847
1848     /* get rate: and comp: lines for full dumps */
1849
1850     rc = sscanf(line, "full-rate: %lf %lf %lf",
1851                 &info.full.rate[0], &info.full.rate[1], &info.full.rate[2]);
1852     if(rc != 3) goto parse_err;
1853
1854     amfree(line);
1855     if((line = impget_line()) == NULL) goto shortfile_err;
1856     rc = sscanf(line, "full-comp: %lf %lf %lf",
1857                 &info.full.comp[0], &info.full.comp[1], &info.full.comp[2]);
1858     if(rc != 3) goto parse_err;
1859
1860     /* get rate: and comp: lines for incr dumps */
1861
1862     amfree(line);
1863     if((line = impget_line()) == NULL) goto shortfile_err;
1864     rc = sscanf(line, "incr-rate: %lf %lf %lf",
1865                 &info.incr.rate[0], &info.incr.rate[1], &info.incr.rate[2]);
1866     if(rc != 3) goto parse_err;
1867
1868     amfree(line);
1869     if((line = impget_line()) == NULL) goto shortfile_err;
1870     rc = sscanf(line, "incr-comp: %lf %lf %lf",
1871                 &info.incr.comp[0], &info.incr.comp[1], &info.incr.comp[2]);
1872     if(rc != 3) goto parse_err;
1873
1874     /* get stats for dump levels */
1875
1876     while(1) {
1877         amfree(line);
1878         if((line = impget_line()) == NULL) goto shortfile_err;
1879         if(strncmp_const(line, "//") == 0) {
1880             /* end of record */
1881             break;
1882         }
1883         if(strncmp_const(line, "history:") == 0) {
1884             /* end of record */
1885             break;
1886         }
1887         memset(&onestat, 0, SIZEOF(onestat));
1888
1889         s = line;
1890         ch = *s++;
1891
1892         skip_whitespace(s, ch);
1893         if(ch == '\0' || strncmp_const_skip(s - 1, "stats:", s, ch) != 0) {
1894             goto parse_err;
1895         }
1896
1897         skip_whitespace(s, ch);
1898         if(ch == '\0' || sscanf(s - 1, "%d", &level) != 1) {
1899             goto parse_err;
1900         }
1901         skip_integer(s, ch);
1902
1903         skip_whitespace(s, ch);
1904         if(ch == '\0' || sscanf(s - 1, "%lld", &off_t_tmp) != 1) {
1905             goto parse_err;
1906         }
1907         onestat.size = (off_t)off_t_tmp;
1908         skip_integer(s, ch);
1909
1910         skip_whitespace(s, ch);
1911         if(ch == '\0' || sscanf(s - 1, "%lld", &off_t_tmp) != 1) {
1912             goto parse_err;
1913         }
1914         onestat.csize = (off_t)off_t_tmp;
1915         skip_integer(s, ch);
1916
1917         skip_whitespace(s, ch);
1918         if(ch == '\0' || sscanf(s - 1, "%lld", &time_t_tmp) != 1) {
1919             goto parse_err;
1920         }
1921         onestat.secs = (time_t)time_t_tmp;
1922         skip_integer(s, ch);
1923
1924         skip_whitespace(s, ch);
1925         if(ch == '\0' || sscanf(s - 1, "%lld", &time_t_tmp) != 1) {
1926             goto parse_err;
1927         }
1928         /* time_t not guarranteed to be long */
1929         /*@i1@*/ onestat.date = (time_t)time_t_tmp;
1930         skip_integer(s, ch);
1931
1932         skip_whitespace(s, ch);
1933         if(ch != '\0') {
1934             if(sscanf(s - 1, "%lld", &off_t_tmp) != 1) {
1935                 goto parse_err;
1936             }
1937             onestat.filenum = (off_t)off_t_tmp;
1938             skip_integer(s, ch);
1939
1940             skip_whitespace(s, ch);
1941             if(ch == '\0') {
1942                 if (onestat.filenum != 0)
1943                     goto parse_err;
1944                 onestat.label[0] = '\0';
1945             } else {
1946                 strncpy(onestat.label, s - 1, SIZEOF(onestat.label)-1);
1947                 onestat.label[SIZEOF(onestat.label)-1] = '\0';
1948             }
1949         }
1950
1951         if(level < 0 || level > 9) goto parse_err;
1952
1953         info.inf[level] = onestat;
1954     }
1955     nb_history = 0;
1956     for(i=0;i<=NB_HISTORY;i++) {
1957         info.history[i].level = -2;
1958     }
1959     while(1) {
1960         history_t onehistory;
1961
1962         if(line[0] == '/' && line[1] == '/') {
1963             info.history[nb_history].level = -2;
1964             rc = 0;
1965             break;
1966         }
1967         memset(&onehistory, 0, SIZEOF(onehistory));
1968         s = line;
1969         ch = *s++;
1970         if(strncmp_const_skip(line, "history:", s, ch) != 0) {
1971             break;
1972         }
1973
1974         skip_whitespace(s, ch);
1975         if(ch == '\0' || sscanf((s - 1), "%d", &onehistory.level) != 1) {
1976             break;
1977         }
1978         skip_integer(s, ch);
1979
1980         skip_whitespace(s, ch);
1981         if(ch == '\0' || sscanf((s - 1), "%lld", &off_t_tmp) != 1) {
1982             break;
1983         }
1984         onehistory.size = (off_t)off_t_tmp;
1985         skip_integer(s, ch);
1986
1987         skip_whitespace(s, ch);
1988         if(ch == '\0' || sscanf((s - 1), "%lld", &off_t_tmp) != 1) {
1989             break;
1990         }
1991         onehistory.csize = (off_t)off_t_tmp;
1992         skip_integer(s, ch);
1993
1994         skip_whitespace(s, ch);
1995         if((ch == '\0') || sscanf((s - 1), "%lld", &time_t_tmp) != 1) {
1996             break;
1997         }
1998         /* time_t not guarranteed to be long */
1999         /*@i1@*/ onehistory.date = (time_t)time_t_tmp;
2000         skip_integer(s, ch);
2001
2002         info.history[nb_history++] = onehistory;
2003         amfree(line);
2004         if((line = impget_line()) == NULL) goto shortfile_err;
2005     }
2006     /*@i@*/ amfree(line);
2007
2008     /* got a full record, now write it out to the database */
2009
2010     if(put_info(hostname, diskname, &info)) {
2011         g_fprintf(stderr, _("%s: error writing record for %s:%s\n"),
2012                 get_pname(), hostname, diskname);
2013     }
2014     amfree(hostname);
2015     amfree(diskname);
2016     return 1;
2017
2018  parse_err:
2019     /*@i@*/ amfree(line);
2020     amfree(hostname);
2021     amfree(diskname);
2022     g_fprintf(stderr, _("%s: parse error reading import record.\n"), get_pname());
2023     return 0;
2024
2025  shortfile_err:
2026     /*@i@*/ amfree(line);
2027     amfree(hostname);
2028     amfree(diskname);
2029     g_fprintf(stderr, _("%s: short file reading import record.\n"), get_pname());
2030     return 0;
2031 }
2032
2033 char *
2034 impget_line(void)
2035 {
2036     char *line;
2037     char *s;
2038     int ch;
2039
2040     for(; (line = agets(stdin)) != NULL; free(line)) {
2041         s = line;
2042         ch = *s++;
2043
2044         skip_whitespace(s, ch);
2045         if(ch == '#') {
2046             /* ignore comment lines */
2047             continue;
2048         } else if(ch) {
2049             /* found non-blank, return line */
2050             return line;
2051         }
2052         /* otherwise, a blank line, so keep going */
2053     }
2054     if(ferror(stdin)) {
2055         g_fprintf(stderr, _("%s: reading stdin: %s\n"),
2056                 get_pname(), strerror(errno));
2057     }
2058     return NULL;
2059 }
2060
2061 /* ----------------------------------------------- */
2062
2063 void
2064 disklist_one(
2065     disk_t *    dp)
2066 {
2067     am_host_t *hp;
2068     netif_t *ip;
2069     sle_t *excl;
2070     identlist_t pp_scriptlist;
2071     estimatelist_t  estimates;
2072
2073     hp = dp->host;
2074     ip = hp->netif;
2075
2076     g_printf("line %d:\n", dp->line);
2077
2078     g_printf("    host %s:\n", hp->hostname);
2079     g_printf("        interface %s\n",
2080            interface_name(ip->config)[0] ? interface_name(ip->config) : "default");
2081     g_printf("    disk %s:\n", dp->name);
2082     if (dp->device) g_printf("        device %s\n", dp->device);
2083
2084     g_printf("        program \"%s\"\n", dp->program);
2085     if (dp->application)
2086         g_printf("        application \"%s\"\n", dp->application);
2087     g_printf("        data-path %s\n", data_path_to_string(dp->data_path));
2088     if (dp->exclude_file != NULL && dp->exclude_file->nb_element > 0) {
2089         g_printf("        exclude file");
2090         for(excl = dp->exclude_file->first; excl != NULL; excl = excl->next) {
2091             g_printf(" \"%s\"", excl->name);
2092         }
2093         g_printf("\n");
2094     }
2095     if (dp->exclude_list != NULL && dp->exclude_list->nb_element > 0) {
2096         g_printf("        exclude list");
2097         if(dp->exclude_optional) g_printf(" optional");
2098         for(excl = dp->exclude_list->first; excl != NULL; excl = excl->next) {
2099             g_printf(" \"%s\"", excl->name);
2100         }
2101         g_printf("\n");
2102     }
2103     if (dp->include_file != NULL && dp->include_file->nb_element > 0) {
2104         g_printf("        include file");
2105         for(excl = dp->include_file->first; excl != NULL; excl = excl->next) {
2106             g_printf(" \"%s\"", excl->name);
2107         }
2108         g_printf("\n");
2109     }
2110     if (dp->include_list != NULL && dp->include_list->nb_element > 0) {
2111         g_printf("        include list");
2112         if (dp->include_optional) g_printf(" optional");
2113         for(excl = dp->include_list->first; excl != NULL; excl = excl->next) {
2114             g_printf(" \"%s\"", excl->name);
2115         }
2116         g_printf("\n");
2117     }
2118     g_printf("        priority %d\n", dp->priority);
2119     g_printf("        dumpcycle %d\n", dp->dumpcycle);
2120     g_printf("        maxdumps %d\n", dp->maxdumps);
2121     g_printf("        maxpromoteday %d\n", dp->maxpromoteday);
2122     if (dp->bumppercent > 0) {
2123         g_printf("        bumppercent %d\n", dp->bumppercent);
2124     }
2125     else {
2126         g_printf("        bumpsize %lld\n",
2127                 (long long)dp->bumpsize);
2128     }
2129     g_printf("        bumpdays %d\n", dp->bumpdays);
2130     g_printf("        bumpmult %lf\n", dp->bumpmult);
2131
2132     g_printf("        strategy ");
2133     switch(dp->strategy) {
2134     case DS_SKIP:
2135         g_printf("SKIP\n");
2136         break;
2137     case DS_STANDARD:
2138         g_printf("STANDARD\n");
2139         break;
2140     case DS_NOFULL:
2141         g_printf("NOFULL\n");
2142         break;
2143     case DS_NOINC:
2144         g_printf("NOINC\n");
2145         break;
2146     case DS_HANOI:
2147         g_printf("HANOI\n");
2148         break;
2149     case DS_INCRONLY:
2150         g_printf("INCRONLY\n");
2151         break;
2152     }
2153     g_printf("        ignore %s\n", (dp->ignore? "YES" : "NO"));
2154     g_printf("        estimate ");
2155     estimates = dp->estimatelist;
2156     while (estimates) {
2157         switch((estimate_t)GPOINTER_TO_INT(estimates->data)) {
2158         case ES_CLIENT:
2159             g_printf("CLIENT");
2160             break;
2161         case ES_SERVER:
2162             g_printf("SERVER");
2163             break;
2164         case ES_CALCSIZE:
2165             g_printf("CALCSIZE");
2166             break;
2167         case ES_ES:
2168             break;
2169         }
2170         estimates = estimates->next;
2171         if (estimates)
2172             g_printf(", ");
2173     }
2174     g_printf("\n");
2175
2176     g_printf("        compress ");
2177     switch(dp->compress) {
2178     case COMP_NONE:
2179         g_printf("NONE\n");
2180         break;
2181     case COMP_FAST:
2182         g_printf("CLIENT FAST\n");
2183         break;
2184     case COMP_BEST:
2185         g_printf("CLIENT BEST\n");
2186         break;
2187     case COMP_CUST:
2188         g_printf("CLIENT CUSTOM\n");
2189         g_printf("        client-custom-compress \"%s\"\n",
2190                     dp->clntcompprog? dp->clntcompprog : "");
2191         break;
2192     case COMP_SERVER_FAST:
2193         g_printf("SERVER FAST\n");
2194         break;
2195     case COMP_SERVER_BEST:
2196         g_printf("SERVER BEST\n");
2197         break;
2198     case COMP_SERVER_CUST:
2199         g_printf("SERVER CUSTOM\n");
2200         g_printf("        server-custom-compress \"%s\"\n",
2201                     dp->srvcompprog? dp->srvcompprog : "");
2202         break;
2203     }
2204     if(dp->compress != COMP_NONE) {
2205         g_printf("        comprate %.2lf %.2lf\n",
2206                dp->comprate[0], dp->comprate[1]);
2207     }
2208
2209     g_printf("        encrypt ");
2210     switch(dp->encrypt) {
2211     case ENCRYPT_NONE:
2212         g_printf("NONE\n");
2213         break;
2214     case ENCRYPT_CUST:
2215         g_printf("CLIENT\n");
2216         g_printf("        client-encrypt \"%s\"\n",
2217                     dp->clnt_encrypt? dp->clnt_encrypt : "");
2218         g_printf("        client-decrypt-option \"%s\"\n",
2219                     dp->clnt_decrypt_opt? dp->clnt_decrypt_opt : "");
2220         break;
2221     case ENCRYPT_SERV_CUST:
2222         g_printf("SERVER\n");
2223         g_printf("        server-encrypt \"%s\"\n",
2224                     dp->srv_encrypt? dp->srv_encrypt : "");
2225         g_printf("        server-decrypt-option \"%s\"\n",
2226                     dp->srv_decrypt_opt? dp->srv_decrypt_opt : "");
2227         break;
2228     }
2229
2230     g_printf("        auth \"%s\"\n", dp->auth);
2231     g_printf("        kencrypt %s\n", (dp->kencrypt? "YES" : "NO"));
2232     g_printf("        amandad-path \"%s\"\n", dp->amandad_path);
2233     g_printf("        client-username \"%s\"\n", dp->client_username);
2234     g_printf("        client-port \"%s\"\n", dp->client_port);
2235     g_printf("        ssh-keys \"%s\"\n", dp->ssh_keys);
2236
2237     g_printf("        holdingdisk ");
2238     switch(dp->to_holdingdisk) {
2239     case HOLD_NEVER:
2240         g_printf("NEVER\n");
2241         break;
2242     case HOLD_AUTO:
2243         g_printf("AUTO\n");
2244         break;
2245     case HOLD_REQUIRED:
2246         g_printf("REQUIRED\n");
2247         break;
2248     }
2249
2250     g_printf("        record %s\n", (dp->record? "YES" : "NO"));
2251     g_printf("        index %s\n", (dp->index? "YES" : "NO"));
2252     g_printf("        starttime %04d\n", (int)dp->starttime);
2253     if(dp->tape_splitsize > (off_t)0) {
2254         g_printf("        tape-splitsize %lld\n",
2255                (long long)dp->tape_splitsize);
2256     }
2257     if(dp->split_diskbuffer) {
2258         g_printf("        split-diskbuffer %s\n", dp->split_diskbuffer);
2259     }
2260     if(dp->fallback_splitsize > (off_t)0) {
2261         g_printf("        fallback-splitsize %lldMb\n",
2262                (long long)(dp->fallback_splitsize / (off_t)1024));
2263     }
2264     g_printf("        skip-incr %s\n", (dp->skip_incr? "YES" : "NO"));
2265     g_printf("        skip-full %s\n", (dp->skip_full? "YES" : "NO"));
2266     g_printf("        allow-split %s\n", (dp->allow_split ? "YES" : "NO"));
2267     g_printf("        spindle %d\n", dp->spindle);
2268     pp_scriptlist = dp->pp_scriptlist;
2269     while (pp_scriptlist != NULL) {
2270         g_printf("        script \"%s\"\n", (char *)pp_scriptlist->data);
2271         pp_scriptlist = pp_scriptlist->next;
2272     }
2273
2274     {
2275         dumptype_t *dtype;
2276         char **prop, **p1;;
2277
2278         dtype = lookup_dumptype(dp->dtype_name);
2279         prop = val_t_display_strs(dumptype_getconf((dtype), DUMPTYPE_PROPERTY),
2280                                   0);
2281         for(p1 = prop; *p1 != NULL; p1++) {
2282             g_printf("        property %s\n", *p1);
2283             free(*p1);
2284         }
2285         amfree(prop);
2286     }
2287
2288     g_printf("\n");
2289 }
2290
2291 void
2292 disklist(
2293     int         argc,
2294     char **     argv)
2295 {
2296     disk_t *dp;
2297
2298     if(argc >= 4)
2299         diskloop(argc, argv, "disklist", disklist_one);
2300     else
2301         for(dp = diskq.head; dp != NULL; dp = dp->next)
2302             disklist_one(dp);
2303 }
2304
2305 /* ----------------------------------------------- */
2306
2307 void
2308 hosts(
2309     int         argc G_GNUC_UNUSED,
2310     char **     argv G_GNUC_UNUSED)
2311 {
2312     disk_t *dp;
2313     gint sentinel = 1;
2314     GHashTable *seen = g_hash_table_new(g_str_hash, g_str_equal);
2315
2316     /* enumerate all hosts, skipping those that have been seen (since
2317      * there may be more than one DLE on a host */
2318     for(dp = diskq.head; dp != NULL; dp = dp->next) {
2319         char *hostname = dp->host->hostname;
2320         if (g_hash_table_lookup(seen, hostname))
2321             continue;
2322         g_printf("%s\n", hostname);
2323         g_hash_table_insert(seen, hostname, &sentinel);
2324     }
2325     g_hash_table_destroy(seen);
2326 }
2327
2328 /* ----------------------------------------------- */
2329
2330 void
2331 dles(
2332     int         argc G_GNUC_UNUSED,
2333     char **     argv G_GNUC_UNUSED)
2334 {
2335     disk_t *dp;
2336
2337     for(dp = diskq.head; dp != NULL; dp = dp->next)
2338         g_printf("%s %s\n", dp->host->hostname, dp->name);
2339 }
2340
2341 /* ----------------------------------------------- */
2342
2343 void
2344 show_version(
2345     int         argc,
2346     char **     argv)
2347 {
2348     int i;
2349
2350     (void)argc; /* Quiet unused parameter warning */
2351     (void)argv; /* Quiet unused parameter warning */
2352
2353     for(i = 0; version_info[i] != NULL; i++)
2354         g_printf("%s", version_info[i]);
2355 }
2356
2357
2358 void show_config(
2359     int argc G_GNUC_UNUSED,
2360     char **argv G_GNUC_UNUSED)
2361 {
2362     dump_configuration();
2363 }
2364