VirtualBox

Ignore:
Timestamp:
Jan 22, 2009 12:03:33 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
41899
Message:

Solaris/vboxdrv: avoid heap allocs on small ioctl transfers, helps lock contention skipping kmem_alloc and using the stack.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c

    r13865 r16160  
    695695    int         rc;
    696696    uint32_t    cbBuf = 0;
    697     SUPREQHDR   Hdr;
     697    union
     698    {
     699        SUPREQHDR   Hdr;
     700        uint8_t     abBuf[64];
     701    }           StackBuf;
    698702    PSUPREQHDR  pHdr;
    699703
     
    702706     * Read the header.
    703707     */
    704     if (RT_UNLIKELY(IOCPARM_LEN(iCmd) != sizeof(Hdr)))
    705     {
    706         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: iCmd=%#x len %d expected %d\n", iCmd, IOCPARM_LEN(iCmd), sizeof(Hdr)));
     708    if (RT_UNLIKELY(IOCPARM_LEN(iCmd) != sizeof(StackBuf.Hdr)))
     709    {
     710        LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: iCmd=%#x len %d expected %d\n", iCmd, IOCPARM_LEN(iCmd), sizeof(StackBuf.Hdr)));
    707711        return EINVAL;
    708712    }
    709     rc = ddi_copyin((void *)iArg, &Hdr, sizeof(Hdr), Mode);
     713    rc = ddi_copyin((void *)iArg, &StackBuf.Hdr, sizeof(StackBuf.Hdr), Mode);
    710714    if (RT_UNLIKELY(rc))
    711715    {
     
    713717        return EFAULT;
    714718    }
    715     if (RT_UNLIKELY((Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK) != SUPREQHDR_FLAGS_MAGIC))
    716     {
    717         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: bad header magic %#x; iCmd=%#x\n", Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK, iCmd));
     719    if (RT_UNLIKELY((StackBuf.Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK) != SUPREQHDR_FLAGS_MAGIC))
     720    {
     721        LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: bad header magic %#x; iCmd=%#x\n", StackBuf.Hdr.fFlags & SUPREQHDR_FLAGS_MAGIC_MASK, iCmd));
    718722        return EINVAL;
    719723    }
    720     cbBuf = RT_MAX(Hdr.cbIn, Hdr.cbOut);
    721     if (RT_UNLIKELY(    Hdr.cbIn < sizeof(Hdr)
    722                     ||  Hdr.cbOut < sizeof(Hdr)
     724    cbBuf = RT_MAX(StackBuf.Hdr.cbIn, StackBuf.Hdr.cbOut);
     725    if (RT_UNLIKELY(    StackBuf.Hdr.cbIn < sizeof(StackBuf.Hdr)
     726                    ||  StackBuf.Hdr.cbOut < sizeof(StackBuf.Hdr)
    723727                    ||  cbBuf > _1M*16))
    724728    {
    725         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: max(%#x,%#x); iCmd=%#x\n", Hdr.cbIn, Hdr.cbOut, iCmd));
     729        LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: max(%#x,%#x); iCmd=%#x\n", StackBuf.Hdr.cbIn, StackBuf.Hdr.cbOut, iCmd));
    726730        return EINVAL;
    727731    }
     
    730734     * Buffer the request.
    731735     */
    732     pHdr = RTMemTmpAlloc(cbBuf);
    733     if (RT_UNLIKELY(!pHdr))
    734     {
    735         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: failed to allocate buffer of %d bytes for iCmd=%#x.\n", cbBuf, iCmd));
    736         return ENOMEM;
     736    if (cbBuf <= sizeof(StackBuf))
     737        pHdr = &StackBuf.Hdr;
     738    else
     739    {
     740        pHdr = RTMemTmpAlloc(cbBuf);
     741        if (RT_UNLIKELY(!pHdr))
     742        {
     743            LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: failed to allocate buffer of %d bytes for iCmd=%#x.\n", cbBuf, iCmd));
     744            return ENOMEM;
     745        }
    737746    }
    738747    rc = ddi_copyin((void *)iArg, pHdr, cbBuf, Mode);
    739748    if (RT_UNLIKELY(rc))
    740749    {
    741         LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: copy_from_user(,%#lx, %#x) failed; iCmd=%#x. rc=%d\n", iArg, Hdr.cbIn, iCmd, rc));
    742         RTMemFree(pHdr);
     750        LogRel((DEVICE_NAME ":VBoxDrvSolarisIOCtlSlow: copy_from_user(,%#lx, %#x) failed; iCmd=%#x. rc=%d\n", iArg, cbBuf, iCmd, rc));
     751        if (pHdr != &StackBuf.Hdr)
     752            RTMemFree(pHdr);
    743753        return EFAULT;
    744754    }
     
    748758     */
    749759    rc = supdrvIOCtl(iCmd, &g_DevExt, pSession, pHdr);
    750 
     760    PFNRT a = RTMpIsCpuWorkPending;
     761   
    751762    /*
    752763     * Copy ioctl data and output buffer back to user space.
     
    771782        rc = EINVAL;
    772783
    773     RTMemTmpFree(pHdr);
     784    if (pHdr != &StackBuf.Hdr)
     785        RTMemTmpFree(pHdr);
    774786    return rc;
    775787}
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