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