00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
#include "UdfProcs.h"
00023
00024
00025
00026
00027
00028 #define BugCheckFileId (UDFS_BUG_CHECK_CLEANUP)
00029
00030
00031
00032
00033
00034 #define Dbg (UDFS_DEBUG_LEVEL_CLEANUP)
00035
00036
#ifdef ALLOC_PRAGMA
00037
#pragma alloc_text(PAGE, UdfCommonCleanup)
00038
#endif
00039
00040
00041
NTSTATUS
00042 UdfCommonCleanup (
00043 IN
PIRP_CONTEXT IrpContext,
00044 IN
PIRP Irp
00045 )
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095 {
00096
PFILE_OBJECT FileObject;
00097
TYPE_OF_OPEN TypeOfOpen;
00098
00099 BOOLEAN SendUnlockNotification =
FALSE;
00100 BOOLEAN AttemptTeardown;
00101
00102
PVCB Vcb;
00103
PFCB Fcb;
00104
PCCB Ccb;
00105
00106
PAGED_CODE();
00107
00108
ASSERT_IRP_CONTEXT( IrpContext );
00109
ASSERT_IRP(
Irp );
00110
00111
00112
00113
00114
00115
00116
if (IrpContext->Vcb ==
NULL) {
00117
00118
UdfCompleteRequest( IrpContext,
Irp, STATUS_SUCCESS );
00119
return STATUS_SUCCESS;
00120 }
00121
00122
00123
00124
00125
00126 FileObject =
IoGetCurrentIrpStackLocation(
Irp )->FileObject;
00127
00128 TypeOfOpen =
UdfDecodeFileObject( FileObject,
00129 &Fcb,
00130 &Ccb );
00131
00132
00133
00134
00135
00136
if (TypeOfOpen <=
StreamFileOpen) {
00137
00138
UdfCompleteRequest( IrpContext,
Irp, STATUS_SUCCESS );
00139
00140
return STATUS_SUCCESS;
00141 }
00142
00143
00144
00145
00146
00147 Vcb = Fcb->
Vcb;
00148
00149
00150
00151
00152
00153
UdfAcquireFcbExclusive( IrpContext, Fcb,
FALSE );
00154
00155
00156
00157
00158
00159
try {
00160
00161
00162
00163
00164
00165
SetFlag( FileObject->
Flags,
FO_CLEANUP_COMPLETE );
00166
00167
00168
00169
00170
00171
switch (TypeOfOpen) {
00172
00173
case UserDirectoryOpen:
00174
00175
DebugTrace(( +1,
Dbg,
00176
"UdfCommonCleanup, Fcb %08x FO %08x DIR\n",
00177 Fcb,
00178 FileObject ));
00179
00180
00181
00182
00183
00184
FsRtlNotifyCleanup( Vcb->
NotifySync,
00185 &Vcb->
DirNotifyList,
00186 Ccb );
00187
00188
break;
00189
00190
case UserFileOpen:
00191
00192
DebugTrace(( +1,
Dbg,
00193
"UdfCommonCleanup, Fcb %08x FO %08x FILE\n",
00194 Fcb,
00195 FileObject ));
00196
00197
00198
00199
00200
00201
00202
00203
FsRtlCheckOplock( &Fcb->Oplock,
00204
Irp,
00205 IrpContext,
00206
NULL,
00207
NULL );
00208
00209
00210
00211
00212
00213
if (Fcb->FileLock !=
NULL) {
00214
00215
FsRtlFastUnlockAll( Fcb->FileLock,
00216 FileObject,
00217
IoGetRequestorProcess(
Irp ),
00218
NULL );
00219 }
00220
00221
00222
00223
00224
00225
CcUninitializeCacheMap( FileObject,
NULL,
NULL );
00226
00227
00228
00229
00230
00231
UdfLockFcb( IrpContext, Fcb );
00232 Fcb->IsFastIoPossible =
UdfIsFastIoPossible( Fcb );
00233
UdfUnlockFcb( IrpContext, Fcb );
00234
00235
break;
00236
00237
case UserVolumeOpen :
00238
00239
DebugTrace(( +1,
Dbg,
00240
"UdfCommonCleanup, Fcb %08x FO %08x VOL\n",
00241 Fcb,
00242 FileObject ));
00243
00244
break;
00245
00246
default :
00247
00248
UdfBugCheck( TypeOfOpen, 0, 0 );
00249 }
00250
00251
00252
00253
00254
00255
00256
UdfLockVcb( IrpContext, Vcb );
00257
00258
00259
00260
00261
00262
UdfDecrementCleanupCounts( IrpContext, Fcb );
00263
00264
00265
00266
00267
00268
00269 AttemptTeardown = (Vcb->
VcbCleanup == 0 && Vcb->
VcbCondition ==
VcbNotMounted);
00270
00271
00272
00273
00274
00275
if (FileObject == Vcb->
VolumeLockFileObject) {
00276
00277
ClearFlag( Vcb->
VcbState,
VCB_STATE_LOCKED );
00278 Vcb->
VolumeLockFileObject =
NULL;
00279 SendUnlockNotification =
TRUE;
00280 }
00281
00282
UdfUnlockVcb( IrpContext, Vcb );
00283
00284
00285
00286
00287
00288
00289
00290
IoRemoveShareAccess( FileObject, &Fcb->
ShareAccess );
00291
00292 } finally {
00293
00294
UdfReleaseFcb( IrpContext, Fcb );
00295
00296
if (SendUnlockNotification) {
00297
00298
FsRtlNotifyVolumeEvent( FileObject,
FSRTL_VOLUME_UNLOCK );
00299 }
00300 }
00301
00302
DebugTrace(( -1,
Dbg,
00303
"UdfCommonCleanup, Fcb %08x FO %08x -> SUCCESS\n",
00304 Fcb,
00305 FileObject ));
00306
00307
00308
00309
00310
00311
00312
00313
if (AttemptTeardown) {
00314
00315
UdfAcquireVcbExclusive( IrpContext, Vcb,
FALSE );
00316
00317
try {
00318
00319
UdfPurgeVolume( IrpContext, Vcb,
FALSE );
00320
00321 } finally {
00322
00323
UdfReleaseVcb( IrpContext, Vcb );
00324 }
00325 }
00326
00327
00328
00329
00330
00331
UdfCompleteRequest( IrpContext,
Irp, STATUS_SUCCESS );
00332
00333
return STATUS_SUCCESS;
00334 }
00335