volser: Fix a couple of assigned but not read errors
[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         code = 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     int success;
4547     struct nvldbentry entry, storeEntry;
4548     afs_int32 error;
4549     int islocked;
4550     struct restoreCookie cookie;
4551     int reuseID;
4552     afs_int32 volflag, voltype, volsertype;
4553     afs_int32 oldCreateDate, oldUpdateDate, newCreateDate, newUpdateDate;
4554     int index, same, errcode;
4555     char apartName[10];
4556     char hoststr[16];
4557
4558     memset(&cookie, 0, sizeof(cookie));
4559     islocked = 0;
4560     success = 0;
4561     error = 0;
4562     reuseID = 1;
4563     tocall = (struct rx_call *)0;
4564     tempconn = (struct rx_connection *)0;
4565     totid = 0;
4566     temptid = 0;
4567
4568     if (flags & RV_RDONLY) {
4569         voltype = ROVOL;
4570         volsertype = volser_RO;
4571     } else {
4572         voltype = RWVOL;
4573         volsertype = volser_RW;
4574     }
4575
4576     pvolid = tovolid;
4577     pparentid = toparentid;
4578     toconn = UV_Bind(toserver, AFSCONF_VOLUMEPORT);
4579     if (pvolid == 0) {          /*alot a new id if needed */
4580         vcode = VLDB_GetEntryByName(tovolname, &entry);
4581         if (vcode == VL_NOENT) {
4582             vcode = ubik_VL_GetNewVolumeId(cstruct, 0, 1, &pvolid);
4583             if (vcode) {
4584                 fprintf(STDERR, "Could not get an Id for the volume %s\n",
4585                         tovolname);
4586                 error = vcode;
4587                 goto refail;
4588             }
4589             reuseID = 0;
4590         } else if (flags & RV_RDONLY) {
4591             if (entry.flags & RW_EXISTS) {
4592                 fprintf(STDERR,
4593                         "Entry for ReadWrite volume %s already exists!\n",
4594                         entry.name);
4595                 error = VOLSERBADOP;
4596                 goto refail;
4597             }
4598             if (!entry.volumeId[ROVOL]) {
4599                 fprintf(STDERR,
4600                         "Existing entry for volume %s has no ReadOnly ID\n",
4601                         tovolname);
4602                 error = VOLSERBADOP;
4603                 goto refail;
4604             }
4605             pvolid = entry.volumeId[ROVOL];
4606             pparentid = entry.volumeId[RWVOL];
4607         } else {
4608             pvolid = entry.volumeId[RWVOL];
4609             pparentid = entry.volumeId[RWVOL];
4610         }
4611     }
4612     if (!pparentid) pparentid = pvolid;
4613     /* at this point we have a volume id to use/reuse for the volume to be restored */
4614     strncpy(tovolreal, tovolname, VOLSER_OLDMAXVOLNAME);
4615
4616     if (strlen(tovolname) > (VOLSER_OLDMAXVOLNAME - 1)) {
4617         EGOTO1(refail, VOLSERBADOP,
4618                "The volume name %s exceeds the maximum limit of (VOLSER_OLDMAXVOLNAME -1 ) bytes\n",
4619                tovolname);
4620     } else {
4621         if ((pparentid != pvolid) && (flags & RV_RDONLY)) {
4622             if (strlen(tovolname) > (VOLSER_OLDMAXVOLNAME - 10)) {
4623                 EGOTO1(refail, VOLSERBADOP,
4624                        "The volume name %s exceeds the maximum limit of (VOLSER_OLDMAXVOLNAME -1 ) bytes\n", tovolname);
4625             }
4626             snprintf(tovolreal, VOLSER_OLDMAXVOLNAME, "%s.readonly", tovolname);
4627         }
4628     }
4629     MapPartIdIntoName(topart, partName);
4630     fprintf(STDOUT, "Restoring volume %s Id %lu on server %s partition %s ..",
4631             tovolreal, (unsigned long)pvolid,
4632             noresolve ? afs_inet_ntoa_r(toserver, hoststr) :
4633             hostutil_GetNameByINet(toserver), partName);
4634     fflush(STDOUT);
4635     code =
4636         AFSVolCreateVolume(toconn, topart, tovolreal, volsertype, pparentid, &pvolid,
4637                            &totid);
4638     if (code) {
4639         if (flags & RV_FULLRST) {       /* full restore: delete then create anew */
4640             code = DoVolDelete(toconn, pvolid, topart, "the previous", 0,
4641                                &tstatus, NULL);
4642             if (code && code != VNOVOL) {
4643                 error = code;
4644                 goto refail;
4645             }
4646
4647             code =
4648                 AFSVolCreateVolume(toconn, topart, tovolreal, volsertype, pparentid,
4649                                    &pvolid, &totid);
4650             EGOTO1(refail, code, "Could not create new volume %u\n", pvolid);
4651         } else {
4652             code =
4653                 AFSVolTransCreate_retry(toconn, pvolid, topart, ITOffline, &totid);
4654             EGOTO1(refail, code, "Failed to start transaction on %u\n",
4655                    pvolid);
4656
4657             code = AFSVolGetStatus(toconn, totid, &tstatus);
4658             EGOTO1(refail, code, "Could not get timestamp from volume %u\n",
4659                    pvolid);
4660
4661         }
4662         oldCreateDate = tstatus.creationDate;
4663         oldUpdateDate = tstatus.updateDate;
4664     } else {
4665         oldCreateDate = 0;
4666         oldUpdateDate = 0;
4667     }
4668
4669     cookie.parent = pparentid;
4670     cookie.type = voltype;
4671     cookie.clone = 0;
4672     strncpy(cookie.name, tovolreal, VOLSER_OLDMAXVOLNAME);
4673
4674     tocall = rx_NewCall(toconn);
4675     terror = StartAFSVolRestore(tocall, totid, 1, &cookie);
4676     if (terror) {
4677         fprintf(STDERR, "Volume restore Failed \n");
4678         error = terror;
4679         goto refail;
4680     }
4681     code = WriteData(tocall, rock);
4682     if (code) {
4683         fprintf(STDERR, "Could not transmit data\n");
4684         error = code;
4685         goto refail;
4686     }
4687     terror = rx_EndCall(tocall, rxError);
4688     tocall = (struct rx_call *)0;
4689     if (terror) {
4690         fprintf(STDERR, "rx_EndCall Failed \n");
4691         error = terror;
4692         goto refail;
4693     }
4694     code = AFSVolGetStatus(toconn, totid, &tstatus);
4695     if (code) {
4696         fprintf(STDERR,
4697                 "Could not get status information about the volume %lu\n",
4698                 (unsigned long)pvolid);
4699         error = code;
4700         goto refail;
4701     }
4702     code = AFSVolSetIdsTypes(toconn, totid, tovolreal, voltype, pparentid, 0, 0);
4703     if (code) {
4704         fprintf(STDERR, "Could not set the right type and ID on %lu\n",
4705                 (unsigned long)pvolid);
4706         error = code;
4707         goto refail;
4708     }
4709
4710     if (flags & RV_CRDUMP)
4711         newCreateDate = tstatus.creationDate;
4712     else if (flags & RV_CRKEEP && oldCreateDate != 0)
4713         newCreateDate = oldCreateDate;
4714     else
4715         newCreateDate = time(0);
4716     if (flags & RV_LUDUMP)
4717         newUpdateDate = tstatus.updateDate;
4718     else if (flags & RV_LUKEEP)
4719         newUpdateDate = oldUpdateDate;
4720     else
4721         newUpdateDate = time(0);
4722     code = AFSVolSetDate(toconn,totid, newCreateDate);
4723     if (code) {
4724         fprintf(STDERR, "Could not set the 'creation' date on %u\n", pvolid);
4725         error = code;
4726         goto refail;
4727     }
4728
4729     init_volintInfo(&vinfo);
4730     vinfo.creationDate = newCreateDate;
4731     vinfo.updateDate = newUpdateDate;
4732     code = AFSVolSetInfo(toconn, totid, &vinfo);
4733     if (code) {
4734         fprintf(STDERR, "Could not set the 'last updated' date on %u\n",
4735                 pvolid);
4736         error = code;
4737         goto refail;
4738     }
4739
4740     volflag = ((flags & RV_OFFLINE) ? VTOutOfService : 0);      /* off or on-line */
4741     code = AFSVolSetFlags(toconn, totid, volflag);
4742     if (code) {
4743         fprintf(STDERR, "Could not mark %lu online\n", (unsigned long)pvolid);
4744         error = code;
4745         goto refail;
4746     }
4747
4748 /* It isn't handled right in refail */
4749     code = AFSVolEndTrans(toconn, totid, &rcode);
4750     totid = 0;
4751     if (!code)
4752         code = rcode;
4753     if (code) {
4754         fprintf(STDERR, "Could not end transaction on %lu\n",
4755                 (unsigned long)pvolid);
4756         error = code;
4757         goto refail;
4758     }
4759
4760     success = 1;
4761     fprintf(STDOUT, " done\n");
4762     fflush(STDOUT);
4763     if (success && (!reuseID || (flags & RV_FULLRST))) {
4764         /* Volume was restored on the file server, update the
4765          * VLDB to reflect the change.
4766          */
4767         vcode = VLDB_GetEntryByID(pvolid, voltype, &entry);
4768         if (vcode && vcode != VL_NOENT && vcode != VL_ENTDELETED) {
4769             fprintf(STDERR,
4770                     "Could not fetch the entry for volume number %lu from VLDB \n",
4771                     (unsigned long)pvolid);
4772             error = vcode;
4773             goto refail;
4774         }
4775         if (!vcode)
4776             MapHostToNetwork(&entry);
4777         if (vcode == VL_NOENT) {        /* it doesnot exist already */
4778             /*make the vldb return this indication specifically */
4779             VPRINT("------- Creating a new VLDB entry ------- \n");
4780             strcpy(entry.name, tovolname);
4781             entry.nServers = 1;
4782             entry.serverNumber[0] = toserver;   /*should be indirect */
4783             entry.serverPartition[0] = topart;
4784             entry.serverFlags[0] = (flags & RV_RDONLY) ? ITSROVOL : ITSRWVOL;
4785             entry.flags = (flags & RV_RDONLY) ? RO_EXISTS : RW_EXISTS;
4786             if (flags & RV_RDONLY)
4787                 entry.volumeId[ROVOL] = pvolid;
4788             else if (tstatus.cloneID != 0) {
4789                 entry.volumeId[ROVOL] = tstatus.cloneID;        /*this should come from status info on the volume if non zero */
4790             } else
4791                 entry.volumeId[ROVOL] = INVALID_BID;
4792             entry.volumeId[RWVOL] = pparentid;
4793             entry.cloneId = 0;
4794             if (tstatus.backupID != 0) {
4795                 entry.volumeId[BACKVOL] = tstatus.backupID;
4796                 /*this should come from status info on the volume if non zero */
4797             } else
4798                 entry.volumeId[BACKVOL] = INVALID_BID;
4799             MapNetworkToHost(&entry, &storeEntry);
4800             vcode = VLDB_CreateEntry(&storeEntry);
4801             if (vcode) {
4802                 fprintf(STDERR,
4803                         "Could not create the VLDB entry for volume number %lu  \n",
4804                         (unsigned long)pvolid);
4805                 error = vcode;
4806                 goto refail;
4807             }
4808             islocked = 0;
4809             if (verbose)
4810                 EnumerateEntry(&entry);
4811         } else {                /*update the existing entry */
4812             if (verbose) {
4813                 fprintf(STDOUT, "Updating the existing VLDB entry\n");
4814                 fprintf(STDOUT, "------- Old entry -------\n");
4815                 EnumerateEntry(&entry);
4816                 fprintf(STDOUT, "------- New entry -------\n");
4817             }
4818             vcode =
4819                 ubik_VL_SetLock(cstruct, 0, pvolid, voltype,
4820                           VLOP_RESTORE);
4821             if (vcode) {
4822                 fprintf(STDERR,
4823                         "Could not lock the entry for volume number %lu \n",
4824                         (unsigned long)pvolid);
4825                 error = vcode;
4826                 goto refail;
4827             }
4828             islocked = 1;
4829             strcpy(entry.name, tovolname);
4830
4831             /* Update the vlentry with the new information */
4832             if (flags & RV_RDONLY)
4833                 index = Lp_ROMatch(toserver, topart, &entry) - 1;
4834             else
4835                 index = Lp_GetRwIndex(&entry);
4836             if (index == -1) {
4837                 /* Add the new site for the volume being restored */
4838                 entry.serverNumber[entry.nServers] = toserver;
4839                 entry.serverPartition[entry.nServers] = topart;
4840                 entry.serverFlags[entry.nServers] =
4841                     (flags & RV_RDONLY) ? ITSROVOL : ITSRWVOL;
4842                 entry.nServers++;
4843             } else {
4844                 /* This volume should be deleted on the old site
4845                  * if its different from new site.
4846                  */
4847                 same =
4848                     VLDB_IsSameAddrs(toserver, entry.serverNumber[index],
4849                                      &errcode);
4850                 if (errcode)
4851                     EPRINT2(errcode,
4852                             "Failed to get info about server's %d address(es) from vlserver (err=%d)\n",
4853                             toserver, errcode);
4854                 if ((!errcode && !same)
4855                     || (entry.serverPartition[index] != topart)) {
4856                     if (flags & RV_NODEL) {
4857                         VPRINT2
4858                             ("Not deleting the previous volume %u on server %s, ...",
4859                              pvolid,
4860                              noresolve ? afs_inet_ntoa_r(entry.serverNumber[index], hoststr) :
4861                              hostutil_GetNameByINet(entry.serverNumber[index]));
4862                     } else {
4863                         tempconn =
4864                             UV_Bind(entry.serverNumber[index],
4865                                     AFSCONF_VOLUMEPORT);
4866
4867                         MapPartIdIntoName(entry.serverPartition[index],
4868                                           apartName);
4869                         VPRINT3
4870                             ("Deleting the previous volume %u on server %s, partition %s ...",
4871                              pvolid,
4872                              noresolve ? afs_inet_ntoa_r(entry.serverNumber[index], hoststr) :
4873                              hostutil_GetNameByINet(entry.serverNumber[index]),
4874                              apartName);
4875                         code = DoVolDelete(tempconn, pvolid,
4876                                            entry.serverPartition[index],
4877                                            "the", 0, NULL, NULL);
4878                         if (code && code != VNOVOL) {
4879                             error = code;
4880                             goto refail;
4881                         }
4882                         MapPartIdIntoName(entry.serverPartition[index],
4883                                           partName);
4884                     }
4885                 }
4886                 entry.serverNumber[index] = toserver;
4887                 entry.serverPartition[index] = topart;
4888             }
4889
4890             entry.flags |= (flags & RV_RDONLY) ? RO_EXISTS : RW_EXISTS;
4891             MapNetworkToHost(&entry, &storeEntry);
4892             vcode =
4893                 VLDB_ReplaceEntry(pvolid, voltype, &storeEntry,
4894                                   LOCKREL_OPCODE | LOCKREL_AFSID |
4895                                   LOCKREL_TIMESTAMP);
4896             if (vcode) {
4897                 fprintf(STDERR,
4898                         "Could not update the entry for volume number %lu  \n",
4899                         (unsigned long)pvolid);
4900                 error = vcode;
4901                 goto refail;
4902             }
4903             islocked = 0;
4904             if (verbose)
4905                 EnumerateEntry(&entry);
4906         }
4907
4908
4909     }
4910   refail:
4911     if (tocall) {
4912         code = rx_EndCall(tocall, rxError);
4913         if (!error)
4914             error = code;
4915     }
4916     if (islocked) {
4917         vcode =
4918             ubik_VL_ReleaseLock(cstruct, 0, pvolid, voltype,
4919                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4920         if (vcode) {
4921             fprintf(STDERR,
4922                     "Could not release lock on the VLDB entry for the volume %lu\n",
4923                     (unsigned long)pvolid);
4924             if (!error)
4925                 error = vcode;
4926         }
4927     }
4928     if (totid) {
4929         code = AFSVolEndTrans(toconn, totid, &rcode);
4930         if (!code)
4931             code = rcode;
4932         if (code) {
4933             fprintf(STDERR, "Could not end transaction on the volume %lu \n",
4934                     (unsigned long)pvolid);
4935             if (!error)
4936                 error = code;
4937         }
4938     }
4939     if (temptid) {
4940         code = AFSVolEndTrans(toconn, temptid, &rcode);
4941         if (!code)
4942             code = rcode;
4943         if (code) {
4944             fprintf(STDERR, "Could not end transaction on the volume %lu \n",
4945                     (unsigned long)pvolid);
4946             if (!error)
4947                 error = code;
4948         }
4949     }
4950     if (tempconn)
4951         rx_DestroyConnection(tempconn);
4952     if (toconn)
4953         rx_DestroyConnection(toconn);
4954     PrintError("", error);
4955     return error;
4956 }
4957
4958 int
4959 UV_RestoreVolume(afs_uint32 toserver, afs_int32 topart, afs_uint32 tovolid,
4960                  char tovolname[], int flags,
4961                  afs_int32(*WriteData) (struct rx_call *, void *),
4962                  void *rock)
4963 {
4964     return UV_RestoreVolume2(toserver, topart, tovolid, 0, tovolname, flags,
4965                              WriteData, rock);
4966 }
4967
4968
4969 /*unlocks the vldb entry associated with <volid> */
4970 int
4971 UV_LockRelease(afs_uint32 volid)
4972 {
4973     afs_int32 vcode;
4974
4975     VPRINT("Binding to the VLDB server\n");
4976     vcode =
4977         ubik_VL_ReleaseLock(cstruct, 0, volid, -1,
4978                   LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
4979     if (vcode) {
4980         fprintf(STDERR,
4981                 "Could not unlock the entry for volume number %lu in VLDB \n",
4982                 (unsigned long)volid);
4983         PrintError("", vcode);
4984         return (vcode);
4985     }
4986     VPRINT("VLDB updated\n");
4987     return 0;
4988
4989 }
4990
4991 /* old interface to add rosites */
4992 int
4993 UV_AddSite(afs_uint32 server, afs_int32 part, afs_uint32 volid,
4994            afs_int32 valid)
4995 {
4996     return UV_AddSite2(server, part, volid, 0, valid);
4997 }
4998
4999 /*adds <server> and <part> as a readonly replication site for <volid>
5000 *in vldb */
5001 int
5002 UV_AddSite2(afs_uint32 server, afs_int32 part, afs_uint32 volid,
5003             afs_uint32 rovolid, afs_int32 valid)
5004 {
5005     int j, nro = 0, islocked = 0;
5006     struct nvldbentry entry, storeEntry, entry2;
5007     afs_int32 vcode, error = 0;
5008     char apartName[10];
5009
5010     error = ubik_VL_SetLock(cstruct, 0, volid, RWVOL, VLOP_ADDSITE);
5011     if (error) {
5012         fprintf(STDERR,
5013                 " Could not lock the VLDB entry for the volume %lu \n",
5014                 (unsigned long)volid);
5015         goto asfail;
5016     }
5017     islocked = 1;
5018
5019     error = VLDB_GetEntryByID(volid, RWVOL, &entry);
5020     if (error) {
5021         fprintf(STDERR,
5022                 "Could not fetch the VLDB entry for volume number %lu  \n",
5023                 (unsigned long)volid);
5024         goto asfail;
5025
5026     }
5027     if (!ISNAMEVALID(entry.name)) {
5028         fprintf(STDERR,
5029                 "Volume name %s is too long, rename before adding site\n",
5030                 entry.name);
5031         error = VOLSERBADOP;
5032         goto asfail;
5033     }
5034     MapHostToNetwork(&entry);
5035
5036     /* See if it's too many entries */
5037     if (entry.nServers >= NMAXNSERVERS) {
5038         fprintf(STDERR, "Total number of entries will exceed %u\n",
5039                 NMAXNSERVERS);
5040         error = VOLSERBADOP;
5041         goto asfail;
5042     }
5043
5044     /* See if it's on the same server */
5045     for (j = 0; j < entry.nServers; j++) {
5046         if (entry.serverFlags[j] & ITSROVOL) {
5047             nro++;
5048             if (VLDB_IsSameAddrs(server, entry.serverNumber[j], &error)) {
5049                 if (error) {
5050                     fprintf(STDERR,
5051                             "Failed to get info about server's %d address(es) from vlserver (err=%d); aborting call!\n",
5052                             server, error);
5053                 } else {
5054                     MapPartIdIntoName(entry.serverPartition[j], apartName);
5055                     fprintf(STDERR,
5056                             "RO already exists on partition %s. Multiple ROs on a single server aren't allowed\n",
5057                             apartName);
5058                     error = VOLSERBADOP;
5059                 }
5060                 goto asfail;
5061             }
5062         }
5063     }
5064
5065     /* See if it's too many RO sites - leave one for the RW */
5066     if (nro >= NMAXNSERVERS - 1) {
5067         fprintf(STDERR, "Total number of sites will exceed %u\n",
5068                 NMAXNSERVERS - 1);
5069         error = VOLSERBADOP;
5070         goto asfail;
5071     }
5072
5073     /* if rovolid == 0, we leave the RO volume id alone. If the volume doesn't
5074      * have an RO volid at this point (i.e. entry.volumeId[ROVOL] ==
5075      * INVALID_BID) and we leave it alone, it gets an RO volid at release-time.
5076      */
5077     if (rovolid) {
5078         if (entry.volumeId[ROVOL] == INVALID_BID) {
5079             vcode = VLDB_GetEntryByID(rovolid, -1, &entry2);
5080             if (!vcode) {
5081                 fprintf(STDERR, "Volume ID %d already exists\n", rovolid);
5082                 return VVOLEXISTS;
5083             }
5084             VPRINT1("Using RO volume id %d.\n", rovolid);
5085             entry.volumeId[ROVOL] = rovolid;
5086         } else {
5087             fprintf(STDERR, "Ignoring given RO id %d, since volume already has RO id %d\n",
5088                 rovolid, entry.volumeId[ROVOL]);
5089         }
5090     }
5091
5092     VPRINT("Adding a new site ...");
5093     entry.serverNumber[entry.nServers] = server;
5094     entry.serverPartition[entry.nServers] = part;
5095     if (!valid) {
5096         entry.serverFlags[entry.nServers] = (ITSROVOL | RO_DONTUSE);
5097     } else {
5098         entry.serverFlags[entry.nServers] = (ITSROVOL);
5099     }
5100     entry.nServers++;
5101
5102     MapNetworkToHost(&entry, &storeEntry);
5103     error =
5104         VLDB_ReplaceEntry(volid, RWVOL, &storeEntry,
5105                           LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5106     if (error) {
5107         fprintf(STDERR, "Could not update entry for volume %lu \n",
5108                 (unsigned long)volid);
5109         goto asfail;
5110     }
5111     islocked = 0;
5112     VDONE;
5113
5114   asfail:
5115     if (islocked) {
5116         vcode =
5117             ubik_VL_ReleaseLock(cstruct, 0, volid, RWVOL,
5118                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5119         if (vcode) {
5120             fprintf(STDERR,
5121                     "Could not release lock on volume entry for %lu \n",
5122                     (unsigned long)volid);
5123             PrintError("", vcode);
5124         }
5125     }
5126
5127     PrintError("", error);
5128     return error;
5129 }
5130
5131 /*removes <server> <part> as read only site for <volid> from the vldb */
5132 int
5133 UV_RemoveSite(afs_uint32 server, afs_int32 part, afs_uint32 volid)
5134 {
5135     afs_int32 vcode;
5136     struct nvldbentry entry, storeEntry;
5137
5138     vcode = ubik_VL_SetLock(cstruct, 0, volid, RWVOL, VLOP_ADDSITE);
5139     if (vcode) {
5140         fprintf(STDERR, " Could not lock the VLDB entry for volume %lu \n",
5141                 (unsigned long)volid);
5142         PrintError("", vcode);
5143         return (vcode);
5144     }
5145     vcode = VLDB_GetEntryByID(volid, RWVOL, &entry);
5146     if (vcode) {
5147         fprintf(STDERR,
5148                 "Could not fetch the entry for volume number %lu from VLDB \n",
5149                 (unsigned long)volid);
5150         PrintError("", vcode);
5151         return (vcode);
5152     }
5153     MapHostToNetwork(&entry);
5154     if (!Lp_ROMatch(server, part, &entry)) {
5155         /*this site doesnot exist  */
5156         fprintf(STDERR, "This site is not a replication site \n");
5157         vcode =
5158             ubik_VL_ReleaseLock(cstruct, 0, volid, RWVOL,
5159                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5160         if (vcode) {
5161             fprintf(STDERR, "Could not update entry for volume %lu \n",
5162                     (unsigned long)volid);
5163             PrintError("", vcode);
5164             ubik_VL_ReleaseLock(cstruct, 0, volid, RWVOL,
5165                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5166             return (vcode);
5167         }
5168         return VOLSERBADOP;
5169     } else {                    /*remove the rep site */
5170         Lp_SetROValue(&entry, server, part, 0, 0);
5171         entry.nServers--;
5172         if ((entry.nServers == 1) && (entry.flags & RW_EXISTS))
5173             entry.flags &= ~RO_EXISTS;
5174         if (entry.nServers < 1) {       /*this is the last ref */
5175             VPRINT1("Deleting the VLDB entry for %u ...", volid);
5176             fflush(STDOUT);
5177             vcode = ubik_VL_DeleteEntry(cstruct, 0, volid, ROVOL);
5178             if (vcode) {
5179                 fprintf(STDERR,
5180                         "Could not delete VLDB entry for volume %lu \n",
5181                         (unsigned long)volid);
5182                 PrintError("", vcode);
5183                 return (vcode);
5184             }
5185             VDONE;
5186         }
5187         MapNetworkToHost(&entry, &storeEntry);
5188         fprintf(STDOUT, "Deleting the replication site for volume %lu ...",
5189                 (unsigned long)volid);
5190         fflush(STDOUT);
5191         vcode =
5192             VLDB_ReplaceEntry(volid, RWVOL, &storeEntry,
5193                               LOCKREL_OPCODE | LOCKREL_AFSID |
5194                               LOCKREL_TIMESTAMP);
5195         if (vcode) {
5196             fprintf(STDERR,
5197                     "Could not release lock on volume entry for %lu \n",
5198                     (unsigned long)volid);
5199             PrintError("", vcode);
5200             ubik_VL_ReleaseLock(cstruct, 0, volid, RWVOL,
5201                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5202             return (vcode);
5203         }
5204         VDONE;
5205     }
5206     return 0;
5207 }
5208
5209 /*sets <server> <part> as read/write site for <volid> in the vldb */
5210 int
5211 UV_ChangeLocation(afs_uint32 server, afs_int32 part, afs_uint32 volid)
5212 {
5213     afs_int32 vcode;
5214     struct nvldbentry entry, storeEntry;
5215     int index;
5216
5217     vcode = ubik_VL_SetLock(cstruct, 0, volid, RWVOL, VLOP_ADDSITE);
5218     if (vcode) {
5219         fprintf(STDERR, " Could not lock the VLDB entry for volume %lu \n",
5220                 (unsigned long)volid);
5221         PrintError("", vcode);
5222         return (vcode);
5223     }
5224     vcode = VLDB_GetEntryByID(volid, RWVOL, &entry);
5225     if (vcode) {
5226         fprintf(STDERR,
5227                 "Could not fetch the entry for volume number %lu from VLDB \n",
5228                 (unsigned long)volid);
5229         PrintError("", vcode);
5230         return (vcode);
5231     }
5232     MapHostToNetwork(&entry);
5233     index = Lp_GetRwIndex(&entry);
5234     if (index < 0) {
5235         /* no RW site exists  */
5236         fprintf(STDERR, "No existing RW site for volume %lu",
5237                 (unsigned long)volid);
5238         vcode =
5239             ubik_VL_ReleaseLock(cstruct, 0, volid, RWVOL,
5240                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5241         if (vcode) {
5242             fprintf(STDERR,
5243                     "Could not release lock on entry for volume %lu \n",
5244                     (unsigned long)volid);
5245             PrintError("", vcode);
5246             return (vcode);
5247         }
5248         return VOLSERBADOP;
5249     } else {                    /* change the RW site */
5250         entry.serverNumber[index] = server;
5251         entry.serverPartition[index] = part;
5252         MapNetworkToHost(&entry, &storeEntry);
5253         vcode =
5254             VLDB_ReplaceEntry(volid, RWVOL, &storeEntry,
5255                               LOCKREL_OPCODE | LOCKREL_AFSID |
5256                               LOCKREL_TIMESTAMP);
5257         if (vcode) {
5258             fprintf(STDERR, "Could not update entry for volume %lu \n",
5259                     (unsigned long)volid);
5260             PrintError("", vcode);
5261             ubik_VL_ReleaseLock(cstruct, 0, volid, RWVOL,
5262                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
5263             return (vcode);
5264         }
5265         VDONE;
5266     }
5267     return 0;
5268 }
5269
5270 /*list all the partitions on <aserver> */
5271 int
5272 UV_ListPartitions(afs_uint32 aserver, struct partList *ptrPartList,
5273                   afs_int32 * cntp)
5274 {
5275     struct rx_connection *aconn;
5276     struct pIDs partIds;
5277     struct partEntries partEnts;
5278     int i, j = 0, code;
5279
5280     *cntp = 0;
5281     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5282
5283     partEnts.partEntries_len = 0;
5284     partEnts.partEntries_val = NULL;
5285     code = AFSVolXListPartitions(aconn, &partEnts);     /* this is available only on new servers */
5286     if (code == RXGEN_OPCODE) {
5287         for (i = 0; i < 26; i++)        /* try old interface */
5288             partIds.partIds[i] = -1;
5289         code = AFSVolListPartitions(aconn, &partIds);
5290         if (!code) {
5291             for (i = 0; i < 26; i++) {
5292                 if ((partIds.partIds[i]) != -1) {
5293                     ptrPartList->partId[j] = partIds.partIds[i];
5294                     ptrPartList->partFlags[j] = PARTVALID;
5295                     j++;
5296                 } else
5297                     ptrPartList->partFlags[i] = 0;
5298             }
5299             *cntp = j;
5300         }
5301     } else if (!code) {
5302         *cntp = partEnts.partEntries_len;
5303         if (*cntp > VOLMAXPARTS) {
5304             fprintf(STDERR,
5305                     "Warning: number of partitions on the server too high %d (process only %d)\n",
5306                     *cntp, VOLMAXPARTS);
5307             *cntp = VOLMAXPARTS;
5308         }
5309         for (i = 0; i < *cntp; i++) {
5310             ptrPartList->partId[i] = partEnts.partEntries_val[i];
5311             ptrPartList->partFlags[i] = PARTVALID;
5312         }
5313         free(partEnts.partEntries_val);
5314     }
5315
5316    /* out: */
5317     if (code)
5318         fprintf(STDERR,
5319                 "Could not fetch the list of partitions from the server\n");
5320     PrintError("", code);
5321     if (aconn)
5322         rx_DestroyConnection(aconn);
5323     return code;
5324 }
5325
5326
5327 /*zap the list of volumes specified by volPtrArray (the volCloneId field).
5328  This is used by the backup system */
5329 int
5330 UV_ZapVolumeClones(afs_uint32 aserver, afs_int32 apart,
5331                    struct volDescription *volPtr, afs_int32 arraySize)
5332 {
5333     struct rx_connection *aconn;
5334     struct volDescription *curPtr;
5335     int curPos;
5336     afs_int32 code = 0;
5337     afs_int32 success = 1;
5338
5339     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5340     curPos = 0;
5341     for (curPtr = volPtr; curPos < arraySize; curPtr++) {
5342         if (curPtr->volFlags & CLONEVALID) {
5343             curPtr->volFlags &= ~CLONEZAPPED;
5344             success = 1;
5345
5346             code = DoVolDelete(aconn, curPtr->volCloneId, apart,
5347                                "clone", 0, NULL, NULL);
5348             if (code)
5349                 success = 0;
5350
5351             if (success)
5352                 curPtr->volFlags |= CLONEZAPPED;
5353             if (!success)
5354                 fprintf(STDERR, "Could not zap volume %lu\n",
5355                         (unsigned long)curPtr->volCloneId);
5356             if (success)
5357                 VPRINT2("Clone of %s %u deleted\n", curPtr->volName,
5358                         curPtr->volCloneId);
5359             curPos++;
5360         }
5361     }
5362     if (aconn)
5363         rx_DestroyConnection(aconn);
5364     return 0;
5365 }
5366
5367 /*return a list of clones of the volumes specified by volPtrArray. Used by the
5368  backup system */
5369 int
5370 UV_GenerateVolumeClones(afs_uint32 aserver, afs_int32 apart,
5371                         struct volDescription *volPtr, afs_int32 arraySize)
5372 {
5373     struct rx_connection *aconn;
5374     struct volDescription *curPtr;
5375     int curPos;
5376     afs_int32 code = 0;
5377     afs_int32 rcode = 0;
5378     afs_int32 tid;
5379     int reuseCloneId = 0;
5380     afs_uint32 curCloneId = 0;
5381     char cloneName[256];        /*max vol name */
5382
5383     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5384     curPos = 0;
5385     if ((volPtr->volFlags & REUSECLONEID) && (volPtr->volFlags & ENTRYVALID))
5386         reuseCloneId = 1;
5387     else {                      /*get a bunch of id's from vldb */
5388         code =
5389             ubik_VL_GetNewVolumeId(cstruct, 0, arraySize, &curCloneId);
5390         if (code) {
5391             fprintf(STDERR, "Could not get ID's for the clone from VLDB\n");
5392             PrintError("", code);
5393             return code;
5394         }
5395     }
5396
5397     for (curPtr = volPtr; curPos < arraySize; curPtr++) {
5398         if (curPtr->volFlags & ENTRYVALID) {
5399
5400             curPtr->volFlags |= CLONEVALID;
5401             /*make a clone of curParentId and record as curPtr->volCloneId */
5402             code =
5403                 AFSVolTransCreate_retry(aconn, curPtr->volId, apart, ITOffline,
5404                                   &tid);
5405             if (code)
5406                 VPRINT2("Clone for volume %s %u failed \n", curPtr->volName,
5407                         curPtr->volId);
5408             if (code) {
5409                 curPtr->volFlags &= ~CLONEVALID;        /*cant clone */
5410                 curPos++;
5411                 continue;
5412             }
5413             if (strlen(curPtr->volName) < (VOLSER_OLDMAXVOLNAME - 9)) {
5414                 strcpy(cloneName, curPtr->volName);
5415                 strcat(cloneName, "-tmpClone-");
5416             } else
5417                 strcpy(cloneName, "-tmpClone");
5418             if (reuseCloneId) {
5419                 curPtr->volCloneId = curCloneId;
5420                 curCloneId++;
5421             }
5422
5423             code =
5424                 AFSVolClone(aconn, tid, 0, readonlyVolume, cloneName,
5425                             &(curPtr->volCloneId));
5426             if (code) {
5427                 curPtr->volFlags &= ~CLONEVALID;
5428                 curPos++;
5429                 fprintf(STDERR, "Could not clone %s due to error %lu\n",
5430                         curPtr->volName, (unsigned long)code);
5431                 code = AFSVolEndTrans(aconn, tid, &rcode);
5432                 if (code)
5433                     fprintf(STDERR, "WARNING: could not end transaction\n");
5434                 continue;
5435             }
5436             VPRINT2("********** Cloned %s temporary %u\n", cloneName,
5437                     curPtr->volCloneId);
5438             code = AFSVolEndTrans(aconn, tid, &rcode);
5439             if (code || rcode) {
5440                 curPtr->volFlags &= ~CLONEVALID;
5441                 curPos++;
5442                 continue;
5443             }
5444
5445             curPos++;
5446         }
5447     }
5448     if (aconn)
5449         rx_DestroyConnection(aconn);
5450     return 0;
5451 }
5452
5453
5454 /*list all the volumes on <aserver> and <apart>. If all = 1, then all the
5455 * relevant fields of the volume are also returned. This is a heavy weight operation.*/
5456 int
5457 UV_ListVolumes(afs_uint32 aserver, afs_int32 apart, int all,
5458                struct volintInfo **resultPtr, afs_int32 * size)
5459 {
5460     struct rx_connection *aconn;
5461     afs_int32 code = 0;
5462     volEntries volumeInfo;
5463
5464     code = 0;
5465     *size = 0;
5466     *resultPtr = (volintInfo *) 0;
5467     volumeInfo.volEntries_val = (volintInfo *) 0;       /*this hints the stub to allocate space */
5468     volumeInfo.volEntries_len = 0;
5469
5470     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5471     code = AFSVolListVolumes(aconn, apart, all, &volumeInfo);
5472     if (code) {
5473         fprintf(STDERR,
5474                 "Could not fetch the list of volumes from the server\n");
5475     } else {
5476         *resultPtr = volumeInfo.volEntries_val;
5477         *size = volumeInfo.volEntries_len;
5478     }
5479
5480     if (aconn)
5481         rx_DestroyConnection(aconn);
5482     PrintError("", code);
5483     return code;
5484 }
5485
5486 /*------------------------------------------------------------------------
5487  * EXPORTED UV_XListVolumes
5488  *
5489  * Description:
5490  *      List the extended information for all the volumes on a particular
5491  *      File Server and partition.  We may either return the volume's ID
5492  *      or all of its extended information.
5493  *
5494  * Arguments:
5495  *      a_serverID         : Address of the File Server for which we want
5496  *                              extended volume info.
5497  *      a_partID           : Partition for which we want the extended
5498  *                              volume info.
5499  *      a_all              : If non-zero, fetch ALL the volume info,
5500  *                              otherwise just the volume ID.
5501  *      a_resultPP         : Ptr to the address of the area containing
5502  *                              the returned volume info.
5503  *      a_numEntsInResultP : Ptr for the value we set for the number of
5504  *                              entries returned.
5505  *
5506  * Returns:
5507  *      0 on success,
5508  *      Otherise, the return value of AFSVolXListVolumes.
5509  *
5510  * Environment:
5511  *      This routine is closely related to UV_ListVolumes, which returns
5512  *      only the standard level of detail on AFS volumes. It is a
5513  *      heavyweight operation, zipping through all the volume entries for
5514  *      a given server/partition.
5515  *
5516  * Side Effects:
5517  *      As advertised.
5518  *------------------------------------------------------------------------*/
5519
5520 int
5521 UV_XListVolumes(afs_uint32 a_serverID, afs_int32 a_partID, int a_all,
5522                 struct volintXInfo **a_resultPP,
5523                 afs_int32 * a_numEntsInResultP)
5524 {
5525     struct rx_connection *rxConnP;      /*Ptr to the Rx connection involved */
5526     afs_int32 code;             /*Error code to return */
5527     volXEntries volumeXInfo;    /*Area for returned extended vol info */
5528
5529     /*
5530      * Set up our error code and the area for returned extended volume info.
5531      * We set the val field to a null pointer as a hint for the stub to
5532      * allocate space.
5533      */
5534     code = 0;
5535     *a_numEntsInResultP = 0;
5536     *a_resultPP = (volintXInfo *) 0;
5537     volumeXInfo.volXEntries_val = (volintXInfo *) 0;
5538     volumeXInfo.volXEntries_len = 0;
5539
5540     /*
5541      * Bind to the Volume Server port on the File Server machine in question,
5542      * then go for it.
5543      */
5544     rxConnP = UV_Bind(a_serverID, AFSCONF_VOLUMEPORT);
5545     code = AFSVolXListVolumes(rxConnP, a_partID, a_all, &volumeXInfo);
5546     if (code)
5547         fprintf(STDERR, "[UV_XListVolumes] Couldn't fetch volume list\n");
5548     else {
5549         /*
5550          * We got the info; pull out the pointer to where the results lie
5551          * and how many entries are there.
5552          */
5553         *a_resultPP = volumeXInfo.volXEntries_val;
5554         *a_numEntsInResultP = volumeXInfo.volXEntries_len;
5555     }
5556
5557     /*
5558      * If we got an Rx connection, throw it away.
5559      */
5560     if (rxConnP)
5561         rx_DestroyConnection(rxConnP);
5562
5563     PrintError("", code);
5564     return (code);
5565 }                               /*UV_XListVolumes */
5566
5567 /* get all the information about volume <volid> on <aserver> and <apart> */
5568 int
5569 UV_ListOneVolume(afs_uint32 aserver, afs_int32 apart, afs_uint32 volid,
5570                  struct volintInfo **resultPtr)
5571 {
5572     struct rx_connection *aconn;
5573     afs_int32 code = 0;
5574     volEntries volumeInfo;
5575
5576     code = 0;
5577
5578     *resultPtr = (volintInfo *) 0;
5579     volumeInfo.volEntries_val = (volintInfo *) 0;       /*this hints the stub to allocate space */
5580     volumeInfo.volEntries_len = 0;
5581
5582     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
5583     code = AFSVolListOneVolume(aconn, apart, volid, &volumeInfo);
5584     if (code) {
5585         fprintf(STDERR,
5586                 "Could not fetch the information about volume %lu from the server\n",
5587                 (unsigned long)volid);
5588     } else {
5589         *resultPtr = volumeInfo.volEntries_val;
5590
5591     }
5592
5593     if (aconn)
5594         rx_DestroyConnection(aconn);
5595     PrintError("", code);
5596     return code;
5597 }
5598
5599 /*------------------------------------------------------------------------
5600  * EXPORTED UV_XListOneVolume
5601  *
5602  * Description:
5603  *      List the extended information for a volume on a particular File
5604  *      Server and partition.
5605  *
5606  * Arguments:
5607  *      a_serverID         : Address of the File Server for which we want
5608  *                              extended volume info.
5609  *      a_partID           : Partition for which we want the extended
5610  *                              volume info.
5611  *      a_volID            : Volume ID for which we want the info.
5612  *      a_resultPP         : Ptr to the address of the area containing
5613  *                              the returned volume info.
5614  *
5615  * Returns:
5616  *      0 on success,
5617  *      Otherise, the return value of AFSVolXListOneVolume.
5618  *
5619  * Environment:
5620  *      This routine is closely related to UV_ListOneVolume, which returns
5621  *      only the standard level of detail on the chosen AFS volume.
5622  *
5623  * Side Effects:
5624  *      As advertised.
5625  *------------------------------------------------------------------------*/
5626
5627 int
5628 UV_XListOneVolume(afs_uint32 a_serverID, afs_int32 a_partID, afs_uint32 a_volID,
5629                   struct volintXInfo **a_resultPP)
5630 {
5631     struct rx_connection *rxConnP;      /*Rx connection to Volume Server */
5632     afs_int32 code;             /*Error code */
5633     volXEntries volumeXInfo;    /*Area for returned info */
5634
5635     /*
5636      * Set up our error code, and the area we're in which we are returning
5637      * the info.  Setting the val field to a null pointer tells the stub
5638      * to allocate space for us.
5639      */
5640     code = 0;
5641     *a_resultPP = (volintXInfo *) 0;
5642     volumeXInfo.volXEntries_val = (volintXInfo *) 0;
5643     volumeXInfo.volXEntries_len = 0;
5644
5645     /*
5646      * Bind to the Volume Server port on the File Server machine in question,
5647      * then go for it.
5648      */
5649     rxConnP = UV_Bind(a_serverID, AFSCONF_VOLUMEPORT);
5650     code = AFSVolXListOneVolume(rxConnP, a_partID, a_volID, &volumeXInfo);
5651     if (code)
5652         fprintf(STDERR,
5653                 "[UV_XListOneVolume] Couldn't fetch the volume information\n");
5654     else
5655         /*
5656          * We got the info; pull out the pointer to where the results lie.
5657          */
5658         *a_resultPP = volumeXInfo.volXEntries_val;
5659
5660     /*
5661      * If we got an Rx connection, throw it away.
5662      */
5663     if (rxConnP)
5664         rx_DestroyConnection(rxConnP);
5665
5666     PrintError("", code);
5667     return code;
5668 }
5669
5670 /* CheckVolume()
5671  *    Given a volume we read from a partition, check if it is
5672  *    represented in the VLDB correctly.
5673  *
5674  *    The VLDB is looked up by the RW volume id (not its name).
5675  *    The RW contains the true name of the volume (BK and RO set
5676  *       the name in the VLDB only on creation of the VLDB entry).
5677  *    We want rules strict enough that when we check all volumes
5678  *       on one partition, it does not need to be done again. IE:
5679  *       two volumes on different partitions won't constantly
5680  *       change a VLDB entry away from what the other set.
5681  *    For RW and BK volumes, we will always check the VLDB to see
5682  *       if the two exist on the server/partition. May seem redundant,
5683  *       but this is an easy check of the VLDB. IE: if the VLDB entry
5684  *       says the BK exists but no BK volume is there, we will detect
5685  *       this when we check the RW volume.
5686  *    VLDB entries are locked only when a change needs to be done.
5687  *    Output changed to look a lot like the "vos syncserv" otuput.
5688  */
5689 static afs_int32
5690 CheckVolume(volintInfo * volumeinfo, afs_uint32 aserver, afs_int32 apart,
5691             afs_int32 * modentry, afs_uint32 * maxvolid,
5692             struct nvldbentry *aentry)
5693 {
5694     int idx = 0;
5695     int j;
5696     afs_int32 code, error = 0;
5697     struct nvldbentry entry, storeEntry;
5698     char pname[10];
5699     int pass = 0, createentry, addvolume, modified, mod, doit = 1;
5700     afs_uint32 rwvolid;
5701     char hoststr[16];
5702
5703     if (modentry) {
5704         if (*modentry == 1)
5705             doit = 0;
5706         *modentry = 0;
5707     }
5708     rwvolid =
5709         ((volumeinfo->type ==
5710           RWVOL) ? volumeinfo->volid : volumeinfo->parentID);
5711
5712   retry:
5713     /* Check to see if the VLDB is ok without locking it (pass 1).
5714      * If it will change, then lock the VLDB entry, read it again,
5715      * then make the changes to it (pass 2).
5716      */
5717     if (++pass == 2) {
5718         code = ubik_VL_SetLock(cstruct, 0, rwvolid, RWVOL, VLOP_DELETE);
5719         if (code) {
5720             fprintf(STDERR, "Could not lock VLDB entry for %lu\n",
5721                     (unsigned long)rwvolid);
5722             ERROR_EXIT(code);
5723         }
5724     }
5725
5726     createentry = 0;            /* Do we need to create a VLDB entry */
5727     addvolume = 0;              /* Add this volume to the VLDB entry */
5728     modified = 0;               /* The VLDB entry was modified */
5729
5730     if (aentry) {
5731         memcpy(&entry, aentry, sizeof(entry));
5732     } else {
5733         /* Read the entry from VLDB by its RW volume id */
5734         code = VLDB_GetEntryByID(rwvolid, RWVOL, &entry);
5735         if (code) {
5736             if (code != VL_NOENT) {
5737                 fprintf(STDOUT,
5738                         "Could not retrieve the VLDB entry for volume %lu \n",
5739                         (unsigned long)rwvolid);
5740                 ERROR_EXIT(code);
5741             }
5742
5743             memset(&entry, 0, sizeof(entry));
5744             vsu_ExtractName(entry.name, volumeinfo->name);      /* Store name of RW */
5745
5746             createentry = 1;
5747         } else {
5748             MapHostToNetwork(&entry);
5749         }
5750     }
5751
5752     if (verbose && (pass == 1)) {
5753         fprintf(STDOUT, "_______________________________\n");
5754         fprintf(STDOUT, "\n-- status before -- \n");
5755         if (createentry) {
5756             fprintf(STDOUT, "\n**does not exist**\n");
5757         } else {
5758             if ((entry.flags & RW_EXISTS) || (entry.flags & RO_EXISTS)
5759                 || (entry.flags & BACK_EXISTS))
5760                 EnumerateEntry(&entry);
5761         }
5762         fprintf(STDOUT, "\n");
5763     }
5764
5765     if (volumeinfo->type == RWVOL) {    /* RW volume exists */
5766         if (createentry) {
5767             idx = 0;
5768             entry.nServers = 1;
5769             addvolume++;
5770         } else {
5771             /* Check existence of RW and BK volumes */
5772             code = CheckVldbRWBK(&entry, &mod);
5773             if (code)
5774                 ERROR_EXIT(code);
5775             if (mod)
5776                 modified++;
5777
5778             idx = Lp_GetRwIndex(&entry);
5779             if (idx == -1) {    /* RW index not found in the VLDB entry */
5780                 idx = entry.nServers;   /* put it into next index */
5781                 entry.nServers++;
5782                 addvolume++;
5783             } else {            /* RW index found in the VLDB entry. */
5784                 /* Verify if this volume's location matches where the VLDB says it is */
5785                 if (!Lp_Match(aserver, apart, &entry)) {
5786                     if (entry.flags & RW_EXISTS) {
5787                         /* The RW volume exists elsewhere - report this one a duplicate */
5788                         if (pass == 1) {
5789                             MapPartIdIntoName(apart, pname);
5790                             fprintf(STDERR,
5791                                     "*** Warning: Orphaned RW volume %lu exists on %s %s\n",
5792                                     (unsigned long)rwvolid,
5793                                     noresolve ?
5794                                     afs_inet_ntoa_r(aserver, hoststr) :
5795                                     hostutil_GetNameByINet(aserver), pname);
5796                             MapPartIdIntoName(entry.serverPartition[idx],
5797                                               pname);
5798                             fprintf(STDERR,
5799                                     "    VLDB reports RW volume %lu exists on %s %s\n",
5800                                     (unsigned long)rwvolid,
5801                                     noresolve ?
5802                                     afs_inet_ntoa_r(entry.serverNumber[idx], hoststr) :
5803                                     hostutil_GetNameByINet(entry.
5804                                                            serverNumber[idx]),
5805                                     pname);
5806                         }
5807                     } else {
5808                         /* The RW volume does not exist - have VLDB point to this one */
5809                         addvolume++;
5810
5811                         /* Check for orphaned BK volume on old partition */
5812                         if (entry.flags & BACK_EXISTS) {
5813                             if (pass == 1) {
5814                                 MapPartIdIntoName(entry.serverPartition[idx],
5815                                                   pname);
5816                                 fprintf(STDERR,
5817                                         "*** Warning: Orphaned BK volume %u exists on %s %s\n",
5818                                         entry.volumeId[BACKVOL],
5819                                         noresolve ?
5820                                         afs_inet_ntoa_r(entry.serverNumber[idx], hoststr) :
5821                                         hostutil_GetNameByINet(entry.
5822                                                                serverNumber
5823                                                                [idx]), pname);
5824                                 MapPartIdIntoName(apart, pname);
5825                                 fprintf(STDERR,
5826                                         "    VLDB reports its RW volume %lu exists on %s %s\n",
5827                                         (unsigned long)rwvolid,
5828                                         noresolve ?
5829                                         afs_inet_ntoa_r(aserver, hoststr) :
5830                                         hostutil_GetNameByINet(aserver),
5831                                         pname);
5832                             }
5833                         }
5834                     }
5835                 } else {
5836                     /* Volume location matches the VLDB location */
5837                     if ((volumeinfo->backupID && !entry.volumeId[BACKVOL])
5838                         || (volumeinfo->cloneID && !entry.volumeId[ROVOL])
5839                         ||
5840                         (strncmp
5841                          (entry.name, volumeinfo->name,
5842                           VOLSER_OLDMAXVOLNAME) != 0)) {
5843                         addvolume++;
5844                     }
5845                 }
5846             }
5847         }
5848
5849         if (addvolume) {
5850             entry.flags |= RW_EXISTS;
5851             entry.volumeId[RWVOL] = rwvolid;
5852             if (!entry.volumeId[BACKVOL])
5853                 entry.volumeId[BACKVOL] = volumeinfo->backupID;
5854             if (!entry.volumeId[ROVOL])
5855                 entry.volumeId[ROVOL] = volumeinfo->cloneID;
5856
5857             entry.serverFlags[idx] = ITSRWVOL;
5858             entry.serverNumber[idx] = aserver;
5859             entry.serverPartition[idx] = apart;
5860             strncpy(entry.name, volumeinfo->name, VOLSER_OLDMAXVOLNAME);
5861
5862             modified++;
5863
5864             /* One last check - to update BK if need to */
5865             code = CheckVldbRWBK(&entry, &mod);
5866             if (code)
5867                 ERROR_EXIT(code);
5868             if (mod)
5869                 modified++;
5870         }
5871     }
5872
5873     else if (volumeinfo->type == BACKVOL) {     /* A BK volume */
5874         if (createentry) {
5875             idx = 0;
5876             entry.nServers = 1;
5877             addvolume++;
5878         } else {
5879             /* Check existence of RW and BK volumes */
5880             code = CheckVldbRWBK(&entry, &mod);
5881             if (code)
5882                 ERROR_EXIT(code);
5883             if (mod)
5884                 modified++;
5885
5886             idx = Lp_GetRwIndex(&entry);
5887             if (idx == -1) {    /* RW index not found in the VLDB entry */
5888                 idx = entry.nServers;   /* Put it into next index */
5889                 entry.nServers++;
5890                 addvolume++;
5891             } else {            /* RW index found in the VLDB entry */
5892                 /* Verify if this volume's location matches where the VLDB says it is */
5893                 if (!Lp_Match(aserver, apart, &entry)) {
5894                     /* VLDB says RW and/or BK is elsewhere - report this BK volume orphaned */
5895                     if (pass == 1) {
5896                         MapPartIdIntoName(apart, pname);
5897                         fprintf(STDERR,
5898                                 "*** Warning: Orphaned BK volume %lu exists on %s %s\n",
5899                                 (unsigned long)volumeinfo->volid,
5900                                 noresolve ?
5901                                 afs_inet_ntoa_r(aserver, hoststr) :
5902                                 hostutil_GetNameByINet(aserver), pname);
5903                         MapPartIdIntoName(entry.serverPartition[idx], pname);
5904                         fprintf(STDERR,
5905                                 "    VLDB reports its RW/BK volume %lu exists on %s %s\n",
5906                                 (unsigned long)rwvolid,
5907                                 noresolve ?
5908                                 afs_inet_ntoa_r(entry.serverNumber[idx], hoststr) :
5909                                 hostutil_GetNameByINet(entry.
5910                                                        serverNumber[idx]),
5911                                 pname);
5912                     }
5913                 } else {
5914                     if (volumeinfo->volid != entry.volumeId[BACKVOL]) {
5915                         if (!(entry.flags & BACK_EXISTS)) {
5916                             addvolume++;
5917                         } else if (volumeinfo->volid >
5918                                    entry.volumeId[BACKVOL]) {
5919                             addvolume++;
5920
5921                             if (pass == 1) {
5922                                 MapPartIdIntoName(entry.serverPartition[idx],
5923                                                   pname);
5924                                 fprintf(STDERR,
5925                                         "*** Warning: Orphaned BK volume %u exists on %s %s\n",
5926                                         entry.volumeId[BACKVOL],
5927                                         noresolve ?
5928                                         afs_inet_ntoa_r(aserver, hoststr) :
5929                                         hostutil_GetNameByINet(aserver),
5930                                         pname);
5931                                 fprintf(STDERR,
5932                                         "    VLDB reports its BK volume ID is %lu\n",
5933                                         (unsigned long)volumeinfo->volid);
5934                             }
5935                         } else {
5936                             if (pass == 1) {
5937                                 MapPartIdIntoName(entry.serverPartition[idx],
5938                                                   pname);
5939                                 fprintf(STDERR,
5940                                         "*** Warning: Orphaned BK volume %lu exists on %s %s\n",
5941                                         (unsigned long)volumeinfo->volid,
5942                                         noresolve ?
5943                                         afs_inet_ntoa_r(aserver, hoststr) :
5944                                         hostutil_GetNameByINet(aserver),
5945                                         pname);
5946                                 fprintf(STDERR,
5947                                         "    VLDB reports its BK volume ID is %u\n",
5948                                         entry.volumeId[BACKVOL]);
5949                             }
5950                         }
5951                     } else if (!entry.volumeId[BACKVOL]) {
5952                         addvolume++;
5953                     }
5954                 }
5955             }
5956         }
5957         if (addvolume) {
5958             entry.flags |= BACK_EXISTS;
5959             entry.volumeId[RWVOL] = rwvolid;
5960             entry.volumeId[BACKVOL] = volumeinfo->volid;
5961
5962             entry.serverNumber[idx] = aserver;
5963             entry.serverPartition[idx] = apart;
5964             entry.serverFlags[idx] = ITSBACKVOL;
5965
5966             modified++;
5967         }
5968     }
5969
5970     else if (volumeinfo->type == ROVOL) {       /* A RO volume */
5971         if (volumeinfo->volid == entry.volumeId[ROVOL]) {
5972             /* This is a quick check to see if the RO entry exists in the
5973              * VLDB so we avoid the CheckVldbRO() call (which checks if each
5974              * RO volume listed in the VLDB exists).
5975              */
5976             idx = Lp_ROMatch(aserver, apart, &entry) - 1;
5977             if (idx == -1) {
5978                 idx = entry.nServers;
5979                 entry.nServers++;
5980                 addvolume++;
5981             } else {
5982                 if (!(entry.flags & RO_EXISTS)) {
5983                     addvolume++;
5984                 }
5985             }
5986         } else {
5987             /* Before we correct the VLDB entry, make sure all the
5988              * ROs listed in the VLDB exist.
5989              */
5990             code = CheckVldbRO(&entry, &mod);
5991             if (code)
5992                 ERROR_EXIT(code);
5993             if (mod)
5994                 modified++;
5995
5996             if (!(entry.flags & RO_EXISTS)) {
5997                 /* No RO exists in the VLDB entry - add this one */
5998                 idx = entry.nServers;
5999                 entry.nServers++;
6000                 addvolume++;
6001             } else if (volumeinfo->volid > entry.volumeId[ROVOL]) {
6002                 /* The volume headers's RO ID does not match that in the VLDB entry,
6003                  * and the vol hdr's ID is greater (implies more recent). So delete
6004                  * all the RO volumes listed in VLDB entry and add this volume.
6005                  */
6006                 for (j = 0; j < entry.nServers; j++) {
6007                     if (entry.serverFlags[j] & ITSROVOL) {
6008                         /* Verify this volume exists and print message we are orphaning it */
6009                         if (pass == 1) {
6010                             MapPartIdIntoName(apart, pname);
6011                             fprintf(STDERR,
6012                                     "*** Warning: Orphaned RO volume %u exists on %s %s\n",
6013                                     entry.volumeId[ROVOL],
6014                                     noresolve ?
6015                                     afs_inet_ntoa_r(entry.serverNumber[j], hoststr) :
6016                                     hostutil_GetNameByINet(entry.
6017                                                            serverNumber[j]),
6018                                     pname);
6019                             fprintf(STDERR,
6020                                     "    VLDB reports its RO volume ID is %lu\n",
6021                                     (unsigned long)volumeinfo->volid);
6022                         }
6023
6024                         Lp_SetRWValue(&entry, entry.serverNumber[idx],
6025                                       entry.serverPartition[idx], 0L, 0L);
6026                         entry.nServers--;
6027                         modified++;
6028                         j--;
6029                     }
6030                 }
6031
6032                 idx = entry.nServers;
6033                 entry.nServers++;
6034                 addvolume++;
6035             } else if (volumeinfo->volid < entry.volumeId[ROVOL]) {
6036                 /* The volume headers's RO ID does not match that in the VLDB entry,
6037                  * and the vol hdr's ID is lower (implies its older). So orphan it.
6038                  */
6039                 if (pass == 1) {
6040                     MapPartIdIntoName(apart, pname);
6041                     fprintf(STDERR,
6042                             "*** Warning: Orphaned RO volume %lu exists on %s %s\n",
6043                             (unsigned long)volumeinfo->volid,
6044                             noresolve ?
6045                             afs_inet_ntoa_r(aserver, hoststr) :
6046                             hostutil_GetNameByINet(aserver), pname);
6047                     fprintf(STDERR,
6048                             "    VLDB reports its RO volume ID is %u\n",
6049                             entry.volumeId[ROVOL]);
6050                 }
6051             } else {
6052                 /* The RO volume ID in the volume header match that in the VLDB entry,
6053                  * and there exist RO volumes in the VLDB entry. See if any of them
6054                  * are this one. If not, then we add it.
6055                  */
6056                 idx = Lp_ROMatch(aserver, apart, &entry) - 1;
6057                 if (idx == -1) {
6058                     idx = entry.nServers;
6059                     entry.nServers++;
6060                     addvolume++;
6061                 }
6062             }
6063         }
6064
6065         if (addvolume) {
6066             entry.flags |= RO_EXISTS;
6067             entry.volumeId[RWVOL] = rwvolid;
6068             entry.volumeId[ROVOL] = volumeinfo->volid;
6069
6070             entry.serverNumber[idx] = aserver;
6071             entry.serverPartition[idx] = apart;
6072             entry.serverFlags[idx] = ITSROVOL;
6073
6074             modified++;
6075         }
6076     }
6077
6078     /* Remember largest volume id */
6079     if (entry.volumeId[ROVOL] > *maxvolid)
6080         *maxvolid = entry.volumeId[ROVOL];
6081     if (entry.volumeId[BACKVOL] > *maxvolid)
6082         *maxvolid = entry.volumeId[BACKVOL];
6083     if (entry.volumeId[RWVOL] > *maxvolid)
6084         *maxvolid = entry.volumeId[RWVOL];
6085
6086     if (modified && doit) {
6087         MapNetworkToHost(&entry, &storeEntry);
6088
6089         if (createentry) {
6090             code = VLDB_CreateEntry(&storeEntry);
6091             if (code) {
6092                 fprintf(STDOUT,
6093                         "Could not create a VLDB entry for the volume %lu\n",
6094                         (unsigned long)rwvolid);
6095                 ERROR_EXIT(code);
6096             }
6097         } else {
6098             if (pass == 1)
6099                 goto retry;
6100             code =
6101                 VLDB_ReplaceEntry(rwvolid, RWVOL, &storeEntry,
6102                                   LOCKREL_OPCODE | LOCKREL_AFSID |
6103                                   LOCKREL_TIMESTAMP);
6104             if (code) {
6105                 fprintf(STDERR, "Could not update entry for %lu\n",
6106                         (unsigned long)rwvolid);
6107                 ERROR_EXIT(code);
6108             }
6109         }
6110     } else if (pass == 2) {
6111         code =
6112             ubik_VL_ReleaseLock(cstruct, 0, rwvolid, RWVOL,
6113                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
6114         if (code) {
6115             PrintError("Could not unlock VLDB entry ", code);
6116         }
6117     }
6118
6119     if (modified && modentry) {
6120         *modentry = 1;
6121     }
6122
6123     if (aentry) {
6124         memcpy(aentry, &entry, sizeof(entry));
6125     }
6126
6127     if (verbose) {
6128         fprintf(STDOUT, "-- status after --\n");
6129         if (modified)
6130             EnumerateEntry(&entry);
6131         else
6132             fprintf(STDOUT, "\n**no change**\n");
6133     }
6134
6135   error_exit:
6136     VPRINT("\n_______________________________\n");
6137     return (error);
6138 }
6139
6140 static int
6141 sortVolumes(const void *a, const void *b)
6142 {
6143     volintInfo *v1 = (volintInfo *) a;
6144     volintInfo *v2 = (volintInfo *) b;
6145     afs_uint32 rwvolid1, rwvolid2;
6146
6147     rwvolid1 = ((v1->type == RWVOL) ? v1->volid : v1->parentID);
6148     rwvolid2 = ((v2->type == RWVOL) ? v2->volid : v2->parentID);
6149
6150     if (rwvolid1 > rwvolid2)
6151         return -1;              /* lower RW id goes first */
6152     if (rwvolid1 < rwvolid2)
6153         return 1;
6154
6155     if (v1->type == RWVOL)
6156         return -1;              /* RW vols go first */
6157     if (v2->type == RWVOL)
6158         return 1;
6159
6160     if ((v1->type == BACKVOL) && (v2->type == ROVOL))
6161         return -1;              /* BK vols next */
6162     if ((v1->type == ROVOL) && (v2->type == BACKVOL))
6163         return 1;
6164
6165     if (v1->volid < v2->volid)
6166         return 1;               /* larger volids first */
6167     if (v1->volid > v2->volid)
6168         return -1;
6169     return 0;
6170 }
6171
6172 /* UV_SyncVolume()
6173  *      Synchronise <aserver> <apart>(if flags = 1) <avolid>.
6174  *      Synchronize an individual volume against a sever and partition.
6175  *      Checks the VLDB entry (similar to syncserv) as well as checks
6176  *      if the volume exists on specified servers (similar to syncvldb).
6177  */
6178 int
6179 UV_SyncVolume(afs_uint32 aserver, afs_int32 apart, char *avolname, int flags)
6180 {
6181     struct rx_connection *aconn = 0;
6182     afs_int32 j, k, code, vcode, error = 0;
6183     afs_int32 tverbose;
6184     afs_int32 mod, modified = 0, deleted = 0;
6185     struct nvldbentry vldbentry;
6186     afs_uint32 volumeid = 0;
6187     volEntries volumeInfo;
6188     struct partList PartList;
6189     afs_int32 pcnt;
6190     afs_uint32 maxvolid = 0;
6191
6192     volumeInfo.volEntries_val = (volintInfo *) 0;
6193     volumeInfo.volEntries_len = 0;
6194
6195     /* Turn verbose logging off and do our own verbose logging */
6196     /* tverbose must be set before we call ERROR_EXIT() */
6197
6198     tverbose = verbose;
6199     if (flags & 2)
6200         tverbose = 1;
6201     verbose = 0;
6202
6203     if (!aserver && (flags & 1)) {
6204         /* fprintf(STDERR,"Partition option requires a server option\n"); */
6205         ERROR_EXIT(EINVAL);
6206     }
6207
6208     /* Read the VLDB entry */
6209     vcode = VLDB_GetEntryByName(avolname, &vldbentry);
6210     if (vcode && (vcode != VL_NOENT)) {
6211         fprintf(STDERR, "Could not access the VLDB for volume %s\n",
6212                 avolname);
6213         ERROR_EXIT(vcode);
6214     } else if (!vcode) {
6215         MapHostToNetwork(&vldbentry);
6216     }
6217
6218     if (tverbose) {
6219         fprintf(STDOUT, "Processing VLDB entry %s ...\n", avolname);
6220         fprintf(STDOUT, "_______________________________\n");
6221         fprintf(STDOUT, "\n-- status before -- \n");
6222         if (vcode) {
6223             fprintf(STDOUT, "\n**does not exist**\n");
6224         } else {
6225             if ((vldbentry.flags & RW_EXISTS) || (vldbentry.flags & RO_EXISTS)
6226                 || (vldbentry.flags & BACK_EXISTS))
6227                 EnumerateEntry(&vldbentry);
6228         }
6229         fprintf(STDOUT, "\n");
6230     }
6231
6232     /* Verify that all of the VLDB entries exist on the repective servers
6233      * and partitions (this does not require that avolname be a volume ID).
6234      * Equivalent to a syncserv.
6235      */
6236     if (!vcode) {
6237         /* Tell CheckVldb not to update if appropriate */
6238         if (flags & 2)
6239             mod = 1;
6240         else
6241             mod = 0;
6242         code = CheckVldb(&vldbentry, &mod, &deleted);
6243         if (code) {
6244             fprintf(STDERR, "Could not process VLDB entry for volume %s\n",
6245                     vldbentry.name);
6246             ERROR_EXIT(code);
6247         }
6248         if (mod)
6249             modified++;
6250     }
6251
6252     /* If aserver is given, we will search for the desired volume on it */
6253     if (aserver) {
6254         /* Generate array of partitions on the server that we will check */
6255         if (!(flags & 1)) {
6256             code = UV_ListPartitions(aserver, &PartList, &pcnt);
6257             if (code) {
6258                 fprintf(STDERR,
6259                         "Could not fetch the list of partitions from the server\n");
6260                 ERROR_EXIT(code);
6261             }
6262         } else {
6263             PartList.partId[0] = apart;
6264             pcnt = 1;
6265         }
6266
6267         aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
6268
6269         /* If a volume ID were given, search for it on each partition */
6270         if ((volumeid = atol(avolname))) {
6271             for (j = 0; j < pcnt; j++) {
6272                 code =
6273                     AFSVolListOneVolume(aconn, PartList.partId[j], volumeid,
6274                                         &volumeInfo);
6275                 if (code) {
6276                     if (code != ENODEV) {
6277                         fprintf(STDERR, "Could not query server\n");
6278                         ERROR_EXIT(code);
6279                     }
6280                 } else {
6281                     if (flags & 2)
6282                         mod = 1;
6283                     else
6284                         mod = 0;
6285                     /* Found one, sync it with VLDB entry */
6286                     code =
6287                         CheckVolume(volumeInfo.volEntries_val, aserver,
6288                                     PartList.partId[j], &mod, &maxvolid, &vldbentry);
6289                     if (code)
6290                         ERROR_EXIT(code);
6291                     if (mod)
6292                         modified++;
6293                 }
6294
6295                 if (volumeInfo.volEntries_val)
6296                     free(volumeInfo.volEntries_val);
6297                 volumeInfo.volEntries_val = (volintInfo *) 0;
6298                 volumeInfo.volEntries_len = 0;
6299             }
6300         }
6301
6302         /* Check to see if the RW, BK, and RO IDs exist on any
6303          * partitions. We get the volume IDs from the VLDB.
6304          */
6305         for (j = 0; j < MAXTYPES; j++) {        /* for RW, RO, and BK IDs */
6306             if (vldbentry.volumeId[j] == 0)
6307                 continue;
6308
6309             for (k = 0; k < pcnt; k++) {        /* For each partition */
6310                 volumeInfo.volEntries_val = (volintInfo *) 0;
6311                 volumeInfo.volEntries_len = 0;
6312                 code =
6313                     AFSVolListOneVolume(aconn, PartList.partId[k],
6314                                         vldbentry.volumeId[j], &volumeInfo);
6315                 if (code) {
6316                     if (code != ENODEV) {
6317                         fprintf(STDERR, "Could not query server\n");
6318                         ERROR_EXIT(code);
6319                     }
6320                 } else {
6321                     if (flags & 2)
6322                         mod = 1;
6323                     else
6324                         mod = 0;
6325                     /* Found one, sync it with VLDB entry */
6326                     code =
6327                         CheckVolume(volumeInfo.volEntries_val, aserver,
6328                                     PartList.partId[k], &mod, &maxvolid, &vldbentry);
6329                     if (code)
6330                         ERROR_EXIT(code);
6331                     if (mod)
6332                         modified++;
6333                 }
6334
6335                 if (volumeInfo.volEntries_val)
6336                     free(volumeInfo.volEntries_val);
6337                 volumeInfo.volEntries_val = (volintInfo *) 0;
6338                 volumeInfo.volEntries_len = 0;
6339             }
6340         }
6341     }
6342
6343     /* if (aserver) */
6344     /* If verbose output, print a summary of what changed */
6345     if (tverbose) {
6346         fprintf(STDOUT, "-- status after --\n");
6347         if (deleted) {
6348             fprintf(STDOUT, "\n**entry deleted**\n");
6349         } else if (modified) {
6350             EnumerateEntry(&vldbentry);
6351         } else {
6352             fprintf(STDOUT, "\n**no change**\n");
6353         }
6354         fprintf(STDOUT, "\n_______________________________\n");
6355     }
6356
6357   error_exit:
6358     /* Now check if the maxvolid is larger than that stored in the VLDB */
6359     if (maxvolid) {
6360         afs_uint32 maxvldbid = 0;
6361         code = ubik_VL_GetNewVolumeId(cstruct, 0, 0, &maxvldbid);
6362         if (code) {
6363             fprintf(STDERR,
6364                     "Could not get the highest allocated volume id from the VLDB\n");
6365             if (!error)
6366                 error = code;
6367         } else if (maxvolid > maxvldbid) {
6368             afs_uint32 id, nid;
6369             id = maxvolid - maxvldbid + 1;
6370             code = ubik_VL_GetNewVolumeId(cstruct, 0, id, &nid);
6371             if (code) {
6372                 fprintf(STDERR,
6373                         "Error in increasing highest allocated volume id in VLDB\n");
6374                 if (!error)
6375                     error = code;
6376             }
6377         }
6378     }
6379
6380     verbose = tverbose;
6381     if (verbose) {
6382         if (error)
6383             fprintf(STDOUT, "...error encountered");
6384         else
6385             fprintf(STDOUT, "...done entry\n");
6386     }
6387     if (aconn)
6388         rx_DestroyConnection(aconn);
6389     if (volumeInfo.volEntries_val)
6390         free(volumeInfo.volEntries_val);
6391
6392     PrintError("", error);
6393     return error;
6394 }
6395
6396 /* UV_SyncVldb()
6397  *      Synchronise vldb with the file server <aserver> and,
6398  *      optionally, <apart>.
6399  */
6400 int
6401 UV_SyncVldb(afs_uint32 aserver, afs_int32 apart, int flags, int force)
6402 {
6403     struct rx_connection *aconn;
6404     afs_int32 code, error = 0;
6405     int i, pfail;
6406     unsigned int j;
6407     volEntries volumeInfo;
6408     struct partList PartList;
6409     afs_int32 pcnt;
6410     char pname[10];
6411     volintInfo *vi;
6412     afs_int32 failures = 0, modifications = 0, tentries = 0;
6413     afs_int32 modified;
6414     afs_uint32 maxvolid = 0;
6415     char hoststr[16];
6416
6417     volumeInfo.volEntries_val = (volintInfo *) 0;
6418     volumeInfo.volEntries_len = 0;
6419
6420     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
6421
6422     /* Generate array of partitions to check */
6423     if (!(flags & 1)) {
6424         code = UV_ListPartitions(aserver, &PartList, &pcnt);
6425         if (code) {
6426             fprintf(STDERR,
6427                     "Could not fetch the list of partitions from the server\n");
6428             ERROR_EXIT(code);
6429         }
6430     } else {
6431         PartList.partId[0] = apart;
6432         pcnt = 1;
6433     }
6434
6435     VPRINT("Processing volume entries ...\n");
6436
6437     /* Step through the array of partitions */
6438     for (i = 0; i < pcnt; i++) {
6439         apart = PartList.partId[i];
6440         MapPartIdIntoName(apart, pname);
6441
6442         volumeInfo.volEntries_val = (volintInfo *) 0;
6443         volumeInfo.volEntries_len = 0;
6444         code = AFSVolListVolumes(aconn, apart, 1, &volumeInfo);
6445         if (code) {
6446             fprintf(STDERR,
6447                     "Could not fetch the list of volumes from the server\n");
6448             ERROR_EXIT(code);
6449         }
6450
6451         /* May want to sort the entries: RW, BK (high to low), RO (high to low) */
6452         qsort((char *)volumeInfo.volEntries_val, volumeInfo.volEntries_len,
6453               sizeof(volintInfo), sortVolumes);
6454
6455         pfail = 0;
6456         for (vi = volumeInfo.volEntries_val, j = 0;
6457              j < volumeInfo.volEntries_len; j++, vi++) {
6458             if (!vi->status)
6459                 continue;
6460
6461             tentries++;
6462
6463             if (verbose) {
6464                 fprintf(STDOUT,
6465                         "Processing volume entry %d: %s (%lu) on server %s %s...\n",
6466                         j + 1, vi->name, (unsigned long)vi->volid,
6467                         noresolve ?
6468                         afs_inet_ntoa_r(aserver, hoststr) :
6469                         hostutil_GetNameByINet(aserver), pname);
6470                 fflush(STDOUT);
6471             }
6472
6473             if (flags & 2)
6474                 modified = 1;
6475             else
6476                 modified = 0;
6477             code = CheckVolume(vi, aserver, apart, &modified, &maxvolid, NULL);
6478             if (code) {
6479                 PrintError("", code);
6480                 failures++;
6481                 pfail++;
6482             } else if (modified) {
6483                 modifications++;
6484             }
6485
6486             if (verbose) {
6487                 if (code) {
6488                     fprintf(STDOUT, "...error encountered\n\n");
6489                 } else {
6490                     fprintf(STDOUT, "...done entry %d\n\n", j + 1);
6491                 }
6492             }
6493         }
6494
6495         if (pfail) {
6496             fprintf(STDERR,
6497                     "Could not process entries on server %s partition %s\n",
6498                     noresolve ?
6499                     afs_inet_ntoa_r(aserver, hoststr) :
6500                     hostutil_GetNameByINet(aserver), pname);
6501         }
6502         if (volumeInfo.volEntries_val) {
6503             free(volumeInfo.volEntries_val);
6504             volumeInfo.volEntries_val = 0;
6505         }
6506
6507     }                           /* thru all partitions */
6508
6509     if (flags & 2) {
6510         VPRINT3("Total entries: %u, Failed to process %d, Would change %d\n",
6511                 tentries, failures, modifications);
6512     } else {
6513         VPRINT3("Total entries: %u, Failed to process %d, Changed %d\n",
6514                 tentries, failures, modifications);
6515     }
6516
6517   error_exit:
6518     /* Now check if the maxvolid is larger than that stored in the VLDB */
6519     if (maxvolid) {
6520         afs_uint32 maxvldbid = 0;
6521         code = ubik_VL_GetNewVolumeId(cstruct, 0, 0, &maxvldbid);
6522         if (code) {
6523             fprintf(STDERR,
6524                     "Could not get the highest allocated volume id from the VLDB\n");
6525             if (!error)
6526                 error = code;
6527         } else if (maxvolid > maxvldbid) {
6528             afs_uint32 id, nid;
6529             id = maxvolid - maxvldbid + 1;
6530             code = ubik_VL_GetNewVolumeId(cstruct, 0, id, &nid);
6531             if (code) {
6532                 fprintf(STDERR,
6533                         "Error in increasing highest allocated volume id in VLDB\n");
6534                 if (!error)
6535                     error = code;
6536             }
6537         }
6538     }
6539
6540     if (aconn)
6541         rx_DestroyConnection(aconn);
6542     if (volumeInfo.volEntries_val)
6543         free(volumeInfo.volEntries_val);
6544     PrintError("", error);
6545     return (error);
6546 }
6547
6548 /* VolumeExists()
6549  *      Determine if a volume exists on a server and partition.
6550  *      Try creating a transaction on the volume. If we can,
6551  *      the volume exists, if not, then return the error code.
6552  *      Some error codes mean the volume is unavailable but
6553  *      still exists - so we catch these error codes.
6554  */
6555 static afs_int32
6556 VolumeExists(afs_uint32 server, afs_int32 partition, afs_uint32 volumeid)
6557 {
6558     struct rx_connection *conn = (struct rx_connection *)0;
6559     afs_int32 code = -1;
6560     volEntries volumeInfo;
6561
6562     conn = UV_Bind(server, AFSCONF_VOLUMEPORT);
6563     if (conn) {
6564         volumeInfo.volEntries_val = (volintInfo *) 0;
6565         volumeInfo.volEntries_len = 0;
6566         code = AFSVolListOneVolume(conn, partition, volumeid, &volumeInfo);
6567         if (volumeInfo.volEntries_val)
6568             free(volumeInfo.volEntries_val);
6569         if (code == VOLSERILLEGAL_PARTITION)
6570             code = ENODEV;
6571         rx_DestroyConnection(conn);
6572     }
6573     return code;
6574 }
6575
6576 /* CheckVldbRWBK()
6577  *
6578  */
6579 static afs_int32
6580 CheckVldbRWBK(struct nvldbentry * entry, afs_int32 * modified)
6581 {
6582     int modentry = 0;
6583     int idx;
6584     afs_int32 code, error = 0;
6585     char pname[10];
6586     char hoststr[16];
6587
6588     if (modified)
6589         *modified = 0;
6590     idx = Lp_GetRwIndex(entry);
6591
6592     /* Check to see if the RW volume exists and set the RW_EXISTS
6593      * flag accordingly.
6594      */
6595     if (idx == -1) {            /* Did not find a RW entry */
6596         if (entry->flags & RW_EXISTS) { /* ... yet entry says RW exists */
6597             entry->flags &= ~RW_EXISTS; /* ... so say RW does not exist */
6598             modentry++;
6599         }
6600     } else {
6601         code =
6602             VolumeExists(entry->serverNumber[idx],
6603                          entry->serverPartition[idx], entry->volumeId[RWVOL]);
6604         if (code == 0) {        /* RW volume exists */
6605             if (!(entry->flags & RW_EXISTS)) {  /* ... yet entry says RW does not exist */
6606                 entry->flags |= RW_EXISTS;      /* ... so say RW does exist */
6607                 modentry++;
6608             }
6609         } else if (code == ENODEV) {    /* RW volume does not exist */
6610             if (entry->flags & RW_EXISTS) {     /* ... yet entry says RW exists */
6611                 entry->flags &= ~RW_EXISTS;     /* ... so say RW does not exist */
6612                 modentry++;
6613             }
6614         } else {
6615             /* If VLDB says it didn't exist, then ignore error */
6616             if (entry->flags & RW_EXISTS) {
6617                 MapPartIdIntoName(entry->serverPartition[idx], pname);
6618                 fprintf(STDERR,
6619                         "Transaction call failed for RW volume %u on server %s %s\n",
6620                         entry->volumeId[RWVOL],
6621                         noresolve ?
6622                         afs_inet_ntoa_r(entry->serverNumber[idx], hoststr) :
6623                         hostutil_GetNameByINet(entry->serverNumber[idx]),
6624                         pname);
6625                 ERROR_EXIT(code);
6626             }
6627         }
6628     }
6629
6630     /* Check to see if the BK volume exists and set the BACK_EXISTS
6631      * flag accordingly. idx already ponts to the RW entry.
6632      */
6633     if (idx == -1) {            /* Did not find a RW entry */
6634         if (entry->flags & BACK_EXISTS) {       /* ... yet entry says BK exists */
6635             entry->flags &= ~BACK_EXISTS;       /* ... so say BK does not exist */
6636             modentry++;
6637         }
6638     } else {                    /* Found a RW entry */
6639         code =
6640             VolumeExists(entry->serverNumber[idx],
6641                          entry->serverPartition[idx],
6642                          entry->volumeId[BACKVOL]);
6643         if (code == 0) {        /* BK volume exists */
6644             if (!(entry->flags & BACK_EXISTS)) {        /* ... yet entry says BK does not exist */
6645                 entry->flags |= BACK_EXISTS;    /* ... so say BK does exist */
6646                 modentry++;
6647             }
6648         } else if (code == ENODEV) {    /* BK volume does not exist */
6649             if (entry->flags & BACK_EXISTS) {   /* ... yet entry says BK exists */
6650                 entry->flags &= ~BACK_EXISTS;   /* ... so say BK does not exist */
6651                 modentry++;
6652             }
6653         } else {
6654             /* If VLDB says it didn't exist, then ignore error */
6655             if (entry->flags & BACK_EXISTS) {
6656                 MapPartIdIntoName(entry->serverPartition[idx], pname);
6657                 fprintf(STDERR,
6658                         "Transaction call failed for BK volume %u on server %s %s\n",
6659                         entry->volumeId[BACKVOL],
6660                         noresolve ?
6661                         afs_inet_ntoa_r(entry->serverNumber[idx], hoststr) :
6662                         hostutil_GetNameByINet(entry->serverNumber[idx]),
6663                         pname);
6664                 ERROR_EXIT(code);
6665             }
6666         }
6667     }
6668
6669     /* If there is an idx but the BK and RW volumes no
6670      * longer exist, then remove the RW entry.
6671      */
6672     if ((idx != -1) && !(entry->flags & RW_EXISTS)
6673         && !(entry->flags & BACK_EXISTS)) {
6674         Lp_SetRWValue(entry, entry->serverNumber[idx],
6675                       entry->serverPartition[idx], 0L, 0L);
6676         entry->nServers--;
6677         modentry++;
6678     }
6679
6680   error_exit:
6681     if (modified)
6682         *modified = modentry;
6683     return (error);
6684 }
6685
6686 static afs_int32
6687 CheckVldbRO(struct nvldbentry *entry, afs_int32 * modified)
6688 {
6689     int idx;
6690     int foundro = 0, modentry = 0;
6691     afs_int32 code, error = 0;
6692     char pname[10];
6693     char hoststr[16];
6694
6695     if (modified)
6696         *modified = 0;
6697
6698     /* Check to see if the RO volumes exist and set the RO_EXISTS
6699      * flag accordingly.
6700      */
6701     for (idx = 0; idx < entry->nServers; idx++) {
6702         if (!(entry->serverFlags[idx] & ITSROVOL)) {
6703             continue;           /* not a RO */
6704         }
6705
6706         code =
6707             VolumeExists(entry->serverNumber[idx],
6708                          entry->serverPartition[idx], entry->volumeId[ROVOL]);
6709         if (code == 0) {        /* RO volume exists */
6710             foundro++;
6711         } else if (code == ENODEV) {    /* RW volume does not exist */
6712             Lp_SetROValue(entry, entry->serverNumber[idx],
6713                           entry->serverPartition[idx], 0L, 0L);
6714             entry->nServers--;
6715             idx--;
6716             modentry++;
6717         } else {
6718             MapPartIdIntoName(entry->serverPartition[idx], pname);
6719             fprintf(STDERR,
6720                     "Transaction call failed for RO %u on server %s %s\n",
6721                     entry->volumeId[ROVOL],
6722                     noresolve ?
6723                     afs_inet_ntoa_r(entry->serverNumber[idx], hoststr) :
6724                     hostutil_GetNameByINet(entry->serverNumber[idx]), pname);
6725             ERROR_EXIT(code);
6726         }
6727     }
6728
6729     if (foundro) {              /* A RO volume exists */
6730         if (!(entry->flags & RO_EXISTS)) {      /* ... yet entry says RW does not exist */
6731             entry->flags |= RO_EXISTS;  /* ... so say RW does exist */
6732             modentry++;
6733         }
6734     } else {                    /* A RO volume does not exist */
6735         if (entry->flags & RO_EXISTS) { /* ... yet entry says RO exists */
6736             entry->flags &= ~RO_EXISTS; /* ... so say RO does not exist */
6737             modentry++;
6738         }
6739     }
6740
6741   error_exit:
6742     if (modified)
6743         *modified = modentry;
6744     return (error);
6745 }
6746
6747 /* CheckVldb()
6748  *      Ensure that <entry> matches with the info on file servers
6749  */
6750 static afs_int32
6751 CheckVldb(struct nvldbentry * entry, afs_int32 * modified, afs_int32 * deleted)
6752 {
6753     afs_int32 code, error = 0;
6754     struct nvldbentry storeEntry;
6755     int islocked = 0, mod, modentry, delentry = 0;
6756     int pass = 0, doit=1;
6757
6758     if (modified) {
6759         if (*modified == 1)
6760             doit = 0;
6761         *modified = 0;
6762     }
6763     if (verbose) {
6764         fprintf(STDOUT, "_______________________________\n");
6765         fprintf(STDOUT, "\n-- status before -- \n");
6766         if ((entry->flags & RW_EXISTS) || (entry->flags & RO_EXISTS)
6767             || (entry->flags & BACK_EXISTS))
6768             EnumerateEntry(entry);
6769         fprintf(STDOUT, "\n");
6770     }
6771
6772     if (strlen(entry->name) > (VOLSER_OLDMAXVOLNAME - 10)) {
6773         fprintf(STDERR, "Volume name %s exceeds limit of %d characters\n",
6774                 entry->name, VOLSER_OLDMAXVOLNAME - 10);
6775     }
6776
6777   retry:
6778     /* Check to see if the VLDB is ok without locking it (pass 1).
6779      * If it will change, then lock the VLDB entry, read it again,
6780      * then make the changes to it (pass 2).
6781      */
6782     if (++pass == 2) {
6783         code =
6784             ubik_VL_SetLock(cstruct, 0, entry->volumeId[RWVOL], RWVOL,
6785                       VLOP_DELETE);
6786         if (code) {
6787             fprintf(STDERR, "Could not lock VLDB entry for %u \n",
6788                     entry->volumeId[RWVOL]);
6789             ERROR_EXIT(code);
6790         }
6791         islocked = 1;
6792
6793         code = VLDB_GetEntryByID(entry->volumeId[RWVOL], RWVOL, entry);
6794         if (code) {
6795             fprintf(STDERR, "Could not read VLDB entry for volume %s\n",
6796                     entry->name);
6797             ERROR_EXIT(code);
6798         } else {
6799             MapHostToNetwork(entry);
6800         }
6801     }
6802
6803     modentry = 0;
6804
6805     /* Check if the RW and BK entries are ok */
6806     code = CheckVldbRWBK(entry, &mod);
6807     if (code)
6808         ERROR_EXIT(code);
6809     if (mod && (pass == 1) && doit)
6810         goto retry;
6811     if (mod)
6812         modentry++;
6813
6814     /* Check if the RO volumes entries are ok */
6815     code = CheckVldbRO(entry, &mod);
6816     if (code)
6817         ERROR_EXIT(code);
6818     if (mod && (pass == 1) && doit)
6819         goto retry;
6820     if (mod)
6821         modentry++;
6822
6823     /* The VLDB entry has been updated. If it as been modified, then
6824      * write the entry back out the the VLDB.
6825      */
6826     if (modentry && doit) {
6827         if (pass == 1)
6828             goto retry;
6829
6830         if (!(entry->flags & RW_EXISTS) && !(entry->flags & BACK_EXISTS)
6831             && !(entry->flags & RO_EXISTS) && doit) {
6832             /* The RW, BK, nor RO volumes do not exist. Delete the VLDB entry */
6833             code =
6834                 ubik_VL_DeleteEntry(cstruct, 0, entry->volumeId[RWVOL],
6835                           RWVOL);
6836             if (code) {
6837                 fprintf(STDERR,
6838                         "Could not delete VLDB entry for volume %u \n",
6839                         entry->volumeId[RWVOL]);
6840                 ERROR_EXIT(code);
6841             }
6842             delentry = 1;
6843         } else {
6844             /* Replace old entry with our new one */
6845             MapNetworkToHost(entry, &storeEntry);
6846             code =
6847                 VLDB_ReplaceEntry(entry->volumeId[RWVOL], RWVOL, &storeEntry,
6848                                   (LOCKREL_OPCODE | LOCKREL_AFSID |
6849                                    LOCKREL_TIMESTAMP));
6850             if (code) {
6851                 fprintf(STDERR, "Could not update VLDB entry for volume %u\n",
6852                         entry->volumeId[RWVOL]);
6853                 ERROR_EXIT(code);
6854             }
6855         }
6856         islocked = 0;
6857     }
6858
6859     if (modified && modentry) {
6860         *modified = 1;
6861     }
6862     if (deleted && delentry) {
6863         *deleted = 1;
6864     }
6865
6866     if (verbose) {
6867         fprintf(STDOUT, "-- status after --\n");
6868         if (delentry)
6869             fprintf(STDOUT, "\n**entry deleted**\n");
6870         else if (modentry)
6871             EnumerateEntry(entry);
6872         else
6873             fprintf(STDOUT, "\n**no change**\n");
6874     }
6875
6876   error_exit:
6877     VPRINT("\n_______________________________\n");
6878
6879     if (islocked) {
6880         code =
6881             ubik_VL_ReleaseLock(cstruct, 0, entry->volumeId[RWVOL],
6882                       RWVOL,
6883                       (LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP));
6884         if (code) {
6885             fprintf(STDERR,
6886                     "Could not release lock on VLDB entry for volume %u\n",
6887                     entry->volumeId[RWVOL]);
6888             if (!error)
6889                 error = code;
6890         }
6891     }
6892     return error;
6893 }
6894
6895 /* UV_SyncServer()
6896  *      Synchronise <aserver> <apart>(if flags = 1) with the VLDB.
6897  */
6898 int
6899 UV_SyncServer(afs_uint32 aserver, afs_int32 apart, int flags, int force)
6900 {
6901     struct rx_connection *aconn;
6902     afs_int32 code, error = 0;
6903     afs_int32 nentries, tentries = 0;
6904     struct VldbListByAttributes attributes;
6905     nbulkentries arrayEntries;
6906     afs_int32 failures = 0, modified, modifications = 0;
6907     struct nvldbentry *vlentry;
6908     afs_int32 si, nsi, j;
6909
6910     if (flags & 2)
6911         verbose = 1;
6912
6913     aconn = UV_Bind(aserver, AFSCONF_VOLUMEPORT);
6914
6915     /* Set up attributes to search VLDB  */
6916     attributes.server = ntohl(aserver);
6917     attributes.Mask = VLLIST_SERVER;
6918     if ((flags & 1)) {
6919         attributes.partition = apart;
6920         attributes.Mask |= VLLIST_PARTITION;
6921     }
6922
6923     VPRINT("Processing VLDB entries ...\n");
6924
6925     /* While we need to collect more VLDB entries */
6926     for (si = 0; si != -1; si = nsi) {
6927         memset(&arrayEntries, 0, sizeof(arrayEntries));
6928
6929         /* Collect set of VLDB entries */
6930         code =
6931             VLDB_ListAttributesN2(&attributes, 0, si, &nentries,
6932                                   &arrayEntries, &nsi);
6933         if (code == RXGEN_OPCODE) {
6934             code = VLDB_ListAttributes(&attributes, &nentries, &arrayEntries);
6935             nsi = -1;
6936         }
6937         if (code) {
6938             fprintf(STDERR, "Could not access the VLDB for attributes\n");
6939             ERROR_EXIT(code);
6940         }
6941         tentries += nentries;
6942
6943         for (j = 0; j < nentries; j++) {
6944             vlentry = &arrayEntries.nbulkentries_val[j];
6945             MapHostToNetwork(vlentry);
6946
6947             VPRINT1("Processing VLDB entry %d ...\n", j + 1);
6948
6949             /* Tell CheckVldb not to update if appropriate */
6950             if (flags & 2)
6951                 modified = 1;
6952             else
6953                 modified = 0;
6954             code = CheckVldb(vlentry, &modified, NULL);
6955             if (code) {
6956                 PrintError("", code);
6957                 fprintf(STDERR,
6958                         "Could not process VLDB entry for volume %s\n",
6959                         vlentry->name);
6960                 failures++;
6961             } else if (modified) {
6962                 modifications++;
6963             }
6964
6965             if (verbose) {
6966                 if (code) {
6967                     fprintf(STDOUT, "...error encountered\n\n");
6968                 } else {
6969                     fprintf(STDOUT, "...done entry %d\n\n", j + 1);
6970                 }
6971             }
6972         }
6973
6974         if (arrayEntries.nbulkentries_val) {
6975             free(arrayEntries.nbulkentries_val);
6976             arrayEntries.nbulkentries_val = 0;
6977         }
6978     }
6979
6980     if (flags & 2) {
6981         VPRINT3("Total entries: %u, Failed to process %d, Would change %d\n",
6982                 tentries, failures, modifications);
6983     } else {
6984         VPRINT3("Total entries: %u, Failed to process %d, Changed %d\n",
6985                 tentries, failures, modifications);
6986     }
6987
6988   error_exit:
6989     if (aconn)
6990         rx_DestroyConnection(aconn);
6991     if (arrayEntries.nbulkentries_val)
6992         free(arrayEntries.nbulkentries_val);
6993
6994     if (failures)
6995         error = VOLSERFAILEDOP;
6996     return error;
6997 }
6998
6999 /*rename volume <oldname> to <newname>, changing the names of the related
7000  *readonly and backup volumes. This operation is also idempotent.
7001  *salvager is capable of recovering from rename operation stopping halfway.
7002  *to recover run syncserver on the affected machines,it will force renaming to completion. name clashes should have been detected before calling this proc */
7003 int
7004 UV_RenameVolume(struct nvldbentry *entry, char oldname[], char newname[])
7005 {
7006     struct nvldbentry storeEntry;
7007     afs_int32 vcode, code, rcode, error;
7008     int i, index;
7009     char nameBuffer[256];
7010     afs_int32 tid;
7011     struct rx_connection *aconn;
7012     int islocked;
7013     char hoststr[16];
7014
7015     error = 0;
7016     aconn = (struct rx_connection *)0;
7017     tid = 0;
7018     islocked = 0;
7019
7020     vcode = ubik_VL_SetLock(cstruct, 0, entry->volumeId[RWVOL], RWVOL, VLOP_ADDSITE);   /*last param is dummy */
7021     if (vcode) {
7022         fprintf(STDERR,
7023                 " Could not lock the VLDB entry for the  volume %u \n",
7024                 entry->volumeId[RWVOL]);
7025         error = vcode;
7026         goto rvfail;
7027     }
7028     islocked = 1;
7029     strncpy(entry->name, newname, VOLSER_OLDMAXVOLNAME);
7030     MapNetworkToHost(entry, &storeEntry);
7031     vcode = VLDB_ReplaceEntry(entry->volumeId[RWVOL], RWVOL, &storeEntry, 0);
7032     if (vcode) {
7033         fprintf(STDERR, "Could not update VLDB entry for %u\n",
7034                 entry->volumeId[RWVOL]);
7035         error = vcode;
7036         goto rvfail;
7037     }
7038     VPRINT1("Recorded the new name %s in VLDB\n", newname);
7039     /*at this stage the intent to rename is recorded in the vldb, as far as the vldb
7040      * is concerned, oldname is lost */
7041     if (entry->flags & RW_EXISTS) {
7042         index = Lp_GetRwIndex(entry);
7043         if (index == -1) {      /* there is a serious discrepancy */
7044             fprintf(STDERR,
7045                     "There is a serious discrepancy in VLDB entry for volume %u\n",
7046                     entry->volumeId[RWVOL]);
7047             fprintf(STDERR, "try building VLDB from scratch\n");
7048             error = VOLSERVLDB_ERROR;
7049             goto rvfail;
7050         }
7051         aconn = UV_Bind(entry->serverNumber[index], AFSCONF_VOLUMEPORT);
7052         code =
7053             AFSVolTransCreate_retry(aconn, entry->volumeId[RWVOL],
7054                               entry->serverPartition[index], ITOffline, &tid);
7055         if (code) {             /*volume doesnot exist */
7056             fprintf(STDERR,
7057                     "Could not start transaction on the rw volume %u\n",
7058                     entry->volumeId[RWVOL]);
7059             error = code;
7060             goto rvfail;
7061         } else {                /*volume exists, process it */
7062
7063             code =
7064                 AFSVolSetIdsTypes(aconn, tid, newname, RWVOL,
7065                                   entry->volumeId[RWVOL],
7066                                   entry->volumeId[ROVOL],
7067                                   entry->volumeId[BACKVOL]);
7068             if (!code) {
7069                 VPRINT2("Renamed rw volume %s to %s\n", oldname, newname);
7070                 code = AFSVolEndTrans(aconn, tid, &rcode);
7071                 tid = 0;
7072                 if (code) {
7073                     fprintf(STDERR,
7074                             "Could not  end transaction on volume %s %u\n",
7075                             entry->name, entry->volumeId[RWVOL]);
7076                     error = code;
7077                     goto rvfail;
7078                 }
7079             } else {
7080                 fprintf(STDERR, "Could not  set parameters on volume %s %u\n",
7081                         entry->name, entry->volumeId[RWVOL]);
7082                 error = code;
7083                 goto rvfail;
7084             }
7085         }
7086         if (aconn)
7087             rx_DestroyConnection(aconn);
7088         aconn = (struct rx_connection *)0;
7089     }
7090     /*end rw volume processing */
7091     if (entry->flags & BACK_EXISTS) {   /*process the backup volume */
7092         index = Lp_GetRwIndex(entry);
7093         if (index == -1) {      /* there is a serious discrepancy */
7094             fprintf(STDERR,
7095                     "There is a serious discrepancy in the VLDB entry for the backup volume %u\n",
7096                     entry->volumeId[BACKVOL]);
7097             fprintf(STDERR, "try building VLDB from scratch\n");
7098             error = VOLSERVLDB_ERROR;
7099             goto rvfail;
7100         }
7101         aconn = UV_Bind(entry->serverNumber[index], AFSCONF_VOLUMEPORT);
7102         code =
7103             AFSVolTransCreate_retry(aconn, entry->volumeId[BACKVOL],
7104                               entry->serverPartition[index], ITOffline, &tid);
7105         if (code) {             /*volume doesnot exist */
7106             fprintf(STDERR,
7107                     "Could not start transaction on the backup volume  %u\n",
7108                     entry->volumeId[BACKVOL]);
7109             error = code;
7110             goto rvfail;
7111         } else {                /*volume exists, process it */
7112             if (strlen(newname) > (VOLSER_OLDMAXVOLNAME - 8)) {
7113                 fprintf(STDERR,
7114                         "Volume name %s.backup exceeds the limit of %u characters\n",
7115                         newname, VOLSER_OLDMAXVOLNAME);
7116                 error = code;
7117                 goto rvfail;
7118             }
7119             strcpy(nameBuffer, newname);
7120             strcat(nameBuffer, ".backup");
7121
7122             code =
7123                 AFSVolSetIdsTypes(aconn, tid, nameBuffer, BACKVOL,
7124                                   entry->volumeId[RWVOL], 0, 0);
7125             if (!code) {
7126                 VPRINT1("Renamed backup volume to %s \n", nameBuffer);
7127                 code = AFSVolEndTrans(aconn, tid, &rcode);
7128                 tid = 0;
7129                 if (code) {
7130                     fprintf(STDERR,
7131                             "Could not  end transaction on the backup volume %u\n",
7132                             entry->volumeId[BACKVOL]);
7133                     error = code;
7134                     goto rvfail;
7135                 }
7136             } else {
7137                 fprintf(STDERR,
7138                         "Could not  set parameters on the backup volume %u\n",
7139                         entry->volumeId[BACKVOL]);
7140                 error = code;
7141                 goto rvfail;
7142             }
7143         }
7144     }                           /* end backup processing */
7145     if (aconn)
7146         rx_DestroyConnection(aconn);
7147     aconn = (struct rx_connection *)0;
7148     if (entry->flags & RO_EXISTS) {     /*process the ro volumes */
7149         for (i = 0; i < entry->nServers; i++) {
7150             if (entry->serverFlags[i] & ITSROVOL) {
7151                 aconn = UV_Bind(entry->serverNumber[i], AFSCONF_VOLUMEPORT);
7152                 code =
7153                     AFSVolTransCreate_retry(aconn, entry->volumeId[ROVOL],
7154                                       entry->serverPartition[i], ITOffline,
7155                                       &tid);
7156                 if (code) {     /*volume doesnot exist */
7157                     fprintf(STDERR,
7158                             "Could not start transaction on the ro volume %u\n",
7159                             entry->volumeId[ROVOL]);
7160                     error = code;
7161                     goto rvfail;
7162                 } else {        /*volume exists, process it */
7163                     strcpy(nameBuffer, newname);
7164                     strcat(nameBuffer, ".readonly");
7165                     if (strlen(nameBuffer) > (VOLSER_OLDMAXVOLNAME - 1)) {
7166                         fprintf(STDERR,
7167                                 "Volume name %s exceeds the limit of %u characters\n",
7168                                 nameBuffer, VOLSER_OLDMAXVOLNAME);
7169                         error = code;
7170                         goto rvfail;
7171                     }
7172                     code =
7173                         AFSVolSetIdsTypes(aconn, tid, nameBuffer, ROVOL,
7174                                           entry->volumeId[RWVOL], 0, 0);
7175                     if (!code) {
7176                         VPRINT2("Renamed RO volume %s on host %s\n",
7177                                 nameBuffer,
7178                                 noresolve ?
7179                                 afs_inet_ntoa_r(entry->serverNumber[i], hoststr) :
7180                                 hostutil_GetNameByINet(entry->
7181                                                        serverNumber[i]));
7182                         code = AFSVolEndTrans(aconn, tid, &rcode);
7183                         tid = 0;
7184                         if (code) {
7185                             fprintf(STDERR,
7186                                     "Could not  end transaction on volume %u\n",
7187                                     entry->volumeId[ROVOL]);
7188                             error = code;
7189                             goto rvfail;
7190                         }
7191                     } else {
7192                         fprintf(STDERR,
7193                                 "Could not  set parameters on the ro volume %u\n",
7194                                 entry->volumeId[ROVOL]);
7195                         error = code;
7196                         goto rvfail;
7197                     }
7198                 }
7199                 if (aconn)
7200                     rx_DestroyConnection(aconn);
7201                 aconn = (struct rx_connection *)0;
7202             }
7203         }
7204     }
7205   rvfail:
7206     if (islocked) {
7207         vcode =
7208             ubik_VL_ReleaseLock(cstruct, 0, entry->volumeId[RWVOL],
7209                       RWVOL,
7210                       LOCKREL_OPCODE | LOCKREL_AFSID | LOCKREL_TIMESTAMP);
7211         if (vcode) {
7212             fprintf(STDERR,
7213                     "Could not unlock the VLDB entry for the volume %s %u\n",
7214                     entry->name, entry->volumeId[RWVOL]);
7215             if (!error)
7216                 error = vcode;
7217         }
7218     }
7219     if (tid) {
7220         code = AFSVolEndTrans(aconn, tid, &rcode);
7221         if (!code)
7222             code = rcode;
7223         if (code) {
7224             fprintf(STDERR, "Failed to end transaction on a volume \n");
7225             if (!error)
7226                 error = code;
7227         }
7228     }
7229     if (aconn)
7230         rx_DestroyConnection(aconn);
7231     PrintError("", error);
7232     return error;
7233
7234 }
7235
7236 /*report on all the active transactions on volser */
7237 int
7238 UV_VolserStatus(afs_uint32 server, transDebugInfo ** rpntr, afs_int32 * rcount)
7239 {
7240     struct rx_connection *aconn;
7241     transDebugEntries transInfo;
7242     afs_int32 code = 0;
7243
7244     aconn = UV_Bind(server, AFSCONF_VOLUMEPORT);
7245     transInfo.transDebugEntries_val = (transDebugInfo *) 0;
7246     transInfo.transDebugEntries_len = 0;
7247     code = AFSVolMonitor(aconn, &transInfo);
7248     if (code) {
7249         fprintf(STDERR,
7250                 "Could not access status information about the server\n");
7251         PrintError("", code);
7252         if (transInfo.transDebugEntries_val)
7253             free(transInfo.transDebugEntries_val);
7254         if (aconn)
7255             rx_DestroyConnection(aconn);
7256         return code;
7257     } else {
7258         *rcount = transInfo.transDebugEntries_len;
7259         *rpntr = transInfo.transDebugEntries_val;
7260         if (aconn)
7261             rx_DestroyConnection(aconn);
7262         return 0;
7263     }
7264
7265
7266 }
7267
7268 /*delete the volume without interacting with the vldb */
7269 int
7270 UV_VolumeZap(afs_uint32 server, afs_int32 part, afs_uint32 volid)
7271 {
7272     afs_int32 error;
7273     struct rx_connection *aconn;
7274
7275     aconn = UV_Bind(server, AFSCONF_VOLUMEPORT);
7276     error = DoVolDelete(aconn, volid, part,
7277                         "the", 0, NULL, NULL);
7278
7279     PrintError("", error);
7280     if (aconn)
7281         rx_DestroyConnection(aconn);
7282     return error;
7283 }
7284
7285 int
7286 UV_SetVolume(afs_uint32 server, afs_int32 partition, afs_uint32 volid,
7287              afs_int32 transflag, afs_int32 setflag, int sleeptime)
7288 {
7289     struct rx_connection *conn = 0;
7290     afs_int32 tid = 0;
7291     afs_int32 code, error = 0, rcode;
7292
7293     conn = UV_Bind(server, AFSCONF_VOLUMEPORT);
7294     if (!conn) {
7295         fprintf(STDERR, "SetVolumeStatus: Bind Failed");
7296         ERROR_EXIT(-1);
7297     }
7298
7299     code = AFSVolTransCreate_retry(conn, volid, partition, transflag, &tid);
7300     if (code) {
7301         fprintf(STDERR, "SetVolumeStatus: TransCreate Failed\n");
7302         ERROR_EXIT(code);
7303     }
7304
7305     code = AFSVolSetFlags(conn, tid, setflag);
7306     if (code) {
7307         fprintf(STDERR, "SetVolumeStatus: SetFlags Failed\n");
7308         ERROR_EXIT(code);
7309     }
7310
7311     if (sleeptime) {
7312 #ifdef AFS_PTHREAD_ENV
7313         sleep(sleeptime);
7314 #else
7315         IOMGR_Sleep(sleeptime);
7316 #endif
7317     }
7318
7319   error_exit:
7320     if (tid) {
7321         rcode = 0;
7322         code = AFSVolEndTrans(conn, tid, &rcode);
7323         if (code || rcode) {
7324             fprintf(STDERR, "SetVolumeStatus: EndTrans Failed\n");
7325             if (!error)
7326                 error = (code ? code : rcode);
7327         }
7328     }
7329
7330     if (conn)
7331         rx_DestroyConnection(conn);
7332     return (error);
7333 }
7334
7335 int
7336 UV_SetVolumeInfo(afs_uint32 server, afs_int32 partition, afs_uint32 volid,
7337                  volintInfo * infop)
7338 {
7339     struct rx_connection *conn = 0;
7340     afs_int32 tid = 0;
7341     afs_int32 code, error = 0, rcode;
7342
7343     conn = UV_Bind(server, AFSCONF_VOLUMEPORT);
7344     if (!conn) {
7345         fprintf(STDERR, "SetVolumeInfo: Bind Failed");
7346         ERROR_EXIT(-1);
7347     }
7348
7349     code = AFSVolTransCreate_retry(conn, volid, partition, ITOffline, &tid);
7350     if (code) {
7351         fprintf(STDERR, "SetVolumeInfo: TransCreate Failed\n");
7352         ERROR_EXIT(code);
7353     }
7354
7355     code = AFSVolSetInfo(conn, tid, infop);
7356     if (code) {
7357         fprintf(STDERR, "SetVolumeInfo: SetInfo Failed\n");
7358         ERROR_EXIT(code);
7359     }
7360
7361   error_exit:
7362     if (tid) {
7363         rcode = 0;
7364         code = AFSVolEndTrans(conn, tid, &rcode);
7365         if (code || rcode) {
7366             fprintf(STDERR, "SetVolumeInfo: EndTrans Failed\n");
7367             if (!error)
7368                 error = (code ? code : rcode);
7369         }
7370     }
7371
7372     if (conn)
7373         rx_DestroyConnection(conn);
7374     return (error);
7375 }
7376
7377 int
7378 UV_GetSize(afs_uint32 afromvol, afs_uint32 afromserver, afs_int32 afrompart,
7379            afs_int32 fromdate, struct volintSize *vol_size)
7380 {
7381     struct rx_connection *aconn = (struct rx_connection *)0;
7382     afs_int32 tid = 0, rcode = 0;
7383     afs_int32 code, error = 0;
7384
7385
7386     /* get connections to the servers */
7387     aconn = UV_Bind(afromserver, AFSCONF_VOLUMEPORT);
7388
7389     VPRINT1("Starting transaction on volume %u...", afromvol);
7390     code = AFSVolTransCreate_retry(aconn, afromvol, afrompart, ITBusy, &tid);
7391     EGOTO1(error_exit, code,
7392            "Could not start transaction on the volume %u to be measured\n",
7393            afromvol);
7394     VDONE;
7395
7396     VPRINT1("Getting size of volume on volume %u...", afromvol);
7397     code = AFSVolGetSize(aconn, tid, fromdate, vol_size);
7398     EGOTO(error_exit, code, "Could not start the measurement process \n");
7399     VDONE;
7400
7401   error_exit:
7402     if (tid) {
7403         VPRINT1("Ending transaction on volume %u...", afromvol);
7404         code = AFSVolEndTrans(aconn, tid, &rcode);
7405         if (code || rcode) {
7406             fprintf(STDERR, "Could not end transaction on the volume %u\n",
7407                     afromvol);
7408             fprintf(STDERR, "error codes: %d and %d\n", code, rcode);
7409             if (!error)
7410                 error = (code ? code : rcode);
7411         }
7412         VDONE;
7413     }
7414     if (aconn)
7415         rx_DestroyConnection(aconn);
7416
7417     PrintError("", error);
7418     return (error);
7419 }
7420
7421 /*maps the host addresses in <old > (present in network byte order) to
7422  that in< new> (present in host byte order )*/
7423 void
7424 MapNetworkToHost(struct nvldbentry *old, struct nvldbentry *new)
7425 {
7426     int i, count;
7427
7428     /*copy all the fields */
7429     strcpy(new->name, old->name);
7430 /*    new->volumeType = old->volumeType;*/
7431     new->nServers = old->nServers;
7432     count = old->nServers;
7433     if (count < NMAXNSERVERS)
7434         count++;
7435     for (i = 0; i < count; i++) {
7436         new->serverNumber[i] = ntohl(old->serverNumber[i]);
7437         new->serverPartition[i] = old->serverPartition[i];
7438         new->serverFlags[i] = old->serverFlags[i];
7439     }
7440     new->volumeId[RWVOL] = old->volumeId[RWVOL];
7441     new->volumeId[ROVOL] = old->volumeId[ROVOL];
7442     new->volumeId[BACKVOL] = old->volumeId[BACKVOL];
7443     new->cloneId = old->cloneId;
7444     new->flags = old->flags;
7445 }
7446
7447 /*maps the host entries in <entry> which are present in host byte order to network byte order */
7448 void
7449 MapHostToNetwork(struct nvldbentry *entry)
7450 {
7451     int i, count;
7452
7453     count = entry->nServers;
7454     if (count < NMAXNSERVERS)
7455         count++;
7456     for (i = 0; i < count; i++) {
7457         entry->serverNumber[i] = htonl(entry->serverNumber[i]);
7458     }
7459 }