Changeset 84876 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Jun 19, 2020 6:17:29 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138708
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevVirtioNet_1_0.cpp
r84819 r84876 74 74 75 75 #define IS_VIRTQ_EMPTY(pDevIns, pVirtio, uVirtqNbr) \ 76 (virtioCoreVirtqAvail Count(pDevIns, pVirtio, uVirtqNbr) == 0)76 (virtioCoreVirtqAvailBufCount(pDevIns, pVirtio, uVirtqNbr) == 0) 77 77 78 78 #define SET_LINK_UP(pState) \ … … 218 218 #pragma pack(1) 219 219 struct 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 */ 227 227 }; 228 228 #pragma pack() … … 262 262 /** @name Control virtq: MAC address filtering flags (VirtIO 1.0, 5.1.6.5.2) 263 263 * @{ */ 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 */ 267 267 /** @} */ 268 268 269 269 /** @name Control virtq: MAC address filtering flags (VirtIO 1.0, 5.1.6.5.3) 270 270 * @{ */ 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 */ 274 274 /** @} */ 275 275 276 276 /** @name Control virtq: Gratuitous packet sending (VirtIO 1.0, 5.1.6.5.4) 277 277 * @{ */ 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 */ 280 280 /** @} */ 281 281 282 282 struct virtio_net_ctrl_mq { 283 uint16_t uVirtqueuePairs; /**< virtqueue_pairs 283 uint16_t uVirtqueuePairs; /**< virtqueue_pairs */ 284 284 }; 285 285 286 286 /** @name Control virtq: Receive steering in multiqueue mode (VirtIO 1.0, 5.1.6.5.5) 287 287 * @{ */ 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 */ 292 292 /** @} */ 293 293 294 uint64_t uOffloads; /**< offloads 294 uint64_t uOffloads; /**< offloads */ 295 295 296 296 /** @name Control virtq: Setting Offloads State (VirtIO 1.0, 5.1.6.5.6.1) 297 297 * @{ */ 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 */ 300 300 /** @} */ 301 301 … … 308 308 typedef struct VIRTIONETVIRTQ 309 309 { 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 */ 313 313 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 */ 318 318 uint8_t pad; 319 319 } VIRTIONETVIRTQ, *PVIRTIONETVIRTQ; … … 324 324 typedef struct VIRTIONETWORKER 325 325 { 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 */ 332 332 uint8_t pad; 333 333 } VIRTIONETWORKER; … … 340 340 typedef struct VIRTIONETWORKERR3 341 341 { 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 */ 345 345 uint16_t pad; 346 346 } VIRTIONETWORKERR3; … … 629 629 if (IS_RX_VIRTQ(uVirtqNbr)) 630 630 { 631 uint16_t cBufsAvailable = virtioCoreVirtqAvail Count(pDevIns, pVirtio, uVirtqNbr);631 uint16_t cBufsAvailable = virtioCoreVirtqAvailBufCount(pDevIns, pVirtio, uVirtqNbr); 632 632 633 633 if (cBufsAvailable) 634 634 { 635 635 Log10Func(("%s %u empty bufs added to %s by guest (notifying leaf device)\n", 636 636 pThis->szInst, cBufsAvailable, pVirtq->szName)); 637 637 virtioNetWakeupRxBufWaiter(pDevIns); 638 638 } … … 884 884 { 885 885 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); 894 894 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);906 895 907 896 } … … 920 909 pThis->fQuiescing ? ")" : ""); 921 910 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); 922 923 pHlp->pfnPrintf(pHlp, "\n"); 923 924 } … … 1497 1498 static bool virtioNetR3RxBufsAvail(PPDMDEVINS pDevIns, PVIRTIONET pThis, PVIRTIONETVIRTQ *pRxVirtq) 1498 1499 { 1499 for (int uVirtq NbrPair = 0; uVirtqNbrPair < pThis->cVirtqPairs; uVirtqNbrPair++)1500 { 1501 PVIRTIONETVIRTQ pThisRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtq NbrPair)];1500 for (int uVirtqPair = 0; uVirtqPair < pThis->cVirtqPairs; uVirtqPair++) 1501 { 1502 PVIRTIONETVIRTQ pThisRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqPair)]; 1502 1503 if (RT_SUCCESS(virtioNetR3CheckRxBufsAvail(pDevIns, pThis, pThisRxVirtq))) 1503 1504 { … … 1551 1552 RTThreadSleep(1); 1552 1553 } 1553 LogFunc(("\n\n\n********** WAKEN!!!!! ********\n\n\n"));1554 1554 } while (virtioNetIsOperational(pThis, pDevIns)); 1555 1555 … … 1743 1743 PVIRTQBUF pVirtqBuf = NULL; 1744 1744 1745 int rc = virtioCoreR3Virtq BufGet(pDevIns, &pThis->Virtio, pRxVirtq->idx, &pVirtqBuf, true);1745 int rc = virtioCoreR3VirtqAvailBufGet(pDevIns, &pThis->Virtio, pRxVirtq->idx, &pVirtqBuf, true); 1746 1746 AssertMsgReturn(rc == VINF_SUCCESS || rc == VERR_NOT_AVAILABLE, ("%Rrc\n", rc), rc); 1747 1747 … … 1752 1752 VERR_INTERNAL_ERROR); 1753 1753 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). 1755 1755 * 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 */ 1757 1757 1758 1758 AssertMsgReturnStmt(pVirtqBuf->pSgPhysReturn->paSegs[0].cbSeg >= sizeof(VIRTIONETPKTHDR), … … 1777 1777 memcpy(paVirtSegsToGuest[0].pvSeg, rxPktHdr, cbHdr); 1778 1778 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 */ 1780 1780 GCPhysPktHdrNumBuffers = pVirtqBuf->pSgPhysReturn->paSegs[0].GCPhys 1781 1781 + RT_UOFFSETOF(VIRTIONETPKTHDR, uNumBuffers); … … 1804 1804 Log7Func(("Send Rx pkt to guest...\n")); 1805 1805 STAM_PROFILE_START(&pThis->StatReceiveStore, a); 1806 virtioCoreR3Virtq BufPut(pDevIns, &pThis->Virtio, pRxVirtq->idx,1807 pVirtSegBufToGuest, pVirtqBuf, true /* fFence */);1806 virtioCoreR3VirtqUsedBufPut(pDevIns, &pThis->Virtio, pRxVirtq->idx, 1807 pVirtSegBufToGuest, pVirtqBuf, true /* fFence */); 1808 1808 STAM_PROFILE_STOP(&pThis->StatReceiveStore, a); 1809 1809 … … 1828 1828 rc); 1829 1829 1830 virtioCoreVirtqSync (pDevIns, &pThis->Virtio, pRxVirtq->idx);1830 virtioCoreVirtqSyncUsedRing(pDevIns, &pThis->Virtio, pRxVirtq->idx); 1831 1831 1832 1832 return VINF_SUCCESS; … … 1850 1850 */ 1851 1851 static 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) 1853 1853 { 1854 1854 RT_NOREF(pThisCC); … … 1919 1919 PPDMDEVINS pDevIns = pThisCC->pDevIns; 1920 1920 PVIRTIONET pThis = PDMDEVINS_2_DATA(pDevIns, PVIRTIONET); 1921 LogFunc(("\n"));1922 1921 if (!pThis->fVirtioReady) 1923 1922 { … … 1963 1962 selection algorithm feasible or even necessary to prevent starvation? */ 1964 1963 1965 for (int uVirtq NbrPair = 0; uVirtqNbrPair < pThis->cVirtqPairs; uVirtqNbrPair++)1966 { 1967 1968 PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtq NbrPair)];1964 for (int uVirtqPair = 0; uVirtqPair < pThis->cVirtqPairs; uVirtqPair++) 1965 { 1966 1967 PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtqPair)]; 1969 1968 if (RT_SUCCESS(!virtioNetR3CheckRxBufsAvail(pDevIns, pThis, pRxVirtq))) 1970 1969 { … … 2000 1999 2001 2000 /* 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) 2001 static void virtqNetR3PullBytesFromVirtqBuf(PPDMDEVINS pDevIns, PVIRTIONET pThis, PVIRTQBUF pVirtqBuf, 2002 void *pv, size_t cb) 2003 2003 { 2004 2004 uint8_t *pb = (uint8_t *)pv; … … 2007 2007 { 2008 2008 size_t cbSeg = cbLim; 2009 RTGCPHYS GCPhys = virtioCore SgBufGetNextSegment(pVirtqBuf->pSgPhysSend, &cbSeg);2009 RTGCPHYS GCPhys = virtioCoreGCPhysChainGetNextSegment(pVirtqBuf->pSgPhysSend, &cbSeg); 2010 2010 PDMDevHlpPCIPhysRead(pDevIns, GCPhys, pb, cbSeg); 2011 2011 pb += cbSeg; … … 2046 2046 2047 2047 uint8_t fOn, fPromiscChanged = false; 2048 virt ioNetR3PullChain(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))); 2049 2049 2050 2050 switch(pCtrlPktHdr->uCmd) … … 2117 2117 /* Set default Rx filter MAC */ 2118 2118 ASSERT_CTRL_ADDR_SET(cbRemaining >= sizeof(VIRTIONET_CTRL_MAC_TABLE_LEN)); 2119 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &pThis->rxFilterMacDefault, sizeof(VIRTIONET_CTRL_MAC_TABLE_LEN));2119 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &pThis->rxFilterMacDefault, sizeof(VIRTIONET_CTRL_MAC_TABLE_LEN)); 2120 2120 break; 2121 2121 } … … 2126 2126 /* Load unicast MAC filter table */ 2127 2127 ASSERT_CTRL_TABLE_SET(cbRemaining >= sizeof(cMacs)); 2128 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs));2128 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs)); 2129 2129 cbRemaining -= sizeof(cMacs); 2130 2130 Log7Func(("%s Guest provided %d unicast MAC Table entries\n", pThis->szInst, cMacs)); … … 2133 2133 uint32_t cbMacs = cMacs * sizeof(RTMAC); 2134 2134 ASSERT_CTRL_TABLE_SET(cbRemaining >= cbMacs); 2135 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &pThis->aMacUnicastFilter, cbMacs);2135 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &pThis->aMacUnicastFilter, cbMacs); 2136 2136 cbRemaining -= cbMacs; 2137 2137 } … … 2140 2140 /* Load multicast MAC filter table */ 2141 2141 ASSERT_CTRL_TABLE_SET(cbRemaining >= sizeof(cMacs)); 2142 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs));2142 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &cMacs, sizeof(cMacs)); 2143 2143 cbRemaining -= sizeof(cMacs); 2144 2144 Log10Func(("%s Guest provided %d multicast MAC Table entries\n", pThis->szInst, cMacs)); … … 2147 2147 uint32_t cbMacs = cMacs * sizeof(RTMAC); 2148 2148 ASSERT_CTRL_TABLE_SET(cbRemaining >= cbMacs); 2149 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &pThis->aMacMulticastFilter, cbMacs);2149 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &pThis->aMacMulticastFilter, cbMacs); 2150 2150 cbRemaining -= cbMacs; 2151 2151 } … … 2177 2177 AssertMsgReturn(cbRemaining > sizeof(uVlanId), 2178 2178 ("DESC chain too small for VIRTIO_NET_CTRL_VLAN cmd processing"), VIRTIONET_ERROR); 2179 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, &uVlanId, sizeof(uVlanId));2179 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, &uVlanId, sizeof(uVlanId)); 2180 2180 AssertMsgReturn(uVlanId > VIRTIONET_MAX_VLAN_ID, 2181 2181 ("%s VLAN ID out of range (VLAN ID=%u)\n", pThis->szInst, uVlanId), VIRTIONET_ERROR); … … 2221 2221 ("DESC chain too small for CTRL pkt header")); 2222 2222 2223 virt ioNetR3PullChain(pDevIns, pThis, pVirtqBuf, pCtrlPktHdr,2223 virtqNetR3PullBytesFromVirtqBuf(pDevIns, pThis, pVirtqBuf, pCtrlPktHdr, 2224 2224 RT_MIN(pVirtqBuf->cbPhysSend, sizeof(VIRTIONET_CTRL_HDR_T))); 2225 2225 … … 2285 2285 RTSgBufInit(pReturnSegBuf, paReturnSegs, cSegs); 2286 2286 2287 virtioCoreR3Virtq BufPut(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); 2289 2289 2290 2290 for (int i = 0; i < cSegs; i++) … … 2435 2435 } 2436 2436 2437 int cPkts = virtioCoreVirtqAvail Count(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx);2437 int cPkts = virtioCoreVirtqAvailBufCount(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx); 2438 2438 if (!cPkts) 2439 2439 { … … 2452 2452 int rc; 2453 2453 PVIRTQBUF pVirtqBuf = NULL; 2454 while ((rc = virtioCoreR3Virtq BufPeek(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx, &pVirtqBuf)) == VINF_SUCCESS)2454 while ((rc = virtioCoreR3VirtqAvailBufPeek(pVirtio->pDevInsR3, pVirtio, pTxVirtq->idx, &pVirtqBuf)) == VINF_SUCCESS) 2455 2455 { 2456 2456 Log10Func(("%s fetched descriptor chain from %s\n", pThis->szInst, pTxVirtq->szName)); … … 2484 2484 if (RT_FAILURE(rc)) 2485 2485 return; 2486 virtioCore SgBufAdvance(pSgPhysSend, sizeof(PktHdr));2486 virtioCoreGCPhysChainAdvance(pSgPhysSend, sizeof(PktHdr)); 2487 2487 2488 2488 PDMNETWORKGSO Gso, *pGso = virtioNetR3SetupGsoCtx(&Gso, &PktHdr); … … 2509 2509 (RTGCPHYS)pSgPhysSend->GCPhysCur, 2510 2510 ((uint8_t *)pSgBufToPdmLeafDevice->aSegs[0].pvSeg) + uOffset, cbCopied); 2511 virtioCore SgBufAdvance(pSgPhysSend, cbCopied);2511 virtioCoreGCPhysChainAdvance(pSgPhysSend, cbCopied); 2512 2512 cbRemain -= cbCopied; 2513 2513 uOffset += cbCopied; … … 2537 2537 } 2538 2538 2539 /* Remove this descriptor chain from the available ring*/2540 virtioCoreR3Virtq BufSkip(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 virtioCoreR3Virtq BufPut(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 */); 2544 2544 2545 2545 /* 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); 2547 2547 } 2548 2548 … … 2772 2772 pVirtq->pWorker = pWorker; 2773 2773 pVirtq->pWorkerR3 = pWorkerR3; 2774 pWorker->fAssigned = true; 2774 pWorker->fAssigned = true; /* Because worker's state held in fixed-size array w/empty slots */ 2775 2775 2776 2776 LogFunc(("%s pThread: %p\n", pVirtq->szName, pWorkerR3->pThread)); … … 2794 2794 2795 2795 uint16_t idxWorker = CTRLWIDX + 1; 2796 for (uint16_t uVirtq NbrPair = 0; uVirtqNbrPair < pThis->cVirtqPairs; uVirtqNbrPair++, idxWorker++)2797 { 2798 PVIRTIONETVIRTQ pTxVirtq = &pThis->aVirtqs[TXQIDX(uVirtq NbrPair)];2799 PVIRTIONETVIRTQ pRxVirtq = &pThis->aVirtqs[RXQIDX(uVirtq NbrPair)];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)]; 2800 2800 2801 2801 rc = virtioNetR3CreateOneWorkerThread(pDevIns, pThis, idxWorker, &pThis->aWorkers[idxWorker], … … 2806 2806 pRxVirtq->fHasWorker = false; 2807 2807 } 2808 pThis->cWorkers = pThis->cVirtqPairs + 1 /* Control virtq */;2808 pThis->cWorkers = pThis->cVirtqPairs + 1 /* One control virtq */; 2809 2809 return rc; 2810 2810 } … … 2860 2860 Log10Func(("%s %s worker woken. Fetching desc chain\n", pThis->szInst, pVirtq->szName)); 2861 2861 PVIRTQBUF pVirtqBuf = NULL; 2862 int rc = virtioCoreR3Virtq BufGet(pDevIns, &pThis->Virtio, pVirtq->idx, &pVirtqBuf, true);2862 int rc = virtioCoreR3VirtqAvailBufGet(pDevIns, &pThis->Virtio, pVirtq->idx, &pVirtqBuf, true); 2863 2863 if (rc == VERR_NOT_AVAILABLE) 2864 2864 { … … 3086 3086 RTStrPrintf(pThis->szInst, sizeof(pThis->szInst), "VNET%d", iInstance); 3087 3087 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'; 3090 3090 3091 3091 pThisCC->pDevIns = pDevIns; … … 3144 3144 3145 3145 /* 3146 * Do core virtio initialization.3146 * Configure Virtio core (generic Virtio queue and infrastructure management) parameters. 3147 3147 */ 3148 3149 3148 # if FEATURE_OFFERED(STATUS) 3150 3149 pThis->virtioNetConfig.uStatus = 0; … … 3155 3154 # endif 3156 3155 3157 /* Initialize the generic Virtio core: */3158 3156 pThisCC->Virtio.pfnVirtqNotified = virtioNetVirtqNotified; 3159 3157 pThisCC->Virtio.pfnStatusChanged = virtioNetR3StatusChanged; … … 3166 3164 VirtioPciParams.uClassSub = PCI_CLASS_SUB_NET_ETHERNET_CONTROLLER; 3167 3165 VirtioPciParams.uClassProg = PCI_CLASS_PROG_UNSPECIFIED; 3168 VirtioPciParams.uSubsystemId = PCI_DEVICE_ID_VIRTIONET_HOST; /* VirtIO 1.0 specallows PCI Device ID here */3166 VirtioPciParams.uSubsystemId = PCI_DEVICE_ID_VIRTIONET_HOST; /* VirtIO 1.0 allows PCI Device ID here */ 3169 3167 VirtioPciParams.uInterruptLine = 0x00; 3170 3168 VirtioPciParams.uInterruptPin = 0x01; 3171 3169 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. */ 3176 3171 rc = PDMDevHlpSUPSemEventCreate(pDevIns, &pThis->hEventRxDescAvail); 3177 3172 if (RT_FAILURE(rc)) 3178 3173 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Failed to create event semaphore")); 3179 3174 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) */ 3184 3176 rc = virtioCoreR3Init(pDevIns, &pThis->Virtio, &pThisCC->Virtio, &VirtioPciParams, pThis->szInst, 3185 3177 VIRTIONET_HOST_FEATURES_OFFERED,
Note:
See TracChangeset
for help on using the changeset viewer.