VirtualBox

Changeset 6301 in vbox for trunk/src/VBox/Additions/common


Ignore:
Timestamp:
Jan 9, 2008 4:41:26 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
27166
Message:

Solaris guest additions: Got x11 vboxvideo working. Changed guest kernel driver ioctl, verified with previously working additions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c

    r6270 r6301  
    730730#endif
    731731
    732     /** @todo I'll remove this size check after testing. */
    733732    uint32_t cbBuf = 0;
     733    int rc = 0;
     734    int requestType = 0;
    734735    if (    Cmd >= VBOXGUEST_IOCTL_VMMREQUEST(0)
    735736        &&  Cmd <= VBOXGUEST_IOCTL_VMMREQUEST(0xfff))
    736737    {
    737738        cbBuf = sizeof(VMMDevRequestHeader);
     739        requestType = 1;
    738740        LogFlow((DEVICE_NAME ":VBOXGUEST_IOCTL_VMMREQUEST"));
    739741    }
     
    789791        }
    790792    }
    791 #if 0
    792     /* cbBuf must actually get the size based on the VMM request type.
    793      * Anyway, this obtaining cbBuf businesss will be removed eventually.
    794      */
    795     if (RT_UNLIKELY(cbBuf != IOCPARM_LEN(Cmd)))
     793    if (RT_UNLIKELY(cbBuf > IOCPARM_LEN(Cmd)))
    796794    {
    797795        LogRel((DEVICE_NAME ":VBoxAddSolarisIOCtl: buffer size mismatch. size=%d expected=%d.\n", IOCPARM_LEN(Cmd), cbBuf));
    798796        return EINVAL;
    799797    }
    800 #endif
    801 
    802     cbBuf = IOCPARM_LEN(Cmd);
     798
     799    /*
     800     * Read the header.
     801     */
     802    if (requestType == 1)
     803    {
     804        VMMDevRequestHeader Hdr;
     805        rc = ddi_copyin((void*)pArg, &Hdr, sizeof(Hdr), Mode);
     806        if (RT_UNLIKELY(rc))
     807        {
     808            Log((DEVICE_NAME ":VBoxAddSolarisIOCtl: ddi_copyin failed to read header pArg=%p Cmd=%d. rc=%d.\n", pArg, Cmd, rc));
     809            return EINVAL;
     810        }
     811
     812        cbBuf = Hdr.size;
     813        if (RT_UNLIKELY(cbBuf < sizeof(Hdr)))
     814        {
     815            Log((DEVICE_NAME ":VBoxAddSolarisIOCtl: Invalid request size (%d) in header.\n", cbBuf));
     816            return EINVAL;
     817        }
     818    }
     819    /** @todo handle HGCM calls. */
     820
     821    /*
     822     * Read the request.
     823     */
    803824    void *pvBuf = RTMemTmpAlloc(cbBuf);
    804825    if (RT_UNLIKELY(!pvBuf))
     
    808829    }
    809830
    810     int rc = ddi_copyin((void *)pArg, pvBuf, cbBuf, Mode);
     831    rc = ddi_copyin((void *)pArg, pvBuf, cbBuf, Mode);
    811832    if (RT_UNLIKELY(rc))
    812833    {
     
    822843    Log((DEVICE_NAME ":VBoxAddSolarisIOCtl: pSession=%p pid=%d.\n", pSession, (int)RTProcSelf()));
    823844
     845    /*
     846     * Process the IOCtl.
     847     */
    824848    size_t cbDataReturned;
    825849    rc = VBoxGuestCommonIOCtl(Cmd, &g_DevExt, pSession, pvBuf, cbBuf, &cbDataReturned);
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