vos-timestamp-handling-20041106
[openafs.git] / src / volser / vsprocs.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 <stdio.h>
17 #include <sys/types.h>
18 #include <sys/stat.h>
19 #ifdef  AFS_AIX_ENV
20 #include <sys/statfs.h>
21 #endif
22 #ifdef AFS_NT40_ENV
23 #include <fcntl.h>
24 #include <winsock2.h>
25 #else
26 #include <sys/file.h>
27 #include <netinet/in.h>
28 #endif
29
30 #ifdef HAVE_STRING_H
31 #include <string.h>
32 #else
33 #ifdef HAVE_STRINGS_H
34 #include <strings.h>
35 #endif
36 #endif
37
38 #include <lock.h>
39 #include <afs/voldefs.h>
40 #include <rx/xdr.h>
41 #include <rx/rx.h>
42 #include <afs/vlserver.h>
43 #include <afs/nfs.h>
44 #include <afs/auth.h>
45 #include <afs/cellconfig.h>
46 #include <afs/keys.h>
47 #include <ubik.h>
48 #include <afs/afsint.h>
49 #include "volser.h"
50 #include "volint.h"
51 #include "lockdata.h"
52 #include <afs/com_err.h>
53 #include <rx/rxkad.h>
54 #include <afs/kautils.h>
55 #include <afs/cmd.h>
56 #include <errno.h>
57 #define ERRCODE_RANGE 8         /* from error_table.h */
58 #define CLOCKSKEW   2           /* not really skew, but resolution */
59
60 /* for UV_MoveVolume() recovery */
61
62 #include <afs/procmgmt.h>       /* signal(), kill(), wait(), etc. */
63 #include <setjmp.h>
64
65 #include <volser_prototypes.h>
66
67 struct ubik_client *cstruct;
68 int verbose = 0;
69
70 struct release {
71     afs_int32 time;
72     afs_int32 vldbEntryIndex;
73 };
74
75 /* Utility macros used by rest of this source file */
76 #define EPRINT(ec, es) \
77 do { \
78         fprintf(STDERR, "\n"); \
79         fprintf(STDERR, (es)); \
80         PrintError("   ",ec); \
81 } while (0)
82
83 #define EPRINT1(ec, es, ep1) \
84 do { \
85         fprintf(STDERR, "\n"); \
86         fprintf(STDERR, (es), (ep1)); \
87         PrintError("   ",ec); \
88 } while (0)
89
90 #define EPRINT2(ec, es, ep1, ep2) \
91 do { \
92         fprintf(STDERR, "\n"); \
93         fprintf(STDERR, (es), (ep1), (ep2)); \
94         PrintError("   ",ec); \
95 } while (0)
96
97 #define EPRINT3(ec, es, ep1, ep2, ep3) \
98 do { \
99         fprintf(STDERR, "\n"); \
100         fprintf(STDERR, (es), (ep1), (ep2), (ep3)); \
101         PrintError("   ",ec); \
102 } while (0)
103
104 #define EGOTO(where, ec, es) \
105 do { \
106         if (ec) { \
107                 EPRINT((ec),(es)); \
108                 error = (ec); \
109                 goto where; \
110         } \
111 } while (0)
112
113 #define EGOTO1(where, ec, es, ep1) \
114 do { \
115         if (ec) { \
116                 EPRINT1((ec),(es),(ep1)); \
117                 error = (ec); \
118                 goto where; \
119         } \
120 } while (0)
121
122 #define EGOTO2(where, ec, es, ep1, ep2) \
123 do { \
124         if (ec) { \
125                 EPRINT2((ec),(es),(ep1),(ep2)); \
126                 error = (ec); \
127                 goto where; \
128         } \
129 } while (0)
130
131 #define EGOTO3(where, ec, es, ep1, ep2, ep3) \
132 do { \
133         if (ec) { \
134                 EPRINT3((ec),(es),(ep1),(ep2),(ep3)); \
135                 error = (ec); \
136                 goto where; \
137         } \
138 } while (0)
139
140 #define VPRINT(es) \
141         { if (verbose) { fprintf(STDOUT, (es)); fflush(STDOUT); } }
142 #define VPRINT1(es, p) \
143         { if (verbose) { fprintf(STDOUT, (es), (p)); fflush(STDOUT); } }
144 #define VPRINT2(es, p1, p2) \
145         { if (verbose) { fprintf(STDOUT, (es), (p1), (p2)); fflush(STDOUT); } }
146 #define VPRINT3(es, p1, p2, p3) \
147         { if (verbose) { fprintf(STDOUT, (es), (p1), (p2), (p3)); fflush(STDOUT); } }
148 #define VDONE \
149         { if (verbose) { fprintf(STDOUT, " done\n"); fflush(STDOUT); } }
150
151
152
153 /* getting rid of this */
154 #define ERROR_EXIT(code) {error=(code); goto error_exit;}
155
156
157 /* Protos for static routines */
158 static afs_int32 CheckAndDeleteVolume(struct rx_connection *aconn,
159                                       afs_int32 apart, afs_int32 okvol,
160                                       afs_int32 delvol);
161 static int DelVol(struct rx_connection *conn, afs_int32 vid, afs_int32 part,
162                   afs_int32 flags);
163 static int GetTrans(struct nvldbentry *vldbEntryPtr, afs_int32 index,
164                     struct rx_connection **connPtr, afs_int32 * transPtr,
165                     afs_int32 * timePtr);
166 static int SimulateForwardMultiple(struct rx_connection *fromconn,
167                                    afs_int32 fromtid, afs_int32 fromdate,
168                                    manyDests * tr, afs_int32 flags,
169                                    void *cookie, manyResults * results);
170 static int rel_compar(struct release *r1, struct release *r2);
171 static afs_int32 CheckVolume(volintInfo * volumeinfo, afs_int32 aserver,
172                              afs_int32 apart, afs_int32 * modentry,
173                              afs_uint32 * maxvolid);
174
175
176 /*map the partition <partId> into partition name <partName>*/
177 void
178 MapPartIdIntoName(afs_int32 partId, char *partName)
179 {
180     if (partId < 26) {          /* what if partId > = 26 ? */
181         strcpy(partName, "/vicep");
182         partName[6] = partId + 'a';
183         partName[7] = '\0';
184         return;
185     } else if (partId < VOLMAXPARTS) {
186         strcpy(partName, "/vicep");
187         partId -= 26;
188         partName[6] = 'a' + (partId / 26);
189         partName[7] = 'a' + (partId % 26);
190         partName[8] = '\0';
191         return;
192     }
193 }
194
195 int
196 yesprompt(char *str)
197 {
198     int response, c;
199     int code;
200
201     fprintf(STDERR, "Do you want to %s? [yn](n): ", str);
202     response = c = getchar();
203     while (!(c == EOF || c == '\n'))
204         c = getchar();          /*skip to end of line */
205     code = (response == 'y' || response == 'Y');
206     return code;
207 }
208
209
210 int
211 PrintError(char *msg, afs_int32 errcode)
212 {
213     fprintf(STDERR, msg);
214     /*replace by a big switch statement */
215     switch (errcode) {
216     case 0:
217         break;
218     case -1:
219         fprintf(STDERR, "Possible communication failure\n");
220         break;
221     case VSALVAGE:
222         fprintf(STDERR, "Volume needs to be salvaged\n");
223         break;
224     case VNOVNODE:
225         fprintf(STDERR, "Bad vnode number quoted\n");
226         break;
227     case VNOVOL:
228         fprintf(STDERR,
229                 "Volume not attached, does not exist, or not on line\n");
230         break;
231     case VVOLEXISTS:
232         fprintf(STDERR, "Volume already exists\n");
233         break;
234     case VNOSERVICE:
235         fprintf(STDERR, "Volume is not in service\n");
236         break;
237     case VOFFLINE:
238         fprintf(STDERR, "Volume is off line\n");
239         break;
240     case VONLINE:
241         fprintf(STDERR, "Volume is already on line\n");
242         break;
243     case VDISKFULL:
244         fprintf(STDERR, "Partition is full\n");
245         break;
246     case VOVERQUOTA:
247         fprintf(STDERR, "Volume max quota exceeded\n");
248         break;
249     case VBUSY:
250         fprintf(STDERR, "Volume temporarily unavailable\n");
251         break;
252     case VMOVED:
253         fprintf(STDERR, "Volume has moved to another server\n");
254         break;
255     case VL_IDEXIST:
256         fprintf(STDERR, "VLDB: volume Id exists in the vldb\n");
257         break;
258     case VL_IO:
259         fprintf(STDERR, "VLDB: a read terminated too early\n");
260         break;
261     case VL_NAMEEXIST:
262         fprintf(STDERR, "VLDB: volume entry exists in the vldb\n");
263         break;
264     case VL_CREATEFAIL:
265         fprintf(STDERR, "VLDB: internal creation failure\n");
266         break;
267     case VL_NOENT:
268         fprintf(STDERR, "VLDB: no such entry\n");
269         break;
270     case VL_EMPTY:
271         fprintf(STDERR, "VLDB: vldb database is empty\n");
272         break;
273     case VL_ENTDELETED:
274         fprintf(STDERR, "VLDB: entry is deleted (soft delete)\n");
275         break;
276     case VL_BADNAME:
277         fprintf(STDERR, "VLDB: volume name is illegal\n");
278         break;
279     case VL_BADINDEX:
280         fprintf(STDERR, "VLDB: index was out of range\n");
281         break;
282     case VL_BADVOLTYPE:
283         fprintf(STDERR, "VLDB: bad volume type\n");
284         break;
285     case VL_BADSERVER:
286         fprintf(STDERR, "VLDB: illegal server number (not within limits)\n");
287         break;
288     case VL_BADPARTITION:
289         fprintf(STDERR, "VLDB: bad partition number\n");
290         break;
291     case VL_REPSFULL:
292         fprintf(STDERR, "VLDB: run out of space for replication sites\n");
293         break;
294     case VL_NOREPSERVER:
295         fprintf(STDERR, "VLDB: no such repsite server exists\n");
296         break;
297     case VL_DUPREPSERVER:
298         fprintf(STDERR, "VLDB: replication site server already exists\n");
299         break;
300     case VL_RWNOTFOUND:
301         fprintf(STDERR, "VLDB: parent r/w entry not found\n");
302         break;
303     case VL_BADREFCOUNT:
304         fprintf(STDERR, "VLDB: illegal reference count number\n");
305         break;
306     case VL_SIZEEXCEEDED:
307         fprintf(STDERR, "VLDB: vldb size for attributes exceeded\n");
308         break;
309     case VL_BADENTRY:
310         fprintf(STDERR, "VLDB: bad incoming vldb entry\n");
311         break;
312     case VL_BADVOLIDBUMP:
313         fprintf(STDERR, "VLDB: illegal max volid increment\n");
314         break;
315     case VL_IDALREADYHASHED:
316         fprintf(STDERR, "VLDB: (RO/BACK) Id already hashed\n");
317         break;
318     case VL_ENTRYLOCKED:
319         fprintf(STDERR, "VLDB: vldb entry is already locked\n");
320         break;
321     case VL_BADVOLOPER:
322         fprintf(STDERR, "VLDB: bad volume operation code\n");
323         break;
324     case VL_BADRELLOCKTYPE:
325         fprintf(STDERR, "VLDB: bad release lock type\n");
326         break;
327     case VL_RERELEASE:
328         fprintf(STDERR, "VLDB: status report: last release was aborted\n");
329         break;
330     case VL_BADSERVERFLAG:
331         fprintf(STDERR, "VLDB: invalid replication site server flag\n");
332         break;
333     case VL_PERM:
334         fprintf(STDERR, "VLDB: no permission access for call\n");
335         break;
336     case VOLSERREAD_DUMPERROR:
337         fprintf(STDERR,
338                 "VOLSER:  Problems encountered in reading the dump file !\n");
339         break;
340     case VOLSERDUMPERROR:
341         fprintf(STDERR, "VOLSER: Problems encountered in doing the dump !\n");
342         break;
343     case VOLSERATTACH_ERROR:
344         fprintf(STDERR, "VOLSER: Could not attach the volume\n");
345         break;
346     case VOLSERDETACH_ERROR:
347         fprintf(STDERR, "VOLSER: Could not detach the volume\n");
348         break;
349     case VOLSERILLEGAL_PARTITION:
350         fprintf(STDERR, "VOLSER: encountered illegal partition number\n");
351         break;
352     case VOLSERBAD_ACCESS:
353         fprintf(STDERR, "VOLSER: permission denied, not a super user\n");
354         break;
355     case VOLSERVLDB_ERROR:
356         fprintf(STDERR, "VOLSER: error detected in the VLDB\n");
357         break;
358     case VOLSERBADNAME:
359         fprintf(STDERR, "VOLSER: error in volume name\n");
360         break;
361     case VOLSERVOLMOVED:
362         fprintf(STDERR, "VOLSER: volume has moved\n");
363         break;
364     case VOLSERBADOP:
365         fprintf(STDERR, "VOLSER: illegal operation\n");
366         break;
367     case VOLSERBADRELEASE:
368         fprintf(STDERR, "VOLSER: release could not be completed\n");
369         break;
370     case VOLSERVOLBUSY:
371         fprintf(STDERR, "VOLSER: volume is busy\n");
372         break;
373     case VOLSERNO_MEMORY:
374         fprintf(STDERR, "VOLSER: volume server is out of memory\n");
375         break;
376     case VOLSERNOVOL:
377         fprintf(STDERR,
378                 "VOLSER: no such volume - location specified incorrectly or volume does not exist\n");
379         break;
380     case VOLSERMULTIRWVOL:
381         fprintf(STDERR,
382                 "VOLSER: multiple RW volumes with same ID, one of which should be deleted\n");
383         break;
384     case VOLSERFAILEDOP:
385         fprintf(STDERR,
386                 "VOLSER: not all entries were successfully processed\n");
387         break;
388     default:
389         {
390
391             afs_int32 offset;
392
393             initialize_KA_error_table();
394             initialize_RXK_error_table();
395             initialize_KTC_error_table();
396             initialize_ACFG_error_table();
397             initialize_CMD_error_table();
398             initialize_VL_error_table();
399
400             offset = errcode & ((1 << ERRCODE_RANGE) - 1);
401             fprintf(STDERR, "%s: %s\n", error_table_name(errcode),
402                     error_message(errcode));
403             break;
404         }
405     }
406     return 0;
407 }
408
409 void init_volintInfo(struct volintInfo *vinfo) {
410     memset(vinfo, 0, sizeof(struct volintInfo));
411
412     vinfo->maxquota = -1;
413     vinfo->dayUse = -1;
414     vinfo->creationDate = -1;
415     vinfo->updateDate = -1;
416     vinfo->flags = -1;
417     vinfo->spare0 = -1;
418     vinfo->spare1 = -1;
419     vinfo->spare2 = -1;
420     vinfo->spare3 = -1;
421 }
422
423 static struct rx_securityClass *uvclass = 0;
424 static int uvindex = -1;
425 /* called by VLDBClient_Init to set the security module to be used in the RPC */
426 int
427 UV_SetSecurity(register struct rx_securityClass *as, afs_int32 aindex)
428 {
429     uvindex = aindex;
430     uvclass = as;
431     return 0;
432 }
433
434 /* bind to volser on <port> <aserver> */
435 /* takes server address in network order, port in host order.  dumb */
436 struct rx_connection *
437 UV_Bind(afs_int32 aserver, afs_int32 port)
438 {
439     register struct rx_connection *tc;
440
441     tc = rx_NewConnection(aserver, htons(port), VOLSERVICE_ID, uvclass,
442                           uvindex);
443     return tc;
444 }
445
446 /* if <okvol> is allright(indicated by beibg able to
447  * start a transaction, delete the <delvol> */
448 static afs_int32
449 CheckAndDeleteVolume(struct rx_connection *aconn, afs_int32 apart,
450                      afs_int32 okvol, afs_int32 delvol)
451 {
452     afs_int32 error, code, tid, rcode;
453
454     error = 0;
455     code = 0;
456
457     if (okvol == 0) {
458         code = AFSVolTransCreate(aconn, delvol, apart, ITOffline, &tid);
459         if (!error && code)
460             error = code;
461         code = AFSVolDeleteVolume(aconn, tid);
462         if (!error && code)
463             error = code;
464         code = AFSVolEndTrans(aconn, tid, &rcode);
465         if (!code)
466             code = rcode;
467         if (!error && code)
468             error = code;
469         return error;
470     } else {
471         code = AFSVolTransCreate(aconn, okvol, apart, ITOffline, &tid);
472         if (!code) {
473             code = AFSVolEndTrans(aconn, tid, &rcode);
474             if (!code)
475                 code = rcode;
476             if (!error && code)
477                 error = code;
478             code = AFSVolTransCreate(aconn, delvol, apart, ITOffline, &tid);
479             if (!error && code)
480                 error = code;
481             code = AFSVolDeleteVolume(aconn, tid);
482             if (!error && code)
483                 error = code;
484             code = AFSVolEndTrans(aconn, tid, &rcode);
485             if (!code)
486                 code = rcode;
487             if (!error && code)
488                 error = code;
489         } else
490             error = code;
491         return error;
492     }
493 }
494
495 /* called by EmuerateEntry, show vldb entry in a reasonable format */
496 void
497 SubEnumerateEntry(struct nvldbentry *entry)
498 {
499     int i;
500     char pname[10];
501     int isMixed = 0;
502
503 #ifdef notdef
504     fprintf(STDOUT, "   readWriteID %-10u ", entry->volumeId[RWVOL]);
505     if (entry->flags & RW_EXISTS)
506         fprintf(STDOUT, " valid \n");
507     else
508         fprintf(STDOUT, " invalid \n");
509     fprintf(STDOUT, "   readOnlyID  %-10u ", entry->volumeId[ROVOL]);
510     if (entry->flags & RO_EXISTS)
511         fprintf(STDOUT, " valid \n");
512     else
513         fprintf(STDOUT, " invalid \n");
514     fprintf(STDOUT, "   backUpID    %-10u ", entry->volumeId[BACKVOL]);
515     if (entry->flags & BACK_EXISTS)
516         fprintf(STDOUT, " valid \n");
517     else
518         fprintf(STDOUT, " invalid \n");
519     if ((entry->cloneId != 0) && (entry->flags & RO_EXISTS))
520         fprintf(STDOUT, "    releaseClone %-10u \n", entry->cloneId);
521 #else
522     if (entry->flags & RW_EXISTS)
523         fprintf(STDOUT, "    RWrite: %-10u", entry->volumeId[RWVOL]);
524     if (entry->flags & RO_EXISTS)
525         fprintf(STDOUT, "    ROnly: %-10u", entry->volumeId[ROVOL]);
526     if (entry->flags & BACK_EXISTS)
527         fprintf(STDOUT, "    Backup: %-10u", entry->volumeId[BACKVOL]);
528     if ((entry->cloneId != 0) && (entry->flags & RO_EXISTS))
529         fprintf(STDOUT, "    RClone: %-10lu", (unsigned long)entry->cloneId);
530     fprintf(STDOUT, "\n");
531 #endif
532     fprintf(STDOUT, "    number of sites -> %lu\n",
533             (unsigned long)entry->nServers);
534     for (i = 0; i < entry->nServers; i++) {
535         if (entry->serverFlags[i] & NEW_REPSITE)
536             isMixed = 1;
537     }
538     for (i = 0; i < entry->nServers; i++) {
539         MapPartIdIntoName(entry->serverPartition[i], pname);
540         fprintf(STDOUT, "       server %s partition %s ",
541                 hostutil_GetNameByINet(entry->serverNumber[i]), pname);
542         if (entry->serverFlags[i] & ITSRWVOL)
543             fprintf(STDOUT, "RW Site ");
544         else
545             fprintf(STDOUT, "RO Site ");
546         if (isMixed) {
547             if (entry->serverFlags[i] & NEW_REPSITE)
548                 fprintf(STDOUT," -- New release");
549             else
550                 if (!(entry->serverFlags[i] & ITSRWVOL))
551                     fprintf(STDOUT," -- Old release");
552         } else {
553             if (entry->serverFlags[i] & RO_DONTUSE)
554                 fprintf(STDOUT, " -- Not released");
555         }
556         fprintf(STDOUT, "\n");
557     }
558
559     return;
560
561 }
562
563 /*enumerate the vldb entry corresponding to <entry> */
564 void
565 EnumerateEntry(struct nvldbentry *entry)
566 {
567
568     fprintf(STDOUT, "\n");
569     fprintf(STDOUT, "%s \n", entry->name);
570     SubEnumerateEntry(entry);
571     return;
572 }
573
574 /* forcibly remove a volume.  Very dangerous call */
575 int
576 UV_NukeVolume(afs_int32 server, afs_int32 partid, afs_int32 volid)
577 {
578     register struct rx_connection *tconn;
579     register afs_int32 code;
580
581     tconn = UV_Bind(server, AFSCONF_VOLUMEPORT);
582     if (tconn) {
583         code = AFSVolNukeVolume(tconn, partid, volid);
584         rx_DestroyConnection(tconn);
585     } else
586         code = 0;
587     return code;
588 }
589
590 /* like df. Return usage of <pname> on <server> in <partition> */
591 int
592 UV_PartitionInfo(afs_int32 server, char *pname,
593                  struct diskPartition *partition)
594 {
595     register struct rx_connection *aconn;
596     afs_int32 code;
597
598     code = 0;
599     aconn = (struct rx_connection *)0;
600     aconn = UV_Bind(server, AFSCONF_VOLUMEPORT);
601     code = AFSVolPartitionInfo(aconn, pname, partition);
602     if (code) {
603         fprintf(STDERR, "Could not get information on partition %s\n", pname);
604         PrintError("", code);
605     }
606     if (aconn)
607         rx_DestroyConnection(aconn);
608     return code;
609 }
610
611 /* old interface to create volume */
612 int
613 UV_CreateVolume(afs_int32 aserver, afs_int32 apart, char *aname,
614                 afs_int32 * anewid)
615 {
616     afs_int32 code;
617     code = UV_CreateVolume2(aserver, apart, aname, 5000, 0, 0, 0, 0, anewid);
618     return code;
619 }
620
621 /* create a volume, given a server, partition number, volume name --> sends
622 * back new vol id in <anewid>*/
623 int
624 UV_CreateVolume2(afs_int32 aserver, afs_int32 apart, char *aname,
625                  afs_int32 aquota, afs_int32 aspare1, afs_int32 aspare2,
626                  afs_int32 aspare3, afs_int32 aspare4, afs_int32 * anewid)
627 {
628
629     register struct rx_connection *aconn;
630     afs_int32 tid;
631     register afs_int32 code;
632     afs_int32 error;
633     afs_int32 rcode, vcode;
634     struct nvldbentry entry, storeEntry;        /*the new vldb entry */
635     struct volintInfo tstatus;
636
637     tid = 0;
638     aconn = (struct rx_connection *)0;
639     error = 0;
640
641     init_volintInfo(&tstatus);
642     tstatus.maxquota = aquota;
643
644     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
645     /* next the next 3 available ids from the VLDB */
646     vcode = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 3, anewid);
647     EGOTO1(cfail, vcode, "Could not get an Id for volume %s\n", aname);
648
649     code =
650         AFSVolCreateVolume(aconn, apart, aname, volser_RW, 0, anewid, &tid);
651     EGOTO2(cfail, vcode, "Failed to create the volume %s %u \n", aname,
652            *anewid);
653
654     code = AFSVolSetInfo(aconn, tid, &tstatus);
655     if (code)
656         EPRINT(code, "Could not change quota (error %d), continuing...\n");
657
658     code = AFSVolSetFlags(aconn, tid, 0);       /* bring it online (mark it InService */
659     EGOTO2(cfail, vcode, "Could not bring the volume %s %u online \n", aname,
660            *anewid);
661
662     VPRINT2("Volume %s %u created and brought online\n", aname, *anewid);
663
664     /* set up the vldb entry for this volume */
665     strncpy(entry.name, aname, VOLSER_OLDMAXVOLNAME);
666     entry.nServers = 1;
667     entry.serverNumber[0] = aserver;    /* this should have another 
668                                          * level of indirection later */
669     entry.serverPartition[0] = apart;   /* this should also have 
670                                          * another indirection level */
671     entry.flags = RW_EXISTS;    /* this records that rw volume exists */
672     entry.serverFlags[0] = ITSRWVOL;    /*this rep site has rw  vol */
673     entry.volumeId[RWVOL] = *anewid;
674     entry.volumeId[ROVOL] = *anewid + 1;        /* rw,ro, bk id are related in the default case */
675     entry.volumeId[BACKVOL] = *anewid + 2;
676     entry.cloneId = 0;
677     /*map into right byte order, before passing to xdr, the stuff has to be in host
678      * byte order. Xdr converts it into network order */
679     MapNetworkToHost(&entry, &storeEntry);
680     /* create the vldb entry */
681     vcode = VLDB_CreateEntry(&storeEntry);
682     if (vcode) {
683         fprintf(STDERR,
684                 "Could not create a VLDB entry for the volume %s %lu\n",
685                 aname, (unsigned long)*anewid);
686         /*destroy the created volume */
687         VPRINT1("Deleting the newly created volume %u\n", *anewid);
688         AFSVolDeleteVolume(aconn, tid);
689         error = vcode;
690         goto cfail;
691     }
692     VPRINT2("Created the VLDB entry for the volume %s %u\n", aname, *anewid);
693     /* volume created, now terminate the transaction and release the connection */
694     code = AFSVolEndTrans(aconn, tid, &rcode);  /*if it crashes before this
695                                                  * the volume will come online anyway when transaction timesout , so if
696                                                  * vldb entry exists then the volume is guaranteed to exist too wrt create */
697     tid = 0;
698     if (code) {
699         fprintf(STDERR,
700                 "Failed to end the transaction on the volume %s %lu\n", aname,
701                 (unsigned long)*anewid);
702         error = code;
703         goto cfail;
704     }
705
706   cfail:
707     if (tid) {
708         code = AFSVolEndTrans(aconn, tid, &rcode);
709         if (code)
710             fprintf(STDERR, "WARNING: could not end transaction\n");
711     }
712     if (aconn)
713         rx_DestroyConnection(aconn);
714     PrintError("", error);
715     return error;
716
717
718 }
719
720 /* create a volume, given a server, partition number, volume name --> sends
721 * back new vol id in <anewid>*/
722 int
723 UV_AddVLDBEntry(afs_int32 aserver, afs_int32 apart, char *aname,
724                 afs_int32 aid)
725 {
726     register struct rx_connection *aconn;
727     afs_int32 error;
728     afs_int32 vcode;
729     struct nvldbentry entry, storeEntry;        /*the new vldb entry */
730
731     aconn = (struct rx_connection *)0;
732     error = 0;
733
734     /* set up the vldb entry for this volume */
735     strncpy(entry.name, aname, VOLSER_OLDMAXVOLNAME);
736     entry.nServers = 1;
737     entry.serverNumber[0] = aserver;    /* this should have another 
738                                          * level of indirection later */
739     entry.serverPartition[0] = apart;   /* this should also have 
740                                          * another indirection level */
741     entry.flags = RW_EXISTS;    /* this records that rw volume exists */
742     entry.serverFlags[0] = ITSRWVOL;    /*this rep site has rw  vol */
743     entry.volumeId[RWVOL] = aid;
744 #ifdef notdef
745     entry.volumeId[ROVOL] = anewid + 1; /* rw,ro, bk id are related in the default case */
746     entry.volumeId[BACKVOL] = *anewid + 2;
747 #else
748     entry.volumeId[ROVOL] = 0;
749     entry.volumeId[BACKVOL] = 0;
750 #endif
751     entry.cloneId = 0;
752     /*map into right byte order, before passing to xdr, the stuff has to be in host
753      * byte order. Xdr converts it into network order */
754     MapNetworkToHost(&entry, &storeEntry);
755     /* create the vldb entry */
756     vcode = VLDB_CreateEntry(&storeEntry);
757     if (vcode) {
758         fprintf(STDERR,
759                 "Could not create a VLDB entry for the  volume %s %lu\n",
760                 aname, (unsigned long)aid);
761         error = vcode;
762         goto cfail;
763     }
764     VPRINT2("Created the VLDB entry for the volume %s %u\n", aname, aid);
765
766   cfail:
767     if (aconn)
768         rx_DestroyConnection(aconn);
769     PrintError("", error);
770     return error;
771 }
772
773 /* Delete the volume <volid>on <aserver> <apart>
774  * the physical entry gets removed from the vldb only if the ref count 
775  * becomes zero
776  */
777 int
778 UV_DeleteVolume(afs_int32 aserver, afs_int32 apart, afs_int32 avolid)
779 {
780     struct rx_connection *aconn = (struct rx_connection *)0;
781     afs_int32 ttid = 0;
782     afs_int32 code, rcode;
783     afs_int32 error = 0;
784     struct nvldbentry entry, storeEntry;
785     int islocked = 0;
786     afs_int32 avoltype = -1, vtype;
787     int notondisk = 0, notinvldb = 0;
788
789     /* Find and read bhe VLDB entry for this volume */
790     code = ubik_Call(VL_SetLock, cstruct, 0, avolid, avoltype, VLOP_DELETE);
791     if (code) {
792         if (code != VL_NOENT) {
793             EGOTO1(error_exit, code,
794                    "Could not lock VLDB entry for the volume %u\n", avolid);
795         }
796         notinvldb = 1;
797     } else {
798         islocked = 1;
799
800         code = VLDB_GetEntryByID(avolid, avoltype, &entry);
801         EGOTO1(error_exit, code, "Could not fetch VLDB entry for volume %u\n",
802                avolid);
803         MapHostToNetwork(&entry);
804
805         if (verbose)
806             EnumerateEntry(&entry);
807     }
808
809     /* Whether volume is in the VLDB or not. Delete the volume on disk */
810     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
811     code = AFSVolTransCreate(aconn, avolid, apart, ITOffline, &ttid);
812     if (code) {
813         if (code == VNOVOL) {
814             notondisk = 1;
815         } else {
816             EGOTO1(error_exit, code, "Transaction on volume %u failed\n",
817                    avolid);
818         }
819     } else {
820         VPRINT1("Trying to delete the volume %u ...", avolid);
821
822         code = AFSVolDeleteVolume(aconn, ttid);
823         EGOTO1(error_exit, code, "Could not delete the volume %u \n", avolid);
824
825         code = AFSVolEndTrans(aconn, ttid, &rcode);
826         code = (code ? code : rcode);
827         ttid = 0;
828         EGOTO1(error_exit, code,
829                "Could not end the transaction for the volume %u \n", avolid);
830         VDONE;
831     }
832
833     /* Now update the VLDB entry.
834      * But first, verify we have a VLDB entry.
835      * Whether volume is on disk or not. Delete the volume in VLDB.
836      */
837     if (notinvldb)
838         ERROR_EXIT(0);
839
840     if (avolid == entry.volumeId[BACKVOL]) {
841         /* Its a backup volume, modify the VLDB entry. Check that the
842          * backup volume is on the server/partition we asked to delete.
843          */
844         if (!(entry.flags & BACK_EXISTS) || !Lp_Match(aserver, apart, &entry)) {
845             notinvldb = 2;      /* Not on this server and partition */
846             ERROR_EXIT(0);
847         }
848
849         VPRINT1("Marking the backup volume %u deleted in the VLDB\n", avolid);
850
851         entry.flags &= ~BACK_EXISTS;
852         vtype = BACKVOL;
853     }
854
855     else if (avolid == entry.volumeId[ROVOL]) {
856         /* Its a read-only volume, modify the VLDB entry. Check that the
857          * readonly volume is on the server/partition we asked to delete.
858          * If flags does not have RO_EIXSTS set, then this may mean the RO 
859          * hasn't been released (and could exist in VLDB).
860          */
861         if (!Lp_ROMatch(aserver, apart, &entry)) {
862             notinvldb = 2;      /* Not found on this server and partition */
863             ERROR_EXIT(0);
864         }
865
866         if (verbose)
867             fprintf(STDOUT,
868                     "Marking the readonly volume %lu deleted in the VLDB\n",
869                     (unsigned long)avolid);
870
871         Lp_SetROValue(&entry, aserver, apart, 0, 0);    /* delete the site */
872         entry.nServers--;
873         if (!Lp_ROMatch(0, 0, &entry))
874             entry.flags &= ~RO_EXISTS;  /* This was the last ro volume */
875         vtype = ROVOL;
876     }
877
878     else if (avolid == entry.volumeId[RWVOL]) {
879         /* It's a rw volume, delete the backup volume, modify the VLDB entry.
880          * Check that the readwrite volumes is on the server/partition we
881          * asked to delete.
882          */
883         if (!(entry.flags & RW_EXISTS) || !Lp_Match(aserver, apart, &entry)) {
884             notinvldb = 2;      /* Not found on this server and partition */
885             ERROR_EXIT(0);
886         }
887
888         /* Delete backup if it exists */
889         code =
890             AFSVolTransCreate(aconn, entry.volumeId[BACKVOL], apart,
891                               ITOffline, &ttid);
892         if (!code) {
893             if (verbose) {
894                 fprintf(STDOUT, "Trying to delete the backup volume %u ...",
895                         entry.volumeId[BACKVOL]);
896                 fflush(STDOUT);
897             }
898             code = AFSVolDeleteVolume(aconn, ttid);
899             EGOTO1(error_exit, code, "Could not delete the volume %u \n",
900                    entry.volumeId[BACKVOL]);
901
902             code = AFSVolEndTrans(aconn, ttid, &rcode);
903             ttid = 0;
904             code = (code ? code : rcode);
905             EGOTO1(error_exit, code,
906                    "Could not end the transaction for the volume %u \n",
907                    entry.volumeId[BACKVOL]);
908             if (verbose)
909                 fprintf(STDOUT, " done\n");
910         }
911
912         if (verbose)
913             fprintf(STDOUT,
914                     "Marking the readwrite volume %lu%s deleted in the VLDB\n",
915                     (unsigned long)avolid,
916                     ((entry.
917                       flags & BACK_EXISTS) ? ", and its backup volume," :
918                      ""));
919
920         Lp_SetRWValue(&entry, aserver, apart, 0L, 0L);
921         entry.nServers--;
922         entry.flags &= ~(BACK_EXISTS | RW_EXISTS);
923         vtype = RWVOL;
924
925         if (entry.flags & RO_EXISTS)
926             fprintf(STDERR, "WARNING: ReadOnly copy(s) may still exist\n");
927     }
928
929     else {
930         notinvldb = 2;          /* Not found on this server and partition */
931         ERROR_EXIT(0);
932     }
933
934     /* Either delete or replace the VLDB entry */
935     if ((entry.nServers <= 0) || !(entry.flags & (RO_EXISTS | RW_EXISTS))) {
936         if (verbose)
937             fprintf(STDOUT,
938                     "Last reference to the VLDB entry for %lu - deleting entry\n",
939                     (unsigned long)avolid);
940         code = ubik_Call(VL_DeleteEntry, cstruct, 0, avolid, vtype);
941         EGOTO1(error_exit, code,
942                "Could not delete the VLDB entry for the volume %u \n",
943                avolid);
944     } else {
945         MapNetworkToHost(&entry, &storeEntry);
946         code =
947             VLDB_ReplaceEntry(avolid, vtype, &storeEntry,
948                               (LOCKREL_OPCODE | LOCKREL_AFSID |
949                                LOCKREL_TIMESTAMP));
950         EGOTO1(error_exit, code,
951                "Could not update the VLDB entry for the volume %u \n",
952                avolid);
953     }
954     islocked = 0;
955
956   error_exit:
957     if (error)
958         EPRINT(error, "\n");
959
960     if (notondisk && notinvldb) {
961         EPRINT2(VOLSERNOVOL, "Volume %u does not exist %s\n", avolid,
962                 ((notinvldb == 2) ? "on server and partition" : ""));
963         if (!error)
964             error = VOLSERNOVOL;
965     } else if (notondisk) {
966         fprintf(STDERR,
967                 "WARNING: Volume %lu did not exist on the partition\n",
968                 (unsigned long)avolid);
969     } else if (notinvldb) {
970         fprintf(STDERR, "WARNING: Volume %lu does not exist in VLDB %s\n",
971                 (unsigned long)avolid,
972                 ((notinvldb == 2) ? "on server and partition" : ""));
973     }
974
975     if (ttid) {
976         code = AFSVolEndTrans(aconn, ttid, &rcode);
977         code = (code ? code : rcode);
978         if (code) {
979             fprintf(STDERR, "Could not end transaction on the volume %lu\n",
980                     (unsigned long)avolid);
981             PrintError("", code);
982             if (!error)
983                 error = code;
984         }
985     }
986
987     if (islocked) {
988         code =
989             ubik_Call(VL_ReleaseLock, cstruct, 0, avolid, -1,
990                       (LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP));
991         if (code) {
992             EPRINT1(code,
993                     "Could not release the lock on the VLDB entry for the volume %u \n",
994                     avolid);
995             if (!error)
996                 error = code;
997         }
998     }
999
1000     if (aconn)
1001         rx_DestroyConnection(aconn);
1002     return error;
1003 }
1004
1005 /* add recovery to UV_MoveVolume */
1006
1007 #define TESTC   0               /* set to test recovery code, clear for production */
1008
1009 jmp_buf env;
1010 int interrupt = 0;
1011
1012 void
1013 sigint_handler(int x)
1014 {
1015     if (interrupt)
1016         longjmp(env, 0);
1017
1018     fprintf(STDOUT, "\nSIGINT handler: vos move operation in progress\n");
1019     fprintf(STDOUT,
1020             "WARNING: may leave AFS storage and metadata in indeterminate state\n");
1021     fprintf(STDOUT, "enter second control-c to exit\n");
1022     fflush(STDOUT);
1023
1024     interrupt = 1;
1025     (void)signal(SIGINT, sigint_handler);
1026
1027     return;
1028 }
1029
1030 /* Move volume <afromvol> on <afromserver> <afrompart> to <atoserver>
1031  * <atopart>.  The operation is almost idempotent.  The following
1032  * flags are recognized:
1033  * 
1034  *     RV_NOCLONE - don't use a copy clone
1035  */
1036
1037 int
1038 UV_MoveVolume2(afs_int32 afromvol, afs_int32 afromserver, afs_int32 afrompart,
1039                afs_int32 atoserver, afs_int32 atopart, int flags)
1040 {
1041     struct rx_connection *toconn, *fromconn;
1042     afs_int32 fromtid, totid, clonetid;
1043     char vname[64];
1044     char *volName = 0;
1045     char tmpName[VOLSER_MAXVOLNAME + 1];
1046     afs_int32 rcode;
1047     afs_int32 fromDate;
1048     struct restoreCookie cookie;
1049     register afs_int32 vcode, code;
1050     afs_int32 newVol, volid, backupId;
1051     struct volser_status tstatus;
1052     struct destServer destination;
1053
1054     struct nvldbentry entry, storeEntry;
1055     int i, islocked, pntg;
1056     afs_int32 error;
1057     char in, lf;                /* for test code */
1058     int same;
1059
1060 #ifdef  ENABLE_BUGFIX_1165
1061     volEntries volumeInfo;
1062     struct volintInfo *infop = 0;
1063 #endif
1064
1065     islocked = 0;
1066     fromconn = (struct rx_connection *)0;
1067     toconn = (struct rx_connection *)0;
1068     fromtid = 0;
1069     totid = 0;
1070     clonetid = 0;
1071     error = 0;
1072     volid = 0;
1073     pntg = 0;
1074     backupId = 0;
1075     newVol = 0;
1076
1077     /* support control-c processing */
1078     if (setjmp(env))
1079         goto mfail;
1080     (void)signal(SIGINT, sigint_handler);
1081
1082     if (TESTC) {
1083         fprintf(STDOUT,
1084                 "\nThere are three tests points - verifies all code paths through recovery.\n");
1085         fprintf(STDOUT, "First test point - operation not started.\n");
1086         fprintf(STDOUT, "...test here (y, n)? ");
1087         fflush(STDOUT);
1088         fscanf(stdin, "%c", &in);
1089         fscanf(stdin, "%c", &lf);       /* toss away */
1090         if (in == 'y') {
1091             fprintf(STDOUT, "type control-c\n");
1092             while (1) {
1093                 fprintf(stdout, ".");
1094                 fflush(stdout);
1095                 sleep(1);
1096             }
1097         }
1098         /* or drop through */
1099     }
1100
1101     vcode = VLDB_GetEntryByID(afromvol, -1, &entry);
1102     EGOTO1(mfail, vcode,
1103            "Could not fetch the entry for the volume  %u from the VLDB \n",
1104            afromvol);
1105
1106     if (entry.volumeId[RWVOL] != afromvol) {
1107         fprintf(STDERR, "Only RW volume can be moved\n");
1108         exit(1);
1109     }
1110
1111     vcode = ubik_Call(VL_SetLock, cstruct, 0, afromvol, RWVOL, VLOP_MOVE);
1112     EGOTO1(mfail, vcode, "Could not lock entry for volume %u \n", afromvol);
1113     islocked = 1;
1114
1115     vcode = VLDB_GetEntryByID(afromvol, RWVOL, &entry);
1116     EGOTO1(mfail, vcode,
1117            "Could not fetch the entry for the volume  %u from the VLDB \n",
1118            afromvol);
1119
1120     backupId = entry.volumeId[BACKVOL];
1121     MapHostToNetwork(&entry);
1122
1123     if (!Lp_Match(afromserver, afrompart, &entry)) {
1124         /* the from server and partition do not exist in the vldb entry corresponding to volid */
1125         if (!Lp_Match(atoserver, atopart, &entry)) {
1126             /* the to server and partition do not exist in the vldb entry corresponding to volid */
1127             fprintf(STDERR, "The volume %lu is not on the specified site. \n",
1128                     (unsigned long)afromvol);
1129             fprintf(STDERR, "The current site is :");
1130             for (i = 0; i < entry.nServers; i++) {
1131                 if (entry.serverFlags[i] == ITSRWVOL) {
1132                     char pname[10];
1133                     MapPartIdIntoName(entry.serverPartition[i], pname);
1134                     fprintf(STDERR, " server %s partition %s \n",
1135                             hostutil_GetNameByINet(entry.serverNumber[i]),
1136                             pname);
1137                 }
1138             }
1139             vcode =
1140                 ubik_Call(VL_ReleaseLock, cstruct, 0, afromvol, -1,
1141                           (LOCKREL_OPCODE | LOCKREL_AFSID |
1142                            LOCKREL_TIMESTAMP));
1143             EGOTO1(mfail, vcode,
1144                    " Could not release lock on the VLDB entry for the volume %u \n",
1145                    afromvol);
1146
1147             return VOLSERVOLMOVED;
1148         }
1149
1150         /* delete the volume afromvol on src_server */
1151         /* from-info does not exist but to-info does =>
1152          * we have already done the move, but the volume
1153          * may still be existing physically on from fileserver
1154          */
1155         fromconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
1156         fromtid = 0;
1157         pntg = 1;
1158
1159         code =
1160             AFSVolTransCreate(fromconn, afromvol, afrompart, ITOffline,
1161                               &fromtid);
1162         if (!code) {            /* volume exists - delete it */
1163             VPRINT1("Setting flags on leftover source volume %u ...",
1164                     afromvol);
1165             code =
1166                 AFSVolSetFlags(fromconn, fromtid,
1167                                VTDeleteOnSalvage | VTOutOfService);
1168             EGOTO1(mfail, code,
1169                    "Failed to set flags on the leftover source volume %u\n",
1170                    afromvol);
1171             VDONE;
1172
1173             VPRINT1("Deleting leftover source volume %u ...", afromvol);
1174             code = AFSVolDeleteVolume(fromconn, fromtid);
1175             EGOTO1(mfail, code,
1176                    "Failed to delete the leftover source volume %u\n",
1177                    afromvol);
1178             VDONE;
1179
1180             VPRINT1("Ending transaction on leftover source volume %u ...",
1181                     afromvol);
1182             code = AFSVolEndTrans(fromconn, fromtid, &rcode);
1183             fromtid = 0;
1184             if (!code)
1185                 code = rcode;
1186             EGOTO1(mfail, code,
1187                    "Could not end the transaction for the leftover source volume %u \n",
1188                    afromvol);
1189             VDONE;
1190         }
1191
1192         /*delete the backup volume now */
1193         fromtid = 0;
1194         code =
1195             AFSVolTransCreate(fromconn, backupId, afrompart, ITOffline,
1196                               &fromtid);
1197         if (!code) {            /* backup volume exists - delete it */
1198             VPRINT1("Setting flags on leftover backup volume %u ...",
1199                     backupId);
1200             code =
1201                 AFSVolSetFlags(fromconn, fromtid,
1202                                VTDeleteOnSalvage | VTOutOfService);
1203             EGOTO1(mfail, code,
1204                    "Failed to set flags on the backup volume %u\n", backupId);
1205             VDONE;
1206
1207             VPRINT1("Deleting leftover backup volume %u ...", backupId);
1208             code = AFSVolDeleteVolume(fromconn, fromtid);
1209             EGOTO1(mfail, code,
1210                    "Could not delete the leftover backup volume %u\n",
1211                    backupId);
1212             VDONE;
1213
1214             VPRINT1("Ending transaction on leftover backup volume %u ...",
1215                     backupId);
1216             code = AFSVolEndTrans(fromconn, fromtid, &rcode);
1217             fromtid = 0;
1218             if (!code)
1219                 code = rcode;
1220             EGOTO1(mfail, code,
1221                    "Could not end the transaction for the leftover backup volume %u\n",
1222                    backupId);
1223             VDONE;
1224         }
1225
1226         fromtid = 0;
1227         error = 0;
1228         goto mfail;
1229     }
1230
1231     /* From-info matches the vldb info about volid,
1232      * its ok start the move operation, the backup volume 
1233      * on the old site is deleted in the process 
1234      */
1235     if (afrompart == atopart) {
1236         same = VLDB_IsSameAddrs(afromserver, atoserver, &error);
1237         EGOTO2(mfail, error,
1238                "Failed to get info about server's %d address(es) from vlserver (err=%d); aborting call!\n",
1239                afromserver, error);
1240
1241         if (same) {
1242             EGOTO1(mfail, VOLSERVOLMOVED,
1243                    "Warning: Moving volume %u to its home partition ignored!\n",
1244                    afromvol);
1245         }
1246     }
1247
1248     pntg = 1;
1249     toconn = UV_Bind(atoserver, AFSCONF_VOLUMEPORT);    /* get connections to the servers */
1250     fromconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
1251     fromtid = totid = 0;        /* initialize to uncreated */
1252
1253     /* ***
1254      * clone the read/write volume locally.
1255      * ***/
1256
1257     VPRINT1("Starting transaction on source volume %u ...", afromvol);
1258     code = AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy, &fromtid);
1259     EGOTO1(mfail, code, "Failed to create transaction on the volume %u\n",
1260            afromvol);
1261     VDONE;
1262
1263     if (!(flags & RV_NOCLONE)) {
1264         /* Get a clone id */
1265         VPRINT1("Allocating new volume id for clone of volume %u ...",
1266                 afromvol);
1267         newVol = 0;
1268         vcode = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &newVol);
1269         EGOTO1(mfail, vcode,
1270                "Could not get an ID for the clone of volume %u from the VLDB\n",
1271                afromvol);
1272         VDONE;
1273
1274         /* Do the clone. Default flags on clone are set to delete on salvage and out of service */
1275         VPRINT1("Cloning source volume %u ...", afromvol);
1276         strcpy(vname, "move-clone-temp");
1277         code =
1278             AFSVolClone(fromconn, fromtid, 0, readonlyVolume, vname, &newVol);
1279         EGOTO1(mfail, code, "Failed to clone the source volume %u\n",
1280                afromvol);
1281         VDONE;
1282     }
1283
1284     /* lookup the name of the volume we just cloned */
1285     volid = afromvol;
1286     code = AFSVolGetName(fromconn, fromtid, &volName);
1287     EGOTO1(mfail, code, "Failed to get the name of the volume %u\n",
1288            afromvol);
1289
1290     VPRINT1("Ending the transaction on the source volume %u ...", afromvol);
1291     rcode = 0;
1292     code = AFSVolEndTrans(fromconn, fromtid, &rcode);
1293     fromtid = 0;
1294     if (!code)
1295         code = rcode;
1296     EGOTO1(mfail, code,
1297            "Failed to end the transaction on the source volume %u\n",
1298            afromvol);
1299     VDONE;
1300
1301     /* ***
1302      * Create the destination volume
1303      * ***/
1304
1305     if (!(flags & RV_NOCLONE)) {
1306         /* All of this is to get the fromDate */
1307         VPRINT1("Starting transaction on the cloned volume %u ...", newVol);
1308         code =
1309             AFSVolTransCreate(fromconn, newVol, afrompart, ITOffline,
1310                               &clonetid);
1311         EGOTO1(mfail, code,
1312                "Failed to start a transaction on the cloned volume%u\n",
1313                newVol);
1314         VDONE;
1315
1316         VPRINT1("Setting flags on cloned volume %u ...", newVol);
1317         code =
1318             AFSVolSetFlags(fromconn, clonetid,
1319                            VTDeleteOnSalvage | VTOutOfService); /*redundant */
1320         EGOTO1(mfail, code, "Could not set flags on the cloned volume %u\n",
1321                newVol);
1322         VDONE;
1323
1324         /* remember time from which we've dumped the volume */
1325         VPRINT1("Getting status of cloned volume %u ...", newVol);
1326         code = AFSVolGetStatus(fromconn, clonetid, &tstatus);
1327         EGOTO1(mfail, code,
1328                "Failed to get the status of the cloned volume %u\n",
1329                newVol);
1330         VDONE;
1331
1332         fromDate = tstatus.creationDate - CLOCKSKEW;
1333     } else {
1334         /* With RV_NOCLONE, just do a full copy from the source */
1335         fromDate = 0;
1336     }
1337
1338
1339 #ifdef  ENABLE_BUGFIX_1165
1340     /*
1341      * Get the internal volume state from the source volume. We'll use such info (i.e. dayUse)
1342      * to copy it to the new volume (via AFSSetInfo later on) so that when we move volumes we
1343      * don't use this information...
1344      */
1345     volumeInfo.volEntries_val = (volintInfo *) 0;       /*this hints the stub to allocate space */
1346     volumeInfo.volEntries_len = 0;
1347     code = AFSVolListOneVolume(fromconn, afrompart, afromvol, &volumeInfo);
1348     EGOTO1(mfail, code,
1349            "Failed to get the volint Info of the cloned volume %u\n",
1350            afromvol);
1351
1352     infop = (volintInfo *) volumeInfo.volEntries_val;
1353     infop->maxquota = -1;       /* Else it will replace the default quota */
1354     infop->creationDate = -1;   /* Else it will use the source creation date */
1355     infop->updateDate = -1;     /* Else it will use the source update date */
1356 #endif
1357
1358     /* create a volume on the target machine */
1359     volid = afromvol;
1360     code = AFSVolTransCreate(toconn, volid, atopart, ITOffline, &totid);
1361     if (!code) {
1362         /* Delete the existing volume.
1363          * While we are deleting the volume in these steps, the transaction
1364          * we started against the cloned volume (clonetid above) will be
1365          * sitting idle. It will get cleaned up after 600 seconds
1366          */
1367         VPRINT1("Deleting pre-existing volume %u on destination ...", volid);
1368         code = AFSVolDeleteVolume(toconn, totid);
1369         EGOTO1(mfail, code,
1370                "Could not delete the pre-existing volume %u on destination\n",
1371                volid);
1372         VDONE;
1373
1374         VPRINT1
1375             ("Ending transaction on pre-existing volume %u on destination ...",
1376              volid);
1377         code = AFSVolEndTrans(toconn, totid, &rcode);
1378         totid = 0;
1379         if (!code)
1380             code = rcode;
1381         EGOTO1(mfail, code,
1382                "Could not end the transaction on pre-existing volume %u on destination\n",
1383                volid);
1384         VDONE;
1385     }
1386
1387     VPRINT1("Creating the destination volume %u ...", volid);
1388     code =
1389         AFSVolCreateVolume(toconn, atopart, volName, volser_RW, volid, &volid,
1390                            &totid);
1391     EGOTO1(mfail, code, "Failed to create the destination volume %u\n",
1392            volid);
1393     VDONE;
1394
1395     strncpy(tmpName, volName, VOLSER_OLDMAXVOLNAME);
1396     free(volName);
1397     volName = NULL;
1398
1399     VPRINT1("Setting volume flags on destination volume %u ...", volid);
1400     code =
1401         AFSVolSetFlags(toconn, totid, (VTDeleteOnSalvage | VTOutOfService));
1402     EGOTO1(mfail, code,
1403            "Failed to set the flags on the destination volume %u\n", volid);
1404     VDONE;
1405
1406     /***
1407      * Now dump the clone to the new volume
1408      ***/
1409
1410     destination.destHost = ntohl(atoserver);
1411     destination.destPort = AFSCONF_VOLUMEPORT;
1412     destination.destSSID = 1;
1413
1414     strncpy(cookie.name, tmpName, VOLSER_OLDMAXVOLNAME);
1415     cookie.type = RWVOL;
1416     cookie.parent = entry.volumeId[RWVOL];
1417     cookie.clone = 0;
1418
1419     if (!(flags & RV_NOCLONE)) {
1420         /* Copy the clone to the new volume */
1421         VPRINT2("Dumping from clone %u on source to volume %u on destination ...",
1422                 newVol, afromvol);
1423         code =
1424             AFSVolForward(fromconn, clonetid, 0, &destination, totid,
1425                           &cookie);
1426         EGOTO1(mfail, code, "Failed to move data for the volume %u\n", volid);
1427         VDONE;
1428
1429         VPRINT1("Ending transaction on cloned volume %u ...", newVol);
1430         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
1431         if (!code)
1432             code = rcode;
1433         clonetid = 0;
1434         EGOTO1(mfail, code,
1435                "Failed to end the transaction on the cloned volume %u\n",
1436                newVol);
1437         VDONE;
1438     }
1439
1440     /* ***
1441      * reattach to the main-line volume, and incrementally dump it.
1442      * ***/
1443
1444     VPRINT1("Starting transaction on source volume %u ...", afromvol);
1445     code = AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy, &fromtid);
1446     EGOTO1(mfail, code,
1447            "Failed to create a transaction on the source volume %u\n",
1448            afromvol);
1449     VDONE;
1450
1451     /* now do the incremental */
1452     VPRINT2
1453         ("Doing the%s dump from source to destination for volume %u ... ",
1454          (flags & RV_NOCLONE) ? "" : " incremental",
1455          afromvol);
1456     code =
1457         AFSVolForward(fromconn, fromtid, fromDate, &destination, totid,
1458                       &cookie);
1459     EGOTO1(mfail, code,
1460            "Failed to do the%s dump from rw volume on old site to rw volume on newsite\n",
1461           (flags & RV_NOCLONE) ? "" : " incremental");
1462     VDONE;
1463
1464     /* now adjust the flags so that the new volume becomes official */
1465     VPRINT1("Setting volume flags on old source volume %u ...", afromvol);
1466     code = AFSVolSetFlags(fromconn, fromtid, VTOutOfService);
1467     EGOTO(mfail, code,
1468           "Failed to set the flags to make old source volume offline\n");
1469     VDONE;
1470
1471     VPRINT1("Setting volume flags on new source volume %u ...", afromvol);
1472     code = AFSVolSetFlags(toconn, totid, 0);
1473     EGOTO(mfail, code,
1474           "Failed to set the flags to make new source volume online\n");
1475     VDONE;
1476
1477 #ifdef  ENABLE_BUGFIX_1165
1478     VPRINT1("Setting volume status on destination volume %u ...", volid);
1479     code = AFSVolSetInfo(toconn, totid, infop);
1480     EGOTO1(mfail, code,
1481            "Failed to set volume status on the destination volume %u\n",
1482            volid);
1483     VDONE;
1484 #endif
1485
1486     /* put new volume online */
1487     VPRINT1("Ending transaction on destination volume %u ...", afromvol);
1488     code = AFSVolEndTrans(toconn, totid, &rcode);
1489     totid = 0;
1490     if (!code)
1491         code = rcode;
1492     EGOTO1(mfail, code,
1493            "Failed to end the transaction on the volume %u on the new site\n",
1494            afromvol);
1495     VDONE;
1496
1497     Lp_SetRWValue(&entry, afromserver, afrompart, atoserver, atopart);
1498     MapNetworkToHost(&entry, &storeEntry);
1499     storeEntry.flags &= ~BACK_EXISTS;
1500
1501     if (TESTC) {
1502         fprintf(STDOUT,
1503                 "Second test point - operation in progress but not complete.\n");
1504         fprintf(STDOUT, "...test here (y, n)? ");
1505         fflush(STDOUT);
1506         fscanf(stdin, "%c", &in);
1507         fscanf(stdin, "%c", &lf);       /* toss away */
1508         if (in == 'y') {
1509             fprintf(STDOUT, "type control-c\n");
1510             while (1) {
1511                 fprintf(stdout, ".");
1512                 fflush(stdout);
1513                 sleep(1);
1514             }
1515         }
1516         /* or drop through */
1517     }
1518
1519     VPRINT1("Releasing lock on VLDB entry for volume %u ...", afromvol);
1520     vcode =
1521         VLDB_ReplaceEntry(afromvol, -1, &storeEntry,
1522                           (LOCKREL_OPCODE | LOCKREL_AFSID |
1523                            LOCKREL_TIMESTAMP));
1524     if (vcode) {
1525         fprintf(STDERR,
1526                 " Could not release the lock on the VLDB entry for the volume %s %lu \n",
1527                 storeEntry.name, (unsigned long)afromvol);
1528         error = vcode;
1529         goto mfail;
1530     }
1531     islocked = 0;
1532     VDONE;
1533
1534     if (TESTC) {
1535         fprintf(STDOUT,
1536                 "Third test point - operation complete but no cleanup.\n");
1537         fprintf(STDOUT, "...test here (y, n)? ");
1538         fflush(STDOUT);
1539         fscanf(stdin, "%c", &in);
1540         fscanf(stdin, "%c", &lf);       /* toss away */
1541         if (in == 'y') {
1542             fprintf(STDOUT, "type control-c\n");
1543             while (1) {
1544                 fprintf(stdout, ".");
1545                 fflush(stdout);
1546                 sleep(1);
1547             }
1548         }
1549         /* or drop through */
1550     }
1551 #ifdef notdef
1552     /* This is tricky.  File server is very stupid, and if you mark the volume
1553      * as VTOutOfService, it may mark the *good* instance (if you're moving
1554      * between partitions on the same machine) as out of service.  Since
1555      * we're cleaning this code up in DEcorum, we're just going to kludge around
1556      * it for now by removing this call. */
1557     /* already out of service, just zap it now */
1558     code =
1559         AFSVolSetFlags(fromconn, fromtid, VTDeleteOnSalvage | VTOutOfService);
1560     if (code) {
1561         fprintf(STDERR,
1562                 "Failed to set the flags to make the old source volume offline\n");
1563         goto mfail;
1564     }
1565 #endif
1566     if (atoserver != afromserver) {
1567         /* set forwarding pointer for moved volumes */
1568         VPRINT1("Setting forwarding pointer for volume %u ...", afromvol);
1569         code = AFSVolSetForwarding(fromconn, fromtid, atoserver);
1570         EGOTO1(mfail, code,
1571                "Failed to set the forwarding pointer for the volume %u\n",
1572                afromvol);
1573         VDONE;
1574     }
1575
1576     VPRINT1("Deleting old volume %u on source ...", afromvol);
1577     code = AFSVolDeleteVolume(fromconn, fromtid);       /* zap original volume */
1578     EGOTO1(mfail, code, "Failed to delete the old volume %u on source\n",
1579            afromvol);
1580     VDONE;
1581
1582     VPRINT1("Ending transaction on old volume %u on the source ...",
1583             afromvol);
1584     code = AFSVolEndTrans(fromconn, fromtid, &rcode);
1585     fromtid = 0;
1586     if (!code)
1587         code = rcode;
1588     EGOTO1(mfail, code,
1589            "Failed to end the transaction on the old volume %u on the source\n",
1590            afromvol);
1591     VDONE;
1592
1593     /* Delete the backup volume on the original site */
1594     VPRINT1("Creating transaction for backup volume %u on source ...",
1595             backupId);
1596     code =
1597         AFSVolTransCreate(fromconn, backupId, afrompart, ITOffline, &fromtid);
1598     VDONE;
1599     if (!code) {
1600         VPRINT1("Setting flags on backup volume %u on source ...", backupId);
1601         code =
1602             AFSVolSetFlags(fromconn, fromtid,
1603                            VTDeleteOnSalvage | VTOutOfService);
1604         EGOTO1(mfail, code,
1605                "Failed to set the flags on the backup volume %u on the source\n",
1606                backupId);
1607         VDONE;
1608
1609         VPRINT1("Deleting the backup volume %u on the source ...", backupId);
1610         code = AFSVolDeleteVolume(fromconn, fromtid);
1611         EGOTO1(mfail, code,
1612                "Failed to delete the backup volume %u on the source\n",
1613                backupId);
1614         VDONE;
1615
1616         VPRINT1("Ending transaction on backup volume %u on source ...",
1617                 backupId);
1618         code = AFSVolEndTrans(fromconn, fromtid, &rcode);
1619         fromtid = 0;
1620         if (!code)
1621             code = rcode;
1622         EGOTO1(mfail, code,
1623                "Failed to end the transaction on the backup volume %u on the source\n",
1624                backupId);
1625         VDONE;
1626     } else
1627         code = 0;               /* no backup volume? that's okay */
1628
1629     fromtid = 0;
1630     if (!(flags & RV_NOCLONE)) {
1631         VPRINT1("Starting transaction on the cloned volume %u ...", newVol);
1632         code =
1633             AFSVolTransCreate(fromconn, newVol, afrompart, ITOffline,
1634                               &clonetid);
1635         EGOTO1(mfail, code,
1636                "Failed to start a transaction on the cloned volume%u\n",
1637                newVol);
1638         VDONE;
1639
1640         /* now delete the clone */
1641         VPRINT1("Deleting the cloned volume %u ...", newVol);
1642         code = AFSVolDeleteVolume(fromconn, clonetid);
1643         EGOTO1(mfail, code, "Failed to delete the cloned volume %u\n",
1644                newVol);
1645         VDONE;
1646
1647         VPRINT1("Ending transaction on cloned volume %u ...", newVol);
1648         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
1649         if (!code)
1650             code = rcode;
1651         clonetid = 0;
1652         EGOTO1(mfail, code,
1653                "Failed to end the transaction on the cloned volume %u\n",
1654                newVol);
1655         VDONE;
1656     }
1657
1658     /* fall through */
1659     /* END OF MOVE */
1660
1661     if (TESTC) {
1662         fprintf(STDOUT, "Fourth test point - operation complete.\n");
1663         fprintf(STDOUT, "...test here (y, n)? ");
1664         fflush(STDOUT);
1665         fscanf(stdin, "%c", &in);
1666         fscanf(stdin, "%c", &lf);       /* toss away */
1667         if (in == 'y') {
1668             fprintf(STDOUT, "type control-c\n");
1669             while (1) {
1670                 fprintf(stdout, ".");
1671                 fflush(stdout);
1672                 sleep(1);
1673             }
1674         }
1675         /* or drop through */
1676     }
1677
1678     /* normal cleanup code */
1679
1680     if (entry.flags & RO_EXISTS)
1681         fprintf(STDERR, "WARNING : readOnly copies still exist \n");
1682
1683     if (islocked) {
1684         VPRINT1("Cleanup: Releasing VLDB lock on volume %u ...", afromvol);
1685         vcode =
1686             ubik_Call(VL_ReleaseLock, cstruct, 0, afromvol, -1,
1687                       (LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP));
1688         if (vcode) {
1689             VPRINT("\n");
1690             fprintf(STDERR,
1691                     " Could not release the lock on the VLDB entry for the volume %lu \n",
1692                     (unsigned long)afromvol);
1693             if (!error)
1694                 error = vcode;
1695         }
1696         VDONE;
1697     }
1698
1699     if (fromtid) {
1700         VPRINT1("Cleanup: Ending transaction on source volume %u ...",
1701                 afromvol);
1702         code = AFSVolEndTrans(fromconn, fromtid, &rcode);
1703         if (code || rcode) {
1704             VPRINT("\n");
1705             fprintf(STDERR,
1706                     "Could not end transaction on the source volume %lu\n",
1707                     (unsigned long)afromvol);
1708             if (!error)
1709                 error = (code ? code : rcode);
1710         }
1711         VDONE;
1712     }
1713
1714     if (clonetid) {
1715         VPRINT1("Cleanup: Ending transaction on clone volume %u ...", newVol);
1716         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
1717         if (code || rcode) {
1718             VPRINT("\n");
1719             fprintf(STDERR,
1720                     "Could not end transaction on the source's clone volume %lu\n",
1721                     (unsigned long)newVol);
1722             if (!error)
1723                 error = (code ? code : rcode);
1724         }
1725         VDONE;
1726     }
1727
1728     if (totid) {
1729         VPRINT1("Cleanup: Ending transaction on destination volume %u ...",
1730                 afromvol);
1731         code = AFSVolEndTrans(toconn, totid, &rcode);
1732         if (code) {
1733             VPRINT("\n");
1734             fprintf(STDERR,
1735                     "Could not end transaction on destination volume %lu\n",
1736                     (unsigned long)afromvol);
1737             if (!error)
1738                 error = (code ? code : rcode);
1739         }
1740         VDONE;
1741     }
1742     if (volName)
1743         free(volName);
1744 #ifdef  ENABLE_BUGFIX_1165
1745     if (infop)
1746         free(infop);
1747 #endif
1748     if (fromconn)
1749         rx_DestroyConnection(fromconn);
1750     if (toconn)
1751         rx_DestroyConnection(toconn);
1752     PrintError("", error);
1753     return error;
1754
1755     /* come here only when the sky falls */
1756   mfail:
1757
1758     if (pntg) {
1759         fprintf(STDOUT,
1760                 "vos move: operation interrupted, cleanup in progress...\n");
1761         fprintf(STDOUT, "clear transaction contexts\n");
1762         fflush(STDOUT);
1763     }
1764
1765     /* unlock VLDB entry */
1766     if (islocked) {
1767         VPRINT1("Recovery: Releasing VLDB lock on volume %u ...", afromvol);
1768         ubik_Call(VL_ReleaseLock, cstruct, 0, afromvol, -1,
1769                   (LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP));
1770         VDONE;
1771     }
1772
1773     if (clonetid) {
1774         VPRINT("Recovery: Ending transaction on clone volume ...");
1775         AFSVolEndTrans(fromconn, clonetid, &rcode);
1776         VDONE;
1777     }
1778     if (totid) {
1779         VPRINT("Recovery: Ending transaction on destination volume ...");
1780         AFSVolEndTrans(toconn, totid, &rcode);
1781         VDONE;
1782     }
1783     if (fromtid) {              /* put it on-line */
1784         VPRINT("Recovery: Setting volume flags on source volume ...");
1785         AFSVolSetFlags(fromconn, fromtid, 0);
1786         VDONE;
1787
1788         VPRINT("Recovery: Ending transaction on source volume ...");
1789         AFSVolEndTrans(fromconn, fromtid, &rcode);
1790         VDONE;
1791     }
1792
1793     VPRINT("Recovery: Accessing VLDB.\n");
1794     vcode = VLDB_GetEntryByID(afromvol, -1, &entry);
1795     if (vcode) {
1796         fprintf(STDOUT, "FATAL: VLDB access error: abort cleanup\n");
1797         fflush(STDOUT);
1798         goto done;
1799     }
1800     MapHostToNetwork(&entry);
1801
1802     /* Delete either the volume on the source location or the target location. 
1803      * If the vldb entry still points to the source location, then we know the
1804      * volume move didn't finish so we remove the volume from the target 
1805      * location. Otherwise, we remove the volume from the source location.
1806      */
1807     if (Lp_Match(afromserver, afrompart, &entry)) {     /* didn't move - delete target volume */
1808         if (pntg) {
1809             fprintf(STDOUT,
1810                     "move incomplete - attempt cleanup of target partition - no guarantee\n");
1811             fflush(STDOUT);
1812         }
1813
1814         if (volid && toconn) {
1815             VPRINT1
1816                 ("Recovery: Creating transaction for destination volume %u ...",
1817                  volid);
1818             code =
1819                 AFSVolTransCreate(toconn, volid, atopart, ITOffline, &totid);
1820
1821             if (!code) {
1822                 VDONE;
1823
1824                 VPRINT1
1825                     ("Recovery: Setting flags on destination volume %u ...",
1826                      volid);
1827                 AFSVolSetFlags(toconn, totid,
1828                                VTDeleteOnSalvage | VTOutOfService);
1829                 VDONE;
1830
1831                 VPRINT1("Recovery: Deleting destination volume %u ...",
1832                         volid);
1833                 AFSVolDeleteVolume(toconn, totid);
1834                 VDONE;
1835
1836                 VPRINT1
1837                     ("Recovery: Ending transaction on destination volume %u ...",
1838                      volid);
1839                 AFSVolEndTrans(toconn, totid, &rcode);
1840                 VDONE;
1841             } else {
1842                 VPRINT1
1843                     ("\nRecovery: Unable to start transaction on destination volume %u.\n",
1844                      afromvol);
1845             }
1846         }
1847
1848         /* put source volume on-line */
1849         if (fromconn) {
1850             VPRINT1("Recovery: Creating transaction on source volume %u ...",
1851                     afromvol);
1852             code =
1853                 AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy,
1854                                   &fromtid);
1855             if (!code) {
1856                 VDONE;
1857
1858                 VPRINT1("Recovery: Setting flags on source volume %u ...",
1859                         afromvol);
1860                 AFSVolSetFlags(fromconn, fromtid, 0);
1861                 VDONE;
1862
1863                 VPRINT1
1864                     ("Recovery: Ending transaction on source volume %u ...",
1865                      afromvol);
1866                 AFSVolEndTrans(fromconn, fromtid, &rcode);
1867                 VDONE;
1868             } else {
1869                 VPRINT1
1870                     ("\nRecovery: Unable to start transaction on source volume %u.\n",
1871                      afromvol);
1872             }
1873         }
1874     } else {                    /* yep, move complete */
1875         if (pntg) {
1876             fprintf(STDOUT,
1877                     "move complete - attempt cleanup of source partition - no guarantee\n");
1878             fflush(STDOUT);
1879         }
1880
1881         /* delete backup volume */
1882         if (fromconn) {
1883             VPRINT1("Recovery: Creating transaction on backup volume %u ...",
1884                     backupId);
1885             code =
1886                 AFSVolTransCreate(fromconn, backupId, afrompart, ITOffline,
1887                                   &fromtid);
1888             if (!code) {
1889                 VDONE;
1890
1891                 VPRINT1("Recovery: Setting flags on backup volume %u ...",
1892                         backupId);
1893                 AFSVolSetFlags(fromconn, fromtid,
1894                                VTDeleteOnSalvage | VTOutOfService);
1895                 VDONE;
1896
1897                 VPRINT1("Recovery: Deleting backup volume %u ...", backupId);
1898                 AFSVolDeleteVolume(fromconn, fromtid);
1899                 VDONE;
1900
1901                 VPRINT1
1902                     ("Recovery: Ending transaction on backup volume %u ...",
1903                      backupId);
1904                 AFSVolEndTrans(fromconn, fromtid, &rcode);
1905                 VDONE;
1906             } else {
1907                 VPRINT1
1908                     ("\nRecovery: Unable to start transaction on backup volume %u.\n",
1909                      backupId);
1910             }
1911
1912             /* delete source volume */
1913             VPRINT1("Recovery: Creating transaction on source volume %u ...",
1914                     afromvol);
1915             code =
1916                 AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy,
1917                                   &fromtid);
1918             if (!code) {
1919                 VDONE;
1920
1921                 VPRINT1("Recovery: Setting flags on backup volume %u ...",
1922                         afromvol);
1923                 AFSVolSetFlags(fromconn, fromtid,
1924                                VTDeleteOnSalvage | VTOutOfService);
1925                 VDONE;
1926
1927                 if (atoserver != afromserver) {
1928                     VPRINT("Recovery: Setting volume forwarding pointer ...");
1929                     AFSVolSetForwarding(fromconn, fromtid, atoserver);
1930                     VDONE;
1931                 }
1932
1933                 VPRINT1("Recovery: Deleting source volume %u ...", afromvol);
1934                 AFSVolDeleteVolume(fromconn, fromtid);
1935                 VDONE;
1936
1937                 VPRINT1
1938                     ("Recovery: Ending transaction on source volume %u ...",
1939                      afromvol);
1940                 AFSVolEndTrans(fromconn, fromtid, &rcode);
1941                 VDONE;
1942             } else {
1943                 VPRINT1
1944                     ("\nRecovery: Unable to start transaction on source volume %u.\n",
1945                      afromvol);
1946             }
1947         }
1948     }
1949
1950     /* common cleanup - delete local clone */
1951     if (newVol) {
1952         VPRINT1("Recovery: Creating transaction on clone volume %u ...",
1953                 newVol);
1954         code =
1955             AFSVolTransCreate(fromconn, newVol, afrompart, ITOffline,
1956                               &clonetid);
1957         if (!code) {
1958             VDONE;
1959
1960             VPRINT1("Recovery: Deleting clone volume %u ...", newVol);
1961             AFSVolDeleteVolume(fromconn, clonetid);
1962             VDONE;
1963
1964             VPRINT1("Recovery: Ending transaction on clone volume %u ...",
1965                     newVol);
1966             AFSVolEndTrans(fromconn, clonetid, &rcode);
1967             VDONE;
1968         } else {
1969             VPRINT1
1970                 ("\nRecovery: Unable to start transaction on source volume %u.\n",
1971                  afromvol);
1972         }
1973     }
1974
1975     /* unlock VLDB entry */
1976     VPRINT1("Recovery: Releasing lock on VLDB entry for volume %u ...",
1977             afromvol);
1978     ubik_Call(VL_ReleaseLock, cstruct, 0, afromvol, -1,
1979               (LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP));
1980     VDONE;
1981
1982   done:                 /* routine cleanup */
1983     if (volName)
1984         free(volName);
1985 #ifdef  ENABLE_BUGFIX_1165
1986     if (infop)
1987         free(infop);
1988 #endif
1989     if (fromconn)
1990         rx_DestroyConnection(fromconn);
1991     if (toconn)
1992         rx_DestroyConnection(toconn);
1993
1994     if (pntg) {
1995         fprintf(STDOUT, "cleanup complete - user verify desired result\n");
1996         fflush(STDOUT);
1997     }
1998     exit(1);
1999 }
2000
2001
2002 int
2003 UV_MoveVolume(afs_int32 afromvol, afs_int32 afromserver, afs_int32 afrompart,
2004               afs_int32 atoserver, afs_int32 atopart)
2005 {
2006     return UV_MoveVolume2(afromvol, afromserver, afrompart,
2007                           atoserver, atopart, 0);
2008 }
2009
2010
2011 /* Copy volume <afromvol> from <afromserver> <afrompart> to <atoserver>
2012  * <atopart>.  The new volume is named by <atovolname>.  The new volume
2013  * has ID <atovolid> if that is nonzero; otherwise a new ID is allocated
2014  * from the VLDB.  the following flags are supported:
2015  * 
2016  *     RV_RDONLY  - target volume is RO
2017  *     RV_OFFLINE - leave target volume offline
2018  *     RV_CPINCR  - do incremental dump if target exists
2019  *     RV_NOVLDB  - don't create/update VLDB entry
2020  *     RV_NOCLONE - don't use a copy clone
2021  */
2022 int
2023 UV_CopyVolume2(afs_int32 afromvol, afs_int32 afromserver, afs_int32 afrompart,
2024                char *atovolname, afs_int32 atoserver, afs_int32 atopart,
2025                afs_int32 atovolid, int flags)
2026 {
2027     struct rx_connection *toconn, *fromconn;
2028     afs_int32 fromtid, totid, clonetid;
2029     char vname[64];
2030     afs_int32 rcode;
2031     afs_int32 fromDate, cloneFromDate;
2032     struct restoreCookie cookie;
2033     register afs_int32 vcode, code;
2034     afs_int32 cloneVol, newVol, volflag;
2035     struct volser_status tstatus;
2036     struct destServer destination;
2037
2038     struct nvldbentry entry, newentry, storeEntry;
2039     int islocked, pntg;
2040     afs_int32 error;
2041     int justclone = 0;
2042
2043     islocked = 0;
2044     fromconn = (struct rx_connection *)0;
2045     toconn = (struct rx_connection *)0;
2046     fromtid = 0;
2047     totid = 0;
2048     clonetid = 0;
2049     error = 0;
2050     pntg = 0;
2051     newVol = 0;
2052
2053     /* support control-c processing */
2054     if (setjmp(env))
2055         goto mfail;
2056     (void)signal(SIGINT, sigint_handler);
2057
2058     vcode = VLDB_GetEntryByID(afromvol, -1, &entry);
2059     EGOTO1(mfail, vcode,
2060            "Could not fetch the entry for the volume  %u from the VLDB \n",
2061            afromvol);
2062     MapHostToNetwork(&entry);
2063
2064     pntg = 1;
2065     toconn = UV_Bind(atoserver, AFSCONF_VOLUMEPORT);    /* get connections to the servers */
2066     fromconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
2067     fromtid = totid = 0;        /* initialize to uncreated */
2068
2069
2070     /* check if we can shortcut and use a local clone instead of a full copy */
2071     if (afromserver == atoserver && afrompart == atopart) {
2072         justclone = 1;
2073     }
2074
2075     /* ***
2076      * clone the read/write volume locally.
2077      * ***/
2078
2079     cloneVol = 0;
2080     if (!(flags & RV_NOCLONE)) {
2081         VPRINT1("Starting transaction on source volume %u ...", afromvol);
2082         code = AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy,
2083                                  &fromtid);
2084         EGOTO1(mfail, code, "Failed to create transaction on the volume %u\n",
2085                afromvol);
2086         VDONE;
2087
2088         /* Get a clone id */
2089         VPRINT1("Allocating new volume id for clone of volume %u ...",
2090                 afromvol);
2091         cloneVol = 0;
2092         vcode = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &cloneVol);
2093         EGOTO1(mfail, vcode,
2094            "Could not get an ID for the clone of volume %u from the VLDB\n",
2095            afromvol);
2096         VDONE;
2097     }
2098
2099     if (atovolid) {
2100         newVol = atovolid;
2101     } else {
2102         /* Get a new volume id */
2103         VPRINT1("Allocating new volume id for copy of volume %u ...", afromvol);
2104         newVol = 0;
2105         vcode = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &newVol);
2106         EGOTO1(mfail, vcode,
2107                "Could not get an ID for the copy of volume %u from the VLDB\n",
2108                afromvol);
2109         VDONE;
2110     }
2111
2112     if (!(flags & RV_NOCLONE)) {
2113         /* Do the clone. Default flags on clone are set to delete on salvage and out of service */
2114         VPRINT1("Cloning source volume %u ...", afromvol);
2115         strcpy(vname, "copy-clone-temp");
2116         code =
2117             AFSVolClone(fromconn, fromtid, 0, readonlyVolume, vname,
2118                         &cloneVol);
2119         EGOTO1(mfail, code, "Failed to clone the source volume %u\n",
2120                afromvol);
2121         VDONE;
2122
2123         VPRINT1("Ending the transaction on the source volume %u ...", afromvol);
2124         rcode = 0;
2125         code = AFSVolEndTrans(fromconn, fromtid, &rcode);
2126         fromtid = 0;
2127         if (!code)
2128             code = rcode;
2129         EGOTO1(mfail, code,
2130                "Failed to end the transaction on the source volume %u\n",
2131                afromvol);
2132         VDONE;
2133     }
2134
2135     /* ***
2136      * Create the destination volume
2137      * ***/
2138
2139     if (!(flags & RV_NOCLONE)) {
2140         VPRINT1("Starting transaction on the cloned volume %u ...", cloneVol);
2141         code =
2142             AFSVolTransCreate(fromconn, cloneVol, afrompart, ITOffline,
2143                           &clonetid);
2144         EGOTO1(mfail, code,
2145                "Failed to start a transaction on the cloned volume%u\n",
2146                cloneVol);
2147         VDONE;
2148
2149         VPRINT1("Setting flags on cloned volume %u ...", cloneVol);
2150         code =
2151             AFSVolSetFlags(fromconn, clonetid,
2152                            VTDeleteOnSalvage | VTOutOfService); /*redundant */
2153         EGOTO1(mfail, code, "Could not set flags on the cloned volume %u\n",
2154                cloneVol);
2155         VDONE;
2156
2157         /* remember time from which we've dumped the volume */
2158         VPRINT1("Getting status of cloned volume %u ...", cloneVol);
2159         code = AFSVolGetStatus(fromconn, clonetid, &tstatus);
2160         EGOTO1(mfail, code,
2161                "Failed to get the status of the cloned volume %u\n",
2162                cloneVol);
2163         VDONE;
2164
2165         fromDate = tstatus.creationDate - CLOCKSKEW;
2166     } else {
2167         fromDate = 0;
2168     }
2169
2170     /* create a volume on the target machine */
2171     cloneFromDate = 0;
2172     code = AFSVolTransCreate(toconn, newVol, atopart, ITOffline, &totid);
2173     if (!code) {
2174         if ((flags & RV_CPINCR)) {
2175             VPRINT1("Getting status of pre-existing volume %u ...", newVol);
2176             code = AFSVolGetStatus(toconn, totid, &tstatus);
2177             EGOTO1(mfail, code,
2178                    "Failed to get the status of the pre-existing volume %u\n",
2179                    newVol);
2180             VDONE;
2181
2182             /* Using the update date should be OK here, but add some fudge */
2183             cloneFromDate = tstatus.updateDate - CLOCKSKEW;
2184             if ((flags & RV_NOCLONE))
2185                 fromDate = cloneFromDate;
2186
2187             /* XXX We should check that the source volume's creationDate is
2188              * XXX not newer than the existing target volume, and if not,
2189              * XXX throw away the existing target and do a full dump. */
2190
2191             goto cpincr;
2192         }
2193
2194         /* Delete the existing volume.
2195          * While we are deleting the volume in these steps, the transaction
2196          * we started against the cloned volume (clonetid above) will be
2197          * sitting idle. It will get cleaned up after 600 seconds
2198          */
2199         VPRINT1("Deleting pre-existing volume %u on destination ...", newVol);
2200         code = AFSVolDeleteVolume(toconn, totid);
2201         EGOTO1(mfail, code,
2202                "Could not delete the pre-existing volume %u on destination\n",
2203                newVol);
2204         VDONE;
2205
2206         VPRINT1
2207             ("Ending transaction on pre-existing volume %u on destination ...",
2208              newVol);
2209         code = AFSVolEndTrans(toconn, totid, &rcode);
2210         totid = 0;
2211         if (!code)
2212             code = rcode;
2213         EGOTO1(mfail, code,
2214                "Could not end the transaction on pre-existing volume %u on destination\n",
2215                newVol);
2216         VDONE;
2217     }
2218
2219     VPRINT1("Creating the destination volume %u ...", newVol);
2220     code =
2221         AFSVolCreateVolume(toconn, atopart, atovolname,
2222                            (flags & RV_RDONLY) ? volser_RO : volser_RW,
2223                            newVol, &newVol, &totid);
2224     EGOTO1(mfail, code, "Failed to create the destination volume %u\n",
2225            newVol);
2226     VDONE;
2227
2228     VPRINT1("Setting volume flags on destination volume %u ...", newVol);
2229     code =
2230         AFSVolSetFlags(toconn, totid, (VTDeleteOnSalvage | VTOutOfService));
2231     EGOTO1(mfail, code,
2232            "Failed to set the flags on the destination volume %u\n", newVol);
2233     VDONE;
2234
2235 cpincr:
2236
2237     destination.destHost = ntohl(atoserver);
2238     destination.destPort = AFSCONF_VOLUMEPORT;
2239     destination.destSSID = 1;
2240
2241     strncpy(cookie.name, atovolname, VOLSER_OLDMAXVOLNAME);
2242     cookie.type = (flags & RV_RDONLY) ? ROVOL : RWVOL;
2243     cookie.parent = 0;
2244     cookie.clone = 0;
2245
2246     /***
2247      * Now dump the clone to the new volume
2248      ***/
2249
2250     if (!(flags & RV_NOCLONE)) {
2251         /* XXX probably should have some code here that checks to see if
2252          * XXX we are copying to same server and partition - if so, just
2253          * XXX use a clone to save disk space */
2254
2255         /* Copy the clone to the new volume */
2256         VPRINT2("Dumping from clone %u on source to volume %u on destination ...",
2257             cloneVol, newVol);
2258         code =
2259             AFSVolForward(fromconn, clonetid, cloneFromDate, &destination,
2260                           totid, &cookie);
2261         EGOTO1(mfail, code, "Failed to move data for the volume %u\n",
2262                newVol);
2263         VDONE;
2264
2265         VPRINT1("Ending transaction on cloned volume %u ...", cloneVol);
2266         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
2267         if (!code)
2268             code = rcode;
2269         clonetid = 0;
2270         EGOTO1(mfail, code,
2271                "Failed to end the transaction on the cloned volume %u\n",
2272                cloneVol);
2273         VDONE;
2274     }
2275
2276     /* ***
2277      * reattach to the main-line volume, and incrementally dump it.
2278      * ***/
2279
2280     VPRINT1("Starting transaction on source volume %u ...", afromvol);
2281     code = AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy, &fromtid);
2282     EGOTO1(mfail, code,
2283            "Failed to create a transaction on the source volume %u\n",
2284            afromvol);
2285     VDONE;
2286
2287     /* now do the incremental */
2288     VPRINT2
2289         ("Doing the%s dump from source to destination for volume %u ... ",
2290          (flags & RV_NOCLONE) ? "" : " incremental",
2291          afromvol);
2292     code =
2293         AFSVolForward(fromconn, fromtid, fromDate, &destination, totid,
2294                       &cookie);
2295     EGOTO1(mfail, code,
2296            "Failed to do the%s dump from old site to new site\n",
2297            afromvol);
2298     VDONE;
2299
2300     VPRINT1("Setting volume flags on destination volume %u ...", newVol);
2301     volflag = ((flags & RV_OFFLINE) ? VTOutOfService : 0);      /* off or on-line */
2302     code = AFSVolSetFlags(toconn, totid, volflag);
2303     EGOTO(mfail, code,
2304           "Failed to set the flags to make destination volume online\n");
2305     VDONE;
2306
2307     /* put new volume online */
2308     VPRINT1("Ending transaction on destination volume %u ...", newVol);
2309     code = AFSVolEndTrans(toconn, totid, &rcode);
2310     totid = 0;
2311     if (!code)
2312         code = rcode;
2313     EGOTO1(mfail, code,
2314            "Failed to end the transaction on the destination volume %u\n",
2315            newVol);
2316     VDONE;
2317
2318     VPRINT1("Ending transaction on source volume %u ...", afromvol);
2319     code = AFSVolEndTrans(fromconn, fromtid, &rcode);
2320     fromtid = 0;
2321     if (!code)
2322         code = rcode;
2323     EGOTO1(mfail, code,
2324            "Failed to end the transaction on the source volume %u\n",
2325            afromvol);
2326     VDONE;
2327
2328     fromtid = 0;
2329
2330     if (!(flags & RV_NOCLONE)) {
2331         VPRINT1("Starting transaction on the cloned volume %u ...", cloneVol);
2332         code =
2333             AFSVolTransCreate(fromconn, cloneVol, afrompart, ITOffline,
2334                               &clonetid);
2335         EGOTO1(mfail, code,
2336                "Failed to start a transaction on the cloned volume%u\n",
2337                cloneVol);
2338         VDONE;
2339
2340         /* now delete the clone */
2341         VPRINT1("Deleting the cloned volume %u ...", cloneVol);
2342         code = AFSVolDeleteVolume(fromconn, clonetid);
2343         EGOTO1(mfail, code, "Failed to delete the cloned volume %u\n",
2344                cloneVol);
2345         VDONE;
2346
2347         VPRINT1("Ending transaction on cloned volume %u ...", cloneVol);
2348         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
2349         if (!code)
2350             code = rcode;
2351         clonetid = 0;
2352         EGOTO1(mfail, code,
2353                "Failed to end the transaction on the cloned volume %u\n",
2354                cloneVol);
2355         VDONE;
2356     }
2357
2358     if (!(flags & RV_NOVLDB)) {
2359         /* create the vldb entry for the copied volume */
2360         strncpy(newentry.name, atovolname, VOLSER_OLDMAXVOLNAME);
2361         newentry.nServers = 1;
2362         newentry.serverNumber[0] = atoserver;
2363         newentry.serverPartition[0] = atopart;
2364         newentry.flags = (flags & RV_RDONLY) ? RO_EXISTS : RW_EXISTS;
2365         newentry.serverFlags[0] = (flags & RV_RDONLY) ? ITSROVOL : ITSRWVOL;
2366         newentry.volumeId[RWVOL] = newVol;
2367         newentry.volumeId[ROVOL] = (flags & RV_RDONLY) ? newVol : 0;
2368         newentry.volumeId[BACKVOL] = 0;
2369         newentry.cloneId = 0;
2370         /*map into right byte order, before passing to xdr, the stuff has to be in host
2371          * byte order. Xdr converts it into network order */
2372         MapNetworkToHost(&newentry, &storeEntry);
2373         /* create the vldb entry */
2374         vcode = VLDB_CreateEntry(&storeEntry);
2375         if (vcode) {
2376             fprintf(STDERR,
2377                     "Could not create a VLDB entry for the volume %s %lu\n",
2378                     atovolname, (unsigned long)newVol);
2379             /*destroy the created volume */
2380             VPRINT1("Deleting the newly created volume %u\n", newVol);
2381             AFSVolDeleteVolume(toconn, totid);
2382             error = vcode;
2383             goto mfail;
2384         }
2385         VPRINT2("Created the VLDB entry for the volume %s %u\n", atovolname,
2386                 newVol);
2387     }
2388
2389     /* normal cleanup code */
2390
2391     if (fromtid) {
2392         VPRINT1("Cleanup: Ending transaction on source volume %u ...",
2393                 afromvol);
2394         code = AFSVolEndTrans(fromconn, fromtid, &rcode);
2395         if (code || rcode) {
2396             VPRINT("\n");
2397             fprintf(STDERR,
2398                     "Could not end transaction on the source volume %lu\n",
2399                     (unsigned long)afromvol);
2400             if (!error)
2401                 error = (code ? code : rcode);
2402         }
2403         VDONE;
2404     }
2405
2406     if (clonetid) {
2407         VPRINT1("Cleanup: Ending transaction on clone volume %u ...",
2408                 cloneVol);
2409         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
2410         if (code || rcode) {
2411             VPRINT("\n");
2412             fprintf(STDERR,
2413                     "Could not end transaction on the source's clone volume %lu\n",
2414                     (unsigned long)cloneVol);
2415             if (!error)
2416                 error = (code ? code : rcode);
2417         }
2418         VDONE;
2419     }
2420
2421     if (totid) {
2422         VPRINT1("Cleanup: Ending transaction on destination volume %u ...",
2423                 newVol);
2424         code = AFSVolEndTrans(toconn, totid, &rcode);
2425         if (code) {
2426             VPRINT("\n");
2427             fprintf(STDERR,
2428                     "Could not end transaction on destination volume %lu\n",
2429                     (unsigned long)newVol);
2430             if (!error)
2431                 error = (code ? code : rcode);
2432         }
2433         VDONE;
2434     }
2435     if (fromconn)
2436         rx_DestroyConnection(fromconn);
2437     if (toconn)
2438         rx_DestroyConnection(toconn);
2439     PrintError("", error);
2440     return error;
2441
2442     /* come here only when the sky falls */
2443   mfail:
2444
2445     if (pntg) {
2446         fprintf(STDOUT,
2447                 "vos copy: operation interrupted, cleanup in progress...\n");
2448         fprintf(STDOUT, "clear transaction contexts\n");
2449         fflush(STDOUT);
2450     }
2451
2452     if (clonetid) {
2453         VPRINT("Recovery: Ending transaction on clone volume ...");
2454         AFSVolEndTrans(fromconn, clonetid, &rcode);
2455         VDONE;
2456     }
2457     if (totid) {
2458         VPRINT("Recovery: Ending transaction on destination volume ...");
2459         AFSVolEndTrans(toconn, totid, &rcode);
2460         VDONE;
2461     }
2462     if (fromtid) {              /* put it on-line */
2463         VPRINT("Recovery: Ending transaction on source volume ...");
2464         AFSVolEndTrans(fromconn, fromtid, &rcode);
2465         VDONE;
2466     }
2467
2468     VPRINT("Recovery: Accessing VLDB.\n");
2469     vcode = VLDB_GetEntryByID(afromvol, -1, &entry);
2470     if (vcode) {
2471         fprintf(STDOUT, "FATAL: VLDB access error: abort cleanup\n");
2472         fflush(STDOUT);
2473         goto done;
2474     }
2475     MapHostToNetwork(&entry);
2476
2477     /* common cleanup - delete local clone */
2478     if (cloneVol) {
2479         VPRINT1("Recovery: Creating transaction on clone volume %u ...",
2480                 cloneVol);
2481         code =
2482             AFSVolTransCreate(fromconn, newVol, afrompart, ITOffline,
2483                               &clonetid);
2484         if (!code) {
2485             VDONE;
2486
2487             VPRINT1("Recovery: Deleting clone volume %u ...", cloneVol);
2488             AFSVolDeleteVolume(fromconn, clonetid);
2489             VDONE;
2490
2491             VPRINT1("Recovery: Ending transaction on clone volume %u ...",
2492                     cloneVol);
2493             AFSVolEndTrans(fromconn, clonetid, &rcode);
2494             VDONE;
2495         } else {
2496             VPRINT1
2497                 ("\nRecovery: Unable to start transaction on clone volume %u.\n",
2498                  cloneVol);
2499         }
2500     }
2501
2502   done:                 /* routine cleanup */
2503     if (fromconn)
2504         rx_DestroyConnection(fromconn);
2505     if (toconn)
2506         rx_DestroyConnection(toconn);
2507
2508     if (pntg) {
2509         fprintf(STDOUT, "cleanup complete - user verify desired result\n");
2510         fflush(STDOUT);
2511     }
2512     exit(1);
2513 }
2514
2515
2516 int
2517 UV_CopyVolume(afs_int32 afromvol, afs_int32 afromserver, afs_int32 afrompart,
2518               char *atovolname, afs_int32 atoserver, afs_int32 atopart)
2519 {
2520     return UV_CopyVolume2(afromvol, afromserver, afrompart,
2521                           atovolname, atoserver, atopart, 0, 0);
2522 }
2523
2524
2525
2526 /* Make a new backup of volume <avolid> on <aserver> and <apart> 
2527  * if one already exists, update it 
2528  */
2529
2530 int
2531 UV_BackupVolume(afs_int32 aserver, afs_int32 apart, afs_int32 avolid)
2532 {
2533     struct rx_connection *aconn = (struct rx_connection *)0;
2534     afs_int32 ttid = 0, btid = 0;
2535     afs_int32 backupID;
2536     afs_int32 code = 0, rcode = 0;
2537     char vname[VOLSER_MAXVOLNAME + 1];
2538     struct nvldbentry entry, storeEntry;
2539     afs_int32 error = 0;
2540     int vldblocked = 0, vldbmod = 0, backexists = 1;
2541
2542     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
2543
2544     /* the calls to VLDB will succeed only if avolid is a RW volume,
2545      * since we are following the RW hash chain for searching */
2546     code = VLDB_GetEntryByID(avolid, RWVOL, &entry);
2547     if (code) {
2548         fprintf(STDERR,
2549                 "Could not fetch the entry for the volume %lu from the VLDB \n",
2550                 (unsigned long)avolid);
2551         error = code;
2552         goto bfail;
2553     }
2554     MapHostToNetwork(&entry);
2555
2556     /* These operations require the VLDB be locked since it means the VLDB
2557      * will change or the vldb is already locked.
2558      */
2559     if (!(entry.flags & BACK_EXISTS) || /* backup volume doesnt exist */
2560         (entry.flags & VLOP_ALLOPERS) ||        /* vldb lock already held */
2561         (entry.volumeId[BACKVOL] == INVALID_BID)) {     /* no assigned backup volume id */
2562
2563         code = ubik_Call(VL_SetLock, cstruct, 0, avolid, RWVOL, VLOP_BACKUP);
2564         if (code) {
2565             fprintf(STDERR,
2566                     "Could not lock the VLDB entry for the volume %lu\n",
2567                     (unsigned long)avolid);
2568             error = code;
2569             goto bfail;
2570         }
2571         vldblocked = 1;
2572
2573         /* Reread the vldb entry */
2574         code = VLDB_GetEntryByID(avolid, RWVOL, &entry);
2575         if (code) {
2576             fprintf(STDERR,
2577                     "Could not fetch the entry for the volume %lu from the VLDB \n",
2578                     (unsigned long)avolid);
2579             error = code;
2580             goto bfail;
2581         }
2582         MapHostToNetwork(&entry);
2583     }
2584
2585     if (!ISNAMEVALID(entry.name)) {
2586         fprintf(STDERR, "Name of the volume %s exceeds the size limit\n",
2587                 entry.name);
2588         error = VOLSERBADNAME;
2589         goto bfail;
2590     }
2591
2592     backupID = entry.volumeId[BACKVOL];
2593     if (backupID == INVALID_BID) {
2594         /* Get a backup volume id from the VLDB and update the vldb
2595          * entry with it. 
2596          */
2597         code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &backupID);
2598         if (code) {
2599             fprintf(STDERR,
2600                     "Could not allocate ID for the backup volume of  %lu from the VLDB\n",
2601                     (unsigned long)avolid);
2602             error = code;
2603             goto bfail;
2604         }
2605         entry.volumeId[BACKVOL] = backupID;
2606         vldbmod = 1;
2607     }
2608
2609     /* Test to see if the backup volume exists by trying to create
2610      * a transaction on the backup volume. We've assumed the backup exists.
2611      */
2612     code = AFSVolTransCreate(aconn, backupID, apart, ITOffline, &btid);
2613     if (code) {
2614         if (code != VNOVOL) {
2615             fprintf(STDERR, "Could not reach the backup volume %lu\n",
2616                     (unsigned long)backupID);
2617             error = code;
2618             goto bfail;
2619         }
2620         backexists = 0;         /* backup volume does not exist */
2621     }
2622     if (btid) {
2623         code = AFSVolEndTrans(aconn, btid, &rcode);
2624         btid = 0;
2625         if (code || rcode) {
2626             fprintf(STDERR,
2627                     "Could not end transaction on the previous backup volume %lu\n",
2628                     (unsigned long)backupID);
2629             error = (code ? code : rcode);
2630             goto bfail;
2631         }
2632     }
2633
2634     /* Now go ahead and try to clone the RW volume.
2635      * First start a transaction on the RW volume 
2636      */
2637     code = AFSVolTransCreate(aconn, avolid, apart, ITBusy, &ttid);
2638     if (code) {
2639         fprintf(STDERR, "Could not start a transaction on the volume %lu\n",
2640                 (unsigned long)avolid);
2641         error = code;
2642         goto bfail;
2643     }
2644
2645     /* Clone or reclone the volume, depending on whether the backup 
2646      * volume exists or not
2647      */
2648     if (backexists) {
2649         VPRINT1("Re-cloning backup volume %u ...", backupID);
2650
2651         code = AFSVolReClone(aconn, ttid, backupID);
2652         if (code) {
2653             fprintf(STDERR, "Could not re-clone backup volume %lu\n",
2654                     (unsigned long)backupID);
2655             error = code;
2656             goto bfail;
2657         }
2658     } else {
2659         VPRINT1("Creating a new backup clone %u ...", backupID);
2660
2661         strcpy(vname, entry.name);
2662         strcat(vname, ".backup");
2663
2664         code = AFSVolClone(aconn, ttid, 0, backupVolume, vname, &backupID);
2665         if (code) {
2666             fprintf(STDERR, "Failed to clone the volume %lu\n",
2667                     (unsigned long)avolid);
2668             error = code;
2669             goto bfail;
2670         }
2671     }
2672
2673     /* End the transaction on the RW volume */
2674     code = AFSVolEndTrans(aconn, ttid, &rcode);
2675     ttid = 0;
2676     if (code || rcode) {
2677         fprintf(STDERR,
2678                 "Failed to end the transaction on the rw volume %lu\n",
2679                 (unsigned long)avolid);
2680         error = (code ? code : rcode);
2681         goto bfail;
2682     }
2683
2684     /* Mork vldb as backup exists */
2685     if (!(entry.flags & BACK_EXISTS)) {
2686         entry.flags |= BACK_EXISTS;
2687         vldbmod = 1;
2688     }
2689
2690     /* Now go back to the backup volume and bring it on line */
2691     code = AFSVolTransCreate(aconn, backupID, apart, ITOffline, &btid);
2692     if (code) {
2693         fprintf(STDERR,
2694                 "Failed to start a transaction on the backup volume %lu\n",
2695                 (unsigned long)backupID);
2696         error = code;
2697         goto bfail;
2698     }
2699
2700     code = AFSVolSetFlags(aconn, btid, 0);
2701     if (code) {
2702         fprintf(STDERR, "Could not mark the backup volume %lu on line \n",
2703                 (unsigned long)backupID);
2704         error = code;
2705         goto bfail;
2706     }
2707
2708     code = AFSVolEndTrans(aconn, btid, &rcode);
2709     btid = 0;
2710     if (code || rcode) {
2711         fprintf(STDERR,
2712                 "Failed to end the transaction on the backup volume %lu\n",
2713                 (unsigned long)backupID);
2714         error = (code ? code : rcode);
2715         goto bfail;
2716     }
2717
2718     VDONE;
2719
2720     /* Will update the vldb below */
2721
2722   bfail:
2723     if (ttid) {
2724         code = AFSVolEndTrans(aconn, ttid, &rcode);
2725         if (code || rcode) {
2726             fprintf(STDERR, "Could not end transaction on the volume %lu\n",
2727                     (unsigned long)avolid);
2728             if (!error)
2729                 error = (code ? code : rcode);
2730         }
2731     }
2732
2733     if (btid) {
2734         code = AFSVolEndTrans(aconn, btid, &rcode);
2735         if (code || rcode) {
2736             fprintf(STDERR,
2737                     "Could not end transaction the backup volume %lu\n",
2738                     (unsigned long)backupID);
2739             if (!error)
2740                 error = (code ? code : rcode);
2741         }
2742     }
2743
2744     /* Now update the vldb - if modified */
2745     if (vldblocked) {
2746         if (vldbmod) {
2747             MapNetworkToHost(&entry, &storeEntry);
2748             code =
2749                 VLDB_ReplaceEntry(avolid, RWVOL, &storeEntry,
2750                                   (LOCKREL_OPCODE | LOCKREL_AFSID |
2751                                    LOCKREL_TIMESTAMP));
2752             if (code) {
2753                 fprintf(STDERR,
2754                         "Could not update the VLDB entry for the volume %lu \n",
2755                         (unsigned long)avolid);
2756                 if (!error)
2757                     error = code;
2758             }
2759         } else {
2760             code =
2761                 ubik_Call(VL_ReleaseLock, cstruct, 0, avolid, RWVOL,
2762                           (LOCKREL_OPCODE | LOCKREL_AFSID |
2763                            LOCKREL_TIMESTAMP));
2764             if (code) {
2765                 fprintf(STDERR,
2766                         "Could not unlock the VLDB entry for the volume %lu \n",
2767                         (unsigned long)avolid);
2768                 if (!error)
2769                     error = code;
2770             }
2771         }
2772     }
2773
2774     if (aconn)
2775         rx_DestroyConnection(aconn);
2776
2777     PrintError("", error);
2778     return error;
2779 }
2780
2781 /* Make a new clone of volume <avolid> on <aserver> and <apart> 
2782  * using volume ID <acloneid>, or a new ID allocated from the VLDB.
2783  * The new volume is named by <aname>, or by appending ".clone" to
2784  * the existing name if <aname> is NULL.  The following flags are
2785  * supported:
2786  * 
2787  *     RV_RDONLY  - target volume is RO
2788  *     RV_OFFLINE - leave target volume offline
2789  */
2790
2791 int
2792 UV_CloneVolume(afs_int32 aserver, afs_int32 apart, afs_int32 avolid,
2793                afs_int32 acloneid, char *aname, int flags)
2794 {
2795     struct rx_connection *aconn = (struct rx_connection *)0;
2796     afs_int32 ttid = 0, btid = 0;
2797     afs_int32 code = 0, rcode = 0;
2798     char vname[VOLSER_MAXVOLNAME + 1];
2799     afs_int32 error = 0;
2800     int backexists = 1;
2801     volEntries volumeInfo;
2802
2803     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
2804
2805     if (!aname) {
2806         volumeInfo.volEntries_val = (volintInfo *) 0;
2807         volumeInfo.volEntries_len = 0;
2808         code = AFSVolListOneVolume(aconn, apart, avolid, &volumeInfo);
2809         if (code) {
2810             fprintf(stderr, "Could not get info for volume %lu\n",
2811                     (unsigned long)avolid);
2812             error = code;
2813             goto bfail;
2814         }
2815         strncpy(vname, volumeInfo.volEntries_val[0].name,
2816                 VOLSER_OLDMAXVOLNAME - 7);
2817         vname[VOLSER_OLDMAXVOLNAME - 7] = 0;
2818         strcat(vname, ".clone");
2819         aname = vname;
2820         if (volumeInfo.volEntries_val)
2821             free(volumeInfo.volEntries_val);
2822     }
2823
2824     if (!acloneid) {
2825         /* Get a clone id */
2826         VPRINT1("Allocating new volume id for clone of volume %u ...",
2827                 avolid);
2828         code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &acloneid);
2829         EGOTO1(bfail, code,
2830            "Could not get an ID for the clone of volume %u from the VLDB\n",
2831            avolid);
2832         VDONE;
2833     }
2834
2835     /* Test to see if the clone volume exists by trying to create
2836      * a transaction on the clone volume. We've assumed the clone exists.
2837      */
2838     /* XXX I wonder what happens if the clone has some other parent... */
2839     code = AFSVolTransCreate(aconn, acloneid, apart, ITOffline, &btid);
2840     if (code) {
2841         if (code != VNOVOL) {
2842             fprintf(STDERR, "Could not reach the clone volume %lu\n",
2843                     (unsigned long)acloneid);
2844             error = code;
2845             goto bfail;
2846         }
2847         backexists = 0;         /* backup volume does not exist */
2848     }
2849     if (btid) {
2850         code = AFSVolEndTrans(aconn, btid, &rcode);
2851         btid = 0;
2852         if (code || rcode) {
2853             fprintf(STDERR,
2854                     "Could not end transaction on the previous clone volume %lu\n",
2855                     (unsigned long)acloneid);
2856             error = (code ? code : rcode);
2857             goto bfail;
2858         }
2859     }
2860
2861     /* Now go ahead and try to clone the RW volume.
2862      * First start a transaction on the RW volume 
2863      */
2864     code = AFSVolTransCreate(aconn, avolid, apart, ITBusy, &ttid);
2865     if (code) {
2866         fprintf(STDERR, "Could not start a transaction on the volume %lu\n",
2867                 (unsigned long)avolid);
2868         error = code;
2869         goto bfail;
2870     }
2871
2872     /* Clone or reclone the volume, depending on whether the backup 
2873      * volume exists or not
2874      */
2875     if (backexists) {
2876         VPRINT1("Re-cloning clone volume %u ...", acloneid);
2877
2878         code = AFSVolReClone(aconn, ttid, acloneid);
2879         if (code) {
2880             fprintf(STDERR, "Could not re-clone backup volume %lu\n",
2881                     (unsigned long)acloneid);
2882             error = code;
2883             goto bfail;
2884         }
2885     } else {
2886         VPRINT1("Creating a new clone %u ...", acloneid);
2887
2888         code = AFSVolClone(aconn, ttid, 0,
2889                            (flags & RV_RDONLY) ? readonlyVolume : backupVolume,
2890                            aname, &acloneid);
2891         if (code) {
2892             fprintf(STDERR, "Failed to clone the volume %lu\n",
2893                     (unsigned long)avolid);
2894             error = code;
2895             goto bfail;
2896         }
2897     }
2898
2899     /* End the transaction on the RW volume */
2900     code = AFSVolEndTrans(aconn, ttid, &rcode);
2901     ttid = 0;
2902     if (code || rcode) {
2903         fprintf(STDERR,
2904                 "Failed to end the transaction on the rw volume %lu\n",
2905                 (unsigned long)avolid);
2906         error = (code ? code : rcode);
2907         goto bfail;
2908     }
2909
2910     /* Now go back to the backup volume and bring it on line */
2911     if (!(flags & RV_OFFLINE)) {
2912         code = AFSVolTransCreate(aconn, acloneid, apart, ITOffline, &btid);
2913         if (code) {
2914             fprintf(STDERR,
2915                     "Failed to start a transaction on the clone volume %lu\n",
2916                     (unsigned long)acloneid);
2917             error = code;
2918             goto bfail;
2919         }
2920
2921         code = AFSVolSetFlags(aconn, btid, 0);
2922         if (code) {
2923             fprintf(STDERR, "Could not mark the clone volume %lu on line \n",
2924                     (unsigned long)acloneid);
2925             error = code;
2926             goto bfail;
2927         }
2928
2929         code = AFSVolEndTrans(aconn, btid, &rcode);
2930         btid = 0;
2931         if (code || rcode) {
2932             fprintf(STDERR,
2933                     "Failed to end the transaction on the clone volume %lu\n",
2934                     (unsigned long)acloneid);
2935             error = (code ? code : rcode);
2936             goto bfail;
2937         }
2938     }
2939
2940     VDONE;
2941
2942   bfail:
2943     if (ttid) {
2944         code = AFSVolEndTrans(aconn, ttid, &rcode);
2945         if (code || rcode) {
2946             fprintf(STDERR, "Could not end transaction on the volume %lu\n",
2947                     (unsigned long)avolid);
2948             if (!error)
2949                 error = (code ? code : rcode);
2950         }
2951     }
2952
2953     if (btid) {
2954         code = AFSVolEndTrans(aconn, btid, &rcode);
2955         if (code || rcode) {
2956             fprintf(STDERR,
2957                     "Could not end transaction on the clone volume %lu\n",
2958                     (unsigned long)acloneid);
2959             if (!error)
2960                 error = (code ? code : rcode);
2961         }
2962     }
2963
2964     if (aconn)
2965         rx_DestroyConnection(aconn);
2966
2967     PrintError("", error);
2968     return error;
2969 }
2970
2971 static int
2972 DelVol(struct rx_connection *conn, afs_int32 vid, afs_int32 part,
2973        afs_int32 flags)
2974 {
2975     afs_int32 acode, ccode, rcode, tid;
2976     ccode = rcode = tid = 0;
2977
2978     acode = AFSVolTransCreate(conn, vid, part, flags, &tid);
2979     if (!acode) {               /* It really was there */
2980         acode = AFSVolDeleteVolume(conn, tid);
2981         if (acode) {
2982             fprintf(STDERR, "Failed to delete volume %lu.\n",
2983                     (unsigned long)vid);
2984             PrintError("", acode);
2985         }
2986         ccode = AFSVolEndTrans(conn, tid, &rcode);
2987         if (!ccode)
2988             ccode = rcode;
2989         if (ccode) {
2990             fprintf(STDERR, "Failed to end transaction on volume %lu.\n",
2991                     (unsigned long)vid);
2992             PrintError("", ccode);
2993         }
2994     }
2995
2996     return acode;
2997 }
2998
2999 #define ONERROR(ec, ep, es) if (ec) { fprintf(STDERR, (es), (ep)); error = (ec); goto rfail; }
3000 #define ERROREXIT(ec) { error = (ec); goto rfail; }
3001
3002 /* Get a "transaction" on this replica.  Create the volume 
3003  * if necessary.  Return the time from which a dump should
3004  * be made (0 if it's a new volume)
3005  */
3006 static int
3007 GetTrans(struct nvldbentry *vldbEntryPtr, afs_int32 index,
3008          struct rx_connection **connPtr, afs_int32 * transPtr,
3009          afs_int32 * timePtr)
3010 {
3011     afs_int32 volid;
3012     struct volser_status tstatus;
3013     int code, rcode, tcode;
3014
3015     *connPtr = (struct rx_connection *)0;
3016     *timePtr = 0;
3017     *transPtr = 0;
3018
3019     /* get connection to the replication site */
3020     *connPtr = UV_Bind(vldbEntryPtr->serverNumber[index], AFSCONF_VOLUMEPORT);
3021     if (!*connPtr)
3022         goto fail;              /* server is down */
3023
3024     volid = vldbEntryPtr->volumeId[ROVOL];
3025     if (volid)
3026         code =
3027             AFSVolTransCreate(*connPtr, volid,
3028                               vldbEntryPtr->serverPartition[index], ITOffline,
3029                               transPtr);
3030
3031     /* If the volume does not exist, create it */
3032     if (!volid || code) {
3033         char volname[64];
3034
3035         if (volid && (code != VNOVOL)) {
3036             PrintError("Failed to start a transaction on the RO volume.\n",
3037                        code);
3038             goto fail;
3039         }
3040
3041         strcpy(volname, vldbEntryPtr->name);
3042         strcat(volname, ".readonly");
3043
3044         if (verbose) {
3045             fprintf(STDOUT,
3046                     "Creating new volume %lu on replication site %s: ",
3047                     (unsigned long)volid,
3048                     hostutil_GetNameByINet(vldbEntryPtr->
3049                                            serverNumber[index]));
3050             fflush(STDOUT);
3051         }
3052
3053         code =
3054             AFSVolCreateVolume(*connPtr, vldbEntryPtr->serverPartition[index],
3055                                volname, volser_RO,
3056                                vldbEntryPtr->volumeId[RWVOL], &volid,
3057                                transPtr);
3058         if (code) {
3059             PrintError("Failed to create the ro volume: ", code);
3060             goto fail;
3061         }
3062         vldbEntryPtr->volumeId[ROVOL] = volid;
3063
3064         VDONE;
3065
3066         /* The following is a bit redundant, since create sets these flags by default */
3067         code =
3068             AFSVolSetFlags(*connPtr, *transPtr,
3069                            VTDeleteOnSalvage | VTOutOfService);
3070         if (code) {
3071             PrintError("Failed to set flags on the ro volume: ", code);
3072             goto fail;
3073         }
3074     }
3075
3076     /* Otherwise, the transaction did succeed, so get the creation date of the
3077      * latest RO volume on the replication site 
3078      */
3079     else {
3080         VPRINT2("Updating existing ro volume %u on %s ...\n", volid,
3081                 hostutil_GetNameByINet(vldbEntryPtr->serverNumber[index]));
3082
3083         code = AFSVolGetStatus(*connPtr, *transPtr, &tstatus);
3084         if (code) {
3085             PrintError("Failed to get status of volume on destination: ",
3086                        code);
3087             goto fail;
3088         }
3089         *timePtr = tstatus.creationDate - CLOCKSKEW;
3090     }
3091
3092     return 0;
3093
3094   fail:
3095     if (*transPtr) {
3096         tcode = AFSVolEndTrans(*connPtr, *transPtr, &rcode);
3097         *transPtr = 0;
3098         if (!tcode)
3099             tcode = rcode;
3100         if (tcode)
3101             PrintError("Could not end transaction on a ro volume: ", tcode);
3102     }
3103
3104     return code;
3105 }
3106
3107 static int
3108 SimulateForwardMultiple(struct rx_connection *fromconn, afs_int32 fromtid,
3109                         afs_int32 fromdate, manyDests * tr, afs_int32 flags,
3110                         void *cookie, manyResults * results)
3111 {
3112     int i;
3113
3114     for (i = 0; i < tr->manyDests_len; i++) {
3115         results->manyResults_val[i] =
3116             AFSVolForward(fromconn, fromtid, fromdate,
3117                           &(tr->manyDests_val[i].server),
3118                           tr->manyDests_val[i].trans, cookie);
3119     }
3120     return 0;
3121 }
3122
3123
3124 static int
3125 rel_compar(struct release *r1, struct release *r2)
3126 {
3127     return (r1->time - r2->time);
3128 }
3129
3130 /* UV_ReleaseVolume()
3131  *    Release volume <afromvol> on <afromserver> <afrompart> to all
3132  *    its RO sites (full release). Unless the previous release was
3133  *    incomplete: in which case we bring the remaining incomplete
3134  *    volumes up to date with the volumes that were released
3135  *    successfully.
3136  *    forceflag: Performs a full release.
3137  *
3138  *    Will create a clone from the RW, then dump the clone out to 
3139  *    the remaining replicas. If there is more than 1 RO sites,
3140  *    ensure that the VLDB says at least one RO is available all
3141  *    the time: Influences when we write back the VLDB entry.
3142  */
3143
3144 int
3145 UV_ReleaseVolume(afs_int32 afromvol, afs_int32 afromserver,
3146                  afs_int32 afrompart, int forceflag)
3147 {
3148     char vname[64];
3149     afs_int32 code, vcode, rcode, tcode;
3150     afs_int32 cloneVolId, roVolId;
3151     struct replica *replicas = 0;
3152     struct nvldbentry entry, storeEntry;
3153     int i, volcount, m, fullrelease, vldbindex;
3154     int failure;
3155     struct restoreCookie cookie;
3156     struct rx_connection **toconns = 0;
3157     struct release *times = 0;
3158     int nservers = 0;
3159     struct rx_connection *fromconn = (struct rx_connection *)0;
3160     afs_int32 error = 0;
3161     int islocked = 0;
3162     afs_int32 clonetid = 0, onlinetid;
3163     afs_int32 fromtid = 0;
3164     afs_uint32 fromdate, thisdate;
3165     int s;
3166     manyDests tr;
3167     manyResults results;
3168     int rwindex, roindex, roclone, roexists;
3169     afs_int32 rwcrdate, clcrdate;
3170     struct rtime {
3171         int validtime;
3172         afs_uint32 time;
3173     } remembertime[NMAXNSERVERS];
3174     int releasecount = 0;
3175     struct volser_status volstatus;
3176
3177     memset((char *)remembertime, 0, sizeof(remembertime));
3178     memset((char *)&results, 0, sizeof(results));
3179
3180     vcode = ubik_Call(VL_SetLock, cstruct, 0, afromvol, RWVOL, VLOP_RELEASE);
3181     if (vcode != VL_RERELEASE)
3182         ONERROR(vcode, afromvol,
3183                 "Could not lock the VLDB entry for the volume %u.\n");
3184     islocked = 1;
3185
3186     /* Get the vldb entry in readable format */
3187     vcode = VLDB_GetEntryByID(afromvol, RWVOL, &entry);
3188     ONERROR(vcode, afromvol,
3189             "Could not fetch the entry for the volume %u from the VLDB.\n");
3190     MapHostToNetwork(&entry);
3191
3192     if (verbose)
3193         EnumerateEntry(&entry);
3194
3195     if (!ISNAMEVALID(entry.name))
3196         ONERROR(VOLSERBADOP, entry.name,
3197                 "Volume name %s is too long, rename before releasing.\n");
3198     if (entry.volumeId[RWVOL] != afromvol)
3199         ONERROR(VOLSERBADOP, afromvol,
3200                 "The volume %u being released is not a read-write volume.\n");
3201     if (entry.nServers <= 1)
3202         ONERROR(VOLSERBADOP, afromvol,
3203                 "Volume %u has no replicas - release operation is meaningless!\n");
3204     if (strlen(entry.name) > (VOLSER_OLDMAXVOLNAME - 10))
3205         ONERROR(VOLSERBADOP, entry.name,
3206                 "RO volume name %s exceeds (VOLSER_OLDMAXVOLNAME - 10) character limit\n");
3207
3208     /* roclone is true if one of the RO volumes is on the same
3209      * partition as the RW volume. In this case, we make the RO volume
3210      * on the same partition a clone instead of a complete copy.
3211      */
3212
3213     roindex = Lp_ROMatch(afromserver, afrompart, &entry) - 1;
3214     roclone = ((roindex == -1) ? 0 : 1);
3215     rwindex = Lp_GetRwIndex(&entry);
3216     if (rwindex < 0)
3217         ONERROR(VOLSERNOVOL, 0, "There is no RW volume \n");
3218
3219     /* Make sure we have a RO volume id to work with */
3220     if (entry.volumeId[ROVOL] == INVALID_BID) {
3221         /* need to get a new RO volume id */
3222         vcode = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &roVolId);
3223         ONERROR(vcode, entry.name, "Cant allocate ID for RO volume of %s\n");
3224
3225         entry.volumeId[ROVOL] = roVolId;
3226         MapNetworkToHost(&entry, &storeEntry);
3227         vcode = VLDB_ReplaceEntry(afromvol, RWVOL, &storeEntry, 0);
3228         ONERROR(vcode, entry.name, "Could not update vldb entry for %s.\n");
3229     }
3230
3231     /* Will we be completing a previously unfinished release. -force overrides */
3232     for (s = 0, m = 0, fullrelease=0, i=0; (i<entry.nServers); i++) {
3233         if (entry.serverFlags[i] & ITSROVOL) {
3234             m++;
3235             if (entry.serverFlags[i] & NEW_REPSITE) s++;
3236         }
3237     }
3238     if ((forceflag && !fullrelease) || (s == m) || (s == 0))
3239         fullrelease = 1;
3240
3241     /* Determine which volume id to use and see if it exists */
3242     cloneVolId =
3243         ((fullrelease
3244           || (entry.cloneId == 0)) ? entry.volumeId[ROVOL] : entry.cloneId);
3245     code = VolumeExists(afromserver, afrompart, cloneVolId);
3246     roexists = ((code == ENODEV) ? 0 : 1);
3247
3248     fromconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
3249     if (!fromconn)
3250         ONERROR(-1, afromserver,
3251                 "Cannot establish connection with server 0x%x\n");
3252
3253     if (!fullrelease) {
3254         if (!roexists)
3255             fullrelease = 1;    /* Do a full release if RO clone does not exist */
3256         else {
3257             /* Begin transaction on RW and mark it busy while we query it */
3258             code = AFSVolTransCreate(
3259                         fromconn, afromvol, afrompart, ITBusy, &fromtid
3260                    );
3261             ONERROR(code, afromvol,
3262                     "Failed to start transaction on RW volume %u\n");
3263
3264             /* Query the creation date for the RW */
3265             code = AFSVolGetStatus(fromconn, fromtid, &volstatus);
3266             ONERROR(code, afromvol,
3267                     "Failed to get the status of RW volume %u\n");
3268             rwcrdate = volstatus.creationDate;
3269
3270             /* End transaction on RW */
3271             code = AFSVolEndTrans(fromconn, fromtid, &rcode);
3272             fromtid = 0;
3273             ONERROR((code ? code : rcode), afromvol,
3274                     "Failed to end transaction on RW volume %u\n");
3275
3276             /* Begin transaction on clone and mark it busy while we query it */
3277             code = AFSVolTransCreate(
3278                         fromconn, cloneVolId, afrompart, ITBusy, &clonetid
3279                    );
3280             ONERROR(code, cloneVolId,
3281                     "Failed to start transaction on RW clone %u\n");
3282
3283             /* Query the creation date for the clone */
3284             code = AFSVolGetStatus(fromconn, clonetid, &volstatus);
3285             ONERROR(code, cloneVolId,
3286                     "Failed to get the status of RW clone %u\n");
3287             clcrdate = volstatus.creationDate;
3288
3289             /* End transaction on RW */
3290             code = AFSVolEndTrans(fromconn, clonetid, &rcode);
3291             clonetid = 0;
3292             ONERROR((code ? code : rcode), cloneVolId,
3293                     "Failed to end transaction on RW volume %u\n");
3294
3295             if (rwcrdate > clcrdate)
3296                 fullrelease = 2;/* Do a full release if RO clone older than RW */
3297         }
3298     }
3299
3300     if (verbose) {
3301         switch (fullrelease) {
3302             case 2:
3303                 fprintf(STDOUT, "RW %lu changed, doing a complete release\n",
3304                         (unsigned long)afromvol);
3305                 break;
3306             case 1:
3307                 fprintf(STDOUT, "This is a complete release of volume %lu\n",
3308                         (unsigned long)afromvol);
3309                 break;
3310             case 0:
3311                 fprintf(STDOUT, "This is a completion of a previous release\n");
3312                 break;
3313         }
3314     }
3315
3316     if (fullrelease) {
3317         /* If the RO clone exists, then if the clone is a temporary
3318          * clone, delete it. Or if the RO clone is marked RO_DONTUSE
3319          * (it was recently added), then also delete it. We do not
3320          * want to "reclone" a temporary RO clone.
3321          */
3322         if (roexists
3323             && (!roclone || (entry.serverFlags[roindex] & RO_DONTUSE))) {
3324             code = DelVol(fromconn, cloneVolId, afrompart, ITOffline);
3325             if (code && (code != VNOVOL))
3326                 ERROREXIT(code);
3327             roexists = 0;
3328         }
3329
3330         /* Mark all the ROs in the VLDB entry as RO_DONTUSE. We don't
3331          * write this entry out to the vlserver until after the first
3332          * RO volume is released (temp RO clones don't count).
3333          */
3334         for (i = 0; i < entry.nServers; i++) {
3335             entry.serverFlags[i] &= ~NEW_REPSITE;
3336             entry.serverFlags[i] |= RO_DONTUSE;
3337         }
3338         entry.serverFlags[rwindex] |= NEW_REPSITE;
3339         entry.serverFlags[rwindex] &= ~RO_DONTUSE;
3340
3341         /* Begin transaction on RW and mark it busy while we clone it */
3342         code =
3343             AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy,
3344                               &clonetid);
3345         ONERROR(code, afromvol, "Failed to start transaction on volume %u\n");
3346
3347         /* Clone or reclone the volume */
3348         if (roexists) {
3349             VPRINT1("Recloning RW volume %u...", cloneVolId);
3350             code = AFSVolReClone(fromconn, clonetid, cloneVolId);
3351             ONERROR(code, afromvol, "Failed to reclone the RW volume %u\n");
3352             VDONE;
3353         } else {
3354             if (roclone) {
3355                 strcpy(vname, entry.name);
3356                 strcat(vname, ".readonly");
3357                 VPRINT("Cloning RW volume %u to permanent RO...");
3358             } else {
3359                 strcpy(vname, "readonly-clone-temp");
3360                 VPRINT("Cloning RW volume %u to temporary RO...");
3361             }
3362             code =
3363                 AFSVolClone(fromconn, clonetid, 0, readonlyVolume, vname,
3364                             &cloneVolId);
3365             ONERROR(code, afromvol, "Failed to clone the RW volume %u\n");
3366             VDONE;
3367         }
3368
3369         /* Get the time the RW was created for future information */
3370         VPRINT1("Getting status of RW volume %u...", cloneVolId);
3371         code = AFSVolGetStatus(fromconn, clonetid, &volstatus);
3372         ONERROR(code, cloneVolId,
3373                 "Failed to get the status of the RW volume %u\n");
3374         VDONE;
3375         rwcrdate = volstatus.creationDate;
3376
3377         /* End the transaction on the RW volume */
3378         VPRINT1("Ending cloning transaction on RW volume %u...", cloneVolId);
3379         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
3380         clonetid = 0;
3381         ONERROR((code ? code : rcode), cloneVolId,
3382                 "Failed to end cloning transaction on RW %u\n");
3383         VDONE;
3384
3385         /* Remember clone volume ID in case we fail or are interrupted */
3386         entry.cloneId = cloneVolId;
3387
3388         if (roclone) {
3389             /* Bring the RO clone online - though not if it's a temporary clone */
3390             VPRINT1("Starting transaction on RO clone volume %u...",
3391                     cloneVolId);
3392             code =
3393                 AFSVolTransCreate(fromconn, cloneVolId, afrompart, ITOffline,
3394                                   &onlinetid);
3395             ONERROR(code, cloneVolId,
3396                     "Failed to start transaction on volume %u\n");
3397             VDONE;
3398
3399             VPRINT1("Setting volume flags for volume %u...", cloneVolId);
3400             tcode = AFSVolSetFlags(fromconn, onlinetid, 0);
3401             VDONE;
3402
3403             VPRINT1("Ending transaction on volume %u...", cloneVolId);
3404             code = AFSVolEndTrans(fromconn, onlinetid, &rcode);
3405             ONERROR((code ? code : rcode), cloneVolId,
3406                     "Failed to end transaction on RO clone %u\n");
3407             VDONE;
3408
3409             ONERROR(tcode, cloneVolId, "Could not bring volume %u on line\n");
3410
3411             /* Sleep so that a client searching for an online volume won't
3412              * find the clone offline and then the next RO offline while the 
3413              * release brings the clone online and the next RO offline (race).
3414              * There is a fix in the 3.4 client that does not need this sleep
3415              * anymore, but we don't know what clients we have.
3416              */
3417             if (entry.nServers > 2)
3418                 sleep(5);
3419
3420             /* Mark the RO clone in the VLDB as a good site (already released) */
3421             entry.serverFlags[roindex] |= NEW_REPSITE;
3422             entry.serverFlags[roindex] &= ~RO_DONTUSE;
3423             entry.flags |= RO_EXISTS;
3424
3425             releasecount++;
3426
3427             /* Write out the VLDB entry only if the clone is not a temporary
3428              * clone. If we did this to a temporary clone then we would end
3429              * up marking all the ROs as "old release" making the ROs
3430              * temporarily unavailable.
3431              */
3432             MapNetworkToHost(&entry, &storeEntry);
3433             VPRINT1("Replacing VLDB entry for %s...", entry.name);
3434             vcode = VLDB_ReplaceEntry(afromvol, RWVOL, &storeEntry, 0);
3435             ONERROR(vcode, entry.name,
3436                     "Could not update vldb entry for %s.\n");
3437             VDONE;
3438         }
3439     }
3440
3441     /* Now we will release from the clone to the remaining RO replicas.
3442      * The first 2 ROs (counting the non-temporary RO clone) are released
3443      * individually: releasecount. This is to reduce the race condition
3444      * of clients trying to find an on-line RO volume. The remaining ROs
3445      * are released in parallel but no more than half the number of ROs
3446      * (rounded up) at a time: nservers.
3447      */
3448
3449     strcpy(vname, entry.name);
3450     strcat(vname, ".readonly");
3451     memset(&cookie, 0, sizeof(cookie));
3452     strncpy(cookie.name, vname, VOLSER_OLDMAXVOLNAME);
3453     cookie.type = ROVOL;
3454     cookie.parent = entry.volumeId[RWVOL];
3455     cookie.clone = 0;
3456
3457     nservers = entry.nServers / 2;      /* how many to do at once, excluding clone */
3458     replicas =
3459         (struct replica *)malloc(sizeof(struct replica) * nservers + 1);
3460     times = (struct release *)malloc(sizeof(struct release) * nservers + 1);
3461     toconns =
3462         (struct rx_connection **)malloc(sizeof(struct rx_connection *) *
3463                                         nservers + 1);
3464     results.manyResults_val =
3465         (afs_int32 *) malloc(sizeof(afs_int32) * nservers + 1);
3466     if (!replicas || !times || !!!results.manyResults_val || !toconns)
3467         ONERROR(ENOMEM, 0,
3468                 "Failed to create transaction on the release clone\n");
3469
3470     memset(replicas, 0, (sizeof(struct replica) * nservers + 1));
3471     memset(times, 0, (sizeof(struct release) * nservers + 1));
3472     memset(toconns, 0, (sizeof(struct rx_connection *) * nservers + 1));
3473     memset(results.manyResults_val, 0, (sizeof(afs_int32) * nservers + 1));
3474
3475     /* Create a transaction on the cloned volume */
3476     VPRINT1("Starting transaction on cloned volume %u...", cloneVolId);
3477     code =
3478         AFSVolTransCreate(fromconn, cloneVolId, afrompart, ITBusy, &fromtid);
3479     if (!fullrelease && code)
3480         ONERROR(VOLSERNOVOL, afromvol,
3481                 "Old clone is inaccessible. Try vos release -f %u.\n");
3482     ONERROR(code, 0, "Failed to create transaction on the release clone\n");
3483     VDONE;
3484
3485     /* For each index in the VLDB */
3486     for (vldbindex = 0; vldbindex < entry.nServers;) {
3487
3488         /* Get a transaction on the replicas. Pick replacas which have an old release. */
3489         for (volcount = 0;
3490              ((volcount < nservers) && (vldbindex < entry.nServers));
3491              vldbindex++) {
3492             /* The first two RO volumes will be released individually.
3493              * The rest are then released in parallel. This is a hack
3494              * for clients not recognizing right away when a RO volume
3495              * comes back on-line.
3496              */
3497             if ((volcount == 1) && (releasecount < 2))
3498                 break;
3499
3500             if (vldbindex == roindex)
3501                 continue;       /* the clone    */
3502             if ((entry.serverFlags[vldbindex] & NEW_REPSITE)
3503                 && !(entry.serverFlags[vldbindex] & RO_DONTUSE))
3504                 continue;
3505             if (!(entry.serverFlags[vldbindex] & ITSROVOL))
3506                 continue;       /* not a RO vol */
3507
3508
3509             /* Get a Transaction on this replica. Get a new connection if
3510              * necessary.  Create the volume if necessary.  Return the
3511              * time from which the dump should be made (0 if it's a new
3512              * volume).  Each volume might have a different time. 
3513              */
3514             replicas[volcount].server.destHost =
3515                 ntohl(entry.serverNumber[vldbindex]);
3516             replicas[volcount].server.destPort = AFSCONF_VOLUMEPORT;
3517             replicas[volcount].server.destSSID = 1;
3518             times[volcount].vldbEntryIndex = vldbindex;
3519
3520             code =
3521                 GetTrans(&entry, vldbindex, &(toconns[volcount]),
3522                          &(replicas[volcount].trans),
3523                          &(times[volcount].time));
3524             if (code)
3525                 continue;
3526
3527             /* Thisdate is the date from which we want to pick up all changes */
3528             if (forceflag || !fullrelease
3529                 || (rwcrdate > times[volcount].time)) {
3530                 /* If the forceflag is set, then we want to do a full dump.
3531                  * If it's not a full release, we can't be sure that the creation
3532                  *  date is good (so we also do a full dump).
3533                  * If the RW volume was replaced (its creation date is newer than
3534                  *  the last release), then we can't be sure what has changed (so
3535                  *  we do a full dump).
3536                  */
3537                 thisdate = 0;
3538             } else if (remembertime[vldbindex].validtime) {
3539                 /* Trans was prev ended. Use the time from the prev trans
3540                  * because, prev trans may have created the volume. In which
3541                  * case time[volcount].time would be now instead of 0.
3542                  */
3543                 thisdate =
3544                     (remembertime[vldbindex].time <
3545                      times[volcount].time) ? remembertime[vldbindex].
3546                     time : times[volcount].time;
3547             } else {
3548                 thisdate = times[volcount].time;
3549             }
3550             remembertime[vldbindex].validtime = 1;
3551             remembertime[vldbindex].time = thisdate;
3552
3553             if (volcount == 0) {
3554                 fromdate = thisdate;
3555             } else {
3556                 /* Include this volume if it is within 15 minutes of the earliest */
3557                 if (((fromdate >
3558                       thisdate) ? (fromdate - thisdate) : (thisdate -
3559                                                            fromdate)) > 900) {
3560                     AFSVolEndTrans(toconns[volcount],
3561                                    replicas[volcount].trans, &rcode);
3562                     replicas[volcount].trans = 0;
3563                     break;
3564                 }
3565                 if (thisdate < fromdate)
3566                     fromdate = thisdate;
3567             }
3568             volcount++;
3569         }
3570         if (!volcount)
3571             continue;
3572
3573         if (verbose) {
3574             fprintf(STDOUT, "Starting ForwardMulti from %lu to %u on %s",
3575                     (unsigned long)cloneVolId, entry.volumeId[ROVOL],
3576                     hostutil_GetNameByINet(entry.
3577                                            serverNumber[times[0].
3578                                                         vldbEntryIndex]));
3579
3580             for (s = 1; s < volcount; s++) {
3581                 fprintf(STDOUT, " and %s",
3582                         hostutil_GetNameByINet(entry.
3583                                                serverNumber[times[s].
3584                                                             vldbEntryIndex]));
3585             }
3586
3587             if (fromdate == 0)
3588                 fprintf(STDOUT, " (full release)");
3589             fprintf(STDOUT, ".\n");
3590             fflush(STDOUT);
3591         }
3592
3593         /* Release the ones we have collected */
3594         tr.manyDests_val = &(replicas[0]);
3595         tr.manyDests_len = results.manyResults_len = volcount;
3596         code =
3597             AFSVolForwardMultiple(fromconn, fromtid, fromdate, &tr,
3598                                   0 /*spare */ , &cookie, &results);
3599         if (code == RXGEN_OPCODE) {     /* RPC Interface Mismatch */
3600             code =
3601                 SimulateForwardMultiple(fromconn, fromtid, fromdate, &tr,
3602                                         0 /*spare */ , &cookie, &results);
3603             nservers = 1;
3604         }
3605
3606         if (code) {
3607             PrintError("Release failed: ", code);
3608         } else {
3609             for (m = 0; m < volcount; m++) {
3610                 if (results.manyResults_val[m]) {
3611                     if ((m == 0) || (results.manyResults_val[m] != ENOENT)) {
3612                         /* we retry timed out transaction. When it is
3613                          * not the first volume and the transaction wasn't found
3614                          * (assume it timed out and was garbage collected by volser).
3615                          */
3616                         PrintError
3617                             ("Failed to dump volume from clone to a ro site: ",
3618                              results.manyResults_val[m]);
3619                     }
3620                     continue;
3621                 }
3622
3623                 code =
3624                     AFSVolSetIdsTypes(toconns[m], replicas[m].trans, vname,
3625                                       ROVOL, entry.volumeId[RWVOL], 0, 0);
3626                 if (code) {
3627                     if ((m == 0) || (code != ENOENT)) {
3628                         PrintError("Failed to set correct names and ids: ",
3629                                    code);
3630                     }
3631                     continue;
3632                 }
3633
3634                 /* have to clear dest. flags to ensure new vol goes online:
3635                  * because the restore (forwarded) operation copied
3636                  * the V_inService(=0) flag over to the destination. 
3637                  */
3638                 code = AFSVolSetFlags(toconns[m], replicas[m].trans, 0);
3639                 if (code) {
3640                     if ((m == 0) || (code != ENOENT)) {
3641                         PrintError("Failed to set flags on ro volume: ",
3642                                    code);
3643                     }
3644                     continue;
3645                 }
3646
3647                 entry.serverFlags[times[m].vldbEntryIndex] |= NEW_REPSITE;
3648                 entry.serverFlags[times[m].vldbEntryIndex] &= ~RO_DONTUSE;
3649                 entry.flags |= RO_EXISTS;
3650                 releasecount++;
3651             }
3652         }
3653
3654         /* End the transactions and destroy the connections */
3655         for (s = 0; s < volcount; s++) {
3656             if (replicas[s].trans)
3657                 code = AFSVolEndTrans(toconns[s], replicas[s].trans, &rcode);
3658             replicas[s].trans = 0;
3659             if (!code)
3660                 code = rcode;
3661             if (code) {
3662                 if ((s == 0) || (code != ENOENT)) {
3663                     PrintError("Could not end transaction on a ro volume: ",
3664                                code);
3665                 } else {
3666                     PrintError
3667                         ("Transaction timed out on a ro volume. Will retry.\n",
3668                          0);
3669                     if (times[s].vldbEntryIndex < vldbindex)
3670                         vldbindex = times[s].vldbEntryIndex;
3671                 }
3672             }
3673
3674             if (toconns[s])
3675                 rx_DestroyConnection(toconns[s]);
3676             toconns[s] = 0;
3677         }
3678
3679         MapNetworkToHost(&entry, &storeEntry);
3680         vcode = VLDB_ReplaceEntry(afromvol, RWVOL, &storeEntry, 0);
3681         ONERROR(vcode, afromvol,
3682                 " Could not update VLDB entry for volume %u\n");
3683     }                           /* for each index in the vldb */
3684
3685     /* End the transaction on the cloned volume */
3686     code = AFSVolEndTrans(fromconn, fromtid, &rcode);
3687     fromtid = 0;
3688     if (!code)
3689         code = rcode;
3690     if (code)
3691         PrintError("Failed to end transaction on rw volume: ", code);
3692
3693     /* Figure out if any volume were not released and say so */
3694     for (failure = 0, i = 0; i < entry.nServers; i++) {
3695         if (!(entry.serverFlags[i] & NEW_REPSITE))
3696             failure++;
3697     }
3698     if (failure) {
3699         char pname[10];
3700         fprintf(STDERR,
3701                 "The volume %lu could not be released to the following %d sites:\n",
3702                 (unsigned long)afromvol, failure);
3703         for (i = 0; i < entry.nServers; i++) {
3704             if (!(entry.serverFlags[i] & NEW_REPSITE)) {
3705                 MapPartIdIntoName(entry.serverPartition[i], pname);
3706                 fprintf(STDERR, "\t%35s %s\n",
3707                         hostutil_GetNameByINet(entry.serverNumber[i]), pname);
3708             }
3709         }
3710
3711         MapNetworkToHost(&entry, &storeEntry);
3712         vcode =
3713             VLDB_ReplaceEntry(afromvol, RWVOL, &storeEntry,
3714                               LOCKREL_TIMESTAMP);
3715         ONERROR(vcode, afromvol,
3716                 " Could not update VLDB entry for volume %u\n");
3717
3718         ERROREXIT(VOLSERBADRELEASE);
3719     }
3720
3721     /* All the ROs were release successfully. Remove the temporary clone */
3722     if (!roclone) {
3723         if (verbose) {
3724             fprintf(STDOUT, "Deleting the releaseClone %lu ...",
3725                     (unsigned long)cloneVolId);
3726             fflush(STDOUT);
3727         }
3728         code = DelVol(fromconn, cloneVolId, afrompart, ITOffline);
3729         ONERROR(code, cloneVolId, "Failed to delete volume %u.\n");
3730         VDONE;
3731     }
3732     entry.cloneId = 0;
3733
3734     for (i = 0; i < entry.nServers; i++)
3735         entry.serverFlags[i] &= ~NEW_REPSITE;
3736
3737     /* Update the VLDB */
3738     VPRINT("updating VLDB ...");
3739
3740     MapNetworkToHost(&entry, &storeEntry);
3741     vcode =
3742         VLDB_ReplaceEntry(afromvol, RWVOL, &storeEntry,
3743                           LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
3744     ONERROR(vcode, afromvol, " Could not update VLDB entry for volume %u\n");
3745     VDONE;
3746
3747   rfail:
3748     if (clonetid) {
3749         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
3750         clonetid = 0;
3751         if (code) {
3752             fprintf(STDERR,
3753                     "Failed to end cloning transaction on the RW volume %lu\n",
3754                     (unsigned long)afromvol);
3755             if (!error)
3756                 error = code;
3757         }
3758     }
3759     if (fromtid) {
3760         code = AFSVolEndTrans(fromconn, fromtid, &rcode);
3761         fromtid = 0;
3762         if (code) {
3763             fprintf(STDERR,
3764                     "Failed to end transaction on the release clone %lu\n",
3765                     (unsigned long)cloneVolId);
3766             if (!error)
3767                 error = code;
3768         }
3769     }
3770     for (i = 0; i < nservers; i++) {
3771         if (replicas && replicas[i].trans) {
3772             code = AFSVolEndTrans(toconns[i], replicas[i].trans, &rcode);
3773             replicas[i].trans = 0;
3774             if (code) {
3775                 fprintf(STDERR,
3776                         "Failed to end transaction on ro volume %u at server %s\n",
3777                         entry.volumeId[ROVOL],
3778                         hostutil_GetNameByINet(htonl
3779                                                (replicas[i].server.
3780                                                 destHost)));
3781                 if (!error)
3782                     error = code;
3783             }
3784         }
3785         if (toconns && toconns[i]) {
3786             rx_DestroyConnection(toconns[i]);
3787             toconns[i] = 0;
3788         }
3789     }
3790     if (islocked) {
3791         vcode =
3792             ubik_Call(VL_ReleaseLock, cstruct, 0, afromvol, RWVOL,
3793                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
3794         if (vcode) {
3795             fprintf(STDERR,
3796                     "Could not release lock on the VLDB entry for volume %lu\n",
3797                     (unsigned long)afromvol);
3798             if (!error)
3799                 error = vcode;
3800         }
3801     }
3802
3803     PrintError("", error);
3804
3805     if (fromconn)
3806         rx_DestroyConnection(fromconn);
3807     if (results.manyResults_val)
3808         free(results.manyResults_val);
3809     if (replicas)
3810         free(replicas);
3811     if (toconns)
3812         free(toconns);
3813     if (times)
3814         free(times);
3815     return error;
3816 }
3817
3818
3819 void
3820 dump_sig_handler(int x)
3821 {
3822     fprintf(STDERR, "\nSignal handler: vos dump operation\n");
3823     longjmp(env, 0);
3824 }
3825
3826 /* Dump the volume <afromvol> on <afromserver> and
3827  * <afrompart> to <afilename> starting from <fromdate>.
3828  * DumpFunction does the real work behind the scenes after
3829  * extracting parameters from the rock 
3830  */
3831 int
3832 UV_DumpVolume(afs_int32 afromvol, afs_int32 afromserver, afs_int32 afrompart,
3833               afs_int32 fromdate, afs_int32(*DumpFunction) (), char *rock)
3834 {
3835     struct rx_connection *fromconn = (struct rx_connection *)0;
3836     struct rx_call *fromcall = (struct rx_call *)0;
3837     afs_int32 fromtid = 0, rxError = 0, rcode = 0;
3838     afs_int32 code, error = 0;
3839
3840     if (setjmp(env))
3841         ERROR_EXIT(EPIPE);
3842 #ifndef AFS_NT40_ENV
3843     (void)signal(SIGPIPE, dump_sig_handler);
3844 #endif
3845     (void)signal(SIGINT, dump_sig_handler);
3846
3847     if (!fromdate) {
3848         VPRINT("Full Dump ...\n");
3849     } else {
3850         VPRINT1("Incremental Dump (as of %.24s)...\n",
3851                 ctime((time_t *) & fromdate));
3852     }
3853
3854     /* get connections to the servers */
3855     fromconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
3856
3857     VPRINT1("Starting transaction on volume %u...", afromvol);
3858     code = AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy, &fromtid);
3859     EGOTO1(error_exit, code,
3860            "Could not start transaction on the volume %u to be dumped\n",
3861            afromvol);
3862     VDONE;
3863
3864     fromcall = rx_NewCall(fromconn);
3865
3866     VPRINT1("Starting volume dump on volume %u...", afromvol);
3867     code = StartAFSVolDump(fromcall, fromtid, fromdate);
3868     EGOTO(error_exit, code, "Could not start the dump process \n");
3869     VDONE;
3870
3871     VPRINT1("Dumping volume %u...", afromvol);
3872     code = DumpFunction(fromcall, rock);
3873     EGOTO(error_exit, code, "Error while dumping volume \n");
3874     VDONE;
3875
3876   error_exit:
3877     if (fromcall) {
3878         code = rx_EndCall(fromcall, rxError);
3879         if (code) {
3880             fprintf(STDERR, "Error in rx_EndCall\n");
3881             if (!error)
3882                 error = code;
3883         }
3884     }
3885     if (fromtid) {
3886         VPRINT1("Ending transaction on volume %u...", afromvol);
3887         code = AFSVolEndTrans(fromconn, fromtid, &rcode);
3888         if (code || rcode) {
3889             fprintf(STDERR, "Could not end transaction on the volume %lu\n",
3890                     (unsigned long)afromvol);
3891             if (!error)
3892                 error = (code ? code : rcode);
3893         }
3894         VDONE;
3895     }
3896     if (fromconn)
3897         rx_DestroyConnection(fromconn);
3898
3899     PrintError("", error);
3900     return (error);
3901 }
3902
3903 /* Clone the volume <afromvol> on <afromserver> and
3904  * <afrompart>, and then dump the clone volume to 
3905  * <afilename> starting from <fromdate>.
3906  * DumpFunction does the real work behind the scenes after
3907  * extracting parameters from the rock 
3908  */
3909 int
3910 UV_DumpClonedVolume(afs_int32 afromvol, afs_int32 afromserver,
3911                     afs_int32 afrompart, afs_int32 fromdate,
3912                     afs_int32(*DumpFunction) (), char *rock)
3913 {
3914     struct rx_connection *fromconn = (struct rx_connection *)0;
3915     struct rx_call *fromcall = (struct rx_call *)0;
3916     afs_int32 fromtid = 0, rxError = 0, rcode = 0;
3917     afs_int32 clonetid = 0;
3918     afs_int32 code = 0, vcode = 0, error = 0;
3919     afs_int32 clonevol = 0;
3920     char vname[64];
3921
3922     if (setjmp(env))
3923         ERROR_EXIT(EPIPE);
3924 #ifndef AFS_NT40_ENV
3925     (void)signal(SIGPIPE, dump_sig_handler);
3926 #endif
3927     (void)signal(SIGINT, dump_sig_handler);
3928
3929     if (!fromdate) {
3930         VPRINT("Full Dump ...\n");
3931     } else {
3932         VPRINT1("Incremental Dump (as of %.24s)...\n",
3933                 ctime((time_t *) & fromdate));
3934     }
3935
3936     /* get connections to the servers */
3937     fromconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
3938
3939     VPRINT1("Starting transaction on volume %u...", afromvol);
3940     code = AFSVolTransCreate(fromconn, afromvol, afrompart, ITBusy, &fromtid);
3941     EGOTO1(error_exit, code,
3942            "Could not start transaction on the volume %u to be dumped\n",
3943            afromvol);
3944     VDONE;
3945
3946     /* Get a clone id */
3947     VPRINT1("Allocating new volume id for clone of volume %u ...", afromvol);
3948     code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &clonevol);
3949     EGOTO1(error_exit, code,
3950            "Could not get an ID for the clone of volume %u from the VLDB\n",
3951            afromvol);
3952     VDONE;
3953
3954     /* Do the clone. Default flags on clone are set to delete on salvage and out of service */
3955     VPRINT2("Cloning source volume %u to clone volume %u...", afromvol,
3956             clonevol);
3957     strcpy(vname, "dump-clone-temp");
3958     code =
3959         AFSVolClone(fromconn, fromtid, 0, readonlyVolume, vname, &clonevol);
3960     EGOTO1(error_exit, code, "Failed to clone the source volume %u\n",
3961            afromvol);
3962     VDONE;
3963
3964     VPRINT1("Ending the transaction on the volume %u ...", afromvol);
3965     rcode = 0;
3966     code = AFSVolEndTrans(fromconn, fromtid, &rcode);
3967     fromtid = 0;
3968     if (!code)
3969         code = rcode;
3970     EGOTO1(error_exit, code,
3971            "Failed to end the transaction on the volume %u\n", afromvol);
3972     VDONE;
3973
3974
3975     VPRINT1("Starting transaction on the cloned volume %u ...", clonevol);
3976     code =
3977         AFSVolTransCreate(fromconn, clonevol, afrompart, ITOffline,
3978                           &clonetid);
3979     EGOTO1(error_exit, code,
3980            "Failed to start a transaction on the cloned volume%u\n",
3981            clonevol);
3982     VDONE;
3983
3984     VPRINT1("Setting flags on cloned volume %u ...", clonevol);
3985     code = AFSVolSetFlags(fromconn, clonetid, VTDeleteOnSalvage | VTOutOfService);      /*redundant */
3986     EGOTO1(error_exit, code, "Could not set falgs on the cloned volume %u\n",
3987            clonevol);
3988     VDONE;
3989
3990
3991     fromcall = rx_NewCall(fromconn);
3992
3993     VPRINT1("Starting volume dump from cloned volume %u...", clonevol);
3994     code = StartAFSVolDump(fromcall, clonetid, fromdate);
3995     EGOTO(error_exit, code, "Could not start the dump process \n");
3996     VDONE;
3997
3998     VPRINT1("Dumping volume %u...", afromvol);
3999     code = DumpFunction(fromcall, rock);
4000     EGOTO(error_exit, code, "Error while dumping volume \n");
4001     VDONE;
4002
4003   error_exit:
4004     /* now delete the clone */
4005     VPRINT1("Deleting the cloned volume %u ...", clonevol);
4006     code = AFSVolDeleteVolume(fromconn, clonetid);
4007     if (code) {
4008         fprintf(STDERR, "Failed to delete the cloned volume %lu\n",
4009                 (unsigned long)clonevol);
4010     } else {
4011         VDONE;
4012     }
4013
4014     if (fromcall) {
4015         code = rx_EndCall(fromcall, rxError);
4016         if (code) {
4017             fprintf(STDERR, "Error in rx_EndCall\n");
4018             if (!error)
4019                 error = code;
4020         }
4021     }
4022     if (clonetid) {
4023         VPRINT1("Ending transaction on cloned volume %u...", clonevol);
4024         code = AFSVolEndTrans(fromconn, clonetid, &rcode);
4025         if (code || rcode) {
4026             fprintf(STDERR,
4027                     "Could not end transaction on the cloned volume %lu\n",
4028                     (unsigned long)clonevol);
4029             if (!error)
4030                 error = (code ? code : rcode);
4031         }
4032         VDONE;
4033     }
4034     if (fromconn)
4035         rx_DestroyConnection(fromconn);
4036
4037     PrintError("", error);
4038     return (error);
4039 }
4040
4041
4042
4043 /*
4044  * Restore a volume <tovolid> <tovolname> on <toserver> <topart> from
4045  * the dump file <afilename>. WriteData does all the real work
4046  * after extracting params from the rock 
4047  */
4048 int
4049 UV_RestoreVolume(afs_int32 toserver, afs_int32 topart, afs_int32 tovolid,
4050                  char tovolname[], int flags, afs_int32(*WriteData) (),
4051                  char *rock)
4052 {
4053     struct rx_connection *toconn, *tempconn;
4054     struct rx_call *tocall;
4055     afs_int32 totid, code, rcode, vcode, terror = 0;
4056     afs_int32 rxError = 0;
4057     struct volser_status tstatus;
4058     struct volintInfo vinfo;
4059     char partName[10];
4060     afs_int32 pvolid;
4061     afs_int32 temptid;
4062     int success;
4063     struct nvldbentry entry, storeEntry;
4064     afs_int32 error;
4065     int islocked;
4066     struct restoreCookie cookie;
4067     int reuseID;
4068     afs_int32 volflag, voltype, volsertype;
4069     afs_int32 oldCreateDate, oldUpdateDate, newCreateDate, newUpdateDate;
4070     int index, same, errcode;
4071     char apartName[10];
4072
4073
4074     memset(&cookie, 0, sizeof(cookie));
4075     islocked = 0;
4076     success = 0;
4077     error = 0;
4078     reuseID = 1;
4079     tocall = (struct rx_call *)0;
4080     toconn = (struct rx_connection *)0;
4081     tempconn = (struct rx_connection *)0;
4082     totid = 0;
4083     temptid = 0;
4084
4085     if (flags & RV_RDONLY) {
4086         voltype = ROVOL;
4087         volsertype = volser_RO;
4088     } else {
4089         voltype = RWVOL;
4090         volsertype = volser_RW;
4091     }
4092
4093     pvolid = tovolid;
4094     toconn = UV_Bind(toserver, AFSCONF_VOLUMEPORT);
4095     if (pvolid == 0) {          /*alot a new id if needed */
4096         vcode = VLDB_GetEntryByName(tovolname, &entry);
4097         if (vcode == VL_NOENT) {
4098             vcode = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 1, &pvolid);
4099             if (vcode) {
4100                 fprintf(STDERR, "Could not get an Id for the volume %s\n",
4101                         tovolname);
4102                 error = vcode;
4103                 goto refail;
4104             }
4105             reuseID = 0;
4106         } else if (flags & RV_RDONLY) {
4107             if (entry.flags & RW_EXISTS) {
4108                 fprintf(STDERR,
4109                         "Entry for ReadWrite volume %s already exists!\n",
4110                         entry.name);
4111                 error = VOLSERBADOP;
4112                 goto refail;
4113             }
4114             if (!entry.volumeId[ROVOL]) {
4115                 fprintf(STDERR,
4116                         "Existing entry for volume %s has no ReadOnly ID\n",
4117                         tovolname);
4118                 error = VOLSERBADOP;
4119                 goto refail;
4120             }
4121             pvolid = entry.volumeId[ROVOL];
4122         } else {
4123             pvolid = entry.volumeId[RWVOL];
4124         }
4125     }
4126     /* at this point we have a volume id to use/reuse for the volume to be restored */
4127     if (strlen(tovolname) > (VOLSER_OLDMAXVOLNAME - 1)) {
4128         EGOTO1(refail, VOLSERBADOP,
4129                "The volume name %s exceeds the maximum limit of (VOLSER_OLDMAXVOLNAME -1 ) bytes\n",
4130                tovolname);
4131     }
4132     MapPartIdIntoName(topart, partName);
4133     fprintf(STDOUT, "Restoring volume %s Id %lu on server %s partition %s ..",
4134             tovolname, (unsigned long)pvolid,
4135             hostutil_GetNameByINet(toserver), partName);
4136     fflush(STDOUT);
4137     code =
4138         AFSVolCreateVolume(toconn, topart, tovolname, volsertype, 0, &pvolid,
4139                            &totid);
4140     if (code) {
4141         if (flags & RV_FULLRST) {       /* full restore: delete then create anew */
4142             VPRINT1("Deleting the previous volume %u ...", pvolid);
4143
4144             code =
4145                 AFSVolTransCreate(toconn, pvolid, topart, ITOffline, &totid);
4146             EGOTO1(refail, code, "Failed to start transaction on %u\n",
4147                    pvolid);
4148
4149             code = AFSVolGetStatus(toconn, totid, &tstatus);
4150             EGOTO1(refail, code, "Could not get timestamp from volume %u\n",
4151                    pvolid);
4152
4153             oldCreateDate = tstatus.creationDate;
4154             oldUpdateDate = tstatus.updateDate;
4155
4156             code =
4157                 AFSVolSetFlags(toconn, totid,
4158                                VTDeleteOnSalvage | VTOutOfService);
4159             EGOTO1(refail, code, "Could not set flags on volume %u \n",
4160                    pvolid);
4161
4162             code = AFSVolDeleteVolume(toconn, totid);
4163             EGOTO1(refail, code, "Could not delete volume %u\n", pvolid);
4164
4165             code = AFSVolEndTrans(toconn, totid, &rcode);
4166             totid = 0;
4167             if (!code)
4168                 code = rcode;
4169             EGOTO1(refail, code, "Could not end transaction on %u\n", pvolid);
4170
4171             VDONE;
4172
4173             code =
4174                 AFSVolCreateVolume(toconn, topart, tovolname, volsertype, 0,
4175                                    &pvolid, &totid);
4176             EGOTO1(refail, code, "Could not create new volume %u\n", pvolid);
4177         } else {
4178             code =
4179                 AFSVolTransCreate(toconn, pvolid, topart, ITOffline, &totid);
4180             EGOTO1(refail, code, "Failed to start transaction on %u\n",
4181                    pvolid);
4182
4183             code = AFSVolGetStatus(toconn, totid, &tstatus);
4184             EGOTO1(refail, code, "Could not get timestamp from volume %u\n",
4185                    pvolid);
4186
4187             oldCreateDate = tstatus.creationDate;
4188             oldUpdateDate = tstatus.updateDate;
4189         }
4190     } else {
4191         oldCreateDate = 0;
4192         oldUpdateDate = 0;
4193     }
4194
4195     cookie.parent = pvolid;
4196     cookie.type = voltype;
4197     cookie.clone = 0;
4198     strncpy(cookie.name, tovolname, VOLSER_OLDMAXVOLNAME);
4199
4200     tocall = rx_NewCall(toconn);
4201     terror = StartAFSVolRestore(tocall, totid, 1, &cookie);
4202     if (terror) {
4203         fprintf(STDERR, "Volume restore Failed \n");
4204         error = terror;
4205         goto refail;
4206     }
4207     code = WriteData(tocall, rock);
4208     if (code) {
4209         fprintf(STDERR, "Could not transmit data\n");
4210         error = code;
4211         goto refail;
4212     }
4213     terror = rx_EndCall(tocall, rxError);
4214     tocall = (struct rx_call *)0;
4215     if (terror) {
4216         fprintf(STDERR, "rx_EndCall Failed \n");
4217         error = terror;
4218         goto refail;
4219     }
4220     code = AFSVolGetStatus(toconn, totid, &tstatus);
4221     if (code) {
4222         fprintf(STDERR,
4223                 "Could not get status information about the volume %lu\n",
4224                 (unsigned long)pvolid);
4225         error = code;
4226         goto refail;
4227     }
4228     code = AFSVolSetIdsTypes(toconn, totid, tovolname, voltype, pvolid, 0, 0);
4229     if (code) {
4230         fprintf(STDERR, "Could not set the right type and ID on %lu\n",
4231                 (unsigned long)pvolid);
4232         error = code;
4233         goto refail;
4234     }
4235
4236     if (flags & RV_CRDUMP)
4237         newCreateDate = tstatus.creationDate;
4238     else if (flags & RV_CRKEEP && oldCreateDate != 0)
4239         newCreateDate = oldCreateDate;
4240     else
4241         newCreateDate = time(0);
4242     if (flags & RV_LUDUMP)
4243         newUpdateDate = tstatus.updateDate;
4244     else if (flags & RV_LUKEEP)
4245         newUpdateDate = oldUpdateDate;
4246     else
4247         newUpdateDate = time(0);
4248     code = AFSVolSetDate(toconn,totid, newCreateDate);
4249     if (code) {
4250         fprintf(STDERR, "Could not set the 'creation' date on %u\n", pvolid);
4251         error = code;
4252         goto refail;
4253     }
4254
4255     init_volintInfo(&vinfo);
4256     vinfo.creationDate = newCreateDate;
4257     vinfo.updateDate = newUpdateDate;
4258     code = AFSVolSetInfo(toconn, totid, &vinfo);
4259     if (code) {
4260         fprintf(STDERR, "Could not set the 'last updated' date on %u\n",
4261                 pvolid);
4262         error = code;
4263         goto refail;
4264     }
4265
4266     volflag = ((flags & RV_OFFLINE) ? VTOutOfService : 0);      /* off or on-line */
4267     code = AFSVolSetFlags(toconn, totid, volflag);
4268     if (code) {
4269         fprintf(STDERR, "Could not mark %lu online\n", (unsigned long)pvolid);
4270         error = code;
4271         goto refail;
4272     }
4273
4274 /* It isn't handled right in refail */
4275     code = AFSVolEndTrans(toconn, totid, &rcode);
4276     totid = 0;
4277     if (!code)
4278         code = rcode;
4279     if (code) {
4280         fprintf(STDERR, "Could not end transaction on %lu\n",
4281                 (unsigned long)pvolid);
4282         error = code;
4283         goto refail;
4284     }
4285
4286     success = 1;
4287     fprintf(STDOUT, " done\n");
4288     fflush(STDOUT);
4289     if (success && (!reuseID || (flags & RV_FULLRST))) {
4290         /* Volume was restored on the file server, update the 
4291          * VLDB to reflect the change.
4292          */
4293         vcode = VLDB_GetEntryByID(pvolid, voltype, &entry);
4294         if (vcode && vcode != VL_NOENT && vcode != VL_ENTDELETED) {
4295             fprintf(STDERR,
4296                     "Could not fetch the entry for volume number %lu from VLDB \n",
4297                     (unsigned long)pvolid);
4298             error = vcode;
4299             goto refail;
4300         }
4301         if (!vcode)
4302             MapHostToNetwork(&entry);
4303         if (vcode == VL_NOENT) {        /* it doesnot exist already */
4304             /*make the vldb return this indication specifically */
4305             VPRINT("------- Creating a new VLDB entry ------- \n");
4306             strcpy(entry.name, tovolname);
4307             entry.nServers = 1;
4308             entry.serverNumber[0] = toserver;   /*should be indirect */
4309             entry.serverPartition[0] = topart;
4310             entry.serverFlags[0] = (flags & RV_RDONLY) ? ITSROVOL : ITSRWVOL;
4311             entry.flags = (flags & RV_RDONLY) ? RO_EXISTS : RW_EXISTS;
4312             if (flags & RV_RDONLY)
4313                 entry.volumeId[ROVOL] = pvolid;
4314             else if (tstatus.cloneID != 0) {
4315                 entry.volumeId[ROVOL] = tstatus.cloneID;        /*this should come from status info on the volume if non zero */
4316             } else
4317                 entry.volumeId[ROVOL] = INVALID_BID;
4318             entry.volumeId[RWVOL] = pvolid;
4319             entry.cloneId = 0;
4320             if (tstatus.backupID != 0) {
4321                 entry.volumeId[BACKVOL] = tstatus.backupID;
4322                 /*this should come from status info on the volume if non zero */
4323             } else
4324                 entry.volumeId[BACKVOL] = INVALID_BID;
4325             MapNetworkToHost(&entry, &storeEntry);
4326             vcode = VLDB_CreateEntry(&storeEntry);
4327             if (vcode) {
4328                 fprintf(STDERR,
4329                         "Could not create the VLDB entry for volume number %lu  \n",
4330                         (unsigned long)pvolid);
4331                 error = vcode;
4332                 goto refail;
4333             }
4334             islocked = 0;
4335             if (verbose)
4336                 EnumerateEntry(&entry);
4337         } else {                /*update the existing entry */
4338             if (verbose) {
4339                 fprintf(STDOUT, "Updating the existing VLDB entry\n");
4340                 fprintf(STDOUT, "------- Old entry -------\n");
4341                 EnumerateEntry(&entry);
4342                 fprintf(STDOUT, "------- New entry -------\n");
4343             }
4344             vcode =
4345                 ubik_Call(VL_SetLock, cstruct, 0, pvolid, voltype,
4346                           VLOP_RESTORE);
4347             if (vcode) {
4348                 fprintf(STDERR,
4349                         "Could not lock the entry for volume number %lu \n",
4350                         (unsigned long)pvolid);
4351                 error = vcode;
4352                 goto refail;
4353             }
4354             islocked = 1;
4355             strcpy(entry.name, tovolname);
4356
4357             /* Update the vlentry with the new information */
4358             if (flags & RV_RDONLY)
4359                 index = Lp_ROMatch(toserver, topart, &entry) - 1;
4360             else
4361                 index = Lp_GetRwIndex(&entry);
4362             if (index == -1) {
4363                 /* Add the new site for the volume being restored */
4364                 entry.serverNumber[entry.nServers] = toserver;
4365                 entry.serverPartition[entry.nServers] = topart;
4366                 entry.serverFlags[entry.nServers] =
4367                     (flags & RV_RDONLY) ? ITSROVOL : ITSRWVOL;
4368                 entry.nServers++;
4369             } else {
4370                 /* This volume should be deleted on the old site
4371                  * if its different from new site.
4372                  */
4373                 same =
4374                     VLDB_IsSameAddrs(toserver, entry.serverNumber[index],
4375                                      &errcode);
4376                 EPRINT2(errcode,
4377                         "Failed to get info about server's %d address(es) from vlserver (err=%d)\n",
4378                         toserver, errcode);
4379                 if ((!errcode && !same)
4380                     || (entry.serverPartition[index] != topart)) {
4381                     tempconn =
4382                         UV_Bind(entry.serverNumber[index],
4383                                 AFSCONF_VOLUMEPORT);
4384
4385                     MapPartIdIntoName(entry.serverPartition[index],
4386                                       apartName);
4387                     VPRINT3
4388                         ("Deleting the previous volume %u on server %s, partition %s ...",
4389                          pvolid,
4390                          hostutil_GetNameByINet(entry.serverNumber[index]),
4391                          apartName);
4392                     code =
4393                         AFSVolTransCreate(tempconn, pvolid,
4394                                           entry.serverPartition[index],
4395                                           ITOffline, &temptid);
4396                     if (!code) {
4397                         code =
4398                             AFSVolSetFlags(tempconn, temptid,
4399                                            VTDeleteOnSalvage |
4400                                            VTOutOfService);
4401                         if (code) {
4402                             fprintf(STDERR,
4403                                     "Could not set flags on volume %lu on the older site\n",
4404                                     (unsigned long)pvolid);
4405                             error = code;
4406                             goto refail;
4407                         }
4408                         code = AFSVolDeleteVolume(tempconn, temptid);
4409                         if (code) {
4410                             fprintf(STDERR,
4411                                     "Could not delete volume %lu on the older site\n",
4412                                     (unsigned long)pvolid);
4413                             error = code;
4414                             goto refail;
4415                         }
4416                         code = AFSVolEndTrans(tempconn, temptid, &rcode);
4417                         temptid = 0;
4418                         if (!code)
4419                             code = rcode;
4420                         if (code) {
4421                             fprintf(STDERR,
4422                                     "Could not end transaction on volume %lu on the older site\n",
4423                                     (unsigned long)pvolid);
4424                             error = code;
4425                             goto refail;
4426                         }
4427                         VDONE;
4428                         MapPartIdIntoName(entry.serverPartition[index],
4429                                           partName);
4430                     }
4431                 }
4432                 entry.serverNumber[index] = toserver;
4433                 entry.serverPartition[index] = topart;
4434             }
4435
4436             entry.flags |= (flags & RV_RDONLY) ? RO_EXISTS : RW_EXISTS;
4437             MapNetworkToHost(&entry, &storeEntry);
4438             vcode =
4439                 VLDB_ReplaceEntry(pvolid, voltype, &storeEntry,
4440                                   LOCKREL_OPCODE | LOCKREL_AFSID |
4441                                   LOCKREL_TIMESTAMP);
4442             if (vcode) {
4443                 fprintf(STDERR,
4444                         "Could not update the entry for volume number %lu  \n",
4445                         (unsigned long)pvolid);
4446                 error = vcode;
4447                 goto refail;
4448             }
4449             islocked = 0;
4450             if (verbose)
4451                 EnumerateEntry(&entry);
4452         }
4453
4454
4455     }
4456   refail:
4457     if (tocall) {
4458         code = rx_EndCall(tocall, rxError);
4459         if (!error)
4460             error = code;
4461     }
4462     if (islocked) {
4463         vcode =
4464             ubik_Call(VL_ReleaseLock, cstruct, 0, pvolid, voltype,
4465                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4466         if (vcode) {
4467             fprintf(STDERR,
4468                     "Could not release lock on the VLDB entry for the volume %lu\n",
4469                     (unsigned long)pvolid);
4470             if (!error)
4471                 error = vcode;
4472         }
4473     }
4474     if (totid) {
4475         code = AFSVolEndTrans(toconn, totid, &rcode);
4476         if (!code)
4477             code = rcode;
4478         if (code) {
4479             fprintf(STDERR, "Could not end transaction on the volume %lu \n",
4480                     (unsigned long)pvolid);
4481             if (!error)
4482                 error = code;
4483         }
4484     }
4485     if (temptid) {
4486         code = AFSVolEndTrans(toconn, temptid, &rcode);
4487         if (!code)
4488             code = rcode;
4489         if (code) {
4490             fprintf(STDERR, "Could not end transaction on the volume %lu \n",
4491                     (unsigned long)pvolid);
4492             if (!error)
4493                 error = code;
4494         }
4495     }
4496     if (tempconn)
4497         rx_DestroyConnection(tempconn);
4498     if (toconn)
4499         rx_DestroyConnection(toconn);
4500     PrintError("", error);
4501     return error;
4502 }
4503
4504
4505 /*unlocks the vldb entry associated with <volid> */
4506 int
4507 UV_LockRelease(afs_int32 volid)
4508 {
4509
4510
4511     afs_int32 vcode;
4512
4513     VPRINT("Binding to the VLDB server\n");
4514     vcode =
4515         ubik_Call(VL_ReleaseLock, cstruct, 0, volid, -1,
4516                   LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4517     if (vcode) {
4518         fprintf(STDERR,
4519                 "Could not unlock the entry for volume number %lu in VLDB \n",
4520                 (unsigned long)volid);
4521         PrintError("", vcode);
4522         return (vcode);
4523     }
4524     VPRINT("VLDB updated\n");
4525     return 0;
4526
4527 }
4528
4529 /*adds <server> and <part> as a readonly replication site for <volid>
4530 *in vldb */
4531 int
4532 UV_AddSite(afs_int32 server, afs_int32 part, afs_int32 volid)
4533 {
4534     int j, nro = 0, islocked = 0;
4535     struct nvldbentry entry, storeEntry;
4536     afs_int32 vcode, error = 0;
4537     char apartName[10];
4538
4539     error = ubik_Call(VL_SetLock, cstruct, 0, volid, RWVOL, VLOP_ADDSITE);
4540     if (error) {
4541         fprintf(STDERR,
4542                 " Could not lock the VLDB entry for the volume %lu \n",
4543                 (unsigned long)volid);
4544         goto asfail;
4545     }
4546     islocked = 1;
4547
4548     error = VLDB_GetEntryByID(volid, RWVOL, &entry);
4549     if (error) {
4550         fprintf(STDERR,
4551                 "Could not fetch the VLDB entry for volume number %lu  \n",
4552                 (unsigned long)volid);
4553         goto asfail;
4554
4555     }
4556     if (!ISNAMEVALID(entry.name)) {
4557         fprintf(STDERR,
4558                 "Volume name %s is too long, rename before adding site\n",
4559                 entry.name);
4560         error = VOLSERBADOP;
4561         goto asfail;
4562     }
4563     MapHostToNetwork(&entry);
4564
4565     /* See if it's too many entries */
4566     if (entry.nServers >= NMAXNSERVERS) {
4567         fprintf(STDERR, "Total number of entries will exceed %u\n",
4568                 NMAXNSERVERS);
4569         error = VOLSERBADOP;
4570         goto asfail;
4571     }
4572
4573     /* See if it's on the same server */
4574     for (j = 0; j < entry.nServers; j++) {
4575         if (entry.serverFlags[j] & ITSROVOL) {
4576             nro++;
4577             if (VLDB_IsSameAddrs(server, entry.serverNumber[j], &error)) {
4578                 if (error) {
4579                     fprintf(STDERR,
4580                             "Failed to get info about server's %d address(es) from vlserver (err=%d); aborting call!\n",
4581                             server, error);
4582                 } else {
4583                     MapPartIdIntoName(entry.serverPartition[j], apartName);
4584                     fprintf(STDERR,
4585                             "RO already exists on partition %s. Multiple ROs on a single server aren't allowed\n",
4586                             apartName);
4587                     error = VOLSERBADOP;
4588                 }
4589                 goto asfail;
4590             }
4591         }
4592     }
4593
4594     /* See if it's too many RO sites - leave one for the RW */
4595     if (nro >= NMAXNSERVERS - 1) {
4596         fprintf(STDERR, "Total number of sites will exceed %u\n",
4597                 NMAXNSERVERS - 1);
4598         error = VOLSERBADOP;
4599         goto asfail;
4600     }
4601
4602     VPRINT("Adding a new site ...");
4603     entry.serverNumber[entry.nServers] = server;
4604     entry.serverPartition[entry.nServers] = part;
4605     entry.serverFlags[entry.nServers] = (ITSROVOL | RO_DONTUSE);
4606     entry.nServers++;
4607
4608     MapNetworkToHost(&entry, &storeEntry);
4609     error =
4610         VLDB_ReplaceEntry(volid, RWVOL, &storeEntry,
4611                           LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4612     if (error) {
4613         fprintf(STDERR, "Could not update entry for volume %lu \n",
4614                 (unsigned long)volid);
4615         goto asfail;
4616     }
4617     islocked = 0;
4618     VDONE;
4619
4620   asfail:
4621     if (islocked) {
4622         vcode =
4623             ubik_Call(VL_ReleaseLock, cstruct, 0, volid, RWVOL,
4624                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4625         if (vcode) {
4626             fprintf(STDERR,
4627                     "Could not release lock on volume entry for %lu \n",
4628                     (unsigned long)volid);
4629             PrintError("", vcode);
4630         }
4631     }
4632
4633     PrintError("", error);
4634     return error;
4635 }
4636
4637 /*removes <server> <part> as read only site for <volid> from the vldb */
4638 int
4639 UV_RemoveSite(afs_int32 server, afs_int32 part, afs_int32 volid)
4640 {
4641     afs_int32 vcode;
4642     struct nvldbentry entry, storeEntry;
4643     int islocked;
4644
4645     vcode = ubik_Call(VL_SetLock, cstruct, 0, volid, RWVOL, VLOP_ADDSITE);
4646     if (vcode) {
4647         fprintf(STDERR, " Could not lock the VLDB entry for volume %lu \n",
4648                 (unsigned long)volid);
4649         PrintError("", vcode);
4650         return (vcode);
4651     }
4652     islocked = 1;
4653     vcode = VLDB_GetEntryByID(volid, RWVOL, &entry);
4654     if (vcode) {
4655         fprintf(STDERR,
4656                 "Could not fetch the entry for volume number %lu from VLDB \n",
4657                 (unsigned long)volid);
4658         PrintError("", vcode);
4659         return (vcode);
4660     }
4661     MapHostToNetwork(&entry);
4662     if (!Lp_ROMatch(server, part, &entry)) {
4663         /*this site doesnot exist  */
4664         fprintf(STDERR, "This site is not a replication site \n");
4665         vcode =
4666             ubik_Call(VL_ReleaseLock, cstruct, 0, volid, RWVOL,
4667                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4668         if (vcode) {
4669             fprintf(STDERR, "Could not update entry for volume %lu \n",
4670                     (unsigned long)volid);
4671             PrintError("", vcode);
4672             ubik_Call(VL_ReleaseLock, cstruct, 0, volid, RWVOL,
4673                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4674             return (vcode);
4675         }
4676         return VOLSERBADOP;
4677     } else {                    /*remove the rep site */
4678         Lp_SetROValue(&entry, server, part, 0, 0);
4679         entry.nServers--;
4680         if ((entry.nServers == 1) && (entry.flags & RW_EXISTS))
4681             entry.flags &= ~RO_EXISTS;
4682         if (entry.nServers < 1) {       /*this is the last ref */
4683             VPRINT1("Deleting the VLDB entry for %u ...", volid);
4684             fflush(STDOUT);
4685             vcode = ubik_Call(VL_DeleteEntry, cstruct, 0, volid, ROVOL);
4686             if (vcode) {
4687                 fprintf(STDERR,
4688                         "Could not delete VLDB entry for volume %lu \n",
4689                         (unsigned long)volid);
4690                 PrintError("", vcode);
4691                 return (vcode);
4692             }
4693             VDONE;
4694         }
4695         MapNetworkToHost(&entry, &storeEntry);
4696         fprintf(STDOUT, "Deleting the replication site for volume %lu ...",
4697                 (unsigned long)volid);
4698         fflush(STDOUT);
4699         vcode =
4700             VLDB_ReplaceEntry(volid, RWVOL, &storeEntry,
4701                               LOCKREL_OPCODE | LOCKREL_AFSID |
4702                               LOCKREL_TIMESTAMP);
4703         if (vcode) {
4704             fprintf(STDERR,
4705                     "Could not release lock on volume entry for %lu \n",
4706                     (unsigned long)volid);
4707             PrintError("", vcode);
4708             ubik_Call(VL_ReleaseLock, cstruct, 0, volid, RWVOL,
4709                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4710             return (vcode);
4711         }
4712         VDONE;
4713     }
4714     return 0;
4715 }
4716
4717 /*sets <server> <part> as read/write site for <volid> in the vldb */
4718 int
4719 UV_ChangeLocation(afs_int32 server, afs_int32 part, afs_int32 volid)
4720 {
4721     afs_int32 vcode;
4722     struct nvldbentry entry, storeEntry;
4723     int index;
4724
4725     vcode = ubik_Call(VL_SetLock, cstruct, 0, volid, RWVOL, VLOP_ADDSITE);
4726     if (vcode) {
4727         fprintf(STDERR, " Could not lock the VLDB entry for volume %lu \n",
4728                 (unsigned long)volid);
4729         PrintError("", vcode);
4730         return (vcode);
4731     }
4732     vcode = VLDB_GetEntryByID(volid, RWVOL, &entry);
4733     if (vcode) {
4734         fprintf(STDERR,
4735                 "Could not fetch the entry for volume number %lu from VLDB \n",
4736                 (unsigned long)volid);
4737         PrintError("", vcode);
4738         return (vcode);
4739     }
4740     MapHostToNetwork(&entry);
4741     index = Lp_GetRwIndex(&entry);
4742     if (index < 0) {
4743         /* no RW site exists  */
4744         fprintf(STDERR, "No existing RW site for volume %lu",
4745                 (unsigned long)volid);
4746         vcode =
4747             ubik_Call(VL_ReleaseLock, cstruct, 0, volid, RWVOL,
4748                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4749         if (vcode) {
4750             fprintf(STDERR,
4751                     "Could not release lock on entry for volume %lu \n",
4752                     (unsigned long)volid);
4753             PrintError("", vcode);
4754             return (vcode);
4755         }
4756         return VOLSERBADOP;
4757     } else {                    /* change the RW site */
4758         entry.serverNumber[index] = server;
4759         entry.serverPartition[index] = part;
4760         MapNetworkToHost(&entry, &storeEntry);
4761         vcode =
4762             VLDB_ReplaceEntry(volid, RWVOL, &storeEntry,
4763                               LOCKREL_OPCODE | LOCKREL_AFSID |
4764                               LOCKREL_TIMESTAMP);
4765         if (vcode) {
4766             fprintf(STDERR, "Could not update entry for volume %lu \n",
4767                     (unsigned long)volid);
4768             PrintError("", vcode);
4769             ubik_Call(VL_ReleaseLock, cstruct, 0, volid, RWVOL,
4770                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4771             return (vcode);
4772         }
4773         VDONE;
4774     }
4775     return 0;
4776 }
4777
4778 /*list all the partitions on <aserver> */
4779 int
4780 UV_ListPartitions(afs_int32 aserver, struct partList *ptrPartList,
4781                   afs_int32 * cntp)
4782 {
4783     struct rx_connection *aconn;
4784     struct pIDs partIds;
4785     struct partEntries partEnts;
4786     register int i, j = 0, code;
4787
4788     *cntp = 0;
4789     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
4790
4791     partEnts.partEntries_len = 0;
4792     partEnts.partEntries_val = NULL;
4793     code = AFSVolXListPartitions(aconn, &partEnts);     /* this is available only on new servers */
4794     if (code == RXGEN_OPCODE) {
4795         for (i = 0; i < 26; i++)        /* try old interface */
4796             partIds.partIds[i] = -1;
4797         code = AFSVolListPartitions(aconn, &partIds);
4798         if (!code) {
4799             for (i = 0; i < 26; i++) {
4800                 if ((partIds.partIds[i]) != -1) {
4801                     ptrPartList->partId[j] = partIds.partIds[i];
4802                     ptrPartList->partFlags[j] = PARTVALID;
4803                     j++;
4804                 } else
4805                     ptrPartList->partFlags[i] = 0;
4806             }
4807             *cntp = j;
4808         }
4809     } else if (!code) {
4810         *cntp = partEnts.partEntries_len;
4811         if (*cntp > VOLMAXPARTS) {
4812             fprintf(STDERR,
4813                     "Warning: number of partitions on the server too high %d (process only %d)\n",
4814                     *cntp, VOLMAXPARTS);
4815             *cntp = VOLMAXPARTS;
4816         }
4817         for (i = 0; i < *cntp; i++) {
4818             ptrPartList->partId[i] = partEnts.partEntries_val[i];
4819             ptrPartList->partFlags[i] = PARTVALID;
4820         }
4821         free(partEnts.partEntries_val);
4822     }
4823
4824    /* out: */
4825     if (code)
4826         fprintf(STDERR,
4827                 "Could not fetch the list of partitions from the server\n");
4828     PrintError("", code);
4829     if (aconn)
4830         rx_DestroyConnection(aconn);
4831     return code;
4832 }
4833
4834
4835 /*zap the list of volumes specified by volPtrArray (the volCloneId field).
4836  This is used by the backup system */
4837 int
4838 UV_ZapVolumeClones(afs_int32 aserver, afs_int32 apart,
4839                    struct volDescription *volPtr, afs_int32 arraySize)
4840 {
4841     struct rx_connection *aconn;
4842     struct volDescription *curPtr;
4843     int curPos;
4844     afs_int32 code = 0;
4845     afs_int32 rcode = 0;
4846     afs_int32 success = 1;
4847     afs_int32 tid;
4848
4849     aconn = (struct rx_connection *)0;
4850     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
4851     curPos = 0;
4852     for (curPtr = volPtr; curPos < arraySize; curPtr++) {
4853         if (curPtr->volFlags & CLONEVALID) {
4854             curPtr->volFlags &= ~CLONEZAPPED;
4855             success = 1;
4856             code =
4857                 AFSVolTransCreate(aconn, curPtr->volCloneId, apart, ITOffline,
4858                                   &tid);
4859             if (code)
4860                 success = 0;
4861             else {
4862                 code = AFSVolDeleteVolume(aconn, tid);
4863                 if (code)
4864                     success = 0;
4865                 code = AFSVolEndTrans(aconn, tid, &rcode);
4866                 if (code || rcode)
4867                     success = 0;
4868             }
4869             if (success)
4870                 curPtr->volFlags |= CLONEZAPPED;
4871             if (!success)
4872                 fprintf(STDERR, "Could not zap volume %lu\n",
4873                         (unsigned long)curPtr->volCloneId);
4874             if (success)
4875                 VPRINT2("Clone of %s %u deleted\n", curPtr->volName,
4876                         curPtr->volCloneId);
4877             curPos++;
4878             tid = 0;
4879         }
4880     }
4881     if (aconn)
4882         rx_DestroyConnection(aconn);
4883     return 0;
4884 }
4885
4886 /*return a list of clones of the volumes specified by volPtrArray. Used by the 
4887  backup system */
4888 int
4889 UV_GenerateVolumeClones(afs_int32 aserver, afs_int32 apart,
4890                         struct volDescription *volPtr, afs_int32 arraySize)
4891 {
4892     struct rx_connection *aconn;
4893     struct volDescription *curPtr;
4894     int curPos;
4895     afs_int32 code = 0;
4896     afs_int32 rcode = 0;
4897     afs_int32 tid;
4898     int reuseCloneId = 0;
4899     afs_int32 curCloneId = 0;
4900     char cloneName[256];        /*max vol name */
4901
4902     aconn = (struct rx_connection *)0;
4903     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
4904     curPos = 0;
4905     if ((volPtr->volFlags & REUSECLONEID) && (volPtr->volFlags & ENTRYVALID))
4906         reuseCloneId = 1;
4907     else {                      /*get a bunch of id's from vldb */
4908         code =
4909             ubik_Call(VL_GetNewVolumeId, cstruct, 0, arraySize, &curCloneId);
4910         if (code) {
4911             fprintf(STDERR, "Could not get ID's for the clone from VLDB\n");
4912             PrintError("", code);
4913             return code;
4914         }
4915     }
4916
4917     for (curPtr = volPtr; curPos < arraySize; curPtr++) {
4918         if (curPtr->volFlags & ENTRYVALID) {
4919
4920             curPtr->volFlags |= CLONEVALID;
4921             /*make a clone of curParentId and record as curPtr->volCloneId */
4922             code =
4923                 AFSVolTransCreate(aconn, curPtr->volId, apart, ITOffline,
4924                                   &tid);
4925             if (code)
4926                 VPRINT2("Clone for volume %s %u failed \n", curPtr->volName,
4927                         curPtr->volId);
4928             if (code) {
4929                 curPtr->volFlags &= ~CLONEVALID;        /*cant clone */
4930                 curPos++;
4931                 continue;
4932             }
4933             if (strlen(curPtr->volName) < (VOLSER_OLDMAXVOLNAME - 9)) {
4934                 strcpy(cloneName, curPtr->volName);
4935                 strcat(cloneName, "-tmpClone-");
4936             } else
4937                 strcpy(cloneName, "-tmpClone");
4938             if (reuseCloneId) {
4939                 curPtr->volCloneId = curCloneId;
4940                 curCloneId++;
4941             }
4942
4943             code =
4944                 AFSVolClone(aconn, tid, 0, readonlyVolume, cloneName,
4945                             &(curPtr->volCloneId));
4946             if (code) {
4947                 curPtr->volFlags &= ~CLONEVALID;
4948                 curPos++;
4949                 fprintf(STDERR, "Could not clone %s due to error %lu\n",
4950                         curPtr->volName, (unsigned long)code);
4951                 code = AFSVolEndTrans(aconn, tid, &rcode);
4952                 if (code)
4953                     fprintf(STDERR, "WARNING: could not end transaction\n");
4954                 continue;
4955             }
4956             VPRINT2("********** Cloned %s temporary %u\n", cloneName,
4957                     curPtr->volCloneId);
4958             code = AFSVolEndTrans(aconn, tid, &rcode);
4959             if (code || rcode) {
4960                 curPtr->volFlags &= ~CLONEVALID;
4961                 curPos++;
4962                 continue;
4963             }
4964
4965             curPos++;
4966         }
4967     }
4968     if (aconn)
4969         rx_DestroyConnection(aconn);
4970     return 0;
4971 }
4972
4973
4974 /*list all the volumes on <aserver> and <apart>. If all = 1, then all the
4975 * relevant fields of the volume are also returned. This is a heavy weight operation.*/
4976 int
4977 UV_ListVolumes(afs_int32 aserver, afs_int32 apart, int all,
4978                struct volintInfo **resultPtr, afs_int32 * size)
4979 {
4980     struct rx_connection *aconn;
4981     afs_int32 code = 0;
4982     volEntries volumeInfo;
4983
4984     code = 0;
4985     *size = 0;
4986     *resultPtr = (volintInfo *) 0;
4987     volumeInfo.volEntries_val = (volintInfo *) 0;       /*this hints the stub to allocate space */
4988     volumeInfo.volEntries_len = 0;
4989
4990     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
4991     code = AFSVolListVolumes(aconn, apart, all, &volumeInfo);
4992     if (code) {
4993         fprintf(STDERR,
4994                 "Could not fetch the list of volumes from the server\n");
4995     } else {
4996         *resultPtr = volumeInfo.volEntries_val;
4997         *size = volumeInfo.volEntries_len;
4998     }
4999
5000     if (aconn)
5001         rx_DestroyConnection(aconn);
5002     PrintError("", code);
5003     return code;
5004 }
5005
5006 /*------------------------------------------------------------------------
5007  * EXPORTED UV_XListVolumes
5008  *
5009  * Description:
5010  *      List the extended information for all the volumes on a particular
5011  *      File Server and partition.  We may either return the volume's ID
5012  *      or all of its extended information.
5013  *
5014  * Arguments:
5015  *      a_serverID         : Address of the File Server for which we want
5016  *                              extended volume info.
5017  *      a_partID           : Partition for which we want the extended
5018  *                              volume info.
5019  *      a_all              : If non-zero, fetch ALL the volume info,
5020  *                              otherwise just the volume ID.
5021  *      a_resultPP         : Ptr to the address of the area containing
5022  *                              the returned volume info.
5023  *      a_numEntsInResultP : Ptr for the value we set for the number of
5024  *                              entries returned.
5025  *
5026  * Returns:
5027  *      0 on success,
5028  *      Otherise, the return value of AFSVolXListVolumes.
5029  *
5030  * Environment:
5031  *      This routine is closely related to UV_ListVolumes, which returns
5032  *      only the standard level of detail on AFS volumes. It is a
5033  *      heavyweight operation, zipping through all the volume entries for
5034  *      a given server/partition.
5035  *
5036  * Side Effects:
5037  *      As advertised.
5038  *------------------------------------------------------------------------*/
5039
5040 int
5041 UV_XListVolumes(afs_int32 a_serverID, afs_int32 a_partID, int a_all,
5042                 struct volintXInfo **a_resultPP,
5043                 afs_int32 * a_numEntsInResultP)
5044 {
5045     struct rx_connection *rxConnP;      /*Ptr to the Rx connection involved */
5046     afs_int32 code;             /*Error code to return */
5047     volXEntries volumeXInfo;    /*Area for returned extended vol info */
5048
5049     /*
5050      * Set up our error code and the area for returned extended volume info.
5051      * We set the val field to a null pointer as a hint for the stub to
5052      * allocate space.
5053      */
5054     code = 0;
5055     *a_numEntsInResultP = 0;
5056     *a_resultPP = (volintXInfo *) 0;
5057     volumeXInfo.volXEntries_val = (volintXInfo *) 0;
5058     volumeXInfo.volXEntries_len = 0;
5059
5060     /*
5061      * Bind to the Volume Server port on the File Server machine in question,
5062      * then go for it.
5063      */
5064     rxConnP = UV_Bind(a_serverID, AFSCONF_VOLUMEPORT);
5065     code = AFSVolXListVolumes(rxConnP, a_partID, a_all, &volumeXInfo);
5066     if (code)
5067         fprintf(STDERR, "[UV_XListVolumes] Couldn't fetch volume list\n");
5068     else {
5069         /*
5070          * We got the info; pull out the pointer to where the results lie
5071          * and how many entries are there.
5072          */
5073         *a_resultPP = volumeXInfo.volXEntries_val;
5074         *a_numEntsInResultP = volumeXInfo.volXEntries_len;
5075     }
5076
5077     /*
5078      * If we got an Rx connection, throw it away.
5079      */
5080     if (rxConnP)
5081         rx_DestroyConnection(rxConnP);
5082
5083     PrintError("", code);
5084     return (code);
5085 }                               /*UV_XListVolumes */
5086
5087 /* get all the information about volume <volid> on <aserver> and <apart> */
5088 int
5089 UV_ListOneVolume(afs_int32 aserver, afs_int32 apart, afs_int32 volid,
5090                  struct volintInfo **resultPtr)
5091 {
5092     struct rx_connection *aconn;
5093     afs_int32 code = 0;
5094     volEntries volumeInfo;
5095
5096     code = 0;
5097
5098     *resultPtr = (volintInfo *) 0;
5099     volumeInfo.volEntries_val = (volintInfo *) 0;       /*this hints the stub to allocate space */
5100     volumeInfo.volEntries_len = 0;
5101
5102     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5103     code = AFSVolListOneVolume(aconn, apart, volid, &volumeInfo);
5104     if (code) {
5105         fprintf(STDERR,
5106                 "Could not fetch the information about volume %lu from the server\n",
5107                 (unsigned long)volid);
5108     } else {
5109         *resultPtr = volumeInfo.volEntries_val;
5110
5111     }
5112
5113     if (aconn)
5114         rx_DestroyConnection(aconn);
5115     PrintError("", code);
5116     return code;
5117 }
5118
5119 /*------------------------------------------------------------------------
5120  * EXPORTED UV_XListOneVolume
5121  *
5122  * Description:
5123  *      List the extended information for a volume on a particular File
5124  *      Server and partition.
5125  *
5126  * Arguments:
5127  *      a_serverID         : Address of the File Server for which we want
5128  *                              extended volume info.
5129  *      a_partID           : Partition for which we want the extended
5130  *                              volume info.
5131  *      a_volID            : Volume ID for which we want the info.
5132  *      a_resultPP         : Ptr to the address of the area containing
5133  *                              the returned volume info.
5134  *
5135  * Returns:
5136  *      0 on success,
5137  *      Otherise, the return value of AFSVolXListOneVolume.
5138  *
5139  * Environment:
5140  *      This routine is closely related to UV_ListOneVolume, which returns
5141  *      only the standard level of detail on the chosen AFS volume.
5142  *
5143  * Side Effects:
5144  *      As advertised.
5145  *------------------------------------------------------------------------*/
5146
5147 int
5148 UV_XListOneVolume(afs_int32 a_serverID, afs_int32 a_partID, afs_int32 a_volID,
5149                   struct volintXInfo **a_resultPP)
5150 {
5151     struct rx_connection *rxConnP;      /*Rx connection to Volume Server */
5152     afs_int32 code;             /*Error code */
5153     volXEntries volumeXInfo;    /*Area for returned info */
5154
5155     /*
5156      * Set up our error code, and the area we're in which we are returning
5157      * the info.  Setting the val field to a null pointer tells the stub
5158      * to allocate space for us.
5159      */
5160     code = 0;
5161     *a_resultPP = (volintXInfo *) 0;
5162     volumeXInfo.volXEntries_val = (volintXInfo *) 0;
5163     volumeXInfo.volXEntries_len = 0;
5164
5165     /*
5166      * Bind to the Volume Server port on the File Server machine in question,
5167      * then go for it.
5168      */
5169     rxConnP = UV_Bind(a_serverID, AFSCONF_VOLUMEPORT);
5170     code = AFSVolXListOneVolume(rxConnP, a_partID, a_volID, &volumeXInfo);
5171     if (code)
5172         fprintf(STDERR,
5173                 "[UV_XListOneVolume] Couldn't fetch the volume information\n");
5174     else
5175         /*
5176          * We got the info; pull out the pointer to where the results lie.
5177          */
5178         *a_resultPP = volumeXInfo.volXEntries_val;
5179
5180     /*
5181      * If we got an Rx connection, throw it away.
5182      */
5183     if (rxConnP)
5184         rx_DestroyConnection(rxConnP);
5185
5186     PrintError("", code);
5187     return code;
5188 }
5189
5190 /* CheckVolume()
5191  *    Given a volume we read from a partition, check if it is 
5192  *    represented in the VLDB correctly.
5193  * 
5194  *    The VLDB is looked up by the RW volume id (not its name).
5195  *    The RW contains the true name of the volume (BK and RO set
5196  *       the name in the VLDB only on creation of the VLDB entry).
5197  *    We want rules strict enough that when we check all volumes
5198  *       on one partition, it does not need to be done again. IE:
5199  *       two volumes on different partitions won't constantly 
5200  *       change a VLDB entry away from what the other set.
5201  *    For RW and BK volumes, we will always check the VLDB to see 
5202  *       if the two exist on the server/partition. May seem redundant,
5203  *       but this is an easy check of the VLDB. IE: if the VLDB entry
5204  *       says the BK exists but no BK volume is there, we will detect
5205  *       this when we check the RW volume.
5206  *    VLDB entries are locked only when a change needs to be done.
5207  *    Output changed to look a lot like the "vos syncserv" otuput.
5208  */
5209 static afs_int32
5210 CheckVolume(volintInfo * volumeinfo, afs_int32 aserver, afs_int32 apart,
5211             afs_int32 * modentry, afs_uint32 * maxvolid)
5212 {
5213     int idx, j;
5214     afs_int32 code, error = 0;
5215     struct nvldbentry entry, storeEntry;
5216     char pname[10];
5217     int pass = 0, islocked = 0, createentry, addvolume, modified, mod;
5218     afs_int32 rwvolid;
5219
5220     if (modentry)
5221         *modentry = 0;
5222     rwvolid =
5223         ((volumeinfo->type ==
5224           RWVOL) ? volumeinfo->volid : volumeinfo->parentID);
5225
5226   retry:
5227     /* Check to see if the VLDB is ok without locking it (pass 1).
5228      * If it will change, then lock the VLDB entry, read it again,
5229      * then make the changes to it (pass 2).
5230      */
5231     if (++pass == 2) {
5232         code = ubik_Call(VL_SetLock, cstruct, 0, rwvolid, RWVOL, VLOP_DELETE);
5233         if (code) {
5234             fprintf(STDERR, "Could not lock VLDB entry for %lu\n",
5235                     (unsigned long)rwvolid);
5236             ERROR_EXIT(code);
5237         }
5238         islocked = 1;
5239     }
5240
5241     createentry = 0;            /* Do we need to create a VLDB entry */
5242     addvolume = 0;              /* Add this volume to the VLDB entry */
5243     modified = 0;               /* The VLDB entry was modified */
5244
5245     /* Read the entry from VLDB by its RW volume id */
5246     code = VLDB_GetEntryByID(rwvolid, RWVOL, &entry);
5247     if (code) {
5248         if (code != VL_NOENT) {
5249             fprintf(STDOUT,
5250                     "Could not retreive the VLDB entry for volume %lu \n",
5251                     (unsigned long)rwvolid);
5252             ERROR_EXIT(code);
5253         }
5254
5255         memset(&entry, 0, sizeof(entry));
5256         vsu_ExtractName(entry.name, volumeinfo->name);  /* Store name of RW */
5257
5258         createentry = 1;
5259     } else {
5260         MapHostToNetwork(&entry);
5261     }
5262
5263     if (verbose && (pass == 1)) {
5264         fprintf(STDOUT, "_______________________________\n");
5265         fprintf(STDOUT, "\n-- status before -- \n");
5266         if (createentry) {
5267             fprintf(STDOUT, "\n**does not exist**\n");
5268         } else {
5269             if ((entry.flags & RW_EXISTS) || (entry.flags & RO_EXISTS)
5270                 || (entry.flags & BACK_EXISTS))
5271                 EnumerateEntry(&entry);
5272         }
5273         fprintf(STDOUT, "\n");
5274     }
5275
5276     if (volumeinfo->type == RWVOL) {    /* RW volume exists */
5277         if (createentry) {
5278             idx = 0;
5279             entry.nServers = 1;
5280             addvolume++;
5281         } else {
5282             /* Check existence of RW and BK volumes */
5283             code = CheckVldbRWBK(&entry, &mod);
5284             if (code)
5285                 ERROR_EXIT(code);
5286             if (mod)
5287                 modified++;
5288
5289             idx = Lp_GetRwIndex(&entry);
5290             if (idx == -1) {    /* RW index not found in the VLDB entry */
5291                 idx = entry.nServers;   /* put it into next index */
5292                 entry.nServers++;
5293                 addvolume++;
5294             } else {            /* RW index found in the VLDB entry. */
5295                 /* Verify if this volume's location matches where the VLDB says it is */
5296                 if (!Lp_Match(aserver, apart, &entry)) {
5297                     if (entry.flags & RW_EXISTS) {
5298                         /* The RW volume exists elsewhere - report this one a duplicate */
5299                         if (pass == 1) {
5300                             MapPartIdIntoName(apart, pname);
5301                             fprintf(STDERR,
5302                                     "*** Warning: Orphaned RW volume %lu exists on %s %s\n",
5303                                     (unsigned long)rwvolid,
5304                                     hostutil_GetNameByINet(aserver), pname);
5305                             MapPartIdIntoName(entry.serverPartition[idx],
5306                                               pname);
5307                             fprintf(STDERR,
5308                                     "    VLDB reports RW volume %lu exists on %s %s\n",
5309                                     (unsigned long)rwvolid,
5310                                     hostutil_GetNameByINet(entry.
5311                                                            serverNumber[idx]),
5312                                     pname);
5313                         }
5314                     } else {
5315                         /* The RW volume does not exist - have VLDB point to this one */
5316                         addvolume++;
5317
5318                         /* Check for orphaned BK volume on old partition */
5319                         if (entry.flags & BACK_EXISTS) {
5320                             if (pass == 1) {
5321                                 MapPartIdIntoName(entry.serverPartition[idx],
5322                                                   pname);
5323                                 fprintf(STDERR,
5324                                         "*** Warning: Orphaned BK volume %u exists on %s %s\n",
5325                                         entry.volumeId[BACKVOL],
5326                                         hostutil_GetNameByINet(entry.
5327                                                                serverNumber
5328                                                                [idx]), pname);
5329                                 MapPartIdIntoName(apart, pname);
5330                                 fprintf(STDERR,
5331                                         "    VLDB reports its RW volume %lu exists on %s %s\n",
5332                                         (unsigned long)rwvolid,
5333                                         hostutil_GetNameByINet(aserver),
5334                                         pname);
5335                             }
5336                         }
5337                     }
5338                 } else {
5339                     /* Volume location matches the VLDB location */
5340                     if ((volumeinfo->backupID && !entry.volumeId[BACKVOL])
5341                         || (volumeinfo->cloneID && !entry.volumeId[ROVOL])
5342                         ||
5343                         (strncmp
5344                          (entry.name, volumeinfo->name,
5345                           VOLSER_OLDMAXVOLNAME) != 0)) {
5346                         addvolume++;
5347                     }
5348                 }
5349             }
5350         }
5351
5352         if (addvolume) {
5353             entry.flags |= RW_EXISTS;
5354             entry.volumeId[RWVOL] = rwvolid;
5355             if (!entry.volumeId[BACKVOL])
5356                 entry.volumeId[BACKVOL] = volumeinfo->backupID;
5357             if (!entry.volumeId[ROVOL])
5358                 entry.volumeId[ROVOL] = volumeinfo->cloneID;
5359
5360             entry.serverFlags[idx] = ITSRWVOL;
5361             entry.serverNumber[idx] = aserver;
5362             entry.serverPartition[idx] = apart;
5363             strncpy(entry.name, volumeinfo->name, VOLSER_OLDMAXVOLNAME);
5364
5365             modified++;
5366
5367             /* One last check - to update BK if need to */
5368             code = CheckVldbRWBK(&entry, &mod);
5369             if (code)
5370                 ERROR_EXIT(code);
5371             if (mod)
5372                 modified++;
5373         }
5374     }
5375
5376     else if (volumeinfo->type == BACKVOL) {     /* A BK volume */
5377         if (createentry) {
5378             idx = 0;
5379             entry.nServers = 1;
5380             addvolume++;
5381         } else {
5382             /* Check existence of RW and BK volumes */
5383             code = CheckVldbRWBK(&entry, &mod);
5384             if (code)
5385                 ERROR_EXIT(code);
5386             if (mod)
5387                 modified++;
5388
5389             idx = Lp_GetRwIndex(&entry);
5390             if (idx == -1) {    /* RW index not found in the VLDB entry */
5391                 idx = entry.nServers;   /* Put it into next index */
5392                 entry.nServers++;
5393                 addvolume++;
5394             } else {            /* RW index found in the VLDB entry */
5395                 /* Verify if this volume's location matches where the VLDB says it is */
5396                 if (!Lp_Match(aserver, apart, &entry)) {
5397                     /* VLDB says RW and/or BK is elsewhere - report this BK volume orphaned */
5398                     if (pass == 1) {
5399                         MapPartIdIntoName(apart, pname);
5400                         fprintf(STDERR,
5401                                 "*** Warning: Orphaned BK volume %lu exists on %s %s\n",
5402                                 (unsigned long)volumeinfo->volid,
5403                                 hostutil_GetNameByINet(aserver), pname);
5404                         MapPartIdIntoName(entry.serverPartition[idx], pname);
5405                         fprintf(STDERR,
5406                                 "    VLDB reports its RW/BK volume %lu exists on %s %s\n",
5407                                 (unsigned long)rwvolid,
5408                                 hostutil_GetNameByINet(entry.
5409                                                        serverNumber[idx]),
5410                                 pname);
5411                     }
5412                 } else {
5413                     if (volumeinfo->volid != entry.volumeId[BACKVOL]) {
5414                         if (!(entry.flags & BACK_EXISTS)) {
5415                             addvolume++;
5416                         } else if (volumeinfo->volid >
5417                                    entry.volumeId[BACKVOL]) {
5418                             addvolume++;
5419
5420                             if (pass == 1) {
5421                                 MapPartIdIntoName(entry.serverPartition[idx],
5422                                                   pname);
5423                                 fprintf(STDERR,
5424                                         "*** Warning: Orphaned BK volume %u exists on %s %s\n",
5425                                         entry.volumeId[BACKVOL],
5426                                         hostutil_GetNameByINet(aserver),
5427                                         pname);
5428                                 fprintf(STDERR,
5429                                         "    VLDB reports its BK volume ID is %lu\n",
5430                                         (unsigned long)volumeinfo->volid);
5431                             }
5432                         } else {
5433                             if (pass == 1) {
5434                                 MapPartIdIntoName(entry.serverPartition[idx],
5435                                                   pname);
5436                                 fprintf(STDERR,
5437                                         "*** Warning: Orphaned BK volume %lu exists on %s %s\n",
5438                                         (unsigned long)volumeinfo->volid,
5439                                         hostutil_GetNameByINet(aserver),
5440                                         pname);
5441                                 fprintf(STDERR,
5442                                         "    VLDB reports its BK volume ID is %u\n",
5443                                         entry.volumeId[BACKVOL]);
5444                             }
5445                         }
5446                     } else if (!entry.volumeId[BACKVOL]) {
5447                         addvolume++;
5448                     }
5449                 }
5450             }
5451         }
5452         if (addvolume) {
5453             entry.flags |= BACK_EXISTS;
5454             entry.volumeId[RWVOL] = rwvolid;
5455             entry.volumeId[BACKVOL] = volumeinfo->volid;
5456
5457             entry.serverNumber[idx] = aserver;
5458             entry.serverPartition[idx] = apart;
5459             entry.serverFlags[idx] = ITSRWVOL;
5460
5461             modified++;
5462         }
5463     }
5464
5465     else if (volumeinfo->type == ROVOL) {       /* A RO volume */
5466         if (volumeinfo->volid == entry.volumeId[ROVOL]) {
5467             /* This is a quick check to see if the RO entry exists in the 
5468              * VLDB so we avoid the CheckVldbRO() call (which checks if each
5469              * RO volume listed in the VLDB exists).
5470              */
5471             idx = Lp_ROMatch(aserver, apart, &entry) - 1;
5472             if (idx == -1) {
5473                 idx = entry.nServers;
5474                 entry.nServers++;
5475                 addvolume++;
5476             } else {
5477                 if (!(entry.flags & RO_EXISTS)) {
5478                     addvolume++;
5479                 }
5480             }
5481         } else {
5482             /* Before we correct the VLDB entry, make sure all the
5483              * ROs listed in the VLDB exist.
5484              */
5485             code = CheckVldbRO(&entry, &mod);
5486             if (code)
5487                 ERROR_EXIT(code);
5488             if (mod)
5489                 modified++;
5490
5491             if (!(entry.flags & RO_EXISTS)) {
5492                 /* No RO exists in the VLDB entry - add this one */
5493                 idx = entry.nServers;
5494                 entry.nServers++;
5495                 addvolume++;
5496             } else if (volumeinfo->volid > entry.volumeId[ROVOL]) {
5497                 /* The volume headers's RO ID does not match that in the VLDB entry,
5498                  * and the vol hdr's ID is greater (implies more recent). So delete
5499                  * all the RO volumes listed in VLDB entry and add this volume.
5500                  */
5501                 for (j = 0; j < entry.nServers; j++) {
5502                     if (entry.serverFlags[j] & ITSROVOL) {
5503                         /* Verify this volume exists and print message we are orphaning it */
5504                         if (pass == 1) {
5505                             MapPartIdIntoName(apart, pname);
5506                             fprintf(STDERR,
5507                                     "*** Warning: Orphaned RO volume %u exists on %s %s\n",
5508                                     entry.volumeId[ROVOL],
5509                                     hostutil_GetNameByINet(entry.
5510                                                            serverNumber[j]),
5511                                     pname);
5512                             fprintf(STDERR,
5513                                     "    VLDB reports its RO volume ID is %lu\n",
5514                                     (unsigned long)volumeinfo->volid);
5515                         }
5516
5517                         Lp_SetRWValue(entry, entry.serverNumber[idx],
5518                                       entry.serverPartition[idx], 0L, 0L);
5519                         entry.nServers--;
5520                         modified++;
5521                         j--;
5522                     }
5523                 }
5524
5525                 idx = entry.nServers;
5526                 entry.nServers++;
5527                 addvolume++;
5528             } else if (volumeinfo->volid < entry.volumeId[ROVOL]) {
5529                 /* The volume headers's RO ID does not match that in the VLDB entry,
5530                  * and the vol hdr's ID is lower (implies its older). So orphan it.
5531                  */
5532                 if (pass == 1) {
5533                     MapPartIdIntoName(apart, pname);
5534                     fprintf(STDERR,
5535                             "*** Warning: Orphaned RO volume %lu exists on %s %s\n",
5536                             (unsigned long)volumeinfo->volid,
5537                             hostutil_GetNameByINet(aserver), pname);
5538                     fprintf(STDERR,
5539                             "    VLDB reports its RO volume ID is %u\n",
5540                             entry.volumeId[ROVOL]);
5541                 }
5542             } else {
5543                 /* The RO volume ID in the volume header match that in the VLDB entry,
5544                  * and there exist RO volumes in the VLDB entry. See if any of them
5545                  * are this one. If not, then we add it.
5546                  */
5547                 idx = Lp_ROMatch(aserver, apart, &entry) - 1;
5548                 if (idx == -1) {
5549                     idx = entry.nServers;
5550                     entry.nServers++;
5551                     addvolume++;
5552                 }
5553             }
5554         }
5555
5556         if (addvolume) {
5557             entry.flags |= RO_EXISTS;
5558             entry.volumeId[RWVOL] = rwvolid;
5559             entry.volumeId[ROVOL] = volumeinfo->volid;
5560
5561             entry.serverNumber[idx] = aserver;
5562             entry.serverPartition[idx] = apart;
5563             entry.serverFlags[idx] = ITSROVOL;
5564
5565             modified++;
5566         }
5567     }
5568
5569     /* Remember largest volume id */
5570     if (entry.volumeId[ROVOL] > *maxvolid)
5571         *maxvolid = entry.volumeId[ROVOL];
5572     if (entry.volumeId[BACKVOL] > *maxvolid)
5573         *maxvolid = entry.volumeId[BACKVOL];
5574     if (entry.volumeId[RWVOL] > *maxvolid)
5575         *maxvolid = entry.volumeId[RWVOL];
5576
5577     if (modified) {
5578         MapNetworkToHost(&entry, &storeEntry);
5579
5580         if (createentry) {
5581             code = VLDB_CreateEntry(&storeEntry);
5582             if (code) {
5583                 fprintf(STDOUT,
5584                         "Could not create a VLDB entry for the volume %lu\n",
5585                         (unsigned long)rwvolid);
5586                 ERROR_EXIT(code);
5587             }
5588         } else {
5589             if (pass == 1)
5590                 goto retry;
5591             code =
5592                 VLDB_ReplaceEntry(rwvolid, RWVOL, &storeEntry,
5593                                   LOCKREL_OPCODE | LOCKREL_AFSID |
5594                                   LOCKREL_TIMESTAMP);
5595             if (code) {
5596                 fprintf(STDERR, "Could not update entry for %lu\n",
5597                         (unsigned long)rwvolid);
5598                 ERROR_EXIT(code);
5599             }
5600         }
5601         if (modentry)
5602             *modentry = modified;
5603     } else if (pass == 2) {
5604         code =
5605             ubik_Call(VL_ReleaseLock, cstruct, 0, rwvolid, RWVOL,
5606                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5607         if (code) {
5608             PrintError("Could not unlock VLDB entry ", code);
5609         }
5610     }
5611
5612     if (verbose) {
5613         fprintf(STDOUT, "-- status after --\n");
5614         if (modified)
5615             EnumerateEntry(&entry);
5616         else
5617             fprintf(STDOUT, "\n**no change**\n");
5618     }
5619
5620   error_exit:
5621     VPRINT("\n_______________________________\n");
5622     return (error);
5623 }
5624
5625 int
5626 sortVolumes(const void *a, const void *b)
5627 {
5628     volintInfo *v1 = (volintInfo *) a;
5629     volintInfo *v2 = (volintInfo *) b;
5630     afs_int32 rwvolid1, rwvolid2;
5631
5632     rwvolid1 = ((v1->type == RWVOL) ? v1->volid : v1->parentID);
5633     rwvolid2 = ((v2->type == RWVOL) ? v2->volid : v2->parentID);
5634
5635     if (rwvolid1 > rwvolid2)
5636         return -1;              /* lower RW id goes first */
5637     if (rwvolid1 < rwvolid2)
5638         return 1;
5639
5640     if (v1->type == RWVOL)
5641         return -1;              /* RW vols go first */
5642     if (v2->type == RWVOL)
5643         return 1;
5644
5645     if ((v1->type == BACKVOL) && (v2->type == ROVOL))
5646         return -1;              /* BK vols next */
5647     if ((v1->type == ROVOL) && (v2->type == BACKVOL))
5648         return 1;
5649
5650     if (v1->volid < v2->volid)
5651         return 1;               /* larger volids first */
5652     if (v1->volid > v2->volid)
5653         return -1;
5654     return 0;
5655 }
5656
5657 /* UV_SyncVolume()
5658  *      Synchronise <aserver> <apart>(if flags = 1) <avolid>.
5659  *      Synchronize an individual volume against a sever and partition.
5660  *      Checks the VLDB entry (similar to syncserv) as well as checks
5661  *      if the volume exists on specified servers (similar to syncvldb).
5662  */
5663 int
5664 UV_SyncVolume(afs_int32 aserver, afs_int32 apart, char *avolname, int flags)
5665 {
5666     struct rx_connection *aconn = 0;
5667     afs_int32 j, k, code, vcode, error = 0;
5668     afs_int32 tverbose, mod, modified = 0;
5669     struct nvldbentry vldbentry;
5670     afs_int32 volumeid = 0;
5671     volEntries volumeInfo;
5672     struct partList PartList;
5673     afs_int32 pcnt, rv;
5674     afs_int32 maxvolid = 0;
5675
5676     volumeInfo.volEntries_val = (volintInfo *) 0;
5677     volumeInfo.volEntries_len = 0;
5678
5679     if (!aserver && flags) {
5680         /* fprintf(STDERR,"Partition option requires a server option\n"); */
5681         ERROR_EXIT(EINVAL);
5682     }
5683
5684     /* Turn verbose logging off and do our own verbose logging */
5685     tverbose = verbose;
5686     verbose = 0;
5687
5688     /* Read the VLDB entry */
5689     vcode = VLDB_GetEntryByName(avolname, &vldbentry);
5690     if (vcode && (vcode != VL_NOENT)) {
5691         fprintf(STDERR, "Could not access the VLDB for volume %s\n",
5692                 avolname);
5693         ERROR_EXIT(vcode);
5694     } else if (!vcode) {
5695         MapHostToNetwork(&vldbentry);
5696     }
5697
5698     if (tverbose) {
5699         fprintf(STDOUT, "Processing VLDB entry %s ...\n", avolname);
5700         fprintf(STDOUT, "_______________________________\n");
5701         fprintf(STDOUT, "\n-- status before -- \n");
5702         if (vcode) {
5703             fprintf(STDOUT, "\n**does not exist**\n");
5704         } else {
5705             if ((vldbentry.flags & RW_EXISTS) || (vldbentry.flags & RO_EXISTS)
5706                 || (vldbentry.flags & BACK_EXISTS))
5707                 EnumerateEntry(&vldbentry);
5708         }
5709         fprintf(STDOUT, "\n");
5710     }
5711
5712     /* Verify that all of the VLDB entries exist on the repective servers 
5713      * and partitions (this does not require that avolname be a volume ID).
5714      * Equivalent to a syncserv.
5715      */
5716     if (!vcode) {
5717         code = CheckVldb(&vldbentry, &mod);
5718         if (code) {
5719             fprintf(STDERR, "Could not process VLDB entry for volume %s\n",
5720                     vldbentry.name);
5721             ERROR_EXIT(code);
5722         }
5723         if (mod)
5724             modified++;
5725     }
5726
5727     /* If aserver is given, we will search for the desired volume on it */
5728     if (aserver) {
5729         /* Generate array of partitions on the server that we will check */
5730         if (!flags) {
5731             code = UV_ListPartitions(aserver, &PartList, &pcnt);
5732             if (code) {
5733                 fprintf(STDERR,
5734                         "Could not fetch the list of partitions from the server\n");
5735                 ERROR_EXIT(code);
5736             }
5737         } else {
5738             PartList.partId[0] = apart;
5739             pcnt = 1;
5740         }
5741
5742         aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5743
5744         /* If a volume ID were given, search for it on each partition */
5745         if ((volumeid = atol(avolname))) {
5746             for (j = 0; j < pcnt; j++) {
5747                 code =
5748                     AFSVolListOneVolume(aconn, PartList.partId[j], volumeid,
5749                                         &volumeInfo);
5750                 if (code) {
5751                     if (code != ENODEV) {
5752                         fprintf(STDERR, "Could not query server\n");
5753                         ERROR_EXIT(code);
5754                     }
5755                 } else {
5756                     /* Found one, sync it with VLDB entry */
5757                     code =
5758                         CheckVolume(volumeInfo.volEntries_val, aserver,
5759                                     PartList.partId[j], &mod, &maxvolid);
5760                     if (code)
5761                         ERROR_EXIT(code);
5762                     if (mod)
5763                         modified++;
5764                 }
5765
5766                 if (volumeInfo.volEntries_val)
5767                     free(volumeInfo.volEntries_val);
5768                 volumeInfo.volEntries_val = (volintInfo *) 0;
5769                 volumeInfo.volEntries_len = 0;
5770             }
5771         }
5772
5773         /* Check to see if the RW, BK, and RO IDs exist on any
5774          * partitions. We get the volume IDs from the VLDB.
5775          */
5776         rv = 1;                 /* Read the VLDB entry ? */
5777         for (j = 0; j < MAXTYPES; j++) {        /* for RW, RO, and BK IDs */
5778             if (rv) {
5779                 vcode = VLDB_GetEntryByName(avolname, &vldbentry);
5780                 if (vcode) {
5781                     if (vcode == VL_NOENT)
5782                         break;
5783                     fprintf(STDERR,
5784                             "Could not access the VLDB for volume %s\n",
5785                             avolname);
5786                     ERROR_EXIT(vcode);
5787                 }
5788                 rv = 0;
5789             }
5790
5791             if (vldbentry.volumeId[j] == 0)
5792                 continue;
5793
5794             for (k = 0; k < pcnt; k++) {        /* For each partition */
5795                 volumeInfo.volEntries_val = (volintInfo *) 0;
5796                 volumeInfo.volEntries_len = 0;
5797                 code =
5798                     AFSVolListOneVolume(aconn, PartList.partId[k],
5799                                         vldbentry.volumeId[j], &volumeInfo);
5800                 if (code) {
5801                     if (code != ENODEV) {
5802                         fprintf(STDERR, "Could not query server\n");
5803                         ERROR_EXIT(code);
5804                     }
5805                 } else {
5806                     /* Found one, sync it with VLDB entry */
5807                     code =
5808                         CheckVolume(volumeInfo.volEntries_val, aserver,
5809                                     PartList.partId[k], &mod, &maxvolid);
5810                     if (code)
5811                         ERROR_EXIT(code);
5812                     if (mod)
5813                         modified++, rv++;
5814                 }
5815
5816                 if (volumeInfo.volEntries_val)
5817                     free(volumeInfo.volEntries_val);
5818                 volumeInfo.volEntries_val = (volintInfo *) 0;
5819                 volumeInfo.volEntries_len = 0;
5820             }
5821         }
5822     }
5823
5824     /* if (aserver) */
5825     /* If verbose output, print a summary of what changed */
5826     if (tverbose) {
5827         fprintf(STDOUT, "-- status after --\n");
5828         code = VLDB_GetEntryByName(avolname, &vldbentry);
5829         if (code && (code != VL_NOENT)) {
5830             fprintf(STDERR, "Could not access the VLDB for volume %s\n",
5831                     avolname);
5832             ERROR_EXIT(code);
5833         }
5834         if (modified && (code == VL_NOENT)) {
5835             fprintf(STDOUT, "\n**entry deleted**\n");
5836         } else if (modified) {
5837             EnumerateEntry(&vldbentry);
5838         } else {
5839             fprintf(STDOUT, "\n**no change**\n");
5840         }
5841         fprintf(STDOUT, "\n_______________________________\n");
5842     }
5843
5844   error_exit:
5845     /* Now check if the maxvolid is larger than that stored in the VLDB */
5846     if (maxvolid) {
5847         afs_int32 maxvldbid = 0;
5848         code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 0, &maxvldbid);
5849         if (code) {
5850             fprintf(STDERR,
5851                     "Could not get the highest allocated volume id from the VLDB\n");
5852             if (!error)
5853                 error = code;
5854         } else if (maxvolid > maxvldbid) {
5855             afs_uint32 id, nid;
5856             id = maxvolid - maxvldbid + 1;
5857             code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, id, &nid);
5858             if (code) {
5859                 fprintf(STDERR,
5860                         "Error in increasing highest allocated volume id in VLDB\n");
5861                 if (!error)
5862                     error = code;
5863             }
5864         }
5865     }
5866
5867     verbose = tverbose;
5868     if (verbose) {
5869         if (error)
5870             fprintf(STDOUT, "...error encountered");
5871         else
5872             fprintf(STDOUT, "...done entry\n");
5873     }
5874     if (aconn)
5875         rx_DestroyConnection(aconn);
5876     if (volumeInfo.volEntries_val)
5877         free(volumeInfo.volEntries_val);
5878
5879     PrintError("", error);
5880     return error;
5881 }
5882
5883 /* UV_SyncVldb()
5884  *      Synchronise vldb with the file server <aserver> and,
5885  *      optionally, <apart>.
5886  */
5887 int
5888 UV_SyncVldb(afs_int32 aserver, afs_int32 apart, int flags, int force)
5889 {
5890     struct rx_connection *aconn;
5891     afs_int32 code, error = 0;
5892     int i, j, pfail;
5893     volEntries volumeInfo;
5894     struct partList PartList;
5895     afs_int32 pcnt;
5896     char pname[10];
5897     volintInfo *vi;
5898     afs_int32 failures = 0, modifications = 0, tentries = 0;
5899     afs_int32 modified;
5900     afs_uint32 maxvolid = 0;
5901
5902     volumeInfo.volEntries_val = (volintInfo *) 0;
5903     volumeInfo.volEntries_len = 0;
5904
5905     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5906
5907     /* Generate array of partitions to check */
5908     if (!flags) {
5909         code = UV_ListPartitions(aserver, &PartList, &pcnt);
5910         if (code) {
5911             fprintf(STDERR,
5912                     "Could not fetch the list of partitions from the server\n");
5913             ERROR_EXIT(code);
5914         }
5915     } else {
5916         PartList.partId[0] = apart;
5917         pcnt = 1;
5918     }
5919
5920     VPRINT("Processing volume entries ...\n");
5921
5922     /* Step through the array of partitions */
5923     for (i = 0; i < pcnt; i++) {
5924         apart = PartList.partId[i];
5925         MapPartIdIntoName(apart, pname);
5926
5927         volumeInfo.volEntries_val = (volintInfo *) 0;
5928         volumeInfo.volEntries_len = 0;
5929         code = AFSVolListVolumes(aconn, apart, 1, &volumeInfo);
5930         if (code) {
5931             fprintf(STDERR,
5932                     "Could not fetch the list of volumes from the server\n");
5933             ERROR_EXIT(code);
5934         }
5935
5936         /* May want to sort the entries: RW, BK (high to low), RO (high to low) */
5937         qsort((char *)volumeInfo.volEntries_val, volumeInfo.volEntries_len,
5938               sizeof(volintInfo), sortVolumes);
5939
5940         pfail = 0;
5941         for (vi = volumeInfo.volEntries_val, j = 0;
5942              j < volumeInfo.volEntries_len; j++, vi++) {
5943             if (!vi->status)
5944                 continue;
5945
5946             tentries++;
5947
5948             if (verbose) {
5949                 fprintf(STDOUT,
5950                         "Processing volume entry %d: %s (%lu) on server %s %s...\n",
5951                         j + 1, vi->name, (unsigned long)vi->volid,
5952                         hostutil_GetNameByINet(aserver), pname);
5953                 fflush(STDOUT);
5954             }
5955
5956             code = CheckVolume(vi, aserver, apart, &modified, &maxvolid);
5957             if (code) {
5958                 PrintError("", code);
5959                 failures++;
5960                 pfail++;
5961             } else if (modified) {
5962                 modifications++;
5963             }
5964
5965             if (verbose) {
5966                 if (code) {
5967                     fprintf(STDOUT, "...error encountered\n\n");
5968                 } else {
5969                     fprintf(STDOUT, "...done entry %d\n\n", j + 1);
5970                 }
5971             }
5972         }
5973
5974         if (pfail) {
5975             fprintf(STDERR,
5976                     "Could not process entries on server %s partition %s\n",
5977                     hostutil_GetNameByINet(aserver), pname);
5978         }
5979         if (volumeInfo.volEntries_val) {
5980             free(volumeInfo.volEntries_val);
5981             volumeInfo.volEntries_val = 0;
5982         }
5983
5984     }                           /* thru all partitions */
5985
5986     VPRINT3("Total entries: %u, Failed to process %d, Changed %d\n", tentries,
5987             failures, modifications);
5988
5989   error_exit:
5990     /* Now check if the maxvolid is larger than that stored in the VLDB */
5991     if (maxvolid) {
5992         afs_uint32 maxvldbid = 0;
5993         code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, 0, &maxvldbid);
5994         if (code) {
5995             fprintf(STDERR,
5996                     "Could not get the highest allocated volume id from the VLDB\n");
5997             if (!error)
5998                 error = code;
5999         } else if (maxvolid > maxvldbid) {
6000             afs_uint32 id, nid;
6001             id = maxvolid - maxvldbid + 1;
6002             code = ubik_Call(VL_GetNewVolumeId, cstruct, 0, id, &nid);
6003             if (code) {
6004                 fprintf(STDERR,
6005                         "Error in increasing highest allocated volume id in VLDB\n");
6006                 if (!error)
6007                     error = code;
6008             }
6009         }
6010     }
6011
6012     if (aconn)
6013         rx_DestroyConnection(aconn);
6014     if (volumeInfo.volEntries_val)
6015         free(volumeInfo.volEntries_val);
6016     PrintError("", error);
6017     return (error);
6018 }
6019
6020 /* VolumeExists()
6021  *      Determine if a volume exists on a server and partition.
6022  *      Try creating a transaction on the volume. If we can,
6023  *      the volume exists, if not, then return the error code.
6024  *      Some error codes mean the volume is unavailable but
6025  *      still exists - so we catch these error codes.
6026  */
6027 afs_int32
6028 VolumeExists(afs_int32 server, afs_int32 partition, afs_int32 volumeid)
6029 {
6030     struct rx_connection *conn = (struct rx_connection *)0;
6031     afs_int32 code = -1;
6032     volEntries volumeInfo;
6033
6034     conn = UV_Bind(server, AFSCONF_VOLUMEPORT);
6035     if (conn) {
6036         volumeInfo.volEntries_val = (volintInfo *) 0;
6037         volumeInfo.volEntries_len = 0;
6038         code = AFSVolListOneVolume(conn, partition, volumeid, &volumeInfo);
6039         if (volumeInfo.volEntries_val)
6040             free(volumeInfo.volEntries_val);
6041         if (code == VOLSERILLEGAL_PARTITION)
6042             code = ENODEV;
6043         rx_DestroyConnection(conn);
6044     }
6045     return code;
6046 }
6047
6048 /* CheckVldbRWBK()
6049  *
6050  */
6051 afs_int32
6052 CheckVldbRWBK(struct nvldbentry * entry, afs_int32 * modified)
6053 {
6054     int modentry = 0;
6055     int idx;
6056     afs_int32 code, error = 0;
6057     char pname[10];
6058
6059     if (modified)
6060         *modified = 0;
6061     idx = Lp_GetRwIndex(entry);
6062
6063     /* Check to see if the RW volume exists and set the RW_EXISTS
6064      * flag accordingly.
6065      */
6066     if (idx == -1) {            /* Did not find a RW entry */
6067         if (entry->flags & RW_EXISTS) { /* ... yet entry says RW exists */
6068             entry->flags &= ~RW_EXISTS; /* ... so say RW does not exist */
6069             modentry++;
6070         }
6071     } else {
6072         code =
6073             VolumeExists(entry->serverNumber[idx],
6074                          entry->serverPartition[idx], entry->volumeId[RWVOL]);
6075         if (code == 0) {        /* RW volume exists */
6076             if (!(entry->flags & RW_EXISTS)) {  /* ... yet entry says RW does not exist */
6077                 entry->flags |= RW_EXISTS;      /* ... so say RW does exist */
6078                 modentry++;
6079             }
6080         } else if (code == ENODEV) {    /* RW volume does not exist */
6081             if (entry->flags & RW_EXISTS) {     /* ... yet entry says RW exists */
6082                 entry->flags &= ~RW_EXISTS;     /* ... so say RW does not exist */
6083                 modentry++;
6084             }
6085         } else {
6086             /* If VLDB says it didn't exist, then ignore error */
6087             if (entry->flags & RW_EXISTS) {
6088                 MapPartIdIntoName(entry->serverPartition[idx], pname);
6089                 fprintf(STDERR,
6090                         "Transaction call failed for RW volume %u on server %s %s\n",
6091                         entry->volumeId[RWVOL],
6092                         hostutil_GetNameByINet(entry->serverNumber[idx]),
6093                         pname);
6094                 ERROR_EXIT(code);
6095             }
6096         }
6097     }
6098
6099     /* Check to see if the BK volume exists and set the BACK_EXISTS
6100      * flag accordingly. idx already ponts to the RW entry.
6101      */
6102     if (idx == -1) {            /* Did not find a RW entry */
6103         if (entry->flags & BACK_EXISTS) {       /* ... yet entry says BK exists */
6104             entry->flags &= ~BACK_EXISTS;       /* ... so say BK does not exist */
6105             modentry++;
6106         }
6107     } else {                    /* Found a RW entry */
6108         code =
6109             VolumeExists(entry->serverNumber[idx],
6110                          entry->serverPartition[idx],
6111                          entry->volumeId[BACKVOL]);
6112         if (code == 0) {        /* BK volume exists */
6113             if (!(entry->flags & BACK_EXISTS)) {        /* ... yet entry says BK does not exist */
6114                 entry->flags |= BACK_EXISTS;    /* ... so say BK does exist */
6115                 modentry++;
6116             }
6117         } else if (code == ENODEV) {    /* BK volume does not exist */
6118             if (entry->flags & BACK_EXISTS) {   /* ... yet entry says BK exists */
6119                 entry->flags &= ~BACK_EXISTS;   /* ... so say BK does not exist */
6120                 modentry++;
6121             }
6122         } else {
6123             /* If VLDB says it didn't exist, then ignore error */
6124             if (entry->flags & BACK_EXISTS) {
6125                 MapPartIdIntoName(entry->serverPartition[idx], pname);
6126                 fprintf(STDERR,
6127                         "Transaction call failed for BK volume %u on server %s %s\n",
6128                         entry->volumeId[BACKVOL],
6129                         hostutil_GetNameByINet(entry->serverNumber[idx]),
6130                         pname);
6131                 ERROR_EXIT(code);
6132             }
6133         }
6134     }
6135
6136     /* If there is an idx but the BK and RW volumes no
6137      * longer exist, then remove the RW entry.
6138      */
6139     if ((idx != -1) && !(entry->flags & RW_EXISTS)
6140         && !(entry->flags & BACK_EXISTS)) {
6141         Lp_SetRWValue(entry, entry->serverNumber[idx],
6142                       entry->serverPartition[idx], 0L, 0L);
6143         entry->nServers--;
6144         modentry++;
6145     }
6146
6147   error_exit:
6148     if (modified)
6149         *modified = modentry;
6150     return (error);
6151 }
6152
6153 int
6154 CheckVldbRO(struct nvldbentry *entry, afs_int32 * modified)
6155 {
6156     int idx;
6157     int foundro = 0, modentry = 0;
6158     afs_int32 code, error = 0;
6159     char pname[10];
6160
6161     if (modified)
6162         *modified = 0;
6163
6164     /* Check to see if the RO volumes exist and set the RO_EXISTS
6165      * flag accordingly. 
6166      */
6167     for (idx = 0; idx < entry->nServers; idx++) {
6168         if (!(entry->serverFlags[idx] & ITSROVOL)) {
6169             continue;           /* not a RO */
6170         }
6171
6172         code =
6173             VolumeExists(entry->serverNumber[idx],
6174                          entry->serverPartition[idx], entry->volumeId[ROVOL]);
6175         if (code == 0) {        /* RO volume exists */
6176             foundro++;
6177         } else if (code == ENODEV) {    /* RW volume does not exist */
6178             Lp_SetROValue(entry, entry->serverNumber[idx],
6179                           entry->serverPartition[idx], 0L, 0L);
6180             entry->nServers--;
6181             idx--;
6182             modentry++;
6183         } else {
6184             MapPartIdIntoName(entry->serverPartition[idx], pname);
6185             fprintf(STDERR,
6186                     "Transaction call failed for RO %u on server %s %s\n",
6187                     entry->volumeId[ROVOL],
6188                     hostutil_GetNameByINet(entry->serverNumber[idx]), pname);
6189             ERROR_EXIT(code);
6190         }
6191     }
6192
6193     if (foundro) {              /* A RO volume exists */
6194         if (!(entry->flags & RO_EXISTS)) {      /* ... yet entry says RW does not exist */
6195             entry->flags |= RO_EXISTS;  /* ... so say RW does exist */
6196             modentry++;
6197         }
6198     } else {                    /* A RO volume does not exist */
6199         if (entry->flags & RO_EXISTS) { /* ... yet entry says RO exists */
6200             entry->flags &= ~RO_EXISTS; /* ... so say RO does not exist */
6201             modentry++;
6202         }
6203     }
6204
6205   error_exit:
6206     if (modified)
6207         *modified = modentry;
6208     return (error);
6209 }
6210
6211 /* CheckVldb()
6212  *      Ensure that <entry> matches with the info on file servers
6213  */
6214 afs_int32
6215 CheckVldb(struct nvldbentry * entry, afs_int32 * modified)
6216 {
6217     afs_int32 code, error = 0;
6218     struct nvldbentry storeEntry;
6219     int islocked = 0, mod, modentry, delentry = 0;
6220     int pass = 0;
6221
6222     if (modified)
6223         *modified = 0;
6224     if (verbose) {
6225         fprintf(STDOUT, "_______________________________\n");
6226         fprintf(STDOUT, "\n-- status before -- \n");
6227         if ((entry->flags & RW_EXISTS) || (entry->flags & RO_EXISTS)
6228             || (entry->flags & BACK_EXISTS))
6229             EnumerateEntry(entry);
6230         fprintf(STDOUT, "\n");
6231     }
6232
6233     if (strlen(entry->name) > (VOLSER_OLDMAXVOLNAME - 10)) {
6234         fprintf(STDERR, "Volume name %s exceeds limit of %d characters\n",
6235                 entry->name, VOLSER_OLDMAXVOLNAME - 10);
6236     }
6237
6238   retry:
6239     /* Check to see if the VLDB is ok without locking it (pass 1).
6240      * If it will change, then lock the VLDB entry, read it again,
6241      * then make the changes to it (pass 2).
6242      */
6243     if (++pass == 2) {
6244         code =
6245             ubik_Call(VL_SetLock, cstruct, 0, entry->volumeId[RWVOL], RWVOL,
6246                       VLOP_DELETE);
6247         if (code) {
6248             fprintf(STDERR, "Could not lock VLDB entry for %u \n",
6249                     entry->volumeId[RWVOL]);
6250             ERROR_EXIT(code);
6251         }
6252         islocked = 1;
6253
6254         code = VLDB_GetEntryByID(entry->volumeId[RWVOL], RWVOL, entry);
6255         if (code) {
6256             fprintf(STDERR, "Could not read VLDB entry for volume %s\n",
6257                     entry->name);
6258             ERROR_EXIT(code);
6259         } else {
6260             MapHostToNetwork(entry);
6261         }
6262     }
6263
6264     modentry = 0;
6265
6266     /* Check if the RW and BK entries are ok */
6267     code = CheckVldbRWBK(entry, &mod);
6268     if (code)
6269         ERROR_EXIT(code);
6270     if (mod && (pass == 1))
6271         goto retry;
6272     if (mod)
6273         modentry++;
6274
6275     /* Check if the RO volumes entries are ok */
6276     code = CheckVldbRO(entry, &mod);
6277     if (code)
6278         ERROR_EXIT(code);
6279     if (mod && (pass == 1))
6280         goto retry;
6281     if (mod)
6282         modentry++;
6283
6284     /* The VLDB entry has been updated. If it as been modified, then 
6285      * write the entry back out the the VLDB.
6286      */
6287     if (modentry) {
6288         if (pass == 1)
6289             goto retry;
6290
6291         if (!(entry->flags & RW_EXISTS) && !(entry->flags & BACK_EXISTS)
6292             && !(entry->flags & RO_EXISTS)) {
6293             /* The RW, BK, nor RO volumes do not exist. Delete the VLDB entry */
6294             code =
6295                 ubik_Call(VL_DeleteEntry, cstruct, 0, entry->volumeId[RWVOL],
6296                           RWVOL);
6297             if (code) {
6298                 fprintf(STDERR,
6299                         "Could not delete VLDB entry for volume %u \n",
6300                         entry->volumeId[RWVOL]);
6301                 ERROR_EXIT(code);
6302             }
6303             delentry = 1;
6304         } else {
6305             /* Replace old entry with our new one */
6306             MapNetworkToHost(entry, &storeEntry);
6307             code =
6308                 VLDB_ReplaceEntry(entry->volumeId[RWVOL], RWVOL, &storeEntry,
6309                                   (LOCKREL_OPCODE | LOCKREL_AFSID |
6310                                    LOCKREL_TIMESTAMP));
6311             if (code) {
6312                 fprintf(STDERR, "Could not update VLDB entry for volume %u\n",
6313                         entry->volumeId[RWVOL]);
6314                 ERROR_EXIT(code);
6315             }
6316         }
6317         if (modified)
6318             *modified = 1;
6319         islocked = 0;
6320     }
6321
6322     if (verbose) {
6323         fprintf(STDOUT, "-- status after --\n");
6324         if (delentry)
6325             fprintf(STDOUT, "\n**entry deleted**\n");
6326         else if (modentry)
6327             EnumerateEntry(entry);
6328         else
6329             fprintf(STDOUT, "\n**no change**\n");
6330     }
6331
6332   error_exit:
6333     VPRINT("\n_______________________________\n");
6334
6335     if (islocked) {
6336         code =
6337             ubik_Call(VL_ReleaseLock, cstruct, 0, entry->volumeId[RWVOL],
6338                       RWVOL,
6339                       (LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP));
6340         if (code) {
6341             fprintf(STDERR,
6342                     "Could not release lock on VLDB entry for volume %u\n",
6343                     entry->volumeId[RWVOL]);
6344             if (!error)
6345                 error = code;
6346         }
6347     }
6348     return error;
6349 }
6350
6351 /* UV_SyncServer()
6352  *      Synchronise <aserver> <apart>(if flags = 1) with the VLDB.
6353  */
6354 int
6355 UV_SyncServer(afs_int32 aserver, afs_int32 apart, int flags, int force)
6356 {
6357     struct rx_connection *aconn;
6358     afs_int32 code, error = 0;
6359     afs_int32 nentries, tentries = 0;
6360     struct VldbListByAttributes attributes;
6361     nbulkentries arrayEntries;
6362     afs_int32 failures = 0, modified, modifications = 0;
6363     struct nvldbentry *vlentry;
6364     afs_int32 si, nsi, j;
6365
6366     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
6367
6368     /* Set up attributes to search VLDB  */
6369     attributes.server = ntohl(aserver);
6370     attributes.Mask = VLLIST_SERVER;
6371     if (flags) {
6372         attributes.partition = apart;
6373         attributes.Mask |= VLLIST_PARTITION;
6374     }
6375
6376     VPRINT("Processing VLDB entries ...\n");
6377
6378     /* While we need to collect more VLDB entries */
6379     for (si = 0; si != -1; si = nsi) {
6380         memset(&arrayEntries, 0, sizeof(arrayEntries));
6381
6382         /* Collect set of VLDB entries */
6383         code =
6384             VLDB_ListAttributesN2(&attributes, 0, si, &nentries,
6385                                   &arrayEntries, &nsi);
6386         if (code == RXGEN_OPCODE) {
6387             code = VLDB_ListAttributes(&attributes, &nentries, &arrayEntries);
6388             nsi = -1;
6389         }
6390         if (code) {
6391             fprintf(STDERR, "Could not access the VLDB for attributes\n");
6392             ERROR_EXIT(code);
6393         }
6394         tentries += nentries;
6395
6396         for (j = 0; j < nentries; j++) {
6397             vlentry = &arrayEntries.nbulkentries_val[j];
6398             MapHostToNetwork(vlentry);
6399
6400             VPRINT1("Processing VLDB entry %d ...\n", j + 1);
6401
6402             code = CheckVldb(vlentry, &modified);
6403             if (code) {
6404                 PrintError("", code);
6405                 fprintf(STDERR,
6406                         "Could not process VLDB entry for volume %s\n",
6407                         vlentry->name);
6408                 failures++;
6409             } else if (modified) {
6410                 modifications++;
6411             }
6412
6413             if (verbose) {
6414                 if (code) {
6415                     fprintf(STDOUT, "...error encountered\n\n");
6416                 } else {
6417                     fprintf(STDOUT, "...done entry %d\n\n", j + 1);
6418                 }
6419             }
6420         }
6421
6422         if (arrayEntries.nbulkentries_val) {
6423             free(arrayEntries.nbulkentries_val);
6424             arrayEntries.nbulkentries_val = 0;
6425         }
6426     }
6427
6428     VPRINT3("Total entries: %u, Failed to process %d, Changed %d\n", tentries,
6429             failures, modifications);
6430
6431   error_exit:
6432     if (aconn)
6433         rx_DestroyConnection(aconn);
6434     if (arrayEntries.nbulkentries_val)
6435         free(arrayEntries.nbulkentries_val);
6436
6437     if (failures)
6438         error = VOLSERFAILEDOP;
6439     return error;
6440 }
6441
6442 /*rename volume <oldname> to <newname>, changing the names of the related 
6443  *readonly and backup volumes. This operation is also idempotent.
6444  *salvager is capable of recovering from rename operation stopping halfway.
6445  *to recover run syncserver on the affected machines,it will force renaming to completion. name clashes should have been detected before calling this proc */
6446 int
6447 UV_RenameVolume(struct nvldbentry *entry, char oldname[], char newname[])
6448 {
6449     struct nvldbentry storeEntry;
6450     afs_int32 vcode, code, rcode, error;
6451     int i, index;
6452     char nameBuffer[256];
6453     afs_int32 tid;
6454     struct rx_connection *aconn;
6455     int islocked;
6456
6457     error = 0;
6458     aconn = (struct rx_connection *)0;
6459     tid = 0;
6460     islocked = 0;
6461
6462     vcode = ubik_Call(VL_SetLock, cstruct, 0, entry->volumeId[RWVOL], RWVOL, VLOP_ADDSITE);     /*last param is dummy */
6463     if (vcode) {
6464         fprintf(STDERR,
6465                 " Could not lock the VLDB entry for the  volume %u \n",
6466                 entry->volumeId[RWVOL]);
6467         error = vcode;
6468         goto rvfail;
6469     }
6470     islocked = 1;
6471     strncpy(entry->name, newname, VOLSER_OLDMAXVOLNAME);
6472     MapNetworkToHost(entry, &storeEntry);
6473     vcode = VLDB_ReplaceEntry(entry->volumeId[RWVOL], RWVOL, &storeEntry, 0);
6474     if (vcode) {
6475         fprintf(STDERR, "Could not update VLDB entry for %u\n",
6476                 entry->volumeId[RWVOL]);
6477         error = vcode;
6478         goto rvfail;
6479     }
6480     VPRINT1("Recorded the new name %s in VLDB\n", newname);
6481     /*at this stage the intent to rename is recorded in the vldb, as far as the vldb 
6482      * is concerned, oldname is lost */
6483     if (entry->flags & RW_EXISTS) {
6484         index = Lp_GetRwIndex(entry);
6485         if (index == -1) {      /* there is a serious discrepancy */
6486             fprintf(STDERR,
6487                     "There is a serious discrepancy in VLDB entry for volume %u\n",
6488                     entry->volumeId[RWVOL]);
6489             fprintf(STDERR, "try building VLDB from scratch\n");
6490             error = VOLSERVLDB_ERROR;
6491             goto rvfail;
6492         }
6493         aconn = UV_Bind(entry->serverNumber[index], AFSCONF_VOLUMEPORT);
6494         code =
6495             AFSVolTransCreate(aconn, entry->volumeId[RWVOL],
6496                               entry->serverPartition[index], ITOffline, &tid);
6497         if (code) {             /*volume doesnot exist */
6498             fprintf(STDERR,
6499                     "Could not start transaction on the rw volume %u\n",
6500                     entry->volumeId[RWVOL]);
6501             error = code;
6502             goto rvfail;
6503         } else {                /*volume exists, process it */
6504
6505             code =
6506                 AFSVolSetIdsTypes(aconn, tid, newname, RWVOL,
6507                                   entry->volumeId[RWVOL],
6508                                   entry->volumeId[ROVOL],
6509                                   entry->volumeId[BACKVOL]);
6510             if (!code) {
6511                 VPRINT2("Renamed rw volume %s to %s\n", oldname, newname);
6512                 code = AFSVolEndTrans(aconn, tid, &rcode);
6513                 tid = 0;
6514                 if (code) {
6515                     fprintf(STDERR,
6516                             "Could not  end transaction on volume %s %u\n",
6517                             entry->name, entry->volumeId[RWVOL]);
6518                     error = code;
6519                     goto rvfail;
6520                 }
6521             } else {
6522                 fprintf(STDERR, "Could not  set parameters on volume %s %u\n",
6523                         entry->name, entry->volumeId[RWVOL]);
6524                 error = code;
6525                 goto rvfail;
6526             }
6527         }
6528         if (aconn)
6529             rx_DestroyConnection(aconn);
6530         aconn = (struct rx_connection *)0;
6531     }
6532     /*end rw volume processing */
6533     if (entry->flags & BACK_EXISTS) {   /*process the backup volume */
6534         index = Lp_GetRwIndex(entry);
6535         if (index == -1) {      /* there is a serious discrepancy */
6536             fprintf(STDERR,
6537                     "There is a serious discrepancy in the VLDB entry for the backup volume %u\n",
6538                     entry->volumeId[BACKVOL]);
6539             fprintf(STDERR, "try building VLDB from scratch\n");
6540             error = VOLSERVLDB_ERROR;
6541             goto rvfail;
6542         }
6543         aconn = UV_Bind(entry->serverNumber[index], AFSCONF_VOLUMEPORT);
6544         code =
6545             AFSVolTransCreate(aconn, entry->volumeId[BACKVOL],
6546                               entry->serverPartition[index], ITOffline, &tid);
6547         if (code) {             /*volume doesnot exist */
6548             fprintf(STDERR,
6549                     "Could not start transaction on the backup volume  %u\n",
6550                     entry->volumeId[BACKVOL]);
6551             error = code;
6552             goto rvfail;
6553         } else {                /*volume exists, process it */
6554             if (strlen(newname) > (VOLSER_OLDMAXVOLNAME - 8)) {
6555                 fprintf(STDERR,
6556                         "Volume name %s.backup exceeds the limit of %u characters\n",
6557                         newname, VOLSER_OLDMAXVOLNAME);
6558                 error = code;
6559                 goto rvfail;
6560             }
6561             strcpy(nameBuffer, newname);
6562             strcat(nameBuffer, ".backup");
6563
6564             code =
6565                 AFSVolSetIdsTypes(aconn, tid, nameBuffer, BACKVOL,
6566                                   entry->volumeId[RWVOL], 0, 0);
6567             if (!code) {
6568                 VPRINT1("Renamed backup volume to %s \n", nameBuffer);
6569                 code = AFSVolEndTrans(aconn, tid, &rcode);
6570                 tid = 0;
6571                 if (code) {
6572                     fprintf(STDERR,
6573                             "Could not  end transaction on the backup volume %u\n",
6574                             entry->volumeId[BACKVOL]);
6575                     error = code;
6576                     goto rvfail;
6577                 }
6578             } else {
6579                 fprintf(STDERR,
6580                         "Could not  set parameters on the backup volume %u\n",
6581                         entry->volumeId[BACKVOL]);
6582                 error = code;
6583                 goto rvfail;
6584             }
6585         }
6586     }                           /* end backup processing */
6587     if (aconn)
6588         rx_DestroyConnection(aconn);
6589     aconn = (struct rx_connection *)0;
6590     if (entry->flags & RO_EXISTS) {     /*process the ro volumes */
6591         for (i = 0; i < entry->nServers; i++) {
6592             if (entry->serverFlags[i] & ITSROVOL) {
6593                 aconn = UV_Bind(entry->serverNumber[i], AFSCONF_VOLUMEPORT);
6594                 code =
6595                     AFSVolTransCreate(aconn, entry->volumeId[ROVOL],
6596                                       entry->serverPartition[i], ITOffline,
6597                                       &tid);
6598                 if (code) {     /*volume doesnot exist */
6599                     fprintf(STDERR,
6600                             "Could not start transaction on the ro volume %u\n",
6601                             entry->volumeId[ROVOL]);
6602                     error = code;
6603                     goto rvfail;
6604                 } else {        /*volume exists, process it */
6605                     strcpy(nameBuffer, newname);
6606                     strcat(nameBuffer, ".readonly");
6607                     if (strlen(nameBuffer) > (VOLSER_OLDMAXVOLNAME - 1)) {
6608                         fprintf(STDERR,
6609                                 "Volume name %s exceeds the limit of %u characters\n",
6610                                 nameBuffer, VOLSER_OLDMAXVOLNAME);
6611                         error = code;
6612                         goto rvfail;
6613                     }
6614                     code =
6615                         AFSVolSetIdsTypes(aconn, tid, nameBuffer, ROVOL,
6616                                           entry->volumeId[RWVOL], 0, 0);
6617                     if (!code) {
6618                         VPRINT2("Renamed RO volume %s on host %s\n",
6619                                 nameBuffer,
6620                                 hostutil_GetNameByINet(entry->
6621                                                        serverNumber[i]));
6622                         code = AFSVolEndTrans(aconn, tid, &rcode);
6623                         tid = 0;
6624                         if (code) {
6625                             fprintf(STDERR,
6626                                     "Could not  end transaction on volume %u\n",
6627                                     entry->volumeId[ROVOL]);
6628                             error = code;
6629                             goto rvfail;
6630                         }
6631                     } else {
6632                         fprintf(STDERR,
6633                                 "Could not  set parameters on the ro volume %u\n",
6634                                 entry->volumeId[ROVOL]);
6635                         error = code;
6636                         goto rvfail;
6637                     }
6638                 }
6639                 if (aconn)
6640                     rx_DestroyConnection(aconn);
6641                 aconn = (struct rx_connection *)0;
6642             }
6643         }
6644     }
6645   rvfail:
6646     if (islocked) {
6647         vcode =
6648             ubik_Call(VL_ReleaseLock, cstruct, 0, entry->volumeId[RWVOL],
6649                       RWVOL,
6650                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
6651         if (vcode) {
6652             fprintf(STDERR,
6653                     "Could not unlock the VLDB entry for the volume %s %u\n",
6654                     entry->name, entry->volumeId[RWVOL]);
6655             if (!error)
6656                 error = vcode;
6657         }
6658     }
6659     if (tid) {
6660         code = AFSVolEndTrans(aconn, tid, &rcode);
6661         if (!code)
6662             code = rcode;
6663         if (code) {
6664             fprintf(STDERR, "Failed to end transaction on a volume \n");
6665             if (!error)
6666                 error = code;
6667         }
6668     }
6669     if (aconn)
6670         rx_DestroyConnection(aconn);
6671     PrintError("", error);
6672     return error;
6673
6674 }
6675
6676 /*report on all the active transactions on volser */
6677 int
6678 UV_VolserStatus(afs_int32 server, transDebugInfo ** rpntr, afs_int32 * rcount)
6679 {
6680     struct rx_connection *aconn;
6681     transDebugEntries transInfo;
6682     afs_int32 code = 0;
6683
6684     aconn = UV_Bind(server, AFSCONF_VOLUMEPORT);
6685     transInfo.transDebugEntries_val = (transDebugInfo *) 0;
6686     transInfo.transDebugEntries_len = 0;
6687     code = AFSVolMonitor(aconn, &transInfo);
6688     if (code) {
6689         fprintf(STDERR,
6690                 "Could not access status information about the server\n");
6691         PrintError("", code);
6692         if (transInfo.transDebugEntries_val)
6693             free(transInfo.transDebugEntries_val);
6694         if (aconn)
6695             rx_DestroyConnection(aconn);
6696         return code;
6697     } else {
6698         *rcount = transInfo.transDebugEntries_len;
6699         *rpntr = transInfo.transDebugEntries_val;
6700         if (aconn)
6701             rx_DestroyConnection(aconn);
6702         return 0;
6703     }
6704
6705
6706 }
6707
6708 /*delete the volume without interacting with the vldb */
6709 int
6710 UV_VolumeZap(afs_int32 server, afs_int32 part, afs_int32 volid)
6711 {
6712     afs_int32 rcode, ttid, error, code;
6713     struct rx_connection *aconn;
6714
6715     code = 0;
6716     error = 0;
6717     ttid = 0;
6718
6719     aconn = UV_Bind(server, AFSCONF_VOLUMEPORT);
6720     code = AFSVolTransCreate(aconn, volid, part, ITOffline, &ttid);
6721     if (code) {
6722         fprintf(STDERR, "Could not start transaction on volume %lu\n",
6723                 (unsigned long)volid);
6724         error = code;
6725         goto zfail;
6726     }
6727     code = AFSVolDeleteVolume(aconn, ttid);
6728     if (code) {
6729         fprintf(STDERR, "Could not delete volume %lu\n",
6730                 (unsigned long)volid);
6731         error = code;
6732         goto zfail;
6733     }
6734     code = AFSVolEndTrans(aconn, ttid, &rcode);
6735     ttid = 0;
6736     if (!code)
6737         code = rcode;
6738     if (code) {
6739         fprintf(STDERR, "Could not end transaction on volume %lu\n",
6740                 (unsigned long)volid);
6741         error = code;
6742         goto zfail;
6743     }
6744   zfail:
6745     if (ttid) {
6746         code = AFSVolEndTrans(aconn, ttid, &rcode);
6747         if (!code)
6748             code = rcode;
6749         if (!error)
6750             error = code;
6751     }
6752     PrintError("", error);
6753     if (aconn)
6754         rx_DestroyConnection(aconn);
6755     return error;
6756 }
6757
6758 int
6759 UV_SetVolume(afs_int32 server, afs_int32 partition, afs_int32 volid,
6760              afs_int32 transflag, afs_int32 setflag, int sleeptime)
6761 {
6762     struct rx_connection *conn = 0;
6763     afs_int32 tid = 0;
6764     afs_int32 code, error = 0, rcode;
6765
6766     conn = UV_Bind(server, AFSCONF_VOLUMEPORT);
6767     if (!conn) {
6768         fprintf(STDERR, "SetVolumeStatus: Bind Failed");
6769         ERROR_EXIT(-1);
6770     }
6771
6772     code = AFSVolTransCreate(conn, volid, partition, transflag, &tid);
6773     if (code) {
6774         fprintf(STDERR, "SetVolumeStatus: TransCreate Failed\n");
6775         ERROR_EXIT(code);
6776     }
6777
6778     code = AFSVolSetFlags(conn, tid, setflag);
6779     if (code) {
6780         fprintf(STDERR, "SetVolumeStatus: SetFlags Failed\n");
6781         ERROR_EXIT(code);
6782     }
6783
6784     if (sleeptime) {
6785 #ifdef AFS_PTHREAD_ENV
6786         sleep(sleeptime);
6787 #else
6788         IOMGR_Sleep(sleeptime);
6789 #endif
6790     }
6791
6792   error_exit:
6793     if (tid) {
6794         rcode = 0;
6795         code = AFSVolEndTrans(conn, tid, &rcode);
6796         if (code || rcode) {
6797             fprintf(STDERR, "SetVolumeStatus: EndTrans Failed\n");
6798             if (!error)
6799                 error = (code ? code : rcode);
6800         }
6801     }
6802
6803     if (conn)
6804         rx_DestroyConnection(conn);
6805     return (error);
6806 }
6807
6808 int
6809 UV_SetVolumeInfo(afs_int32 server, afs_int32 partition, afs_int32 volid,
6810                  volintInfo * infop)
6811 {
6812     struct rx_connection *conn = 0;
6813     afs_int32 tid = 0;
6814     afs_int32 code, error = 0, rcode;
6815
6816     conn = UV_Bind(server, AFSCONF_VOLUMEPORT);
6817     if (!conn) {
6818         fprintf(STDERR, "SetVolumeInfo: Bind Failed");
6819         ERROR_EXIT(-1);
6820     }
6821
6822     code = AFSVolTransCreate(conn, volid, partition, ITOffline, &tid);
6823     if (code) {
6824         fprintf(STDERR, "SetVolumeInfo: TransCreate Failed\n");
6825         ERROR_EXIT(code);
6826     }
6827
6828     code = AFSVolSetInfo(conn, tid, infop);
6829     if (code) {
6830         fprintf(STDERR, "SetVolumeInfo: SetInfo Failed\n");
6831         ERROR_EXIT(code);
6832     }
6833
6834   error_exit:
6835     if (tid) {
6836         rcode = 0;
6837         code = AFSVolEndTrans(conn, tid, &rcode);
6838         if (code || rcode) {
6839             fprintf(STDERR, "SetVolumeInfo: EndTrans Failed\n");
6840             if (!error)
6841                 error = (code ? code : rcode);
6842         }
6843     }
6844
6845     if (conn)
6846         rx_DestroyConnection(conn);
6847     return (error);
6848 }
6849
6850 int
6851 UV_GetSize(afs_int32 afromvol, afs_int32 afromserver, afs_int32 afrompart,
6852            afs_int32 fromdate, struct volintSize *vol_size)
6853 {
6854     struct rx_connection *aconn = (struct rx_connection *)0;
6855     afs_int32 tid = 0, rcode = 0;
6856     afs_int32 code, error = 0;
6857
6858
6859     /* get connections to the servers */
6860     aconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
6861
6862     VPRINT1("Starting transaction on volume %u...", afromvol);
6863     code = AFSVolTransCreate(aconn, afromvol, afrompart, ITBusy, &tid);
6864     EGOTO1(error_exit, code,
6865            "Could not start transaction on the volume %u to be measured\n",
6866            afromvol);
6867     VDONE;
6868
6869     VPRINT1("Getting size of volume on volume %u...", afromvol);
6870     code = AFSVolGetSize(aconn, tid, fromdate, vol_size);
6871     EGOTO(error_exit, code, "Could not start the measurement process \n");
6872     VDONE;
6873
6874   error_exit:
6875     if (tid) {
6876         VPRINT1("Ending transaction on volume %u...", afromvol);
6877         code = AFSVolEndTrans(aconn, tid, &rcode);
6878         if (code || rcode) {
6879             fprintf(STDERR, "Could not end transaction on the volume %u\n",
6880                     afromvol);
6881             fprintf(STDERR, "error codes: %d and %d\n", code, rcode);
6882             if (!error)
6883                 error = (code ? code : rcode);
6884         }
6885         VDONE;
6886     }
6887     if (aconn)
6888         rx_DestroyConnection(aconn);
6889
6890     PrintError("", error);
6891     return (error);
6892 }
6893
6894 /*maps the host addresses in <old > (present in network byte order) to
6895  that in< new> (present in host byte order )*/
6896 void
6897 MapNetworkToHost(struct nvldbentry *old, struct nvldbentry *new)
6898 {
6899     int i, count;
6900
6901     /*copy all the fields */
6902     strcpy(new->name, old->name);
6903 /*    new->volumeType = old->volumeType;*/
6904     new->nServers = old->nServers;
6905     count = old->nServers;
6906     if (count < NMAXNSERVERS)
6907         count++;
6908     for (i = 0; i < count; i++) {
6909         new->serverNumber[i] = ntohl(old->serverNumber[i]);
6910         new->serverPartition[i] = old->serverPartition[i];
6911         new->serverFlags[i] = old->serverFlags[i];
6912     }
6913     new->volumeId[RWVOL] = old->volumeId[RWVOL];
6914     new->volumeId[ROVOL] = old->volumeId[ROVOL];
6915     new->volumeId[BACKVOL] = old->volumeId[BACKVOL];
6916     new->cloneId = old->cloneId;
6917     new->flags = old->flags;
6918 }
6919
6920 /*maps the host entries in <entry> which are present in host byte order to network byte order */
6921 void
6922 MapHostToNetwork(struct nvldbentry *entry)
6923 {
6924     int i, count;
6925
6926     count = entry->nServers;
6927     if (count < NMAXNSERVERS)
6928         count++;
6929     for (i = 0; i < count; i++) {
6930         entry->serverNumber[i] = htonl(entry->serverNumber[i]);
6931     }
6932 }