• [转]Constraints on Completion Routines


    http://msdn.microsoft.com/en-us/library/windows/hardware/ff539307(v=vs.85).aspx 

     

    The following guidelines briefly discuss how to avoid common programming errors in file system filter driver completion routines.

    IRQL-Related Constraints

    Because completion routines can be called at IRQL DISPATCH_LEVEL, they are subject to the following constraints:

    • Completion routines cannot safely call kernel-mode routines that require a lower IRQL, such as IoDeleteDevice or ObQueryNameString.

    • Any data structures used in completion routines must be allocated from nonpaged pool.

    • Completion routines cannot be made pageable.

    • Completion routines cannot acquire resources, mutexes, or fast mutexes. However, they can acquire spin locks.

    Checking the PendingReturned Flag

    • Unless the completion routine signals an event, it must check the Irp->PendingReturned flag. If this flag is set, the completion routine must call IoMarkIrpPending to mark the IRP as pending.

    • If a completion routine signals an event, it should not call IoMarkIrpPending.

    Constraints on Returning Status

    • A file system filter driver completion routine must return either STATUS_SUCCESS or STATUS_MORE_PROCESSING_REQUIRED. All other NTSTATUS values are reset to STATUS_SUCCESS by the I/O Manager.

    Constraints on Returning STATUS_MORE_PROCESSING_REQUIRED

    There are three cases when completion routines should return STATUS_MORE_PROCESSING_REQUIRED:

    • When the corresponding dispatch routine is waiting for an event to be signaled by the completion routine. In this case, it is important to return STATUS_MORE_PROCESSING_REQUIRED to prevent the I/O Manager from completing the IRP prematurely after the completion routine returns.

    • When the completion routine has posted the IRP to a worker queue and the corresponding dispatch routine has returned STATUS_PENDING. In this case as well, it is important to return STATUS_MORE_PROCESSING_REQUIRED to prevent the I/O Manager from completing the IRP prematurely after the completion routine returns.

    • When the same driver created the IRP by calling IoAllocateIrp or IoBuildAsynchronousFsdRequest. Because the driver did not receive this IRP from a higher-level driver, it can safely free the IRP in the completion routine. After calling IoFreeIrp, the completion routine must return STATUS_MORE_PROCESSING_REQUIRED to indicate that no further completion processing is needed.

    A completion routine cannot return STATUS_MORE_PROCESSING_REQUIRED for an oplock operation. Oplock operations cannot be pended (posted to a worker queue), and dispatch routines cannot return STATUS_PENDING for them.

    Constraints on Posting IRPs to a Work Queue

    • If a completion routine posts IRPs to a work queue, it must call IoMarkIrpPending before posting each IRP to the worker queue. Otherwise, the IRP could be dequeued, completed by another driver routine, and freed by the system before the call to IoMarkIrpPendingoccurs, thereby causing a crash.

  • 相关阅读:
    JS和PYTHON中数据类型比较
    http状态码
    ffmpeg architecture(上)
    降低数值精度以提高深度学习性能
    IaaS、PaaS 和 SaaS:云服务模型概述
    英特尔Intel® Arria® 10 FPGA加速器设计
    基于至强® 平台的内存数据库解决方案
    MLPerf结果证实至强® 可有效助力深度学习训练
    如何从数据角度为人工智能部署做好数据准备
    英特尔内存革新助平安云 Redis 云服务降本增效
  • 原文地址:https://www.cnblogs.com/adylee/p/2610455.html
Copyright © 2020-2023  润新知