VirtualBox

Changeset 84876 in vbox for trunk/src/VBox/Devices/Network


Ignore:
Timestamp:
Jun 19, 2020 6:17:29 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
138708
Message:

Network/DevVirtioNet_1_0.cpp: Fixed up comments/formatting that got stale over time and changes, and made more function and variable names more accurate to improve maintainability and code self-documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/DevVirtioNet_1_0.cpp

    r84819 r84876  
    7474
    7575#define IS_VIRTQ_EMPTY(pDevIns, pVirtio, uVirtqNbr) \
    76             (virtioCoreVirtqAvailCount(pDevIns, pVirtio, uVirtqNbr) == 0)
     76            (virtioCoreVirtqAvailBufCount(pDevIns, pVirtio, uVirtqNbr) == 0)
    7777
    7878#define SET_LINK_UP(pState) \
     
    218218#pragma pack(1)
    219219struct virtio_net_pkt_hdr {
    220     uint8_t  uFlags;                                           /**< flags                                           */
    221     uint8_t  uGsoType;                                         /**< gso_type                                        */
    222     uint16_t uHdrLen;                                          /**< hdr_len                                         */
    223     uint16_t uGsoSize;                                         /**< gso_size                                        */
    224     uint16_t uChksumStart;                                     /**< Chksum_start                                    */
    225     uint16_t uChksumOffset;                                    /**< Chksum_offset                                   */
    226     uint16_t uNumBuffers;                                      /**< num_buffers                                     */
     220    uint8_t  uFlags;                                            /**< flags                                          */
     221    uint8_t  uGsoType;                                          /**< gso_type                                       */
     222    uint16_t uHdrLen;                                           /**< hdr_len                                        */
     223    uint16_t uGsoSize;                                          /**< gso_size                                       */
     224    uint16_t uChksumStart;                                      /**< Chksum_start                                   */
     225    uint16_t uChksumOffset;                                     /**< Chksum_offset                                  */
     226    uint16_t uNumBuffers;                                       /**< num_buffers                                    */
    227227};
    228228#pragma pack()
     
    262262/** @name Control virtq: MAC address filtering flags (VirtIO 1.0, 5.1.6.5.2)
    263263 * @{  */
    264 #define VIRTIONET_CTRL_MAC                          1           /**< Control class: MAC address filtering            */
    265 #define VIRTIONET_CTRL_MAC_TABLE_SET                0           /**< Set MAC table                                   */
    266 #define VIRTIONET_CTRL_MAC_ADDR_SET                 1           /**< Set default MAC address                         */
     264#define VIRTIONET_CTRL_MAC                          1           /**< Control class: MAC address filtering           */
     265#define VIRTIONET_CTRL_MAC_TABLE_SET                0           /**< Set MAC table                                  */
     266#define VIRTIONET_CTRL_MAC_ADDR_SET                 1           /**< Set default MAC address                        */
    267267/** @} */
    268268
    269269/** @name Control virtq: MAC address filtering flags (VirtIO 1.0, 5.1.6.5.3)
    270270 * @{  */
    271 #define VIRTIONET_CTRL_VLAN                         2           /**< Control class: VLAN filtering                   */
    272 #define VIRTIONET_CTRL_VLAN_ADD                     0           /**< Add VLAN to filter table                        */
    273 #define VIRTIONET_CTRL_VLAN_DEL                     1           /**< Delete VLAN from filter table                   */
     271#define VIRTIONET_CTRL_VLAN                         2           /**< Control class: VLAN filtering                  */
     272#define VIRTIONET_CTRL_VLAN_ADD                     0           /**< Add VLAN to filter table                       */
     273#define VIRTIONET_CTRL_VLAN_DEL                     1           /**< Delete VLAN from filter table                  */
    274274/** @} */
    275275
    276276/** @name Control virtq: Gratuitous packet sending (VirtIO 1.0, 5.1.6.5.4)
    277277 * @{  */
    278 #define VIRTIONET_CTRL_ANNOUNCE                     3           /**< Control class: Gratuitous Packet Sending        */
    279 #define VIRTIONET_CTRL_ANNOUNCE_ACK                 0           /**< Gratuitous Packet Sending ACK                   */
     278#define VIRTIONET_CTRL_ANNOUNCE                     3           /**< Control class: Gratuitous Packet Sending       */
     279#define VIRTIONET_CTRL_ANNOUNCE_ACK                 0           /**< Gratuitous Packet Sending ACK                  */
    280280/** @} */
    281281
    282282struct virtio_net_ctrl_mq {
    283     uint16_t    uVirtqueuePairs;                                /**<  virtqueue_pairs                                */
     283    uint16_t    uVirtqueuePairs;                                /**<  virtqueue_pairs                               */
    284284};
    285285
    286286/** @name Control virtq: Receive steering in multiqueue mode (VirtIO 1.0, 5.1.6.5.5)
    287287 * @{  */
    288 #define VIRTIONET_CTRL_MQ                           4           /**< Control class: Receive steering                 */
    289 #define VIRTIONET_CTRL_MQ_VQ_PAIRS_SET              0           /**< Set number of TX/RX queues                      */
    290 #define VIRTIONET_CTRL_MQ_VQ_PAIRS_MIN              1           /**< Minimum number of TX/RX queues                  */
    291 #define VIRTIONET_CTRL_MQ_VQ_PAIRS_MAX         0x8000           /**< Maximum number of TX/RX queues                  */
     288#define VIRTIONET_CTRL_MQ                           4           /**< Control class: Receive steering                */
     289#define VIRTIONET_CTRL_MQ_VQ_PAIRS_SET              0           /**< Set number of TX/RX queues                     */
     290#define VIRTIONET_CTRL_MQ_VQ_PAIRS_MIN              1           /**< Minimum number of TX/RX queues                 */
     291#define VIRTIONET_CTRL_MQ_VQ_PAIRS_MAX         0x8000           /**< Maximum number of TX/RX queues                 */
    292292/** @} */
    293293
    294 uint64_t    uOffloads;                                          /**< offloads                                        */
     294uint64_t    uOffloads;                                          /**< offloads                                       */
    295295
    296296/** @name Control virtq: Setting Offloads State (VirtIO 1.0, 5.1.6.5.6.1)
    297297 * @{  */
    298 #define VIRTIO_NET_CTRL_GUEST_OFFLOADS             5            /**< Control class: Offloads state configuration     */
    299 #define VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET         0            /** Apply new offloads configuration                 */
     298#define VIRTIO_NET_CTRL_GUEST_OFFLOADS             5            /**< Control class: Offloads state configuration    */
     299#define VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET         0            /** Apply new offloads configuration                */
    300300/** @} */
    301301
     
    308308typedef struct VIRTIONETVIRTQ
    309309{
    310     struct VIRTIONETWORKER         *pWorker;                    /**< Pointer to R0 worker struct                      */
    311     struct VIRTIONETWORKERR3       *pWorkerR3;                  /**< Pointer to R3 worker struct                      */
    312     uint16_t                       idx;                         /**< Index of this queue                              */
     310    struct VIRTIONETWORKER         *pWorker;                    /**< Pointer to R0 worker struct                    */
     311    struct VIRTIONETWORKERR3       *pWorkerR3;                  /**< Pointer to R3 worker struct                    */
     312    uint16_t                       idx;                         /**< Index of this queue                            */
    313313    uint16_t                       align;
    314     char                           szName[VIRTIO_MAX_VIRTQ_NAME_SIZE]; /**< Virtq name                                */
    315     bool                           fCtlVirtq;                   /**< If set this queue is the control queue           */
    316     bool                           fHasWorker;                  /**< If set this queue has an associated worker       */
    317     bool                           fAttachedToVirtioCore;       /**< Set if queue attached to virtio core             */
     314    char                           szName[VIRTIO_MAX_VIRTQ_NAME_SIZE]; /**< Virtq name                              */
     315    bool                           fCtlVirtq;                   /**< If set this queue is the control queue         */
     316    bool                           fHasWorker;                  /**< If set this queue has an associated worker     */
     317    bool                           fAttachedToVirtioCore;       /**< Set if queue attached to virtio core           */
    318318    uint8_t                        pad;
    319319} VIRTIONETVIRTQ, *PVIRTIONETVIRTQ;
     
    324324typedef struct VIRTIONETWORKER
    325325{
    326     SUPSEMEVENT                     hEvtProcess;                /**< handle of associated sleep/wake-up semaphore      */
    327     PVIRTIONETVIRTQ                 pVirtq;                     /**< pointer to queue                                  */
    328     uint16_t                        idx;                        /**< Index of this worker                              */
    329     bool volatile                   fSleeping;                  /**< Flags whether worker thread is sleeping or not    */
    330     bool volatile                   fNotified;                  /**< Flags whether worker thread notified              */
    331     bool                            fAssigned;                  /**< Flags whether worker thread has been set up       */
     326    SUPSEMEVENT                     hEvtProcess;                /**< handle of associated sleep/wake-up semaphore   */
     327    PVIRTIONETVIRTQ                 pVirtq;                     /**< pointer to queue                               */
     328    uint16_t                        idx;                        /**< Index of this worker                           */
     329    bool volatile                   fSleeping;                  /**< Flags whether worker thread is sleeping or not */
     330    bool volatile                   fNotified;                  /**< Flags whether worker thread notified           */
     331    bool                            fAssigned;                  /**< Flags whether worker thread has been set up    */
    332332    uint8_t                         pad;
    333333} VIRTIONETWORKER;
     
    340340typedef struct VIRTIONETWORKERR3
    341341{
    342     R3PTRTYPE(PPDMTHREAD)           pThread;                    /**< pointer to worker thread's handle                 */
    343     PVIRTIONETVIRTQ                 pVirtq;                     /**< pointer to queue                                  */
    344     uint16_t                        idx;                        /**< Index of this worker                              */
     342    R3PTRTYPE(PPDMTHREAD)           pThread;                    /**< pointer to worker thread's handle              */
     343    PVIRTIONETVIRTQ                 pVirtq;                     /**< pointer to queue                               */
     344    uint16_t                        idx;                        /**< Index of this worker                           */
    345345    uint16_t                        pad;
    346346} VIRTIONETWORKERR3;
     
    629629    if (IS_RX_VIRTQ(uVirtqNbr))
    630630    {
    631         uint16_t cBufsAvailable = virtioCoreVirtqAvailCount(pDevIns, pVirtio, uVirtqNbr);
     631        uint16_t cBufsAvailable = virtioCoreVirtqAvailBufCount(pDevIns, pVirtio, uVirtqNbr);
    632632
    633633        if (cBufsAvailable)
    634634        {
    635635            Log10Func(("%s %u empty bufs added to %s by guest (notifying leaf device)\n",
    636                         pThis->szInst, cBufsAvailable, pVirtq->szName));
     636                       pThis->szInst, cBufsAvailable, pVirtq->szName));
    637637            virtioNetWakeupRxBufWaiter(pDevIns);
    638638        }
     
    884884    {
    885885
    886         pHlp->pfnPrintf(pHlp, "Internal pointers:\n\n");
    887 
    888         pHlp->pfnPrintf(pHlp, "    pDevIns ................... %p\n",  pDevIns);
    889         pHlp->pfnPrintf(pHlp, "    PVIRTIONET ................ %p\n",  pThis);
    890         pHlp->pfnPrintf(pHlp, "    PVIRTIONETCC .............. %p\n", pThisCC);
    891         pHlp->pfnPrintf(pHlp, "    pDrvBase .................. %p\n",  pThisCC->pDrvBase);
    892         pHlp->pfnPrintf(pHlp, "    pDrv ...................... %p\n",  pThisCC->pDrv);
    893         pHlp->pfnPrintf(pHlp, "    pDrv ...................... %p\n",  pThisCC->pDrv);
     886        pHlp->pfnPrintf(pHlp, "Internal Pointers:\n\n");
     887
     888        pHlp->pfnPrintf(pHlp, "    pDevIns ................... %p\n",   pDevIns);
     889        pHlp->pfnPrintf(pHlp, "    PVIRTIONET ................ %p\n",   pThis);
     890        pHlp->pfnPrintf(pHlp, "    PVIRTIONETCC .............. %p\n",   pThisCC);
     891        pHlp->pfnPrintf(pHlp, "    pDrvBase .................. %p\n",   pThisCC->pDrvBase);
     892        pHlp->pfnPrintf(pHlp, "    pDrv ...................... %p\n",   pThisCC->pDrv);
     893        pHlp->pfnPrintf(pHlp, "    pDrv ...................... %p\n",   pThisCC->pDrv);
    894894        pHlp->pfnPrintf(pHlp, "\n");
    895         pHlp->pfnPrintf(pHlp, "Misc state\n");
    896         pHlp->pfnPrintf(pHlp, "\n");
    897         pHlp->pfnPrintf(pHlp, "    fVirtioReady .............. %d\n",  pThis->fVirtioReady);
    898         pHlp->pfnPrintf(pHlp, "    fGenUpdatePending ......... %d\n",  pThis->Virtio.fGenUpdatePending);
    899         pHlp->pfnPrintf(pHlp, "    fMsiSupport ............... %d\n",  pThis->Virtio.fMsiSupport);
    900         pHlp->pfnPrintf(pHlp, "    uConfigGeneration ......... %d\n",  pThis->Virtio.uConfigGeneration);
    901         pHlp->pfnPrintf(pHlp, "    uDeviceStatus ............. 0x%x\n", pThis->Virtio.uDeviceStatus);
    902         pHlp->pfnPrintf(pHlp, "    cVirtqPairs .,............. %d\n",  pThis->cVirtqPairs);
    903         pHlp->pfnPrintf(pHlp, "    cVirtVirtqs .,............. %d\n",  pThis->cVirtVirtqs);
    904         pHlp->pfnPrintf(pHlp, "    cWorkers .................. %d\n",  pThis->cWorkers);
    905         pHlp->pfnPrintf(pHlp, "    MMIO mapping name ......... %d\n",  pThisCC->Virtio.pcszMmioName);
    906895
    907896    }
     
    920909                pThis->fQuiescing ? ")" : "");
    921910        pHlp->pfnPrintf(pHlp, "    Resetting: ................ %s\n", pThis->fResetting ? "true" : "false");
     911        pHlp->pfnPrintf(pHlp, "\n");
     912        pHlp->pfnPrintf(pHlp, "Misc state\n");
     913        pHlp->pfnPrintf(pHlp, "\n");
     914        pHlp->pfnPrintf(pHlp, "    fVirtioReady .............. %d\n",   pThis->fVirtioReady);
     915        pHlp->pfnPrintf(pHlp, "    fGenUpdatePending ......... %d\n",   pThis->Virtio.fGenUpdatePending);
     916        pHlp->pfnPrintf(pHlp, "    fMsiSupport ............... %d\n",   pThis->Virtio.fMsiSupport);
     917        pHlp->pfnPrintf(pHlp, "    uConfigGeneration ......... %d\n",   pThis->Virtio.uConfigGeneration);
     918        pHlp->pfnPrintf(pHlp, "    uDeviceStatus ............. 0x%x\n", pThis->Virtio.uDeviceStatus);
     919        pHlp->pfnPrintf(pHlp, "    cVirtqPairs .,............. %d\n",   pThis->cVirtqPairs);
     920        pHlp->pfnPrintf(pHlp, "    cVirtVirtqs .,............. %d\n",   pThis->cVirtVirtqs);
     921        pHlp->pfnPrintf(pHlp, "    cWorkers .................. %d\n",   pThis->cWorkers);
     922        pHlp->pfnPrintf(pHlp, "    MMIO mapping name ......... %d\n",   pThisCC->Virtio.pcszMmioName);
    922923        pHlp->pfnPrintf(pHlp, "\n");
    923924    }
     
    14971498static bool virtioNetR3RxBufsAvail(PPDMDEVINS pDevIns, PVIRTIONET pThis, PVIRTIONETVIRTQ *pRxVirtq)
    14981499{
    1499     for (int uVirtqNbrPair = 0; uVirtqNbrPair < pThis->cVirtqPairs; uVirtqNbrPair++)
    1500     {
    1501         PVIRTIONETVIRTQ pThisRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqNbrPair)];
     1500    for (int uVirtqPair = 0; uVirtqPair < pThis->cVirtqPairs; uVirtqPair++)
     1501    {
     1502        PVIRTIONETVIRTQ pThisRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqPair)];
    15021503        if (RT_SUCCESS(virtioNetR3CheckRxBufsAvail(pDevIns, pThis, pThisRxVirtq)))
    15031504        {
     
    15511552            RTThreadSleep(1);
    15521553        }
    1553 LogFunc(("\n\n\n********** WAKEN!!!!! ********\n\n\n"));
    15541554    } while (virtioNetIsOperational(pThis, pDevIns));
    15551555
     
    17431743        PVIRTQBUF pVirtqBuf = NULL;
    17441744
    1745         int rc = virtioCoreR3VirtqBufGet(pDevIns, &pThis->Virtio, pRxVirtq->idx, &pVirtqBuf, true);
     1745        int rc = virtioCoreR3VirtqAvailBufGet(pDevIns, &pThis->Virtio, pRxVirtq->idx, &pVirtqBuf, true);
    17461746        AssertMsgReturn(rc == VINF_SUCCESS || rc == VERR_NOT_AVAILABLE, ("%Rrc\n", rc), rc);
    17471747
     
    17521752                            VERR_INTERNAL_ERROR);
    17531753
    1754         /* Length of first seg of guest Rx buf should never be less than sizeof(virtio_net_pkt_hdr).
     1754        /* Length of first seg of guest Rx S/G buf should never be less than sizeof(virtio_net_pkt_hdr).
    17551755         * Otherwise code has to become more complicated, e.g. locate & cache seg idx & offset of
    1756          * virtio_net_header.num_buffers, to defer updating (in GCPhys). Re-visit if needed */
     1756         * virtio_net_header.num_buffers, to facilitate deferring updating GCPhys memory. Re-visit if needed */
    17571757
    17581758        AssertMsgReturnStmt(pVirtqBuf->pSgPhysReturn->paSegs[0].cbSeg >= sizeof(VIRTIONETPKTHDR),
     
    17771777                memcpy(paVirtSegsToGuest[0].pvSeg, rxPktHdr, cbHdr);
    17781778
    1779                 /* Calculate & cache addr of field to update after final value is known, in GCPhys mem */
     1779                /* Calculate & cache GCPhys addr of field to update after final value is known */
    17801780                GCPhysPktHdrNumBuffers = pVirtqBuf->pSgPhysReturn->paSegs[0].GCPhys
    17811781                                         + RT_UOFFSETOF(VIRTIONETPKTHDR, uNumBuffers);
     
    18041804            Log7Func(("Send Rx pkt to guest...\n"));
    18051805            STAM_PROFILE_START(&pThis->StatReceiveStore, a);
    1806             virtioCoreR3VirtqBufPut(pDevIns, &pThis->Virtio, pRxVirtq->idx,
    1807                                  pVirtSegBufToGuest, pVirtqBuf, true /* fFence */);
     1806            virtioCoreR3VirtqUsedBufPut(pDevIns, &pThis->Virtio, pRxVirtq->idx,
     1807                                    pVirtSegBufToGuest, pVirtqBuf, true /* fFence */);
    18081808            STAM_PROFILE_STOP(&pThis->StatReceiveStore, a);
    18091809
     
    18281828                  rc);
    18291829
    1830     virtioCoreVirtqSync(pDevIns, &pThis->Virtio, pRxVirtq->idx);
     1830    virtioCoreVirtqSyncUsedRing(pDevIns, &pThis->Virtio, pRxVirtq->idx);
    18311831
    18321832    return VINF_SUCCESS;
     
    18501850 */
    18511851static int virtioNetR3HandleRxPacket(PPDMDEVINS pDevIns, PVIRTIONET pThis, PVIRTIONETCC pThisCC,
    1852                                 const void *pvBuf, size_t cb, PCPDMNETWORKGSO pGso, PVIRTIONETVIRTQ pRxVirtq)
     1852                                     const void *pvBuf, size_t cb, PCPDMNETWORKGSO pGso, PVIRTIONETVIRTQ pRxVirtq)
    18531853{
    18541854    RT_NOREF(pThisCC);
     
    19191919    PPDMDEVINS      pDevIns = pThisCC->pDevIns;
    19201920    PVIRTIONET      pThis   = PDMDEVINS_2_DATA(pDevIns, PVIRTIONET);
    1921 LogFunc(("\n"));
    19221921    if (!pThis->fVirtioReady)
    19231922    {
     
    19631962              selection algorithm feasible or even necessary to prevent starvation? */
    19641963
    1965     for (int uVirtqNbrPair = 0; uVirtqNbrPair < pThis->cVirtqPairs; uVirtqNbrPair++)
    1966     {
    1967 
    1968         PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqNbrPair)];
     1964    for (int uVirtqPair = 0; uVirtqPair < pThis->cVirtqPairs; uVirtqPair++)
     1965    {
     1966
     1967        PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqPair)];
    19691968        if (RT_SUCCESS(!virtioNetR3CheckRxBufsAvail(pDevIns, pThis, pRxVirtq)))
    19701969        {
     
    20001999
    20012000/* Read physical bytes from the out segment(s) of descriptor chain */
    2002 static void virtioNetR3PullChain(PPDMDEVINS pDevIns, PVIRTIONET pThis, PVIRTQBUF pVirtqBuf, void *pv, size_t cb)
     2001static void virtqNetR3PullBytesFromVirtqBuf(PPDMDEVINS pDevIns, PVIRTIONET pThis, PVIRTQBUF pVirtqBuf,
     2002                                              void *pv, size_t cb)
    20032003{
    20042004    uint8_t *pb = (uint8_t *)pv;
     
    20072007    {
    20082008        size_t cbSeg = cbLim;
    2009         RTGCPHYS GCPhys = virtioCoreSgBufGetNextSegment(pVirtqBuf->pSgPhysSend, &cbSeg);
     2009        RTGCPHYS GCPhys = virtioCoreGCPhysChainGetNextSegment(pVirtqBuf->pSgPhysSend, &cbSeg);
    20102010        PDMDevHlpPCIPhysRead(pDevIns, GCPhys, pb, cbSeg);
    20112011        pb += cbSeg;
     
    20462046
    20472047    uint8_t fOn, fPromiscChanged = false;
    2048     virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &fOn, (size_t)RT_MIN(pVirtqBuf->cbPhysSend, sizeof(fOn)));
     2048    virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &fOn, (size_t)RT_MIN(pVirtqBuf->cbPhysSend, sizeof(fOn)));
    20492049
    20502050    switch(pCtrlPktHdr->uCmd)
     
    21172117            /* Set default Rx filter MAC */
    21182118            ASSERT_CTRL_ADDR_SET(cbRemaining >= sizeof(VIRTIONET_CTRL_MAC_TABLE_LEN));
    2119             virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &pThis->rxFilterMacDefault, sizeof(VIRTIONET_CTRL_MAC_TABLE_LEN));
     2119            virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &pThis->rxFilterMacDefault, sizeof(VIRTIONET_CTRL_MAC_TABLE_LEN));
    21202120            break;
    21212121        }
     
    21262126            /* Load unicast MAC filter table */
    21272127            ASSERT_CTRL_TABLE_SET(cbRemaining >= sizeof(cMacs));
    2128             virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs));
     2128            virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs));
    21292129            cbRemaining -= sizeof(cMacs);
    21302130            Log7Func(("%s Guest provided %d unicast MAC Table entries\n", pThis->szInst, cMacs));
     
    21332133                uint32_t cbMacs = cMacs * sizeof(RTMAC);
    21342134                ASSERT_CTRL_TABLE_SET(cbRemaining >= cbMacs);
    2135                 virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &pThis->aMacUnicastFilter, cbMacs);
     2135                virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &pThis->aMacUnicastFilter, cbMacs);
    21362136                cbRemaining -= cbMacs;
    21372137            }
     
    21402140            /* Load multicast MAC filter table */
    21412141            ASSERT_CTRL_TABLE_SET(cbRemaining >= sizeof(cMacs));
    2142             virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs));
     2142            virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs));
    21432143            cbRemaining -= sizeof(cMacs);
    21442144            Log10Func(("%s Guest provided %d multicast MAC Table entries\n", pThis->szInst, cMacs));
     
    21472147                uint32_t cbMacs = cMacs * sizeof(RTMAC);
    21482148                ASSERT_CTRL_TABLE_SET(cbRemaining >= cbMacs);
    2149                 virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &pThis->aMacMulticastFilter, cbMacs);
     2149                virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &pThis->aMacMulticastFilter, cbMacs);
    21502150                cbRemaining -= cbMacs;
    21512151            }
     
    21772177    AssertMsgReturn(cbRemaining > sizeof(uVlanId),
    21782178        ("DESC chain too small for VIRTIO_NET_CTRL_VLAN cmd processing"), VIRTIONET_ERROR);
    2179     virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &uVlanId, sizeof(uVlanId));
     2179    virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &uVlanId, sizeof(uVlanId));
    21802180    AssertMsgReturn(uVlanId > VIRTIONET_MAX_VLAN_ID,
    21812181        ("%s VLAN ID out of range (VLAN ID=%u)\n", pThis->szInst, uVlanId), VIRTIONET_ERROR);
     
    22212221                        ("DESC chain too small for CTRL pkt header"));
    22222222
    2223     virtioNetR3PullChain(pDevIns, pThis, pVirtqBuf, pCtrlPktHdr,
     2223    virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, pCtrlPktHdr,
    22242224                         RT_MIN(pVirtqBuf->cbPhysSend, sizeof(VIRTIONET_CTRL_HDR_T)));
    22252225
     
    22852285    RTSgBufInit(pReturnSegBuf, paReturnSegs, cSegs);
    22862286
    2287     virtioCoreR3VirtqBufPut(pDevIns, &pThis->Virtio, CTRLQIDX, pReturnSegBuf, pVirtqBuf, true /* fFence */);
    2288     virtioCoreVirtqSync(pDevIns, &pThis->Virtio, CTRLQIDX);
     2287    virtioCoreR3VirtqUsedBufPut(pDevIns, &pThis->Virtio, CTRLQIDX, pReturnSegBuf, pVirtqBuf, true /* fFence */);
     2288    virtioCoreVirtqSyncUsedRing(pDevIns, &pThis->Virtio, CTRLQIDX);
    22892289
    22902290    for (int i = 0; i < cSegs; i++)
     
    24352435    }
    24362436
    2437     int cPkts = virtioCoreVirtqAvailCount(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx);
     2437    int cPkts = virtioCoreVirtqAvailBufCount(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx);
    24382438    if (!cPkts)
    24392439    {
     
    24522452    int rc;
    24532453    PVIRTQBUF pVirtqBuf = NULL;
    2454     while ((rc = virtioCoreR3VirtqBufPeek(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx, &pVirtqBuf)) == VINF_SUCCESS)
     2454    while ((rc = virtioCoreR3VirtqAvailBufPeek(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx, &pVirtqBuf)) == VINF_SUCCESS)
    24552455    {
    24562456        Log10Func(("%s fetched descriptor chain from %s\n", pThis->szInst, pTxVirtq->szName));
     
    24842484            if (RT_FAILURE(rc))
    24852485                return;
    2486             virtioCoreSgBufAdvance(pSgPhysSend, sizeof(PktHdr));
     2486            virtioCoreGCPhysChainAdvance(pSgPhysSend, sizeof(PktHdr));
    24872487
    24882488            PDMNETWORKGSO  Gso, *pGso = virtioNetR3SetupGsoCtx(&Gso, &PktHdr);
     
    25092509                                         (RTGCPHYS)pSgPhysSend->GCPhysCur,
    25102510                                         ((uint8_t *)pSgBufToPdmLeafDevice->aSegs[0].pvSeg) + uOffset, cbCopied);
    2511                     virtioCoreSgBufAdvance(pSgPhysSend, cbCopied);
     2511                    virtioCoreGCPhysChainAdvance(pSgPhysSend, cbCopied);
    25122512                    cbRemain -= cbCopied;
    25132513                    uOffset += cbCopied;
     
    25372537            }
    25382538
    2539             /* Remove this descriptor chain from the available ring */
    2540             virtioCoreR3VirtqBufSkip(pVirtio, pTxVirtq->idx);
    2541 
    2542             /* No data to return to guest, but call is needed put elem (e.g. desc chain) on used ring */
    2543             virtioCoreR3VirtqBufPut(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx, NULL, pVirtqBuf, true /* fFence */);
     2539            /* Point to next descriptor in avail ring of virtq */
     2540            virtioCoreR3VirtqAvailBufNext(pVirtio, pTxVirtq->idx);
     2541
     2542            /* No data to return to guest, but necessary to put elem (e.g. desc chain head idx) on used ring */
     2543            virtioCoreR3VirtqUsedBufPut(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx, NULL, pVirtqBuf, true /* fFence */);
    25442544
    25452545            /* Update used ring idx and notify guest that we've transmitted the data it sent */
    2546             virtioCoreVirtqSync(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx);
     2546            virtioCoreVirtqSyncUsedRing(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx);
    25472547        }
    25482548
     
    27722772    pVirtq->pWorker    = pWorker;
    27732773    pVirtq->pWorkerR3  = pWorkerR3;
    2774     pWorker->fAssigned = true;
     2774    pWorker->fAssigned = true;  /* Because worker's state held in fixed-size array w/empty slots */
    27752775
    27762776    LogFunc(("%s pThread: %p\n", pVirtq->szName, pWorkerR3->pThread));
     
    27942794
    27952795    uint16_t idxWorker = CTRLWIDX + 1;
    2796     for (uint16_t uVirtqNbrPair = 0; uVirtqNbrPair < pThis->cVirtqPairs; uVirtqNbrPair++, idxWorker++)
    2797     {
    2798         PVIRTIONETVIRTQ pTxVirtq = &pThis->aVirtqs[TXQIDX(uVirtqNbrPair)];
    2799         PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqNbrPair)];
     2796    for (uint16_t uVirtqPair = 0; uVirtqPair < pThis->cVirtqPairs; uVirtqPair++, idxWorker++)
     2797    {
     2798        PVIRTIONETVIRTQ pTxVirtq = &pThis->aVirtqs[TXQIDX(uVirtqPair)];
     2799        PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqPair)];
    28002800
    28012801        rc = virtioNetR3CreateOneWorkerThread(pDevIns, pThis, idxWorker, &pThis->aWorkers[idxWorker],
     
    28062806        pRxVirtq->fHasWorker = false;
    28072807    }
    2808     pThis->cWorkers = pThis->cVirtqPairs + 1 /* Control virtq */;
     2808    pThis->cWorkers = pThis->cVirtqPairs + 1 /* One control virtq */;
    28092809    return rc;
    28102810}
     
    28602860                 Log10Func(("%s %s worker woken. Fetching desc chain\n", pThis->szInst, pVirtq->szName));
    28612861                 PVIRTQBUF pVirtqBuf = NULL;
    2862                  int rc = virtioCoreR3VirtqBufGet(pDevIns, &pThis->Virtio, pVirtq->idx, &pVirtqBuf, true);
     2862                 int rc = virtioCoreR3VirtqAvailBufGet(pDevIns, &pThis->Virtio, pVirtq->idx, &pVirtqBuf, true);
    28632863                 if (rc == VERR_NOT_AVAILABLE)
    28642864                 {
     
    30863086    RTStrPrintf(pThis->szInst, sizeof(pThis->szInst), "VNET%d", iInstance);
    30873087
    3088 // Temporary for less logging clutter for singled-instance debugging
    3089 *pThis->szInst = '\0';
     3088    /** todo Remove next line (temporary hack used for less logging clutter for single-instance debugging) */
     3089    *pThis->szInst = '\0';
    30903090
    30913091    pThisCC->pDevIns     = pDevIns;
     
    31443144
    31453145    /*
    3146      * Do core virtio initialization.
     3146     * Configure Virtio core (generic Virtio queue and infrastructure management) parameters.
    31473147     */
    3148 
    31493148#   if FEATURE_OFFERED(STATUS)
    31503149        pThis->virtioNetConfig.uStatus = 0;
     
    31553154#   endif
    31563155
    3157     /* Initialize the generic Virtio core: */
    31583156    pThisCC->Virtio.pfnVirtqNotified        = virtioNetVirtqNotified;
    31593157    pThisCC->Virtio.pfnStatusChanged        = virtioNetR3StatusChanged;
     
    31663164    VirtioPciParams.uClassSub               = PCI_CLASS_SUB_NET_ETHERNET_CONTROLLER;
    31673165    VirtioPciParams.uClassProg              = PCI_CLASS_PROG_UNSPECIFIED;
    3168     VirtioPciParams.uSubsystemId            = PCI_DEVICE_ID_VIRTIONET_HOST;  /* VirtIO 1.0 spec allows PCI Device ID here */
     3166    VirtioPciParams.uSubsystemId            = PCI_DEVICE_ID_VIRTIONET_HOST;  /* VirtIO 1.0 allows PCI Device ID here */
    31693167    VirtioPciParams.uInterruptLine          = 0x00;
    31703168    VirtioPciParams.uInterruptPin           = 0x01;
    31713169
    3172     /*
    3173      * Create the semaphore that will be used to synchronize/throttle
    3174      * the downstream LUN's Rx waiter thread.
    3175      */
     3170    /* Create semaphore used to synchronize/throttle the downstream LUN's Rx waiter thread. */
    31763171    rc = PDMDevHlpSUPSemEventCreate(pDevIns, &pThis->hEventRxDescAvail);
    31773172    if (RT_FAILURE(rc))
    31783173        return PDMDEV_SET_ERROR(pDevIns, rc, N_("Failed to create event semaphore"));
    31793174
    3180     /*
    3181      * Initialize VirtIO core. This will result in a "status changed" callback
    3182      * when VirtIO is ready, at which time the Rx queue and ctrl queue worker threads will be created.
    3183      */
     3175    /* Initialize VirtIO core. (pfnStatusChanged callback when VirtIO and guest are ready) */
    31843176    rc = virtioCoreR3Init(pDevIns, &pThis->Virtio, &pThisCC->Virtio, &VirtioPciParams, pThis->szInst,
    31853177                          VIRTIONET_HOST_FEATURES_OFFERED,
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette