VirtualBox

Ignore:
Timestamp:
May 15, 2012 1:12:02 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
77981
Message:

Work around 10.6.x or ld64-97.17 issue with relocations in the VTGObj.

Location:
trunk/src/VBox/HostDrivers/Support
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/Makefile.kmk

    r41117 r41311  
    311311        win/VBoxDrv.rc
    312312 VBoxDrv_SOURCES          = \
     313        SUPDrv.d \
    313314        SUPDrv.c \
    314315        SUPDrvSem.c \
    315         SUPDrvTracer.cpp \
    316         SUPDrv.d
     316        SUPDrvTracer.cpp
    317317 ifdef VBOX_WITH_NATIVE_DTRACE
    318318  VBoxDrv_SOURCES        += \
  • trunk/src/VBox/HostDrivers/Support/SUPDrvTracer.cpp

    r41156 r41311  
    336336        if (u64Tmp >= UINT32_MAX)
    337337        {
    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",
    339339                        u64Tmp, pVtgHdr->uProbeLocs.u64, pVtgHdr->uProbeLocsEnd.u64);
    340340            return VERR_SUPDRV_VTG_BAD_HDR_TOO_MUCH;
     
    343343
    344344        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
    345361        if ((int64_t)u64Tmp != (int32_t)u64Tmp)
    346362        {
    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",
    348364                        u64Tmp, pVtgHdr->uProbeLocs.u64, uVtgHdrAddr);
    349365            return VERR_SUPDRV_VTG_BAD_HDR_PTR;
     
    362378                && pVtgHdr->cBits != 64)) )
    363379        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);
    371383
    372384    /*
     
    617629     */
    618630    {
    619         PCVTGPROBELOC paProbeLocs = (PCVTGPROBELOC)((intptr_t)pVtgHdr + pVtgHdr->offProbeLocs);
     631        PVTGPROBELOC paProbeLocs = (PVTGPROBELOC)((intptr_t)pVtgHdr + pVtgHdr->offProbeLocs);
    620632        i = pVtgHdr->cbProbeLocs / sizeof(VTGPROBELOC);
    621633        while (i-- > 0)
     
    626638            MY_WITHIN_IMAGE(paProbeLocs[i].pszFunction, VERR_SUPDRV_VTG_BAD_PROBE_LOC);
    627639            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
    628652            MY_CHECK_RET(offTmp < pVtgHdr->cbProbes, VERR_SUPDRV_VTG_BAD_PROBE_LOC);
    629653            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.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette