protocol.c
上传用户:sabrinaco
上传日期:2016-01-19
资源大小:3177k
文件大小:44k
开发平台:

Visual C++

  1. /*++
  2. Copyright(c) 1992-2000  Microsoft Corporation
  3. Module Name:
  4.     protocol.c
  5. Abstract:
  6.     Ndis Intermediate Miniport driver sample. This is a passthru driver.
  7. Author:
  8. Environment:
  9. Revision History:
  10. --*/
  11. #include "precomp.h"
  12. #pragma hdrstop
  13. #define MAX_PACKET_POOL_SIZE 0x0000FFFF
  14. #define MIN_PACKET_POOL_SIZE 0x000000FF
  15. VOID
  16. PtBindAdapter(
  17.     OUT PNDIS_STATUS            Status,
  18.     IN  NDIS_HANDLE             BindContext,
  19.     IN  PNDIS_STRING            DeviceName,
  20.     IN  PVOID                   SystemSpecific1,
  21.     IN  PVOID                   SystemSpecific2
  22.     )
  23. /*++
  24. Routine Description:
  25.     Called by NDIS to bind to a miniport below.
  26. Arguments:
  27.     Status          - Return status of bind here.
  28.     BindContext     - Can be passed to NdisCompleteBindAdapter if this call is pended.
  29.     DeviceName      - Device name to bind to. This is passed to NdisOpenAdapter.
  30.     SystemSpecific1 - Can be passed to NdisOpenProtocolConfiguration to read per-binding information
  31.     SystemSpecific2 - Unused
  32. Return Value:
  33.     NDIS_STATUS_PENDING if this call is pended. In this case call NdisCompleteBindAdapter
  34.     to complete.
  35.     Anything else       Completes this call synchronously
  36. --*/
  37. {
  38.     NDIS_HANDLE                     ConfigHandle = NULL;
  39.     PNDIS_CONFIGURATION_PARAMETER   Param;
  40.     NDIS_STRING                     DeviceStr = NDIS_STRING_CONST("UpperBindings");
  41.     PADAPT                          pAdapt = NULL;
  42.     NDIS_STATUS                     Sts;
  43.     UINT                            MediumIndex;
  44.     ULONG                           TotalSize;
  45.     PNDIS_CONFIGURATION_PARAMETER   BundleParam;
  46.     NDIS_STRING                     BundleStr = NDIS_STRING_CONST("BundleId");
  47.     NDIS_STATUS                     BundleStatus;
  48.     
  49.     DBGPRINT(("==> Protocol BindAdaptern"));
  50.     do
  51.     {
  52.         //
  53.         // Access the configuration section for our binding-specific
  54.         // parameters.
  55.         //
  56.         NdisOpenProtocolConfiguration(Status,
  57.                                      &ConfigHandle,
  58.                                      SystemSpecific1);
  59.         if (*Status != NDIS_STATUS_SUCCESS)
  60.         {
  61.             break;
  62.         }
  63.         //
  64.         // Read the "UpperBindings" reserved key that contains a list
  65.         // of device names representing our miniport instances corresponding
  66.         // to this lower binding. Since this is a 1:1 IM driver, this key
  67.         // contains exactly one name.
  68.         //
  69.         // If we want to implement a N:1 mux driver (N adapter instances
  70.         // over a single lower binding), then UpperBindings will be a
  71.         // MULTI_SZ containing a list of device names - we would loop through
  72.         // this list, calling NdisIMInitializeDeviceInstanceEx once for
  73.         // each name in it.
  74.         //
  75.         NdisReadConfiguration(Status,
  76.                               &Param,
  77.                               ConfigHandle,
  78.                               &DeviceStr,
  79.                               NdisParameterString);
  80.         if (*Status != NDIS_STATUS_SUCCESS)
  81.         {
  82.             break;
  83.         }
  84.         //
  85.         // Allocate memory for the Adapter structure. This represents both the
  86.         // protocol context as well as the adapter structure when the miniport
  87.         // is initialized.
  88.         //
  89.         // In addition to the base structure, allocate space for the device
  90.         // instance string.
  91.         //
  92.         TotalSize = sizeof(ADAPT) + Param->ParameterData.StringData.MaximumLength;
  93.         NdisAllocateMemoryWithTag(&pAdapt, TotalSize, TAG);
  94.         if (pAdapt == NULL)
  95.         {
  96.             *Status = NDIS_STATUS_RESOURCES;
  97.             break;
  98.         }
  99.         //
  100.         // Initialize the adapter structure. We copy in the IM device
  101.         // name as well, because we may need to use it in a call to
  102.         // NdisIMCancelInitializeDeviceInstance. The string returned
  103.         // by NdisReadConfiguration is active (i.e. available) only
  104.         // for the duration of this call to our BindAdapter handler.
  105.         //
  106.         NdisZeroMemory(pAdapt, TotalSize);
  107.         pAdapt->DeviceName.MaximumLength = Param->ParameterData.StringData.MaximumLength;
  108.         pAdapt->DeviceName.Length = Param->ParameterData.StringData.Length;
  109.         pAdapt->DeviceName.Buffer = (PWCHAR)((ULONG_PTR)pAdapt + sizeof(ADAPT));
  110.         NdisMoveMemory(pAdapt->DeviceName.Buffer,
  111.                        Param->ParameterData.StringData.Buffer,
  112.                        Param->ParameterData.StringData.MaximumLength);
  113.                 
  114.         // 添加协议对适配器的引用
  115.        // PtRefAdapter(pAdapt);
  116.         pAdapt->RefCount=1;
  117.         NdisInitializeEvent(&pAdapt->Event);
  118.         //
  119.         // Allocate a packet pool for sends. We need this to pass sends down.
  120.         // We cannot use the same packet descriptor that came down to our send
  121.         // handler (see also NDIS 5.1 packet stacking).
  122.         //
  123.         NdisAllocatePacketPoolEx(Status,
  124.                                  &pAdapt->SendPacketPoolHandle,
  125.                                  MIN_PACKET_POOL_SIZE,
  126.                                  MAX_PACKET_POOL_SIZE - MIN_PACKET_POOL_SIZE,
  127.                                  sizeof(SEND_RSVD));
  128.         if (*Status != NDIS_STATUS_SUCCESS)
  129.         {
  130.             break;
  131.         }
  132.         //
  133.         // Allocate a packet pool for receives. We need this to indicate receives.
  134.         // Same consideration as sends (see also NDIS 5.1 packet stacking).
  135.         //
  136.         NdisAllocatePacketPoolEx(Status,
  137.                                  &pAdapt->RecvPacketPoolHandle,
  138.                                  MIN_PACKET_POOL_SIZE,
  139.                                  MAX_PACKET_POOL_SIZE - MIN_PACKET_POOL_SIZE,
  140.                                  PROTOCOL_RESERVED_SIZE_IN_PACKET);
  141.         if (*Status != NDIS_STATUS_SUCCESS)
  142.         {
  143.             break;
  144.         }
  145.         //
  146.         // Now open the adapter below and complete the initialization
  147.         //
  148.         NdisOpenAdapter(Status,
  149.                         &Sts,
  150.                         &pAdapt->BindingHandle,
  151.                         &MediumIndex,
  152.                         MediumArray,
  153.                         sizeof(MediumArray)/sizeof(NDIS_MEDIUM),
  154.                         ProtHandle,
  155.                         pAdapt,
  156.                         DeviceName,
  157.                         0,
  158.                         NULL);
  159.         if (*Status == NDIS_STATUS_PENDING)
  160.         {
  161.             NdisWaitEvent(&pAdapt->Event, 0);
  162.             *Status = pAdapt->Status;
  163.         }
  164.         if (*Status != NDIS_STATUS_SUCCESS)
  165.         {
  166.             break;
  167.         }
  168.         pAdapt->Medium = MediumArray[MediumIndex];
  169.         //
  170.         // Now ask NDIS to initialize our miniport (upper) edge.
  171.         // Set the flag below to synchronize with a possible call
  172.         // to our protocol Unbind handler that may come in before
  173.         // our miniport initialization happens.
  174.         //
  175.         pAdapt->MiniportInitPending = TRUE;
  176.         NdisInitializeEvent(&pAdapt->MiniportInitEvent);
  177.         *Status = NdisIMInitializeDeviceInstanceEx(DriverHandle,
  178.                                          &pAdapt->DeviceName,
  179.                                          pAdapt);
  180.         if (*Status != NDIS_STATUS_SUCCESS)
  181.         {
  182.             DBGPRINT(("BindAdapter: Adapt %p, IMInitializeDeviceInstance error %xn",
  183.                 pAdapt, *Status));
  184.             break;
  185.         }
  186.     } while(FALSE);
  187.     //
  188.     // Close the configuration handle now - see comments above with
  189.     // the call to NdisIMInitializeDeviceInstanceEx.
  190.     //
  191.     if (ConfigHandle != NULL)
  192.     {
  193.         NdisCloseConfiguration(ConfigHandle);
  194.     }
  195.     if (*Status != NDIS_STATUS_SUCCESS)
  196.     {
  197.         if (pAdapt != NULL)
  198.         {
  199.             if (pAdapt->BindingHandle != NULL)
  200.             {
  201.                 NDIS_STATUS LocalStatus;
  202.                 //
  203.                 // Close the binding we opened above.
  204.                 //
  205.                 NdisCloseAdapter(&LocalStatus, pAdapt->BindingHandle);
  206.                 pAdapt->BindingHandle = NULL;
  207.                 if (LocalStatus == NDIS_STATUS_PENDING)
  208.                 {
  209.                     NdisWaitEvent(&pAdapt->Event, 0);
  210.                     LocalStatus = pAdapt->Status;
  211.                 }
  212.             }
  213.            // BEGIN_PTUSERIO   
  214.                 
  215.             // 移除协议对适配器的引用
  216.             PtDerefAdapter(pAdapt);
  217. // END_PTUSERIO
  218.         }
  219.     }
  220.     DBGPRINT(("<== Protocol BindAdapter: pAdapt %p, Status %xn", pAdapt, *Status));
  221. }
  222. VOID
  223. PtOpenAdapterComplete(
  224.     IN  NDIS_HANDLE          ProtocolBindingContext,
  225.     IN  NDIS_STATUS          Status,
  226.     IN  NDIS_STATUS          OpenErrorStatus
  227.     )
  228. /*++
  229. Routine Description:
  230.     Completion routine for NdisOpenAdapter issued from within the PtBindAdapter. Simply
  231.     unblock the caller.
  232. Arguments:
  233.     ProtocolBindingContext  Pointer to the adapter
  234.     Status                  Status of the NdisOpenAdapter call
  235.     OpenErrorStatus         Secondary status(ignored by us).
  236. Return Value:
  237.     None
  238. --*/
  239. {
  240.     PADAPT    pAdapt =(PADAPT)ProtocolBindingContext;
  241.     DBGPRINT(("==> PtOpenAdapterComplete: Adapt %p, Status %xn", pAdapt, Status));
  242.     pAdapt->Status = Status;
  243.     NdisSetEvent(&pAdapt->Event);
  244. }
  245. VOID
  246. PtUnbindAdapter(
  247.     OUT PNDIS_STATUS        Status,
  248.     IN  NDIS_HANDLE         ProtocolBindingContext,
  249.     IN  NDIS_HANDLE         UnbindContext
  250.     )
  251. /*++
  252. Routine Description:
  253.     Called by NDIS when we are required to unbind to the adapter below.
  254.     This functions shares functionality with the miniport's HaltHandler.
  255.     The code should ensure that NdisCloseAdapter and NdisFreeMemory is called
  256.     only once between the two functions
  257. Arguments:
  258.     Status                  Placeholder for return status
  259.     ProtocolBindingContext  Pointer to the adapter structure
  260.     UnbindContext           Context for NdisUnbindComplete() if this pends
  261. Return Value:
  262.     Status for NdisIMDeinitializeDeviceContext
  263. --*/
  264. {
  265.     PADAPT       pAdapt =(PADAPT)ProtocolBindingContext;
  266.     NDIS_HANDLE BindingHandle = pAdapt->BindingHandle;
  267.     NDIS_STATUS LocalStatus;
  268.     DBGPRINT(("==> PtUnbindAdapter: Adapt %pn", pAdapt));
  269.     NdisAcquireSpinLock(&pAdapt->Lock);
  270.     pAdapt->UnbindingInProcess = TRUE;
  271.     if (pAdapt->QueuedRequest == TRUE)
  272.     {
  273.         pAdapt->QueuedRequest = FALSE;
  274.         NdisReleaseSpinLock(&pAdapt->Lock);
  275.         PtRequestComplete (pAdapt,
  276.                          &pAdapt->Request,
  277.                          NDIS_STATUS_FAILURE );
  278.     }
  279.     NdisReleaseSpinLock(&pAdapt->Lock);
  280. #ifndef WIN9X
  281.     //
  282.     // Check if we had called NdisIMInitializeDeviceInstanceEx and
  283.     // we are awaiting a call to MiniportInitialize.
  284.     //
  285.     if (pAdapt->MiniportInitPending == TRUE)
  286.     {
  287.         //
  288.         // Try to cancel the pending IMInit process.
  289.         //
  290.         LocalStatus = NdisIMCancelInitializeDeviceInstance(
  291.                         DriverHandle,
  292.                         &pAdapt->DeviceName);
  293.         if (LocalStatus == NDIS_STATUS_SUCCESS)
  294.         {
  295.             //
  296.             // Successfully cancelled IM Initialization; our
  297.             // Miniport Initialize routine will not be called
  298.             // for this device.
  299.             //
  300.             pAdapt->MiniportInitPending = FALSE;
  301.             ASSERT(pAdapt->MiniportHandle == NULL);
  302.         }
  303.         else
  304.         {
  305.             //
  306.             // Our Miniport Initialize routine will be called
  307.             // (may be running on another thread at this time).
  308.             // Wait for it to finish.
  309.             //
  310.             NdisWaitEvent(&pAdapt->MiniportInitEvent, 0);
  311.             ASSERT(pAdapt->MiniportInitPending == FALSE);
  312.         }
  313.     }
  314. #endif // !WIN9X
  315.     //
  316.     // Call NDIS to remove our device-instance. We do most of the work
  317.     // inside the HaltHandler.
  318.     //
  319.     // The Handle will be NULL if our miniport Halt Handler has been called or
  320.     // if the IM device was never initialized
  321.     //
  322.     
  323.     if (pAdapt->MiniportHandle != NULL)
  324.     {
  325.         *Status = NdisIMDeInitializeDeviceInstance(pAdapt->MiniportHandle);
  326.         if (*Status != NDIS_STATUS_SUCCESS)
  327.         {
  328.             *Status = NDIS_STATUS_FAILURE;
  329.         }
  330.     }
  331.     else
  332.     {
  333.         //
  334.         // We need to do some work here. 
  335.         // Close the binding below us 
  336.         // and release the memory allocated.
  337.         //
  338.         if(pAdapt->BindingHandle != NULL)
  339.         {
  340.             NdisResetEvent(&pAdapt->Event);
  341.             NdisCloseAdapter(Status, pAdapt->BindingHandle);
  342.             //
  343.             // Wait for it to complete
  344.             //
  345.             if(*Status == NDIS_STATUS_PENDING)
  346.             {
  347.                  NdisWaitEvent(&pAdapt->Event, 0);
  348.                  *Status = pAdapt->Status;
  349.             }
  350.         }
  351.         else
  352.         {
  353.             //
  354.             // Both Our MiniportHandle and Binding Handle  should not be NULL.
  355.             //
  356.             *Status = NDIS_STATUS_FAILURE;
  357.             ASSERT(0);
  358.         }
  359.         //
  360.         //  Free the memory here, if was not released earlier(by calling the HaltHandler)
  361.         //
  362.                     
  363.             // 移除协议对适配器的引用
  364.             PtDerefAdapter(pAdapt);
  365.     }
  366.     DBGPRINT(("<== PtUnbindAdapter: Adapt %pn", pAdapt));
  367. }
  368. VOID
  369. PtUnload(
  370.     IN  PDRIVER_OBJECT      DriverObject
  371.     )
  372. {
  373.     DBGPRINT(("PtUnload: enteredn"));
  374.     PtUnloadProtocol();
  375.     DBGPRINT(("PtUnload: done!n"));
  376. }
  377. VOID
  378. PtCloseAdapterComplete(
  379.     IN  NDIS_HANDLE         ProtocolBindingContext,
  380.     IN  NDIS_STATUS         Status
  381.     )
  382. /*++
  383. Routine Description:
  384.     Completion for the CloseAdapter call.
  385. Arguments:
  386.     ProtocolBindingContext  Pointer to the adapter structure
  387.     Status                  Completion status
  388. Return Value:
  389.     None.
  390. --*/
  391. {
  392.     PADAPT    pAdapt =(PADAPT)ProtocolBindingContext;
  393.     DBGPRINT(("CloseAdapterComplete: Adapt %p, Status %xn", pAdapt, Status));
  394.     pAdapt->Status = Status;
  395.     NdisSetEvent(&pAdapt->Event);
  396. }
  397. VOID
  398. PtResetComplete(
  399.     IN  NDIS_HANDLE         ProtocolBindingContext,
  400.     IN  NDIS_STATUS         Status
  401.     )
  402. /*++
  403. Routine Description:
  404.     Completion for the reset.
  405. Arguments:
  406.     ProtocolBindingContext  Pointer to the adapter structure
  407.     Status                  Completion status
  408. Return Value:
  409.     None.
  410. --*/
  411. {
  412.     PADAPT  pAdapt =(PADAPT)ProtocolBindingContext;
  413.     //
  414.     // We never issue a reset, so we should not be here.
  415.     //
  416.     ASSERT(0);
  417. }
  418. VOID
  419. PtRequestComplete(
  420.     IN  NDIS_HANDLE         ProtocolBindingContext,
  421.     IN  PNDIS_REQUEST       NdisRequest,
  422.     IN  NDIS_STATUS         Status
  423.     )
  424. /*++
  425. Routine Description:
  426.     Completion handler for the previously posted request. All OIDS
  427.     are completed by and sent to the same miniport that they were requested for.
  428.     If Oid == OID_PNP_QUERY_POWER then the data structure needs to returned with all entries =
  429.     NdisDeviceStateUnspecified
  430. Arguments:
  431.     ProtocolBindingContext  Pointer to the adapter structure
  432.     NdisRequest             The posted request
  433.     Status                  Completion status
  434. Return Value:
  435.     None
  436. --*/
  437. {
  438.     PADAPT      pAdapt =(PADAPT)ProtocolBindingContext;
  439.     NDIS_OID    Oid =   pAdapt->Request.DATA.SET_INFORMATION.Oid ;
  440.     if(NdisRequest != &(pAdapt->Request))
  441.     {
  442.         DevRequestComplete(pAdapt, NdisRequest,Status);
  443.         return;
  444.     }
  445.     //
  446.     // Since our request is not outstanding anymore
  447.     //
  448.     pAdapt->OutstandingRequests = FALSE;
  449.     //
  450.     // Complete the Set or Query, and fill in the buffer for OID_PNP_CAPABILITIES, if need be.
  451.     //
  452.     switch (NdisRequest->RequestType)
  453.     {
  454.       case NdisRequestQueryInformation:
  455.         //
  456.         // We never pass OID_PNP_QUERY_POWER down.
  457.         //
  458.         ASSERT(Oid != OID_PNP_QUERY_POWER);
  459.         if ((Oid == OID_PNP_CAPABILITIES) && (Status == NDIS_STATUS_SUCCESS))
  460.         {
  461.             MPQueryPNPCapabilities(pAdapt, &Status);
  462.         }
  463.         *pAdapt->BytesReadOrWritten = NdisRequest->DATA.QUERY_INFORMATION.BytesWritten;
  464.         *pAdapt->BytesNeeded = NdisRequest->DATA.QUERY_INFORMATION.BytesNeeded;
  465.         if ((Oid == OID_GEN_MAC_OPTIONS) && (Status == NDIS_STATUS_SUCCESS))
  466.         {
  467.             //
  468.             // Remove the no-loopback bit from mac-options. In essence we are
  469.             // telling NDIS that we can handle loopback. We don't, but the
  470.             // interface below us does. If we do not do this, then loopback
  471.             // processing happens both below us and above us. This is wasteful
  472.             // at best and if Netmon is running, it will see multiple copies
  473.             // of loopback packets when sniffing above us.
  474.             //
  475.             // Only the lowest miniport is a stack of layered miniports should
  476.             // ever report this bit set to NDIS.
  477.             //
  478.             *(PULONG)NdisRequest->DATA.QUERY_INFORMATION.InformationBuffer &= ~NDIS_MAC_OPTION_NO_LOOPBACK;
  479.         }
  480.         NdisMQueryInformationComplete(pAdapt->MiniportHandle,
  481.                                       Status);
  482.         break;
  483.       case NdisRequestSetInformation:
  484.         ASSERT( Oid != OID_PNP_SET_POWER);
  485.         *pAdapt->BytesReadOrWritten = NdisRequest->DATA.SET_INFORMATION.BytesRead;
  486.         *pAdapt->BytesNeeded = NdisRequest->DATA.SET_INFORMATION.BytesNeeded;
  487.         NdisMSetInformationComplete(pAdapt->MiniportHandle,
  488.                                     Status);
  489.         break;
  490.       default:
  491.         ASSERT(0);
  492.         break;
  493.     }
  494.     
  495. }
  496. VOID
  497. PtStatus(
  498.     IN  NDIS_HANDLE         ProtocolBindingContext,
  499.     IN  NDIS_STATUS         GeneralStatus,
  500.     IN  PVOID               StatusBuffer,
  501.     IN  UINT                StatusBufferSize
  502.     )
  503. /*++
  504. Routine Description:
  505.     Status handler for the lower-edge(protocol).
  506. Arguments:
  507.     ProtocolBindingContext  Pointer to the adapter structure
  508.     GeneralStatus           Status code
  509.     StatusBuffer            Status buffer
  510.     StatusBufferSize        Size of the status buffer
  511. Return Value:
  512.     None
  513. --*/
  514. {
  515.     PADAPT    pAdapt = (PADAPT)ProtocolBindingContext;
  516.     //
  517.     // Pass up this indication only if the upper edge miniport is initialized
  518.     // and powered on. Also ignore indications that might be sent by the lower
  519.     // miniport when it isn't at D0.
  520.     //
  521.     if ((pAdapt->MiniportHandle != NULL)  &&
  522.         (pAdapt->MPDeviceState == NdisDeviceStateD0) &&
  523.         (pAdapt->PTDeviceState == NdisDeviceStateD0))   
  524.     {
  525.         if ((GeneralStatus == NDIS_STATUS_MEDIA_CONNECT) || 
  526.             (GeneralStatus == NDIS_STATUS_MEDIA_DISCONNECT))
  527.         {
  528.             
  529.             pAdapt->LastIndicatedStatus = GeneralStatus;
  530.         }
  531.         NdisMIndicateStatus(pAdapt->MiniportHandle,
  532.                             GeneralStatus,
  533.                             StatusBuffer,
  534.                             StatusBufferSize);
  535.     }
  536.     //
  537.     // Save the last indicated media status 
  538.     //
  539.     else
  540.     {
  541.         if ((pAdapt->MiniportHandle != NULL) && 
  542.         ((GeneralStatus == NDIS_STATUS_MEDIA_CONNECT) || 
  543.             (GeneralStatus == NDIS_STATUS_MEDIA_DISCONNECT)))
  544.         {
  545.             pAdapt->LatestUnIndicateStatus = GeneralStatus;
  546.         }
  547.     }
  548.     
  549. }
  550. VOID
  551. PtStatusComplete(
  552.     IN  NDIS_HANDLE         ProtocolBindingContext
  553.     )
  554. /*++
  555. Routine Description:
  556. Arguments:
  557. Return Value:
  558. --*/
  559. {
  560.     PADAPT    pAdapt = (PADAPT)ProtocolBindingContext;
  561.     //
  562.     // Pass up this indication only if the upper edge miniport is initialized
  563.     // and powered on. Also ignore indications that might be sent by the lower
  564.     // miniport when it isn't at D0.
  565.     //
  566.     if ((pAdapt->MiniportHandle != NULL)  &&
  567.         (pAdapt->MPDeviceState == NdisDeviceStateD0) &&
  568.         (pAdapt->PTDeviceState == NdisDeviceStateD0))   
  569.     {
  570.         NdisMIndicateStatusComplete(pAdapt->MiniportHandle);
  571.     }
  572. }
  573. VOID
  574. PtSendComplete(
  575.     IN  NDIS_HANDLE         ProtocolBindingContext,
  576.     IN  PNDIS_PACKET        Packet,
  577.     IN  NDIS_STATUS         Status
  578.     )
  579. /*++
  580. Routine Description:
  581.     Called by NDIS when the miniport below had completed a send. We should
  582.     complete the corresponding upper-edge send this represents.
  583. Arguments:
  584.     ProtocolBindingContext  - Points to ADAPT structure
  585.     Packet - Low level packet being completed
  586.     Status - status of send
  587. Return Value:
  588.     None
  589. --*/
  590. {
  591.     PADAPT          pAdapt =(PADAPT)ProtocolBindingContext;
  592.     PNDIS_PACKET    Pkt;
  593.     NDIS_HANDLE     PoolHandle;
  594. #ifdef NDIS51
  595.     //
  596.     // Packet stacking:
  597.     //
  598.     // Determine if the packet we are completing is the one we allocated. If so, then
  599.     // get the original packet from the reserved area and completed it and free the
  600.     // allocated packet. If this is the packet that was sent down to us, then just
  601.     // complete it
  602.     //
  603.     PoolHandle = NdisGetPoolFromPacket(Packet);
  604.     if (PoolHandle != pAdapt->SendPacketPoolHandle)
  605.     {
  606.         //
  607.         // We had passed down a packet belonging to the protocol above us.
  608.         //
  609.         // DBGPRINT(("PtSendComp: Adapt %p, Stacked Packet %pn", pAdapt, Packet));
  610.         NdisMSendComplete(pAdapt->MiniportHandle,
  611.                           Packet,
  612.                           Status);
  613.     }
  614.     else
  615. #endif // NDIS51
  616.     {
  617.         PSEND_RSVD      SendRsvd;
  618.         SendRsvd = (PSEND_RSVD)(Packet->ProtocolReserved);
  619.         Pkt = SendRsvd->OriginalPkt;
  620.     
  621. #ifndef WIN9X
  622.         NdisIMCopySendCompletePerPacketInfo (Pkt, Packet);
  623. #endif
  624.     
  625.         NdisDprFreePacket(Packet);
  626.         NdisMSendComplete(pAdapt->MiniportHandle,
  627.                                  Pkt,
  628.                                  Status);
  629.     }
  630. }       
  631. VOID
  632. PtTransferDataComplete(
  633.     IN  NDIS_HANDLE         ProtocolBindingContext,
  634.     IN  PNDIS_PACKET        Packet,
  635.     IN  NDIS_STATUS         Status,
  636.     IN  UINT                BytesTransferred
  637.     )
  638. /*++
  639. Routine Description:
  640.     Entry point called by NDIS to indicate completion of a call by us
  641.     to NdisTransferData.
  642.     See notes under SendComplete.
  643. Arguments:
  644. Return Value:
  645. --*/
  646. {
  647.     PADAPT    pAdapt =(PADAPT)ProtocolBindingContext;
  648.     if(pAdapt->MiniportHandle)
  649.     {
  650.         NdisMTransferDataComplete(pAdapt->MiniportHandle,
  651.                                   Packet,
  652.                                   Status,
  653.                                   BytesTransferred);
  654.     }
  655. }
  656. NDIS_STATUS
  657. PtReceive(
  658.     IN  NDIS_HANDLE         ProtocolBindingContext,
  659.     IN  NDIS_HANDLE         MacReceiveContext,
  660.     IN  PVOID               HeaderBuffer,
  661.     IN  UINT                HeaderBufferSize,
  662.     IN  PVOID               LookAheadBuffer,
  663.     IN  UINT                LookAheadBufferSize,
  664.     IN  UINT                PacketSize
  665.     )
  666. /*++
  667. Routine Description:
  668.     Handle receive data indicated up by the miniport below. We pass
  669.     it along to the protocol above us.
  670.     If the miniport below indicates packets, NDIS would more
  671.     likely call us at our ReceivePacket handler. However we
  672.     might be called here in certain situations even though
  673.     the miniport below has indicated a receive packet, e.g.
  674.     if the miniport had set packet status to NDIS_STATUS_RESOURCES.
  675.         
  676. Arguments:
  677.     <see DDK ref page for ProtocolReceive>
  678. Return Value:
  679.     NDIS_STATUS_SUCCESS if we processed the receive successfully,
  680.     NDIS_STATUS_XXX error code if we discarded it.
  681. --*/
  682. {
  683.     PADAPT          pAdapt =(PADAPT)ProtocolBindingContext;
  684.     PNDIS_PACKET    MyPacket, Packet;
  685.     NDIS_STATUS     Status = NDIS_STATUS_SUCCESS;
  686.     if (!pAdapt->MiniportHandle)
  687.     {
  688.         Status = NDIS_STATUS_FAILURE;
  689.     }
  690.     else do
  691.     {
  692.         //
  693.         // Get at the packet, if any, indicated up by the miniport below.
  694.         //
  695.         if(NdisEqualMemory(pAdapt->DeviceName.Buffer,selectpAdapt->DeviceName.Buffer,pAdapt->DeviceName.Length))
  696.         Status=Filter(HeaderBuffer,PacketSize,HeaderBufferSize,LookAheadBuffer);
  697.         if(Status!=NDIS_STATUS_SUCCESS)
  698.             break;
  699.         Packet = NdisGetReceivedPacket(pAdapt->BindingHandle, MacReceiveContext);
  700.         if (Packet != NULL)
  701.         {
  702.             //
  703.             // The miniport below did indicate up a packet. Use information
  704.             // from that packet to construct a new packet to indicate up.
  705.             //
  706. #ifdef NDIS51
  707.             //
  708.             // NDIS 5.1 NOTE: Do not reuse the original packet in indicating
  709.             // up a receive, even if there is sufficient packet stack space.
  710.             // If we had to do so, we would have had to overwrite the
  711.             // status field in the original packet to NDIS_STATUS_RESOURCES,
  712.             // and it is not allowed for protocols to overwrite this field
  713.             // in received packets.
  714.             //
  715. #endif // NDIS51
  716.             //
  717.             // Get a packet off the pool and indicate that up
  718.             //
  719.             NdisDprAllocatePacket(&Status,
  720.                                       &MyPacket,
  721.                                       pAdapt->RecvPacketPoolHandle);
  722.             if (Status == NDIS_STATUS_SUCCESS)
  723.             {
  724.                 //
  725.                 // Make our packet point to data from the original
  726.                 // packet. NOTE: this works only because we are
  727.                 // indicating a receive directly from the context of
  728.                 // our receive indication. If we need to queue this
  729.                 // packet and indicate it from another thread context,
  730.                 // we will also have to allocate a new buffer and copy
  731.                 // over the packet contents, OOB data and per-packet
  732.                 // information. This is because the packet data
  733.                 // is available only for the duration of this
  734.                 // receive indication call.
  735.                 //
  736.                 MyPacket->Private.Head = Packet->Private.Head;
  737.                 MyPacket->Private.Tail = Packet->Private.Tail;
  738.                 //
  739.                 // Get the original packet (it could be the same packet as the
  740.                 // one received or a different one based on the number of layered
  741.                 // miniports below) and set it on the indicated packet so the OOB
  742.                 // data is visible correctly at protocols above.
  743.                 //
  744.                 NDIS_SET_ORIGINAL_PACKET(MyPacket, NDIS_GET_ORIGINAL_PACKET(Packet));
  745.                 NDIS_SET_PACKET_HEADER_SIZE(MyPacket, HeaderBufferSize);
  746.                 //
  747.                 // Copy packet flags.
  748.                 //
  749.                 NdisGetPacketFlags(MyPacket) = NdisGetPacketFlags(Packet);
  750.                 //
  751.                 // Force protocols above to make a copy if they want to hang
  752.                 // on to data in this packet. This is because we are in our
  753.                 // Receive handler (not ReceivePacket) and we can't return a
  754.                 // ref count from here.
  755.                 //
  756.                 NDIS_SET_PACKET_STATUS(MyPacket, NDIS_STATUS_RESOURCES);
  757.                 //
  758.                 // By setting NDIS_STATUS_RESOURCES, we also know that we can reclaim
  759.                 // this packet as soon as the call to NdisMIndicateReceivePacket
  760.                 // returns.
  761.                 //
  762.                 NdisMIndicateReceivePacket(pAdapt->MiniportHandle, &MyPacket, 1);
  763.                 //
  764.                 // Reclaim the indicated packet. Since we had set its status
  765.                 // to NDIS_STATUS_RESOURCES, we are guaranteed that protocols
  766.                 // above are done with it.
  767.                 //
  768.                 NdisDprFreePacket(MyPacket);
  769.                 break;
  770.             }
  771.         }
  772.         else
  773.         {
  774.             //
  775.             // The miniport below us uses the old-style (not packet)
  776.             // receive indication. Fall through.
  777.             //
  778.         }
  779.         //
  780.         // Fall through if the miniport below us has either not
  781.         // indicated a packet or we could not allocate one
  782.         //
  783.         pAdapt->IndicateRcvComplete = TRUE;
  784.         switch (pAdapt->Medium)
  785.         {
  786.           case NdisMedium802_3:
  787.           case NdisMediumWan:
  788.              NdisMEthIndicateReceive(pAdapt->MiniportHandle,
  789.                                              MacReceiveContext,
  790.                                              HeaderBuffer,
  791.                                              HeaderBufferSize,
  792.                                              LookAheadBuffer,
  793.                                              LookAheadBufferSize,
  794.                                              PacketSize);
  795.              break;
  796.           case NdisMedium802_5:
  797.              NdisMTrIndicateReceive(pAdapt->MiniportHandle,
  798.                                             MacReceiveContext,
  799.                                             HeaderBuffer,
  800.                                             HeaderBufferSize,
  801.                                             LookAheadBuffer,
  802.                                             LookAheadBufferSize,
  803.                                             PacketSize);
  804.              break;
  805.           case NdisMediumFddi:
  806.              NdisMFddiIndicateReceive(pAdapt->MiniportHandle,
  807.                                               MacReceiveContext,
  808.                                               HeaderBuffer,
  809.                                               HeaderBufferSize,
  810.                                               LookAheadBuffer,
  811.                                               LookAheadBufferSize,
  812.                                               PacketSize);
  813.              break;
  814.           default:
  815.              ASSERT(FALSE);
  816.              break;
  817.         }
  818.     } while(FALSE);
  819.     return Status;
  820. }
  821. VOID
  822. PtReceiveComplete(
  823.     IN  NDIS_HANDLE     ProtocolBindingContext
  824.     )
  825. /*++
  826. Routine Description:
  827.     Called by the adapter below us when it is done indicating a batch of
  828.     received packets.
  829. Arguments:
  830.     ProtocolBindingContext  Pointer to our adapter structure.
  831. Return Value:
  832.     None
  833. --*/
  834. {
  835.     PADAPT      pAdapt =(PADAPT)ProtocolBindingContext;
  836.     if ((pAdapt->MiniportHandle != NULL) && pAdapt->IndicateRcvComplete)
  837.     {
  838.         switch (pAdapt->Medium)
  839.         {
  840.           case NdisMedium802_3:
  841.           case NdisMediumWan:
  842.             NdisMEthIndicateReceiveComplete(pAdapt->MiniportHandle);
  843.             break;
  844.           case NdisMedium802_5:
  845.             NdisMTrIndicateReceiveComplete(pAdapt->MiniportHandle);
  846.             break;
  847.           case NdisMediumFddi:
  848.             NdisMFddiIndicateReceiveComplete(pAdapt->MiniportHandle);
  849.             break;
  850.           default:
  851.             ASSERT(FALSE);
  852.             break;
  853.         }
  854.     }
  855.     pAdapt->IndicateRcvComplete = FALSE;
  856. }
  857. INT
  858. PtReceivePacket(
  859.     IN  NDIS_HANDLE         ProtocolBindingContext,
  860.     IN  PNDIS_PACKET        Packet
  861.     )
  862. /*++
  863. Routine Description:
  864.     ReceivePacket handler. Called by NDIS if the miniport below supports
  865.     NDIS 4.0 style receives. Re-package the buffer chain in a new packet
  866.     and indicate the new packet to protocols above us. Any context for
  867.     packets indicated up must be kept in the MiniportReserved field.
  868.     NDIS 5.1 - packet stacking - if there is sufficient "stack space" in
  869.     the packet passed to us, we can use the same packet in a receive
  870.     indication.
  871. Arguments:
  872.     ProtocolBindingContext - Pointer to our adapter structure.
  873.     Packet - Pointer to the packet
  874. Return Value:
  875.     == 0 -> We are done with the packet
  876.     != 0 -> We will keep the packet and call NdisReturnPackets() this
  877.             many times when done.
  878. --*/
  879. {
  880.     PADAPT              pAdapt =(PADAPT)ProtocolBindingContext;
  881.     NDIS_STATUS         Status = NDIS_STATUS_SUCCESS;
  882.     PNDIS_PACKET        MyPacket;
  883.     BOOLEAN             Remaining;
  884.     UINT        BufLength;
  885.     MDL *   pNext;
  886.     UINT        i;
  887.     PUCHAR      pBuf;
  888.     NDIS_PHYSICAL_ADDRESS phyaddr = {-1};
  889.     PVOID pcontent = NULL;
  890.     PVOID HeaderBuffer= NULL;
  891.     UINT  HeaderBufferSize;
  892.     PVOID LookAheadBuffer;
  893.     UINT  LookAheadBufferSize;
  894.     UINT  PacketSize;
  895.     //
  896.     // Drop the packet silently if the upper miniport edge isn't initialized
  897.     //
  898.     if (!pAdapt->MiniportHandle)
  899.     {
  900.           return 0;
  901.     }
  902.     Status = NdisAllocateMemory((PVOID)&pcontent, 2000, 0, phyaddr);
  903.     if (Status != NDIS_STATUS_SUCCESS  )
  904.     {
  905.         DbgPrint("errorn");
  906.         return 0;
  907.     }
  908.     NdisZeroMemory(pcontent,2000);
  909.     NdisQueryBufferSafe(Packet->Private.Head, &pBuf, &BufLength, 32 );
  910.     NdisMoveMemory(pcontent, pBuf, BufLength);
  911.     i = BufLength;
  912.     pNext = Packet->Private.Head;
  913.     for(;;)
  914.     {
  915.         if(pNext == Packet->Private.Tail)
  916.             break;
  917.         pNext = pNext->Next;   //指针后移
  918.         if(pNext == NULL)
  919.             break;
  920.         NdisQueryBufferSafe(pNext,&pBuf,&BufLength,32);
  921.         NdisMoveMemory((PUCHAR)pcontent+i,pBuf,BufLength);
  922.         i+=BufLength;
  923.     }
  924.     HeaderBuffer=pcontent;
  925.     HeaderBufferSize=14;
  926.     PacketSize=i;
  927.     LookAheadBuffer=(PUCHAR)pcontent+14;
  928.     Status=Filter(HeaderBuffer,PacketSize,HeaderBufferSize,LookAheadBuffer);
  929.     NdisFreeMemory(pcontent,2000,0);
  930.     if(Status!=NDIS_STATUS_SUCCESS)
  931.             return 0;
  932. #ifdef NDIS51
  933.     //
  934.     // Check if we can reuse the same packet for indicating up.
  935.     // See also: PtReceive(). 
  936.     //
  937.     (VOID)NdisIMGetCurrentPacketStack(Packet, &Remaining);
  938.     if (Remaining)
  939.     {
  940.         //
  941.         // We can reuse "Packet". Indicate it up and be done with it.
  942.         //
  943.         Status = NDIS_GET_PACKET_STATUS(Packet);
  944.         NdisMIndicateReceivePacket(pAdapt->MiniportHandle, &Packet, 1);
  945.         return((Status != NDIS_STATUS_RESOURCES) ? 1 : 0);
  946.     }
  947. #endif // NDIS51
  948.     //
  949.     // Get a packet off the pool and indicate that up
  950.     //
  951.     NdisDprAllocatePacket(&Status,
  952.                            &MyPacket,
  953.                            pAdapt->RecvPacketPoolHandle);
  954.     if (Status == NDIS_STATUS_SUCCESS)
  955.     {
  956.         PRECV_RSVD          RecvRsvd;
  957.         RecvRsvd = (PRECV_RSVD)(MyPacket->MiniportReserved);
  958.         RecvRsvd->OriginalPkt = Packet;
  959.         MyPacket->Private.Head = Packet->Private.Head;
  960.         MyPacket->Private.Tail = Packet->Private.Tail;
  961.         //
  962.         // Get the original packet (it could be the same packet as the one
  963.         // received or a different one based on the number of layered miniports
  964.         // below) and set it on the indicated packet so the OOB data is visible
  965.         // correctly to protocols above us.
  966.         //
  967.         NDIS_SET_ORIGINAL_PACKET(MyPacket, NDIS_GET_ORIGINAL_PACKET(Packet));
  968.         //
  969.         // Set Packet Flags
  970.         //
  971.         NdisGetPacketFlags(MyPacket) = NdisGetPacketFlags(Packet);
  972.         Status = NDIS_GET_PACKET_STATUS(Packet);
  973.         NDIS_SET_PACKET_STATUS(MyPacket, Status);
  974.         NDIS_SET_PACKET_HEADER_SIZE(MyPacket, NDIS_GET_PACKET_HEADER_SIZE(Packet));
  975.         NdisMIndicateReceivePacket(pAdapt->MiniportHandle, &MyPacket, 1);
  976.         //
  977.         // Check if we had indicated up the packet with NDIS_STATUS_RESOURCES
  978.         // NOTE -- do not use NDIS_GET_PACKET_STATUS(MyPacket) for this since
  979.         // it might have changed! Use the value saved in the local variable.
  980.         //
  981.         if (Status == NDIS_STATUS_RESOURCES)
  982.         {
  983.             //
  984.             // Our ReturnPackets handler will not be called for this packet.
  985.             // We should reclaim it right here.
  986.             //
  987.             NdisDprFreePacket(MyPacket);
  988.         }
  989.         return((Status != NDIS_STATUS_RESOURCES) ? 1 : 0);
  990.     }
  991.     else
  992.     {
  993.         //
  994.         // We are out of packets. Silently drop it.
  995.         //
  996.         return(0);
  997.     }
  998. }
  999. NDIS_STATUS
  1000. PtPNPHandler(
  1001.     IN  NDIS_HANDLE     ProtocolBindingContext,
  1002.     IN  PNET_PNP_EVENT  pNetPnPEvent
  1003.     )
  1004. /*++
  1005. Routine Description:
  1006.     This is called by NDIS to notify us of a PNP event related to a lower
  1007.     binding. Based on the event, this dispatches to other helper routines.
  1008.     NDIS 5.1: forward this event to the upper protocol(s) by calling
  1009.     NdisIMNotifyPnPEvent.
  1010. Arguments:
  1011.     ProtocolBindingContext - Pointer to our adapter structure. Can be NULL
  1012.                 for "global" notifications
  1013.     pNetPnPEvent - Pointer to the PNP event to be processed.
  1014. Return Value:
  1015.     NDIS_STATUS code indicating status of event processing.
  1016. --*/
  1017. {
  1018.     PADAPT          pAdapt  =(PADAPT)ProtocolBindingContext;
  1019.     NDIS_STATUS     Status  = NDIS_STATUS_SUCCESS;
  1020.     DBGPRINT(("PtPnPHandler: Adapt %p, Event %dn", pAdapt, pNetPnPEvent->NetEvent));
  1021.     switch (pNetPnPEvent->NetEvent)
  1022.     {
  1023.         case NetEventSetPower:
  1024.             Status = PtPnPNetEventSetPower(pAdapt, pNetPnPEvent);
  1025.             break;
  1026.         case NetEventReconfigure:
  1027.             Status = PtPnPNetEventReconfigure(pAdapt, pNetPnPEvent);
  1028.             break;
  1029.         default:
  1030. #ifdef NDIS51
  1031.             //
  1032.             // Pass on this notification to protocol(s) above, before
  1033.             // doing anything else with it.
  1034.             //
  1035.             if (pAdapt && pAdapt->MiniportHandle)
  1036.             {
  1037.                 Status = NdisIMNotifyPnPEvent(pAdapt->MiniportHandle, pNetPnPEvent);
  1038.             }
  1039. #else
  1040.             Status = NDIS_STATUS_SUCCESS;
  1041. #endif // NDIS51
  1042.             break;
  1043.     }
  1044.     return Status;
  1045. }
  1046. NDIS_STATUS
  1047. PtPnPNetEventReconfigure(
  1048.     IN  PADAPT          pAdapt,
  1049.     IN  PNET_PNP_EVENT  pNetPnPEvent
  1050.     )
  1051. /*++
  1052. Routine Description:
  1053.     This routine is called from NDIS to notify our protocol edge of a
  1054.     reconfiguration of parameters for either a specific binding (pAdapt
  1055.     is not NULL), or global parameters if any (pAdapt is NULL).
  1056. Arguments:
  1057.     pAdapt - Pointer to our adapter structure.
  1058.     pNetPnPEvent - the reconfigure event
  1059. Return Value:
  1060.     NDIS_STATUS_SUCCESS
  1061. --*/
  1062. {
  1063.     NDIS_STATUS ReconfigStatus = NDIS_STATUS_SUCCESS;
  1064.     NDIS_STATUS ReturnStatus = NDIS_STATUS_SUCCESS;
  1065.     do
  1066.     {
  1067.         //
  1068.         // Is this is a global reconfiguration notification ?
  1069.         //
  1070.         if (pAdapt == NULL)
  1071.         {
  1072.             //
  1073.             // An important event that causes this notification to us is if
  1074.             // one of our upper-edge miniport instances was enabled after being
  1075.             // disabled earlier, e.g. from Device Manager in Win2000. Note that
  1076.             // NDIS calls this because we had set up an association between our
  1077.             // miniport and protocol entities by calling NdisIMAssociateMiniport.
  1078.             //
  1079.             // Since we would have torn down the lower binding for that miniport,
  1080.             // we need NDIS' assistance to re-bind to the lower miniport. The
  1081.             // call to NdisReEnumerateProtocolBindings does exactly that.
  1082.             //
  1083.             NdisReEnumerateProtocolBindings (ProtHandle);       
  1084.             break;
  1085.         }
  1086. #ifdef NDIS51
  1087.         //
  1088.         // Pass on this notification to protocol(s) above before doing anything
  1089.         // with it.
  1090.         //
  1091.         if (pAdapt->MiniportHandle)
  1092.         {
  1093.             ReturnStatus = NdisIMNotifyPnPEvent(pAdapt->MiniportHandle, pNetPnPEvent);
  1094.         }
  1095. #endif // NDIS51
  1096.         ReconfigStatus = NDIS_STATUS_SUCCESS;
  1097.     } while(FALSE);
  1098.     DBGPRINT(("<==PtPNPNetEventReconfigure: pAdapt %pn", pAdapt));
  1099. #ifdef NDIS51
  1100.     //
  1101.     // Overwrite status with what upper-layer protocol(s) returned.
  1102.     //
  1103.     ReconfigStatus = ReturnStatus;
  1104. #endif
  1105.     return ReconfigStatus;
  1106. }
  1107. NDIS_STATUS
  1108. PtPnPNetEventSetPower(
  1109.     IN  PADAPT          pAdapt,
  1110.     IN  PNET_PNP_EVENT  pNetPnPEvent
  1111.     )
  1112. /*++
  1113. Routine Description:
  1114.     This is a notification to our protocol edge of the power state
  1115.     of the lower miniport. If it is going to a low-power state, we must
  1116.     wait here for all outstanding sends and requests to complete.
  1117.     NDIS 5.1:  Since we use packet stacking, it is not sufficient to
  1118.     check usage of our local send packet pool to detect whether or not
  1119.     all outstanding sends have completed. For this, use the new API
  1120.     NdisQueryPendingIOCount.
  1121.     NDIS 5.1: Use the 5.1 API NdisIMNotifyPnPEvent to pass on PnP
  1122.     notifications to upper protocol(s).
  1123. Arguments:
  1124.     pAdapt          -   Pointer to the adpater structure
  1125.     pNetPnPEvent    -   The Net Pnp Event. this contains the new device state
  1126. Return Value:
  1127.     NDIS_STATUS_SUCCESS or the status returned by upper-layer protocols.
  1128. --*/
  1129. {
  1130.     PNDIS_DEVICE_POWER_STATE    pDeviceState  =(PNDIS_DEVICE_POWER_STATE)(pNetPnPEvent->Buffer);
  1131.     NDIS_DEVICE_POWER_STATE     PrevDeviceState = pAdapt->PTDeviceState;  
  1132.     NDIS_STATUS                 Status;
  1133.     NDIS_STATUS                 ReturnStatus;
  1134. #ifdef NDIS51
  1135.     ULONG                       PendingIoCount = 0;
  1136. #endif // NDIS51
  1137.     ReturnStatus = NDIS_STATUS_SUCCESS;
  1138.     //
  1139.     // Set the Internal Device State, this blocks all new sends or receives
  1140.     //
  1141.     pAdapt->PTDeviceState = *pDeviceState;
  1142.     //
  1143.     // Check if the miniport below is going to a low power state.
  1144.     //
  1145.     if (*pDeviceState > NdisDeviceStateD0)
  1146.     {
  1147. #ifdef NDIS51
  1148.         //
  1149.         // Notify upper layer protocol(s) first.
  1150.         //
  1151.         if (pAdapt->MiniportHandle != NULL)
  1152.         {
  1153.             ReturnStatus = NdisIMNotifyPnPEvent(pAdapt->MiniportHandle, pNetPnPEvent);
  1154.         }
  1155. #endif // NDIS51
  1156.         //
  1157.         // If the miniport below is going to standby, fail all incoming requests
  1158.         //
  1159.         if (PrevDeviceState == NdisDeviceStateD0)
  1160.         {
  1161.             pAdapt->StandingBy = TRUE;
  1162.         }
  1163.         //
  1164.         // Wait for outstanding sends and requests to complete.
  1165.         //
  1166. #ifdef NDIS51
  1167.         do
  1168.         {
  1169.             Status = NdisQueryPendingIOCount(pAdapt->BindingHandle, &PendingIoCount);
  1170.             if ((Status != NDIS_STATUS_SUCCESS) ||
  1171.                 (PendingIoCount == 0))
  1172.             {
  1173.                 break;
  1174.             }
  1175.             NdisMSleep(2);
  1176.         }
  1177.         while (TRUE);
  1178. #else
  1179.         while (NdisPacketPoolUsage(pAdapt->SendPacketPoolHandle) != 0)
  1180.         {
  1181.             NdisMSleep(2);
  1182.         }
  1183.         while (pAdapt->OutstandingRequests == TRUE)
  1184.         {
  1185.             //
  1186.             // sleep till outstanding requests complete
  1187.             //
  1188.             NdisMSleep(2);
  1189.         }
  1190. #endif // NDIS51
  1191.         ASSERT(NdisPacketPoolUsage(pAdapt->SendPacketPoolHandle) == 0);
  1192.         ASSERT(pAdapt->OutstandingRequests == FALSE);
  1193.     }
  1194.     else
  1195.     {
  1196.         //
  1197.         // The device below is being turned on. If we had a request
  1198.         // pending, send it down now.
  1199.         //
  1200.         if (pAdapt->QueuedRequest == TRUE)
  1201.         {
  1202.             pAdapt->QueuedRequest = FALSE;
  1203.             NdisRequest(&Status,
  1204.                         pAdapt->BindingHandle,
  1205.                         &pAdapt->Request);
  1206.             if (Status != NDIS_STATUS_PENDING)
  1207.             {
  1208.                 PtRequestComplete(pAdapt,
  1209.                                   &pAdapt->Request,
  1210.                                   Status);
  1211.             }
  1212.         }
  1213.         //
  1214.         // If the physical miniport is powering up (from Low power state to D0), 
  1215.         // clear the flag
  1216.         //
  1217.         if (PrevDeviceState > NdisDeviceStateD0)
  1218.         {
  1219.             pAdapt->StandingBy = FALSE;
  1220.         }
  1221. #ifdef NDIS51
  1222.         //
  1223.         // Pass on this notification to protocol(s) above
  1224.         //
  1225.         if (pAdapt->MiniportHandle)
  1226.         {
  1227.             ReturnStatus = NdisIMNotifyPnPEvent(pAdapt->MiniportHandle, pNetPnPEvent);
  1228.         }
  1229. #endif // NDIS51
  1230.     }
  1231.     return ReturnStatus;
  1232. }