comerr-rename-20070410
[openafs.git] / src / bucoord / commands.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13 RCSID
14     ("$Header$");
15
16 #include <afs/stds.h>
17 #if defined(AFS_LINUX24_ENV)
18 #define _REGEX_RE_COMP
19 #endif
20 #include <sys/types.h>
21 #if defined(AFS_LINUX24_ENV)
22 #include <regex.h>
23 #endif
24 #include <afs/cmd.h>
25 #ifdef AFS_NT40_ENV
26 #include <winsock2.h>
27 #else
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <netdb.h>
31 #endif
32 #include <errno.h>
33 #include <afs/com_err.h>
34 #include <afs/budb.h>
35 #include <afs/butc.h>
36 #include <afs/bubasics.h>       /* PA */
37 #include <afs/volser.h>
38 #include <afs/voldefs.h>        /* PA */
39 #include <afs/vldbint.h>        /* PA */
40 #include <afs/ktime.h>          /* PA */
41 #include <time.h>
42
43 #include <lock.h>
44 #include <afs/butc.h>
45 #include <afs/tcdata.h>
46 #include <afs/butx.h>
47 #include "bc.h"
48 #include "error_macros.h"
49
50
51 extern struct bc_config *bc_globalConfig;
52 extern struct bc_dumpSchedule *bc_FindDumpSchedule();
53 extern struct bc_volumeSet *bc_FindVolumeSet(struct bc_config *cfg,
54                                              char *name);
55 extern struct bc_dumpTask bc_dumpTasks[BC_MAXSIMDUMPS];
56 extern struct ubik_client *cstruct;
57 extern int bc_Dumper();         /* function to do dumps */
58 extern int bc_Restorer();       /* function to do restores */
59 extern char *whoami;
60 extern struct ktc_token ttoken;
61 extern char *tailCompPtr();
62 extern statusP createStatusNode();
63
64 char *loadFile;
65 extern afs_int32 lastTaskCode;
66
67 #define HOSTADDR(sockaddr) (sockaddr)->sin_addr.s_addr
68
69 int
70 bc_EvalVolumeSet(aconfig, avs, avols, uclient)
71      struct bc_config *aconfig;
72      register struct bc_volumeSet *avs;
73      struct bc_volumeDump **avols;
74      struct ubik_client *uclient;
75 {                               /*bc_EvalVolumeSet */
76     int code;
77     static afs_int32 use = 2;
78
79     if (use == 2) {             /* Use EvalVolumeSet2() */
80         code = EvalVolumeSet2(aconfig, avs, avols, uclient);
81         if (code == RXGEN_OPCODE)
82             use = 1;
83     }
84     if (use == 1) {             /* Use EvalVolumeSet1() */
85         code = EvalVolumeSet1(aconfig, avs, avols, uclient);
86     }
87     return code;
88 }                               /*bc_EvalVolumeSet */
89
90 struct partitionsort {
91     afs_int32 part;
92     struct bc_volumeDump *vdlist;
93     struct bc_volumeDump *lastvdlist;
94     struct bc_volumeDump *dupvdlist;
95     struct bc_volumeEntry *vole;
96     struct partitionsort *next;
97 };
98 struct serversort {
99     afs_uint32 ipaddr;
100     struct partitionsort *partitions;
101     struct serversort *next;
102 };
103
104 afs_int32
105 getSPEntries(server, partition, serverlist, ss, ps)
106      afs_uint32 server;
107      afs_int32 partition;
108      struct serversort **serverlist, **ss;
109      struct partitionsort **ps;
110 {
111     if (!(*ss) || ((*ss)->ipaddr != server)) {
112         *ps = 0;
113         for ((*ss) = *serverlist; (*ss); *ss = (*ss)->next) {
114             if ((*ss)->ipaddr == server)
115                 break;
116         }
117     }
118     /* No server entry added. Add one */
119     if (!(*ss)) {
120         *ss = (struct serversort *)malloc(sizeof(struct serversort));
121         if (!(*ss)) {
122             afs_com_err(whoami, BC_NOMEM, "");
123             *ss = 0;
124             return (BC_NOMEM);
125         }
126         memset(*ss, 0, sizeof(struct serversort));
127         (*ss)->ipaddr = server;
128         (*ss)->next = *serverlist;
129         *serverlist = *ss;
130     }
131
132
133     if (!(*ps) || ((*ps)->part != partition)) {
134         for (*ps = (*ss)->partitions; *ps; *ps = (*ps)->next) {
135             if ((*ps)->part == partition)
136                 break;
137         }
138     }
139     /* No partition entry added. Add one */
140     if (!(*ps)) {
141         *ps = (struct partitionsort *)malloc(sizeof(struct partitionsort));
142         if (!(*ps)) {
143             afs_com_err(whoami, BC_NOMEM, "");
144             free(*ss);
145             *ps = 0;
146             *ss = 0;
147             return (BC_NOMEM);
148         }
149         memset(*ps, 0, sizeof(struct partitionsort));
150         (*ps)->part = partition;
151         (*ps)->next = (*ss)->partitions;
152         (*ss)->partitions = *ps;
153     }
154     return 0;
155 }
156
157 afs_int32
158 randSPEntries(serverlist, avols)
159      struct serversort *serverlist;
160      struct bc_volumeDump **avols;
161 {
162     struct serversort *ss, **pss;
163     struct partitionsort *ps, **pps;
164     afs_int32 r;
165     afs_int32 scount, pcount;
166
167     *avols = 0;
168
169     /* Seed random number generator */
170     r = time(0) + getpid();
171     srand(r);
172
173     /* Count number of servers, remove one at a time */
174     for (scount = 0, ss = serverlist; ss; ss = ss->next, scount++);
175     for (; scount; scount--) {
176         /* Pick a random server in list and remove it */
177         r = (rand() >> 4) % scount;
178         for (pss = &serverlist, ss = serverlist; r;
179              pss = &ss->next, ss = ss->next, r--);
180         *pss = ss->next;
181
182         /* Count number of partitions, remove one at a time */
183         for (pcount = 0, ps = ss->partitions; ps; ps = ps->next, pcount++);
184         for (; pcount; pcount--) {
185             /* Pick a random parition in list and remove it */
186             r = (rand() >> 4) % pcount;
187             for (pps = &ss->partitions, ps = ss->partitions; r;
188                  pps = &ps->next, ps = ps->next, r--);
189             *pps = ps->next;
190
191             ps->lastvdlist->next = *avols;
192             *avols = ps->vdlist;
193             free(ps);
194         }
195         free(ss);
196     }
197     return 0;
198 }
199
200 int
201 EvalVolumeSet2(aconfig, avs, avols, uclient)
202      struct bc_config *aconfig;
203      struct bc_volumeSet *avs;
204      struct bc_volumeDump **avols;
205      struct ubik_client *uclient;
206 {                               /*EvalVolumeSet2 */
207     struct bc_volumeEntry *tve;
208     struct bc_volumeDump *tavols;
209     struct VldbListByAttributes attributes;
210     afs_int32 si, nsi;          /* startIndex and nextStartIndex */
211     afs_int32 nentries, e, ei, et, add, l;
212     nbulkentries bulkentries;
213     struct nvldbentry *entries = 0;
214     struct bc_volumeDump *tvd;
215     afs_int32 code = 0, tcode;
216     afs_int32 count = 0;
217     struct serversort *servers = 0, *lastserver = 0, *ss = 0;
218     struct partitionsort *ps = 0;
219
220     *avols = (struct bc_volumeDump *)0;
221     bulkentries.nbulkentries_len = 0;
222     bulkentries.nbulkentries_val = 0;
223
224     /* For each of the volume set entries - collect the volumes that match it */
225     for (tve = avs->ventries; tve; tve = tve->next) {
226         /* Put together a call to the vlserver for this vlentry. The 
227          * performance gain is from letting the vlserver expand the
228          * volumeset and not this routine.
229          */
230         attributes.Mask = 0;
231         if (tve->server.sin_addr.s_addr) {      /* The server */
232             attributes.Mask |= VLLIST_SERVER;
233             attributes.server = tve->server.sin_addr.s_addr;
234         }
235         if (tve->partition != -1) {     /* The partition */
236             attributes.Mask |= VLLIST_PARTITION;
237             attributes.partition = tve->partition;
238         }
239
240         /* Now make the call to the vlserver */
241         for (si = 0; si != -1; si = nsi) {
242             nentries = 0;
243             bulkentries.nbulkentries_len = 0;
244             bulkentries.nbulkentries_val = 0;
245             nsi = -1;
246             tcode =
247                 ubik_Call(VL_ListAttributesN2, uclient, 0, &attributes,
248                           tve->name, si, &nentries, &bulkentries, &nsi);
249             if (tcode)
250                 ERROR(tcode);
251
252             /* The 3.4 vlserver has a VL_ListAttributesN2() RPC call, but
253              * it is not complete. The only way to tell if it is not complete
254              * is if et == 0 (which we check for below). Also, if the call didn't
255              * match any entries, then we don't know what version the vlserver
256              * is. In both cases, we return RXGEN_OPCODE and the calling routine
257              * will switch to the EvalVolumeSet1() call.
258              */
259             if (nentries == 0)
260                 ERROR(RXGEN_OPCODE);    /* Use EvalVolumeSet1 */
261
262             /* Step through each entry and add it to the list of volumes */
263             entries = bulkentries.nbulkentries_val;
264             for (e = 0; e < nentries; e++) {
265                 ei = entries[e].matchindex & 0xffff;
266                 et = (entries[e].matchindex >> 16) & 0xffff;
267                 switch (et) {
268                 case ITSRWVOL:{
269                         et = RWVOL;
270                         break;
271                     }
272                 case ITSBACKVOL:{
273                         et = BACKVOL;
274                         break;
275                     }
276                 case ITSROVOL:{
277                         et = ROVOL;
278                         break;
279                     }
280                 default:
281                     ERROR(RXGEN_OPCODE);        /* Use EvalVolumeSet1 */
282                 }
283
284                 /* Find server and partiton structure to hang the entry off of */
285                 tcode =
286                     getSPEntries(entries[e].serverNumber[ei],
287                                  entries[e].serverPartition[ei], &servers,
288                                  &ss, &ps);
289                 if (tcode) {
290                     afs_com_err(whoami, tcode, "");
291                     ERROR(tcode);
292                 }
293
294                 /* Detect if this entry should be added (not a duplicate).
295                  * Use ps->dupvdlist and ps->vole to only search volumes from
296                  * previous volume set entries.
297                  */
298                 add = 1;
299                 if (tve != avs->ventries) {
300                     l = strlen(entries[e].name);
301                     if (ps->vole != tve) {
302                         ps->vole = tve;
303                         ps->dupvdlist = ps->vdlist;
304                     }
305                     for (tavols = ps->dupvdlist; add && tavols;
306                          tavols = tavols->next) {
307                         if (strncmp(tavols->name, entries[e].name, l) == 0) {
308                             if ((strcmp(&entries[e].name[l], ".backup") == 0)
309                                 || (strcmp(&entries[e].name[l], ".readonly")
310                                     == 0)
311                                 || (strcmp(&entries[e].name[l], "") == 0))
312                                 add = 0;
313                         }
314                     }
315                 }
316
317                 if (add) {
318                     /* Allocate a volume dump structure and its name */
319                     tvd = (struct bc_volumeDump *)
320                         malloc(sizeof(struct bc_volumeDump));
321                     if (!tvd) {
322                         afs_com_err(whoami, BC_NOMEM, "");
323                         ERROR(BC_NOMEM);
324                     }
325                     memset(tvd, 0, sizeof(*tvd));
326
327                     tvd->name = (char *)malloc(strlen(entries[e].name) + 10);
328                     if (!(tvd->name)) {
329                         afs_com_err(whoami, BC_NOMEM, "");
330                         free(tvd);
331                         ERROR(BC_NOMEM);
332                     }
333
334                     /* Fill it in and thread onto avols list */
335                     strcpy(tvd->name, entries[e].name);
336                     if (et == BACKVOL)
337                         strcat(tvd->name, ".backup");
338                     else if (et == ROVOL)
339                         strcat(tvd->name, ".readonly");
340                     tvd->vid = entries[e].volumeId[et];
341                     tvd->entry = tve;
342                     tvd->volType = et;
343                     tvd->partition = entries[e].serverPartition[ei];
344                     tvd->server.sin_addr.s_addr = entries[e].serverNumber[ei];
345                     tvd->server.sin_port = 0;   /* default FS port */
346                     tvd->server.sin_family = AF_INET;
347 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
348                     tvd->server.sin_len = sizeof(struct sockaddr_in);
349 #endif
350
351                     /* String tvd off of partition struct */
352                     tvd->next = ps->vdlist;
353                     ps->vdlist = tvd;
354                     if (!tvd->next)
355                         ps->lastvdlist = tvd;
356
357                     count++;
358                 }
359             }
360
361             /* Free memory allocated during VL call */
362             if (bulkentries.nbulkentries_val) {
363                 free((char *)bulkentries.nbulkentries_val);
364                 bulkentries.nbulkentries_val = 0;
365                 entries = 0;
366             }
367         }
368     }
369
370     /* Randomly link the volumedump entries together */
371     randSPEntries(servers, avols);
372     fprintf(stderr, "Total number of volumes : %u\n", count);
373
374   error_exit:
375     if (bulkentries.nbulkentries_val) {
376         free((char *)bulkentries.nbulkentries_val);
377     }
378     return (code);
379 }                               /*EvalVolumeSet2 */
380
381 /*-----------------------------------------------------------------------------
382  * EvalVolumeSetOld
383  *
384  * Description:
385  *      Takes the entries in a volumeset and expands them into a list of 
386  *      volumes. Every VLDB volume entry is looked at and compared to the
387  *      volumeset entries.
388  *
389  *      When matching a VLDB volume entry to a volumeset entry, 
390  *       1. If the RW volume entry matches, that RW volume is used.
391  *       2. Otherwise, if the BK volume entry matches, the BK volume is used.
392  *       3. Finally, if the RO volume entry matches, the RO volume is used.
393  *      For instance: A volumeset entry of ".* .* user.t.*" will match volume 
394  *                    "user.troy" and "user.troy.backup". The rules will use 
395  *                    the RW volume "user.troy".
396  *
397  *      When a VLDB volume entry matches a volumeset entry (be it RW, BK or RO),
398  *      that volume is used and matches against any remaining volumeset entries 
399  *      are not even done.
400  *      For instance: A 1st volumeset entry ".* .* .*.backup" will match with
401  *                    "user.troy.backup". Its 2nd volumeset entry ".* .* .*" 
402  *                    would have matched its RW volume "user.troy", but the first 
403  *                    match is used and the second match isn't even done.
404  *
405  * Arguments:
406  *      aconfig : Global configuration info.
407  *      avs     : 
408  *      avols   : Ptr to linked list of entries describing volumes to dump.
409  *      uclient : Ptr to Ubik client structure.
410  *
411  * Returns:
412  *      0 on successful volume set evaluation,
413  *      Lower-level codes otherwise.
414  *
415  * Environment:
416  *      Expand only the single volume set provided (avs); don't go down its chain.
417  *
418  * Side Effects:
419  *      None.
420  *-----------------------------------------------------------------------------
421  */
422 int
423 EvalVolumeSet1(aconfig, avs, avols, uclient)
424      struct bc_config *aconfig;
425      struct bc_volumeSet *avs;
426      struct bc_volumeDump **avols;
427      struct ubik_client *uclient;
428 {                               /*EvalVolumeSet1 */
429     afs_int32 code;             /*Result of various calls */
430     char *errm;
431     struct bc_volumeDump *tvd;  /*Ptr to new dump instance */
432     struct bc_volumeEntry *tve, *ctve;  /*Ptr to new volume entry instance */
433     char patt[256];             /*Composite regex; also, target string */
434     int volType;                /*Type of volume that worked */
435     afs_int32 index;            /*Current VLDB entry index */
436     afs_int32 count;            /*Needed by VL_ListEntry() */
437     afs_int32 next_index;       /*Next index to list */
438     struct vldbentry entry;     /*VLDB entry */
439     int srvpartpair;            /*Loop counter: server/partition pair */
440     afs_int32 total = 0;
441     int found, foundentry;
442     struct serversort *servers = 0, *ss = 0;
443     struct partitionsort *ps = 0;
444
445     *avols = (struct bc_volumeDump *)0;
446     ctve = (struct bc_volumeEntry *)0;  /* no compiled entry */
447
448     /* For each vldb entry.
449      * Variable next_index is set to the index of the next VLDB entry
450      * in the enumeration.
451      */
452     for (index = 0; 1; index = next_index) {    /*w */
453         memset(&entry, 0, sizeof(entry));
454         code = ubik_Call(VL_ListEntry,  /*Routine to invoke */
455                          uclient,       /*Ubik client structure */
456                          0,     /*Ubik flags */
457                          index, /*Current index */
458                          &count,        /*Ptr to working variable */
459                          &next_index,   /*Ptr to next index value to list */
460                          &entry);       /*Ptr to entry to fill */
461         if (code)
462             return code;
463         if (!next_index)
464             break;              /* If the next index is invalid, bail out now. */
465
466         /* For each entry in the volume set */
467         found = 0;              /* No match in volume set yet */
468         for (tve = avs->ventries; tve; tve = tve->next) {       /*ve */
469             /* for each server in the vldb entry */
470             for (srvpartpair = 0; srvpartpair < entry.nServers; srvpartpair++) {        /*s */
471                 /* On the same server */
472                 if (tve->server.sin_addr.s_addr
473                     && !VLDB_IsSameAddrs(tve->server.sin_addr.s_addr,
474                                          entry.serverNumber[srvpartpair],
475                                          &code)) {
476                     if (code)
477                         return (code);
478                     continue;
479                 }
480
481
482                 /* On the same partition */
483                 if ((tve->partition != -1)
484                     && (tve->partition != entry.serverPartition[srvpartpair]))
485                     continue;
486
487                 /* If the volume entry is not compiled, then compile it */
488                 if (ctve != tve) {
489                     sprintf(patt, "^%s$", tve->name);
490                     errm = (char *)re_comp(patt);
491                     if (errm) {
492                         afs_com_err(whoami, 0,
493                                 "Can't compile regular expression '%s': %s",
494                                 patt, errm);
495                         return (-1);
496                     }
497                     ctve = tve;
498                 }
499
500                 /* If the RW name matches the volume set entry, take
501                  * it and exit. First choice is to use the RW volume.
502                  */
503                 if (entry.serverFlags[srvpartpair] & ITSRWVOL) {
504                     if (entry.flags & RW_EXISTS) {
505                         sprintf(patt, "%s", entry.name);
506                         code = re_exec(patt);
507                         if (code == 1) {
508                             found = 1;
509                             foundentry = srvpartpair;
510                             volType = RWVOL;
511                             break;
512                         }
513                     }
514
515                     /* If the BK name matches the volume set entry, take 
516                      * it and exit. Second choice is to use the BK volume.
517                      */
518                     if (entry.flags & BACK_EXISTS) {
519                         sprintf(patt, "%s.backup", entry.name);
520                         code = re_exec(patt);
521                         if (code == 1) {
522                             found = 1;
523                             foundentry = srvpartpair;
524                             volType = BACKVOL;
525                             break;
526                         }
527                     }
528                 }
529
530                 /* If the RO name matches the volume set entry, remember
531                  * it, but continue searching. Further entries may be
532                  * RW or backup entries that will match.
533                  */
534                 else if (!found && (entry.serverFlags[srvpartpair] & ITSROVOL)
535                          && (entry.flags & RO_EXISTS)) {
536                     sprintf(patt, "%s.readonly", entry.name);
537                     code = re_exec(patt);
538                     if (code == 1) {
539                         found = 1;
540                         foundentry = srvpartpair;
541                         volType = ROVOL;
542                     }
543                 }
544
545                 if (code < 0)
546                     afs_com_err(whoami, 0, "Internal error in regex package");
547             }                   /*s */
548
549             /* If found a match, then create a new volume dump entry */
550             if (found) {        /*f */
551                 /* Find server and partition structure to hang the entry off of */
552                 code =
553                     getSPEntries(entry.serverNumber[foundentry],
554                                  entry.serverPartition[foundentry], &servers,
555                                  &ss, &ps);
556                 if (code) {
557                     afs_com_err(whoami, code, "");
558                     return (code);
559                 }
560
561                 total++;
562                 tvd = (struct bc_volumeDump *)
563                     malloc(sizeof(struct bc_volumeDump));
564                 if (!tvd) {
565                     afs_com_err(whoami, BC_NOMEM, "");
566                     return (BC_NOMEM);
567                 }
568                 memset(tvd, 0, sizeof(*tvd));
569
570                 tvd->name = (char *)malloc(strlen(entry.name) + 10);
571                 if (!(tvd->name)) {
572                     afs_com_err(whoami, BC_NOMEM, "");
573                     free(tvd);
574                     return (BC_NOMEM);
575                 }
576
577                 strcpy(tvd->name, entry.name);
578                 if (volType == BACKVOL)
579                     strcat(tvd->name, ".backup");
580                 else if (volType == ROVOL)
581                     strcat(tvd->name, ".readonly");
582                 tvd->vid = entry.volumeId[volType];
583                 tvd->entry = tve;
584                 tvd->volType = volType;
585                 tvd->partition = entry.serverPartition[foundentry];
586                 tvd->server.sin_addr.s_addr = entry.serverNumber[foundentry];
587                 tvd->server.sin_port = 0;       /* default FS port */
588                 tvd->server.sin_family = AF_INET;
589
590                 /* String tvd off of partition struct */
591                 tvd->next = ps->vdlist;
592                 ps->vdlist = tvd;
593                 if (!tvd->next)
594                     ps->lastvdlist = tvd;
595
596                 break;
597             }                   /*f */
598         }                       /*ve */
599     }                           /*w */
600
601     /* Randomly link the volumedump entries together */
602     randSPEntries(servers, avols);
603
604     fprintf(stderr, "Total number of volumes : %u\n", total);
605     return (0);
606 }                               /*EvalVolumeSet1 */
607
608 /* compactDateString
609  *      print out a date in compact format, 16 chars, format is
610  *      mm/dd/yyyy hh:mm
611  * entry:
612  *      date_long - ptr to a long containing the time
613  * exit:
614  *      ptr to a string containing a representation of the date
615  */
616 char *
617 compactDateString(date_long, string, size)
618      afs_int32 *date_long, size;
619      char *string;
620 {
621     struct tm *ltime;
622
623     if (!string)
624         return 0;
625
626     if (*date_long == NEVERDATE) {
627         sprintf(string, "NEVER");
628     } else {
629         time_t t = *date_long;
630         ltime = localtime(&t);
631         /* prints date in U.S. format of mm/dd/yyyy */
632         strftime(string, size, "%m/%d/%Y %H:%M", ltime);
633     }
634     return (string);
635 }
636
637 afs_int32
638 bc_SafeATOI(anum)
639      char *anum;
640 {
641     afs_int32 total = 0;
642
643     for (; *anum; anum++) {
644         if ((*anum < '0') || (*anum > '9'))
645             return -1;
646         total = (10 * total) + (afs_int32) (*anum - '0');
647     }
648     return total;
649 }
650
651 /* bc_FloatATOI:
652  *    Take a string and parse it for a number (could be float) followed
653  *    by a character representing the units (K,M,G,T). Default is 'K'.
654  *    Return the size in KBytes.
655  */
656 afs_int32
657 bc_FloatATOI(anum)
658      char *anum;
659 {
660     float total = 0;
661     afs_int32 rtotal;
662     afs_int32 fraction = 0;     /* > 0 if past the decimal */
663
664     for (; *anum; anum++) {
665         if ((*anum == 't') || (*anum == 'T')) {
666             total *= 1024 * 1024 * 1024;
667             break;
668         }
669         if ((*anum == 'g') || (*anum == 'G')) {
670             total *= 1024 * 1024;
671             break;
672         }
673         if ((*anum == 'm') || (*anum == 'M')) {
674             total *= 1024;
675             break;
676         }
677         if ((*anum == 'k') || (*anum == 'K')) {
678             break;
679         }
680         if (*anum == '.') {
681             fraction = 10;
682             continue;
683         }
684         if ((*anum < '0') || (*anum > '9'))
685             return -1;
686
687         if (!fraction) {
688             total = (10. * total) + (float)(*anum - '0');
689         } else {
690             total += ((float)(*anum - '0')) / (float)fraction;
691             fraction *= 10;
692         }
693     }
694
695     total += 0.5;               /* Round up */
696     if (total > 0x7fffffff)     /* Don't go over 2G */
697         total = 0x7fffffff;
698     rtotal = (afs_int32) total;
699     return (rtotal);
700 }
701
702 /* make a copy of a string so that it can be freed later */
703 char *
704 bc_CopyString(astring)
705      char *astring;
706 {
707     afs_int32 tlen;
708     char *tp;
709
710     if (!astring)
711         return (NULL);          /* propagate null strings easily */
712     tlen = strlen(astring);
713     tp = (char *)malloc(tlen + 1);      /* don't forget the terminating null */
714     if (!tp) {
715         afs_com_err(whoami, BC_NOMEM, "");
716         return (tp);
717     }
718     strcpy(tp, astring);
719     return tp;
720 }
721
722 /* concatParams
723  * 
724  *    Concatenates the parameters of an option and returns the string.
725  *
726  */
727
728 char *
729 concatParams(itemPtr)
730      struct cmd_item *itemPtr;
731 {
732     struct cmd_item *tempPtr;
733     afs_int32 length = 0;
734     char *string;
735
736     /* compute the length of string required */
737     for (tempPtr = itemPtr; tempPtr; tempPtr = tempPtr->next) {
738         length += strlen(tempPtr->data);
739         length++;               /* space or null terminator */
740     }
741
742     if (length == 0) {          /* no string (0 length) */
743         afs_com_err(whoami, 0, "Can't have zero length date and time string");
744         return (NULL);
745     }
746
747     string = (char *)malloc(length);    /* allocate the string */
748     if (!string) {
749         afs_com_err(whoami, BC_NOMEM, "");
750         return (NULL);
751     }
752     string[0] = 0;
753
754     tempPtr = itemPtr;          /* now assemble the string */
755     while (tempPtr) {
756         strcat(string, tempPtr->data);
757         tempPtr = tempPtr->next;
758         if (tempPtr)
759             strcat(string, " ");
760     }
761
762     return (string);            /* return the string */
763 }
764
765 /* printIfStatus
766  *      print out an interface status node as received from butc
767  */
768
769 printIfStatus(statusPtr)
770      struct tciStatusS *statusPtr;
771 {
772     printf("Task %d: %s: ", statusPtr->taskId, statusPtr->taskName);
773     if (statusPtr->nKBytes)
774         printf("%ld Kbytes transferred", statusPtr->nKBytes);
775     if (strlen(statusPtr->volumeName) != 0) {
776         if (statusPtr->nKBytes)
777             printf(", ");
778         printf("volume %s", statusPtr->volumeName);
779     }
780
781     /* orphan */
782
783     if (statusPtr->flags & ABORT_REQUEST)
784         printf(" [abort request rcvd]");
785
786     if (statusPtr->flags & ABORT_DONE)
787         printf(" [abort complete]");
788
789     if (statusPtr->flags & OPR_WAIT)
790         printf(" [operator wait]");
791
792     if (statusPtr->flags & CALL_WAIT)
793         printf(" [callout in progress]");
794
795     if (statusPtr->flags & DRIVE_WAIT)
796         printf(" [drive wait]");
797
798     if (statusPtr->flags & TASK_DONE)
799         printf(" [done]");
800     printf("\n");
801 }
802
803 afs_int32
804 getPortOffset(port)
805      char *port;
806 {
807     afs_int32 portOffset;
808
809     portOffset = bc_SafeATOI(port);
810
811     if (portOffset < 0) {
812         afs_com_err(whoami, 0, "Can't decode port offset '%s'", port);
813         return (-1);
814     } else if (portOffset > BC_MAXPORTOFFSET) {
815         afs_com_err(whoami, 0, "%u exceeds max port offset %u", portOffset,
816                 BC_MAXPORTOFFSET);
817         return (-1);
818     }
819     return (portOffset);
820 }
821
822 /* bc_GetTapeStatusCmd
823  *      display status of all tasks on a particular tape coordinator
824  */
825
826 bc_GetTapeStatusCmd(as, arock)
827      struct cmd_syndesc *as;
828      char *arock;
829 {
830     afs_int32 code;
831     struct rx_connection *tconn;
832     afs_int32 portOffset = 0;
833
834     int ntasks;
835     afs_uint32 flags;
836     afs_uint32 taskId;
837     struct tciStatusS status;
838
839     code = bc_UpdateHosts();
840     if (code) {
841         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
842         return (code);
843     }
844
845     if (as->parms[0].items) {
846         portOffset = getPortOffset(as->parms[0].items->data);
847         if (portOffset < 0)
848             return (BC_BADARG);
849     }
850
851     code = ConnectButc(bc_globalConfig, portOffset, &tconn);
852     if (code)
853         return (code);
854
855     flags = TSK_STAT_FIRST;
856     taskId = 0;
857     ntasks = 0;
858
859     while ((flags & TSK_STAT_END) == 0) {
860         code = TC_ScanStatus(tconn, &taskId, &status, &flags);
861         if (code) {
862             if (code == TC_NOTASKS)
863                 break;
864             afs_com_err(whoami, code, "; Can't get status from butc");
865             return (-1);
866         }
867         if ((flags & TSK_STAT_NOTFOUND))
868             break;              /* Can't find the task id */
869         flags &= ~TSK_STAT_FIRST;       /* turn off flag */
870
871         printIfStatus(&status);
872         ntasks++;
873     }
874
875     if (ntasks == 0)
876         printf("Tape coordinator is idle\n");
877
878     if (flags & TSK_STAT_ADSM)
879         printf("TSM Tape coordinator\n");
880     else if (flags & TSK_STAT_XBSA)
881         printf("XBSA Tape coordinator\n");
882
883     return (0);
884 }
885
886 extern struct Lock dispatchLock;
887
888 /* bc_WaitForNoJobs
889  *      wait for all jobs to terminate
890  */
891 bc_WaitForNoJobs()
892 {
893     afs_int32 wcode = 0;
894     int i;
895     int waitmsg = 1;
896     int usefulJobRunning = 1;
897
898     extern dlqlinkT statusHead;
899
900     afs_com_err(whoami, 0, "waiting for job termination");
901
902     while (usefulJobRunning) {
903         usefulJobRunning = (dlqEmpty(&statusHead) ? 0 : 1);
904         if (dispatchLock.excl_locked)
905             usefulJobRunning = 1;
906         for (i = 0; (!usefulJobRunning && (i < BC_MAXSIMDUMPS)); i++) {
907             if (bc_dumpTasks[i].flags & BC_DI_INUSE)
908                 usefulJobRunning = 1;
909         }
910
911         /* Wait 5 seconds and check again */
912         if (usefulJobRunning)
913             IOMGR_Sleep(5);
914     }
915     return (lastTaskCode);
916 }
917
918 /* bc_JobsCmd
919  *      print status on running jobs
920  * parameters
921  *      ignored - a null "as" prints only jobs.
922  */
923
924 bc_JobsCmd(as, arock)
925      struct cmd_syndesc *as;
926      char *arock;
927 {
928     afs_int32 prevTime;
929     dlqlinkP ptr;
930     statusP statusPtr;
931     char ds[50];
932
933     statusP youngest;
934     dlqlinkT atJobsHead;
935     extern dlqlinkT statusHead;
936
937     dlqInit(&atJobsHead);
938
939     lock_Status();
940     ptr = (&statusHead)->dlq_next;
941     while (ptr != &statusHead) {
942         statusPtr = (statusP) ptr;
943         ptr = ptr->dlq_next;
944
945         if (statusPtr->scheduledDump) {
946             dlqUnlink((dlqlinkP) statusPtr);
947             dlqLinkb(&atJobsHead, (dlqlinkP) statusPtr);
948         } else {
949             printf("Job %d:", statusPtr->jobNumber);
950
951             printf(" %s", statusPtr->taskName);
952
953             if (statusPtr->dbDumpId)
954                 printf(": DumpID %u", statusPtr->dbDumpId);
955             if (statusPtr->nKBytes)
956                 printf(", %ld Kbytes", statusPtr->nKBytes);
957             if (strlen(statusPtr->volumeName) != 0)
958                 printf(", volume %s", statusPtr->volumeName);
959
960             if (statusPtr->flags & CONTACT_LOST)
961                 printf(" [butc contact lost]");
962
963             if (statusPtr->flags & ABORT_REQUEST)
964                 printf(" [abort request]");
965
966             if (statusPtr->flags & ABORT_SENT)
967                 printf(" [abort sent]");
968
969             if (statusPtr->flags & OPR_WAIT)
970                 printf(" [operator wait]");
971
972             if (statusPtr->flags & CALL_WAIT)
973                 printf(" [callout in progress]");
974
975             if (statusPtr->flags & DRIVE_WAIT)
976                 printf(" [drive wait]");
977             printf("\n");
978         }
979     }
980
981     /* 
982      * Now print the scheduled dumps.
983      */
984     if (!dlqEmpty(&statusHead) && as)
985         printf("\n");           /* blank line between running and scheduled dumps */
986
987     prevTime = 0;
988     while (!dlqEmpty(&atJobsHead)) {
989         ptr = (&atJobsHead)->dlq_next;
990         youngest = (statusP) ptr;
991
992         ptr = ptr->dlq_next;
993         while (ptr != &atJobsHead) {    /* Find the dump that starts the earliest */
994             statusPtr = (statusP) ptr;
995             if (statusPtr->scheduledDump < youngest->scheduledDump)
996                 youngest = statusPtr;
997             ptr = ptr->dlq_next;
998         }
999
1000         /* Print token expiration time */
1001         if ((ttoken.endTime > prevTime)
1002             && (ttoken.endTime <= youngest->scheduledDump) && as
1003             && (ttoken.endTime != NEVERDATE)) {
1004             if (ttoken.endTime > time(0)) {
1005                 compactDateString(&ttoken.endTime, ds, 50);
1006                 printf("       %16s: TOKEN EXPIRATION\n", ds);
1007             } else {
1008                 printf("       TOKEN HAS EXPIRED\n");
1009             }
1010         }
1011         prevTime = youngest->scheduledDump;
1012
1013         /* Print the info */
1014         compactDateString(&youngest->scheduledDump, ds, 50);
1015         printf("Job %d:", youngest->jobNumber);
1016         printf(" %16s: %s", ds, youngest->cmdLine);
1017         printf("\n");
1018
1019         /* return to original list */
1020         dlqUnlink((dlqlinkP) youngest);
1021         dlqLinkb(&statusHead, (dlqlinkP) youngest);
1022     }
1023
1024     /* Print token expiration time if havn't already */
1025     if ((ttoken.endTime == NEVERDATE) && as)
1026         printf("     : TOKEN NEVER EXPIRES\n");
1027     else if ((ttoken.endTime > prevTime) && as) {
1028         if (ttoken.endTime > time(0)) {
1029             compactDateString(&ttoken.endTime, ds, 50);
1030             printf("       %16s: TOKEN EXPIRATION\n", ds);
1031         } else {
1032             printf("     : TOKEN HAS EXPIRED\n");
1033         }
1034     }
1035
1036     unlock_Status();
1037     return 0;
1038 }
1039
1040 bc_KillCmd(as, arock)
1041      struct cmd_syndesc *as;
1042      char *arock;
1043 {
1044     afs_int32 i;
1045     afs_int32 slot;
1046     struct bc_dumpTask *td;
1047     char *tp;
1048     char tbuffer[256];
1049
1050     dlqlinkP ptr;
1051     statusP statusPtr;
1052
1053     extern dlqlinkT statusHead;
1054     extern statusP findStatus();
1055
1056
1057     tp = as->parms[0].items->data;
1058     if (strchr(tp, '.') == 0) {
1059         slot = bc_SafeATOI(tp);
1060         if (slot == -1) {
1061             afs_com_err(whoami, 0, "Bad syntax for number '%s'", tp);
1062             return -1;
1063         }
1064
1065         lock_Status();
1066         ptr = (&statusHead)->dlq_next;
1067         while (ptr != &statusHead) {
1068             statusPtr = (statusP) ptr;
1069             if (statusPtr->jobNumber == slot) {
1070                 statusPtr->flags |= ABORT_REQUEST;
1071                 unlock_Status();
1072                 return (0);
1073             }
1074             ptr = ptr->dlq_next;
1075         }
1076         unlock_Status();
1077
1078         fprintf(stderr, "Job %d not found\n", slot);
1079         return (-1);
1080     } else {
1081         /* vol.dump */
1082         td = bc_dumpTasks;
1083         for (i = 0; i < BC_MAXSIMDUMPS; i++, td++) {
1084             if (td->flags & BC_DI_INUSE) {
1085                 /* compute name */
1086                 strcpy(tbuffer, td->volSetName);
1087                 strcat(tbuffer, ".");
1088                 strcat(tbuffer, tailCompPtr(td->dumpName));
1089                 if (strcmp(tbuffer, tp) == 0)
1090                     break;
1091             }
1092         }
1093         if (i >= BC_MAXSIMDUMPS) {
1094             afs_com_err(whoami, 0, "Can't find job %s", tp);
1095             return -1;
1096         }
1097
1098         lock_Status();
1099         statusPtr = findStatus(td->dumpID);
1100
1101         if (statusPtr == 0) {
1102             afs_com_err(whoami, 0, "Can't locate status - internal error");
1103             unlock_Status();
1104             return (-1);
1105         }
1106         statusPtr->flags |= ABORT_REQUEST;
1107         unlock_Status();
1108         return (0);
1109     }
1110     return 0;
1111 }
1112
1113 /* restore a volume or volumes */
1114 bc_VolRestoreCmd(as, arock)
1115      struct cmd_syndesc *as;
1116      char *arock;
1117 {
1118     /*
1119      * parm 0 is the new server to restore to
1120      * parm 1 is the new partition to restore to
1121      * parm 2 is volume(s) to restore
1122      * parm 3 is the new extension, if any, for the volume name.
1123      * parm 4 gives the new volume # to restore this volume as (removed).
1124      * parm 4 date is a string representing the date
1125      *
1126      * We handle four types of restores.  If old is set, then we restore the
1127      * volume with the same name and ID.  If old is not set, we allocate
1128      * a new volume ID for the restored volume.  If a new extension is specified,
1129      * we add that extension to the volume name of the restored volume.
1130      */
1131     struct bc_volumeEntry tvolumeEntry; /* entry within the volume set */
1132     struct bc_volumeDump *volsToRestore = (struct bc_volumeDump *)0;
1133     struct bc_volumeDump *lastVol = (struct bc_volumeDump *)0;
1134     struct bc_volumeDump *tvol; /* temp for same */
1135     struct sockaddr_in destServ;        /* machine to which to restore volumes */
1136     afs_int32 destPartition;    /* partition to which to restore volumes */
1137     char *tp;
1138     struct cmd_item *ti;
1139     afs_int32 code;
1140     int oldFlag;
1141     afs_int32 fromDate;
1142     char *newExt, *timeString;
1143     afs_int32 i;
1144     afs_int32 *ports = NULL;
1145     afs_int32 portCount = 0;
1146     int dontExecute;
1147
1148     code = bc_UpdateHosts();
1149     if (code) {
1150         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
1151         return (code);
1152     }
1153
1154     /* specified other destination host */
1155     if (as->parms[0].items) {
1156         tp = as->parms[0].items->data;
1157         if (bc_ParseHost(tp, &destServ)) {
1158             afs_com_err(whoami, 0, "Failed to locate destination host '%s'", tp);
1159             return -1;
1160         }
1161     }
1162
1163     /* specified other destination partition */
1164     if (as->parms[1].items) {
1165         tp = as->parms[1].items->data;
1166         if (bc_GetPartitionID(tp, &destPartition)) {
1167             afs_com_err(whoami, 0, "Can't parse destination partition '%s'", tp);
1168             return -1;
1169         }
1170     }
1171
1172     for (ti = as->parms[2].items; ti; ti = ti->next) {
1173         /* build list of volume items */
1174         tvol = (struct bc_volumeDump *)malloc(sizeof(struct bc_volumeDump));
1175         if (!tvol) {
1176             afs_com_err(whoami, BC_NOMEM, "");
1177             return BC_NOMEM;
1178         }
1179         memset(tvol, 0, sizeof(struct bc_volumeDump));
1180
1181         tvol->name = (char *)malloc(VOLSER_MAXVOLNAME + 1);
1182         if (!tvol->name) {
1183             afs_com_err(whoami, BC_NOMEM, "");
1184             return BC_NOMEM;
1185         }
1186         strncpy(tvol->name, ti->data, VOLSER_OLDMAXVOLNAME);
1187         tvol->entry = &tvolumeEntry;
1188
1189         if (lastVol)
1190             lastVol->next = tvol;       /* thread onto end of list */
1191         else
1192             volsToRestore = tvol;
1193         lastVol = tvol;
1194     }
1195
1196     if (as->parms[4].items) {
1197         timeString = concatParams(as->parms[4].items);
1198         if (!timeString)
1199             return (-1);
1200
1201         code = ktime_DateToLong(timeString, &fromDate);
1202         free(timeString);
1203         if (code) {
1204             afs_com_err(whoami, 0, "Can't parse restore date and time");
1205             afs_com_err(whoami, 0, "%s", ktime_GetDateUsage());
1206             return code;
1207         }
1208     } else {
1209         fromDate = 0x7fffffff;  /* latest one */
1210     }
1211
1212     newExt = (as->parms[3].items ? as->parms[3].items->data : NULL);
1213     oldFlag = 0;
1214
1215     /* Read all the port offsets into the ports array. The first element in the
1216      * array is for full restore and the rest are for incremental restores 
1217      */
1218     if (as->parms[5].items) {
1219         for (ti = as->parms[5].items; ti; ti = ti->next)
1220             portCount++;
1221         ports = (afs_int32 *) malloc(portCount * sizeof(afs_int32));
1222         if (!ports) {
1223             afs_com_err(whoami, BC_NOMEM, "");
1224             return BC_NOMEM;
1225         }
1226
1227         for (ti = as->parms[5].items, i = 0; ti; ti = ti->next, i++) {
1228             ports[i] = getPortOffset(ti->data);
1229             if (ports[i] < 0)
1230                 return (BC_BADARG);
1231         }
1232     }
1233
1234     dontExecute = (as->parms[6].items ? 1 : 0); /* -n */
1235
1236     /*
1237      * Perform the call to start the restore.
1238      */
1239     code =
1240         bc_StartDmpRst(bc_globalConfig, "volume", "restore", volsToRestore,
1241                        &destServ, destPartition, fromDate, newExt, oldFlag,
1242                        /*parentDump */ 0, /*dumpLevel */ 0,
1243                        bc_Restorer, ports, portCount,
1244                        /*dumpSched */ NULL, /*append */ 0, dontExecute);
1245     if (code)
1246         afs_com_err(whoami, code, "; Failed to queue restore");
1247
1248     return (code);
1249 }
1250
1251 /* restore a whole partition or server */
1252
1253 /* bc_DiskRestoreCmd
1254  *      restore a whole partition
1255  * params:
1256  *      first, reqd - machine (server) to restore
1257  *      second, reqd - partition to restore
1258  *      various optional
1259  */
1260
1261 bc_DiskRestoreCmd(as, arock)
1262      struct cmd_syndesc *as;
1263      char *arock;
1264 {
1265     struct bc_volumeSet tvolumeSet;     /* temporary volume set for EvalVolumeSet call */
1266     struct bc_volumeEntry tvolumeEntry; /* entry within the volume set */
1267     struct bc_volumeDump *volsToRestore = (struct bc_volumeDump *)0;
1268     struct sockaddr_in destServ;        /* machine to which to restore volumes */
1269     afs_int32 destPartition;    /* partition to which to restore volumes */
1270     char *tp;
1271     afs_int32 code;
1272     int oldFlag;
1273     afs_int32 fromDate;
1274     char *newExt;
1275     afs_int32 *ports = NULL;
1276     afs_int32 portCount = 0;
1277     int dontExecute;
1278     struct bc_volumeDump *prev, *tvol, *nextvol;
1279     struct cmd_item *ti;
1280     afs_int32 i;
1281
1282     /* parm 0 is the server to restore
1283      * parm 1 is the partition to restore
1284      
1285      * parm 8 and above as in VolRestoreCmd:
1286      * parm 8 is the new server to restore to
1287      * parm 9 is the new partition to restore to
1288      */
1289
1290     code = bc_UpdateVolumeSet();
1291     if (code) {
1292         afs_com_err(whoami, code, "; Can't retrieve volume sets");
1293         return (code);
1294     }
1295     code = bc_UpdateHosts();
1296     if (code) {
1297         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
1298         return (code);
1299     }
1300
1301     /* create a volume set corresponding to the volume pattern we've been given */
1302     memset(&tvolumeSet, 0, sizeof(tvolumeSet));
1303     memset(&tvolumeEntry, 0, sizeof(tvolumeEntry));
1304     tvolumeSet.name = "TempVolumeSet";
1305     tvolumeSet.ventries = &tvolumeEntry;
1306     tvolumeEntry.serverName = as->parms[0].items->data;
1307     tvolumeEntry.partname = as->parms[1].items->data;
1308
1309     if (bc_GetPartitionID(tvolumeEntry.partname, &tvolumeEntry.partition)) {
1310         afs_com_err(whoami, 0, "Can't parse partition '%s'",
1311                 tvolumeEntry.partname);
1312         return -1;
1313     }
1314
1315     if (bc_ParseHost(tvolumeEntry.serverName, &tvolumeEntry.server)) {
1316         afs_com_err(whoami, 0, "Can't locate host '%s'", tvolumeEntry.serverName);
1317         return -1;
1318     }
1319
1320     /* specified other destination host */
1321     if (as->parms[8].items) {
1322         tp = as->parms[8].items->data;
1323         if (bc_ParseHost(tp, &destServ)) {
1324             afs_com_err(whoami, 0, "Can't locate destination host '%s'", tp);
1325             return -1;
1326         }
1327     } else                      /* use destination host == original host */
1328         memcpy(&destServ, &tvolumeEntry.server, sizeof(destServ));
1329
1330     /* specified other destination partition */
1331     if (as->parms[9].items) {
1332         tp = as->parms[9].items->data;
1333         if (bc_GetPartitionID(tp, &destPartition)) {
1334             afs_com_err(whoami, 0, "Can't parse destination partition '%s'", tp);
1335             return -1;
1336         }
1337     } else                      /* use original partition */
1338         destPartition = tvolumeEntry.partition;
1339
1340     tvolumeEntry.name = ".*";   /* match all volumes (this should be a parameter) */
1341
1342     if (as->parms[2].items) {
1343         for (ti = as->parms[2].items; ti; ti = ti->next)
1344             portCount++;
1345         ports = (afs_int32 *) malloc(portCount * sizeof(afs_int32));
1346         if (!ports) {
1347             afs_com_err(whoami, BC_NOMEM, "");
1348             return BC_NOMEM;
1349         }
1350
1351         for (ti = as->parms[2].items, i = 0; ti; ti = ti->next, i++) {
1352             ports[i] = getPortOffset(ti->data);
1353             if (ports[i] < 0)
1354                 return (BC_BADARG);
1355         }
1356     }
1357
1358     newExt = (as->parms[10].items ? as->parms[10].items->data : NULL);
1359     dontExecute = (as->parms[11].items ? 1 : 0);        /* -n */
1360
1361     /*
1362      * Expand out the volume set into its component list of volumes, by calling VLDB server.
1363      */
1364     code =
1365         bc_EvalVolumeSet(bc_globalConfig, &tvolumeSet, &volsToRestore,
1366                          cstruct);
1367     if (code) {
1368         afs_com_err(whoami, code, "; Failed to evaluate volume set");
1369         return (-1);
1370     }
1371
1372     /* Since we want only RW volumes, remove any 
1373      * BK or RO volumes from the list.
1374      */
1375     for (prev = 0, tvol = volsToRestore; tvol; tvol = nextvol) {
1376         nextvol = tvol->next;
1377         if (BackupName(tvol->name)) {
1378             if (tvol->name)
1379                 fprintf(stderr,
1380                         "Will not restore volume %s (its RW does not reside on the partition)\n",
1381                         tvol->name);
1382
1383             if (tvol == volsToRestore) {
1384                 volsToRestore = nextvol;
1385             } else {
1386                 prev->next = nextvol;
1387             }
1388             if (tvol->name)
1389                 free(tvol->name);
1390             free(tvol);
1391         } else {
1392             prev = tvol;
1393         }
1394     }
1395
1396     fromDate = 0x7fffffff;      /* last one before this date */
1397     oldFlag = 1;                /* do restore same volid (and name) */
1398
1399     /*
1400      * Perform the call to start the dump.
1401      */
1402     code =
1403         bc_StartDmpRst(bc_globalConfig, "disk", "restore", volsToRestore,
1404                        &destServ, destPartition, fromDate, newExt, oldFlag,
1405                        /*parentDump */ 0, /*dumpLevel */ 0,
1406                        bc_Restorer, ports, portCount,
1407                        /*dumpSched */ NULL, /*append */ 0, dontExecute);
1408     if (code)
1409         afs_com_err(whoami, code, "; Failed to queue restore");
1410
1411     return (code);
1412 }
1413
1414 /* bc_VolsetRestoreCmd
1415  *      restore a volumeset or list of volumes.
1416  */
1417
1418 bc_VolsetRestoreCmd(as, arock)
1419      struct cmd_syndesc *as;
1420      char *arock;
1421 {
1422     int oldFlag;
1423     long fromDate;
1424     char *newExt;
1425
1426     int dontExecute;
1427     afs_int32 *ports = NULL;
1428     afs_int32 portCount = 0;
1429     afs_int32 code = 0;
1430     afs_int32 portoffset = 0;
1431     char *volsetName;
1432     struct bc_volumeSet *volsetPtr;     /* Ptr to list of generated volume info */
1433     struct bc_volumeDump *volsToRestore = (struct bc_volumeDump *)0;
1434     struct bc_volumeDump *lastVol = (struct bc_volumeDump *)0;
1435     struct sockaddr_in destServer;      /* machine to which to restore volume */
1436     afs_int32 destPartition;    /* partition to which to restore volumes */
1437     struct cmd_item *ti;
1438     afs_int32 i;
1439
1440     code = bc_UpdateVolumeSet();
1441     if (code) {
1442         afs_com_err(whoami, code, "; Can't retrieve volume sets");
1443         return (code);
1444     }
1445     code = bc_UpdateHosts();
1446     if (code) {
1447         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
1448         return (code);
1449     }
1450
1451     if (as->parms[0].items) {
1452         if (as->parms[1].items) {
1453             afs_com_err(whoami, 0, "Can't have both -name and -file options");
1454             return (-1);
1455         }
1456
1457         volsetName = as->parms[0].items->data;
1458         volsetPtr = bc_FindVolumeSet(bc_globalConfig, volsetName);
1459         if (!volsetPtr) {
1460             afs_com_err(whoami, 0,
1461                     "Can't find volume set '%s' in backup database",
1462                     volsetName);
1463             return (-1);
1464         }
1465
1466         /* Expand out the volume set into its component list of volumes. */
1467         code =
1468             bc_EvalVolumeSet(bc_globalConfig, volsetPtr, &volsToRestore,
1469                              cstruct);
1470         if (code) {
1471             afs_com_err(whoami, code, "; Failed to evaluate volume set");
1472             return (-1);
1473         }
1474     } else if (as->parms[1].items) {
1475         FILE *fd;
1476         char line[256];
1477         char server[50], partition[50], volume[50], rest[256];
1478         long count;
1479         struct bc_volumeDump *tvol;
1480
1481         fd = fopen(as->parms[1].items->data, "r");
1482         if (!fd) {
1483             afs_com_err(whoami, errno, "; Cannot open file '%s'",
1484                     as->parms[1].items->data);
1485             return (-1);
1486         }
1487
1488         while (fgets(line, 255, fd)) {
1489             count =
1490                 sscanf(line, "%s %s %s %s", server, partition, volume, rest);
1491
1492             if (count <= 0)
1493                 continue;
1494             if (count < 3) {
1495                 fprintf(stderr,
1496                         "Invalid volumeset file format: Wrong number of arguments: Ignoring\n");
1497                 fprintf(stderr, "     %s", line);
1498                 continue;
1499             }
1500
1501             if (bc_ParseHost(server, &destServer)) {
1502                 afs_com_err(whoami, 0, "Failed to locate host '%s'", server);
1503                 continue;
1504             }
1505
1506             if (bc_GetPartitionID(partition, &destPartition)) {
1507                 afs_com_err(whoami, 0,
1508                         "Failed to parse destination partition '%s'",
1509                         partition);
1510                 continue;
1511             }
1512
1513             /* Allocate a volumeDump structure and link it in */
1514             tvol =
1515                 (struct bc_volumeDump *)malloc(sizeof(struct bc_volumeDump));
1516             memset(tvol, 0, sizeof(struct bc_volumeDump));
1517
1518             tvol->name = (char *)malloc(VOLSER_MAXVOLNAME + 1);
1519             if (!tvol->name) {
1520                 afs_com_err(whoami, BC_NOMEM, "");
1521                 return BC_NOMEM;
1522             }
1523             strncpy(tvol->name, volume, VOLSER_OLDMAXVOLNAME);
1524             memcpy(&tvol->server, &destServer, sizeof(destServer));
1525             tvol->partition = destPartition;
1526
1527             if (lastVol)
1528                 lastVol->next = tvol;   /* thread onto end of list */
1529             else
1530                 volsToRestore = tvol;
1531             lastVol = tvol;
1532         }
1533         fclose(fd);
1534     } else {
1535         afs_com_err(whoami, 0, "-name or -file option required");
1536         return (-1);
1537     }
1538
1539
1540     /* Get the port offset for the restore */
1541     if (as->parms[2].items) {
1542         for (ti = as->parms[2].items; ti; ti = ti->next)
1543             portCount++;
1544         ports = (afs_int32 *) malloc(portCount * sizeof(afs_int32));
1545         if (!ports) {
1546             afs_com_err(whoami, BC_NOMEM, "");
1547             return BC_NOMEM;
1548         }
1549
1550         for (ti = as->parms[2].items, i = 0; ti; ti = ti->next, i++) {
1551             ports[i] = getPortOffset(ti->data);
1552             if (ports[i] < 0)
1553                 return (BC_BADARG);
1554         }
1555     }
1556
1557     newExt = (as->parms[3].items ? as->parms[3].items->data : NULL);
1558     dontExecute = (as->parms[4].items ? 1 : 0);
1559
1560     fromDate = 0x7fffffff;      /* last one before this date */
1561     oldFlag = 1;                /* do restore same volid (and name) */
1562
1563     /* Perform the call to start the restore */
1564     code = bc_StartDmpRst(bc_globalConfig, "disk", "restore", volsToRestore,
1565                           /*destserver */ NULL, /*destpartition */ 0, fromDate,
1566                           newExt, oldFlag,
1567                           /*parentDump */ 0, /*dumpLevel */ 0,
1568                           bc_Restorer, ports, portCount,
1569                           /*dumpSched */ NULL, /*append */ 0, dontExecute);
1570     if (code)
1571         afs_com_err(whoami, code, "; Failed to queue restore");
1572
1573     return code;
1574 }
1575
1576 /*-----------------------------------------------------------------------------
1577  * bc_DumpCmd
1578  *
1579  * Description:
1580  *      Perform a dump of the set of volumes provided.
1581  *      user specifies: -volumeset .. -dump .. [-portoffset ..] [-n]
1582  *
1583  * Arguments:
1584  *      as      : Parsed command line information.
1585  *      arock   : Ptr to misc stuff; not used.
1586  *
1587  * Returns:
1588  *      -1 on errors,
1589  *      The result of bc_StartDump() otherwise
1590  *
1591  * Environment:
1592  *      Nothing special.
1593  *
1594  * Side Effects:
1595  *      As advertised.
1596  *---------------------------------------------------------------------------
1597  */
1598 int dontExecute;
1599
1600 int
1601 bc_DumpCmd(as, arock)
1602      struct cmd_syndesc *as;
1603      char *arock;
1604 {                               /*bc_DumpCmd */
1605     static char rn[] = "bc_DumpCmd";    /*Routine name */
1606     char *dumpPath, *vsName;    /*Ptrs to various names */
1607     struct bc_volumeSet *tvs;   /*Ptr to list of generated volume info */
1608     struct bc_dumpSchedule *tds, *baseds;       /*Ptr to dump schedule node */
1609     struct bc_volumeDump *tve, *volsToDump;     /*Ptr to individual vols to be dumped */
1610     struct budb_dumpEntry dumpEntry, de, fde;   /* dump entry */
1611     afs_uint32 d;
1612
1613     afs_int32 parent;           /* parent dump */
1614     afs_int32 level;            /* this dump's level # */
1615     afs_int32 problemFindingDump;       /* can't find parent(s) */
1616
1617     afs_int32 *portp = NULL;
1618     afs_int32 portCount = 0;
1619     afs_int32 doAt, atTime;     /* Time a timed-dump is to start at */
1620     afs_int32 length;
1621     char *timeString;
1622     int doAppend;               /* Append the dump to dump set */
1623     afs_int32 code;             /* Return code */
1624     int loadfile;               /* whether to load a file or not */
1625
1626     statusP statusPtr;
1627
1628     extern struct bc_dumpTask bc_dumpTasks[];
1629     extern afs_int32 bcdb_FindLastVolClone();
1630     extern afs_int32 volImageTime();
1631
1632     code = bc_UpdateDumpSchedule();
1633     if (code) {
1634         afs_com_err(whoami, code, "; Can't retrieve dump schedule");
1635         return (code);
1636     }
1637     code = bc_UpdateVolumeSet();
1638     if (code) {
1639         afs_com_err(whoami, code, "; Can't retrieve volume sets");
1640         return (code);
1641     }
1642     code = bc_UpdateHosts();
1643     if (code) {
1644         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
1645         return (code);
1646     }
1647
1648     /* 
1649      * Some parameters cannot be specified together
1650      * The "-file" option cannot exist with the "-volume", "-dump", 
1651      * "-portoffset", or "-append" option 
1652      */
1653     if (as->parms[6].items) {
1654         loadfile = 1;
1655         if (as->parms[0].items || as->parms[1].items || as->parms[2].items
1656             || as->parms[4].items) {
1657             afs_com_err(whoami, 0, "Invalid option specified with -file option");
1658             return -1;
1659         }
1660     } else {
1661         loadfile = 0;
1662         if (!as->parms[0].items || !as->parms[1].items) {
1663             afs_com_err(whoami, 0,
1664                     "Must specify volume set name and dump level name");
1665             return -1;
1666         }
1667     }
1668
1669     /* 
1670      * Get the time we are to perform this dump
1671      */
1672     if (as->parms[3].items) {
1673         doAt = 1;
1674
1675         timeString = concatParams(as->parms[3].items);
1676         if (!timeString)
1677             return (-1);
1678
1679         /*
1680          * Now parse this string for the time to start.
1681          */
1682         code = ktime_DateToLong(timeString, &atTime);
1683         free(timeString);
1684         if (code) {
1685             afs_com_err(whoami, 0, "Can't parse dump start date and time");
1686             afs_com_err(whoami, 0, "%s", ktime_GetDateUsage());
1687             return (1);
1688         }
1689     } else
1690         doAt = 0;
1691
1692     dontExecute = (as->parms[5].items ? 1 : 0); /* -n */
1693
1694     /* 
1695      * If this dump is not a load file, then check the parameters.
1696      */
1697     if (!loadfile) {            /*6 */
1698         vsName = as->parms[0].items->data;      /* get volume set name */
1699         dumpPath = as->parms[1].items->data;    /* get dump path */
1700
1701         /* get the port number, if one was specified */
1702         if (as->parms[2].items) {
1703             portCount = 1;
1704             portp = (afs_int32 *) malloc(sizeof(afs_int32));
1705             if (!portp) {
1706                 afs_com_err(whoami, BC_NOMEM, "");
1707                 return BC_NOMEM;
1708             }
1709
1710             *portp = getPortOffset(as->parms[2].items->data);
1711             if (*portp < 0)
1712                 return (BC_BADARG);
1713         }
1714
1715         doAppend = (as->parms[4].items ? 1 : 0);        /* -append */
1716
1717         /*
1718          * Get a hold of the given volume set and dump set.
1719          */
1720         tvs = bc_FindVolumeSet(bc_globalConfig, vsName);
1721         if (!tvs) {
1722             afs_com_err(whoami, 0,
1723                     "Can't find volume set '%s' in backup database", vsName);
1724             return (-1);
1725         }
1726         baseds = bc_FindDumpSchedule(bc_globalConfig, dumpPath);
1727         if (!baseds) {
1728             afs_com_err(whoami, 0,
1729                     "Can't find dump schedule '%s' in backup database",
1730                     dumpPath);
1731             return (-1);
1732         }
1733
1734     }
1735
1736     /*6 */
1737     /*
1738      * If given the "-at" option, then add this to the jobs list and return 
1739      * with no error.
1740      *
1741      * Create a status node for this timed dump.
1742      * Fill in the time to dump and the cmd line for the dump leaving off
1743      * the -at option.  If the -n option is there, it is scheduled with 
1744      * the Timed dump as opposed to not scheduling the time dump at all.
1745      */
1746     if (doAt) {
1747         if (atTime < time(0)) {
1748             afs_com_err(whoami, 0,
1749                     "Time of dump is earlier then current time - not added");
1750         } else {
1751             statusPtr = createStatusNode();
1752             lock_Status();
1753             statusPtr->scheduledDump = atTime;
1754
1755             /* Determine length of the dump command */
1756             length = 0;
1757             length += 4;        /* "dump" */
1758             if (loadfile) {
1759                 length += 6;    /* " -file" */
1760                 length += 1 + strlen(as->parms[6].items->data); /* " <file>" */
1761             } else {
1762                 /* length += 11; *//* " -volumeset" */
1763                 length += 1 + strlen(as->parms[0].items->data); /* " <volset> */
1764
1765                 /* length += 6; *//* " -dump" */
1766                 length += 1 + strlen(as->parms[1].items->data); /* " <dumpset> */
1767
1768                 if (as->parms[2].items) {
1769                     /* length += 12; *//* " -portoffset" */
1770                     length += 1 + strlen(as->parms[2].items->data);     /* " <port>" */
1771                 }
1772
1773                 if (as->parms[4].items)
1774                     length += 8;        /* " -append" */
1775             }
1776
1777             if (dontExecute)
1778                 length += 3;    /* " -n" */
1779             length++;           /* end-of-line */
1780
1781             /* Allocate status block for this timed dump */
1782             sprintf(statusPtr->taskName, "Scheduled Dump");
1783             statusPtr->jobNumber = bc_jobNumber();
1784             statusPtr->scheduledDump = atTime;
1785             statusPtr->cmdLine = (char *)malloc(length);
1786             if (!statusPtr->cmdLine) {
1787                 afs_com_err(whoami, BC_NOMEM, "");
1788                 return BC_NOMEM;
1789             }
1790
1791             /* Now reconstruct the dump command */
1792             statusPtr->cmdLine[0] = 0;
1793             strcat(statusPtr->cmdLine, "dump");
1794             if (loadfile) {
1795                 strcat(statusPtr->cmdLine, " -file");
1796                 strcat(statusPtr->cmdLine, " ");
1797                 strcat(statusPtr->cmdLine, as->parms[6].items->data);
1798             } else {
1799                 /* strcat(statusPtr->cmdLine, " -volumeset"); */
1800                 strcat(statusPtr->cmdLine, " ");
1801                 strcat(statusPtr->cmdLine, as->parms[0].items->data);
1802
1803                 /* strcat(statusPtr->cmdLine, " -dump"); */
1804                 strcat(statusPtr->cmdLine, " ");
1805                 strcat(statusPtr->cmdLine, as->parms[1].items->data);
1806
1807                 if (as->parms[2].items) {
1808                     /* strcat(statusPtr->cmdLine, " -portoffset"); */
1809                     strcat(statusPtr->cmdLine, " ");
1810                     strcat(statusPtr->cmdLine, as->parms[2].items->data);
1811                 }
1812
1813                 if (as->parms[4].items)
1814                     strcat(statusPtr->cmdLine, " -append");
1815             }
1816             if (dontExecute)
1817                 strcat(statusPtr->cmdLine, " -n");
1818
1819             printf("Add scheduled dump as job %d\n", statusPtr->jobNumber);
1820             if ((atTime > ttoken.endTime) && (ttoken.endTime != NEVERDATE))
1821                 afs_com_err(whoami, 0,
1822                         "Warning: job %d starts after expiration of AFS token",
1823                         statusPtr->jobNumber);
1824
1825             unlock_Status();
1826         }
1827
1828         return (0);
1829     }
1830
1831     /* 
1832      * Read and execute the load file if specified.  The work of reading is done
1833      * in the main routine prior the dispatch call. loadFile and dontExecute are
1834      * global variables so this can take place in main.
1835      */
1836     if (loadfile) {
1837         loadFile = (char *)malloc(strlen(as->parms[6].items->data) + 1);
1838         if (!loadFile) {
1839             afs_com_err(whoami, BC_NOMEM, "");
1840             return BC_NOMEM;
1841         }
1842         strcpy(loadFile, as->parms[6].items->data);
1843         return 0;
1844     }
1845
1846     /* 
1847      * We are doing a real dump (no load file or timed dump).
1848      */
1849     printf("Starting dump of volume set '%s' (dump level '%s')\n", vsName,
1850            dumpPath);
1851
1852     /* For each dump-level above this one, see if the volumeset was dumped
1853      * at the level. We search all dump-levels since a higher dump-level
1854      * may have actually been done AFTER a lower dump level.
1855      */
1856     parent = level = problemFindingDump = 0;
1857     for (tds = baseds->parent; tds; tds = tds->parent) {
1858         /* Find the most recent dump of the volume-set at this dump-level.
1859          * Raise problem flag if didn't find a dump and a parent not yet found.
1860          */
1861         code = bcdb_FindLatestDump(vsName, tds->name, &dumpEntry);
1862         if (code) {
1863             if (!parent)
1864                 problemFindingDump = 1; /* skipping a dump level */
1865             continue;
1866         }
1867
1868         /* We found the most recent dump at this level. Now check
1869          * if we should use it by seeing if its full dump hierarchy 
1870          * exists. If it doesn't, we don't want to base our incremental
1871          * off of this dump. 
1872          */
1873         if (!parent || (dumpEntry.id > parent)) {
1874             /* Follow the parent dumps to see if they are all there */
1875             for (d = dumpEntry.parent; d; d = de.parent) {
1876                 code = bcdb_FindDumpByID(d, &de);
1877                 if (code)
1878                     break;
1879             }
1880
1881             /* If we found the entire level, remember it. Otherwise raise flag.
1882              * If we had already found a dump, raise the problem flag.
1883              */
1884             if (!d && !code) {
1885                 if (parent)
1886                     problemFindingDump = 1;
1887                 parent = dumpEntry.id;
1888                 level = dumpEntry.level + 1;
1889                 memcpy(&fde, &dumpEntry, sizeof(dumpEntry));
1890             } else {
1891                 /* Dump hierarchy not complete so can't base off the latest */
1892                 problemFindingDump = 1;
1893             }
1894         }
1895     }
1896
1897     /* If the problemflag was raise, it means we are not doing the 
1898      * dump at the level we requested it be done at.
1899      */
1900     if (problemFindingDump) {
1901         afs_com_err(whoami, 0,
1902                 "Warning: Doing level %d dump due to missing higher-level dumps",
1903                 level);
1904         if (parent) {
1905             printf("Parent dump: dump %s (DumpID %u)\n", fde.name, parent);
1906         }
1907     } else if (parent) {
1908         printf("Found parent: dump %s (DumpID %u)\n", fde.name, parent);
1909     }
1910
1911     /* Expand out the volume set into its component list of volumes. */
1912     code = bc_EvalVolumeSet(bc_globalConfig, tvs, &volsToDump, cstruct);
1913     if (code) {
1914         afs_com_err(whoami, code, "; Failed to evaluate volume set");
1915         return (-1);
1916     }
1917     if (!volsToDump) {
1918         printf("No volumes to dump\n");
1919         return (0);
1920     }
1921
1922     /* Determine what the clone time of the volume was when it was
1923      * last dumped (tve->date). This is the time from when an
1924      * incremental should be done (remains zero if a full dump).
1925      */
1926     if (parent) {
1927         for (tve = volsToDump; tve; tve = tve->next) {
1928             code = bcdb_FindClone(parent, tve->name, &tve->date);
1929             if (code)
1930                 tve->date = 0;
1931
1932             /* Get the time the volume was last cloned and see if the volume has
1933              * changed since then. Only do this when the "-n" flag is specified
1934              * because butc will get the cloneDate at time of dump.
1935              */
1936             if (dontExecute) {
1937                 code =
1938                     volImageTime(tve->server.sin_addr.s_addr, tve->partition,
1939                                  tve->vid, tve->volType, &tve->cloneDate);
1940                 if (code)
1941                     tve->cloneDate = 0;
1942
1943                 if (tve->cloneDate && (tve->cloneDate == tve->date)) {
1944                     afs_com_err(whoami, 0,
1945                             "Warning: Timestamp on volume %s unchanged from previous dump",
1946                             tve->name);
1947                 }
1948             }
1949         }
1950     }
1951
1952     if (dontExecute)
1953         printf("Would have dumped the following volumes:\n");
1954     else
1955         printf("Preparing to dump the following volumes:\n");
1956     for (tve = volsToDump; tve; tve = tve->next) {
1957         printf("\t%s (%u)\n", tve->name, tve->vid);
1958     }
1959     if (dontExecute)
1960         return (0);
1961
1962     code = bc_StartDmpRst(bc_globalConfig, dumpPath, vsName, volsToDump,
1963                           /*destServer */ NULL, /*destPartition */ 0,
1964                           /*fromDate */ 0,
1965                           /*newExt */ NULL, /*oldFlag */ 0,
1966                           parent, level, bc_Dumper, portp, /*portCount */ 1,
1967                           baseds, doAppend, dontExecute);
1968     if (code)
1969         afs_com_err(whoami, code, "; Failed to queue dump");
1970
1971     return (code);
1972 }                               /*bc_DumpCmd */
1973
1974
1975 /* bc_QuitCmd
1976  *      terminate the backup process. Insists that that all running backup
1977  *      jobs be terminated before it will quit
1978  * parameters:
1979  *      ignored
1980  */
1981
1982 bc_QuitCmd(as, arock)
1983      struct cmd_syndesc *as;
1984      char *arock;
1985 {
1986     int i;
1987     struct bc_dumpTask *td;
1988     extern dlqlinkT statusHead;
1989     dlqlinkP ptr;
1990     statusP statusPtr;
1991
1992     /* Check the status list for outstanding jobs */
1993     lock_Status();
1994     for (ptr = (&statusHead)->dlq_next; ptr != &statusHead;
1995          ptr = ptr->dlq_next) {
1996         statusPtr = (statusP) ptr;
1997         if (!(statusPtr->flags & ABORT_REQUEST)) {
1998             unlock_Status();
1999             afs_com_err(whoami, 0, "Job %d still running (and not aborted)",
2000                     statusPtr->jobNumber);
2001             afs_com_err(whoami, 0,
2002                     "You must at least 'kill' all running jobs before quitting");
2003             return -1;
2004         }
2005     }
2006     unlock_Status();
2007
2008     /* A job still being initialized (but no status structure or job number since it
2009      * has not been handed to a butc process yet)
2010      */
2011     for (td = bc_dumpTasks, i = 0; i < BC_MAXSIMDUMPS; i++, td++) {
2012         if (td->flags & BC_DI_INUSE) {
2013             afs_com_err(whoami, 0, "A job is still running");
2014             afs_com_err(whoami, 0,
2015                     "You must at least 'kill' all running jobs before quitting");
2016             return -1;
2017         }
2018     }
2019
2020 #ifdef AFS_NT40_ENV
2021     /* close the all temp text files before quitting */
2022     for (i = 0; i < TB_NUM; i++)
2023         bc_closeTextFile(&bc_globalConfig->configText[i],
2024                          &bc_globalConfig->tmpTextFileNames[i][0]);
2025 #endif
2026     exit(lastTaskCode);
2027 }
2028
2029 /* bc_LabelTapeCmd
2030  *      Labels a tape i.e. request the tape coordinator to perform this
2031  *      operation
2032  */
2033
2034 bc_LabelTapeCmd(as, arock)
2035      struct cmd_syndesc *as;
2036      char *arock;
2037 {
2038     char *tapename = 0, *pname = 0;
2039     afs_int32 size;
2040     afs_int32 code;
2041     afs_int32 port = 0;
2042
2043     code = bc_UpdateHosts();
2044     if (code) {
2045         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
2046         return (code);
2047     }
2048
2049     if (as->parms[0].items) {   /* -name */
2050         tapename = as->parms[0].items->data;
2051         if (strlen(tapename) >= TC_MAXTAPELEN) {
2052             afs_com_err(whoami, 0, "AFS tape name '%s' is too long", tapename);
2053             return -1;
2054         }
2055     }
2056
2057     if (as->parms[3].items) {   /* -pname */
2058         if (tapename) {
2059             afs_com_err(whoami, 0, "Can only specify -name or -pname");
2060             return -1;
2061         }
2062         pname = as->parms[3].items->data;
2063         if (strlen(pname) >= TC_MAXTAPELEN) {
2064             afs_com_err(whoami, 0, "Permanent tape name '%s' is too long", pname);
2065             return -1;
2066         }
2067     }
2068
2069     if (as->parms[1].items) {
2070         size = bc_FloatATOI(as->parms[1].items->data);
2071         if (size == -1) {
2072             afs_com_err(whoami, 0, "Bad syntax for tape size '%s'",
2073                     as->parms[1].items->data);
2074             return -1;
2075         }
2076     } else
2077         size = 0;
2078
2079     if (as->parms[2].items) {
2080         port = getPortOffset(as->parms[2].items->data);
2081         if (port < 0)
2082             return (BC_BADARG);
2083     }
2084
2085     code = bc_LabelTape(tapename, pname, size, bc_globalConfig, port);
2086     if (code)
2087         return code;
2088     return 0;
2089 }
2090
2091 /* bc_ReadLabelCmd
2092  *      read the label on a tape
2093  * params:
2094  *      optional port number
2095  */
2096
2097 bc_ReadLabelCmd(as, arock)
2098      struct cmd_syndesc *as;
2099      char *arock;
2100 {
2101     afs_int32 code;
2102     afs_int32 port = 0;
2103
2104     code = bc_UpdateHosts();
2105     if (code) {
2106         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
2107         return (code);
2108     }
2109
2110     if (as->parms[0].items) {
2111         port = getPortOffset(as->parms[0].items->data);
2112         if (port < 0)
2113             return (BC_BADARG);
2114     }
2115
2116     code = bc_ReadLabel(bc_globalConfig, port);
2117     if (code)
2118         return code;
2119     return 0;
2120 }
2121
2122 /* bc_ScanDumpsCmd
2123  *      read content information from dump tapes, and if user desires,
2124  *      add it to the database
2125  */
2126
2127 bc_ScanDumpsCmd(as, arock)
2128      struct cmd_syndesc *as;
2129      char *arock;
2130 {
2131     afs_int32 port = 0;
2132     afs_int32 dbAddFlag = 0;
2133     afs_int32 code;
2134
2135     code = bc_UpdateHosts();
2136     if (code) {
2137         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
2138         return (code);
2139     }
2140
2141     /* check for flag */
2142     if (as->parms[0].items != 0) {      /* add scan to database */
2143         dbAddFlag++;
2144     }
2145
2146     /* check for port */
2147     if (as->parms[1].items) {
2148         port = getPortOffset(as->parms[1].items->data);
2149         if (port < 0)
2150             return (BC_BADARG);
2151     }
2152
2153     code = bc_ScanDumps(bc_globalConfig, dbAddFlag, port);
2154     return (code);
2155 }
2156
2157 /* bc_ParseExpiration
2158  *
2159  * Notes:
2160  *      dates are specified as absolute or relative, the syntax is:
2161  *      absolute:       at %d/%d/%d [%d:%d]     where [..] is optional
2162  *      relative:       in [%dy][%dm][%dd]      where at least one component
2163  *                                              must be specified
2164  */
2165
2166 afs_int32
2167 bc_ParseExpiration(paramPtr, expType, expDate)
2168      struct cmd_parmdesc *paramPtr;
2169      afs_int32 *expType;
2170      afs_int32 *expDate;
2171 {
2172     struct cmd_item *itemPtr;
2173     struct ktime_date kt;
2174     char *dateString = 0;
2175     afs_int32 code = 0;
2176
2177     *expType = BC_NO_EXPDATE;
2178     *expDate = 0;
2179
2180     if (!paramPtr->items)
2181         ERROR(0);               /* no expiration specified */
2182
2183     /* some form of expiration date specified. First validate the prefix */
2184     itemPtr = paramPtr->items;
2185
2186     if (strcmp(itemPtr->data, "at") == 0) {
2187         *expType = BC_ABS_EXPDATE;
2188
2189         dateString = concatParams(itemPtr->next);
2190         if (!dateString)
2191             ERROR(1);
2192
2193         code = ktime_DateToLong(dateString, expDate);
2194         if (code)
2195             ERROR(1);
2196     } else if (strcmp(itemPtr->data, "in") == 0) {
2197         *expType = BC_REL_EXPDATE;
2198
2199         dateString = concatParams(itemPtr->next);
2200         if (!dateString)
2201             ERROR(1);
2202
2203         code = ParseRelDate(dateString, &kt);
2204         if (code)
2205             ERROR(1);
2206         *expDate = ktimeRelDate_ToLong(&kt);
2207     } else {
2208         dateString = concatParams(itemPtr);
2209         if (!dateString)
2210             ERROR(1);
2211
2212         if (ktime_DateToLong(dateString, expDate) == 0) {
2213             *expType = BC_ABS_EXPDATE;
2214             code = ktime_DateToLong(dateString, expDate);
2215             if (code)
2216                 ERROR(1);
2217         } else if (ParseRelDate(dateString, &kt) == 0) {
2218             *expType = BC_REL_EXPDATE;
2219             *expDate = ktimeRelDate_ToLong(&kt);
2220         } else {
2221             ERROR(1);
2222         }
2223     }
2224
2225   error_exit:
2226     if (dateString)
2227         free(dateString);
2228     return (code);
2229 }
2230
2231 /* database lookup command and routines */
2232
2233 /* bc_dblookupCmd
2234  *      Currently a single option, volumename to search for. Reports
2235  *      all dumps containing the specified volume
2236  */
2237
2238 bc_dblookupCmd(as, arock)
2239      struct cmd_syndesc *as;
2240      char *arock;
2241 {
2242     struct cmd_item *ciptr;
2243     afs_int32 code;
2244
2245     ciptr = as->parms[0].items;
2246     if (ciptr == 0)             /* no argument specified */
2247         return (-1);
2248
2249     code = DBLookupByVolume(ciptr->data);
2250     return (code);
2251 }
2252
2253
2254
2255 /* for ubik version */
2256
2257 bc_dbVerifyCmd(as, arock)
2258      struct cmd_syndesc *as;
2259      char *arock;
2260 {
2261     afs_int32 status;
2262     afs_int32 orphans;
2263     afs_int32 host;
2264
2265     struct hostent *hostPtr;
2266     int detail;
2267     afs_int32 code = 0;
2268
2269     extern struct udbHandleS udbHandle;
2270
2271     detail = (as->parms[0].items ? 1 : 0);      /* print more details */
2272
2273     code =
2274         ubik_Call(BUDB_DbVerify, udbHandle.uh_client, 0, &status, &orphans,
2275                   &host);
2276
2277     if (code) {
2278         afs_com_err(whoami, code, "; Unable to verify database");
2279         return (-1);
2280     }
2281
2282     /* verification call succeeded */
2283
2284     if (status == 0)
2285         printf("Database OK\n");
2286     else
2287         afs_com_err(whoami, status, "; Database is NOT_OK");
2288
2289     if (detail) {
2290         printf("Orphan blocks %d\n", orphans);
2291
2292         if (!host)
2293             printf("Unable to lookup host id\n");
2294         else {
2295             hostPtr = gethostbyaddr((char *)&host, sizeof(host), AF_INET);
2296             if (hostPtr == 0)
2297                 printf("Database checker was %d.%d.%d.%d\n",
2298                        ((host & 0xFF000000) >> 24), ((host & 0xFF0000) >> 16),
2299                        ((host & 0xFF00) >> 8), (host & 0xFF));
2300             else
2301                 printf("Database checker was %s\n", hostPtr->h_name);
2302         }
2303     }
2304     return ((status ? -1 : 0));
2305 }
2306
2307 /* deleteDump:
2308  * Delete a dump. If port is >= 0, it means try to delete from XBSA server
2309  */
2310 deleteDump(dumpid, port, force)
2311      afs_uint32 dumpid;         /* The dumpid to delete */
2312      afs_int32 port;            /* port==-1 means don't go to butc */
2313      afs_int32 force;
2314 {
2315     afs_int32 code = 0, tcode;
2316     struct budb_dumpEntry dumpEntry;
2317     struct rx_connection *tconn = 0;
2318     afs_int32 i, taskflag, xbsadump;
2319     statusP statusPtr = 0;
2320     budb_dumpsList dumps;
2321     afs_uint32 taskId;
2322
2323     /* If the port is set, we will try to send a delete request to the butc */
2324     if (port >= 0) {
2325         tcode = bc_UpdateHosts();
2326         if (tcode) {
2327             afs_com_err(whoami, tcode, "; Can't retrieve tape hosts");
2328             ERROR(tcode);
2329         }
2330
2331         /* Find the dump in the backup database */
2332         tcode = bcdb_FindDumpByID(dumpid, &dumpEntry);
2333         if (tcode) {
2334             afs_com_err(whoami, tcode, "; Unable to locate dumpID %u in database",
2335                     dumpid);
2336             ERROR(tcode);
2337         }
2338         xbsadump = (dumpEntry.flags & (BUDB_DUMP_ADSM | BUDB_DUMP_BUTA));
2339
2340         /* If dump is to an XBSA server, connect to butc and send it
2341          * the dump to delete. Butc will contact the XBSA server.
2342          * The dump will not be an appended dump because XBSA butc 
2343          * does not support the append option.
2344          */
2345         if (xbsadump && dumpEntry.nVolumes) {
2346             tcode = ConnectButc(bc_globalConfig, port, &tconn);
2347             if (tcode)
2348                 ERROR(tcode);
2349
2350             tcode = TC_DeleteDump(tconn, dumpid, &taskId);
2351             if (tcode) {
2352                 if (tcode == RXGEN_OPCODE)
2353                     tcode = BC_VERSIONFAIL;
2354                 afs_com_err(whoami, tcode,
2355                         "; Unable to delete dumpID %u via butc", dumpid);
2356                 ERROR(tcode);
2357             }
2358
2359             statusPtr = createStatusNode();
2360             lock_Status();
2361             statusPtr->taskId = taskId;
2362             statusPtr->port = port;
2363             statusPtr->jobNumber = bc_jobNumber();
2364             statusPtr->flags |= (SILENT | NOREMOVE);    /* No msg & keep statusPtr */
2365             statusPtr->flags &= ~STARTING;      /* clearstatus to examine */
2366             sprintf(statusPtr->taskName, "DeleteDump");
2367             unlock_Status();
2368
2369             /* Wait for task to finish */
2370             taskflag = waitForTask(taskId);
2371             if (taskflag & (TASK_ERROR | ABORT_DONE)) {
2372                 afs_com_err(whoami, BUTX_DELETEOBJFAIL,
2373                         "; Unable to delete dumpID %u via butc", dumpid);
2374                 ERROR(BUTX_DELETEOBJFAIL);      /* the task failed */
2375             }
2376         }
2377     }
2378
2379   error_exit:
2380     if (statusPtr)
2381         deleteStatusNode(statusPtr);    /* Clean up statusPtr - because NOREMOVE */
2382     if (tconn)
2383         rx_DestroyConnection(tconn);    /* Destroy the connection */
2384
2385     /* Remove the dump from the backup database */
2386     if (!code || force) {
2387         dumps.budb_dumpsList_len = 0;
2388         dumps.budb_dumpsList_val = 0;
2389
2390         tcode = bcdb_deleteDump(dumpid, 0, 0, &dumps);
2391         if (tcode) {
2392             afs_com_err(whoami, tcode,
2393                     "; Unable to delete dumpID %u from database", dumpid);
2394             dumps.budb_dumpsList_len = 0;
2395             if (!code)
2396                 code = tcode;
2397         }
2398
2399         /* Display the dumps that were deleted - includes appended dumps */
2400         for (i = 0; i < dumps.budb_dumpsList_len; i++)
2401             printf("     %u%s\n", dumps.budb_dumpsList_val[i],
2402                    (i > 0) ? " Appended Dump" : "");
2403         if (dumps.budb_dumpsList_val)
2404             free(dumps.budb_dumpsList_val);
2405     }
2406
2407     return code;
2408 }
2409
2410 /* bc_deleteDumpCmd
2411  *      Delete a specified dump from the database
2412  * entry:
2413  *      dump id - single required arg as param 0.
2414  */
2415
2416 bc_deleteDumpCmd(as, arock)
2417      struct cmd_syndesc *as;
2418      char *arock;
2419 {
2420     afs_uint32 dumpid;
2421     afs_int32 code = 0;
2422     afs_int32 rcode = 0;
2423     afs_int32 groupId = 0, havegroupid, sflags, noexecute;
2424     struct cmd_item *ti;
2425     afs_uint32 fromTime = 0, toTime = 0, havetime = 0;
2426     char *timeString;
2427     budb_dumpsList dumps, flags;
2428     int i;
2429     afs_int32 port = -1, dbonly = 0, force;
2430
2431     /* Must specify at least one of -dumpid, -from, or -to */
2432     if (!as->parms[0].items && !as->parms[1].items && !as->parms[2].items
2433         && !as->parms[4].items) {
2434         afs_com_err(whoami, 0, "Must specify at least one field");
2435         return (-1);
2436     }
2437
2438     /* Must have -to option with -from option */
2439     if (as->parms[1].items && !as->parms[2].items) {
2440         afs_com_err(whoami, 0, "Must specify '-to' field with '-from' field");
2441         return (-1);
2442     }
2443
2444     /* Get the time to delete from */
2445     if (as->parms[1].items) {   /* -from */
2446         timeString = concatParams(as->parms[1].items);
2447         if (!timeString)
2448             return (-1);
2449
2450         /*
2451          * Now parse this string for the time to start.
2452          */
2453         code = ktime_DateToLong(timeString, &fromTime);
2454         free(timeString);
2455         if (code) {
2456             afs_com_err(whoami, 0, "Can't parse 'from' date and time");
2457             afs_com_err(whoami, 0, "%s", ktime_GetDateUsage());
2458             return (-1);
2459         }
2460         havetime = 1;
2461     }
2462
2463     port = (as->parms[3].items ? getPortOffset(as->parms[3].items->data) : 0);  /* -port */
2464     if (as->parms[5].items)     /* -dbonly */
2465         port = -1;
2466
2467     force = (as->parms[6].items ? 1 : 0);
2468
2469     havegroupid = (as->parms[4].items ? 1 : 0);
2470     if (havegroupid)
2471         groupId = atoi(as->parms[4].items->data);
2472
2473     noexecute = (as->parms[7].items ? 1 : 0);
2474
2475     /* Get the time to delete to */
2476     if (as->parms[2].items) {   /* -to */
2477         timeString = concatParams(as->parms[2].items);
2478         if (!timeString)
2479             return (-1);
2480
2481         /*
2482          * Now parse this string for the time to start. Simce
2483          * times are at minute granularity, add 59 seconds.
2484          */
2485         code = ktime_DateToLong(timeString, &toTime);
2486         free(timeString);
2487         if (code) {
2488             afs_com_err(whoami, 0, "Can't parse 'to' date and time");
2489             afs_com_err(whoami, 0, "%s", ktime_GetDateUsage());
2490             return (-1);
2491         }
2492         toTime += 59;
2493         havetime = 1;
2494     }
2495
2496     if (fromTime > toTime) {
2497         afs_com_err(whoami, 0,
2498                 "'-from' date/time cannot be later than '-to' date/time");
2499         return (-1);
2500     }
2501
2502     /* Remove speicific dump ids - if any */
2503     printf("The following dumps %s deleted:\n",
2504            (noexecute ? "would have been" : "were"));
2505     for (ti = as->parms[0].items; ti != 0; ti = ti->next) {     /* -dumpid */
2506         dumpid = atoi(ti->data);
2507         if (!noexecute) {
2508             code = deleteDump(dumpid, port, force);
2509         } else {
2510             printf("     %u\n", dumpid);
2511         }
2512     }
2513
2514     /*
2515      * Now remove dumps between to and from dates.
2516      */
2517     if (havegroupid || havetime) {
2518         dumps.budb_dumpsList_len = 0;
2519         dumps.budb_dumpsList_val = 0;
2520         flags.budb_dumpsList_len = 0;
2521         flags.budb_dumpsList_val = 0;
2522         sflags = 0;
2523         if (havegroupid)
2524             sflags |= BUDB_OP_GROUPID;
2525         if (havetime)
2526             sflags |= BUDB_OP_DATES;
2527
2528         code =
2529             bcdb_listDumps(sflags, groupId, fromTime, toTime, &dumps, &flags);
2530         if (code) {
2531             afs_com_err(whoami, code,
2532                     "; Error while deleting dumps from %u to %u", fromTime,
2533                     toTime);
2534             rcode = -1;
2535         }
2536
2537         for (i = 0; i < dumps.budb_dumpsList_len; i++) {
2538             if (flags.budb_dumpsList_val[i] & BUDB_OP_DBDUMP)
2539                 continue;
2540
2541             if (!noexecute) {
2542                 if (flags.budb_dumpsList_val[i] & BUDB_OP_APPDUMP)
2543                     continue;
2544                 code = deleteDump(dumps.budb_dumpsList_val[i], port, force);
2545                 /* Ignore code and continue */
2546             } else {
2547                 printf("     %u%s%s\n", dumps.budb_dumpsList_val[i],
2548                        (flags.
2549                         budb_dumpsList_val[i] & BUDB_OP_APPDUMP) ?
2550                        " Appended Dump" : "",
2551                        (flags.
2552                         budb_dumpsList_val[i] & BUDB_OP_DBDUMP) ?
2553                        " Database Dump" : "");
2554
2555             }
2556         }
2557
2558         if (dumps.budb_dumpsList_val)
2559             free(dumps.budb_dumpsList_val);
2560         dumps.budb_dumpsList_len = 0;
2561         dumps.budb_dumpsList_val = 0;
2562         if (flags.budb_dumpsList_val)
2563             free(flags.budb_dumpsList_val);
2564         flags.budb_dumpsList_len = 0;
2565         flags.budb_dumpsList_val = 0;
2566     }
2567
2568     return (rcode);
2569 }
2570
2571 bc_saveDbCmd(as, arock)
2572      struct cmd_syndesc *as;
2573      char *arock;
2574 {
2575     struct rx_connection *tconn;
2576     afs_int32 portOffset = 0;
2577     statusP statusPtr;
2578     afs_uint32 taskId;
2579     afs_int32 code;
2580     afs_uint32 toTime;
2581     char *timeString;
2582
2583     code = bc_UpdateHosts();
2584     if (code) {
2585         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
2586         return (code);
2587     }
2588
2589     if (as->parms[0].items) {
2590         portOffset = getPortOffset(as->parms[0].items->data);
2591         if (portOffset < 0)
2592             return (BC_BADARG);
2593     }
2594
2595     /* Get the time to delete to */
2596     if (as->parms[1].items) {
2597         timeString = concatParams(as->parms[1].items);
2598         if (!timeString)
2599             return (-1);
2600
2601         /*
2602          * Now parse this string for the time. Since
2603          * times are at minute granularity, add 59 seconds.
2604          */
2605         code = ktime_DateToLong(timeString, &toTime);
2606         free(timeString);
2607         if (code) {
2608             afs_com_err(whoami, 0, "Can't parse '-archive' date and time");
2609             afs_com_err(whoami, 0, "%s", ktime_GetDateUsage());
2610             return (-1);
2611         }
2612         toTime += 59;
2613     } else
2614         toTime = 0;
2615
2616     code = ConnectButc(bc_globalConfig, portOffset, &tconn);
2617     if (code)
2618         return (code);
2619
2620     code = TC_SaveDb(tconn, toTime, &taskId);
2621     if (code) {
2622         afs_com_err(whoami, code, "; Failed to save database");
2623         goto exit;
2624     }
2625
2626     /* create status monitor block */
2627     statusPtr = createStatusNode();
2628     lock_Status();
2629     statusPtr->taskId = taskId;
2630     statusPtr->port = portOffset;
2631     statusPtr->jobNumber = bc_jobNumber();
2632     statusPtr->flags &= ~STARTING;      /* clearstatus to examine */
2633     sprintf(statusPtr->taskName, "SaveDb");
2634     unlock_Status();
2635
2636   exit:
2637     rx_DestroyConnection(tconn);
2638     return (code);
2639 }
2640
2641 bc_restoreDbCmd(as, arock)
2642      struct cmd_syndesc *as;
2643      char *arock;
2644 {
2645     struct rx_connection *tconn;
2646     afs_int32 portOffset = 0;
2647     statusP statusPtr;
2648     afs_uint32 taskId;
2649     afs_int32 code;
2650
2651     code = bc_UpdateHosts();
2652     if (code) {
2653         afs_com_err(whoami, code, "; Can't retrieve tape hosts");
2654         return (code);
2655     }
2656
2657     if (as->parms[0].items) {
2658         portOffset = getPortOffset(as->parms[0].items->data);
2659         if (portOffset < 0)
2660             return (BC_BADARG);
2661     }
2662
2663     code = ConnectButc(bc_globalConfig, portOffset, &tconn);
2664     if (code)
2665         return (code);
2666
2667     code = TC_RestoreDb(tconn, &taskId);
2668     if (code) {
2669         afs_com_err(whoami, code, "; Failed to restore database");
2670         goto exit;
2671     }
2672
2673     /* create status monitor block */
2674     statusPtr = createStatusNode();
2675     lock_Status();
2676     statusPtr->taskId = taskId;
2677     statusPtr->port = portOffset;
2678     statusPtr->jobNumber = bc_jobNumber();
2679     statusPtr->flags &= ~STARTING;      /* clearstatus to examine */
2680     sprintf(statusPtr->taskName, "RestoreDb");
2681     unlock_Status();
2682
2683   exit:
2684     rx_DestroyConnection(tconn);
2685     return (code);
2686 }
2687
2688 /* ----------------------------------
2689  * supporting routines for database examination 
2690  * ----------------------------------
2691  */
2692
2693 /* structures and defines for DBLookupByVolume */
2694
2695 #define DBL_MAX_VOLUMES 20      /* max. for each dump */
2696
2697 /* dumpedVol - saves interesting information so that we can print it out
2698  *      later
2699  */
2700
2701 struct dumpedVol {
2702     struct dumpedVol *next;
2703     afs_int32 dumpID;
2704     afs_int32 initialDumpID;
2705     char tapeName[BU_MAXTAPELEN];
2706     afs_int32 level;
2707     afs_int32 parent;
2708     afs_int32 createTime;
2709     afs_int32 incTime;          /* actually the clone time */
2710 };
2711
2712 /* -----------------------------------------
2713  * routines for examining the database
2714  * -----------------------------------------
2715  */
2716
2717 /* DBLookupByVolume
2718  *      Lookup the volumename in the backup database and print the results
2719  * entry:
2720  *      volumeName - volume to lookup
2721  */
2722
2723 DBLookupByVolume(volumeName)
2724      char *volumeName;
2725 {
2726     struct budb_dumpEntry dumpEntry;
2727     struct budb_volumeEntry volumeEntry[DBL_MAX_VOLUMES];
2728     afs_int32 numEntries;
2729     afs_int32 tapedumpid;
2730     afs_int32 last, next;
2731
2732     struct dumpedVol *dvptr = 0;
2733     struct dumpedVol *tempPtr = 0;
2734     afs_int32 code = 0;
2735     int i, pass;
2736     char vname[BU_MAXNAMELEN];
2737     char ds[50];
2738
2739     for (pass = 0; pass < 2; pass++) {
2740         /*p */
2741         /* On second pass, search for backup volume */
2742         if (pass == 1) {
2743             if (!BackupName(volumeName)) {
2744                 strcpy(vname, volumeName);
2745                 strcat(vname, ".backup");
2746                 volumeName = vname;
2747             } else {
2748                 continue;
2749             }
2750         }
2751
2752         last = next = 0;
2753         while (next != -1) {    /*w */
2754             code =
2755                 bcdb_LookupVolume(volumeName, &volumeEntry[0], last, &next,
2756                                   DBL_MAX_VOLUMES, &numEntries);
2757             if (code)
2758                 break;
2759
2760             /* add the volumes to the list */
2761             for (i = 0; i < numEntries; i++) {  /*f */
2762                 struct dumpedVol *insPtr, **prevPtr;
2763
2764                 tempPtr =
2765                     (struct dumpedVol *)malloc(sizeof(struct dumpedVol));
2766                 if (!tempPtr)
2767                     ERROR(BC_NOMEM);
2768
2769                 memset(tempPtr, 0, sizeof(*tempPtr));
2770                 tempPtr->incTime = volumeEntry[i].clone;
2771                 tempPtr->dumpID = volumeEntry[i].dump;
2772                 strncpy(tempPtr->tapeName, volumeEntry[i].tape,
2773                         BU_MAXTAPELEN);
2774
2775                 /* check if we need to null terminate it - just for safety */
2776                 if (strlen(volumeEntry[i].tape) >= BU_MAXTAPELEN)
2777                     tempPtr->tapeName[BU_MAXTAPELEN - 1] = 0;
2778
2779                 code = bcdb_FindDumpByID(tempPtr->dumpID, &dumpEntry);
2780                 if (code) {
2781                     free(tempPtr);
2782                     ERROR(code);
2783                 }
2784
2785                 tempPtr->initialDumpID = dumpEntry.initialDumpID;
2786                 tempPtr->parent = dumpEntry.parent;
2787                 tempPtr->level = dumpEntry.level;
2788                 tempPtr->createTime = dumpEntry.created;
2789
2790                 /* add volume to list in reverse chronological order */
2791                 prevPtr = &dvptr;
2792                 insPtr = dvptr;
2793
2794                 while ((insPtr != 0)
2795                        && (insPtr->createTime > tempPtr->createTime)
2796                     ) {
2797                     prevPtr = &insPtr->next;
2798                     insPtr = insPtr->next;
2799                 }
2800
2801                 /* now at the right place - insert the block */
2802                 tempPtr->next = *prevPtr;
2803                 *prevPtr = tempPtr;
2804             }                   /*f */
2805
2806             last = next;
2807         }                       /*w */
2808     }                           /*p */
2809
2810     if (dvptr) {
2811         printf
2812             ("DumpID    lvl parentID creation date     clone date       tape name\n");
2813         for (tempPtr = dvptr; tempPtr; tempPtr = tempPtr->next) {
2814             /* For the user, the tape name is its name and initial dump id */
2815             tapedumpid =
2816                 (tempPtr->initialDumpID ? tempPtr->initialDumpID : tempPtr->
2817                  dumpID);
2818
2819             /* beware the static items in compactDateString */
2820             compactDateString(&tempPtr->createTime, ds, 50);
2821             printf("%-9d %-2d %-9d %16s", tempPtr->dumpID, tempPtr->level,
2822                    tempPtr->parent, ds);
2823             compactDateString(&tempPtr->incTime, ds, 50);
2824             printf("  %16s %s (%u)\n", ds, tempPtr->tapeName, tapedumpid);
2825         }
2826         code = 0;
2827     }
2828
2829   error_exit:
2830     for (tempPtr = dvptr; tempPtr; tempPtr = dvptr) {
2831         dvptr = dvptr->next;
2832         free(tempPtr);
2833     }
2834
2835     if (code)
2836         afs_com_err(whoami, code, "");
2837     return (code);
2838 }
2839
2840 /* structures for dumpInfo */
2841
2842 struct volumeLink {
2843     struct volumeLink *nextVolume;
2844     struct budb_volumeEntry volumeEntry;
2845 };
2846
2847 struct tapeLink {
2848     struct tapeLink *nextTape;
2849     struct budb_tapeEntry tapeEntry;
2850     struct volumeLink *firstVolume;
2851 };
2852
2853
2854 /* dumpInfo
2855  *      print information about a dump and all its tapes and volumes.
2856  */
2857
2858 afs_int32
2859 dumpInfo(dumpid, detailFlag)
2860      afs_int32 dumpid;
2861      afs_int32 detailFlag;
2862 {
2863     struct budb_dumpEntry dumpEntry;
2864     struct tapeLink *head = 0;
2865     struct tapeLink *tapeLinkPtr, *lastTapeLinkPtr;
2866     struct volumeLink **link, *volumeLinkPtr, *lastVolumeLinkPtr;
2867
2868     budb_volumeList vl;
2869     afs_int32 last, next, dbTime;
2870     afs_int32 tapedumpid;
2871
2872     int tapeNumber;
2873     int i;
2874     int dbDump;
2875     afs_int32 code = 0;
2876     char ds[50];
2877
2878     extern struct udbHandleS udbHandle;
2879
2880     tapeLinkPtr = 0;
2881     lastTapeLinkPtr = 0;
2882     volumeLinkPtr = 0;
2883     lastVolumeLinkPtr = 0;
2884
2885     /* first get information about the dump */
2886
2887     code = bcdb_FindDumpByID(dumpid, &dumpEntry);
2888     if (code)
2889         ERROR(code);
2890
2891     /* For the user, the tape name is its name and initial dump id */
2892     tapedumpid = (dumpEntry.initialDumpID ? dumpEntry.initialDumpID : dumpid);
2893
2894     /* Is this a database dump id or not */
2895     if (strcmp(dumpEntry.name, DUMP_TAPE_NAME) == 0)
2896         dbDump = 1;
2897     else
2898         dbDump = 0;
2899
2900     /* print out the information about the dump */
2901     if (detailFlag) {
2902         printf("\nDump\n");
2903         printf("----\n");
2904         printDumpEntry(&dumpEntry);
2905     } else {
2906         time_t t = dumpEntry.created;
2907         if (dbDump)
2908             printf("Dump: id %u, created: %s\n", dumpEntry.id,
2909                    ctime(&t));
2910         else
2911             printf("Dump: id %u, level %d, volumes %d, created: %s\n",
2912                    dumpEntry.id, dumpEntry.level, dumpEntry.nVolumes,
2913                    ctime(&t));
2914     }
2915
2916     if (!detailFlag && (strlen(dumpEntry.tapes.tapeServer) > 0)
2917         && (dumpEntry.flags & (BUDB_DUMP_ADSM | BUDB_DUMP_BUTA))) {
2918         printf("Backup Service: TSM: Server: %s\n",
2919                dumpEntry.tapes.tapeServer);
2920     }
2921
2922     /* now get the list of tapes */
2923     for (tapeNumber = dumpEntry.tapes.b; tapeNumber <= dumpEntry.tapes.maxTapes; tapeNumber++) {        /*f */
2924         tapeLinkPtr = (struct tapeLink *)malloc(sizeof(struct tapeLink));
2925         if (!tapeLinkPtr) {
2926             afs_com_err(whoami, BC_NOMEM, "");
2927             ERROR(BC_NOMEM);
2928         }
2929
2930         memset(tapeLinkPtr, 0, sizeof(*tapeLinkPtr));
2931         code = bcdb_FindTapeSeq(dumpid, tapeNumber, &tapeLinkPtr->tapeEntry);
2932         if (code) {
2933             code = 0;
2934             free(tapeLinkPtr);
2935             continue;
2936         }
2937
2938         /* add this tape to  previous chain */
2939         if (lastTapeLinkPtr) {
2940             lastTapeLinkPtr->nextTape = tapeLinkPtr;
2941             lastTapeLinkPtr = tapeLinkPtr;
2942         }
2943
2944         if (head == 0) {
2945             head = tapeLinkPtr;
2946             lastTapeLinkPtr = head;
2947         }
2948
2949         next = 0;
2950         while (next != -1) {    /*wn */
2951             vl.budb_volumeList_len = 0;
2952             vl.budb_volumeList_val = 0;
2953             last = next;
2954
2955             /* now get all the volumes in this dump. */
2956             code = ubik_Call_SingleServer(BUDB_GetVolumes, udbHandle.uh_client, UF_SINGLESERVER, BUDB_MAJORVERSION, BUDB_OP_DUMPID | BUDB_OP_TAPENAME, tapeLinkPtr->tapeEntry.name,     /* tape name */
2957                                           dumpid,       /* dumpid (not initial dumpid) */
2958                                           0,    /* end */
2959                                           last, /* last */
2960                                           &next,        /* nextindex */
2961                                           &dbTime,      /* update time */
2962                                           &vl);
2963
2964             if (code) {
2965                 if (code == BUDB_ENDOFLIST) {   /* 0 volumes on tape */
2966                     code = 0;
2967                     break;
2968                 }
2969                 ERROR(code);
2970             }
2971
2972             for (i = 0; i < vl.budb_volumeList_len; i++) {
2973                 link = &tapeLinkPtr->firstVolume;
2974
2975                 volumeLinkPtr =
2976                     (struct volumeLink *)malloc(sizeof(struct volumeLink));
2977                 if (!volumeLinkPtr) {
2978                     afs_com_err(whoami, BC_NOMEM, "");
2979                     ERROR(BC_NOMEM);
2980                 }
2981                 memset(volumeLinkPtr, 0, sizeof(*volumeLinkPtr));
2982
2983                 memcpy(&volumeLinkPtr->volumeEntry,
2984                        &vl.budb_volumeList_val[i],
2985                        sizeof(struct budb_volumeEntry));
2986
2987                 /* now insert it onto the right place */
2988                 while ((*link != 0)
2989                        && (volumeLinkPtr->volumeEntry.position >
2990                            (*link)->volumeEntry.position)) {
2991                     link = &((*link)->nextVolume);
2992                 }
2993
2994                 /* now link it in */
2995                 volumeLinkPtr->nextVolume = *link;
2996                 *link = volumeLinkPtr;
2997             }
2998
2999             if (vl.budb_volumeList_val)
3000                 free(vl.budb_volumeList_val);
3001         }                       /*wn */
3002     }                           /*f */
3003
3004     for (tapeLinkPtr = head; tapeLinkPtr; tapeLinkPtr = tapeLinkPtr->nextTape) {
3005         if (detailFlag) {
3006             printf("\nTape\n");
3007             printf("----\n");
3008             printTapeEntry(&tapeLinkPtr->tapeEntry);
3009         } else {
3010             printf("Tape: name %s (%u)\n", tapeLinkPtr->tapeEntry.name,
3011                    tapedumpid);
3012             printf("nVolumes %d, ", tapeLinkPtr->tapeEntry.nVolumes);
3013             compactDateString(&tapeLinkPtr->tapeEntry.written, ds, 50);
3014             printf("created %16s", ds);
3015             if (tapeLinkPtr->tapeEntry.expires != 0) {
3016                 compactDateString(&tapeLinkPtr->tapeEntry.expires, ds, 50);
3017                 printf(", expires %16s", ds);
3018             }
3019             printf("\n\n");
3020         }
3021
3022         /* print out all the volumes */
3023
3024         /* print header for volume listing - db dumps have no volumes */
3025         if ((detailFlag == 0) && !dbDump)
3026             printf("%4s %16s %9s %-s\n", "Pos", "Clone time", "Nbytes",
3027                    "Volume");
3028
3029         for (volumeLinkPtr = tapeLinkPtr->firstVolume; volumeLinkPtr;
3030              volumeLinkPtr = volumeLinkPtr->nextVolume) {
3031             if (detailFlag) {
3032                 printf("\nVolume\n");
3033                 printf("------\n");
3034                 printVolumeEntry(&volumeLinkPtr->volumeEntry);
3035             } else {
3036                 compactDateString(&volumeLinkPtr->volumeEntry.clone, ds, 50),
3037                     printf("%4d %s %10u %16s\n",
3038                            volumeLinkPtr->volumeEntry.position, ds,
3039                            volumeLinkPtr->volumeEntry.nBytes,
3040                            volumeLinkPtr->volumeEntry.name);
3041             }
3042         }
3043     }
3044
3045   error_exit:
3046     if (code)
3047         afs_com_err("dumpInfo", code, "; Can't get dump information");
3048
3049     /* free all allocated structures */
3050     tapeLinkPtr = head;
3051     while (tapeLinkPtr) {
3052         volumeLinkPtr = tapeLinkPtr->firstVolume;
3053         while (volumeLinkPtr) {
3054             lastVolumeLinkPtr = volumeLinkPtr;
3055             volumeLinkPtr = volumeLinkPtr->nextVolume;
3056             free(lastVolumeLinkPtr);
3057         }
3058
3059         lastTapeLinkPtr = tapeLinkPtr;
3060         tapeLinkPtr = tapeLinkPtr->nextTape;
3061         free(lastTapeLinkPtr);
3062     }
3063     return (code);
3064 }
3065
3066 int
3067 compareDump(ptr1, ptr2)
3068      struct budb_dumpEntry *ptr1, *ptr2;
3069 {
3070     if (ptr1->created < ptr2->created)
3071         return (-1);
3072     else if (ptr1->created > ptr2->created)
3073         return (1);
3074     return (0);
3075 }
3076
3077 afs_int32
3078 printRecentDumps(ndumps)
3079      int ndumps;
3080 {
3081     afs_int32 code = 0;
3082     afs_int32 nextindex, index = 0;
3083     afs_int32 dbTime;
3084     budb_dumpList dl;
3085     struct budb_dumpEntry *dumpPtr;
3086     int i;
3087     char ds[50];
3088
3089     extern struct udbHandleS udbHandle;
3090     extern compareDump();
3091
3092     do {                        /* while (nextindex != -1) */
3093         /* initialize the dump list */
3094         dl.budb_dumpList_len = 0;
3095         dl.budb_dumpList_val = 0;
3096
3097         /* outline algorithm */
3098         code = ubik_Call(BUDB_GetDumps, udbHandle.uh_client, 0, BUDB_MAJORVERSION, BUDB_OP_NPREVIOUS, "",       /* no name */
3099                          0,     /* start */
3100                          ndumps,        /* end */
3101                          index, /* index */
3102                          &nextindex, &dbTime, &dl);
3103         if (code) {
3104             if (code == BUDB_ENDOFLIST)
3105                 return 0;
3106             afs_com_err("dumpInfo", code, "; Can't get dump information");
3107             return (code);
3108         }
3109
3110         /* No need to sort, it's already sorted */
3111
3112         if (dl.budb_dumpList_len && (index == 0))
3113             printf("%10s %10s %2s %-16s %2s %5s dump name\n", "dumpid",
3114                    "parentid", "lv", "created", "nt", "nvols");
3115
3116         dumpPtr = dl.budb_dumpList_val;
3117         for (i = 1; i <= dl.budb_dumpList_len; i++) {
3118             compactDateString(&dumpPtr->created, ds, 50),
3119                 printf("%10u %10u %-2d %16s %2d %5d %s", dumpPtr->id,
3120                        dumpPtr->parent, dumpPtr->level, ds,
3121                        dumpPtr->tapes.maxTapes - dumpPtr->tapes.b + 1,
3122                        dumpPtr->nVolumes, dumpPtr->name);
3123             if (dumpPtr->initialDumpID) /* an appended dump */
3124                 printf(" (%u)", dumpPtr->initialDumpID);
3125             else if (dumpPtr->appendedDumpID)   /* has appended dumps */
3126                 printf(" (%u)", dumpPtr->id);
3127             printf("\n");
3128
3129             dumpPtr++;
3130         }
3131
3132         if (dl.budb_dumpList_val)
3133             free(dl.budb_dumpList_val);
3134         index = nextindex;
3135     } while (nextindex != -1);
3136
3137     return (code);
3138 }
3139
3140 /* bc_dumpInfoCmd 
3141  *      list the dumps and contens of the dumps.
3142  * params:
3143  *      as - name of tape
3144  *      arock -
3145  */
3146 bc_dumpInfoCmd(as, arock)
3147      struct cmd_syndesc *as;
3148      char *arock;
3149 {
3150     afs_int32 dumpid;
3151     afs_int32 detailFlag;
3152     afs_int32 ndumps;
3153     afs_int32 code = 0;
3154
3155     afs_int32 dumpInfo();
3156
3157     if (as->parms[0].items) {
3158         if (as->parms[1].items) {
3159             afs_com_err(whoami, 0,
3160                     "These options are exclusive - select only one");
3161             return (BC_BADARG);
3162         }
3163         ndumps = atoi(as->parms[0].items->data);
3164         if (ndumps <= 0) {
3165             afs_com_err(whoami, 0, "Must provide a positive number");
3166             return -1;
3167         }
3168
3169         code = printRecentDumps(ndumps);
3170     } else if (as->parms[1].items) {
3171         detailFlag = (as->parms[2].items ? 1 : 0);      /* 1 = detailed listing */
3172         dumpid = atoi(as->parms[1].items->data);
3173         code = dumpInfo(dumpid, detailFlag);
3174     } else {
3175         code = printRecentDumps(10);
3176     }
3177
3178     return (code);
3179 }