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