Sample Code
windows driver samples/ cdfs file system driver/ C++/ workque.c/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | /*++ Copyright (c) 1989-2000 Microsoft Corporation Module Name: WorkQue.c Abstract: This module implements the Work queue routines for the Cdfs File system. --*/ #include "CdProcs.h" // // The Bug check file id for this module // #define BugCheckFileId (CDFS_BUG_CHECK_WORKQUE) // // The following constant is the maximum number of ExWorkerThreads that we // will allow to be servicing a particular target device at any one time. // #define FSP_PER_DEVICE_THRESHOLD (2) // // Local support routines // VOID CdAddToWorkque ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ); #ifdef ALLOC_PRAGMA #pragma alloc_text(PAGE, CdFsdPostRequest) #pragma alloc_text(PAGE, CdOplockComplete) #pragma alloc_text(PAGE, CdPrePostIrp) #endif
_Requires_lock_held_(_Global_critical_region_) NTSTATUS CdFsdPostRequest ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ) /*++ Routine Description: This routine enqueues the request packet specified by IrpContext to the work queue associated with the FileSystemDeviceObject. This is a FSD routine. Arguments: IrpContext - Pointer to the IrpContext to be queued to the Fsp. Irp - I/O Request Packet. Return Value: STATUS_PENDING --*/ { PAGED_CODE(); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_IRP( Irp ); // // Posting is a three step operation. First lock down any buffers // in the Irp. Next cleanup the IrpContext for the post and finally // add this to a workque. // CdPrePostIrp( IrpContext, Irp ); CdAddToWorkque( IrpContext, Irp ); // // And return to our caller // return STATUS_PENDING; }
_Requires_lock_held_(_Global_critical_region_) VOID CdPrePostIrp ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ) /*++ Routine Description: This routine performs any neccessary work before STATUS_PENDING is returned with the Fsd thread. This routine is called within the filesystem and by the oplock package. Arguments: Context - Pointer to the IrpContext to be queued to the Fsp Irp - I/O Request Packet. Return Value: None. --*/ { PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation( Irp ); BOOLEAN RemovedFcb; PAGED_CODE(); ASSERT_IRP_CONTEXT( IrpContext ); ASSERT_IRP( Irp ); // // Case on the type of the operation. // switch (IrpContext->MajorFunction) { case IRP_MJ_CREATE : // // If called from the oplock package then there is an // Fcb to possibly teardown. We will call the teardown // routine and release the Fcb if still present. The cleanup // code in create will know not to release this Fcb because // we will clear the pointer. // if ((IrpContext->TeardownFcb != NULL) && *(IrpContext->TeardownFcb) != NULL) { CdTeardownStructures( IrpContext, *(IrpContext->TeardownFcb), &RemovedFcb ); if (!RemovedFcb) { _Analysis_assume_lock_held_((*IrpContext->TeardownFcb)->FcbNonpaged->FcbResource); CdReleaseFcb( IrpContext, *(IrpContext->TeardownFcb) ); } *(IrpContext->TeardownFcb) = NULL; IrpContext->TeardownFcb = NULL; } break ; // // We need to lock the user's buffer, unless this is an MDL read/write, // in which case there is no user buffer. // case IRP_MJ_READ : if (!FlagOn( IrpContext->MinorFunction, IRP_MN_MDL )) { CdLockUserBuffer( IrpContext, IrpSp->Parameters.Read.Length, IoWriteAccess ); } break ; case IRP_MJ_WRITE : if (!FlagOn( IrpContext->MinorFunction, IRP_MN_MDL )) { CdLockUserBuffer( IrpContext, IrpSp->Parameters.Read.Length, IoReadAccess ); } break ; // // We also need to check whether this is a query file operation. // case IRP_MJ_DIRECTORY_CONTROL : if (IrpContext->MinorFunction == IRP_MN_QUERY_DIRECTORY) { CdLockUserBuffer( IrpContext, IrpSp->Parameters.QueryDirectory.Length, IoWriteAccess ); } break ; } // // Cleanup the IrpContext for the post. // SetFlag( IrpContext->Flags, IRP_CONTEXT_FLAG_MORE_PROCESSING ); CdCleanupIrpContext( IrpContext, TRUE ); // // Mark the Irp to show that we've already returned pending to the user. // IoMarkIrpPending( Irp ); return ; }
_Requires_lock_held_(_Global_critical_region_) VOID CdOplockComplete ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ) /*++ Routine Description: This routine is called by the oplock package when an oplock break has completed, allowing an Irp to resume execution. If the status in the Irp is STATUS_SUCCESS, then we queue the Irp to the Fsp queue. Otherwise we complete the Irp with the status in the Irp. If we are completing due to an error then check if there is any cleanup to do. Arguments: Irp - I/O Request Packet. Return Value: None. --*/ { BOOLEAN RemovedFcb; PAGED_CODE(); // // Check on the return value in the Irp. If success then we // are to post this request. // if (Irp->IoStatus.Status == STATUS_SUCCESS) { // // Check if there is any cleanup work to do. // switch (IrpContext->MajorFunction) { case IRP_MJ_CREATE : // // If called from the oplock package then there is an // Fcb to possibly teardown. We will call the teardown // routine and release the Fcb if still present. The cleanup // code in create will know not to release this Fcb because // we will clear the pointer. // if (IrpContext->TeardownFcb != NULL) { CdTeardownStructures( IrpContext, *(IrpContext->TeardownFcb), &RemovedFcb ); if (!RemovedFcb) { _Analysis_assume_lock_held_((*IrpContext->TeardownFcb)->FcbNonpaged->FcbResource); CdReleaseFcb( IrpContext, *(IrpContext->TeardownFcb) ); } *(IrpContext->TeardownFcb) = NULL; IrpContext->TeardownFcb = NULL; } break ; } // // Insert the Irp context in the workqueue. // CdAddToWorkque( IrpContext, Irp ); // // Otherwise complete the request. // } else { CdCompleteRequest( IrpContext, Irp, Irp->IoStatus.Status ); } return ; }
// // Local support routine // VOID CdAddToWorkque ( _Inout_ PIRP_CONTEXT IrpContext, _Inout_ PIRP Irp ) /*++ Routine Description: This routine is called to acually store the posted Irp to the Fsp workque. Arguments: IrpContext - Pointer to the IrpContext to be queued to the Fsp Irp - I/O Request Packet. Return Value: None. --*/ { PVOLUME_DEVICE_OBJECT Vdo; KIRQL SavedIrql; PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation( Irp ); // // Check if this request has an associated file object, and thus volume // device object. // if (IrpSp->FileObject != NULL) { Vdo = CONTAINING_RECORD( IrpSp->DeviceObject, VOLUME_DEVICE_OBJECT, DeviceObject ); // // Check to see if this request should be sent to the overflow // queue. If not, then send it off to an exworker thread. // KeAcquireSpinLock( &Vdo->OverflowQueueSpinLock, &SavedIrql ); if (Vdo->PostedRequestCount > FSP_PER_DEVICE_THRESHOLD) { // // We cannot currently respond to this IRP so we'll just enqueue it // to the overflow queue on the volume. // InsertTailList( &Vdo->OverflowQueue, &IrpContext->WorkQueueItem.List ); Vdo->OverflowQueueCount += 1; KeReleaseSpinLock( &Vdo->OverflowQueueSpinLock, SavedIrql ); return ; } else { // // We are going to send this Irp to an ex worker thread so up // the count. // Vdo->PostedRequestCount += 1; KeReleaseSpinLock( &Vdo->OverflowQueueSpinLock, SavedIrql ); } } // // Send it off..... // #pragma prefast(suppress:28155, "the function prototype is correct") ExInitializeWorkItem( &IrpContext->WorkQueueItem, CdFspDispatch, IrpContext ); #pragma prefast(suppress: 28159, "prefast believes this routine is obsolete, but it is ok for CDFS to continue using it") ExQueueWorkItem( &IrpContext->WorkQueueItem, CriticalWorkQueue ); return ; } |
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials