2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/io/iomgr/irp.c
5 * PURPOSE: IRP Handling Functions
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
8 * Filip Navara (navaraf@reactos.org)
11 /* INCLUDES ****************************************************************/
19 /* PRIVATE FUNCTIONS ********************************************************/
23 IopFreeIrpKernelApc(IN PKAPC Apc
,
24 IN PKNORMAL_ROUTINE
*NormalRoutine
,
25 IN PVOID
*NormalContext
,
26 IN PVOID
*SystemArgument1
,
27 IN PVOID
*SystemArgument2
)
30 IoFreeIrp(CONTAINING_RECORD(Apc
, IRP
, Tail
.Apc
));
35 IopAbortIrpKernelApc(IN PKAPC Apc
)
38 IoFreeIrp(CONTAINING_RECORD(Apc
, IRP
, Tail
.Apc
));
43 IopCleanupFailedIrp(IN PFILE_OBJECT FileObject
,
44 IN PKEVENT EventObject OPTIONAL
,
45 IN PVOID Buffer OPTIONAL
)
49 /* Dereference the event */
50 if (EventObject
) ObDereferenceObject(EventObject
);
52 /* Free a buffer, if any */
53 if (Buffer
) ExFreePool(Buffer
);
55 /* If this was a file opened for synch I/O, then unlock it */
56 if (FileObject
->Flags
& FO_SYNCHRONOUS_IO
) IopUnlockFileObject(FileObject
);
58 /* Now dereference it and return */
59 ObDereferenceObject(FileObject
);
60 return STATUS_INSUFFICIENT_RESOURCES
;
65 IopAbortInterruptedIrp(IN PKEVENT EventObject
,
73 /* Raise IRQL to APC */
74 KeRaiseIrql(APC_LEVEL
, &OldIrql
);
76 /* Check if nobody completed it yet */
77 if (!KeReadStateEvent(EventObject
))
79 /* First, cancel it */
80 CancelResult
= IoCancelIrp(Irp
);
83 /* Check if we cancelled it */
86 /* Wait for the IRP to be cancelled */
87 Wait
.QuadPart
= -100000;
88 while (!KeReadStateEvent(EventObject
))
90 /* Delay indefintely */
91 KeDelayExecutionThread(KernelMode
, FALSE
, &Wait
);
96 /* No cancellation done, so wait for the I/O system to kill it */
97 KeWaitForSingleObject(EventObject
,
106 /* We got preempted, so give up */
107 KeLowerIrql(OldIrql
);
113 IopDisassociateThreadIrp(VOID
)
115 KIRQL OldIrql
, LockIrql
;
117 PLIST_ENTRY IrpEntry
;
118 PIO_ERROR_LOG_PACKET ErrorLogEntry
;
119 PDEVICE_OBJECT DeviceObject
= NULL
;
120 PIO_STACK_LOCATION IoStackLocation
;
122 /* First, raise to APC to protect IrpList */
123 KeRaiseIrql(APC_LEVEL
, &OldIrql
);
125 /* Get the Thread and check the list */
126 IrpThread
= PsGetCurrentThread();
127 if (IsListEmpty(&IrpThread
->IrpList
))
129 /* It got completed now, so quit */
130 KeLowerIrql(OldIrql
);
134 /* Ensure no one will come disturb */
135 LockIrql
= KeAcquireQueuedSpinLock(LockQueueIoCompletionLock
);
137 /* Get the misbehaving IRP */
138 IrpEntry
= IrpThread
->IrpList
.Flink
;
139 IopDeadIrp
= CONTAINING_RECORD(IrpEntry
, IRP
, ThreadListEntry
);
140 IOTRACE(IO_IRP_DEBUG
,
141 "%s - Deassociating IRP %p for %p\n",
146 /* Don't cancel the IRP if it's already been completed far */
147 if (IopDeadIrp
->CurrentLocation
== (IopDeadIrp
->StackCount
+ 2))
150 KeReleaseQueuedSpinLock(LockQueueIoCompletionLock
, LockIrql
);
151 KeLowerIrql(OldIrql
);
155 /* Disown the IRP! */
156 IopDeadIrp
->Tail
.Overlay
.Thread
= NULL
;
157 RemoveHeadList(&IrpThread
->IrpList
);
158 InitializeListHead(&IopDeadIrp
->ThreadListEntry
);
160 /* Get the stack location and check if it's valid */
161 IoStackLocation
= IoGetCurrentIrpStackLocation(IopDeadIrp
);
162 if (IopDeadIrp
->CurrentLocation
<= IopDeadIrp
->StackCount
)
164 /* Get the device object */
165 DeviceObject
= IoStackLocation
->DeviceObject
;
168 KeReleaseQueuedSpinLock(LockQueueIoCompletionLock
, LockIrql
);
169 /* Lower IRQL now, since we have the pointers we need */
170 KeLowerIrql(OldIrql
);
172 /* Check if we can send an Error Log Entry*/
175 /* Allocate an entry */
176 ErrorLogEntry
= IoAllocateErrorLogEntry(DeviceObject
,
177 sizeof(IO_ERROR_LOG_PACKET
));
180 /* Write the entry */
181 ErrorLogEntry
->ErrorCode
= IO_DRIVER_CANCEL_TIMEOUT
;
182 IoWriteErrorLogEntry(ErrorLogEntry
);
189 IopCleanupIrp(IN PIRP Irp
,
190 IN PFILE_OBJECT FileObject
)
193 IOTRACE(IO_IRP_DEBUG
,
194 "%s - Cleaning IRP %p for %p\n",
199 /* Check if there's an MDL */
200 while ((Mdl
= Irp
->MdlAddress
))
202 /* Clear all of them */
203 Irp
->MdlAddress
= Mdl
->Next
;
207 /* Check if the IRP has system buffer */
208 if (Irp
->Flags
& IRP_DEALLOCATE_BUFFER
)
210 /* Free the buffer */
211 ExFreePoolWithTag(Irp
->AssociatedIrp
.SystemBuffer
, TAG_SYS_BUF
);
214 /* Check if this IRP has a user event, a file object, and is async */
215 if ((Irp
->UserEvent
) &&
216 !(Irp
->Flags
& IRP_SYNCHRONOUS_API
) &&
219 /* Dereference the User Event */
220 ObDereferenceObject(Irp
->UserEvent
);
223 /* Check if we have a file object and this isn't a create operation */
224 if ((FileObject
) && !(Irp
->Flags
& IRP_CREATE_OPERATION
))
226 /* Dereference the file object */
227 ObDereferenceObject(FileObject
);
236 IopCompleteRequest(IN PKAPC Apc
,
237 IN PKNORMAL_ROUTINE
* NormalRoutine
,
238 IN PVOID
* NormalContext
,
239 IN PVOID
* SystemArgument1
,
240 IN PVOID
* SystemArgument2
)
242 PFILE_OBJECT FileObject
;
245 PVOID Port
= NULL
, Key
= NULL
;
246 BOOLEAN SignaledCreateRequest
= FALSE
;
248 /* Get data from the APC */
249 FileObject
= (PFILE_OBJECT
)*SystemArgument1
;
250 Irp
= CONTAINING_RECORD(Apc
, IRP
, Tail
.Apc
);
251 IOTRACE(IO_IRP_DEBUG
,
252 "%s - Completing IRP %p for %p\n",
258 ASSERT(Irp
->IoStatus
.Status
!= (NTSTATUS
)0xFFFFFFFF);
260 /* Check if we have a file object */
261 if (*SystemArgument2
)
263 /* Check if we're reparsing */
264 if ((Irp
->IoStatus
.Status
== STATUS_REPARSE
) &&
265 (Irp
->IoStatus
.Information
== IO_REPARSE_TAG_MOUNT_POINT
))
267 /* We should never get this yet */
268 UNIMPLEMENTED_DBGBREAK("Reparse support not yet present!\n");
273 /* Handle Buffered case first */
274 if (Irp
->Flags
& IRP_BUFFERED_IO
)
276 /* Check if we have an input buffer and if we succeeded */
277 if ((Irp
->Flags
& IRP_INPUT_OPERATION
) &&
278 (Irp
->IoStatus
.Status
!= STATUS_VERIFY_REQUIRED
) &&
279 !(NT_ERROR(Irp
->IoStatus
.Status
)))
281 /* Copy the buffer back to the user */
282 RtlCopyMemory(Irp
->UserBuffer
,
283 Irp
->AssociatedIrp
.SystemBuffer
,
284 Irp
->IoStatus
.Information
);
287 /* Also check if we should de-allocate it */
288 if (Irp
->Flags
& IRP_DEALLOCATE_BUFFER
)
291 ExFreePool(Irp
->AssociatedIrp
.SystemBuffer
);
295 /* Now we got rid of these two... */
296 Irp
->Flags
&= ~(IRP_BUFFERED_IO
| IRP_DEALLOCATE_BUFFER
);
298 /* Check if there's an MDL */
299 for (Mdl
= Irp
->MdlAddress
; Mdl
; Mdl
= NextMdl
)
307 Irp
->MdlAddress
= NULL
;
310 * Check if either the request was completed without any errors
311 * (but warnings are OK!), or if it was completed with an error, but
312 * did return from a pending I/O Operation and is not synchronous.
314 if (!(NT_ERROR(Irp
->IoStatus
.Status
)) ||
315 (NT_ERROR(Irp
->IoStatus
.Status
) &&
316 (Irp
->PendingReturned
) &&
317 !(IsIrpSynchronous(Irp
, FileObject
))))
319 /* Get any information we need from the FO before we kill it */
320 if ((FileObject
) && (FileObject
->CompletionContext
))
322 /* Save Completion Data */
323 Port
= FileObject
->CompletionContext
->Port
;
324 Key
= FileObject
->CompletionContext
->Key
;
327 /* Use SEH to make sure we don't write somewhere invalid */
330 /* Save the IOSB Information */
331 *Irp
->UserIosb
= Irp
->IoStatus
;
333 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
335 /* Ignore any error */
339 /* Check if we have an event or a file object */
342 /* At the very least, this is a PKEVENT, so signal it always */
343 KeSetEvent(Irp
->UserEvent
, 0, FALSE
);
345 /* Check if we also have a File Object */
348 /* Check if this is an Asynch API */
349 if (!(Irp
->Flags
& IRP_SYNCHRONOUS_API
))
351 /* Dereference the event */
352 ObDereferenceObject(Irp
->UserEvent
);
356 * Now, if this is a Synch I/O File Object, then this event is
357 * NOT an actual Executive Event, so we won't dereference it,
358 * and instead, we will signal the File Object
360 if ((FileObject
->Flags
& FO_SYNCHRONOUS_IO
) &&
361 !(Irp
->Flags
& IRP_OB_QUERY_NAME
))
363 /* Signal the file object and set the status */
364 KeSetEvent(&FileObject
->Event
, 0, FALSE
);
365 FileObject
->FinalStatus
= Irp
->IoStatus
.Status
;
369 * This could also be a create operation, in which case we want
370 * to make sure there's no APC fired.
372 if (Irp
->Flags
& IRP_CREATE_OPERATION
)
374 /* Clear the APC Routine and remember this */
375 Irp
->Overlay
.AsynchronousParameters
.UserApcRoutine
= NULL
;
376 SignaledCreateRequest
= TRUE
;
382 /* Signal the file object and set the status */
383 KeSetEvent(&FileObject
->Event
, 0, FALSE
);
384 FileObject
->FinalStatus
= Irp
->IoStatus
.Status
;
387 * This could also be a create operation, in which case we want
388 * to make sure there's no APC fired.
390 if (Irp
->Flags
& IRP_CREATE_OPERATION
)
392 /* Clear the APC Routine and remember this */
393 Irp
->Overlay
.AsynchronousParameters
.UserApcRoutine
= NULL
;
394 SignaledCreateRequest
= TRUE
;
398 /* Update transfer count for everything but create operation */
399 if (!(Irp
->Flags
& IRP_CREATE_OPERATION
))
401 if (Irp
->Flags
& IRP_WRITE_OPERATION
)
403 /* Update write transfer count */
404 IopUpdateTransferCount(IopWriteTransfer
,
405 (ULONG
)Irp
->IoStatus
.Information
);
407 else if (Irp
->Flags
& IRP_READ_OPERATION
)
409 /* Update read transfer count */
410 IopUpdateTransferCount(IopReadTransfer
,
411 (ULONG
)Irp
->IoStatus
.Information
);
415 /* Update other transfer count */
416 IopUpdateTransferCount(IopOtherTransfer
,
417 (ULONG
)Irp
->IoStatus
.Information
);
421 /* Now that we've signaled the events, de-associate the IRP */
422 IopUnQueueIrpFromThread(Irp
);
424 /* Now check if a User APC Routine was requested */
425 if (Irp
->Overlay
.AsynchronousParameters
.UserApcRoutine
)
428 KeInitializeApc(&Irp
->Tail
.Apc
,
429 KeGetCurrentThread(),
430 CurrentApcEnvironment
,
432 IopAbortIrpKernelApc
,
433 (PKNORMAL_ROUTINE
)Irp
->
434 Overlay
.AsynchronousParameters
.UserApcRoutine
,
437 Overlay
.AsynchronousParameters
.UserApcContext
);
440 KeInsertQueueApc(&Irp
->Tail
.Apc
, Irp
->UserIosb
, NULL
, 2);
443 (Irp
->Overlay
.AsynchronousParameters
.UserApcContext
))
445 /* We have an I/O Completion setup... create the special Overlay */
446 Irp
->Tail
.CompletionKey
= Key
;
447 Irp
->Tail
.Overlay
.PacketType
= IopCompletionPacketIrp
;
448 KeInsertQueue(Port
, &Irp
->Tail
.Overlay
.ListEntry
);
452 /* Free the IRP since we don't need it anymore */
456 /* Check if we have a file object that wasn't part of a create */
457 if ((FileObject
) && !(SignaledCreateRequest
))
459 /* Dereference it, since it's not needed anymore either */
460 ObDereferenceObjectDeferDelete(FileObject
);
466 * Either we didn't return from the request, or we did return but this
467 * request was synchronous.
469 if ((Irp
->PendingReturned
) && (FileObject
))
471 /* So we did return with a synch operation, was it the IRP? */
472 if (Irp
->Flags
& IRP_SYNCHRONOUS_API
)
474 /* Yes, this IRP was synchronous, so return the I/O Status */
475 *Irp
->UserIosb
= Irp
->IoStatus
;
477 /* Now check if the user gave an event */
481 KeSetEvent(Irp
->UserEvent
, 0, FALSE
);
485 /* No event was given, so signal the FO instead */
486 KeSetEvent(&FileObject
->Event
, 0, FALSE
);
492 * It's not the IRP that was synchronous, it was the FO
493 * that was opened this way. Signal its event.
495 FileObject
->FinalStatus
= Irp
->IoStatus
.Status
;
496 KeSetEvent(&FileObject
->Event
, 0, FALSE
);
500 /* Now that we got here, we do this for incomplete I/Os as well */
501 if ((FileObject
) && !(Irp
->Flags
& IRP_CREATE_OPERATION
))
503 /* Dereference the File Object unless this was a create */
504 ObDereferenceObjectDeferDelete(FileObject
);
508 * Check if this was an Executive Event (remember that we know this
509 * by checking if the IRP is synchronous)
511 if ((Irp
->UserEvent
) &&
513 !(Irp
->Flags
& IRP_SYNCHRONOUS_API
))
515 /* This isn't a PKEVENT, so dereference it */
516 ObDereferenceObject(Irp
->UserEvent
);
519 /* Now that we've signaled the events, de-associate the IRP */
520 IopUnQueueIrpFromThread(Irp
);
522 /* Free the IRP as well */
527 /* FUNCTIONS *****************************************************************/
534 IoAllocateIrp(IN CCHAR StackSize
,
535 IN BOOLEAN ChargeQuota
)
538 USHORT Size
= IoSizeOfIrp(StackSize
);
541 PNPAGED_LOOKASIDE_LIST List
= NULL
;
542 PP_NPAGED_LOOKASIDE_NUMBER ListType
= LookasideSmallIrpList
;
544 /* Set Charge Quota Flag */
545 if (ChargeQuota
) Flags
|= IRP_QUOTA_CHARGED
;
547 /* FIXME: Implement Lookaside Floats */
549 /* Figure out which Lookaside List to use */
550 if ((StackSize
<= 8) && (ChargeQuota
== FALSE
))
552 /* Set Fixed Size Flag */
553 Flags
= IRP_ALLOCATED_FIXED_SIZE
;
555 /* See if we should use big list */
558 Size
= IoSizeOfIrp(8);
559 ListType
= LookasideLargeIrpList
;
563 Prcb
= KeGetCurrentPrcb();
565 /* Get the P List First */
566 List
= (PNPAGED_LOOKASIDE_LIST
)Prcb
->PPLookasideList
[ListType
].P
;
568 /* Attempt allocation */
569 List
->L
.TotalAllocates
++;
570 Irp
= (PIRP
)InterlockedPopEntrySList(&List
->L
.ListHead
);
572 /* Check if the P List failed */
575 /* Let the balancer know */
576 List
->L
.AllocateMisses
++;
579 List
= (PNPAGED_LOOKASIDE_LIST
)Prcb
->PPLookasideList
[ListType
].L
;
580 List
->L
.TotalAllocates
++;
581 Irp
= (PIRP
)InterlockedPopEntrySList(&List
->L
.ListHead
);
585 /* Check if we have to use the pool */
588 /* Did we try lookaside and fail? */
589 if (Flags
& IRP_ALLOCATED_FIXED_SIZE
) List
->L
.AllocateMisses
++;
591 /* Check if we should charge quota */
594 Irp
= ExAllocatePoolWithQuotaTag(NonPagedPool
, Size
, TAG_IRP
);
598 /* Allocate the IRP With no Quota charge */
599 Irp
= ExAllocatePoolWithTag(NonPagedPool
, Size
, TAG_IRP
);
602 /* Make sure it was sucessful */
603 if (!Irp
) return(NULL
);
607 /* In this case there is no charge quota */
608 Flags
&= ~IRP_QUOTA_CHARGED
;
611 /* Now Initialize it */
612 IoInitializeIrp(Irp
, Size
, StackSize
);
614 /* Set the Allocation Flags */
615 Irp
->AllocationFlags
= Flags
;
618 IOTRACE(IO_IRP_DEBUG
,
619 "%s - Allocated IRP %p with allocation flags %lx\n",
631 IopAllocateIrpMustSucceed(IN CCHAR StackSize
)
637 /* Try to get an IRP */
638 Irp
= IoAllocateIrp(StackSize
, FALSE
);
642 /* If we fail, start looping till we may get one */
647 /* First, sleep for 10ms */
648 Sleep
.QuadPart
= -10 * 1000 * 10;;
649 KeDelayExecutionThread(KernelMode
, FALSE
, &Sleep
);
651 /* Then, retry allocation */
652 Irp
= IoAllocateIrp(StackSize
, FALSE
);
665 IoBuildAsynchronousFsdRequest(IN ULONG MajorFunction
,
666 IN PDEVICE_OBJECT DeviceObject
,
669 IN PLARGE_INTEGER StartingOffset
,
670 IN PIO_STATUS_BLOCK IoStatusBlock
)
673 PIO_STACK_LOCATION StackPtr
;
676 Irp
= IoAllocateIrp(DeviceObject
->StackSize
, FALSE
);
677 if (!Irp
) return NULL
;
680 StackPtr
= IoGetNextIrpStackLocation(Irp
);
682 /* Write the Major function and then deal with it */
683 StackPtr
->MajorFunction
= (UCHAR
)MajorFunction
;
685 /* Do not handle the following here */
686 if ((MajorFunction
!= IRP_MJ_FLUSH_BUFFERS
) &&
687 (MajorFunction
!= IRP_MJ_SHUTDOWN
) &&
688 (MajorFunction
!= IRP_MJ_PNP
) &&
689 (MajorFunction
!= IRP_MJ_POWER
))
691 /* Check if this is Buffered IO */
692 if (DeviceObject
->Flags
& DO_BUFFERED_IO
)
694 /* Allocate the System Buffer */
695 Irp
->AssociatedIrp
.SystemBuffer
=
696 ExAllocatePoolWithTag(NonPagedPool
, Length
, TAG_SYS_BUF
);
697 if (!Irp
->AssociatedIrp
.SystemBuffer
)
699 /* Free the IRP and fail */
705 Irp
->Flags
= IRP_BUFFERED_IO
| IRP_DEALLOCATE_BUFFER
;
707 /* Handle special IRP_MJ_WRITE Case */
708 if (MajorFunction
== IRP_MJ_WRITE
)
710 /* Copy the buffer data */
711 RtlCopyMemory(Irp
->AssociatedIrp
.SystemBuffer
, Buffer
, Length
);
715 /* Set the Input Operation flag and set this as a User Buffer */
716 Irp
->Flags
|= IRP_INPUT_OPERATION
;
717 Irp
->UserBuffer
= Buffer
;
720 else if (DeviceObject
->Flags
& DO_DIRECT_IO
)
722 /* Use an MDL for Direct I/O */
723 Irp
->MdlAddress
= IoAllocateMdl(Buffer
,
728 if (!Irp
->MdlAddress
)
730 /* Free the IRP and fail */
739 MmProbeAndLockPages(Irp
->MdlAddress
,
741 MajorFunction
== IRP_MJ_READ
?
742 IoWriteAccess
: IoReadAccess
);
744 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
746 /* Free the IRP and its MDL */
747 IoFreeMdl(Irp
->MdlAddress
);
751 _SEH2_YIELD(return NULL
);
757 /* Neither, use the buffer */
758 Irp
->UserBuffer
= Buffer
;
761 /* Check if this is a read */
762 if (MajorFunction
== IRP_MJ_READ
)
764 /* Set the parameters for a read */
765 StackPtr
->Parameters
.Read
.Length
= Length
;
766 StackPtr
->Parameters
.Read
.ByteOffset
= *StartingOffset
;
768 else if (MajorFunction
== IRP_MJ_WRITE
)
770 /* Otherwise, set write parameters */
771 StackPtr
->Parameters
.Write
.Length
= Length
;
772 StackPtr
->Parameters
.Write
.ByteOffset
= *StartingOffset
;
776 /* Set the Current Thread and IOSB */
777 Irp
->UserIosb
= IoStatusBlock
;
778 Irp
->Tail
.Overlay
.Thread
= PsGetCurrentThread();
781 IOTRACE(IO_IRP_DEBUG
,
782 "%s - Built IRP %p with Major, Buffer, DO %lx %p %p\n",
796 IoBuildDeviceIoControlRequest(IN ULONG IoControlCode
,
797 IN PDEVICE_OBJECT DeviceObject
,
798 IN PVOID InputBuffer
,
799 IN ULONG InputBufferLength
,
800 IN PVOID OutputBuffer
,
801 IN ULONG OutputBufferLength
,
802 IN BOOLEAN InternalDeviceIoControl
,
804 IN PIO_STATUS_BLOCK IoStatusBlock
)
807 PIO_STACK_LOCATION StackPtr
;
811 Irp
= IoAllocateIrp(DeviceObject
->StackSize
, FALSE
);
812 if (!Irp
) return NULL
;
815 StackPtr
= IoGetNextIrpStackLocation(Irp
);
817 /* Set the DevCtl Type */
818 StackPtr
->MajorFunction
= InternalDeviceIoControl
?
819 IRP_MJ_INTERNAL_DEVICE_CONTROL
:
820 IRP_MJ_DEVICE_CONTROL
;
822 /* Set the IOCTL Data */
823 StackPtr
->Parameters
.DeviceIoControl
.IoControlCode
= IoControlCode
;
824 StackPtr
->Parameters
.DeviceIoControl
.InputBufferLength
= InputBufferLength
;
825 StackPtr
->Parameters
.DeviceIoControl
.OutputBufferLength
=
828 /* Handle the Methods */
829 switch (IO_METHOD_FROM_CTL_CODE(IoControlCode
))
832 case METHOD_BUFFERED
:
834 /* Select the right Buffer Length */
835 BufferLength
= InputBufferLength
> OutputBufferLength
?
836 InputBufferLength
: OutputBufferLength
;
838 /* Make sure there is one */
841 /* Allocate the System Buffer */
842 Irp
->AssociatedIrp
.SystemBuffer
=
843 ExAllocatePoolWithTag(NonPagedPool
,
846 if (!Irp
->AssociatedIrp
.SystemBuffer
)
848 /* Free the IRP and fail */
853 /* Check if we got a buffer */
856 /* Copy into the System Buffer */
857 RtlCopyMemory(Irp
->AssociatedIrp
.SystemBuffer
,
862 /* Write the flags */
863 Irp
->Flags
= IRP_BUFFERED_IO
| IRP_DEALLOCATE_BUFFER
;
864 if (OutputBuffer
) Irp
->Flags
|= IRP_INPUT_OPERATION
;
866 /* Save the Buffer */
867 Irp
->UserBuffer
= OutputBuffer
;
871 /* Clear the Flags and Buffer */
873 Irp
->UserBuffer
= NULL
;
878 case METHOD_IN_DIRECT
:
879 case METHOD_OUT_DIRECT
:
881 /* Check if we got an input buffer */
884 /* Allocate the System Buffer */
885 Irp
->AssociatedIrp
.SystemBuffer
=
886 ExAllocatePoolWithTag(NonPagedPool
,
889 if (!Irp
->AssociatedIrp
.SystemBuffer
)
891 /* Free the IRP and fail */
896 /* Copy into the System Buffer */
897 RtlCopyMemory(Irp
->AssociatedIrp
.SystemBuffer
,
901 /* Write the flags */
902 Irp
->Flags
= IRP_BUFFERED_IO
| IRP_DEALLOCATE_BUFFER
;
906 /* Clear the flags */
910 /* Check if we got an output buffer */
913 /* Allocate the System Buffer */
914 Irp
->MdlAddress
= IoAllocateMdl(OutputBuffer
,
919 if (!Irp
->MdlAddress
)
921 /* Free the IRP and fail */
930 MmProbeAndLockPages(Irp
->MdlAddress
,
932 IO_METHOD_FROM_CTL_CODE(IoControlCode
) ==
934 IoReadAccess
: IoWriteAccess
);
936 _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER
)
939 IoFreeMdl(Irp
->MdlAddress
);
941 /* Free the input buffer and IRP */
942 if (InputBuffer
) ExFreePool(Irp
->AssociatedIrp
.SystemBuffer
);
946 _SEH2_YIELD(return NULL
);
954 /* Just save the Buffer */
955 Irp
->UserBuffer
= OutputBuffer
;
956 StackPtr
->Parameters
.DeviceIoControl
.Type3InputBuffer
= InputBuffer
;
959 /* Now write the Event and IoSB */
960 Irp
->UserIosb
= IoStatusBlock
;
961 Irp
->UserEvent
= Event
;
963 /* Sync IRPs are queued to requestor thread's irp cancel/cleanup list */
964 Irp
->Tail
.Overlay
.Thread
= PsGetCurrentThread();
965 IoQueueThreadIrp(Irp
);
968 IOTRACE(IO_IRP_DEBUG
,
969 "%s - Built IRP %p with IOCTL, Buffers, DO %lx %p %p %p\n",
984 IoBuildSynchronousFsdRequest(IN ULONG MajorFunction
,
985 IN PDEVICE_OBJECT DeviceObject
,
988 IN PLARGE_INTEGER StartingOffset
,
990 IN PIO_STATUS_BLOCK IoStatusBlock
)
994 /* Do the big work to set up the IRP */
995 Irp
= IoBuildAsynchronousFsdRequest(MajorFunction
,
1001 if (!Irp
) return NULL
;
1003 /* Set the Event which makes it Syncronous */
1004 Irp
->UserEvent
= Event
;
1006 /* Sync IRPs are queued to requestor thread's irp cancel/cleanup list */
1007 IoQueueThreadIrp(Irp
);
1016 IoCancelIrp(IN PIRP Irp
)
1019 PDRIVER_CANCEL CancelRoutine
;
1020 IOTRACE(IO_IRP_DEBUG
,
1021 "%s - Canceling IRP %p\n",
1024 ASSERT(Irp
->Type
== IO_TYPE_IRP
);
1026 /* Acquire the cancel lock and cancel the IRP */
1027 IoAcquireCancelSpinLock(&OldIrql
);
1030 /* Clear the cancel routine and get the old one */
1031 CancelRoutine
= (PVOID
)IoSetCancelRoutine(Irp
, NULL
);
1034 /* We had a routine, make sure the IRP isn't completed */
1035 if (Irp
->CurrentLocation
> (Irp
->StackCount
+ 1))
1037 /* It is, bugcheck */
1038 KeBugCheckEx(CANCEL_STATE_IN_COMPLETED_IRP
,
1040 (ULONG_PTR
)CancelRoutine
,
1045 /* Set the cancel IRQL And call the routine */
1046 Irp
->CancelIrql
= OldIrql
;
1047 CancelRoutine(IoGetCurrentIrpStackLocation(Irp
)->DeviceObject
, Irp
);
1051 /* Otherwise, release the cancel lock and fail */
1052 IoReleaseCancelSpinLock(OldIrql
);
1061 IoCancelThreadIo(IN PETHREAD Thread
)
1064 ULONG Retries
= 3000;
1065 LARGE_INTEGER Interval
;
1066 PLIST_ENTRY ListHead
, NextEntry
;
1070 /* Windows isn't using given thread, but using current. */
1071 Thread
= PsGetCurrentThread();
1073 IOTRACE(IO_IRP_DEBUG
,
1074 "%s - Canceling IRPs for Thread %p\n",
1078 /* Raise to APC to protect the IrpList */
1079 KeRaiseIrql(APC_LEVEL
, &OldIrql
);
1081 /* Start by cancelling all the IRPs in the current thread queue. */
1082 ListHead
= &Thread
->IrpList
;
1083 NextEntry
= ListHead
->Flink
;
1084 while (ListHead
!= NextEntry
)
1087 Irp
= CONTAINING_RECORD(NextEntry
, IRP
, ThreadListEntry
);
1092 /* Move to the next entry */
1093 NextEntry
= NextEntry
->Flink
;
1096 /* Wait 100 milliseconds */
1097 Interval
.QuadPart
= -1000000;
1099 /* Wait till all the IRPs are completed or cancelled. */
1100 while (!IsListEmpty(&Thread
->IrpList
))
1102 /* Now we can lower */
1103 KeLowerIrql(OldIrql
);
1105 /* Wait a short while and then look if all our IRPs were completed. */
1106 KeDelayExecutionThread(KernelMode
, FALSE
, &Interval
);
1109 * Don't stay here forever if some broken driver doesn't complete
1114 /* Print out a message and remove the IRP */
1115 DPRINT1("Broken driver did not complete!\n");
1116 IopDisassociateThreadIrp();
1119 /* Raise the IRQL Again */
1120 KeRaiseIrql(APC_LEVEL
, &OldIrql
);
1123 /* We're done, lower the IRQL */
1124 KeLowerIrql(OldIrql
);
1133 IoCallDriver(IN PDEVICE_OBJECT DeviceObject
,
1137 return IofCallDriver(DeviceObject
, Irp
);
1140 #define IoCallDriver IofCallDriver
1145 #undef IoCompleteRequest
1148 IoCompleteRequest(IN PIRP Irp
,
1149 IN CCHAR PriorityBoost
)
1151 /* Call the fastcall */
1152 IofCompleteRequest(Irp
, PriorityBoost
);
1155 #define IoCompleteRequest IofCompleteRequest
1162 IoEnqueueIrp(IN PIRP Irp
)
1164 /* This is the same as calling IoQueueThreadIrp */
1165 IoQueueThreadIrp(Irp
);
1173 IofCallDriver(IN PDEVICE_OBJECT DeviceObject
,
1176 PDRIVER_OBJECT DriverObject
;
1177 PIO_STACK_LOCATION StackPtr
;
1179 /* Make sure this is a valid IRP */
1180 ASSERT(Irp
->Type
== IO_TYPE_IRP
);
1182 /* Get the Driver Object */
1183 DriverObject
= DeviceObject
->DriverObject
;
1185 /* Decrease the current location and check if */
1186 Irp
->CurrentLocation
--;
1187 if (Irp
->CurrentLocation
<= 0)
1189 /* This IRP ran out of stack, bugcheck */
1190 KeBugCheckEx(NO_MORE_IRP_STACK_LOCATIONS
, (ULONG_PTR
)Irp
, 0, 0, 0);
1193 /* Now update the stack location */
1194 StackPtr
= IoGetNextIrpStackLocation(Irp
);
1195 Irp
->Tail
.Overlay
.CurrentStackLocation
= StackPtr
;
1197 /* Get the Device Object */
1198 StackPtr
->DeviceObject
= DeviceObject
;
1201 return DriverObject
->MajorFunction
[StackPtr
->MajorFunction
](DeviceObject
,
1207 IopClearStackLocation(IN PIO_STACK_LOCATION IoStackLocation
)
1209 IoStackLocation
->MinorFunction
= 0;
1210 IoStackLocation
->Flags
= 0;
1211 IoStackLocation
->Control
&= SL_ERROR_RETURNED
;
1212 IoStackLocation
->Parameters
.Others
.Argument1
= 0;
1213 IoStackLocation
->Parameters
.Others
.Argument2
= 0;
1214 IoStackLocation
->Parameters
.Others
.Argument3
= 0;
1215 IoStackLocation
->FileObject
= NULL
;
1223 IofCompleteRequest(IN PIRP Irp
,
1224 IN CCHAR PriorityBoost
)
1226 PIO_STACK_LOCATION StackPtr
, LastStackPtr
;
1227 PDEVICE_OBJECT DeviceObject
;
1228 PFILE_OBJECT FileObject
;
1235 NTSTATUS ErrorCode
= STATUS_SUCCESS
;
1236 IOTRACE(IO_IRP_DEBUG
,
1237 "%s - Completing IRP %p\n",
1241 /* Make sure this IRP isn't getting completed twice or is invalid */
1242 if ((Irp
->CurrentLocation
) > (Irp
->StackCount
+ 1))
1245 KeBugCheckEx(MULTIPLE_IRP_COMPLETE_REQUESTS
, (ULONG_PTR
)Irp
, 0, 0, 0);
1248 /* Some sanity checks */
1249 ASSERT(Irp
->Type
== IO_TYPE_IRP
);
1250 ASSERT(!Irp
->CancelRoutine
);
1251 ASSERT(Irp
->IoStatus
.Status
!= STATUS_PENDING
);
1252 ASSERT(Irp
->IoStatus
.Status
!= (NTSTATUS
)0xFFFFFFFF);
1254 /* Get the last stack */
1255 LastStackPtr
= (PIO_STACK_LOCATION
)(Irp
+ 1);
1256 if (LastStackPtr
->Control
& SL_ERROR_RETURNED
)
1258 /* Get the error code */
1259 ErrorCode
= PtrToUlong(LastStackPtr
->Parameters
.Others
.Argument4
);
1263 * Start the loop with the current stack and point the IRP to the next stack
1264 * and then keep incrementing the stack as we loop through. The IRP should
1265 * always point to the next stack location w.r.t the one currently being
1266 * analyzed, so completion routine code will see the appropriate value.
1267 * Because of this, we must loop until the current stack location is +1 of
1268 * the stack count, because when StackPtr is at the end, CurrentLocation is +1.
1270 for (StackPtr
= IoGetCurrentIrpStackLocation(Irp
),
1271 Irp
->CurrentLocation
++,
1272 Irp
->Tail
.Overlay
.CurrentStackLocation
++;
1273 Irp
->CurrentLocation
<= (Irp
->StackCount
+ 1);
1275 Irp
->CurrentLocation
++,
1276 Irp
->Tail
.Overlay
.CurrentStackLocation
++)
1278 /* Set Pending Returned */
1279 Irp
->PendingReturned
= StackPtr
->Control
& SL_PENDING_RETURNED
;
1281 /* Check if we failed */
1282 if (!NT_SUCCESS(Irp
->IoStatus
.Status
))
1284 /* Check if it was changed by a completion routine */
1285 if (Irp
->IoStatus
.Status
!= ErrorCode
)
1287 /* Update the error for the current stack */
1288 ErrorCode
= Irp
->IoStatus
.Status
;
1289 StackPtr
->Control
|= SL_ERROR_RETURNED
;
1290 LastStackPtr
->Parameters
.Others
.Argument4
= UlongToPtr(ErrorCode
);
1291 LastStackPtr
->Control
|= SL_ERROR_RETURNED
;
1295 /* Check if there is a Completion Routine to Call */
1296 if ((NT_SUCCESS(Irp
->IoStatus
.Status
) &&
1297 (StackPtr
->Control
& SL_INVOKE_ON_SUCCESS
)) ||
1298 (!NT_SUCCESS(Irp
->IoStatus
.Status
) &&
1299 (StackPtr
->Control
& SL_INVOKE_ON_ERROR
)) ||
1301 (StackPtr
->Control
& SL_INVOKE_ON_CANCEL
)))
1303 /* Clear the stack location */
1304 IopClearStackLocation(StackPtr
);
1306 /* Check for highest-level device completion routines */
1307 if (Irp
->CurrentLocation
== (Irp
->StackCount
+ 1))
1309 /* Clear the DO, since the current stack location is invalid */
1310 DeviceObject
= NULL
;
1314 /* Otherwise, return the real one */
1315 DeviceObject
= IoGetCurrentIrpStackLocation(Irp
)->DeviceObject
;
1318 /* Call the completion routine */
1319 Status
= StackPtr
->CompletionRoutine(DeviceObject
,
1323 /* Don't touch the Packet in this case, since it might be gone! */
1324 if (Status
== STATUS_MORE_PROCESSING_REQUIRED
) return;
1328 /* Otherwise, check if this is a completed IRP */
1329 if ((Irp
->CurrentLocation
<= Irp
->StackCount
) &&
1330 (Irp
->PendingReturned
))
1332 /* Mark it as pending */
1333 IoMarkIrpPending(Irp
);
1336 /* Clear the stack location */
1337 IopClearStackLocation(StackPtr
);
1341 /* Check if the IRP is an associated IRP */
1342 if (Irp
->Flags
& IRP_ASSOCIATED_IRP
)
1344 /* Get the master IRP and count */
1345 MasterIrp
= Irp
->AssociatedIrp
.MasterIrp
;
1346 MasterCount
= InterlockedDecrement(&MasterIrp
->AssociatedIrp
.IrpCount
);
1349 for (Mdl
= Irp
->MdlAddress
; Mdl
; Mdl
= NextMdl
)
1351 /* Go to the next one */
1352 NextMdl
= Mdl
->Next
;
1356 /* Free the IRP itself */
1359 /* Complete the Master IRP */
1360 if (!MasterCount
) IofCompleteRequest(MasterIrp
, PriorityBoost
);
1364 /* We don't support this yet */
1365 ASSERT(Irp
->IoStatus
.Status
!= STATUS_REPARSE
);
1367 /* Check if we have an auxiliary buffer */
1368 if (Irp
->Tail
.Overlay
.AuxiliaryBuffer
)
1371 ExFreePool(Irp
->Tail
.Overlay
.AuxiliaryBuffer
);
1372 Irp
->Tail
.Overlay
.AuxiliaryBuffer
= NULL
;
1375 /* Check if this is a Paging I/O or Close Operation */
1376 if (Irp
->Flags
& (IRP_PAGING_IO
| IRP_CLOSE_OPERATION
))
1378 /* Handle a Close Operation or Sync Paging I/O */
1379 if (Irp
->Flags
& (IRP_SYNCHRONOUS_PAGING_IO
| IRP_CLOSE_OPERATION
))
1381 /* Set the I/O Status and Signal the Event */
1382 Flags
= Irp
->Flags
& (IRP_SYNCHRONOUS_PAGING_IO
| IRP_PAGING_IO
);
1383 *Irp
->UserIosb
= Irp
->IoStatus
;
1384 KeSetEvent(Irp
->UserEvent
, PriorityBoost
, FALSE
);
1386 /* Free the IRP for a Paging I/O Only, Close is handled by us */
1387 if (Flags
) IoFreeIrp(Irp
);
1393 KeInitializeApc(&Irp
->Tail
.Apc
1394 &Irp
->Tail
.Overlay
.Thread
->Tcb
,
1395 Irp
->ApcEnvironment
,
1396 IopCompletePageWrite
,
1401 KeInsertQueueApc(&Irp
->Tail
.Apc
,
1406 /* Not implemented yet. */
1407 UNIMPLEMENTED_DBGBREAK("Not supported!\n");
1411 /* Get out of here */
1415 /* Unlock MDL Pages, page 167. */
1416 Mdl
= Irp
->MdlAddress
;
1423 /* Check if we should exit because of a Deferred I/O (page 168) */
1424 if ((Irp
->Flags
& IRP_DEFER_IO_COMPLETION
) && !(Irp
->PendingReturned
))
1427 * Return without queuing the completion APC, since the caller will
1428 * take care of doing its own optimized completion at PASSIVE_LEVEL.
1433 /* Get the thread and file object */
1434 Thread
= Irp
->Tail
.Overlay
.Thread
;
1435 FileObject
= Irp
->Tail
.Overlay
.OriginalFileObject
;
1437 /* Make sure the IRP isn't canceled */
1440 /* Initialize the APC */
1441 KeInitializeApc(&Irp
->Tail
.Apc
,
1443 Irp
->ApcEnvironment
,
1451 KeInsertQueueApc(&Irp
->Tail
.Apc
,
1453 NULL
, /* This is used for REPARSE stuff */
1458 /* The IRP just got canceled... does a thread still own it? */
1461 /* Yes! There is still hope! Initialize the APC */
1462 KeInitializeApc(&Irp
->Tail
.Apc
,
1464 Irp
->ApcEnvironment
,
1472 KeInsertQueueApc(&Irp
->Tail
.Apc
,
1474 NULL
, /* This is used for REPARSE stuff */
1479 /* Nothing left for us to do, kill it */
1480 ASSERT(Irp
->Cancel
);
1481 IopCleanupIrp(Irp
, FileObject
);
1488 IopSynchronousCompletion(IN PDEVICE_OBJECT DeviceObject
,
1492 if (Irp
->PendingReturned
)
1493 KeSetEvent((PKEVENT
)Context
, IO_NO_INCREMENT
, FALSE
);
1494 return STATUS_MORE_PROCESSING_REQUIRED
;
1502 IoForwardIrpSynchronously(IN PDEVICE_OBJECT DeviceObject
,
1508 /* Check if next stack location is available */
1509 if (Irp
->CurrentLocation
< Irp
->StackCount
)
1511 /* No more stack location */
1515 /* Initialize event */
1516 KeInitializeEvent(&Event
, NotificationEvent
, FALSE
);
1518 /* Copy stack location for next driver */
1519 IoCopyCurrentIrpStackLocationToNext(Irp
);
1521 /* Set a completion routine, which will signal the event */
1522 IoSetCompletionRoutine(Irp
, IopSynchronousCompletion
, &Event
, TRUE
, TRUE
, TRUE
);
1524 /* Call next driver */
1525 Status
= IoCallDriver(DeviceObject
, Irp
);
1527 /* Check if irp is pending */
1528 if (Status
== STATUS_PENDING
)
1530 /* Yes, wait for its completion */
1531 KeWaitForSingleObject(&Event
, Suspended
, KernelMode
, FALSE
, NULL
);
1534 /* Return success */
1543 IoFreeIrp(IN PIRP Irp
)
1545 PNPAGED_LOOKASIDE_LIST List
;
1546 PP_NPAGED_LOOKASIDE_NUMBER ListType
= LookasideSmallIrpList
;
1548 IOTRACE(IO_IRP_DEBUG
,
1549 "%s - Freeing IRPs %p\n",
1553 /* Make sure the Thread IRP list is empty and that it OK to free it */
1554 ASSERT(Irp
->Type
== IO_TYPE_IRP
);
1555 ASSERT(IsListEmpty(&Irp
->ThreadListEntry
));
1556 ASSERT(Irp
->CurrentLocation
>= Irp
->StackCount
);
1558 /* If this was a pool alloc, free it with the pool */
1559 if (!(Irp
->AllocationFlags
& IRP_ALLOCATED_FIXED_SIZE
))
1562 ExFreePoolWithTag(Irp
, TAG_IRP
);
1566 /* Check if this was a Big IRP */
1567 if (Irp
->StackCount
!= 1) ListType
= LookasideLargeIrpList
;
1570 Prcb
= KeGetCurrentPrcb();
1572 /* Use the P List */
1573 List
= (PNPAGED_LOOKASIDE_LIST
)Prcb
->PPLookasideList
[ListType
].P
;
1574 List
->L
.TotalFrees
++;
1576 /* Check if the Free was within the Depth or not */
1577 if (ExQueryDepthSList(&List
->L
.ListHead
) >= List
->L
.Depth
)
1579 /* Let the balancer know */
1580 List
->L
.FreeMisses
++;
1582 /* Use the L List */
1583 List
= (PNPAGED_LOOKASIDE_LIST
)Prcb
->PPLookasideList
[ListType
].L
;
1584 List
->L
.TotalFrees
++;
1586 /* Check if the Free was within the Depth or not */
1587 if (ExQueryDepthSList(&List
->L
.ListHead
) >= List
->L
.Depth
)
1589 /* All lists failed, use the pool */
1590 List
->L
.FreeMisses
++;
1591 ExFreePoolWithTag(Irp
, TAG_IRP
);
1596 /* The free was within the Depth */
1599 InterlockedPushEntrySList(&List
->L
.ListHead
,
1610 IoGetPagingIoPriority(IN PIRP Irp
)
1612 IO_PAGING_PRIORITY Priority
;
1618 /* Check what priority it has */
1619 if (Flags
& IRP_CLASS_CACHE_OPERATION
)
1622 Priority
= IoPagingPriorityHigh
;
1624 else if (Flags
& IRP_PAGING_IO
)
1626 /* Normal priority */
1627 Priority
= IoPagingPriorityNormal
;
1631 /* Invalid -- not a paging IRP */
1632 Priority
= IoPagingPriorityInvalid
;
1635 /* Return the priority */
1644 IoGetRequestorProcess(IN PIRP Irp
)
1646 /* Return the requestor process */
1647 if (Irp
->Tail
.Overlay
.Thread
)
1649 if (Irp
->ApcEnvironment
== OriginalApcEnvironment
)
1651 return Irp
->Tail
.Overlay
.Thread
->ThreadsProcess
;
1653 else if (Irp
->ApcEnvironment
== AttachedApcEnvironment
)
1655 return (PEPROCESS
)Irp
->Tail
.Overlay
.Thread
->Tcb
.ApcState
.Process
;
1667 IoGetRequestorProcessId(IN PIRP Irp
)
1671 /* Return the requestor process' id */
1672 Process
= IoGetRequestorProcess(Irp
);
1673 if (Process
) return PtrToUlong(Process
->UniqueProcessId
);
1683 IoGetRequestorSessionId(IN PIRP Irp
,
1684 OUT PULONG pSessionId
)
1688 /* Return the session */
1689 if (Irp
->Tail
.Overlay
.Thread
)
1691 Process
= Irp
->Tail
.Overlay
.Thread
->ThreadsProcess
;
1692 *pSessionId
= MmGetSessionId(Process
);
1693 return STATUS_SUCCESS
;
1696 *pSessionId
= (ULONG
)-1;
1697 return STATUS_UNSUCCESSFUL
;
1705 IoGetTopLevelIrp(VOID
)
1707 /* Return the IRP */
1708 return (PIRP
)PsGetCurrentThread()->TopLevelIrp
;
1716 IoInitializeIrp(IN PIRP Irp
,
1717 IN USHORT PacketSize
,
1721 IOTRACE(IO_IRP_DEBUG
,
1722 "%s - Initializing IRP %p\n",
1725 RtlZeroMemory(Irp
, PacketSize
);
1727 /* Set the Header and other data */
1728 Irp
->Type
= IO_TYPE_IRP
;
1729 Irp
->Size
= PacketSize
;
1730 Irp
->StackCount
= StackSize
;
1731 Irp
->CurrentLocation
= StackSize
+ 1;
1732 Irp
->ApcEnvironment
= KeGetCurrentThread()->ApcStateIndex
;
1733 Irp
->Tail
.Overlay
.CurrentStackLocation
= (PIO_STACK_LOCATION
)(Irp
+ 1) + StackSize
;
1735 /* Initialize the Thread List */
1736 InitializeListHead(&Irp
->ThreadListEntry
);
1744 IoIsOperationSynchronous(IN PIRP Irp
)
1749 /* If the IRP requests synchronous paging I/O, if the file object was opened
1750 for synchronous I/O, if the IRP_SYNCHRONOUS_API flag is set in the IRP
1751 the operation is synchronous */
1752 SynchIO
= (IoGetCurrentIrpStackLocation(Irp
)->FileObject
->Flags
& FO_SYNCHRONOUS_IO
) ||
1753 (Irp
->Flags
& IRP_SYNCHRONOUS_API
) || (Irp
->Flags
& IRP_SYNCHRONOUS_PAGING_IO
);
1755 /* If the IRP requests asynchronous paging I/O, the operation is asynchronous,
1756 even if one of the above conditions is true */
1757 ForceAsync
= (Irp
->Flags
& IRP_PAGING_IO
) && !(Irp
->Flags
& IRP_SYNCHRONOUS_PAGING_IO
);
1759 /* Check the flags */
1760 if (SynchIO
&& !ForceAsync
)
1762 /* Synch API or Paging I/O is OK, as is Sync File I/O */
1766 /* Otherwise, it is an asynchronous operation. */
1775 IoIsValidNameGraftingBuffer(IN PIRP Irp
,
1776 IN PREPARSE_DATA_BUFFER ReparseBuffer
)
1787 IoMakeAssociatedIrp(IN PIRP Irp
,
1791 IOTRACE(IO_IRP_DEBUG
,
1792 "%s - Associating IRP %p\n",
1796 /* Allocate the IRP */
1797 AssocIrp
= IoAllocateIrp(StackSize
, FALSE
);
1798 if (!AssocIrp
) return NULL
;
1801 AssocIrp
->Flags
|= IRP_ASSOCIATED_IRP
;
1803 /* Set the Thread */
1804 AssocIrp
->Tail
.Overlay
.Thread
= Irp
->Tail
.Overlay
.Thread
;
1806 /* Associate them */
1807 AssocIrp
->AssociatedIrp
.MasterIrp
= Irp
;
1816 IoQueueThreadIrp(IN PIRP Irp
)
1818 IOTRACE(IO_IRP_DEBUG
,
1819 "%s - Queueing IRP %p\n",
1823 /* Use our inlined routine */
1824 IopQueueIrpToThread(Irp
);
1829 * Reference: Chris Cant's "Writing WDM Device Drivers"
1833 IoReuseIrp(IN OUT PIRP Irp
,
1836 UCHAR AllocationFlags
;
1837 IOTRACE(IO_IRP_DEBUG
,
1838 "%s - Reusing IRP %p\n",
1842 /* Make sure it's OK to reuse it */
1843 ASSERT(!Irp
->CancelRoutine
);
1844 ASSERT(IsListEmpty(&Irp
->ThreadListEntry
));
1846 /* Get the old flags */
1847 AllocationFlags
= Irp
->AllocationFlags
;
1849 /* Reinitialize the IRP */
1850 IoInitializeIrp(Irp
, Irp
->Size
, Irp
->StackCount
);
1852 /* Duplicate the data */
1853 Irp
->IoStatus
.Status
= Status
;
1854 Irp
->AllocationFlags
= AllocationFlags
;
1862 IoSetTopLevelIrp(IN PIRP Irp
)
1865 PsGetCurrentThread()->TopLevelIrp
= (ULONG_PTR
)Irp
;
1868 #if defined (_WIN64)
1872 IN PIRP Irp OPTIONAL
)