Changeset 6301 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Jan 9, 2008 4:41:26 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27166
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r6270 r6301 730 730 #endif 731 731 732 /** @todo I'll remove this size check after testing. */733 732 uint32_t cbBuf = 0; 733 int rc = 0; 734 int requestType = 0; 734 735 if ( Cmd >= VBOXGUEST_IOCTL_VMMREQUEST(0) 735 736 && Cmd <= VBOXGUEST_IOCTL_VMMREQUEST(0xfff)) 736 737 { 737 738 cbBuf = sizeof(VMMDevRequestHeader); 739 requestType = 1; 738 740 LogFlow((DEVICE_NAME ":VBOXGUEST_IOCTL_VMMREQUEST")); 739 741 } … … 789 791 } 790 792 } 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))) 796 794 { 797 795 LogRel((DEVICE_NAME ":VBoxAddSolarisIOCtl: buffer size mismatch. size=%d expected=%d.\n", IOCPARM_LEN(Cmd), cbBuf)); 798 796 return EINVAL; 799 797 } 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 */ 803 824 void *pvBuf = RTMemTmpAlloc(cbBuf); 804 825 if (RT_UNLIKELY(!pvBuf)) … … 808 829 } 809 830 810 intrc = ddi_copyin((void *)pArg, pvBuf, cbBuf, Mode);831 rc = ddi_copyin((void *)pArg, pvBuf, cbBuf, Mode); 811 832 if (RT_UNLIKELY(rc)) 812 833 { … … 822 843 Log((DEVICE_NAME ":VBoxAddSolarisIOCtl: pSession=%p pid=%d.\n", pSession, (int)RTProcSelf())); 823 844 845 /* 846 * Process the IOCtl. 847 */ 824 848 size_t cbDataReturned; 825 849 rc = VBoxGuestCommonIOCtl(Cmd, &g_DevExt, pSession, pvBuf, cbBuf, &cbDataReturned);
Note:
See TracChangeset
for help on using the changeset viewer.