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