Windows: AFSInitFcb STATUS_REPARSE cleanup
[openafs.git] / src / WINNT / afsrdr / kernel / fs / AFSClose.cpp
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Kernel Drivers, LLC.
3  * Copyright (c) 2009, 2010, 2011 Your File System, Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
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
13  *   notice,
14  *   this list of conditions and the following disclaimer in the
15  *   documentation
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.
21  *
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.
33  */
34
35 //
36 // File: AFSClose.cpp
37 //
38
39 #include "AFSCommon.h"
40
41 //
42 // Function: AFSClose
43 //
44 // Description:
45 //
46 //      This function is the IRP_MJ_CLOSE dispatch handler
47 //
48 // Return:
49 //
50 //       A status is returned for the handling of this request
51 //
52
53 NTSTATUS
54 AFSClose( IN PDEVICE_OBJECT DeviceObject,
55           IN PIRP Irp)
56 {
57
58     NTSTATUS ntStatus = STATUS_SUCCESS;
59
60     __try
61     {
62
63         if( DeviceObject == AFSDeviceObject)
64         {
65
66             AFSCompleteRequest( Irp,
67                                 ntStatus);
68
69             try_return( ntStatus);
70         }
71
72         ntStatus = AFSCommonClose( DeviceObject,
73                                    Irp);
74
75 try_exit:
76
77         NOTHING;
78     }
79     __except( AFSExceptionFilter( __FUNCTION__, GetExceptionCode(), GetExceptionInformation()) )
80     {
81
82         AFSDbgLogMsg( 0,
83                       0,
84                       "EXCEPTION - AFSClose\n");
85
86         AFSDumpTraceFilesFnc();
87     }
88
89     return ntStatus;
90 }
91
92 NTSTATUS
93 AFSCommonClose( IN PDEVICE_OBJECT DeviceObject,
94                 IN PIRP Irp)
95 {
96
97     NTSTATUS ntStatus = STATUS_SUCCESS;
98     ULONG ulRequestType = 0;
99     IO_STACK_LOCATION *pIrpSp = IoGetCurrentIrpStackLocation( Irp);
100     AFSDeviceExt *pDeviceExt = NULL;
101     AFSDeviceExt *pControlDeviceExt = (AFSDeviceExt *)AFSDeviceObject->DeviceExtension;
102     AFSFcb* pFcb = NULL;
103
104     __Enter
105     {
106
107         pDeviceExt = (AFSDeviceExt *)DeviceObject->DeviceExtension;
108
109         pIrpSp = IoGetCurrentIrpStackLocation( Irp);
110
111         pFcb = (AFSFcb*) pIrpSp->FileObject->FsContext;
112
113         if( pFcb == NULL ||
114             pFcb->Header.NodeTypeCode == AFS_REDIRECTOR_FCB)
115         {
116
117             AFSCompleteRequest( Irp, ntStatus);
118
119             try_return( ntStatus);
120         }
121
122         //
123         // Check the state of the library
124         //
125
126         ntStatus = AFSCheckLibraryState( Irp);
127
128         if( !NT_SUCCESS( ntStatus) ||
129             ntStatus == STATUS_PENDING)
130         {
131
132             if( ntStatus != STATUS_PENDING)
133             {
134                 AFSCompleteRequest( Irp, ntStatus);
135             }
136
137             try_return( ntStatus);
138         }
139
140         IoSkipCurrentIrpStackLocation( Irp);
141
142         ntStatus = IoCallDriver( pControlDeviceExt->Specific.Control.LibraryDeviceObject,
143                                  Irp);
144
145         //
146         // Indicate the library is done with the request
147         //
148
149         AFSClearLibraryRequest();
150
151 try_exit:
152
153         NOTHING;
154     }
155
156     return ntStatus;
157 }