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
18 #include <afsconfig.h>
19 #include "afs/param.h"
22 #include "afs/sysincludes.h" /* Standard vendor system headers */
23 #include "afsincludes.h" /* Afs-based standard headers */
24 #include "afs/afs_stats.h" /* statistics */
25 #include "afs/afs_cbqueue.h"
26 #include "afs/nfsclient.h"
27 #include "afs/afs_osidnlc.h"
30 extern afs_rwlock_t afs_xvcache
;
31 extern afs_rwlock_t afs_xcbhash
;
35 FetchWholeEnchilada(struct vcache
*avc
, struct vrequest
*areq
)
39 afs_size_t pos
, offset
, len
;
41 AFS_STATCNT(FetchWholeEnchilada
);
42 if ((avc
->f
.states
& CStatd
) == 0)
43 return; /* don't know size */
44 for (nextChunk
= 0; nextChunk
< 1024; nextChunk
++) { /* sanity check on N chunks */
45 pos
= AFS_CHUNKTOBASE(nextChunk
);
46 if (pos
>= avc
->f
.m
.Length
)
47 return; /* all done */
48 tdc
= afs_GetDCache(avc
, pos
, areq
, &offset
, &len
, 0);
56 afsremove(struct vcache
*adp
, struct dcache
*tdc
,
57 struct vcache
*tvc
, char *aname
, afs_ucred_t
*acred
,
58 struct vrequest
*treqp
)
62 struct AFSFetchStatus OutDirStatus
;
63 struct AFSVolSync tsync
;
64 struct rx_connection
*rxconn
;
66 if (!AFS_IS_DISCONNECTED
) {
68 tc
= afs_Conn(&adp
->f
.fid
, treqp
, SHARED_LOCK
, &rxconn
);
70 XSTATS_START_TIME(AFS_STATS_FS_RPCIDX_REMOVEFILE
);
73 RXAFS_RemoveFile(rxconn
, (struct AFSFid
*)&adp
->f
.fid
.Fid
,
74 aname
, &OutDirStatus
, &tsync
);
80 (tc
, rxconn
, code
, &adp
->f
.fid
, treqp
, AFS_STATS_FS_RPCIDX_REMOVEFILE
,
84 osi_dnlc_remove(adp
, aname
, tvc
);
88 ReleaseSharedLock(&tdc
->lock
);
98 ReleaseWriteLock(&adp
->lock
);
99 code
= afs_CheckCode(code
, treqp
, 21);
103 UpgradeSToWLock(&tdc
->lock
, 637);
104 if (AFS_IS_DISCON_RW
|| afs_LocalHero(adp
, tdc
, &OutDirStatus
, 1)) {
105 /* we can do it locally */
106 code
= afs_dir_Delete(tdc
, aname
);
108 ZapDCE(tdc
); /* surprise error -- invalid value */
113 ReleaseWriteLock(&tdc
->lock
);
114 afs_PutDCache(tdc
); /* drop ref count */
116 ReleaseWriteLock(&adp
->lock
);
118 /* now, get vnode for unlinked dude, and see if we should force it
119 * from cache. adp is now the deleted files vnode. Note that we
120 * call FindVCache instead of GetVCache since if the file's really
121 * gone, we won't be able to fetch the status info anyway. */
124 afs_MarinerLog("store$Removing", tvc
);
125 ObtainWriteLock(&tvc
->lock
, 141);
126 /* note that callback will be broken on the deleted file if there are
127 * still >0 links left to it, so we'll get the stat right */
128 tvc
->f
.m
.LinkCount
--;
129 tvc
->f
.states
&= ~CUnique
; /* For the dfs xlator */
130 if (tvc
->f
.m
.LinkCount
== 0 && !osi_Active(tvc
)) {
131 if (!AFS_NFSXLATORREQ(acred
))
132 afs_TryToSmush(tvc
, acred
, 0);
134 ReleaseWriteLock(&tvc
->lock
);
143 char *name
, *sp
, *p
= ".__afs";
144 afs_int32 rd
= afs_random() & 0xffff;
146 sp
= name
= osi_AllocSmallSpace(AFS_SMALLOCSIZ
);
150 *sp
++ = "0123456789ABCDEF"[rd
& 0x0f];
157 /* these variables appear to exist for debugging purposes */
158 struct vcache
*Tadp1
, *Ttvc
;
163 /* Note that we don't set CDirty here, this is OK because the unlink
164 * RPC is called synchronously */
166 afs_remove(OSI_VC_DECL(adp
), char *aname
, afs_ucred_t
*acred
)
168 struct vrequest
*treq
= NULL
;
170 struct VenusFid unlinkFid
;
173 afs_size_t offset
, len
;
174 struct afs_fakestat_state fakestate
;
177 AFS_STATCNT(afs_remove
);
178 afs_Trace2(afs_iclSetp
, CM_TRACE_REMOVE
, ICL_TYPE_POINTER
, adp
,
179 ICL_TYPE_STRING
, aname
);
182 if ((code
= afs_CreateReq(&treq
, acred
))) {
186 afs_InitFakeStat(&fakestate
);
188 code
= afs_EvalFakeStat(&adp
, &fakestate
, treq
);
192 /* Check if this is dynroot */
193 if (afs_IsDynroot(adp
)) {
194 code
= afs_DynrootVOPRemove(adp
, acred
, aname
);
197 if (afs_IsDynrootMount(adp
)) {
202 if (strlen(aname
) > AFSNAMEMAX
) {
207 code
= afs_VerifyVCache(adp
, treq
);
210 code
= afs_CheckCode(code
, treq
, 23);
214 /** If the volume is read-only, return error without making an RPC to the
217 if (adp
->f
.states
& CRO
) {
222 /* If we're running disconnected without logging, go no further... */
223 if (AFS_IS_DISCONNECTED
&& !AFS_IS_DISCON_RW
) {
228 tdc
= afs_GetDCache(adp
, (afs_size_t
) 0, treq
, &offset
, &len
, 1); /* test for error below */
229 ObtainWriteLock(&adp
->lock
, 142);
231 ObtainSharedLock(&tdc
->lock
, 638);
234 * Make sure that the data in the cache is current. We may have
235 * received a callback while we were waiting for the write lock.
237 if (!(adp
->f
.states
& CStatd
)
238 || (tdc
&& !hsame(adp
->f
.m
.DataVersion
, tdc
->f
.versionNo
))) {
239 ReleaseWriteLock(&adp
->lock
);
241 ReleaseSharedLock(&tdc
->lock
);
247 unlinkFid
.Fid
.Vnode
= 0;
249 tvc
= osi_dnlc_lookup(adp
, aname
, WRITE_LOCK
);
251 /* This should not be necessary since afs_lookup() has already
256 code
= afs_dir_Lookup(tdc
, aname
, &unlinkFid
.Fid
);
258 afs_int32 cached
= 0;
260 unlinkFid
.Cell
= adp
->f
.fid
.Cell
;
261 unlinkFid
.Fid
.Volume
= adp
->f
.fid
.Fid
.Volume
;
262 if (unlinkFid
.Fid
.Unique
== 0) {
264 afs_LookupVCache(&unlinkFid
, treq
, &cached
, adp
,
267 ObtainReadLock(&afs_xvcache
);
268 tvc
= afs_FindVCache(&unlinkFid
, 0, DO_STATS
);
269 ReleaseReadLock(&afs_xvcache
);
274 if (AFS_IS_DISCON_RW
) {
275 if (!adp
->f
.shadow
.vnode
&& !(adp
->f
.ddirty_flags
& VDisconCreate
)) {
276 /* Make shadow copy of parent dir. */
277 afs_MakeShadowDir(adp
, tdc
);
280 /* Can't hold a dcache lock whilst we're getting a vcache one */
282 ReleaseSharedLock(&tdc
->lock
);
284 /* XXX - We're holding adp->lock still, and we've got no
285 * guarantee about whether the ordering matches the lock hierarchy */
286 ObtainWriteLock(&tvc
->lock
, 713);
288 /* If we were locally created, then we don't need to do very
289 * much beyond ensuring that we don't exist anymore */
290 if (tvc
->f
.ddirty_flags
& VDisconCreate
) {
291 afs_DisconRemoveDirty(tvc
);
293 /* Add removed file vcache to dirty list. */
294 afs_DisconAddDirty(tvc
, VDisconRemove
, 1);
296 adp
->f
.m
.LinkCount
--;
297 ReleaseWriteLock(&tvc
->lock
);
299 ObtainSharedLock(&tdc
->lock
, 714);
302 if (tvc
&& osi_Active(tvc
)) {
303 /* about to delete whole file, prefetch it first */
304 ReleaseWriteLock(&adp
->lock
);
306 ReleaseSharedLock(&tdc
->lock
);
307 ObtainWriteLock(&tvc
->lock
, 143);
308 FetchWholeEnchilada(tvc
, treq
);
309 ReleaseWriteLock(&tvc
->lock
);
310 ObtainWriteLock(&adp
->lock
, 144);
311 /* Technically I don't think we need this back, but let's hold it
312 anyway; The "got" reference should actually be sufficient. */
314 ObtainSharedLock(&tdc
->lock
, 640);
317 osi_dnlc_remove(adp
, aname
, tvc
);
320 #ifndef AFS_DARWIN80_ENV
321 Tadpr
= VREFCOUNT(adp
);
326 #ifndef AFS_DARWIN80_ENV
328 Ttvcr
= VREFCOUNT(tvc
);
331 if (tvc
&& VREFCOUNT_GT(tvc
, 2) && tvc
->opens
> 0
332 && !(tvc
->f
.states
& CUnlinked
)) {
334 if (tvc
&& VREFCOUNT_GT(tvc
, 1) && tvc
->opens
> 0
335 && !(tvc
->f
.states
& CUnlinked
)) {
337 char *unlname
= afs_newname();
339 ReleaseWriteLock(&adp
->lock
);
341 ReleaseSharedLock(&tdc
->lock
);
342 code
= afsrename(adp
, aname
, adp
, unlname
, acred
, treq
);
345 void *oldmvid
= NULL
;
346 if (tvc
->mvid
.silly_name
)
347 oldmvid
= tvc
->mvid
.silly_name
;
348 tvc
->mvid
.silly_name
= unlname
;
350 osi_FreeSmallSpace(oldmvid
);
356 tvc
->f
.states
|= CUnlinked
;
357 /* if rename succeeded, remove should not */
358 ObtainWriteLock(&tvc
->lock
, 715);
359 if (tvc
->f
.ddirty_flags
& VDisconRemove
) {
360 tvc
->f
.ddirty_flags
&= ~VDisconRemove
;
362 ReleaseWriteLock(&tvc
->lock
);
364 osi_FreeSmallSpace(unlname
);
370 code
= afsremove(adp
, tdc
, tvc
, aname
, acred
, treq
);
373 afs_PutFakeStat(&fakestate
);
374 #if !defined(AFS_DARWIN80_ENV) && !defined(UKERNEL)
375 /* we can't track by thread, it's not exported in the KPI; only do
377 osi_Assert(!WriteLocked(&adp
->lock
) || (adp
->lock
.pid_writer
!= MyPidxx
));
380 afs_DestroyReq(treq
);
385 /* afs_remunlink -- This tries to delete the file at the server after it has
386 * been renamed when unlinked locally but now has been finally released.
388 * CAUTION -- may be called with avc unheld. */
391 afs_remunlink(struct vcache
*avc
, int doit
)
396 struct VenusFid dirFid
;
400 if (NBObtainWriteLock(&avc
->lock
, 423))
402 #if defined(AFS_DARWIN80_ENV)
403 if (vnode_get(AFSTOV(avc
))) {
404 ReleaseWriteLock(&avc
->lock
);
409 if (avc
->mvid
.silly_name
&& (doit
|| (avc
->f
.states
& CUnlinkedDel
))) {
410 struct vrequest
*treq
= NULL
;
412 if ((code
= afs_CreateReq(&treq
, avc
->uncred
))) {
413 ReleaseWriteLock(&avc
->lock
);
415 /* Must bump the refCount because GetVCache may block.
416 * Also clear mvid so no other thread comes here if we block.
418 unlname
= avc
->mvid
.silly_name
;
419 avc
->mvid
.silly_name
= NULL
;
423 #if defined(AFS_DARWIN_ENV) && !defined(AFS_DARWIN80_ENV)
429 /* We'll only try this once. If it fails, just release the vnode.
430 * Clear after doing hold so that NewVCache doesn't find us yet.
432 avc
->f
.states
&= ~(CUnlinked
| CUnlinkedDel
);
434 ReleaseWriteLock(&avc
->lock
);
436 dirFid
.Cell
= avc
->f
.fid
.Cell
;
437 dirFid
.Fid
.Volume
= avc
->f
.fid
.Fid
.Volume
;
438 dirFid
.Fid
.Vnode
= avc
->f
.parent
.vnode
;
439 dirFid
.Fid
.Unique
= avc
->f
.parent
.unique
;
440 adp
= afs_GetVCache(&dirFid
, treq
, NULL
, NULL
);
443 tdc
= afs_FindDCache(adp
, (afs_size_t
) 0);
444 ObtainWriteLock(&adp
->lock
, 159);
446 ObtainSharedLock(&tdc
->lock
, 639);
448 /* afsremove releases the adp & tdc locks, and does vn_rele(avc) */
449 code
= afsremove(adp
, tdc
, avc
, unlname
, cred
, treq
);
452 /* we failed - and won't be back to try again. */
455 osi_FreeSmallSpace(unlname
);
457 afs_DestroyReq(treq
);
460 #if defined(AFS_DARWIN80_ENV)
461 vnode_put(AFSTOV(avc
));
463 ReleaseWriteLock(&avc
->lock
);