Use calloc, rather than malloc/memset
[openafs.git] / src / bucoord / restore.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 /*
11  * ALL RIGHTS RESERVED
12  */
13
14 #include <afsconfig.h>
15 #include <afs/param.h>
16 #include <afs/stds.h>
17
18 #include <roken.h>
19
20 #include <afs/cmd.h>
21 #include <lwp.h>
22 #include <afs/bubasics.h>
23 #include "bc.h"
24 #include <afs/com_err.h>
25 #include <afs/butc.h>
26 #include <afs/budb.h>
27 #include <afs/vlserver.h>
28
29 #include "error_macros.h"
30 #include "bucoord_internal.h"
31 #include "bucoord_prototypes.h"
32
33 extern struct bc_dumpTask bc_dumpTasks[BC_MAXSIMDUMPS];
34 extern char *whoami;
35
36 #define MAXTAPESATONCE      10
37
38 #define HOSTADDR(sockaddr) (sockaddr)->sin_addr.s_addr
39
40 /* local structure to keep track of volumes and the dumps from which
41  * they should be restored
42  */
43 struct dumpinfo {
44     struct dumpinfo *next;
45     struct volinfo *volinfolist;
46     struct volinfo *lastinlist;
47     afs_int32 DumpId;
48     afs_int32 initialDumpId;
49     afs_int32 parentDumpId;
50     afs_int32 level;
51 };
52
53 struct volinfo {
54     struct volinfo *next;
55     char *volname;
56     afs_uint32 server;
57     afs_int32 partition;
58 };
59
60 /* local structure used to keep track of a tape, including a list of
61  * volumes to restore from that tape (bc_tapeItem)
62  */
63 struct bc_tapeList {
64     struct bc_tapeList *next;   /* next guy in list */
65     char *tapeName;             /* name of the tape */
66     afs_int32 dumpID;           /* dump located on this tape */
67     afs_int32 initialDumpID;    /* initial dump located on this tape */
68     afs_int32 tapeNumber;       /* which tape in the dump */
69     struct bc_tapeItem *restoreList;    /* volumes to restore from this tape */
70 };
71
72 /* each tape has a list of volumes to restore; hangs off of a struct
73    bc_tapeList.  Kept sorted so that we can read the tape once to do
74    everything we need to do.  */
75 struct bc_tapeItem {
76     struct bc_tapeItem *next;
77     char *volumeName;           /* volume to restore */
78     afs_int32 position;         /* file slot on this tape */
79     afs_int32 oid;              /* id of the volume */
80     afs_int32 dumplevel;        /* level # of the containing dump (0 == top level) */
81     afs_int32 vollevel;         /* level # of the containing volume (0 == full dump) */
82     afs_uint32 server;
83     afs_int32 partition;
84     int lastdump;               /* The last incremental to restore */
85 };
86
87 /* strip .backup from the end of a name */
88 static int
89 StripBackup(char *aname)
90 {
91     int j;
92
93     if ((j = BackupName(aname))) {
94         aname[j] = 0;
95         return 0;
96     }
97     return -1;
98 }
99
100 int
101 BackupName(char *aname)
102 {
103     int j;
104
105     j = strlen(aname);
106     if ((j > 7) && (strcmp(".backup", aname + j - 7) == 0))
107         return (j - 7);
108     if ((j > 9) && (strcmp(".readonly", aname + j - 9) == 0))
109         return (j - 9);
110     return 0;
111 }
112
113 int
114 extractTapeSeq(char *tapename)
115 {
116     char *sptr;
117
118     sptr = strrchr(tapename, '.');
119     if (!sptr)
120         return (-1);
121     sptr++;
122     return (atol(sptr));
123 }
124
125 void
126 viceName(long value)
127 {
128     char *alph;
129     int r;
130
131     alph = "abcdefjhijklmnopqrstuvwxyz";
132
133     if (value > 25)
134         viceName(value / 26 - 1);
135
136     r = value % 26;
137     printf("%c", alph[r]);
138 }
139
140 /* bc_DoRestore
141  * entry:
142  *      aindex - index into bc_dumpTasks that describes this dump.
143  */
144 int
145 bc_Restorer(afs_int32 aindex)
146 {
147     struct bc_dumpTask *dumpTaskPtr;
148
149     char vname[BU_MAXNAMELEN];
150     struct budb_dumpEntry *dumpDescr, dumpDescr1, dumpDescr2;
151     struct budb_volumeEntry *volumeEntries;
152     struct bc_volumeDump *tvol;
153     afs_int32 code = 0, tcode;
154     afs_int32 tapedumpid, parent;
155
156     afs_int32 nentries = 0;
157     afs_int32 last = 0;
158     afs_int32 next, ve, vecount;
159     struct bc_tapeItem *ti, *pti, *nti;
160     struct bc_tapeList *tapeList = (struct bc_tapeList *)0;
161     struct bc_tapeList *tle, *ptle, *ntle;
162     afs_int32 tlid;
163     afs_int32 tapeid, tid;
164
165     struct tc_restoreArray rpcArray;    /* the rpc structure we use */
166     struct tc_restoreDesc *tcarray = (struct tc_restoreDesc *)0;
167
168     afs_int32 i, startentry, todump;
169     afs_int32 port, nextport;
170     afs_int32 level, tapeseq;
171     afs_int32 foundvolume, voldumplevel;
172     struct rx_connection *aconn = (struct rx_connection *)0;
173     statusP statusPtr, newStatusPtr;
174
175     struct dumpinfo *dumpinfolist = NULL;
176     struct dumpinfo *pdi, *ndi, *di, *dlevels;
177     struct volinfo *nvi, *vi;
178     afs_int32 lvl, lv;
179     int num_dlevels = 20;
180
181     afs_uint32 serverAll;       /* The server to which all volumes are to be restore to */
182     afs_int32 partitionAll;     /* Likewise for partition */
183     struct hostent *hostPtr;
184     long haddr;
185     time_t did;
186     int foundtape, c;
187
188     dlevels = (struct dumpinfo *) malloc(num_dlevels * sizeof(*dlevels));
189
190     dumpTaskPtr = &bc_dumpTasks[aindex];
191     serverAll = HOSTADDR(&dumpTaskPtr->destServer);
192     partitionAll = dumpTaskPtr->destPartition;
193
194     volumeEntries = (struct budb_volumeEntry *)
195         malloc(MAXTAPESATONCE * sizeof(struct budb_volumeEntry));
196     if (!volumeEntries) {
197         afs_com_err(whoami, BC_NOMEM, NULL);
198         ERROR(BC_NOMEM);
199     }
200
201     /* For each volume to restore, find which dump it's most recent full or
202      * incremental is on and thread onto our dump list (from oldest to newest
203      * dump). Also hang the volume off of the dump (no particular order).
204      */
205     for (tvol = dumpTaskPtr->volumes; tvol; tvol = tvol->next) {        /*tvol */
206         strcpy(vname, tvol->name);
207         dumpDescr = &dumpDescr1;
208         if (dumpTaskPtr->parentDumpID > 0) /* Told which dump to try */
209           {
210             /* Right now, this assumes that all volumes listed will be
211              * from the given dumpID.  FIXME
212              */
213             code = bcdb_FindDumpByID(dumpTaskPtr->parentDumpID, dumpDescr);
214             if (code)
215               {
216                 afs_com_err(whoami, code, "Couldn't look up info for dump %d\n",
217                         dumpTaskPtr->parentDumpID);
218                 continue;
219               }
220             code = bcdb_FindVolumes(dumpTaskPtr->parentDumpID, vname, volumeEntries,
221                                     last, &next, MAXTAPESATONCE, &vecount);
222             if (code)
223               {
224                 if (!BackupName(vname))
225                   {
226                     strcat(vname, ".backup");
227                     code = bcdb_FindVolumes(dumpTaskPtr->parentDumpID, vname, volumeEntries,
228                                             last, &next, MAXTAPESATONCE, &vecount);
229                   }
230               }
231           }
232         else
233           {
234             code = bcdb_FindDump(vname, dumpTaskPtr->fromDate, dumpDescr);
235             if (!BackupName(vname)) {   /* See if backup volume is there */
236               strcat(vname, ".backup");
237               dumpDescr = &dumpDescr2;
238               tcode = code;
239               code = bcdb_FindDump(vname, dumpTaskPtr->fromDate, dumpDescr);
240
241               if (code) {       /* Can't find backup, go with first results */
242                 strcpy(vname, tvol->name);
243                 dumpDescr = &dumpDescr1;
244                 code = tcode;
245               } else if (!tcode) {      /* Both found an entry, go with latest result */
246                 if (dumpDescr1.created > dumpDescr2.created) {
247                   strcpy(vname, tvol->name);
248                   dumpDescr = &dumpDescr1;
249                   code = tcode;
250                 }
251               }
252             }
253           }
254
255         if (code) {             /* If FindDump took an error */
256             afs_com_err(whoami, code, "; Can't find any dump for volume %s",
257                     tvol->name);
258             continue;
259         }
260
261         /* look to see if this dump has already been found */
262         for (pdi = 0, di = dumpinfolist; di; pdi = di, di = di->next) {
263             if (di->DumpId < dumpDescr->id) {
264                 di = 0;
265                 break;
266             } else if (di->DumpId == dumpDescr->id) {
267                 break;
268             }
269         }
270
271         /* If didn't find it, create one and thread into list */
272         if (!di) {
273             di = calloc(1, sizeof(struct dumpinfo));
274             if (!di) {
275                 afs_com_err(whoami, BC_NOMEM, NULL);
276                 ERROR(BC_NOMEM);
277             }
278
279             di->DumpId = dumpDescr->id;
280             di->initialDumpId = dumpDescr->initialDumpID;
281             di->parentDumpId = dumpDescr->parent;
282             di->level = dumpDescr->level;
283
284             if (!pdi) {
285                 di->next = dumpinfolist;
286                 dumpinfolist = di;
287             } else {
288                 di->next = pdi->next;
289                 pdi->next = di;
290             }
291         }
292
293         /* Create one and thread into list */
294         vi = calloc(1, sizeof(struct volinfo));
295         if (!vi) {
296             afs_com_err(whoami, BC_NOMEM, NULL);
297             ERROR(BC_NOMEM);
298         }
299
300         vi->volname = strdup(vname);
301         if (!vi->volname) {
302             free(vi);
303             afs_com_err(whoami, BC_NOMEM, NULL);
304             ERROR(BC_NOMEM);
305         }
306
307         if (serverAll) {
308             vi->server = serverAll;
309             vi->partition = partitionAll;
310         } else {
311             vi->server = HOSTADDR(&tvol->server);
312             vi->partition = tvol->partition;
313         }
314
315         /* thread onto end of list */
316         if (!di->lastinlist)
317             di->volinfolist = vi;
318         else
319             di->lastinlist->next = vi;
320         di->lastinlist = vi;
321     }                           /*tvol */
322
323     /* For each of the above dumps we found (they could be increments), find
324      * the dump's lineage (up to the full dump).
325      */
326     for (di = dumpinfolist; di; di = di->next) {
327         /* Find each of the parent dumps */
328         memcpy(&dlevels[0], di, sizeof(struct dumpinfo));
329         for (lvl = 1, parent = dlevels[0].parentDumpId; parent;
330              parent = dlevels[lvl].parentDumpId, lvl++) {
331             if (lvl >= num_dlevels) {           /* running out of dump levels */
332                 struct dumpinfo *tdl = dlevels;
333
334                 num_dlevels += num_dlevels;     /* double */
335                 dlevels = (struct dumpinfo *) malloc(num_dlevels * sizeof(*dlevels));
336                 memcpy(dlevels, tdl, (num_dlevels/2) * sizeof(*dlevels));
337                 free(tdl);
338             }
339             code = bcdb_FindDumpByID(parent, &dumpDescr1);
340             if (code) {
341                 for (vi = di->volinfolist; vi; vi = vi->next) {
342                     afs_com_err(whoami, code,
343                             "; Can't find parent DumpID %u for volume %s",
344                             parent, vi->volname);
345                 }
346                 break;
347             }
348
349             dlevels[lvl].DumpId = dumpDescr1.id;
350             dlevels[lvl].initialDumpId = dumpDescr1.initialDumpID;
351             dlevels[lvl].parentDumpId = dumpDescr1.parent;
352             dlevels[lvl].level = dumpDescr1.level;
353         }
354
355         /* For each of the volumes that has a dump in this lineage (vi),
356          * find where it is in each dump level (lv) starting at level 0 and
357          * going to higest. Each dump level could contain one or more
358          * fragments (vecount) of the volume (volume fragments span tapes).
359          * Each volume fragment is sorted by tapeid, tape sequence, and tape
360          * position.
361          */
362         for (vi = di->volinfolist; vi; vi = vi->next) {
363             tle = tapeList;     /* Use for searching the tapelist */
364             ptle = 0;           /* The previous tape list entry */
365             tlid = 0;           /* tapeid of first entry */
366             /* Volume's dump-level. May not be same as dump's dump-level. This
367              * value gets incremented everytime the volume is found on a dump.
368              */
369             voldumplevel = 0;
370
371             /* Do from level 0 dump to highest level dump */
372             for (lv = (lvl - 1); lv >= 0; lv--) {
373                 foundvolume = 0;        /* If found volume on this dump */
374                 tapeid =
375                     (dlevels[lv].initialDumpId ? dlevels[lv].
376                      initialDumpId : dlevels[lv].DumpId);
377
378                 /* Cycle through the volume fragments for this volume on the tape */
379                 for (last = 0, c = 0; last >= 0; last = next, c++) {
380                     code =
381                         bcdb_FindVolumes(dlevels[lv].DumpId, vi->volname,
382                                          volumeEntries, last, &next,
383                                          MAXTAPESATONCE, &vecount);
384                     if (code) {
385                         /* Volume wasn't found on the tape - so continue.
386                          * This can happen when volume doesn't exist during level 0 dump
387                          * but exists for incremental dump.
388                          */
389                         if (code == BUDB_ENDOFLIST) {
390                             code = 0;
391                             break;
392                         }
393
394                         afs_com_err(whoami, code,
395                                 "; Can't find volume %s in DumpID %u",
396                                 vi->volname, dlevels[lv].DumpId);
397                         ERROR(code);
398                     }
399
400                     /* If we have made the Findvolumes call more than once for the same
401                      * volume, then begin the search at the top. This sort assumes that
402                      * we are collecting information from lowest level dump (full dump)
403                      * to the highest level dump (highest incremental)
404                      * and from first fragment to last fragment at each level. If
405                      * there is more than one call to FindVolumes, this is not true
406                      * anymore.
407                      */
408                     if (c) {
409                         tle = tapeList;
410                         ptle = 0;
411                         tlid = 0;
412                     }
413
414                     /* For each of the volume fragments that we read, sort them into
415                      * the list of tapes they are on. Sort by tapeid, then tape sequence.
416                      * Do from first fragment (where volume begins) to last fragment.
417                      */
418                     for (ve = (vecount - 1); ve >= 0; ve--) {
419                         foundvolume = 1;        /* Found the volume on this dump */
420                         foundtape = 0;
421                         tapeseq = volumeEntries[ve].tapeSeq;
422
423                         /* Determine where in the list of tapes this should go */
424                         for (; tle; ptle = tle, tle = tle->next) {
425                             tid =
426                                 (tle->initialDumpID ? tle->
427                                  initialDumpID : tle->dumpID);
428
429                             /* Sort by tapeids. BUT, we don't want add an entry in the middle
430                              * of a dumpset (might split a volume fragmented across tapes).
431                              * So make sure we step to next dumpset. tlid is the tapeid of
432                              * the last tape we added a volume to. This can happen when an
433                              * incremental was appended to a tape created prior its parent-
434                              * dump's tape, and needs to be restored after it.
435                              */
436                             if (tapeid < tid) {
437                                 if (tlid != tid) {
438                                     tle = 0;
439                                     break;
440                                 }       /* Allocate and insert a tape entry */
441                             }
442
443                             /* Found the tapeid (the dumpset). Check if its the correct
444                              * tape sequence
445                              */
446                             else if (tapeid == tid) {
447                                 if (tapeseq < tle->tapeNumber) {
448                                     tle = 0;
449                                     break;
450                                 }
451                                 /* Allocate and insert a tape entry */
452                                 if (tapeseq == tle->tapeNumber) {
453                                     break;
454                                 }
455                                 /* Don't allocate tape entry */
456                                 foundtape = 1;  /* Found dumpset but not the tape */
457                             }
458
459                             /* Prevously found the tapeid (the dumpset) but this tape
460                              * sequence not included (the tapeid has changed). So add
461                              * this tape entry to the end of its dumpset.
462                              */
463                             else if (foundtape) {
464                                 tle = 0;
465                                 break;
466                             }
467                             /* Allocate and insert a tape entry */
468                         }
469
470                         /* Allocate a new tapelist entry if one not found */
471                         if (!tle) {
472                             tle = calloc(1, sizeof(struct bc_tapeList));
473                             if (!tle) {
474                                 afs_com_err(whoami, BC_NOMEM, NULL);
475                                 return (BC_NOMEM);
476                             }
477
478                             tle->tapeName = strdup(volumeEntries[ve].tape);
479                             if (!tle->tapeName) {
480                                 free(tle);
481                                 afs_com_err(whoami, BC_NOMEM, NULL);
482                                 return (BC_NOMEM);
483                             }
484
485                             tle->dumpID = dlevels[lv].DumpId;
486                             tle->initialDumpID = dlevels[lv].initialDumpId;
487                             tle->tapeNumber = tapeseq;
488
489                             /* Now thread the tape onto the list */
490                             if (!ptle) {
491                                 tle->next = tapeList;
492                                 tapeList = tle;
493                             } else {
494                                 tle->next = ptle->next;
495                                 ptle->next = tle;
496                             }
497                         }
498                         tlid =
499                             (tle->initialDumpID ? tle->initialDumpID : tle->
500                              dumpID);
501
502                         /* Now place the volume fragment into the correct position on
503                          * this tapelist entry. Duplicate entries are ignored.
504                          */
505                         for (pti = 0, ti = tle->restoreList; ti;
506                              pti = ti, ti = ti->next) {
507                             if (volumeEntries[ve].position < ti->position) {
508                                 ti = 0;
509                                 break;
510                             }
511                             /* Allocate an entry */
512                             else if (volumeEntries[ve].position ==
513                                      ti->position) {
514                                 break;
515                             }   /* Duplicate entry */
516                         }
517
518                         /* If didn't find one, allocate and thread onto list.
519                          * Remember the server and partition.
520                          */
521                         if (!ti) {
522                             ti = calloc(1, sizeof(struct bc_tapeItem));
523                             if (!ti) {
524                                 afs_com_err(whoami, BC_NOMEM, NULL);
525                                 return (BC_NOMEM);
526                             }
527
528                             ti->volumeName = strdup(volumeEntries[ve].name);
529                             if (!ti->volumeName) {
530                                 free(ti);
531                                 afs_com_err(whoami, BC_NOMEM, NULL);
532                                 return (BC_NOMEM);
533                             }
534
535                             ti->server = vi->server;
536                             ti->partition = vi->partition;
537                             ti->oid = volumeEntries[ve].id;
538                             ti->position = volumeEntries[ve].position;
539                             ti->vollevel = voldumplevel;
540                             ti->dumplevel = dlevels[lv].level;
541                             ti->lastdump = ((lv == 0) ? 1 : 0);
542
543                             if (!pti) {
544                                 ti->next = tle->restoreList;
545                                 tle->restoreList = ti;
546                             } else {
547                                 ti->next = pti->next;
548                                 pti->next = ti;
549                             }
550
551                             nentries++;
552                         }       /* !ti */
553                     }           /* ve: for each returned volume fragment by bcdb_FindVolumes() */
554                 }               /* last: Multiple calls to bcdb_FindVolumes() */
555
556                 if (foundvolume)
557                     voldumplevel++;
558             }                   /* lv: For each dump level */
559         }                       /* vi: For each volume to search for in the dump hierarchy */
560     }                           /* di: For each dump */
561
562     if (!nentries) {
563         afs_com_err(whoami, 0, "No volumes to restore");
564         ERROR(0);
565     }
566
567     if (dumpTaskPtr->dontExecute) {
568         for (tle = tapeList; tle; tle = tle->next) {
569             for (ti = tle->restoreList; ti; ti = ti->next) {
570                 tapedumpid =
571                     (tle->initialDumpID ? tle->initialDumpID : tle->dumpID);
572                 strcpy(vname, ti->volumeName);
573                 StripBackup(vname);
574                 if (dumpTaskPtr->newExt)
575                     strcat(vname, dumpTaskPtr->newExt);
576
577                 /* print volume to restore and the tape and position its on */
578                 if (serverAll) {
579                     printf
580                         ("Restore volume %s (ID %d) from tape %s (%u), position %d",
581                          ti->volumeName, ti->oid, tle->tapeName, tapedumpid,
582                          ti->position);
583
584                     if (strcmp(ti->volumeName, vname) != 0)
585                         printf(" as %s", vname);
586
587                     printf(".\n");
588                 }
589
590                 /* print in format recognized by volsetrestore */
591                 else {
592                     haddr = ti->server;
593                     hostPtr =
594                         gethostbyaddr((char *)&haddr, sizeof(haddr), AF_INET);
595                     if (hostPtr)
596                         printf("%s", hostPtr->h_name);
597                     else
598                         printf("%u", ti->server);
599
600                     printf(" /vicep");
601                     viceName(ti->partition);
602
603                     printf(" %s # as %s; %s (%u); pos %d;", ti->volumeName,
604                            vname, tle->tapeName, tapedumpid, ti->position);
605
606                     did = tle->dumpID;
607                     printf(" %s", ctime(&did));
608                 }
609             }
610         }
611
612         ERROR(0);
613     }
614
615     /* Allocate a list of volumes to restore */
616     tcarray = calloc(nentries, sizeof(struct tc_restoreDesc));
617     if (!tcarray) {
618         afs_com_err(whoami, BC_NOMEM, NULL);
619         ERROR(BC_NOMEM);
620     }
621
622     /* Fill in the array with the list above */
623     i = 0;
624     for (tle = tapeList; tle; tle = tle->next) {
625         for (ti = tle->restoreList; ti; ti = ti->next) {
626             tcarray[i].origVid = ti->oid;       /* means unknown */
627             tcarray[i].vid = 0;
628             tcarray[i].flags = 0;
629             if (ti->vollevel == 0)
630                 tcarray[i].flags |= RDFLAG_FIRSTDUMP;
631             if (ti->lastdump)
632                 tcarray[i].flags |= RDFLAG_LASTDUMP;
633             tcarray[i].position = ti->position;
634             tcarray[i].dbDumpId = tle->dumpID;
635             tcarray[i].initialDumpId = tle->initialDumpID;
636             tcarray[i].hostAddr = ti->server;   /* just the internet address */
637             tcarray[i].partition = ti->partition;
638
639             strcpy(tcarray[i].tapeName, tle->tapeName);
640             strcpy(tcarray[i].oldName, ti->volumeName);
641             strcpy(tcarray[i].newName, ti->volumeName);
642             StripBackup(tcarray[i].newName);
643             if (dumpTaskPtr->newExt)
644                 strcat(tcarray[i].newName, dumpTaskPtr->newExt);
645
646             tcarray[i].dumpLevel = ti->dumplevel;
647             i++;
648         }
649     }
650
651     printf("Starting restore\n");
652
653     /* Loop until all of the tape entries are used */
654     for (startentry = 0; startentry < nentries; startentry += todump) {
655         /* Get all the next tape entries with the same port offset */
656         if (dumpTaskPtr->portCount == 0) {
657             port = 0;
658             todump = nentries - startentry;
659         } else if (dumpTaskPtr->portCount == 1) {
660             port = dumpTaskPtr->portOffset[0];
661             todump = nentries - startentry;
662         } else {
663             level = tcarray[startentry].dumpLevel;
664             port =
665                 dumpTaskPtr->
666                 portOffset[(level <=
667                             dumpTaskPtr->portCount -
668                             1 ? level : dumpTaskPtr->portCount - 1)];
669
670             for (todump = 1; ((startentry + todump) < nentries); todump++) {
671                 level = tcarray[startentry + todump].dumpLevel;
672                 nextport =
673                     dumpTaskPtr->
674                     portOffset[(level <=
675                                 dumpTaskPtr->portCount -
676                                 1 ? level : dumpTaskPtr->portCount - 1)];
677                 if (port != nextport)
678                     break;      /* break if we change ports */
679             }
680         }
681
682         rpcArray.tc_restoreArray_len = todump;
683         rpcArray.tc_restoreArray_val = &tcarray[startentry];
684
685         code = ConnectButc(dumpTaskPtr->config, port, &aconn);
686         if (code)
687             return (code);
688
689         if (tcarray[startentry].dumpLevel == 0)
690             printf("\nFull restore being processed on port %d\n", port);
691         else
692             printf("\nIncremental restore being processed on port %d\n",
693                    port);
694
695         code =
696             TC_PerformRestore(aconn, "DumpSetName", &rpcArray,
697                               &dumpTaskPtr->dumpID);
698         if (code) {
699             afs_com_err(whoami, code, "; Failed to start restore");
700             break;
701         }
702
703         /* setup status monitor node */
704         statusPtr = createStatusNode();
705         lock_Status();
706         statusPtr->port = port;
707         statusPtr->taskId = dumpTaskPtr->dumpID;
708         statusPtr->jobNumber = bc_jobNumber();
709         statusPtr->flags &= ~STARTING;  /* clearStatus to examine */
710         if (tcarray[startentry].dumpLevel == 0)
711             sprintf(statusPtr->taskName, "Full Restore");
712         else
713             sprintf(statusPtr->taskName, "Incremental Restore");
714         unlock_Status();
715
716         /* Wait until this restore pass is complete before starting the next
717          * pass. Query the statusWatcher for the status
718          */
719         while (1) {
720             lock_Status();
721             newStatusPtr = findStatus(dumpTaskPtr->dumpID);
722             if (!newStatusPtr
723                 || (newStatusPtr->
724                     flags & (ABORT_REQUEST | ABORT_SENT | ABORT_DONE |
725                              TASK_ERROR))) {
726                 unlock_Status();
727                 ERROR(0);
728             } else if (newStatusPtr->flags & (TASK_DONE)) {
729                 unlock_Status();
730                 break;
731             }
732
733             unlock_Status();
734             IOMGR_Sleep(2);
735         }
736
737         if (aconn)
738             rx_DestroyConnection(aconn);
739         aconn = (struct rx_connection *)0;
740     }                           /* while */
741
742     /* free up everything */
743   error_exit:
744     if (aconn)
745         rx_DestroyConnection(aconn);
746
747     if (tcarray)
748         free(tcarray);
749
750     /* Free the dumpinfo list and its volumes */
751     for (di = dumpinfolist; di; di = ndi) {
752         for (vi = di->volinfolist; vi; vi = nvi) {
753             if (vi->volname)
754                 free(vi->volname);
755             nvi = vi->next;
756             free(vi);
757         }
758         ndi = di->next;
759         free(di);
760     }
761
762     /* Free the tape lists and items */
763     for (tle = tapeList; tle; tle = ntle) {
764         for (ti = tle->restoreList; ti; ti = nti) {
765             nti = ti->next;
766             if (ti->volumeName)
767                 free(ti->volumeName);
768             free(ti);
769         }
770         ntle = tle->next;
771         if (tle->tapeName)
772             free(tle->tapeName);
773         free(tle);
774     }
775
776     /* free local-like things we alloacted to save stack space */
777     if (volumeEntries)
778         free(volumeEntries);
779
780     free(dlevels);
781
782     return code;
783 }