Changeset 41311 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 15, 2012 1:12:02 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77981
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r41117 r41311 311 311 win/VBoxDrv.rc 312 312 VBoxDrv_SOURCES = \ 313 SUPDrv.d \ 313 314 SUPDrv.c \ 314 315 SUPDrvSem.c \ 315 SUPDrvTracer.cpp \ 316 SUPDrv.d 316 SUPDrvTracer.cpp 317 317 ifdef VBOX_WITH_NATIVE_DTRACE 318 318 VBoxDrv_SOURCES += \ -
trunk/src/VBox/HostDrivers/Support/SUPDrvTracer.cpp
r41156 r41311 336 336 if (u64Tmp >= UINT32_MAX) 337 337 { 338 SUPR0Printf("supdrvVtgValidateHdr: VERR_SUPDRV_VTG_BAD_HDR_TOO_MUCH - u64Tmp=%#llx ProbeLocs=%#llx ProbeLocsEnd=%#llx\n", 338 SUPR0Printf("supdrvVtgValidateHdr: VERR_SUPDRV_VTG_BAD_HDR_TOO_MUCH - u64Tmp=%#llx ProbeLocs=%#llx ProbeLocsEnd=%#llx\n", 339 339 u64Tmp, pVtgHdr->uProbeLocs.u64, pVtgHdr->uProbeLocsEnd.u64); 340 340 return VERR_SUPDRV_VTG_BAD_HDR_TOO_MUCH; … … 343 343 344 344 u64Tmp = pVtgHdr->uProbeLocs.u64 - uVtgHdrAddr; 345 #ifdef RT_OS_DARWIN 346 /* The loader and/or ld64-97.17 seems not to generate fixups for our 347 __VTGObj section. Detect this by comparing them with the 348 u64VtgObjSectionStart member and assume max image size of 4MB. */ 349 if ( (int64_t)u64Tmp != (int32_t)u64Tmp 350 && pVtgHdr->u64VtgObjSectionStart != uVtgHdrAddr 351 && pVtgHdr->u64VtgObjSectionStart < _4M 352 && pVtgHdr->uProbeLocsEnd.u64 < _4M 353 && !fUmod) 354 { 355 uint64_t offDelta = uVtgHdrAddr - pVtgHdr->u64VtgObjSectionStart; 356 pVtgHdr->uProbeLocs.u64 += offDelta; 357 pVtgHdr->uProbeLocsEnd.u64 += offDelta; 358 u64Tmp += offDelta; 359 } 360 #endif 345 361 if ((int64_t)u64Tmp != (int32_t)u64Tmp) 346 362 { 347 SUPR0Printf("supdrvVtgValidateHdr: VERR_SUPDRV_VTG_BAD_HDR_PTR - u64Tmp=%#llx uProbeLocs=%#llx uVtgHdrAddr=%RTptr\n", 363 SUPR0Printf("supdrvVtgValidateHdr: VERR_SUPDRV_VTG_BAD_HDR_PTR - u64Tmp=%#llx uProbeLocs=%#llx uVtgHdrAddr=%RTptr\n", 348 364 u64Tmp, pVtgHdr->uProbeLocs.u64, uVtgHdrAddr); 349 365 return VERR_SUPDRV_VTG_BAD_HDR_PTR; … … 362 378 && pVtgHdr->cBits != 64)) ) 363 379 return VERR_SUPDRV_VTG_BITS; 364 if ( pVtgHdr->au32Reserved1[0] 365 || pVtgHdr->au32Reserved1[1] 366 || pVtgHdr->au32Reserved1[2] 367 || pVtgHdr->au32Reserved1[3]) 368 return VERR_SUPDRV_VTG_BAD_HDR_MISC; 369 if (RTUuidIsNull(&pVtgHdr->Uuid)) 370 return VERR_SUPDRV_VTG_BAD_HDR_MISC; 380 MY_CHECK_RET(pVtgHdr->au32Reserved1[0] == 0, VERR_SUPDRV_VTG_BAD_HDR_MISC); 381 MY_CHECK_RET(pVtgHdr->au32Reserved1[1] == 0, VERR_SUPDRV_VTG_BAD_HDR_MISC); 382 MY_CHECK_RET(!RTUuidIsNull(&pVtgHdr->Uuid), VERR_SUPDRV_VTG_BAD_HDR_MISC); 371 383 372 384 /* … … 617 629 */ 618 630 { 619 P CVTGPROBELOC paProbeLocs = (PCVTGPROBELOC)((intptr_t)pVtgHdr + pVtgHdr->offProbeLocs);631 PVTGPROBELOC paProbeLocs = (PVTGPROBELOC)((intptr_t)pVtgHdr + pVtgHdr->offProbeLocs); 620 632 i = pVtgHdr->cbProbeLocs / sizeof(VTGPROBELOC); 621 633 while (i-- > 0) … … 626 638 MY_WITHIN_IMAGE(paProbeLocs[i].pszFunction, VERR_SUPDRV_VTG_BAD_PROBE_LOC); 627 639 offTmp = (uintptr_t)paProbeLocs[i].pProbe - (uintptr_t)pVtgHdr->offProbes - (uintptr_t)pVtgHdr; 640 #ifdef RT_OS_DARWIN /* See header validation code. */ 641 if ( offTmp >= pVtgHdr->cbProbes 642 && pVtgHdr->u64VtgObjSectionStart != uVtgHdrAddr 643 && pVtgHdr->u64VtgObjSectionStart < _4M 644 && (uintptr_t)paProbeLocs[i].pProbe < _4M 645 && !fUmod ) 646 { 647 uint64_t offDelta = uVtgHdrAddr - pVtgHdr->u64VtgObjSectionStart; 648 paProbeLocs[i].pProbe = (PVTGDESCPROBE)((uintptr_t)paProbeLocs[i].pProbe + offDelta); 649 offTmp += offDelta; 650 } 651 #endif 628 652 MY_CHECK_RET(offTmp < pVtgHdr->cbProbes, VERR_SUPDRV_VTG_BAD_PROBE_LOC); 629 653 MY_CHECK_RET(offTmp / sizeof(VTGDESCPROBE) * sizeof(VTGDESCPROBE) == offTmp, VERR_SUPDRV_VTG_BAD_PROBE_LOC);
Note:
See TracChangeset
for help on using the changeset viewer.