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