2 * Copyright (c) 2008, 2009, 2010, 2011 Kernel Drivers, LLC.
3 * Copyright (c) 2009, 2010, 2011 Your File System, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * - Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
14 * this list of conditions and the following disclaimer in the
16 * and/or other materials provided with the distribution.
17 * - Neither the names of Kernel Drivers, LLC and Your File System, Inc.
18 * nor the names of their contributors may be used to endorse or promote
19 * products derived from this software without specific prior written
20 * permission from Kernel Drivers, LLC and Your File System, Inc.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
25 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
26 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include "AFSCommon.h"
46 // This function is the IRP_MJ_CLOSE dispatch handler
50 // A status is returned for the handling of this request
54 AFSClose( IN PDEVICE_OBJECT LibDeviceObject,
58 NTSTATUS ntStatus = STATUS_SUCCESS;
59 ULONG ulRequestType = 0;
60 IO_STACK_LOCATION *pIrpSp = IoGetCurrentIrpStackLocation( Irp);
62 AFSDeviceExt *pDeviceExt = NULL;
64 AFSObjectInfoCB *pObjectInfo = NULL;
65 AFSDirectoryCB *pDirCB = NULL;
70 if( AFSRDRDeviceObject == NULL)
74 // Let this through, it's an close on the library control device
77 try_return( ntStatus);
80 pDeviceExt = (AFSDeviceExt *)AFSRDRDeviceObject->DeviceExtension;
82 pIrpSp = IoGetCurrentIrpStackLocation( Irp);
84 pFcb = (AFSFcb *)pIrpSp->FileObject->FsContext;
88 try_return( ntStatus);
91 pObjectInfo = pFcb->ObjectInformation;
94 // Perform the close functionality depending on the type of node it is
97 switch( pFcb->Header.NodeTypeCode)
103 AFSPIOCtlOpenCloseRequestCB stPIOCtlClose;
104 AFSFileID stParentFileId;
106 AFSDbgLogMsg( AFS_SUBSYSTEM_LOCK_PROCESSING,
107 AFS_TRACE_LEVEL_VERBOSE,
108 "AFSClose Acquiring GlobalRoot lock %08lX EXCL %08lX\n",
109 &pFcb->NPFcb->Resource,
110 PsGetCurrentThread());
112 AFSAcquireExcl( &pFcb->NPFcb->Resource,
115 pCcb = (AFSCcb *)pIrpSp->FileObject->FsContext2;
118 // Send the close to the CM
121 RtlZeroMemory( &stPIOCtlClose,
122 sizeof( AFSPIOCtlOpenCloseRequestCB));
124 stPIOCtlClose.RequestId = pCcb->RequestID;
126 stPIOCtlClose.RootId = pObjectInfo->VolumeCB->ObjectInformation.FileId;
128 RtlZeroMemory( &stParentFileId,
131 stParentFileId = pObjectInfo->ParentObjectInformation->FileId;
134 // Issue the close request to the service
137 AFSProcessRequest( AFS_REQUEST_TYPE_PIOCTL_CLOSE,
138 AFS_REQUEST_FLAG_SYNCHRONOUS,
142 (void *)&stPIOCtlClose,
143 sizeof( AFSPIOCtlOpenCloseRequestCB),
147 pDirCB = pCcb->DirectoryCB;
150 // Remove the Ccb and de-allocate it
153 ntStatus = AFSRemoveCcb( pFcb,
156 if( !NT_SUCCESS( ntStatus))
159 AFSDbgLogMsg( AFS_SUBSYSTEM_FILE_PROCESSING,
160 AFS_TRACE_LEVEL_WARNING,
161 "AFSClose Failed to remove Ccb from Fcb Status %08lX\n", ntStatus);
164 // We can't actually fail a close operation so reset the status
167 ntStatus = STATUS_SUCCESS;
170 ASSERT( pDirCB->OpenReferenceCount > 0);
172 InterlockedDecrement( &pDirCB->OpenReferenceCount);
174 AFSDbgLogMsg( AFS_SUBSYSTEM_DIRENTRY_REF_COUNTING,
175 AFS_TRACE_LEVEL_VERBOSE,
176 "AFSClose (IOCtl) Decrement count on %wZ DE %p Ccb %p Cnt %d\n",
177 &pDirCB->NameInformation.FileName,
180 pDirCB->OpenReferenceCount);
183 // If this is not the root then decrement the open child reference count
186 if( pObjectInfo->ParentObjectInformation != NULL &&
187 pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount > 0)
190 InterlockedDecrement( &pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount);
192 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
193 AFS_TRACE_LEVEL_VERBOSE,
194 "AFSClose (IOCtl) Decrement child open ref count on Parent object %08lX Cnt %d\n",
195 pObjectInfo->ParentObjectInformation,
196 pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount);
199 AFSReleaseResource( &pFcb->NPFcb->Resource);
201 ASSERT( pFcb->OpenReferenceCount != 0);
203 InterlockedDecrement( &pFcb->OpenReferenceCount);
205 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
206 AFS_TRACE_LEVEL_VERBOSE,
207 "AFSClose (IOCtl) Decrement count on Fcb %08lX Cnt %d\n",
209 pFcb->OpenReferenceCount);
217 AFSDbgLogMsg( AFS_SUBSYSTEM_LOCK_PROCESSING,
218 AFS_TRACE_LEVEL_VERBOSE,
219 "AFSClose Acquiring Special Root ALL lock %08lX EXCL %08lX\n",
220 &pFcb->NPFcb->Resource,
221 PsGetCurrentThread());
223 AFSAcquireExcl( &pFcb->NPFcb->Resource,
226 pCcb = (AFSCcb *)pIrpSp->FileObject->FsContext2;
228 pDirCB = pCcb->DirectoryCB;
231 // Remove the Ccb and de-allocate it
234 ntStatus = AFSRemoveCcb( pFcb,
237 if( !NT_SUCCESS( ntStatus))
240 AFSDbgLogMsg( AFS_SUBSYSTEM_FILE_PROCESSING,
241 AFS_TRACE_LEVEL_WARNING,
242 "AFSClose Failed to remove Ccb from Fcb Status %08lX\n", ntStatus);
245 // We can't actually fail a close operation so reset the status
248 ntStatus = STATUS_SUCCESS;
251 ASSERT( pDirCB->OpenReferenceCount > 0);
253 InterlockedDecrement( &pDirCB->OpenReferenceCount);
255 AFSDbgLogMsg( AFS_SUBSYSTEM_DIRENTRY_REF_COUNTING,
256 AFS_TRACE_LEVEL_VERBOSE,
257 "AFSClose Decrement (Root ALL) count on %wZ DE %p Ccb %p Cnt %d\n",
258 &pDirCB->NameInformation.FileName,
261 pDirCB->OpenReferenceCount);
263 AFSReleaseResource( &pFcb->NPFcb->Resource);
265 ASSERT( pFcb->OpenReferenceCount > 0);
267 InterlockedDecrement( &pFcb->OpenReferenceCount);
269 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
270 AFS_TRACE_LEVEL_VERBOSE,
271 "AFSClose (RootAll) Decrement count on Fcb %08lX Cnt %d\n",
273 pFcb->OpenReferenceCount);
279 // Root, file or directory node
284 case AFS_DIRECTORY_FCB:
285 case AFS_SYMBOLIC_LINK_FCB:
286 case AFS_MOUNT_POINT_FCB:
287 case AFS_DFS_LINK_FCB:
288 case AFS_INVALID_FCB:
291 pCcb = (AFSCcb *)pIrpSp->FileObject->FsContext2;
294 // We may be performing some cleanup on the Fcb so grab it exclusive to ensure no collisions
297 AFSDbgLogMsg( AFS_SUBSYSTEM_LOCK_PROCESSING,
298 AFS_TRACE_LEVEL_VERBOSE,
299 "AFSClose Acquiring Dcb lock %08lX EXCL %08lX\n",
300 &pFcb->NPFcb->Resource,
301 PsGetCurrentThread());
303 AFSAcquireExcl( &pFcb->NPFcb->Resource,
306 KeQueryTickCount( &pFcb->ObjectInformation->LastAccessCount);
308 pDirCB = pCcb->DirectoryCB;
311 // If this entry is deleted then remove the object from the volume tree
314 if( BooleanFlagOn( pDirCB->Flags, AFS_DIR_ENTRY_DELETED))
317 if( pFcb->Header.NodeTypeCode == AFS_FILE_FCB)
321 // Stop anything possibly in process
324 AFSDbgLogMsg( AFS_SUBSYSTEM_LOCK_PROCESSING,
325 AFS_TRACE_LEVEL_VERBOSE,
326 "AFSClose Acquiring Fcb extents lock %08lX EXCL %08lX\n",
327 &pFcb->NPFcb->Specific.File.ExtentsResource,
328 PsGetCurrentThread());
330 AFSAcquireExcl( &pObjectInfo->Fcb->NPFcb->Specific.File.ExtentsResource,
333 pObjectInfo->Fcb->NPFcb->Specific.File.ExtentsRequestStatus = STATUS_FILE_DELETED;
335 KeSetEvent( &pObjectInfo->Fcb->NPFcb->Specific.File.ExtentsRequestComplete,
339 AFSDbgLogMsg( AFS_SUBSYSTEM_LOCK_PROCESSING,
340 AFS_TRACE_LEVEL_VERBOSE,
341 "AFSClose Releasing Fcb extents lock %08lX EXCL %08lX\n",
342 &pFcb->NPFcb->Specific.File.ExtentsResource,
343 PsGetCurrentThread());
345 AFSReleaseResource( &pObjectInfo->Fcb->NPFcb->Specific.File.ExtentsResource);
348 AFSAcquireExcl( pObjectInfo->ParentObjectInformation->Specific.Directory.DirectoryNodeHdr.TreeLock,
351 AFSAcquireExcl( pObjectInfo->VolumeCB->ObjectInfoTree.TreeLock,
354 if ( pDirCB->OpenReferenceCount == 0)
358 "AFSClose (Other) OpenReferenceCount is Zero on DE %08lX Ccb %08lX FileName %wZ\n",
361 &pDirCB->NameInformation.FileName);
364 ASSERT( pDirCB->OpenReferenceCount > 0);
366 InterlockedDecrement( &pDirCB->OpenReferenceCount);
368 AFSDbgLogMsg( AFS_SUBSYSTEM_DIRENTRY_REF_COUNTING,
369 AFS_TRACE_LEVEL_VERBOSE,
370 "AFSClose (Other) Decrement count on %wZ DE %p Ccb %p Cnt %d\n",
371 &pDirCB->NameInformation.FileName,
374 pDirCB->OpenReferenceCount);
376 if( pDirCB->OpenReferenceCount == 0)
379 AFSDbgLogMsg( AFS_SUBSYSTEM_CLEANUP_PROCESSING,
380 AFS_TRACE_LEVEL_VERBOSE,
381 "AFSClose Deleting dir entry %08lX (%08lX) for %wZ FID %08lX-%08lX-%08lX-%08lX\n",
384 &pDirCB->NameInformation.FileName,
385 pObjectInfo->FileId.Cell,
386 pObjectInfo->FileId.Volume,
387 pObjectInfo->FileId.Vnode,
388 pObjectInfo->FileId.Unique);
391 // Remove and delete the directory entry from the parent list
394 AFSDeleteDirEntry( pObjectInfo->ParentObjectInformation,
397 AFSAcquireShared( &pObjectInfo->NonPagedInfo->ObjectInfoLock,
400 if( pObjectInfo->ObjectReferenceCount <= 0)
403 if( BooleanFlagOn( pObjectInfo->Flags, AFS_OBJECT_INSERTED_HASH_TREE))
406 AFSDbgLogMsg( AFS_SUBSYSTEM_CLEANUP_PROCESSING,
407 AFS_TRACE_LEVEL_VERBOSE,
408 "AFSClose Removing object %08lX from volume tree\n",
411 AFSRemoveHashEntry( &pObjectInfo->VolumeCB->ObjectInfoTree.TreeHead,
412 &pObjectInfo->TreeEntry);
414 ClearFlag( pObjectInfo->Flags, AFS_OBJECT_INSERTED_HASH_TREE);
417 SetFlag( pObjectInfo->Flags, AFS_OBJECT_FLAGS_DELETED);
420 AFSReleaseResource( &pObjectInfo->NonPagedInfo->ObjectInfoLock);
423 AFSReleaseResource( pObjectInfo->ParentObjectInformation->Specific.Directory.DirectoryNodeHdr.TreeLock);
425 AFSReleaseResource( pObjectInfo->VolumeCB->ObjectInfoTree.TreeLock);
430 ASSERT( pDirCB->OpenReferenceCount > 0);
432 InterlockedDecrement( &pDirCB->OpenReferenceCount);
434 AFSDbgLogMsg( AFS_SUBSYSTEM_DIRENTRY_REF_COUNTING,
435 AFS_TRACE_LEVEL_VERBOSE,
436 "AFSClose (Other2) Decrement count on %wZ DE %p Ccb %p Cnt %d\n",
437 &pDirCB->NameInformation.FileName,
440 pDirCB->OpenReferenceCount);
444 // If this is not the root then decrement the open child reference count
447 if( pObjectInfo != NULL &&
448 pObjectInfo->ParentObjectInformation != NULL &&
449 pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount > 0)
452 InterlockedDecrement( &pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount);
454 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
455 AFS_TRACE_LEVEL_VERBOSE,
456 "AFSClose Decrement child open ref count on Parent object %08lX Cnt %d\n",
457 pObjectInfo->ParentObjectInformation,
458 pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount);
461 if( pFcb->OpenReferenceCount == 1 &&
462 pFcb->Header.NodeTypeCode == AFS_FILE_FCB)
465 SetFlag( pFcb->Flags, AFS_FCB_FILE_CLOSED);
468 // Attempt to tear down our extent list for the file
469 // If there are remaining dirty extents then attempt to
470 // flush them as well
473 if( pFcb->Specific.File.ExtentsDirtyCount)
476 AFSFlushExtents( pFcb,
481 // Wait for any outstanding queued flushes to complete
484 AFSWaitOnQueuedFlushes( pFcb);
486 ASSERT( pFcb->Specific.File.ExtentsDirtyCount == 0 &&
487 pFcb->Specific.File.QueuedFlushCount == 0);
489 AFSReleaseResource( &pFcb->NPFcb->Resource);
492 // Tear 'em down, we'll not be needing them again
495 AFSTearDownFcbExtents( pFcb,
501 if( pFcb->Header.NodeTypeCode == AFS_FILE_FCB &&
502 pFcb->Specific.File.ExtentsDirtyCount &&
503 (pCcb->GrantedAccess & FILE_WRITE_DATA))
506 AFSFlushExtents( pFcb,
510 AFSReleaseResource( &pFcb->NPFcb->Resource);
514 // Remove the Ccb and de-allocate it
517 ntStatus = AFSRemoveCcb( pFcb,
520 if( !NT_SUCCESS( ntStatus))
523 AFSDbgLogMsg( AFS_SUBSYSTEM_FILE_PROCESSING,
524 AFS_TRACE_LEVEL_WARNING,
525 "AFSClose Failed to remove Ccb from Fcb Status %08lX\n",
529 // We can't actually fail a close operation so reset the status
532 ntStatus = STATUS_SUCCESS;
536 // Decrement the reference count on the Fcb. this is protecting it from teardown.
539 ASSERT( pFcb->OpenReferenceCount != 0);
541 InterlockedDecrement( &pFcb->OpenReferenceCount);
543 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
544 AFS_TRACE_LEVEL_VERBOSE,
545 "AFSClose Decrement count on Fcb %08lX Cnt %d\n",
547 pFcb->OpenReferenceCount);
552 case AFS_SPECIAL_SHARE_FCB:
555 AFSPipeOpenCloseRequestCB stPipeClose;
557 AFSDbgLogMsg( AFS_SUBSYSTEM_LOCK_PROCESSING,
558 AFS_TRACE_LEVEL_VERBOSE,
559 "AFSClose Acquiring Special Share lock %08lX EXCL %08lX\n",
560 &pFcb->NPFcb->Resource,
561 PsGetCurrentThread());
563 AFSAcquireExcl( &pFcb->NPFcb->Resource,
566 pCcb = (AFSCcb *)pIrpSp->FileObject->FsContext2;
568 pDirCB = pCcb->DirectoryCB;
570 RtlZeroMemory( &stPipeClose,
571 sizeof( AFSPipeOpenCloseRequestCB));
573 stPipeClose.RequestId = pCcb->RequestID;
575 stPipeClose.RootId = pObjectInfo->VolumeCB->ObjectInformation.FileId;
578 // Issue the open request to the service
582 AFSProcessRequest( AFS_REQUEST_TYPE_PIPE_CLOSE,
583 AFS_REQUEST_FLAG_SYNCHRONOUS,
585 &pDirCB->NameInformation.FileName,
587 (void *)&stPipeClose,
588 sizeof( AFSPipeOpenCloseRequestCB),
594 // Remove the Ccb and de-allocate it
597 ntStatus = AFSRemoveCcb( pFcb,
600 if( !NT_SUCCESS( ntStatus))
603 AFSDbgLogMsg( AFS_SUBSYSTEM_FILE_PROCESSING,
604 AFS_TRACE_LEVEL_WARNING,
605 "AFSClose Failed to remove Ccb from Fcb Status %08lX\n", ntStatus);
608 // We can't actually fail a close operation so reset the status
611 ntStatus = STATUS_SUCCESS;
614 ASSERT( pDirCB->OpenReferenceCount > 0);
616 InterlockedDecrement( &pDirCB->OpenReferenceCount);
618 AFSDbgLogMsg( AFS_SUBSYSTEM_DIRENTRY_REF_COUNTING,
619 AFS_TRACE_LEVEL_VERBOSE,
620 "AFSClose (Share) Decrement count on %wZ DE %p Ccb %p Cnt %d\n",
621 &pDirCB->NameInformation.FileName,
624 pDirCB->OpenReferenceCount);
627 // If this is not the root then decrement the open child reference count
630 if( pObjectInfo->ParentObjectInformation != NULL &&
631 pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount > 0)
634 InterlockedDecrement( &pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount);
636 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
637 AFS_TRACE_LEVEL_VERBOSE,
638 "AFSClose (Share) Decrement child open ref count on Parent object %08lX Cnt %d\n",
639 pObjectInfo->ParentObjectInformation,
640 pObjectInfo->ParentObjectInformation->Specific.Directory.ChildOpenReferenceCount);
643 AFSReleaseResource( &pFcb->NPFcb->Resource);
645 ASSERT( pFcb->OpenReferenceCount != 0);
647 InterlockedDecrement( &pFcb->OpenReferenceCount);
649 AFSDbgLogMsg( AFS_SUBSYSTEM_FCB_REF_COUNTING,
650 AFS_TRACE_LEVEL_VERBOSE,
651 "AFSClose (Share) Decrement count on Fcb %08lX Cnt %d\n",
653 pFcb->OpenReferenceCount);
660 AFSDbgLogMsg( AFS_SUBSYSTEM_FILE_PROCESSING,
661 AFS_TRACE_LEVEL_ERROR,
662 "AFSClose Processing unknown node type %d\n",
663 pFcb->Header.NodeTypeCode);
671 // Complete the request
674 AFSCompleteRequest( Irp,
677 __except( AFSExceptionFilter( __FUNCTION__, GetExceptionCode(), GetExceptionInformation()) )
682 "EXCEPTION - AFSClose\n");
684 AFSDumpTraceFilesFnc();