MINIPORT_CO_OID_REQUEST callback function (ndis.h)
The MiniportCoOidRequest function handles an OID request to query or set information in CoNDIS miniport driver.
Syntax
MINIPORT_CO_OID_REQUEST MiniportCoOidRequest;
NDIS_STATUS MiniportCoOidRequest(
[in] NDIS_HANDLE MiniportAdapterContext,
[in] NDIS_HANDLE MiniportVcContext,
PNDIS_OID_REQUEST NdisRequest
)
{...}
Parameters
[in] MiniportAdapterContext
A handle to a context area that the miniport driver allocated in its MiniportInitializeEx function. The miniport driver uses this context area to maintain state information for a miniport adapter.
[in] MiniportVcContext
A handle to a miniport driver-allocated context area in which the miniport driver maintains its per-virtual connection (VC) state. The miniport driver supplied this handle to NDIS from its MiniportCoCreateVc function. If the request is not VC-specific, this parameter is NULL.
NdisRequest
A pointer to an NDIS_OID_REQUEST structure that contains both the buffer and the request packet for the miniport driver to handle. Depending on the request, the driver returns requested information in the structure that this parameter points to.
Return value
MiniportCoOidRequest can return one of the following status values:
Return code | Description |
---|---|
|
The miniport driver either set or obtained the data as requested. |
|
The miniport driver will complete the request asynchronously. After the miniport driver has completed all processing, it must call the NdisMCoOidRequestComplete function to inform NDIS that the request is complete. |
|
The request that the OidRequest parameter specified was invalid or not recognized. |
|
The request that the OidRequest parameter specified was recognized but not supported by the miniport driver. |
|
The buffer that the OidRequest parameter supplied was too small to hold the requested data. |
|
The value that was specified in the InformationBufferLength member of the NDIS_OID_REQUEST structure at OidRequest is incorrect for the specified OID_XXX code. |
|
One or more of the parameters that were specified for the request at OidRequest iwas invalid. |
|
After NDIS calls the MiniportDevicePnPEventNotify function to indicate a surprise removal, NDIS calls the driver's MiniportHaltEx function. If the driver receives any OID requests before NDIS calls MiniportHaltEx, it should immediately complete such requests with a status value of NDIS_STATUS_NOT_ACCEPTED. |
|
The miniport driver stopped processing the request. For example, NDIS called the MiniportResetEx or MiniportCancelOidRequest function. |
Remarks
NDIS calls the MiniportCoOidRequest function to handle an OID request to query or set information in a CoNDIS miniport driver.
To register MiniportCoOidRequest, miniport drivers call the NdisSetOptionalHandlers function from the MiniportSetOptions function. In MiniportSetOptions, the miniport driver initializes an NDIS_MINIPORT_CO_CHARACTERISTICS structure and passes it at the OptionalHandlers parameter of NdisSetOptionalHandlers.
NDIS calls the MiniportCoOidRequest function either on its own behalf or on behalf of a bound protocol driver that called the NdisCoOidRequest function. Miniport drivers should examine the request supplied at OidRequest and take the action requested. For more information about the OIDs that miniport drivers handle, see NDIS OIDs.
Note that NDIS does not validate the OID-specific contents at OidRequest . Therefore, the driver itself must validate these contents. If the driver determines that the value to be set is out of bounds, it should fail the request and return NDIS_STATUS_INVALID_DATA.
If MiniportCoOidRequest returns NDIS_STATUS_PENDING, NDIS can call MiniportCoOidRequest with another request, for the miniport adapter specified at MiniportAdapterContext, before the pending request is completed. NDIS does not serialize connection oriented OID requests.
Examples
To define a MiniportCoOidRequest function, you must first provide a function declaration that identifies the type of function you're defining. Windows provides a set of function types for drivers. Declaring a function using the function types helps Code Analysis for Drivers, Static Driver Verifier (SDV), and other verification tools find errors, and it's a requirement for writing drivers for the Windows operating system.For example, to define a MiniportCoOidRequest function that is named "MyCoOidRequest", use the MINIPORT_CO_OID_REQUEST type as shown in this code example:
MINIPORT_CO_OID_REQUEST MyCoOidRequest;
Then, implement your function as follows:
_Use_decl_annotations_
NDIS_STATUS
MyCoOidRequest(
NDIS_HANDLE MiniportAdapterContext,
NDIS_HANDLE MiniportVcContext,
PNDIS_OID_REQUEST OidRequest
)
{...}
The MINIPORT_CO_OID_REQUEST function type is defined in the Ndis.h header file. To more accurately identify errors when you run the code analysis tools, be sure to add the Use_decl_annotations annotation to your function definition. The Use_decl_annotations annotation ensures that the annotations that are applied to the MINIPORT_CO_OID_REQUEST function type in the header file are used. For more information about the requirements for function declarations, see Declaring Functions by Using Function Role Types for NDIS Drivers.
For information about Use_decl_annotations, see Annotating Function Behavior.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in NDIS 6.0 and later. |
Target Platform | Windows |
Header | ndis.h (include Ndis.h) |
IRQL | <= DISPATCH_LEVEL |