a6172700e74b6c1aa699ce1e3f8480c14b6446b3
[openafs.git] / src / vol / purge.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 /*
11         System:         VICE-TWO
12         Module:         purge.c
13         Institution:    The Information Technology Center, Carnegie-Mellon University
14
15  */
16 #include <afsconfig.h>
17 #include <afs/param.h>
18
19 RCSID
20     ("$Header$");
21
22 #include <stdio.h>
23 #ifdef AFS_NT40_ENV
24 #include <fcntl.h>
25 #include <io.h>
26 #else
27 #include <sys/param.h>
28 #include <sys/file.h>
29 #include <sys/time.h>
30 #endif
31 #include <string.h>
32 #include <sys/stat.h>
33 #include <afs/assert.h>
34
35 #include <rx/xdr.h>
36 #include "afs/afsint.h"
37 #include "nfs.h"
38 #include "lwp.h"
39 #include "lock.h"
40 #include <afs/afssyscalls.h>
41 #include "ihandle.h"
42 #ifdef AFS_NT40_ENV
43 #include "ntops.h"
44 #endif
45 #include "vnode.h"
46 #include "volume.h"
47 #include "viceinode.h"
48 #include "partition.h"
49 #include "daemon_com.h"
50 #include "fssync.h"
51
52 /* forward declarations */
53 static int ObliterateRegion(Volume * avp, VnodeClass aclass, StreamHandle_t * afile,
54                             afs_int32 * aoffset);
55 static void PurgeIndex(Volume * vp, VnodeClass class);
56 static void PurgeIndex_r(Volume * vp, VnodeClass class);
57 static void PurgeHeader_r(Volume * vp);
58 static void PurgeHeader(Volume * vp);
59
60 /* No lock needed. Only the volserver will call this, and only one transaction
61  * can have a given volume (volid/partition pair) in use at a time 
62  */
63 void
64 VPurgeVolume(Error * ec, Volume * vp)
65 {
66     struct DiskPartition64 *tpartp = vp->partition;
67     char purgePath[MAXPATHLEN];
68
69     /* N.B.  it's important here to use the partition pointed to by the
70      * volume header. This routine can, under some circumstances, be called
71      * when two volumes with the same id exist on different partitions.
72      */
73     (void)afs_snprintf(purgePath, sizeof purgePath, "%s/%s",
74                        VPartitionPath(vp->partition),
75                        VolumeExternalName(V_id(vp)));
76     PurgeIndex_r(vp, vLarge);
77     PurgeIndex_r(vp, vSmall);
78     PurgeHeader_r(vp);
79     unlink(purgePath);
80     /*
81      * Call the fileserver to break all call backs for that volume
82      */
83     FSYNC_VolOp(V_id(vp), tpartp->name, FSYNC_VOL_BREAKCBKS, 0, NULL);
84 }
85
86 #define MAXOBLITATONCE  200
87 /* delete a portion of an index, adjusting offset appropriately.  Returns 0 if
88    things work and we should be called again, 1 if success full and done, and -1
89    if an error occurred.  It adjusts offset appropriately on 0 or 1 return codes,
90    and otherwise doesn't touch it */
91 static int
92 ObliterateRegion(Volume * avp, VnodeClass aclass, StreamHandle_t * afile,
93                  afs_int32 * aoffset)
94 {
95     register struct VnodeClassInfo *vcp;
96     Inode inodes[MAXOBLITATONCE];
97     register afs_int32 iindex, nscanned;
98     afs_int32 offset;
99     char buf[SIZEOF_LARGEDISKVNODE];
100     int hitEOF;
101     register int i;
102     register afs_int32 code;
103     register struct VnodeDiskObject *vnode = (struct VnodeDiskObject *)buf;
104
105     hitEOF = 0;
106     vcp = &VnodeClassInfo[aclass];
107     offset = *aoffset;          /* original offset */
108     iindex = 0;
109     nscanned = 0;
110     /* advance over up to MAXOBLITATONCE inodes.  nscanned tells us how many we examined.
111      * We remember the inodes in an array, and idec them after zeroing them in the index.
112      * The reason for these contortions is to make volume deletion idempotent, even
113      * if we crash in the middle of a delete operation. */
114     STREAM_SEEK(afile, offset, 0);
115     while (1) {
116         if (iindex >= MAXOBLITATONCE) {
117             break;
118         }
119         code = STREAM_READ(vnode, vcp->diskSize, 1, afile);
120         nscanned++;
121         offset += vcp->diskSize;
122         if (code != 1) {
123             hitEOF = 1;
124             break;
125         }
126         if (vnode->type != vNull) {
127             if (vnode->vnodeMagic != vcp->magic)
128                 goto fail;      /* something really wrong; let salvager take care of it */
129             if (VNDISK_GET_INO(vnode))
130                 inodes[iindex++] = VNDISK_GET_INO(vnode);
131         }
132     }
133
134     /* next, obliterate the index and fflush (and fsync) it */
135     STREAM_SEEK(afile, *aoffset, 0);    /* seek back to start of vnode index region */
136     memset(buf, 0, sizeof(buf));        /* zero out our proto-vnode */
137     for (i = 0; i < nscanned; i++) {
138         if (STREAM_WRITE(buf, vcp->diskSize, 1, afile) != 1)
139             goto fail;
140     }
141     STREAM_FLUSH(afile);        /* ensure 0s are on the disk */
142     OS_SYNC(afile->str_fd);
143
144     /* finally, do the idec's */
145     for (i = 0; i < iindex; i++) {
146         IH_DEC(V_linkHandle(avp), inodes[i], V_parentId(avp));
147         DOPOLL;
148     }
149
150     /* return the new offset */
151     *aoffset = offset;
152     return hitEOF;              /* return 1 if hit EOF (don't call again), otherwise 0 */
153
154   fail:
155     return -1;
156 }
157
158 static void
159 PurgeIndex(Volume * vp, VnodeClass class)
160 {
161     VOL_LOCK;
162     PurgeIndex_r(vp, class);
163     VOL_UNLOCK;
164 }
165
166 static void
167 PurgeIndex_r(Volume * vp, VnodeClass class)
168 {
169     StreamHandle_t *ifile;
170     struct VnodeClassInfo *vcp = &VnodeClassInfo[class];
171     afs_int32 offset;
172     register afs_int32 code;
173     FdHandle_t *fdP;
174
175
176     fdP = IH_OPEN(vp->vnodeIndex[class].handle);
177     if (fdP == NULL)
178         return;
179
180     ifile = FDH_FDOPEN(fdP, "r+");
181     if (!ifile) {
182         FDH_REALLYCLOSE(fdP);
183         return;
184     }
185
186     offset = vcp->diskSize;
187     while (1) {
188         code = ObliterateRegion(vp, class, ifile, &offset);
189         if (code)
190             break;              /* if error or hit EOF */
191     }
192     STREAM_CLOSE(ifile);
193     FDH_CLOSE(fdP);
194 }
195
196 static void
197 PurgeHeader(Volume * vp)
198 {
199     VOL_LOCK;
200     PurgeHeader_r(vp);
201     VOL_UNLOCK;
202 }
203
204 static void
205 PurgeHeader_r(Volume * vp)
206 {
207     IH_REALLYCLOSE(V_diskDataHandle(vp));
208     IH_DEC(V_linkHandle(vp), vp->vnodeIndex[vLarge].handle->ih_ino, V_id(vp));
209     IH_DEC(V_linkHandle(vp), vp->vnodeIndex[vSmall].handle->ih_ino, V_id(vp));
210     IH_DEC(V_linkHandle(vp), vp->diskDataHandle->ih_ino, V_id(vp));
211 #ifdef AFS_NAMEI_ENV
212     /* And last, but not least, the link count table itself. */
213     IH_REALLYCLOSE(V_linkHandle(vp));
214     IH_DEC(V_linkHandle(vp), vp->linkHandle->ih_ino, V_parentId(vp));
215 #endif
216 }