2 * Copyright 2000, International Business Machines Corporation and others.
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
10 #include <afsconfig.h>
11 #include <afs/param.h>
17 #include <sys/types.h>
24 #include <netinet/in.h>
41 #include <afs/afsint.h>
43 #ifdef AFS_PTHREAD_ENV
45 #else /* AFS_PTHREAD_ENV */
46 #include <afs/assert.h>
47 #endif /* AFS_PTHREAD_ENV */
48 #include <afs/prs_fs.h>
53 #include <afs/cellconfig.h>
56 #include <afs/ihandle.h>
58 #include <afs/ntops.h>
60 #include <afs/vnode.h>
61 #include <afs/volume.h>
62 #include <afs/partition.h>
64 #include <afs/fssync.h>
66 #include "afs/audit.h"
72 #include "volser_prototypes.h"
75 extern struct volser_trans *FindTrans(), *NewTrans(), *TransList();
76 extern struct afsconf_dir *tdir;
78 /* Needed by Irix. Leave, or include a header */
79 extern char *volutil_PartitionName();
81 extern void LogError(afs_int32 errcode);
83 /* Forward declarations */
84 static int GetPartName(afs_int32 partid, char *pname);
86 #define OneDay (24*60*60)
92 afs_int32 localTid = 1;
93 afs_int32 VolPartitionInfo(), VolNukeVolume(), VolCreateVolume(),
94 VolDeleteVolume(), VolClone();
95 afs_int32 VolReClone(), VolTransCreate(), VolGetNthVolume(), VolGetFlags(),
96 VolForward(), VolDump();
97 afs_int32 VolRestore(), VolEndTrans(), VolSetForwarding(), VolGetStatus(),
98 VolSetInfo(), VolGetName();
99 afs_int32 VolListPartitions(), VolListOneVolume(),
100 VolXListOneVolume(), VolXListVolumes();
101 afs_int32 VolListVolumes(), XVolListPartitions(), VolMonitor(),
102 VolSetIdsTypes(), VolSetDate(), VolSetFlags();
104 /* this call unlocks all of the partition locks we've set */
108 register struct DiskPartition *tp;
109 for (tp = DiskPartitionList; tp; tp = tp->next) {
110 if (tp->lock_fd != -1) {
111 close(tp->lock_fd); /* releases flock held on this partition */
118 /* get partition id from a name */
120 PartitionID(char *aname)
123 register int code = 0;
128 return -1; /* unknown */
130 /* otherwise check for vicepa or /vicepa, or just plain "a" */
132 if (!strncmp(aname, "/vicep", 6)) {
133 strncpy(ascii, aname + 6, 2);
135 return -1; /* bad partition name */
136 /* now partitions are named /vicepa ... /vicepz, /vicepaa, /vicepab, .../vicepzz, and are numbered
137 * from 0. Do the appropriate conversion */
139 /* one char name, 0..25 */
140 if (ascii[0] < 'a' || ascii[0] > 'z')
141 return -1; /* wrongo */
142 return ascii[0] - 'a';
144 /* two char name, 26 .. <whatever> */
145 if (ascii[0] < 'a' || ascii[0] > 'z')
146 return -1; /* wrongo */
147 if (ascii[1] < 'a' || ascii[1] > 'z')
148 return -1; /* just as bad */
149 code = (ascii[0] - 'a') * 26 + (ascii[1] - 'a') + 26;
150 if (code > VOLMAXPARTS)
157 ConvertVolume(afs_int32 avol, char *aname, afs_int32 asize)
161 /* It's better using the Generic VFORMAT since otherwise we have to make changes to too many places... The 14 char limitation in names hits us again in AIX; print in field of 9 digits (still 10 for the rest), right justified with 0 padding */
162 (void)afs_snprintf(aname, asize, VFORMAT, (unsigned long)avol);
167 ConvertPartition(int apartno, char *aname, int asize)
173 strcpy(aname, "/vicep");
175 aname[6] = 'a' + apartno;
179 aname[6] = 'a' + (apartno / 26);
180 aname[7] = 'a' + (apartno % 26);
186 /* the only attach function that takes a partition is "...ByName", so we use it */
188 XAttachVolume(afs_int32 *error, afs_int32 avolid, afs_int32 apartid, int amode)
190 char pbuf[30], vbuf[20];
191 register struct Volume *tv;
193 if (ConvertPartition(apartid, pbuf, sizeof(pbuf))) {
197 if (ConvertVolume(avolid, vbuf, sizeof(vbuf))) {
201 tv = VAttachVolumeByName(error, pbuf, vbuf, amode);
205 /* Adapted from the file server; create a root directory for this volume */
207 ViceCreateRoot(Volume *vp)
210 struct acl_accessList *ACL;
212 Inode inodeNumber, nearInode;
213 char buf[SIZEOF_LARGEDISKVNODE];
214 struct VnodeDiskObject *vnode = (struct VnodeDiskObject *)buf;
215 struct VnodeClassInfo *vcp = &VnodeClassInfo[vLarge];
221 memset(vnode, 0, SIZEOF_LARGEDISKVNODE);
223 V_pref(vp, nearInode);
225 IH_CREATE(V_linkHandle(vp), V_device(vp),
226 VPartitionPath(V_partition(vp)), nearInode, V_parentId(vp),
228 assert(VALID_INO(inodeNumber));
230 SetSalvageDirHandle(&dir, V_parentId(vp), vp->device, inodeNumber);
231 did.Volume = V_id(vp);
232 did.Vnode = (VnodeId) 1;
235 assert(!(MakeDir(&dir, &did, &did)));
236 DFlush(); /* flush all modified dir buffers out */
237 DZap(&dir); /* Remove all buffers for this dir */
238 length = Length(&dir); /* Remember size of this directory */
240 FidZap(&dir); /* Done with the dir handle obtained via SetSalvageDirHandle() */
242 /* build a single entry ACL that gives all rights to system:administrators */
243 /* this section of code assumes that access list format is not going to
246 ACL = VVnodeDiskACL(vnode);
247 ACL->size = sizeof(struct acl_accessList);
248 ACL->version = ACL_ACLVERSION;
252 ACL->entries[0].id = -204; /* this assumes System:administrators is group -204 */
253 ACL->entries[0].rights =
254 PRSFS_READ | PRSFS_WRITE | PRSFS_INSERT | PRSFS_LOOKUP | PRSFS_DELETE
255 | PRSFS_LOCK | PRSFS_ADMINISTER;
257 vnode->type = vDirectory;
259 vnode->modeBits = 0777;
260 vnode->linkCount = 2;
261 VNDISK_SET_LEN(vnode, length);
262 vnode->uniquifier = 1;
263 V_uniquifier(vp) = vnode->uniquifier + 1;
264 vnode->dataVersion = 1;
265 VNDISK_SET_INO(vnode, inodeNumber);
266 vnode->unixModifyTime = vnode->serverModifyTime = V_creationDate(vp);
270 vnode->vnodeMagic = vcp->magic;
272 IH_INIT(h, vp->device, V_parentId(vp),
273 vp->vnodeIndex[vLarge].handle->ih_ino);
276 code = FDH_SEEK(fdP, vnodeIndexOffset(vcp, 1), SEEK_SET);
278 code = FDH_WRITE(fdP, vnode, SIZEOF_LARGEDISKVNODE);
279 assert(code == SIZEOF_LARGEDISKVNODE);
280 FDH_REALLYCLOSE(fdP);
282 VNDISK_GET_LEN(length, vnode);
283 V_diskused(vp) = nBlocks(length);
289 SAFSVolPartitionInfo(struct rx_call *acid, char *pname, struct diskPartition
294 code = VolPartitionInfo(acid, pname, partition);
295 osi_auditU(acid, VS_ParInfEvent, code, AUD_STR, pname, AUD_END);
300 VolPartitionInfo(struct rx_call *acid, char *pname, struct diskPartition
303 register struct DiskPartition *dp;
306 if (!afsconf_SuperUser(tdir, acid, caller)) return VOLSERBAD_ACCESS;
309 dp = VGetPartition(pname, 0);
311 strncpy(partition->name, dp->name, 32);
312 strncpy(partition->devName, dp->devName, 32);
313 partition->lock_fd = dp->lock_fd;
314 partition->free = dp->free;
315 partition->minFree = dp->totalUsable;
318 return VOLSERILLEGAL_PARTITION;
321 /* obliterate a volume completely, and slowly. */
323 SAFSVolNukeVolume(struct rx_call *acid, afs_int32 apartID, afs_int32 avolID)
327 code = VolNukeVolume(acid, apartID, avolID);
328 osi_auditU(acid, VS_NukVolEvent, code, AUD_LONG, avolID, AUD_END);
333 VolNukeVolume(struct rx_call *acid, afs_int32 apartID, afs_int32 avolID)
338 register afs_int32 code;
340 char caller[MAXKTCNAMELEN];
342 /* check for access */
343 if (!afsconf_SuperUser(tdir, acid, caller))
344 return VOLSERBAD_ACCESS;
346 Log("%s is executing VolNukeVolume %u\n", caller, avolID);
348 tp = volutil_PartitionName(apartID);
351 strcpy(partName, tp); /* remember it for later */
352 /* we first try to attach the volume in update mode, so that the file
353 * server doesn't try to use it (and abort) while (or after) we delete it.
354 * If we don't get the volume, that's fine, too. We just won't put it back.
356 tvp = XAttachVolume(&error, avolID, apartID, V_VOLUPD);
357 code = nuke(partName, avolID);
359 VDetachVolume(&error, tvp);
363 /* create a new volume, with name aname, on the specified partition (1..n)
364 * and of type atype (readwriteVolume, readonlyVolume, backupVolume).
365 * As input, if *avolid is 0, we allocate a new volume id, otherwise we use *avolid
366 * for the volume id (useful for things like volume restore).
367 * Return the new volume id in *avolid.
370 SAFSVolCreateVolume(struct rx_call *acid, afs_int32 apart, char *aname,
371 afs_int32 atype, afs_int32 aparent, afs_int32 *avolid,
377 VolCreateVolume(acid, apart, aname, atype, aparent, avolid, atrans);
378 osi_auditU(acid, VS_CrVolEvent, code, AUD_LONG, *atrans, AUD_LONG,
379 *avolid, AUD_STR, aname, AUD_LONG, atype, AUD_LONG, aparent,
385 VolCreateVolume(struct rx_call *acid, afs_int32 apart, char *aname,
386 afs_int32 atype, afs_int32 aparent, afs_int32 *avolid,
391 afs_int32 junk; /* discardable error code */
392 register afs_int32 volumeID, doCreateRoot = 1;
393 register struct volser_trans *tt;
395 char caller[MAXKTCNAMELEN];
397 if (strlen(aname) > 31)
398 return VOLSERBADNAME;
399 if (!afsconf_SuperUser(tdir, acid, caller))
400 return VOLSERBAD_ACCESS;
402 Log("%s is executing CreateVolume '%s'\n", caller, aname);
403 if ((error = ConvertPartition(apart, ppath, sizeof(ppath))))
404 return error; /*a standard unix error */
405 if (atype != readwriteVolume && atype != readonlyVolume
406 && atype != backupVolume)
408 if ((volumeID = *avolid) == 0) {
410 Log("1 Volser: CreateVolume: missing volume number; %s volume not created\n", aname);
414 if ((aparent == volumeID) && (atype == readwriteVolume)) {
419 tt = NewTrans(volumeID, apart);
421 Log("1 createvolume: failed to create trans\n");
422 return VOLSERVOLBUSY; /* volume already busy! */
424 vp = VCreateVolume(&error, ppath, volumeID, aparent);
426 Log("1 Volser: CreateVolume: Unable to create the volume; aborted, error code %u\n", error);
431 V_uniquifier(vp) = 1;
432 V_creationDate(vp) = V_copyDate(vp);
433 V_inService(vp) = V_blessed(vp) = 1;
435 AssignVolumeName(&V_disk(vp), aname, 0);
438 V_destroyMe(vp) = DESTROY_ME;
440 V_maxquota(vp) = 5000; /* set a quota of 5000 at init time */
441 VUpdateVolume(&error, vp);
443 Log("1 Volser: create UpdateVolume failed, code %d\n", error);
446 VDetachVolume(&junk, vp); /* rather return the real error code */
451 strcpy(tt->lastProcName, "CreateVolume");
452 tt->rxCallPtr = acid;
453 Log("1 Volser: CreateVolume: volume %u (%s) created\n", volumeID, aname);
454 tt->rxCallPtr = (struct rx_call *)0;
456 return VOLSERTRELE_ERROR;
460 /* delete the volume associated with this transaction */
462 SAFSVolDeleteVolume(struct rx_call *acid, afs_int32 atrans)
466 code = VolDeleteVolume(acid, atrans);
467 osi_auditU(acid, VS_DelVolEvent, code, AUD_LONG, atrans, AUD_END);
472 VolDeleteVolume(struct rx_call *acid, afs_int32 atrans)
474 register struct volser_trans *tt;
476 char caller[MAXKTCNAMELEN];
478 if (!afsconf_SuperUser(tdir, acid, caller))
479 return VOLSERBAD_ACCESS;
480 tt = FindTrans(atrans);
483 if (tt->vflags & VTDeleted) {
484 Log("1 Volser: Delete: volume %u already deleted \n", tt->volid);
489 Log("%s is executing Delete Volume %u\n", caller, tt->volid);
490 strcpy(tt->lastProcName, "DeleteVolume");
491 tt->rxCallPtr = acid;
492 VPurgeVolume(&error, tt->volume); /* don't check error code, it is not set! */
493 tt->vflags |= VTDeleted; /* so we know not to do anything else to it */
494 tt->rxCallPtr = (struct rx_call *)0;
496 return VOLSERTRELE_ERROR;
498 Log("1 Volser: Delete: volume %u deleted \n", tt->volid);
499 return 0; /* vpurgevolume doesn't set an error code */
502 /* make a clone of the volume associated with atrans, possibly giving it a new
503 * number (allocate a new number if *newNumber==0, otherwise use *newNumber
504 * for the clone's id). The new clone is given the name newName. Finally, due to
505 * efficiency considerations, if purgeId is non-zero, we purge that volume when doing
506 * the clone operation. This may be useful when making new backup volumes, for instance
507 * since the net result of a clone and a purge generally leaves many inode ref counts
508 * the same, while doing them separately would result in far more iincs and idecs being
509 * peformed (and they are slow operations).
511 /* for efficiency reasons, sometimes faster to piggyback a purge here */
513 SAFSVolClone(struct rx_call *acid, afs_int32 atrans, afs_int32 purgeId,
514 afs_int32 newType, char *newName, afs_int32 *newNumber)
518 code = VolClone(acid, atrans, purgeId, newType, newName, newNumber);
519 osi_auditU(acid, VS_CloneEvent, code, AUD_LONG, atrans, AUD_LONG, purgeId,
520 AUD_STR, newName, AUD_LONG, newType, AUD_LONG, *newNumber,
526 VolClone(struct rx_call *acid, afs_int32 atrans, afs_int32 purgeId,
527 afs_int32 newType, char *newName, afs_int32 *newNumber)
530 register struct Volume *originalvp, *purgevp, *newvp;
532 register struct volser_trans *tt, *ttc;
533 char caller[MAXKTCNAMELEN];
535 if (strlen(newName) > 31)
536 return VOLSERBADNAME;
537 if (!afsconf_SuperUser(tdir, acid, caller))
538 return VOLSERBAD_ACCESS; /*not a super user */
540 Log("%s is executing Clone Volume new name=%s\n", caller, newName);
542 originalvp = (Volume *) 0;
543 purgevp = (Volume *) 0;
544 newvp = (Volume *) 0;
545 tt = ttc = (struct volser_trans *)0;
547 if (!newNumber || !*newNumber) {
548 Log("1 Volser: Clone: missing volume number for the clone; aborted\n");
553 if (newType != readonlyVolume && newType != backupVolume)
555 tt = FindTrans(atrans);
558 if (tt->vflags & VTDeleted) {
559 Log("1 Volser: Clone: volume %u has been deleted \n", tt->volid);
563 ttc = NewTrans(newId, tt->partition);
564 if (!ttc) { /* someone is messing with the clone already */
568 strcpy(tt->lastProcName, "Clone");
569 tt->rxCallPtr = acid;
573 purgevp = VAttachVolume(&error, purgeId, V_VOLUPD);
575 Log("1 Volser: Clone: Could not attach 'purge' volume %u; clone aborted\n", purgeId);
581 originalvp = tt->volume;
582 if ((V_type(originalvp) == backupVolume)
583 || (V_type(originalvp) == readonlyVolume)) {
584 Log("1 Volser: Clone: The volume to be cloned must be a read/write; aborted\n");
588 if ((V_destroyMe(originalvp) == DESTROY_ME) || !V_inService(originalvp)) {
589 Log("1 Volser: Clone: Volume %d is offline and cannot be cloned\n",
595 if (originalvp->device != purgevp->device) {
596 Log("1 Volser: Clone: Volumes %u and %u are on different devices\n", tt->volid, purgeId);
600 if (V_type(purgevp) != readonlyVolume) {
601 Log("1 Volser: Clone: The \"purge\" volume must be a read only volume; aborted\n");
605 if (V_type(originalvp) == readonlyVolume
606 && V_parentId(originalvp) != V_parentId(purgevp)) {
607 Log("1 Volser: Clone: Volume %u and volume %u were not cloned from the same parent volume; aborted\n", tt->volid, purgeId);
611 if (V_type(originalvp) == readwriteVolume
612 && tt->volid != V_parentId(purgevp)) {
613 Log("1 Volser: Clone: Volume %u was not originally cloned from volume %u; aborted\n", purgeId, tt->volid);
622 VCreateVolume(&error, originalvp->partition->name, newId,
623 V_parentId(originalvp));
625 Log("1 Volser: Clone: Couldn't create new volume; clone aborted\n");
626 newvp = (Volume *) 0;
629 if (newType == readonlyVolume)
630 V_cloneId(originalvp) = newId;
631 Log("1 Volser: Clone: Cloning volume %u to new volume %u\n", tt->volid,
634 Log("1 Volser: Clone: Purging old read only volume %u\n", purgeId);
635 CloneVolume(&error, originalvp, newvp, purgevp);
636 purgevp = NULL; /* clone releases it, maybe even if error */
638 Log("1 Volser: Clone: clone operation failed with code %u\n", error);
642 if (newType == readonlyVolume) {
643 AssignVolumeName(&V_disk(newvp), V_name(originalvp), ".readonly");
644 V_type(newvp) = readonlyVolume;
645 } else if (newType == backupVolume) {
646 AssignVolumeName(&V_disk(newvp), V_name(originalvp), ".backup");
647 V_type(newvp) = backupVolume;
648 V_backupId(originalvp) = newId;
650 strcpy(newvp->header->diskstuff.name, newName);
651 V_creationDate(newvp) = V_copyDate(newvp);
652 ClearVolumeStats(&V_disk(newvp));
653 V_destroyMe(newvp) = DESTROY_ME;
654 V_inService(newvp) = 0;
655 if (newType == backupVolume) {
656 V_backupDate(originalvp) = V_copyDate(newvp);
657 V_backupDate(newvp) = V_copyDate(newvp);
660 VUpdateVolume(&error, newvp);
662 Log("1 Volser: Clone: VUpdate failed code %u\n", error);
666 VDetachVolume(&error, newvp); /* allow file server to get it's hands on it */
668 VUpdateVolume(&error, originalvp);
670 Log("1 Volser: Clone: original update %u\n", error);
674 tt->rxCallPtr = (struct rx_call *)0;
676 tt = (struct volser_trans *)0;
677 error = VOLSERTRELE_ERROR;
685 VDetachVolume(&code, purgevp);
687 VDetachVolume(&code, newvp);
689 tt->rxCallPtr = (struct rx_call *)0;
697 /* reclone this volume into the specified id */
699 SAFSVolReClone(struct rx_call *acid, afs_int32 atrans, afs_int32 cloneId)
703 code = VolReClone(acid, atrans, cloneId);
704 osi_auditU(acid, VS_ReCloneEvent, code, AUD_LONG, atrans, AUD_LONG,
710 VolReClone(struct rx_call *acid, afs_int32 atrans, afs_int32 cloneId)
712 register struct Volume *originalvp, *clonevp;
715 register struct volser_trans *tt, *ttc;
716 char caller[MAXKTCNAMELEN];
718 /*not a super user */
719 if (!afsconf_SuperUser(tdir, acid, caller))
720 return VOLSERBAD_ACCESS;
722 Log("%s is executing Reclone Volume %u\n", caller, cloneId);
724 clonevp = originalvp = (Volume *) 0;
725 tt = (struct volser_trans *)0;
727 tt = FindTrans(atrans);
730 if (tt->vflags & VTDeleted) {
731 Log("1 Volser: VolReClone: volume %u has been deleted \n", tt->volid);
735 ttc = NewTrans(cloneId, tt->partition);
736 if (!ttc) { /* someone is messing with the clone already */
740 strcpy(tt->lastProcName, "ReClone");
741 tt->rxCallPtr = acid;
743 originalvp = tt->volume;
744 if ((V_type(originalvp) == backupVolume)
745 || (V_type(originalvp) == readonlyVolume)) {
746 Log("1 Volser: Clone: The volume to be cloned must be a read/write; aborted\n");
750 if ((V_destroyMe(originalvp) == DESTROY_ME) || !V_inService(originalvp)) {
751 Log("1 Volser: Clone: Volume %d is offline and cannot be cloned\n",
757 clonevp = VAttachVolume(&error, cloneId, V_VOLUPD);
759 Log("1 Volser: can't attach clone %d\n", cloneId);
763 newType = V_type(clonevp); /* type of the new volume */
765 if (originalvp->device != clonevp->device) {
766 Log("1 Volser: Clone: Volumes %u and %u are on different devices\n",
771 if (V_type(clonevp) != readonlyVolume && V_type(clonevp) != backupVolume) {
772 Log("1 Volser: Clone: The \"recloned\" volume must be a read only volume; aborted\n");
776 if (V_type(originalvp) == readonlyVolume
777 && V_parentId(originalvp) != V_parentId(clonevp)) {
778 Log("1 Volser: Clone: Volume %u and volume %u were not cloned from the same parent volume; aborted\n", tt->volid, cloneId);
782 if (V_type(originalvp) == readwriteVolume
783 && tt->volid != V_parentId(clonevp)) {
784 Log("1 Volser: Clone: Volume %u was not originally cloned from volume %u; aborted\n", cloneId, tt->volid);
790 Log("1 Volser: Clone: Recloning volume %u to volume %u\n", tt->volid,
792 CloneVolume(&error, originalvp, clonevp, clonevp);
794 Log("1 Volser: Clone: reclone operation failed with code %d\n",
800 /* fix up volume name and type, CloneVolume just propagated RW's */
801 if (newType == readonlyVolume) {
802 AssignVolumeName(&V_disk(clonevp), V_name(originalvp), ".readonly");
803 V_type(clonevp) = readonlyVolume;
804 } else if (newType == backupVolume) {
805 AssignVolumeName(&V_disk(clonevp), V_name(originalvp), ".backup");
806 V_type(clonevp) = backupVolume;
807 V_backupId(originalvp) = cloneId;
809 /* don't do strcpy onto diskstuff.name, it's still OK from 1st clone */
811 /* pretend recloned volume is a totally new instance */
812 V_copyDate(clonevp) = time(0);
813 V_creationDate(clonevp) = V_copyDate(clonevp);
814 ClearVolumeStats(&V_disk(clonevp));
815 V_destroyMe(clonevp) = 0;
816 V_inService(clonevp) = 0;
817 if (newType == backupVolume) {
818 V_backupDate(originalvp) = V_copyDate(clonevp);
819 V_backupDate(clonevp) = V_copyDate(clonevp);
821 V_inUse(clonevp) = 0;
822 VUpdateVolume(&error, clonevp);
824 Log("1 Volser: Clone: VUpdate failed code %u\n", error);
828 VDetachVolume(&error, clonevp); /* allow file server to get it's hands on it */
830 VUpdateVolume(&error, originalvp);
832 Log("1 Volser: Clone: original update %u\n", error);
836 tt->rxCallPtr = (struct rx_call *)0;
838 tt = (struct volser_trans *)0;
839 error = VOLSERTRELE_ERROR;
846 struct DiskPartition *tpartp = originalvp->partition;
847 FSYNC_askfs(cloneId, tpartp->name, FSYNC_RESTOREVOLUME, 0);
853 VDetachVolume(&code, clonevp);
855 tt->rxCallPtr = (struct rx_call *)0;
863 /* create a new transaction, associated with volume and partition. Type of
864 * volume transaction is spec'd by iflags. New trans id is returned in ttid.
865 * See volser.h for definition of iflags (the constants are named IT*).
868 SAFSVolTransCreate(struct rx_call *acid, afs_int32 volume, afs_int32 partition,
869 afs_int32 iflags, afs_int32 *ttid)
873 code = VolTransCreate(acid, volume, partition, iflags, ttid);
874 osi_auditU(acid, VS_TransCrEvent, code, AUD_LONG, *ttid, AUD_LONG, volume,
880 VolTransCreate(struct rx_call *acid, afs_int32 volume, afs_int32 partition,
881 afs_int32 iflags, afs_int32 *ttid)
883 register struct volser_trans *tt;
885 afs_int32 error, code;
887 char caller[MAXKTCNAMELEN];
889 if (!afsconf_SuperUser(tdir, acid, caller))
890 return VOLSERBAD_ACCESS; /*not a super user */
891 if (iflags & ITCreate)
893 else if (iflags & ITBusy)
895 else if (iflags & ITReadOnly)
897 else if (iflags & ITOffline)
900 Log("1 Volser: TransCreate: Could not create trans, error %u\n",
905 tt = NewTrans(volume, partition);
907 /* can't create a transaction? put the volume back */
908 Log("1 transcreate: can't create transaction\n");
909 return VOLSERVOLBUSY;
911 tv = XAttachVolume(&error, volume, partition, mode);
915 VDetachVolume(&code, tv);
923 strcpy(tt->lastProcName, "TransCreate");
925 return VOLSERTRELE_ERROR;
930 /* using aindex as a 0-based index, return the aindex'th volume on this server
931 * Both the volume number and partition number (one-based) are returned.
934 SAFSVolGetNthVolume(struct rx_call *acid, afs_int32 aindex, afs_int32 *avolume,
939 code = VolGetNthVolume(acid, aindex, avolume, apart);
940 osi_auditU(acid, VS_GetNVolEvent, code, AUD_LONG, *avolume, AUD_END);
945 VolGetNthVolume(struct rx_call *acid, afs_int32 aindex, afs_int32 *avolume,
948 Log("1 Volser: GetNthVolume: Not yet implemented\n");
952 /* return the volume flags (VT* constants in volser.h) associated with this
956 SAFSVolGetFlags(struct rx_call *acid, afs_int32 atid, afs_int32 *aflags)
960 code = VolGetFlags(acid, atid, aflags);
961 osi_auditU(acid, VS_GetFlgsEvent, code, AUD_LONG, atid, AUD_END);
966 VolGetFlags(struct rx_call *acid, afs_int32 atid, afs_int32 *aflags)
968 register struct volser_trans *tt;
970 tt = FindTrans(atid);
973 if (tt->vflags & VTDeleted) {
974 Log("1 Volser: VolGetFlags: volume %u has been deleted \n",
979 strcpy(tt->lastProcName, "GetFlags");
980 tt->rxCallPtr = acid;
981 *aflags = tt->vflags;
982 tt->rxCallPtr = (struct rx_call *)0;
984 return VOLSERTRELE_ERROR;
989 /* Change the volume flags (VT* constants in volser.h) associated with this
990 * transaction. Effects take place immediately on volume, although volume
991 * remains attached as usual by the transaction.
994 SAFSVolSetFlags(struct rx_call *acid, afs_int32 atid, afs_int32 aflags)
998 code = VolSetFlags(acid, atid, aflags);
999 osi_auditU(acid, VS_SetFlgsEvent, code, AUD_LONG, atid, AUD_LONG, aflags,
1005 VolSetFlags(struct rx_call *acid, afs_int32 atid, afs_int32 aflags)
1007 register struct volser_trans *tt;
1008 register struct Volume *vp;
1010 char caller[MAXKTCNAMELEN];
1012 if (!afsconf_SuperUser(tdir, acid, caller))
1013 return VOLSERBAD_ACCESS; /*not a super user */
1014 /* find the trans */
1015 tt = FindTrans(atid);
1018 if (tt->vflags & VTDeleted) {
1019 Log("1 Volser: VolSetFlags: volume %u has been deleted \n",
1024 strcpy(tt->lastProcName, "SetFlags");
1025 tt->rxCallPtr = acid;
1026 vp = tt->volume; /* pull volume out of transaction */
1028 /* check if we're allowed to make any updates */
1029 if (tt->iflags & ITReadOnly) {
1034 /* handle delete-on-salvage flag */
1035 if (aflags & VTDeleteOnSalvage) {
1036 V_destroyMe(tt->volume) = DESTROY_ME;
1038 V_destroyMe(tt->volume) = 0;
1041 if (aflags & VTOutOfService) {
1042 V_inService(vp) = 0;
1044 V_inService(vp) = 1;
1046 VUpdateVolume(&error, vp);
1047 tt->vflags = aflags;
1048 tt->rxCallPtr = (struct rx_call *)0;
1049 if (TRELE(tt) && !error)
1050 return VOLSERTRELE_ERROR;
1055 /* dumpS the volume associated with a particular transaction from a particular
1056 * date. Send the dump to a different transaction (destTrans) on the server
1057 * specified by the destServer structure.
1060 SAFSVolForward(struct rx_call *acid, afs_int32 fromTrans, afs_int32 fromDate,
1061 struct destServer *destination, afs_int32 destTrans,
1062 struct restoreCookie *cookie)
1067 VolForward(acid, fromTrans, fromDate, destination, destTrans, cookie);
1068 osi_auditU(acid, VS_ForwardEvent, code, AUD_LONG, fromTrans, AUD_HOST,
1069 destination->destHost, AUD_LONG, destTrans, AUD_END);
1074 VolForward(struct rx_call *acid, afs_int32 fromTrans, afs_int32 fromDate,
1075 struct destServer *destination, afs_int32 destTrans,
1076 struct restoreCookie *cookie)
1078 register struct volser_trans *tt;
1079 register afs_int32 code;
1080 register struct rx_connection *tcon;
1081 struct rx_call *tcall;
1082 register struct Volume *vp;
1083 struct rx_securityClass *securityObject;
1084 afs_int32 securityIndex;
1085 char caller[MAXKTCNAMELEN];
1087 if (!afsconf_SuperUser(tdir, acid, caller))
1088 return VOLSERBAD_ACCESS; /*not a super user */
1089 /* initialize things */
1090 tcon = (struct rx_connection *)0;
1091 tt = (struct volser_trans *)0;
1093 /* find the local transaction */
1094 tt = FindTrans(fromTrans);
1097 if (tt->vflags & VTDeleted) {
1098 Log("1 Volser: VolForward: volume %u has been deleted \n", tt->volid);
1103 strcpy(tt->lastProcName, "Forward");
1105 /* get auth info for the this connection (uses afs from ticket file) */
1106 code = afsconf_ClientAuth(tdir, &securityObject, &securityIndex);
1112 /* make an rpc connection to the other server */
1114 rx_NewConnection(htonl(destination->destHost),
1115 htons(destination->destPort), VOLSERVICE_ID,
1116 securityObject, securityIndex);
1118 tt->rxCallPtr = (struct rx_call *)0;
1122 tcall = rx_NewCall(tcon);
1123 tt->rxCallPtr = tcall;
1124 /* start restore going. fromdate == 0 --> doing an incremental dump/restore */
1125 code = StartAFSVolRestore(tcall, destTrans, (fromDate ? 1 : 0), cookie);
1130 /* these next calls implictly call rx_Write when writing out data */
1131 code = DumpVolume(tcall, vp, fromDate, 0); /* last field = don't dump all dirs */
1134 EndAFSVolRestore(tcall); /* probably doesn't do much */
1135 tt->rxCallPtr = (struct rx_call *)0;
1136 code = rx_EndCall(tcall, 0);
1137 rx_DestroyConnection(tcon); /* done with the connection */
1142 return VOLSERTRELE_ERROR;
1148 (void)rx_EndCall(tcall, 0);
1149 rx_DestroyConnection(tcon);
1152 tt->rxCallPtr = (struct rx_call *)0;
1158 /* Start a dump and send it to multiple places simultaneously.
1159 * If this returns an error (eg, return ENOENT), it means that
1160 * none of the releases worked. If this returns 0, that means
1161 * that one or more of the releases worked, and the caller has
1162 * to examine the results array to see which one(s).
1163 * This will only do EITHER incremental or full, not both, so it's
1164 * the caller's responsibility to be sure that all the destinations
1165 * need just an incremental (and from the same time), if that's
1169 SAFSVolForwardMultiple(struct rx_call *acid, afs_int32 fromTrans, afs_int32
1170 fromDate, manyDests *destinations, afs_int32 spare,
1171 struct restoreCookie *cookie, manyResults *results)
1173 afs_int32 securityIndex;
1174 struct rx_securityClass *securityObject;
1175 char caller[MAXKTCNAMELEN];
1176 struct volser_trans *tt;
1177 afs_int32 ec, code, *codes;
1178 struct rx_connection **tcons;
1179 struct rx_call **tcalls;
1181 int i, is_incremental;
1184 memset(results, 0, sizeof(manyResults));
1186 if (!afsconf_SuperUser(tdir, acid, caller))
1187 return VOLSERBAD_ACCESS; /*not a super user */
1188 tt = FindTrans(fromTrans);
1191 if (tt->vflags & VTDeleted) {
1192 Log("1 Volser: VolForward: volume %u has been deleted \n", tt->volid);
1197 strcpy(tt->lastProcName, "ForwardMulti");
1199 /* (fromDate == 0) ==> incremental dump */
1200 is_incremental = (fromDate ? 1 : 0);
1202 i = results->manyResults_len = destinations->manyDests_len;
1203 results->manyResults_val = codes =
1204 (afs_int32 *) malloc(i * sizeof(afs_int32));
1206 (struct rx_connection **)malloc(i * sizeof(struct rx_connection *));
1207 tcalls = (struct rx_call **)malloc(i * sizeof(struct rx_call *));
1209 /* get auth info for this connection (uses afs from ticket file) */
1210 code = afsconf_ClientAuth(tdir, &securityObject, &securityIndex);
1212 goto fail; /* in order to audit each failure */
1215 /* make connections to all the other servers */
1216 for (i = 0; i < destinations->manyDests_len; i++) {
1217 struct replica *dest = &(destinations->manyDests_val[i]);
1219 rx_NewConnection(htonl(dest->server.destHost),
1220 htons(dest->server.destPort), VOLSERVICE_ID,
1221 securityObject, securityIndex);
1223 codes[i] = ENOTCONN;
1225 if (!(tcalls[i] = rx_NewCall(tcons[i])))
1226 codes[i] = ENOTCONN;
1229 StartAFSVolRestore(tcalls[i], dest->trans, is_incremental,
1232 (void)rx_EndCall(tcalls[i], 0);
1234 rx_DestroyConnection(tcons[i]);
1241 /* these next calls implictly call rx_Write when writing out data */
1242 code = DumpVolMulti(tcalls, i, vp, fromDate, 0, codes);
1246 for (i--; i >= 0; i--) {
1247 struct replica *dest = &(destinations->manyDests_val[i]);
1249 if (!code && tcalls[i] && !codes[i]) {
1250 EndAFSVolRestore(tcalls[i]);
1253 ec = rx_EndCall(tcalls[i], 0);
1258 rx_DestroyConnection(tcons[i]); /* done with the connection */
1261 osi_auditU(acid, VS_ForwardEvent, (code ? code : codes[i]), AUD_LONG,
1262 fromTrans, AUD_HOST, dest->server.destHost, AUD_LONG,
1263 dest->trans, AUD_END);
1269 tt->rxCallPtr = (struct rx_call *)0;
1270 if (TRELE(tt) && !code) /* return the first code if it's set */
1271 return VOLSERTRELE_ERROR;
1278 SAFSVolDump(struct rx_call *acid, afs_int32 fromTrans, afs_int32 fromDate)
1282 code = VolDump(acid, fromTrans, fromDate);
1283 osi_auditU(acid, VS_DumpEvent, code, AUD_LONG, fromTrans, AUD_END);
1288 VolDump(struct rx_call *acid, afs_int32 fromTrans, afs_int32 fromDate)
1291 register struct volser_trans *tt;
1292 char caller[MAXKTCNAMELEN];
1294 if (!afsconf_SuperUser(tdir, acid, caller))
1295 return VOLSERBAD_ACCESS; /*not a super user */
1296 tt = FindTrans(fromTrans);
1299 if (tt->vflags & VTDeleted) {
1300 Log("1 Volser: VolDump: volume %u has been deleted \n", tt->volid);
1304 strcpy(tt->lastProcName, "Dump");
1305 tt->rxCallPtr = acid;
1306 code = DumpVolume(acid, tt->volume, fromDate, 1); /* squirt out the volume's data, too */
1308 tt->rxCallPtr = (struct rx_call *)0;
1312 tt->rxCallPtr = (struct rx_call *)0;
1315 return VOLSERTRELE_ERROR;
1321 * Ha! No more helper process!
1324 SAFSVolRestore(struct rx_call *acid, afs_int32 atrans, afs_int32 aflags,
1325 struct restoreCookie *cookie)
1329 code = VolRestore(acid, atrans, aflags, cookie);
1330 osi_auditU(acid, VS_RestoreEvent, code, AUD_LONG, atrans, AUD_END);
1335 VolRestore(struct rx_call *acid, afs_int32 atrans, afs_int32 aflags,
1336 struct restoreCookie *cookie)
1338 register struct volser_trans *tt;
1339 register afs_int32 code, tcode;
1340 char caller[MAXKTCNAMELEN];
1342 if (!afsconf_SuperUser(tdir, acid, caller))
1343 return VOLSERBAD_ACCESS; /*not a super user */
1344 tt = FindTrans(atrans);
1347 if (tt->vflags & VTDeleted) {
1348 Log("1 Volser: VolRestore: volume %u has been deleted \n", tt->volid);
1352 strcpy(tt->lastProcName, "Restore");
1353 tt->rxCallPtr = acid;
1355 DFlushVolume(V_parentId(tt->volume)); /* Ensure dir buffers get dropped */
1357 code = RestoreVolume(acid, tt->volume, (aflags & 1), cookie); /* last is incrementalp */
1358 FSYNC_askfs(tt->volid, NULL, FSYNC_RESTOREVOLUME, 0l); /*break call backs on the
1359 * restored volume */
1360 tt->rxCallPtr = (struct rx_call *)0;
1363 return (code ? code : tcode);
1366 /* end a transaction, returning the transaction's final error code in rcode */
1368 SAFSVolEndTrans(struct rx_call *acid, afs_int32 destTrans, afs_int32 *rcode)
1372 code = VolEndTrans(acid, destTrans, rcode);
1373 osi_auditU(acid, VS_EndTrnEvent, code, AUD_LONG, destTrans, AUD_END);
1378 VolEndTrans(struct rx_call *acid, afs_int32 destTrans, afs_int32 *rcode)
1380 register struct volser_trans *tt;
1381 char caller[MAXKTCNAMELEN];
1383 if (!afsconf_SuperUser(tdir, acid, caller))
1384 return VOLSERBAD_ACCESS; /*not a super user */
1385 tt = FindTrans(destTrans);
1389 *rcode = tt->returnCode;
1390 DeleteTrans(tt); /* this does an implicit TRELE */
1396 SAFSVolSetForwarding(struct rx_call *acid, afs_int32 atid, afs_int32 anewsite)
1400 code = VolSetForwarding(acid, atid, anewsite);
1401 osi_auditU(acid, VS_SetForwEvent, code, AUD_LONG, atid, AUD_HOST,
1407 VolSetForwarding(struct rx_call *acid, afs_int32 atid, afs_int32 anewsite)
1409 register struct volser_trans *tt;
1410 char caller[MAXKTCNAMELEN];
1412 if (!afsconf_SuperUser(tdir, acid, caller))
1413 return VOLSERBAD_ACCESS; /*not a super user */
1414 tt = FindTrans(atid);
1417 if (tt->vflags & VTDeleted) {
1418 Log("1 Volser: VolSetForwarding: volume %u has been deleted \n",
1423 strcpy(tt->lastProcName, "SetForwarding");
1424 tt->rxCallPtr = acid;
1425 FSYNC_askfs(tt->volid, NULL, FSYNC_MOVEVOLUME, anewsite);
1426 tt->rxCallPtr = (struct rx_call *)0;
1428 return VOLSERTRELE_ERROR;
1434 SAFSVolGetStatus(struct rx_call *acid, afs_int32 atrans,
1435 register struct volser_status *astatus)
1439 code = VolGetStatus(acid, atrans, astatus);
1440 osi_auditU(acid, VS_GetStatEvent, code, AUD_LONG, atrans, AUD_END);
1445 VolGetStatus(struct rx_call *acid, afs_int32 atrans,
1446 register struct volser_status *astatus)
1448 register struct Volume *tv;
1449 register struct VolumeDiskData *td;
1450 struct volser_trans *tt;
1453 tt = FindTrans(atrans);
1456 if (tt->vflags & VTDeleted) {
1457 Log("1 Volser: VolGetStatus: volume %u has been deleted \n",
1462 strcpy(tt->lastProcName, "GetStatus");
1463 tt->rxCallPtr = acid;
1466 tt->rxCallPtr = (struct rx_call *)0;
1471 td = &tv->header->diskstuff;
1472 astatus->volID = td->id;
1473 astatus->nextUnique = td->uniquifier;
1474 astatus->type = td->type;
1475 astatus->parentID = td->parentId;
1476 astatus->cloneID = td->cloneId;
1477 astatus->backupID = td->backupId;
1478 astatus->restoredFromID = td->restoredFromId;
1479 astatus->maxQuota = td->maxquota;
1480 astatus->minQuota = td->minquota;
1481 astatus->owner = td->owner;
1482 astatus->creationDate = td->creationDate;
1483 astatus->accessDate = td->accessDate;
1484 astatus->updateDate = td->updateDate;
1485 astatus->expirationDate = td->expirationDate;
1486 astatus->backupDate = td->backupDate;
1487 astatus->copyDate = td->copyDate;
1488 tt->rxCallPtr = (struct rx_call *)0;
1490 return VOLSERTRELE_ERROR;
1496 SAFSVolSetInfo(struct rx_call *acid, afs_int32 atrans,
1497 register struct volintInfo *astatus)
1501 code = VolSetInfo(acid, atrans, astatus);
1502 osi_auditU(acid, VS_SetInfoEvent, code, AUD_LONG, atrans, AUD_END);
1507 VolSetInfo(struct rx_call *acid, afs_int32 atrans,
1508 register struct volintInfo *astatus)
1510 register struct Volume *tv;
1511 register struct VolumeDiskData *td;
1512 struct volser_trans *tt;
1513 char caller[MAXKTCNAMELEN];
1516 if (!afsconf_SuperUser(tdir, acid, caller))
1517 return VOLSERBAD_ACCESS; /*not a super user */
1518 tt = FindTrans(atrans);
1521 if (tt->vflags & VTDeleted) {
1522 Log("1 Volser: VolSetInfo: volume %u has been deleted \n", tt->volid);
1526 strcpy(tt->lastProcName, "SetStatus");
1527 tt->rxCallPtr = acid;
1530 tt->rxCallPtr = (struct rx_call *)0;
1535 td = &tv->header->diskstuff;
1537 * Add more fields as necessary
1539 if (astatus->maxquota != -1)
1540 td->maxquota = astatus->maxquota;
1541 if (astatus->dayUse != -1)
1542 td->dayUse = astatus->dayUse;
1543 VUpdateVolume(&error, tv);
1544 tt->rxCallPtr = (struct rx_call *)0;
1546 return VOLSERTRELE_ERROR;
1552 SAFSVolGetName(struct rx_call *acid, afs_int32 atrans, char **aname)
1556 code = VolGetName(acid, atrans, aname);
1557 osi_auditU(acid, VS_GetNameEvent, code, AUD_LONG, atrans, AUD_END);
1562 VolGetName(struct rx_call *acid, afs_int32 atrans, char **aname)
1564 register struct Volume *tv;
1565 register struct VolumeDiskData *td;
1566 struct volser_trans *tt;
1570 tt = FindTrans(atrans);
1573 if (tt->vflags & VTDeleted) {
1574 Log("1 Volser: VolGetName: volume %u has been deleted \n", tt->volid);
1578 strcpy(tt->lastProcName, "GetName");
1579 tt->rxCallPtr = acid;
1582 tt->rxCallPtr = (struct rx_call *)0;
1587 td = &tv->header->diskstuff;
1588 len = strlen(td->name) + 1; /* don't forget the null */
1590 tt->rxCallPtr = (struct rx_call *)0;
1594 *aname = (char *)malloc(len);
1595 strcpy(*aname, td->name);
1596 tt->rxCallPtr = (struct rx_call *)0;
1598 return VOLSERTRELE_ERROR;
1603 /*this is a handshake to indicate that the next call will be SAFSVolRestore
1606 SAFSVolSignalRestore(struct rx_call *acid, char volname[], int volType,
1607 afs_int32 parentId, afs_int32 cloneId)
1613 /*return a list of all partitions on the server. The non mounted
1614 *partitions are returned as -1 in the corresponding slot in partIds*/
1616 SAFSVolListPartitions(struct rx_call *acid, struct pIDs *partIds)
1620 code = VolListPartitions(acid, partIds);
1621 osi_auditU(acid, VS_ListParEvent, code, AUD_END);
1626 VolListPartitions(struct rx_call *acid, struct pIDs *partIds)
1631 strcpy(namehead, "/vicep"); /*7 including null terminator */
1633 /* Just return attached partitions. */
1635 for (i = 0; i < 26; i++) {
1636 namehead[6] = i + 'a';
1637 if (VGetPartition(namehead, 0))
1638 partIds->partIds[i] = VGetPartition(namehead, 0) ? i : -1;
1644 /*return a list of all partitions on the server. The non mounted
1645 *partitions are returned as -1 in the corresponding slot in partIds*/
1647 SAFSVolXListPartitions(struct rx_call *acid, struct partEntries *pEntries)
1651 code = XVolListPartitions(acid, pEntries);
1652 osi_auditU(acid, VS_ListParEvent, code, AUD_END);
1657 XVolListPartitions(struct rx_call *acid, struct partEntries *pEntries)
1659 struct stat rbuf, pbuf;
1661 struct partList partList;
1662 struct DiskPartition *dp;
1665 strcpy(namehead, "/vicep"); /*7 including null terminator */
1667 /* Only report attached partitions */
1668 for (i = 0; i < VOLMAXPARTS; i++) {
1670 namehead[6] = i + 'a';
1674 namehead[6] = 'a' + (k / 26);
1675 namehead[7] = 'a' + (k % 26);
1678 dp = VGetPartition(namehead, 0);
1680 partList.partId[j++] = i;
1682 pEntries->partEntries_val = (afs_int32 *) malloc(j * sizeof(int));
1683 memcpy((char *)pEntries->partEntries_val, (char *)&partList,
1685 pEntries->partEntries_len = j;
1690 /*extract the volume id from string vname. Its of the form " V0*<id>.vol "*/
1692 ExtractVolId(char vname[])
1695 char name[VOLSER_MAXVOLNAME + 1];
1697 strcpy(name, vname);
1699 while (name[i] == 'V' || name[i] == '0')
1702 name[11] = '\0'; /* smash the "." */
1703 return (atol(&name[i]));
1706 /*return the name of the next volume header in the directory associated with dirp and dp.
1707 *the volume id is returned in volid, and volume header name is returned in volname*/
1709 GetNextVol(DIR * dirp, char *volname, afs_int32 * volid)
1713 dp = readdir(dirp); /*read next entry in the directory */
1715 if ((dp->d_name[0] == 'V') && !strcmp(&(dp->d_name[11]), VHDREXT)) {
1716 *volid = ExtractVolId(dp->d_name);
1717 strcpy(volname, dp->d_name);
1718 return 0; /*return the name of the file representing a volume */
1720 strcpy(volname, "");
1721 return 0; /*volname doesnot represent a volume */
1724 strcpy(volname, "EOD");
1725 return 0; /*end of directory */
1730 /*return the header information about the <volid> */
1732 SAFSVolListOneVolume(struct rx_call *acid, afs_int32 partid, afs_int32
1733 volumeId, volEntries *volumeInfo)
1737 code = VolListOneVolume(acid, partid, volumeId, volumeInfo);
1738 osi_auditU(acid, VS_Lst1VolEvent, code, AUD_LONG, volumeId, AUD_END);
1743 VolListOneVolume(struct rx_call *acid, afs_int32 partid, afs_int32
1744 volumeId, volEntries *volumeInfo)
1747 register struct Volume *tv;
1748 struct DiskPartition *partP;
1749 struct volser_trans *ttc;
1750 char pname[9], volname[20];
1751 afs_int32 error = 0;
1757 volumeInfo->volEntries_val = (volintInfo *) malloc(sizeof(volintInfo));
1758 pntr = volumeInfo->volEntries_val;
1759 volumeInfo->volEntries_len = 1;
1760 if (GetPartName(partid, pname))
1761 return VOLSERILLEGAL_PARTITION;
1762 if (!(partP = VGetPartition(pname, 0)))
1763 return VOLSERILLEGAL_PARTITION;
1764 dirp = opendir(VPartitionPath(partP));
1766 return VOLSERILLEGAL_PARTITION;
1767 strcpy(volname, "");
1768 ttc = (struct volser_trans *)0;
1769 tv = (Volume *) 0; /* volume not attached */
1771 while (strcmp(volname, "EOD") && !found) { /*while there are more volumes in the partition */
1773 if (!strcmp(volname, "")) { /* its not a volume, fetch next file */
1774 GetNextVol(dirp, volname, &volid);
1775 continue; /*back to while loop */
1778 if (volid == volumeId) { /*copy other things too */
1780 #ifndef AFS_PTHREAD_ENV
1781 IOMGR_Poll(); /*make sure that the client doesnot time out */
1783 ttc = NewTrans(volid, partid);
1785 pntr->status = VBUSY;
1786 pntr->volid = volid;
1789 tv = VAttachVolumeByName(&error, pname, volname, V_READONLY);
1791 pntr->status = 0; /*things are messed up */
1792 strcpy(pntr->name, volname);
1793 pntr->volid = volid;
1794 Log("1 Volser: ListVolumes: Could not attach volume %u (%s:%s), error=%d\n", volid, pname, volname, error);
1797 if (tv->header->diskstuff.destroyMe == DESTROY_ME) {
1798 /*this volume will be salvaged */
1800 strcpy(pntr->name, volname);
1801 pntr->volid = volid;
1802 Log("1 Volser: ListVolumes: Volume %u (%s) will be destroyed on next salvage\n", volid, volname);
1806 if (tv->header->diskstuff.needsSalvaged) {
1807 /*this volume will be salvaged */
1809 strcpy(pntr->name, volname);
1810 pntr->volid = volid;
1811 Log("1 Volser: ListVolumes: Volume %u (%s) needs to be salvaged\n", volid, volname);
1815 /*read in the relevant info */
1816 pntr->status = VOK; /*its ok */
1817 pntr->volid = tv->header->diskstuff.id;
1818 strcpy(pntr->name, tv->header->diskstuff.name);
1819 pntr->type = tv->header->diskstuff.type; /*if ro volume */
1820 pntr->cloneID = tv->header->diskstuff.cloneId; /*if rw volume */
1821 pntr->backupID = tv->header->diskstuff.backupId;
1822 pntr->parentID = tv->header->diskstuff.parentId;
1823 pntr->copyDate = tv->header->diskstuff.copyDate;
1824 pntr->inUse = tv->header->diskstuff.inUse;
1825 pntr->size = tv->header->diskstuff.diskused;
1826 pntr->needsSalvaged = tv->header->diskstuff.needsSalvaged;
1827 pntr->destroyMe = tv->header->diskstuff.destroyMe;
1828 pntr->maxquota = tv->header->diskstuff.maxquota;
1829 pntr->filecount = tv->header->diskstuff.filecount;
1830 now = FT_ApproxTime();
1831 if (now - tv->header->diskstuff.dayUseDate > OneDay)
1834 pntr->dayUse = tv->header->diskstuff.dayUse;
1835 pntr->creationDate = tv->header->diskstuff.creationDate;
1836 pntr->accessDate = tv->header->diskstuff.accessDate;
1837 pntr->updateDate = tv->header->diskstuff.updateDate;
1838 pntr->backupDate = tv->header->diskstuff.backupDate;
1839 pntr->spare0 = tv->header->diskstuff.minquota;
1841 (long)tv->header->diskstuff.weekUse[0] +
1842 (long)tv->header->diskstuff.weekUse[1] +
1843 (long)tv->header->diskstuff.weekUse[2] +
1844 (long)tv->header->diskstuff.weekUse[3] +
1845 (long)tv->header->diskstuff.weekUse[4] +
1846 (long)tv->header->diskstuff.weekUse[5] +
1847 (long)tv->header->diskstuff.weekUse[6];
1848 pntr->flags = pntr->spare2 = pntr->spare3 = (long)0;
1849 VDetachVolume(&error, tv); /*free the volume */
1852 pntr->status = 0; /*things are messed up */
1853 strcpy(pntr->name, volname);
1854 Log("1 Volser: ListVolumes: Could not detach volume %s\n",
1859 GetNextVol(dirp, volname, &volid);
1863 VDetachVolume(&error, tv);
1868 ttc = (struct volser_trans *)0;
1878 /*------------------------------------------------------------------------
1879 * EXPORTED SAFSVolXListOneVolume
1882 * Returns extended info on volume a_volID on partition a_partID.
1885 * a_rxCidP : Pointer to the Rx call we're performing.
1886 * a_partID : Partition for which we want the extended list.
1887 * a_volID : Volume ID we wish to know about.
1888 * a_volumeXInfoP : Ptr to the extended info blob.
1891 * 0 Successful operation
1892 * VOLSERILLEGAL_PARTITION if we got a bogus partition ID
1895 * Nothing interesting.
1899 *------------------------------------------------------------------------*/
1902 SAFSVolXListOneVolume(struct rx_call *a_rxCidP, afs_int32 a_partID,
1903 afs_int32 a_volID, volXEntries *a_volumeXInfoP)
1907 code = VolXListOneVolume(a_rxCidP, a_partID, a_volID, a_volumeXInfoP);
1908 osi_auditU(a_rxCidP, VS_XLst1VlEvent, code, AUD_LONG, a_volID, AUD_END);
1913 VolXListOneVolume(struct rx_call *a_rxCidP, afs_int32 a_partID,
1914 afs_int32 a_volID, volXEntries *a_volumeXInfoP)
1915 { /*SAFSVolXListOneVolume */
1917 volintXInfo *xInfoP; /*Ptr to the extended vol info */
1918 register struct Volume *tv; /*Volume ptr */
1919 struct volser_trans *ttc; /*Volume transaction ptr */
1920 struct DiskPartition *partP; /*Ptr to partition */
1921 char pname[9], volname[20]; /*Partition, volume names */
1922 afs_int32 error; /*Error code */
1923 afs_int32 code; /*Return code */
1924 DIR *dirp; /*Partition directory ptr */
1925 afs_int32 currVolID; /*Current volume ID */
1926 int found = 0; /*Did we find the volume we need? */
1927 struct VolumeDiskData *volDiskDataP; /*Ptr to on-disk volume data */
1928 int numStatBytes; /*Num stat bytes to copy per volume */
1932 * Set up our pointers for action, marking our structure to hold exactly
1933 * one entry. Also, assume we'll fail in our quest.
1935 a_volumeXInfoP->volXEntries_val =
1936 (volintXInfo *) malloc(sizeof(volintXInfo));
1937 xInfoP = a_volumeXInfoP->volXEntries_val;
1938 a_volumeXInfoP->volXEntries_len = 1;
1942 * If the partition name we've been given is bad, bogue out.
1944 if (GetPartName(a_partID, pname))
1945 return (VOLSERILLEGAL_PARTITION);
1948 * Open the directory representing the given AFS parttion. If we can't
1951 if (!(partP = VGetPartition(pname, 0)))
1952 return VOLSERILLEGAL_PARTITION;
1953 dirp = opendir(VPartitionPath(partP));
1955 return (VOLSERILLEGAL_PARTITION);
1958 * Sweep through the partition directory, looking for the desired entry.
1959 * First, of course, figure out how many stat bytes to copy out of each
1963 4 * ((2 * VOLINT_STATS_NUM_RWINFO_FIELDS) +
1964 (4 * VOLINT_STATS_NUM_TIME_FIELDS));
1965 strcpy(volname, "");
1966 ttc = (struct volser_trans *)0; /*No transaction yet */
1967 tv = (Volume *) 0; /*Volume not yet attached */
1969 while (strcmp(volname, "EOD") && !found) {
1971 * If this is not a volume, move on to the next entry in the
1972 * partition's directory.
1974 if (!strcmp(volname, "")) {
1975 GetNextVol(dirp, volname, &currVolID);
1979 if (currVolID == a_volID) {
1981 * We found the volume entry we're interested. Pull out the
1982 * extended information, remembering to poll (so that the client
1983 * doesn't time out) and to set up a transaction on the volume.
1986 #ifndef AFS_PTHREAD_ENV
1989 ttc = NewTrans(currVolID, a_partID);
1992 * Couldn't get a transaction on this volume; let our caller
1995 xInfoP->status = VBUSY;
1996 xInfoP->volid = currVolID;
2001 * Attach the volume, give up on the volume if we can't.
2003 tv = VAttachVolumeByName(&error, pname, volname, V_READONLY);
2005 xInfoP->status = 0; /*things are messed up */
2006 strcpy(xInfoP->name, volname);
2007 xInfoP->volid = currVolID;
2008 Log("1 Volser: XListOneVolume: Could not attach volume %u\n",
2014 * Also bag out on this volume if it's been marked as needing a
2015 * salvage or to-be-destroyed.
2017 volDiskDataP = &(tv->header->diskstuff);
2018 if (volDiskDataP->destroyMe == DESTROY_ME) {
2020 strcpy(xInfoP->name, volname);
2021 xInfoP->volid = currVolID;
2022 Log("1 Volser: XListOneVolume: Volume %u will be destroyed on next salvage\n", currVolID);
2026 if (volDiskDataP->needsSalvaged) {
2028 strcpy(xInfoP->name, volname);
2029 xInfoP->volid = currVolID;
2030 Log("1 Volser: XListOneVolume: Volume %u needs to be salvaged\n", currVolID);
2035 * Pull out the desired info and stuff it into the area we'll be
2036 * returning to our caller.
2038 strcpy(xInfoP->name, volDiskDataP->name);
2039 xInfoP->volid = volDiskDataP->id;
2040 xInfoP->type = volDiskDataP->type;
2041 xInfoP->backupID = volDiskDataP->backupId;
2042 xInfoP->parentID = volDiskDataP->parentId;
2043 xInfoP->cloneID = volDiskDataP->cloneId;
2044 xInfoP->status = VOK;
2045 xInfoP->copyDate = volDiskDataP->copyDate;
2046 xInfoP->inUse = volDiskDataP->inUse;
2047 xInfoP->creationDate = volDiskDataP->creationDate;
2048 xInfoP->accessDate = volDiskDataP->accessDate;
2049 xInfoP->updateDate = volDiskDataP->updateDate;
2050 xInfoP->backupDate = volDiskDataP->backupDate;
2051 now = FT_ApproxTime();
2052 if (now - volDiskDataP->dayUseDate > OneDay)
2055 xInfoP->dayUse = volDiskDataP->dayUse;
2056 xInfoP->filecount = volDiskDataP->filecount;
2057 xInfoP->maxquota = volDiskDataP->maxquota;
2058 xInfoP->size = volDiskDataP->diskused;
2061 * Copy out the stat fields in a single operation.
2063 memcpy((char *)&(xInfoP->stat_reads[0]),
2064 (char *)&(volDiskDataP->stat_reads[0]), numStatBytes);
2067 * We're done copying. Detach the volume and iterate (at this
2068 * point, since we found our volume, we'll then drop out of the
2071 VDetachVolume(&error, tv);
2075 strcpy(xInfoP->name, volname);
2076 Log("1 Volser: XListOneVolumes Couldn't detach volume %s\n",
2082 * At this point, we're golden.
2085 } /*Found desired volume */
2086 GetNextVol(dirp, volname, &currVolID);
2090 * Drop the transaction we have for this volume.
2094 VDetachVolume(&error, tv);
2099 ttc = (struct volser_trans *)0;
2103 * Clean up before going to dinner: close the partition directory,
2104 * return the proper value.
2109 } /*SAFSVolXListOneVolume */
2111 /*returns all the volumes on partition partid. If flags = 1 then all the
2112 * relevant info about the volumes is also returned */
2114 SAFSVolListVolumes(struct rx_call *acid, afs_int32 partid, afs_int32 flags,
2115 volEntries *volumeInfo)
2119 code = VolListVolumes(acid, partid, flags, volumeInfo);
2120 osi_auditU(acid, VS_ListVolEvent, code, AUD_END);
2125 VolListVolumes(struct rx_call *acid, afs_int32 partid, afs_int32 flags,
2126 volEntries *volumeInfo)
2129 register struct Volume *tv;
2130 struct DiskPartition *partP;
2131 struct volser_trans *ttc;
2132 afs_int32 allocSize = 1000; /*to be changed to a larger figure */
2133 char pname[9], volname[20];
2134 afs_int32 error = 0;
2139 volumeInfo->volEntries_val =
2140 (volintInfo *) malloc(allocSize * sizeof(volintInfo));
2141 pntr = volumeInfo->volEntries_val;
2142 volumeInfo->volEntries_len = 0;
2143 if (GetPartName(partid, pname))
2144 return VOLSERILLEGAL_PARTITION;
2145 if (!(partP = VGetPartition(pname, 0)))
2146 return VOLSERILLEGAL_PARTITION;
2147 dirp = opendir(VPartitionPath(partP));
2149 return VOLSERILLEGAL_PARTITION;
2150 strcpy(volname, "");
2151 while (strcmp(volname, "EOD")) { /*while there are more partitions in the partition */
2152 ttc = (struct volser_trans *)0; /* new one for each pass */
2153 tv = (Volume *) 0; /* volume not attached */
2155 if (!strcmp(volname, "")) { /* its not a volume, fetch next file */
2156 GetNextVol(dirp, volname, &volid);
2157 continue; /*back to while loop */
2160 if (flags) { /*copy other things too */
2161 #ifndef AFS_PTHREAD_ENV
2162 IOMGR_Poll(); /*make sure that the client doesnot time out */
2164 ttc = NewTrans(volid, partid);
2166 pntr->status = VBUSY;
2167 pntr->volid = volid;
2170 tv = VAttachVolumeByName(&error, pname, volname, V_READONLY);
2172 pntr->status = 0; /*things are messed up */
2173 strcpy(pntr->name, volname);
2174 pntr->volid = volid;
2175 Log("1 Volser: ListVolumes: Could not attach volume %u (%s) error=%d\n", volid, volname, error);
2178 if (tv->header->diskstuff.needsSalvaged) {
2179 /*this volume will be salvaged */
2181 strcpy(pntr->name, volname);
2182 pntr->volid = volid;
2183 Log("1 Volser: ListVolumes: Volume %u (%s) needs to be salvaged\n", volid, volname);
2187 if (tv->header->diskstuff.destroyMe == DESTROY_ME) {
2188 /*this volume will be salvaged */
2191 /*read in the relevant info */
2192 pntr->status = VOK; /*its ok */
2193 pntr->volid = tv->header->diskstuff.id;
2194 strcpy(pntr->name, tv->header->diskstuff.name);
2195 pntr->type = tv->header->diskstuff.type; /*if ro volume */
2196 pntr->cloneID = tv->header->diskstuff.cloneId; /*if rw volume */
2197 pntr->backupID = tv->header->diskstuff.backupId;
2198 pntr->parentID = tv->header->diskstuff.parentId;
2199 pntr->copyDate = tv->header->diskstuff.copyDate;
2200 pntr->inUse = tv->header->diskstuff.inUse;
2201 pntr->size = tv->header->diskstuff.diskused;
2202 pntr->needsSalvaged = tv->header->diskstuff.needsSalvaged;
2203 pntr->maxquota = tv->header->diskstuff.maxquota;
2204 pntr->filecount = tv->header->diskstuff.filecount;
2205 now = FT_ApproxTime();
2206 if (now - tv->header->diskstuff.dayUseDate > OneDay)
2209 pntr->dayUse = tv->header->diskstuff.dayUse;
2210 pntr->creationDate = tv->header->diskstuff.creationDate;
2211 pntr->accessDate = tv->header->diskstuff.accessDate;
2212 pntr->updateDate = tv->header->diskstuff.updateDate;
2213 pntr->backupDate = tv->header->diskstuff.backupDate;
2214 pntr->spare0 = tv->header->diskstuff.minquota;
2216 (long)tv->header->diskstuff.weekUse[0] +
2217 (long)tv->header->diskstuff.weekUse[1] +
2218 (long)tv->header->diskstuff.weekUse[2] +
2219 (long)tv->header->diskstuff.weekUse[3] +
2220 (long)tv->header->diskstuff.weekUse[4] +
2221 (long)tv->header->diskstuff.weekUse[5] +
2222 (long)tv->header->diskstuff.weekUse[6];
2223 pntr->flags = pntr->spare2 = pntr->spare3 = (long)0;
2224 VDetachVolume(&error, tv); /*free the volume */
2227 pntr->status = 0; /*things are messed up */
2228 strcpy(pntr->name, volname);
2229 Log("1 Volser: ListVolumes: Could not detach volume %s\n",
2234 pntr->volid = volid;
2235 /*just volids are needed */
2241 ttc = (struct volser_trans *)0;
2244 volumeInfo->volEntries_len += 1;
2245 if ((allocSize - volumeInfo->volEntries_len) < 5) {
2246 /*running out of space, allocate more space */
2247 allocSize = (allocSize * 3) / 2;
2249 (volintInfo *) realloc((char *)volumeInfo->volEntries_val,
2250 allocSize * sizeof(volintInfo));
2253 VDetachVolume(&error, tv);
2258 ttc = (struct volser_trans *)0;
2261 return VOLSERNO_MEMORY;
2263 volumeInfo->volEntries_val = pntr; /* point to new block */
2264 /* set pntr to the right position */
2265 pntr = volumeInfo->volEntries_val + volumeInfo->volEntries_len;
2271 VDetachVolume(&error, tv);
2276 ttc = (struct volser_trans *)0;
2278 GetNextVol(dirp, volname, &volid);
2288 /*------------------------------------------------------------------------
2289 * EXPORTED SAFSVolXListVolumes
2292 * Returns all the volumes on partition a_partID. If a_flags
2293 * is set to 1, then all the relevant extended volume information
2297 * a_rxCidP : Pointer to the Rx call we're performing.
2298 * a_partID : Partition for which we want the extended list.
2299 * a_flags : Various flags.
2300 * a_volumeXInfoP : Ptr to the extended info blob.
2303 * 0 Successful operation
2304 * VOLSERILLEGAL_PARTITION if we got a bogus partition ID
2305 * VOLSERNO_MEMORY if we ran out of memory allocating
2309 * Nothing interesting.
2313 *------------------------------------------------------------------------*/
2316 SAFSVolXListVolumes(struct rx_call *a_rxCidP, afs_int32 a_partID,
2317 afs_int32 a_flags, volXEntries *a_volumeXInfoP)
2321 code = VolXListVolumes(a_rxCidP, a_partID, a_flags, a_volumeXInfoP);
2322 osi_auditU(a_rxCidP, VS_XLstVolEvent, code, AUD_END);
2327 VolXListVolumes(struct rx_call *a_rxCidP, afs_int32 a_partID,
2328 afs_int32 a_flags, volXEntries *a_volumeXInfoP)
2329 { /*SAFSVolXListVolumes */
2331 volintXInfo *xInfoP; /*Ptr to the extended vol info */
2332 register struct Volume *tv; /*Volume ptr */
2333 struct DiskPartition *partP; /*Ptr to partition */
2334 struct volser_trans *ttc; /*Volume transaction ptr */
2335 afs_int32 allocSize = 1000; /*To be changed to a larger figure */
2336 char pname[9], volname[20]; /*Partition, volume names */
2337 afs_int32 error = 0; /*Return code */
2338 DIR *dirp; /*Partition directory ptr */
2339 afs_int32 volid; /*Current volume ID */
2340 struct VolumeDiskData *volDiskDataP; /*Ptr to on-disk volume data */
2341 int numStatBytes; /*Num stat bytes to copy per volume */
2345 * Allocate a large array of extended volume info structures, then
2346 * set it up for action.
2348 a_volumeXInfoP->volXEntries_val =
2349 (volintXInfo *) malloc(allocSize * sizeof(volintXInfo));
2350 xInfoP = a_volumeXInfoP->volXEntries_val;
2351 a_volumeXInfoP->volXEntries_len = 0;
2354 * If the partition name we've been given is bad, bogue out.
2356 if (GetPartName(a_partID, pname))
2357 return (VOLSERILLEGAL_PARTITION);
2360 * Open the directory representing the given AFS parttion. If we can't
2363 if (!(partP = VGetPartition(pname, 0)))
2364 return VOLSERILLEGAL_PARTITION;
2365 dirp = opendir(VPartitionPath(partP));
2367 return (VOLSERILLEGAL_PARTITION);
2370 * Sweep through the partition directory, acting on each entry. First,
2371 * of course, figure out how many stat bytes to copy out of each volume.
2374 4 * ((2 * VOLINT_STATS_NUM_RWINFO_FIELDS) +
2375 (4 * VOLINT_STATS_NUM_TIME_FIELDS));
2376 strcpy(volname, "");
2377 while (strcmp(volname, "EOD")) {
2378 ttc = (struct volser_trans *)0; /*New one for each pass */
2379 tv = (Volume *) 0; /*Volume not yet attached */
2382 * If this is not a volume, move on to the next entry in the
2383 * partition's directory.
2385 if (!strcmp(volname, "")) {
2386 GetNextVol(dirp, volname, &volid);
2392 * Full info about the volume desired. Poll to make sure the
2393 * client doesn't time out, then start up a new transaction.
2395 #ifndef AFS_PTHREAD_ENV
2398 ttc = NewTrans(volid, a_partID);
2401 * Couldn't get a transaction on this volume; let our caller
2404 xInfoP->status = VBUSY;
2405 xInfoP->volid = volid;
2410 * Attach the volume, give up on this volume if we can't.
2412 tv = VAttachVolumeByName(&error, pname, volname, V_READONLY);
2414 xInfoP->status = 0; /*things are messed up */
2415 strcpy(xInfoP->name, volname);
2416 xInfoP->volid = volid;
2417 Log("1 Volser: XListVolumes: Could not attach volume %u\n",
2423 * Also bag out on this volume if it's been marked as needing a
2424 * salvage or to-be-destroyed.
2426 volDiskDataP = &(tv->header->diskstuff);
2427 if (volDiskDataP->needsSalvaged) {
2429 strcpy(xInfoP->name, volname);
2430 xInfoP->volid = volid;
2431 Log("1 Volser: XListVolumes: Volume %u needs to be salvaged\n", volid);
2435 if (volDiskDataP->destroyMe == DESTROY_ME)
2439 * Pull out the desired info and stuff it into the area we'll be
2440 * returning to our caller.
2442 strcpy(xInfoP->name, volDiskDataP->name);
2443 xInfoP->volid = volDiskDataP->id;
2444 xInfoP->type = volDiskDataP->type;
2445 xInfoP->backupID = volDiskDataP->backupId;
2446 xInfoP->parentID = volDiskDataP->parentId;
2447 xInfoP->cloneID = volDiskDataP->cloneId;
2448 xInfoP->status = VOK;
2449 xInfoP->copyDate = volDiskDataP->copyDate;
2450 xInfoP->inUse = volDiskDataP->inUse;
2451 xInfoP->creationDate = volDiskDataP->creationDate;
2452 xInfoP->accessDate = volDiskDataP->accessDate;
2453 xInfoP->updateDate = volDiskDataP->updateDate;
2454 xInfoP->backupDate = volDiskDataP->backupDate;
2455 now = FT_ApproxTime();
2456 if (now - volDiskDataP->dayUseDate > OneDay)
2459 xInfoP->dayUse = volDiskDataP->dayUse;
2460 xInfoP->filecount = volDiskDataP->filecount;
2461 xInfoP->maxquota = volDiskDataP->maxquota;
2462 xInfoP->size = volDiskDataP->diskused;
2465 * Copy out the stat fields in a single operation.
2467 memcpy((char *)&(xInfoP->stat_reads[0]),
2468 (char *)&(volDiskDataP->stat_reads[0]), numStatBytes);
2471 * We're done copying. Detach the volume and iterate.
2473 VDetachVolume(&error, tv);
2477 strcpy(xInfoP->name, volname);
2478 Log("1 Volser: XListVolumes: Could not detach volume %s\n",
2482 } /*Full contents desired */
2485 * Just volume IDs are needed.
2487 xInfoP->volid = volid;
2491 * Drop the transaction we have for this volume.
2495 ttc = (struct volser_trans *)0;
2499 * Bump the pointer in the data area we're building, along with
2500 * the count of the number of entries it contains.
2503 (a_volumeXInfoP->volXEntries_len)++;
2504 if ((allocSize - a_volumeXInfoP->volXEntries_len) < 5) {
2506 * We're running out of space in the area we've built. Grow it.
2508 allocSize = (allocSize * 3) / 2;
2509 xInfoP = (volintXInfo *)
2510 realloc((char *)a_volumeXInfoP->volXEntries_val,
2511 (allocSize * sizeof(volintXInfo)));
2512 if (xInfoP == NULL) {
2514 * Bummer, no memory. Bag it, tell our caller what went wrong.
2517 VDetachVolume(&error, tv);
2522 ttc = (struct volser_trans *)0;
2525 return (VOLSERNO_MEMORY);
2529 * Memory reallocation worked. Correct our pointers so they
2530 * now point to the new block and the current open position within
2533 a_volumeXInfoP->volXEntries_val = xInfoP;
2535 a_volumeXInfoP->volXEntries_val +
2536 a_volumeXInfoP->volXEntries_len;
2538 /*Need more space */
2541 * Detach our current volume and the transaction on it, then move on
2542 * to the next volume in the partition directory.
2545 VDetachVolume(&error, tv);
2550 ttc = (struct volser_trans *)0;
2552 GetNextVol(dirp, volname, &volid);
2553 } /*Sweep through the partition directory */
2556 * We've examined all entries in the partition directory. Close it,
2557 * delete our transaction (if any), and go home happy.
2564 } /*SAFSVolXListVolumes */
2566 /*this call is used to monitor the status of volser for debugging purposes.
2567 *information about all the active transactions is returned in transInfo*/
2569 SAFSVolMonitor(struct rx_call *acid, transDebugEntries *transInfo)
2573 code = VolMonitor(acid, transInfo);
2574 osi_auditU(acid, VS_MonitorEvent, code, AUD_END);
2579 VolMonitor(struct rx_call *acid, transDebugEntries *transInfo)
2581 transDebugInfo *pntr;
2582 afs_int32 allocSize = 50;
2583 struct volser_trans *tt, *allTrans;
2585 transInfo->transDebugEntries_val =
2586 (transDebugInfo *) malloc(allocSize * sizeof(transDebugInfo));
2587 pntr = transInfo->transDebugEntries_val;
2588 transInfo->transDebugEntries_len = 0;
2589 allTrans = TransList();
2590 if (allTrans == (struct volser_trans *)0)
2591 return 0; /*no active transactions */
2592 for (tt = allTrans; tt; tt = tt->next) { /*copy relevant info into pntr */
2593 pntr->tid = tt->tid;
2594 pntr->time = tt->time;
2595 pntr->creationTime = tt->creationTime;
2596 pntr->returnCode = tt->returnCode;
2597 pntr->volid = tt->volid;
2598 pntr->partition = tt->partition;
2599 pntr->iflags = tt->iflags;
2600 pntr->vflags = tt->vflags;
2601 pntr->tflags = tt->tflags;
2602 strcpy(pntr->lastProcName, tt->lastProcName);
2603 pntr->callValid = 0;
2604 if (tt->rxCallPtr) { /*record call related info */
2605 pntr->callValid = 1;
2606 pntr->readNext = tt->rxCallPtr->rnext;
2607 pntr->transmitNext = tt->rxCallPtr->tnext;
2608 pntr->lastSendTime = tt->rxCallPtr->lastSendTime;
2609 pntr->lastReceiveTime = tt->rxCallPtr->lastReceiveTime;
2612 transInfo->transDebugEntries_len += 1;
2613 if ((allocSize - transInfo->transDebugEntries_len) < 5) { /*alloc some more space */
2614 allocSize = (allocSize * 3) / 2;
2616 (transDebugInfo *) realloc((char *)transInfo->
2617 transDebugEntries_val,
2619 sizeof(transDebugInfo));
2620 transInfo->transDebugEntries_val = pntr;
2622 transInfo->transDebugEntries_val +
2623 transInfo->transDebugEntries_len;
2624 /*set pntr to right position */
2633 SAFSVolSetIdsTypes(struct rx_call *acid, afs_int32 atid, char name[], afs_int32 type, afs_int32 pId, afs_int32 cloneId, afs_int32 backupId)
2637 code = VolSetIdsTypes(acid, atid, name, type, pId, cloneId, backupId);
2638 osi_auditU(acid, VS_SetIdTyEvent, code, AUD_LONG, atid, AUD_STR, name,
2639 AUD_STR, type, AUD_LONG, pId, AUD_LONG, cloneId, AUD_LONG,
2645 VolSetIdsTypes(struct rx_call *acid, afs_int32 atid, char name[], afs_int32 type, afs_int32 pId, afs_int32 cloneId, afs_int32 backupId)
2648 afs_int32 error = 0;
2649 register struct volser_trans *tt;
2650 char caller[MAXKTCNAMELEN];
2652 if (strlen(name) > 31)
2653 return VOLSERBADNAME;
2654 if (!afsconf_SuperUser(tdir, acid, caller))
2655 return VOLSERBAD_ACCESS; /*not a super user */
2656 /* find the trans */
2657 tt = FindTrans(atid);
2660 if (tt->vflags & VTDeleted) {
2661 Log("1 Volser: VolSetIds: volume %u has been deleted \n", tt->volid);
2665 strcpy(tt->lastProcName, "SetIdsTypes");
2666 tt->rxCallPtr = acid;
2670 V_backupId(tv) = backupId;
2671 V_cloneId(tv) = cloneId;
2672 V_parentId(tv) = pId;
2673 strcpy((&V_disk(tv))->name, name);
2674 VUpdateVolume(&error, tv);
2676 Log("1 Volser: SetIdsTypes: VUpdate failed code %d\n", error);
2680 tt->rxCallPtr = (struct rx_call *)0;
2681 if (TRELE(tt) && !error)
2682 return VOLSERTRELE_ERROR;
2686 tt->rxCallPtr = (struct rx_call *)0;
2687 if (TRELE(tt) && !error)
2688 return VOLSERTRELE_ERROR;
2693 SAFSVolSetDate(struct rx_call *acid, afs_int32 atid, afs_int32 cdate)
2697 code = VolSetDate(acid, atid, cdate);
2698 osi_auditU(acid, VS_SetDateEvent, code, AUD_LONG, atid, AUD_LONG, cdate,
2704 VolSetDate(struct rx_call *acid, afs_int32 atid, afs_int32 cdate)
2707 afs_int32 error = 0;
2708 register struct volser_trans *tt;
2709 char caller[MAXKTCNAMELEN];
2711 if (!afsconf_SuperUser(tdir, acid, caller))
2712 return VOLSERBAD_ACCESS; /*not a super user */
2713 /* find the trans */
2714 tt = FindTrans(atid);
2717 if (tt->vflags & VTDeleted) {
2718 Log("1 Volser: VolSetDate: volume %u has been deleted \n", tt->volid);
2722 strcpy(tt->lastProcName, "SetDate");
2723 tt->rxCallPtr = acid;
2726 V_creationDate(tv) = cdate;
2727 VUpdateVolume(&error, tv);
2729 Log("1 Volser: SetDate: VUpdate failed code %d\n", error);
2733 tt->rxCallPtr = (struct rx_call *)0;
2734 if (TRELE(tt) && !error)
2735 return VOLSERTRELE_ERROR;
2739 tt->rxCallPtr = (struct rx_call *)0;
2740 if (TRELE(tt) && !error)
2741 return VOLSERTRELE_ERROR;
2745 #ifdef AFS_NAMEI_ENV
2747 * Inode number format (from namei_ops.c):
2748 * low 26 bits - vnode number - all 1's if volume special file.
2750 * next 3 bits spare (0's)
2751 * high 32 bits - uniquifier (regular) or type if spare
2753 #define NAMEI_VNODEMASK 0x003ffffff
2754 #define NAMEI_TAGMASK 0x7
2755 #define NAMEI_TAGSHIFT 26
2756 #define NAMEI_UNIQMASK 0xffffffff
2757 #define NAMEI_UNIQSHIFT 32
2758 #define NAMEI_INODESPECIAL ((Inode)NAMEI_VNODEMASK)
2759 #define NAMEI_VNODESPECIAL NAMEI_VNODEMASK
2760 #endif /* AFS_NAMEI_ENV */
2763 SAFSVolConvertROtoRWvolume(struct rx_call *acid, afs_int32 partId,
2766 #if defined(AFS_NAMEI_ENV) && !defined(AFS_NT40_ENV)
2770 afs_int32 error = 0;
2773 char caller[MAXKTCNAMELEN];
2774 char headername[16];
2777 struct VolumeDiskHeader h;
2781 struct DiskPartition *dp;
2783 if (!afsconf_SuperUser(tdir, acid, caller))
2784 return VOLSERBAD_ACCESS; /*not a super user */
2785 if (GetPartName(partId, pname))
2786 return VOLSERILLEGAL_PARTITION;
2787 dirp = opendir(pname);
2789 return VOLSERILLEGAL_PARTITION;
2790 strcpy(volname, "");
2792 while (strcmp(volname, "EOD") && !found) { /*while there are more volumes in the partition */
2793 GetNextVol(dirp, volname, &volid);
2794 if (strcmp(volname, "")) { /* its a volume */
2795 if (volid == volumeId)
2801 (void)afs_snprintf(headername, sizeof headername, VFORMAT, volumeId);
2802 (void)afs_snprintf(opath, sizeof opath, "%s/%s", pname, headername);
2803 fd = open(opath, O_RDONLY);
2805 Log("1 SAFS_VolConvertROtoRWvolume: Couldn't open header for RO-volume %lu.\n", volumeId);
2808 if (read(fd, &h, sizeof(h)) != sizeof(h)) {
2809 Log("1 SAFS_VolConvertROtoRWvolume: Couldn't read header for RO-volume %lu.\n", volumeId);
2814 FSYNC_askfs(volumeId, pname, FSYNC_RESTOREVOLUME, 0);
2816 for (dp = DiskPartitionList; dp && strcmp(dp->name, pname);
2819 Log("1 SAFS_VolConvertROtoRWvolume: Couldn't find DiskPartition for %s\n", pname);
2822 ino = namei_MakeSpecIno(h.parent, VI_LINKTABLE);
2823 IH_INIT(ih, dp->device, h.parent, ino);
2825 error = namei_ConvertROtoRWvolume(ih, volumeId);
2829 h.volumeInfo_hi = h.id;
2830 h.smallVnodeIndex_hi = h.id;
2831 h.largeVnodeIndex_hi = h.id;
2832 h.linkTable_hi = h.id;
2833 (void)afs_snprintf(headername, sizeof headername, VFORMAT, h.id);
2834 (void)afs_snprintf(npath, sizeof npath, "%s/%s", pname, headername);
2835 fd = open(npath, O_CREAT | O_EXCL | O_RDWR, 0644);
2837 Log("1 SAFS_VolConvertROtoRWvolume: Couldn't create header for RW-volume %lu.\n", h.id);
2840 if (write(fd, &h, sizeof(h)) != sizeof(h)) {
2841 Log("1 SAFS_VolConvertROtoRWvolume: Couldn't write header for RW-volume %lu.\n", h.id);
2846 if (unlink(opath) < 0) {
2847 Log("1 SAFS_VolConvertROtoRWvolume: Couldn't unlink RO header, error = %d\n", error);
2849 FSYNC_askfs(volumeId, pname, FSYNC_DONE, 0);
2850 FSYNC_askfs(h.id, pname, FSYNC_ON, 0);
2852 #else /* AFS_NAMEI_ENV */
2854 #endif /* AFS_NAMEI_ENV */
2858 SAFSVolGetSize(struct rx_call *acid, afs_int32 fromTrans, afs_int32 fromDate,
2859 register struct volintSize *size)
2862 register struct volser_trans *tt;
2863 char caller[MAXKTCNAMELEN];
2865 if (!afsconf_SuperUser(tdir, acid, caller))
2866 return VOLSERBAD_ACCESS; /*not a super user */
2867 tt = FindTrans(fromTrans);
2870 if (tt->vflags & VTDeleted) {
2874 strcpy(tt->lastProcName, "GetSize");
2875 tt->rxCallPtr = acid;
2876 code = SizeDumpVolume(acid, tt->volume, fromDate, 1, size); /* measure volume's data */
2877 tt->rxCallPtr = (struct rx_call *)0;
2879 return VOLSERTRELE_ERROR;
2881 /* osi_auditU(acid, VS_DumpEvent, code, AUD_LONG, fromTrans, AUD_END); */
2885 /* GetPartName - map partid (a decimal number) into pname (a string)
2886 * Since for NT we actually want to return the drive name, we map through the
2890 GetPartName(afs_int32 partid, char *pname)
2895 strcpy(pname, "/vicep");
2896 pname[6] = 'a' + partid;
2899 } else if (partid < VOLMAXPARTS) {
2900 strcpy(pname, "/vicep");
2902 pname[6] = 'a' + (partid / 26);
2903 pname[7] = 'a' + (partid % 26);