VirtualBox

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


Ignore:
Timestamp:
Feb 15, 2007 6:18:10 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
18666
Message:

Reintroduce the error signalling on invalid packet size.

File:
1 edited

Legend:

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

    r928 r931  
    19221922}
    19231923
     1924/**
     1925 * Fails a TMD with a generic error.
     1926 */
     1927static void pcnetXmitFailTMDGeneric(PCNetState *pData, TMD *pTmd)
     1928{
     1929    /* make carrier error - hope this is correct. */
     1930    pTmd->tmd2.lcar = pTmd->tmd1.err = 1;
     1931    pData->aCSR[0] |= BIT(15) | BIT(13); /* ERR | CERR */
     1932    pData->Led.Asserted.s.fError = pData->Led.Actual.s.fError = 1;
     1933    Log(("#%d pcnetTransmit: Signaling send error. swstyle=%#x\n",
     1934         PCNETSTATE_2_DEVINS(pData)->iInstance, pData->aBCR[BCR_SWS]));
     1935}
     1936
    19241937
    19251938/**
     
    20502063                RTR3PTR pv;
    20512064
    2052                 /* From the manual: ``A zero length buffers is acceptable as
     2065                /* From the manual: ``A zero length buffer is acceptable as
    20532066                 * long as it is not the last buffer in a chain (STP = 0 and
    20542067                 * ENP = 1).'' That means that the first buffer might have a
    20552068                 * zero length if it is not the last one in the chain. */
    2056                 if (RT_LIKELY(cb < 4096))
     2069                if (RT_LIKELY(cb <= 1536))
    20572070                {
    20582071                    int rc = PDMDevHlpPhys2HCVirt(pData->pDevInsHC,
     
    20892102                    pcnetTmdStorePassHost(pData, &tmd, PHYSADDR(pData, CSR_CXDA(pData)));
    20902103                    break;
     2104                }
     2105                else
     2106                {
     2107                    /* Signal error, as this violates the Ethernet specs. */
     2108                    /** @todo check if the correct error is generated. */
     2109                    LogRel(("PCNET: pcnetAsyncTransmit: illegal 4kb frame -> signalling error\n"));
     2110
     2111                    pcnetXmitFailTMDGeneric(pData, &tmd);
    20912112                }
    20922113            }
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