Don't grab tdc->lock when tdc is null.
[openafs.git] / src / afs / VNOPS / afs_vnop_remove.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  * Implements:
12  * afs_Wire (DUX)
13  * FetchWholeEnchilada
14  * afs_IsWired (DUX)
15  * afsremove
16  * afs_remove
17  *
18  * Local:
19  * newname
20  *
21  */
22 #include <afsconfig.h>
23 #include "../afs/param.h"
24
25 RCSID("$Header$");
26
27 #include "../afs/sysincludes.h" /* Standard vendor system headers */
28 #include "../afs/afsincludes.h" /* Afs-based standard headers */
29 #include "../afs/afs_stats.h" /* statistics */
30 #include "../afs/afs_cbqueue.h"
31 #include "../afs/nfsclient.h"
32 #include "../afs/afs_osidnlc.h"
33
34
35 extern afs_rwlock_t afs_xvcache;
36 extern afs_rwlock_t afs_xcbhash;
37
38
39 #ifdef  AFS_OSF_ENV
40 /*
41  *  Wire down file in cache: prefetch all data, and turn on CWired flag
42  *  so that callbacks/callback expirations are (temporarily) ignored
43  *  and cache file(s) are kept in cache. File will be unwired when
44  *  afs_inactive is called (ie no one has VN_HOLD on vnode), or when
45  *  afs_IsWired notices that the file is no longer Active.
46  */
47 afs_Wire(avc, areq)
48 #else   /* AFS_OSF_ENV */
49 static void FetchWholeEnchilada(avc, areq)
50 #endif
51 struct vrequest *areq;
52 register struct vcache *avc; {
53     register afs_int32 nextChunk;
54     register struct dcache *tdc;
55     afs_size_t pos, offset, len;
56
57     AFS_STATCNT(FetchWholeEnchilada);
58     if ((avc->states & CStatd) == 0) return;    /* don't know size */
59     for(nextChunk=0;nextChunk<1024;nextChunk++) {   /* sanity check on N chunks */
60         pos = AFS_CHUNKTOBASE(nextChunk);
61 #if     defined(AFS_OSF_ENV)
62         if (pos >= avc->m.Length) break;        /* all done */
63 #else   /* AFS_OSF_ENV */
64         if (pos >= avc->m.Length) return;       /* all done */
65 #endif
66         tdc = afs_GetDCache(avc, pos, areq, &offset, &len, 0);
67         if (!tdc) 
68 #if     defined(AFS_OSF_ENV)
69             break;
70 #else   /* AFS_OSF_ENV */
71             return;
72 #endif
73         afs_PutDCache(tdc);
74     }
75 #if defined(AFS_OSF_ENV)
76     avc->states |= CWired;
77 #endif  /* AFS_OSF_ENV */
78 }
79
80 #if     defined(AFS_OSF_ENV)
81 /*
82  *  Tests whether file is wired down, after unwiring the file if it
83  *  is found to be inactive (ie not open and not being paged from).
84  */
85 afs_IsWired(avc)
86     register struct vcache *avc; {
87     if (avc->states & CWired) {
88         if (osi_Active(avc)) {
89             return 1;
90         }
91         avc->states &= ~CWired;
92     }
93     return 0;
94 }
95 #endif  /* AFS_OSF_ENV */
96
97 afsremove(adp, tdc, tvc, aname, acred, treqp)
98     register struct vcache *adp;
99     register struct dcache *tdc;
100     register struct vcache *tvc;
101     char *aname;
102     struct vrequest *treqp;
103     struct AFS_UCRED *acred; {
104     register afs_int32 code;
105     register struct conn *tc;
106     struct AFSFetchStatus OutDirStatus;
107     struct AFSVolSync tsync;
108     XSTATS_DECLS
109
110     do {
111         tc = afs_Conn(&adp->fid, treqp, SHARED_LOCK);
112         if (tc) {
113           XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_REMOVEFILE);
114 #ifdef RX_ENABLE_LOCKS
115             AFS_GUNLOCK();
116 #endif /* RX_ENABLE_LOCKS */
117             code = RXAFS_RemoveFile(tc->id, (struct AFSFid *) &adp->fid.Fid,
118                                     aname, &OutDirStatus, &tsync);
119 #ifdef RX_ENABLE_LOCKS
120             AFS_GLOCK();
121 #endif /* RX_ENABLE_LOCKS */
122           XSTATS_END_TIME;
123       }
124         else code = -1;
125     } while
126       (afs_Analyze(tc, code, &adp->fid, treqp,
127                    AFS_STATS_FS_RPCIDX_REMOVEFILE, SHARED_LOCK, (struct cell *)0));
128
129     osi_dnlc_remove (adp, aname, tvc);
130     if (tvc) afs_symhint_inval(tvc);   /* XXX: don't really need to be so extreme */
131
132     if (code) {
133         if (tdc) {
134             ReleaseSharedLock(&tdc->lock);
135             afs_PutDCache(tdc);
136         }
137         if (tvc) afs_PutVCache(tvc, WRITE_LOCK);
138
139         if (code < 0) {
140           ObtainWriteLock(&afs_xcbhash, 497);
141           afs_DequeueCallback(adp);
142           adp->states &= ~CStatd;
143           ReleaseWriteLock(&afs_xcbhash);
144           osi_dnlc_purgedp(adp);
145         }
146         ReleaseWriteLock(&adp->lock);
147         code = afs_CheckCode(code, treqp, 21);
148         return code;
149     }
150     if (tdc) UpgradeSToWLock(&tdc->lock, 637);
151     if (afs_LocalHero(adp, tdc, &OutDirStatus, 1)) {
152         /* we can do it locally */
153         code = afs_dir_Delete(&tdc->f.inode, aname);
154         if (code) {
155             ZapDCE(tdc);        /* surprise error -- invalid value */
156             DZap(&tdc->f.inode);
157         }
158     }
159     if (tdc) {
160         ReleaseWriteLock(&tdc->lock);
161         afs_PutDCache(tdc);     /* drop ref count */
162     }
163     ReleaseWriteLock(&adp->lock);
164
165     /* now, get vnode for unlinked dude, and see if we should force it
166      * from cache.  adp is now the deleted files vnode.  Note that we
167      * call FindVCache instead of GetVCache since if the file's really
168      * gone, we won't be able to fetch the status info anyway.  */
169     if (tvc) {
170 #if     defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
171         afs_BozonLock(&tvc->pvnLock, tvc);      
172         /* Since afs_TryToSmush will do a pvn_vptrunc */
173 #endif
174         ObtainWriteLock(&tvc->lock,141);
175         /* note that callback will be broken on the deleted file if there are
176          * still >0 links left to it, so we'll get the stat right */
177         tvc->m.LinkCount--;
178         tvc->states &= ~CUnique;                /* For the dfs xlator */
179         if (tvc->m.LinkCount == 0 && !osi_Active(tvc)) {
180             if (!AFS_NFSXLATORREQ(acred)) afs_TryToSmush(tvc, acred, 0);
181         } 
182         ReleaseWriteLock(&tvc->lock);
183 #if     defined(AFS_SUN_ENV) || defined(AFS_ALPHA_ENV) || defined(AFS_SUN5_ENV)
184         afs_BozonUnlock(&tvc->pvnLock, tvc);
185 #endif
186         afs_PutVCache(tvc, WRITE_LOCK);
187     }
188     return (0);
189 }
190
191 static char *newname() {
192     char *name, *sp, *p = ".__afs";
193     afs_int32 rd = afs_random() & 0xffff;
194
195     sp = name = osi_AllocSmallSpace(AFS_SMALLOCSIZ);
196     while (*p != '\0') *sp++ = *p++;
197     while (rd) {
198         *sp++= "0123456789ABCDEF"[rd & 0x0f];
199         rd >>= 4;
200     }
201     *sp = '\0';
202     return (name);
203 }
204
205 /* these variables appear to exist for debugging purposes */
206 struct vcache * Tadp1, * Ttvc;
207 int Tadpr, Ttvcr;
208 char *Tnam;
209 char *Tnam1;
210
211 /* Note that we don't set CDirty here, this is OK because the unlink
212  * RPC is called synchronously */
213 #ifdef  AFS_OSF_ENV
214 afs_remove(ndp)
215     struct nameidata *ndp; {
216     register struct vcache *adp = (struct vcache *)ndp->ni_dvp;
217     char *aname = ndp->ni_dent.d_name;
218     struct ucred *acred = ndp->ni_cred;
219 #else   /* AFS_OSF_ENV */
220 afs_remove(OSI_VC_ARG(adp), aname, acred)
221     OSI_VC_DECL(adp);
222     char *aname;
223     struct AFS_UCRED *acred; {
224 #endif
225     struct vrequest treq;
226     register struct dcache *tdc;
227     struct VenusFid unlinkFid;
228     register afs_int32 code;
229     register struct vcache *tvc;
230     afs_size_t offset, len;
231     struct AFSFetchStatus OutDirStatus;
232     struct AFSVolSync tsync;
233     XSTATS_DECLS
234     OSI_VC_CONVERT(adp)
235
236     AFS_STATCNT(afs_remove);
237     afs_Trace2(afs_iclSetp, CM_TRACE_REMOVE, ICL_TYPE_POINTER, adp,
238                ICL_TYPE_STRING, aname);
239
240     /* Check if this is dynroot */
241     if (afs_IsDynroot(adp))
242         return afs_DynrootVOPRemove(adp, acred, aname);
243
244     if (code = afs_InitReq(&treq, acred))
245       return code;
246 tagain:
247     code = afs_VerifyVCache(adp, &treq);
248 #ifdef  AFS_OSF_ENV
249     tvc = (struct vcache *)ndp->ni_vp;  /* should never be null */
250     if (code) {
251         afs_PutVCache(adp, 0);
252         afs_PutVCache(tvc, 0);
253         return afs_CheckCode(code, &treq, 22);
254     }
255 #else   /* AFS_OSF_ENV */
256     tvc = (struct vcache *) 0;
257     if (code) {
258       code = afs_CheckCode(code, &treq, 23);
259       return code;
260     }
261 #endif
262
263     /** If the volume is read-only, return error without making an RPC to the
264       * fileserver
265       */
266     if ( adp->states & CRO ) {
267         code = EROFS;
268         return code;
269     }
270
271     tdc = afs_GetDCache(adp, (afs_size_t) 0,    &treq, &offset, &len, 1);  /* test for error below */
272     ObtainWriteLock(&adp->lock,142);
273     ObtainSharedLock(&tdc->lock, 638);
274
275     /*
276      * Make sure that the data in the cache is current. We may have
277      * received a callback while we were waiting for the write lock.
278      */
279     if (!(adp->states & CStatd)
280         || (tdc && !hsame(adp->m.DataVersion, tdc->f.versionNo))) {
281         ReleaseWriteLock(&adp->lock);
282         if (tdc) {
283             ReleaseSharedLock(&tdc->lock);
284             afs_PutDCache(tdc);
285         }
286         goto tagain;
287     }
288
289     unlinkFid.Fid.Vnode = 0;
290     if (!tvc) {
291       tvc = osi_dnlc_lookup (adp, aname, WRITE_LOCK);
292     }
293     /* This should not be necessary since afs_lookup() has already
294      * done the work */
295     if (!tvc)
296       if (tdc) {
297         code = afs_dir_Lookup(&tdc->f.inode, aname, &unlinkFid.Fid);
298         if (code == 0) {        
299             afs_int32 cached=0;
300
301             unlinkFid.Cell = adp->fid.Cell;
302             unlinkFid.Fid.Volume = adp->fid.Fid.Volume;
303             if (unlinkFid.Fid.Unique == 0) {
304                 tvc = afs_LookupVCache(&unlinkFid, &treq, &cached, 
305                                        WRITE_LOCK, adp, aname);
306             } else {
307                 ObtainReadLock(&afs_xvcache);
308                 tvc = afs_FindVCache(&unlinkFid, 1, WRITE_LOCK, 
309                                      0 , DO_STATS );
310                 ReleaseReadLock(&afs_xvcache);
311             }
312         }
313     }
314
315     if (tvc && osi_Active(tvc)) {
316         /* about to delete whole file, prefetch it first */
317         ReleaseWriteLock(&adp->lock);
318         ObtainWriteLock(&tvc->lock,143);
319 #if     defined(AFS_OSF_ENV)
320         afs_Wire(tvc, &treq);
321 #else   /* AFS_OSF_ENV */
322         FetchWholeEnchilada(tvc, &treq);
323 #endif
324         ReleaseWriteLock(&tvc->lock);
325         ObtainWriteLock(&adp->lock,144);
326     }
327
328     osi_dnlc_remove ( adp, aname, tvc);
329     if (tvc) afs_symhint_inval(tvc);
330
331     Tadp1 = adp; Tadpr = VREFCOUNT(adp); Ttvc = tvc; Tnam = aname; Tnam1 = 0;
332     if (tvc) Ttvcr = VREFCOUNT(tvc);
333 #ifdef  AFS_AIX_ENV
334     if (tvc && (VREFCOUNT(tvc) > 2) && tvc->opens > 0 && !(tvc->states & CUnlinked)) {
335 #else
336     if (tvc && (VREFCOUNT(tvc) > 1) && tvc->opens > 0 && !(tvc->states & CUnlinked)) {
337 #endif
338         char *unlname = newname();
339
340         ReleaseWriteLock(&adp->lock);
341         if (tdc) ReleaseSharedLock(&tdc->lock);
342         code = afsrename(adp, aname, adp, unlname, acred);
343         Tnam1 = unlname;
344         if (!code) {
345             tvc->mvid = (struct VenusFid *)unlname;
346             crhold(acred);
347             if (tvc->uncred) {
348                 crfree(tvc->uncred);
349             }
350             tvc->uncred = acred;
351             tvc->states |= CUnlinked;
352         } else {
353             osi_FreeSmallSpace(unlname);            
354         }
355         if ( tdc )
356                 afs_PutDCache(tdc);
357         afs_PutVCache(tvc, WRITE_LOCK); 
358     } else {
359         code = afsremove(adp, tdc, tvc, aname, acred, &treq);
360     }
361 #ifdef  AFS_OSF_ENV
362     afs_PutVCache(adp, WRITE_LOCK);
363 #endif  /* AFS_OSF_ENV */
364     return code;
365 }
366
367
368 /* afs_remunlink -- This tries to delete the file at the server after it has
369  *     been renamed when unlinked locally but now has been finally released.
370  *
371  * CAUTION -- may be called with avc unheld. */
372
373 afs_remunlink(avc, doit)
374     register struct vcache *avc;
375     register int doit;
376 {
377     struct AFS_UCRED *cred;
378     char *unlname;
379     struct vcache *adp;
380     struct vrequest treq;
381     struct VenusFid dirFid;
382     register struct dcache *tdc;
383     afs_int32 code=0;
384
385     if (NBObtainWriteLock(&avc->lock, 423))
386         return 0;
387
388     if (avc->mvid && (doit || (avc->states & CUnlinkedDel))) {
389         if (code = afs_InitReq(&treq, avc->uncred)) {
390             ReleaseWriteLock(&avc->lock);
391         }
392         else {
393             /* Must bump the refCount because GetVCache may block.
394              * Also clear mvid so no other thread comes here if we block.
395              */
396             unlname = (char *)avc->mvid;
397             avc->mvid = NULL;
398             cred = avc->uncred;
399             avc->uncred = NULL;
400
401             VN_HOLD(&avc->v);
402
403             /* We'll only try this once. If it fails, just release the vnode.
404              * Clear after doing hold so that NewVCache doesn't find us yet.
405              */
406             avc->states  &= ~(CUnlinked | CUnlinkedDel);
407
408             ReleaseWriteLock(&avc->lock);
409
410             dirFid.Cell = avc->fid.Cell;
411             dirFid.Fid.Volume = avc->fid.Fid.Volume;
412             dirFid.Fid.Vnode = avc->parentVnode;
413             dirFid.Fid.Unique = avc->parentUnique;
414             adp = afs_GetVCache(&dirFid, &treq, (afs_int32 *)0, 
415                                 (struct vcache *)0, WRITE_LOCK);
416             
417             if (adp) {
418                 tdc = afs_FindDCache(adp, 0);
419                 ObtainWriteLock(&adp->lock, 159);
420                 if (tdc) ObtainSharedLock(&tdc->lock, 639);
421
422                 /* afsremove releases the adp & tdc locks, and does vn_rele(avc) */
423                 code = afsremove(adp, tdc, avc, unlname, cred, &treq);
424                 afs_PutVCache(adp, WRITE_LOCK);
425             } else {
426                 /* we failed - and won't be back to try again. */
427                 afs_PutVCache(avc, WRITE_LOCK);
428             }
429             osi_FreeSmallSpace(unlname);
430             crfree(cred);
431         }
432     }
433     else {
434         ReleaseWriteLock(&avc->lock);
435     }
436
437     return code;
438 }