NdisIMRegisterLayeredMiniport

NDIS_STATUS
   NdisIMRegisterLayeredMiniport(
       IN NDIS_HANDLE NdisWrapperHandle,
       IN PNDIS_MINIPORT_CHARACTERISTICS MiniportCharacteristics,
       IN UINT CharacteristicsLength,
       OUT PNDIS_HANDLE DriverHandle
       );

NdisIMRegisterLayeredMiniport registers an intermediate driver’s MiniportXxx entry points and name with the NDIS library when the driver initializes.

Parameters

NdisWrapperHandle

Specifies the handle returned by NdisMInitializeWrapper.

MiniportCharacteristics

Points to an NDISXX_MINIPORT_CHARACTERISTICS structure set up by the caller. The structure at MiniportCharacteristics is defined as follows:

typedef struct _NDIS_MINIPORT_CHARACTERISTICS {

    UCHAR MajorNdisVersion;

    UCHAR MinorNdisVersion;

    UINT Reserved;

    W_CHECK_FOR_HANG_HANDLER CheckForHangHandler;

    W_DISABLE_INTERRUPT_HANDLER DisableInterruptHandler;

    W_ENABLE_INTERRUPT_HANDLER  EnableInterruptHandler;

    W_HALT_HANDLER HaltHandler;

    W_HANDLE_INTERRUPT_HANDLER  HandleInterruptHandler;

    W_INITIALIZE_HANDLER InitializeHandler;

    W_ISR_HANDLER ISRHandler;

    W_QUERY_INFORMATION_HANDLER QueryInformationHandler;

    W_RECONFIGURE_HANDLER ReconfigureHandler;

    W_RESET_HANDLER ResetHandler;

    W_SEND_HANDLER SendHandler;

    W_SET_INFORMATION_HANDLER SetInformationHandler;

    W_TRANSFER_DATA_HANDLER TransferDataHandler;

//

// MajorNdisVersion must be set to 0x04 with following members

//

    W_RETURN_PACKET_HANDLER ReturnPacketHandler;

    W_SEND_PACKETS_HANDLER SendPacketsHandler;

    W_ALLOCATE_COMPLETE_HANDLER AllocateCompleteHandler;

} NDIS_MINIPORT_CHARACTERISTICS, *PNDIS_MINIPORT_CHARACTERISTICS;

 

An NDIS intermediate driver should initialize this structure with zeros before setting up any of the following members:

MajorNdisVersion

Specifies the major version of the NDIS library the driver is using. The current value is 0x04, although the NDIS library continues to support existing miniports developed for NDIS V3.0. Consequently, an NDIS intermediate driver that binds itself only to legacy miniports might set this member to 0x03.

This member must be set to 0x04 if the caller sets entry points in any members following Name.

MinorNdisVersion

Specifies the minor version of the NDIS library the driver is using. The current value is 0x00, although NDIS continues to support existing drivers.

Reserved

This member is reserved for system use.

CheckForHangHandler

Specifies the entry point of the caller’s MiniportCheckForHang function, if any, or NULL.

DisableInterruptHandler

Specifies NULL.

EnableInterruptHandler

Specifies NULL.

HaltHandler

Specifies the entry point of the caller’s MiniportHalt function.

HandleInterruptHandler

Specifies NULL.

InitializeHandler

Specifies the entry point of the caller’s MiniportInitialize function.

ISRHandler

Specifies NULL.

QueryInformationHandler

Specifies the entry point of the caller’s MiniportQueryInformation function.

ReconfigureHandler

Specifies NULL.

ResetHandler

Specifies the entry point of the caller’s MiniportReset function.

SendHandler

Specifies the entry point of the caller’s MiniportSend function, MiniportWanSend function, or NULL if the caller supplies a MiniportSendPackets function.

If the driver supports multipacket sends or media-specific information, it sets the SendPacketsHandler member instead and sets this member to NULL.

SetInformationHandler

Specifies the entry point of the caller’s MiniportSetInformation function.

TransferDataHandler

Specifies the entry point of the caller’s MiniportTransferData function, if any, or NULL. This miniport function is required unless the caller is the driver of a WAN NIC or the caller supports multipacket receives and, therefore, supplies the entry point of its MiniportReturnPacket function at ReturnPacketHandler.

ReturnPacketHandler

Specifies the entry point of the caller’s MiniportReturnPacket function, if any, or NULL.

SendPacketsHandler

Specifies the entry point of the caller’s MiniportSendPackets function, if any, or NULL.

AllocateCompleteHandler

Specifies NULL.

CharacteristicsLength

Specifies the length in bytes of the caller-supplied characteristics buffer. Depending on the value of MajorNdisVersion, this parameter must be either sizeof(NDIS40_MINIPORT_CHARACTERISTICS) or sizeof(NDIS30_MINIPORT_CHARACTERISTICS).

If the driver includes the build instruction NDIS40_MINIPORT (or NDIS30_MINIPORT, as appropriate) in its sources or if the driver writer uses the –NDIS40_MINIPORT (or ..30..) compiler switch, this parameter is set when the driver is built.

DriverHandle

Points to a variable in which NdisIMRegisterLayeredMiniport, if this call is successful, returns a handle that the caller should save. The caller subsequently must pass this handle to NdisIMInitializeDeviceInstance, usually from its ProtocolBindAdapter function.

Return Value

NdisIMRegisterLayeredMiniport returns NDIS_STATUS_SUCCESS if it registered the caller as a miniport, or it can return one of the following status values:

NDIS_STATUS_BAD_CHARACTERISTICS

The CharacteristicsLength is too small for the MajorNdisVersion specified in the buffer at MiniportCharacteristics.

NDIS_STATUS_BAD_VERSION

The MajorNdisVersion or MinorNdisVersion specified in the characteristics structure is invalid.

NDIS_STATUS_RESOURCES

A shortage of resources, possibly memory, prevented the NDIS library from registering the caller as a miniport.

NDIS_STATUS_FAILURE

This is a default error status, returned when none of the preceding errors caused the registration to fail. For example, if the NDIS library cannot load the driver’s image and lock it into system memory, it returns this error.

Comments

Any NDIS intermediate driver that exports both MiniportXxx and ProtocolXxx functions usually sets up a characteristics structure and calls NdisIMRegisterLayeredMiniport from its DriverEntry function after DriverEntry calls NdisMInitializeWrapper. This structure is copied in the NdisIMRegisterLayeredMiniport request to the NDIS library’s internal storage. Thus, once it has registered, such a driver cannot change its handler functions.

After such an NDIS intermediate driver has called NdisIMRegisterLayeredMiniport successfully, it must call NdisRegisterProtocol to register its ProtocolXxx functions with the NDIS library. Such a driver usually has both ProtocolBindAdapter and ProtocolUnbindAdapter functions. Its ProtocolBindAdapter function will be called next when the underlying NIC driver has initialized successfully. ProtocolBindAdapter then can establish a binding to that NIC driver with NdisOpenAdapter.

An NDIS intermediate driver should have a MiniportSendPackets function if an underlying NIC driver might support multipacket sends or consume media-specific information, such as packet priorities, sent down in a packet array from a higher-level protocol. An NDIS intermediate driver should have a MiniportReturnPacket function if an underlying NIC driver might support multipacket receive indications or indicate packet arrays containing media-specific information. The NDIS library handles packet arrays transferred between an underlying NIC driver and higher-level protocol that support only single-packet transfers on behalf of such an intermediate driver.

An intermediate driver can call NdisMRegisterMiniport instead of NdisIMRegisterLayeredMiniport if it is prepared for an immediate call to the MiniportInitialize function. 

Callers of NdisIMRegisterLayeredMiniport run at IRQL PASSIVE_LEVEL.

See Also

DriverEntry of NDIS Miniport Drivers, DriverEntry of NDIS Protocol Drivers, MiniportCheckForHang, MiniportHalt, MiniportInitialize, MiniportQueryInformation, MiniportReset, MiniportReturnPacket, MiniportSend, MiniportSendPackets, MiniportSetInformation, MiniportTransferData, MiniportWanSend, NdisIMInitializeDeviceInstance, NdisMRegisterMiniport, NdisOpenAdapter, NdisRegisterProtocol, NdisZeroMemory, ProtocolBindAdapter, ProtocolReceivePacket, ProtocolUnbindAdapter