VirtualBox

Changeset 38469 in vbox for trunk/src/VBox/Storage/VMDK.cpp


Ignore:
Timestamp:
Aug 16, 2011 10:34:32 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
73520
Message:

VD: Interface cleanup. Merge the two involved structures (generic interface descriptor and callback table) into one, remove the duplicated interface wrappers in the backends and move the interface definitions into separate headers separating public and private interfaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/VMDK.cpp

    r38030 r38469  
    410410    /** Descriptor file if applicable. */
    411411    PVMDKFILE         pFile;
    412     /** I/O interface. */
    413     PVDINTERFACE      pInterfaceIO;
    414     /** I/O interface callbacks. */
    415     PVDINTERFACEIOINT pInterfaceIOCallbacks;
    416412
    417413    /** Pointer to the per-disk VD interface list. */
     
    421417
    422418    /** Error interface. */
    423     PVDINTERFACE      pInterfaceError;
    424     /** Error interface callbacks. */
    425     PVDINTERFACEERROR pInterfaceErrorCallbacks;
     419    PVDINTERFACEERROR pIfError;
     420    /** I/O interface. */
     421    PVDINTERFACEIOINT pIfIo;
     422
    426423
    427424    /** Pointer to the image extents. */
     
    536533
    537534/**
    538  * Internal: signal an error to the frontend.
    539  */
    540 DECLINLINE(int) vmdkError(PVMDKIMAGE pImage, int rc, RT_SRC_POS_DECL,
    541                           const char *pszFormat, ...)
    542 {
    543     va_list va;
    544     va_start(va, pszFormat);
    545     if (pImage->pInterfaceError && pImage->pInterfaceErrorCallbacks)
    546         pImage->pInterfaceErrorCallbacks->pfnError(pImage->pInterfaceError->pvUser, rc, RT_SRC_POS_ARGS,
    547                                                    pszFormat, va);
    548     va_end(va);
    549     return rc;
    550 }
    551 
    552 /**
    553  * Internal: signal an informational message to the frontend.
    554  */
    555 DECLINLINE(int) vmdkMessage(PVMDKIMAGE pImage, const char *pszFormat, ...)
    556 {
    557     int rc = VINF_SUCCESS;
    558     va_list va;
    559     va_start(va, pszFormat);
    560     if (pImage->pInterfaceError && pImage->pInterfaceErrorCallbacks)
    561         rc = pImage->pInterfaceErrorCallbacks->pfnMessage(pImage->pInterfaceError->pvUser,
    562                                                           pszFormat, va);
    563     va_end(va);
    564     return rc;
    565 }
    566 
    567 /**
    568535 * Internal: open a file (using a file descriptor cache to ensure each file
    569536 * is only opened once - anything else can cause locking problems).
     
    608575    pVmdkFile->fAsyncIO = fAsyncIO;
    609576
    610     rc = pImage->pInterfaceIOCallbacks->pfnOpen(pImage->pInterfaceIO->pvUser,
    611                                                 pszFilename, fOpen,
    612                                                 &pVmdkFile->pStorage);
     577    rc = vdIfIoIntFileOpen(pImage->pIfIo, pszFilename, fOpen,
     578                           &pVmdkFile->pStorage);
    613579    if (RT_SUCCESS(rc))
    614580    {
     
    660626            pImage->pFiles = pNext;
    661627
    662         rc = pImage->pInterfaceIOCallbacks->pfnClose(pImage->pInterfaceIO->pvUser,
    663                                                      pVmdkFile->pStorage);
     628        rc = vdIfIoIntFileClose(pImage->pIfIo, pVmdkFile->pStorage);
    664629        if (RT_SUCCESS(rc) && pVmdkFile->fDelete)
    665             rc = pImage->pInterfaceIOCallbacks->pfnDelete(pImage->pInterfaceIO->pvUser,
    666                                                           pVmdkFile->pszFilename);
     630            rc = vdIfIoIntFileDelete(pImage->pIfIo, pVmdkFile->pszFilename);
    667631        RTStrFree((char *)(void *)pVmdkFile->pszFilename);
    668632        RTMemFree(pVmdkFile);
     
    672636    return rc;
    673637}
    674 
    675 /**
    676  * Internal: rename a file (sync)
    677  */
    678 DECLINLINE(int) vmdkFileMove(PVMDKIMAGE pImage, const char *pszSrc,
    679                              const char *pszDst, unsigned fMove)
    680 {
    681     return pImage->pInterfaceIOCallbacks->pfnMove(pImage->pInterfaceIO->pvUser,
    682                                                   pszSrc, pszDst, fMove);
    683 }
    684 
    685 /**
    686  * Internal: get the size of a file (sync/async)
    687  */
    688 DECLINLINE(int) vmdkFileGetSize(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    689                                 uint64_t *pcbSize)
    690 {
    691     return pImage->pInterfaceIOCallbacks->pfnGetSize(pImage->pInterfaceIO->pvUser,
    692                                                      pVmdkFile->pStorage,
    693                                                      pcbSize);
    694 }
    695 
    696 /**
    697  * Internal: set the size of a file (sync/async)
    698  */
    699 DECLINLINE(int) vmdkFileSetSize(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    700                                 uint64_t cbSize)
    701 {
    702     return pImage->pInterfaceIOCallbacks->pfnSetSize(pImage->pInterfaceIO->pvUser,
    703                                                      pVmdkFile->pStorage,
    704                                                      cbSize);
    705 }
    706 
    707 /**
    708  * Internal: read from a file (sync)
    709  */
    710 DECLINLINE(int) vmdkFileReadSync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    711                                  uint64_t uOffset, void *pvBuf,
    712                                  size_t cbToRead, size_t *pcbRead)
    713 {
    714     return pImage->pInterfaceIOCallbacks->pfnReadSync(pImage->pInterfaceIO->pvUser,
    715                                                       pVmdkFile->pStorage, uOffset,
    716                                                       pvBuf, cbToRead, pcbRead);
    717 }
    718 
    719 /**
    720  * Internal: write to a file (sync)
    721  */
    722 DECLINLINE(int) vmdkFileWriteSync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    723                                   uint64_t uOffset, const void *pvBuf,
    724                                   size_t cbToWrite, size_t *pcbWritten)
    725 {
    726     return pImage->pInterfaceIOCallbacks->pfnWriteSync(pImage->pInterfaceIO->pvUser,
    727                                                        pVmdkFile->pStorage, uOffset,
    728                                                        pvBuf, cbToWrite, pcbWritten);
    729 }
    730 
    731 /**
    732  * Internal: flush a file (sync)
    733  */
    734 DECLINLINE(int) vmdkFileFlush(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile)
    735 {
    736     return pImage->pInterfaceIOCallbacks->pfnFlushSync(pImage->pInterfaceIO->pvUser,
    737                                                        pVmdkFile->pStorage);
    738 }
    739 
    740 /**
    741  * Internal: read user data (async)
    742  */
    743 DECLINLINE(int) vmdkFileReadUserAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    744                                       uint64_t uOffset, PVDIOCTX pIoCtx,
    745                                       size_t cbRead)
    746 {
    747     return pImage->pInterfaceIOCallbacks->pfnReadUserAsync(pImage->pInterfaceIO->pvUser,
    748                                                            pVmdkFile->pStorage,
    749                                                            uOffset, pIoCtx,
    750                                                            cbRead);
    751 }
    752 
    753 /**
    754  * Internal: write user data (async)
    755  */
    756 DECLINLINE(int) vmdkFileWriteUserAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    757                                        uint64_t uOffset, PVDIOCTX pIoCtx,
    758                                        size_t cbWrite,
    759                                        PFNVDXFERCOMPLETED pfnComplete,
    760                                        void *pvCompleteUser)
    761 {
    762     return pImage->pInterfaceIOCallbacks->pfnWriteUserAsync(pImage->pInterfaceIO->pvUser,
    763                                                             pVmdkFile->pStorage,
    764                                                             uOffset, pIoCtx,
    765                                                             cbWrite,
    766                                                             pfnComplete,
    767                                                             pvCompleteUser);
    768 }
    769 
    770 /**
    771  * Internal: read metadata (async)
    772  */
    773 DECLINLINE(int) vmdkFileReadMetaAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    774                                       uint64_t uOffset, void *pvBuffer,
    775                                       size_t cbBuffer, PVDIOCTX pIoCtx,
    776                                       PPVDMETAXFER ppMetaXfer,
    777                                       PFNVDXFERCOMPLETED pfnComplete,
    778                                       void *pvCompleteUser)
    779 {
    780     return pImage->pInterfaceIOCallbacks->pfnReadMetaAsync(pImage->pInterfaceIO->pvUser,
    781                                                            pVmdkFile->pStorage,
    782                                                            uOffset, pvBuffer,
    783                                                            cbBuffer, pIoCtx,
    784                                                            ppMetaXfer,
    785                                                            pfnComplete,
    786                                                            pvCompleteUser);
    787 }
    788 
    789 /**
    790  * Internal: write metadata (async)
    791  */
    792 DECLINLINE(int) vmdkFileWriteMetaAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    793                                        uint64_t uOffset, void *pvBuffer,
    794                                        size_t cbBuffer, PVDIOCTX pIoCtx,
    795                                        PFNVDXFERCOMPLETED pfnComplete,
    796                                        void *pvCompleteUser)
    797 {
    798     return pImage->pInterfaceIOCallbacks->pfnWriteMetaAsync(pImage->pInterfaceIO->pvUser,
    799                                                             pVmdkFile->pStorage,
    800                                                             uOffset, pvBuffer,
    801                                                             cbBuffer, pIoCtx,
    802                                                             pfnComplete,
    803                                                             pvCompleteUser);
    804 }
    805 
    806 /**
    807  * Internal: releases a metadata transfer handle (async)
    808  */
    809 DECLINLINE(void) vmdkFileMetaXferRelease(PVMDKIMAGE pImage, PVDMETAXFER pMetaXfer)
    810 {
    811     pImage->pInterfaceIOCallbacks->pfnMetaXferRelease(pImage->pInterfaceIO->pvUser,
    812                                                       pMetaXfer);
    813 }
    814 
    815 /**
    816  * Internal: flush a file (async)
    817  */
    818 DECLINLINE(int) vmdkFileFlushAsync(PVMDKIMAGE pImage, PVMDKFILE pVmdkFile,
    819                                    PVDIOCTX pIoCtx)
    820 {
    821     return pImage->pInterfaceIOCallbacks->pfnFlushAsync(pImage->pInterfaceIO->pvUser,
    822                                                         pVmdkFile->pStorage, pIoCtx,
    823                                                         NULL, NULL);
    824 }
    825 
    826 /**
    827  * Internal: sets the buffer to a specific byte (async)
    828  */
    829 DECLINLINE(int) vmdkFileIoCtxSet(PVMDKIMAGE pImage, PVDIOCTX pIoCtx,
    830                                  int ch, size_t cbSet)
    831 {
    832     return pImage->pInterfaceIOCallbacks->pfnIoCtxSet(pImage->pInterfaceIO->pvUser,
    833                                                       pIoCtx, ch, cbSet);
    834 }
    835 
    836638
    837639static DECLCALLBACK(int) vmdkFileInflateHelper(void *pvUser, void *pvBuf, size_t cbBuf, size_t *pcbBuf)
     
    888690        if (!pcvMarker)
    889691        {
    890             rc = vmdkFileReadSync(pImage, pExtent->pFile, uOffset, pMarker,
    891                                   RT_OFFSETOF(VMDKMARKER, uType), NULL);
     692            rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     693                                       uOffset, pMarker, RT_OFFSETOF(VMDKMARKER, uType),
     694                                       NULL);
    892695            if (RT_FAILURE(rc))
    893696                return rc;
     
    909712
    910713        /* Compressed grain marker. Data follows immediately. */
    911         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    912                               uOffset + RT_OFFSETOF(VMDKMARKER, uType),
    913                                 (uint8_t *)pExtent->pvCompGrain
    914                               + RT_OFFSETOF(VMDKMARKER, uType),
    915                                 RT_ALIGN_Z(  cbCompSize
    916                                            + RT_OFFSETOF(VMDKMARKER, uType),
    917                                            512)
    918                               - RT_OFFSETOF(VMDKMARKER, uType), NULL);
     714        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     715                                   uOffset + RT_OFFSETOF(VMDKMARKER, uType),
     716                                    (uint8_t *)pExtent->pvCompGrain
     717                                  + RT_OFFSETOF(VMDKMARKER, uType),
     718                                   RT_ALIGN_Z(  cbCompSize
     719                                              + RT_OFFSETOF(VMDKMARKER, uType),
     720                                              512)
     721                                   - RT_OFFSETOF(VMDKMARKER, uType), NULL);
    919722
    920723        if (puLBA)
     
    1021824            pMarker->cbSize = RT_H2LE_U32(  DeflateState.iOffset
    1022825                                          - RT_OFFSETOF(VMDKMARKER, uType));
    1023             rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOffset, pMarker,
    1024                                    uSize, NULL);
     826            rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     827                                        uOffset, pMarker, uSize, NULL);
    1025828            if (RT_FAILURE(rc))
    1026829                return rc;
     
    12581061    /* The VMDK 1.1 spec seems to talk about compressed grain directories,
    12591062     * but in reality they are not compressed. */
    1260     rc = vmdkFileReadSync(pImage, pExtent->pFile,
    1261                           VMDK_SECTOR2BYTE(pExtent->uSectorGD),
    1262                           pExtent->pGD, cbGD, NULL);
     1063    rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     1064                               VMDK_SECTOR2BYTE(pExtent->uSectorGD),
     1065                               pExtent->pGD, cbGD, NULL);
    12631066    AssertRC(rc);
    12641067    if (RT_FAILURE(rc))
    12651068    {
    1266         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not read grain directory in '%s': %Rrc"), pExtent->pszFullname);
     1069        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not read grain directory in '%s': %Rrc"), pExtent->pszFullname);
    12671070        goto out;
    12681071    }
     
    12741077        /* The VMDK 1.1 spec seems to talk about compressed grain directories,
    12751078         * but in reality they are not compressed. */
    1276         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    1277                               VMDK_SECTOR2BYTE(pExtent->uSectorRGD),
    1278                               pExtent->pRGD, cbGD, NULL);
     1079        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     1080                                   VMDK_SECTOR2BYTE(pExtent->uSectorRGD),
     1081                                   pExtent->pRGD, cbGD, NULL);
    12791082        AssertRC(rc);
    12801083        if (RT_FAILURE(rc))
    12811084        {
    1282             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not read redundant grain directory in '%s'"), pExtent->pszFullname);
     1085            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not read redundant grain directory in '%s'"), pExtent->pszFullname);
    12831086            goto out;
    12841087        }
     
    13171120                RTMemTmpFree(pTmpGT1);
    13181121                RTMemTmpFree(pTmpGT2);
    1319                 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent references to grain directory in '%s'"), pExtent->pszFullname);
     1122                rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent references to grain directory in '%s'"), pExtent->pszFullname);
    13201123                goto out;
    13211124            }
    13221125            /* The VMDK 1.1 spec seems to talk about compressed grain tables,
    13231126             * but in reality they are not compressed. */
    1324             rc = vmdkFileReadSync(pImage, pExtent->pFile,
    1325                                   VMDK_SECTOR2BYTE(*pGDTmp),
    1326                                   pTmpGT1, cbGT, NULL);
     1127            rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     1128                                       VMDK_SECTOR2BYTE(*pGDTmp),
     1129                                       pTmpGT1, cbGT, NULL);
    13271130            if (RT_FAILURE(rc))
    13281131            {
    1329                 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading grain table in '%s'"), pExtent->pszFullname);
     1132                rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error reading grain table in '%s'"), pExtent->pszFullname);
    13301133                RTMemTmpFree(pTmpGT1);
    13311134                RTMemTmpFree(pTmpGT2);
     
    13341137            /* The VMDK 1.1 spec seems to talk about compressed grain tables,
    13351138             * but in reality they are not compressed. */
    1336             rc = vmdkFileReadSync(pImage, pExtent->pFile,
    1337                                   VMDK_SECTOR2BYTE(*pRGDTmp),
    1338                                   pTmpGT2, cbGT, NULL);
     1139            rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     1140                                       VMDK_SECTOR2BYTE(*pRGDTmp),
     1141                                       pTmpGT2, cbGT, NULL);
    13391142            if (RT_FAILURE(rc))
    13401143            {
    1341                 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading backup grain table in '%s'"), pExtent->pszFullname);
     1144                rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error reading backup grain table in '%s'"), pExtent->pszFullname);
    13421145                RTMemTmpFree(pTmpGT1);
    13431146                RTMemTmpFree(pTmpGT2);
     
    13481151                RTMemTmpFree(pTmpGT1);
    13491152                RTMemTmpFree(pTmpGT2);
    1350                 rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistency between grain table and backup grain table in '%s'"), pExtent->pszFullname);
     1153                rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistency between grain table and backup grain table in '%s'"), pExtent->pszFullname);
    13511154                goto out;
    13521155            }
     
    14011204        cbOverhead = RT_ALIGN_64(cbOverhead,
    14021205                                 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain));
    1403         rc = vmdkFileSetSize(pImage, pExtent->pFile, cbOverhead);
     1206        rc = vdIfIoIntFileSetSize(pImage->pIfIo, pExtent->pFile->pStorage, cbOverhead);
    14041207    }
    14051208    if (RT_FAILURE(rc))
     
    14401243                uGTSectorLE = RT_H2LE_U64(uOffsetSectors);
    14411244                /* Write the redundant grain directory entry to disk. */
    1442                 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    1443                                        VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + i * sizeof(uGTSectorLE),
    1444                                        &uGTSectorLE, sizeof(uGTSectorLE), NULL);
     1245                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     1246                                            VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + i * sizeof(uGTSectorLE),
     1247                                            &uGTSectorLE, sizeof(uGTSectorLE), NULL);
    14451248                if (RT_FAILURE(rc))
    14461249                {
    1447                     rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write new redundant grain directory entry in '%s'"), pExtent->pszFullname);
     1250                    rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write new redundant grain directory entry in '%s'"), pExtent->pszFullname);
    14481251                    goto out;
    14491252                }
     
    14581261            uGTSectorLE = RT_H2LE_U64(uOffsetSectors);
    14591262            /* Write the grain directory entry to disk. */
    1460             rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    1461                                    VMDK_SECTOR2BYTE(pExtent->uSectorGD) + i * sizeof(uGTSectorLE),
    1462                                    &uGTSectorLE, sizeof(uGTSectorLE), NULL);
     1263            rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     1264                                        VMDK_SECTOR2BYTE(pExtent->uSectorGD) + i * sizeof(uGTSectorLE),
     1265                                        &uGTSectorLE, sizeof(uGTSectorLE), NULL);
    14631266            if (RT_FAILURE(rc))
    14641267            {
    1465                 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write new grain directory entry in '%s'"), pExtent->pszFullname);
     1268                rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write new grain directory entry in '%s'"), pExtent->pszFullname);
    14661269                goto out;
    14671270            }
     
    14971300        pszQ = (char *)strchr(pszStr, '"');
    14981301        if (pszQ == NULL)
    1499             return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrectly quoted value in descriptor in '%s'"), pImage->pszFilename);
     1302            return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrectly quoted value in descriptor in '%s'"), pImage->pszFilename);
    15001303    }
    15011304
     
    15191322    if (    pDescriptor->cLines >= VMDK_DESCRIPTOR_LINES_MAX - 1
    15201323        &&  pEnd - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff)
    1521         return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
     1324        return vdIfError(pImage->pIfError, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
    15221325
    15231326    memcpy(pEnd, pszLine, cbDiff);
     
    15931396            if (    pDescriptor->aLines[pDescriptor->cLines]
    15941397                -   pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff)
    1595                 return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
     1398                return vdIfError(pImage->pIfError, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
    15961399
    15971400            memmove(pszTmp + cbNewVal, pszTmp + cbOldVal,
     
    16361439            || (  pDescriptor->aLines[pDescriptor->cLines]
    16371440                - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff))
    1638             return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
     1441            return vdIfError(pImage->pIfError, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
    16391442        for (unsigned i = pDescriptor->cLines + 1; i > uLast + 1; i--)
    16401443        {
     
    17831586        || (  pDescriptor->aLines[pDescriptor->cLines]
    17841587            - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff))
    1785         return vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
     1588        return vdIfError(pImage->pIfError, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
    17861589
    17871590    for (unsigned i = pDescriptor->cLines + 1; i > uLast + 1; i--)
     
    19251728        if (cLine >= VMDK_DESCRIPTOR_LINES_MAX)
    19261729        {
    1927             rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
     1730            rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename);
    19281731            goto out;
    19291732        }
     
    19351738                if (*(pTmp + 1) != '\n')
    19361739                {
    1937                     rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: unsupported end of line in descriptor in '%s'"), pImage->pszFilename);
     1740                    rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: unsupported end of line in descriptor in '%s'"), pImage->pszFilename);
    19381741                    goto out;
    19391742                }
     
    19601763        &&  strcmp(pDescriptor->aLines[0], "# Disk Descriptor File"))
    19611764    {
    1962         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor does not start as expected in '%s'"), pImage->pszFilename);
     1765        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor does not start as expected in '%s'"), pImage->pszFilename);
    19631766        goto out;
    19641767    }
     
    19801783                {
    19811784                    /* Incorrect ordering of entries. */
    1982                     rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
     1785                    rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
    19831786                    goto out;
    19841787                }
     
    19951798                {
    19961799                    /* Incorrect ordering of entries. */
    1997                     rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
     1800                    rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
    19981801                    goto out;
    19991802                }
     
    20101813                {
    20111814                    /* Incorrect ordering of entries. */
    2012                     rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
     1815                    rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect ordering of entries in descriptor in '%s'"), pImage->pszFilename);
    20131816                    goto out;
    20141817                }
     
    21551958    rc = vmdkDescBaseGetU32(&pImage->Descriptor, "version", &uVersion);
    21561959    if (RT_FAILURE(rc))
    2157         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error finding key 'version' in descriptor in '%s'"), pImage->pszFilename);
     1960        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error finding key 'version' in descriptor in '%s'"), pImage->pszFilename);
    21581961    if (uVersion != 1)
    2159         return vmdkError(pImage, VERR_VD_VMDK_UNSUPPORTED_VERSION, RT_SRC_POS, N_("VMDK: unsupported format version in descriptor in '%s'"), pImage->pszFilename);
     1962        return vdIfError(pImage->pIfError, VERR_VD_VMDK_UNSUPPORTED_VERSION, RT_SRC_POS, N_("VMDK: unsupported format version in descriptor in '%s'"), pImage->pszFilename);
    21601963
    21611964    /* Get image creation type and determine image flags. */
     
    21641967                            &pszCreateType);
    21651968    if (RT_FAILURE(rc))
    2166         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot get image type from descriptor in '%s'"), pImage->pszFilename);
     1969        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot get image type from descriptor in '%s'"), pImage->pszFilename);
    21671970    if (    !strcmp(pszCreateType, "twoGbMaxExtentSparse")
    21681971        ||  !strcmp(pszCreateType, "twoGbMaxExtentFlat"))
     
    21861989    {
    21871990        /* Monolithic image, must have only one extent (already opened). */
    2188         return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image may only have one extent in '%s'"), pImage->pszFilename);
     1991        return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image may only have one extent in '%s'"), pImage->pszFilename);
    21891992    }
    21901993
     
    22192022        }
    22202023        else
    2221             return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2024            return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22222025        if (*pszLine++ != ' ')
    2223             return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2026            return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22242027
    22252028        /* Nominal size of the extent. */
     
    22272030                             &pImage->pExtents[i].cNominalSectors);
    22282031        if (RT_FAILURE(rc))
    2229             return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2032            return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22302033        if (*pszLine++ != ' ')
    2231             return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2034            return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22322035
    22332036        /* Type of the extent. */
     
    22582061        }
    22592062        else
    2260             return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2063            return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22612064
    22622065        if (pImage->pExtents[i].enmType == VMDKETYPE_ZERO)
     
    22662069                pszLine++;
    22672070            if (*pszLine != '\0')
    2268                 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2071                return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22692072            pImage->pExtents[i].pszBasename = NULL;
    22702073        }
     
    22732076            /* All other extent types have basename and optional offset. */
    22742077            if (*pszLine++ != ' ')
    2275                 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2078                return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22762079
    22772080            /* Basename of the image. Surrounded by quotes. */
     
    22902093                                         &pImage->pExtents[i].uSectorOffset);
    22912094                    if (RT_FAILURE(rc))
    2292                         return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2095                        return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22932096                }
    22942097            }
    22952098
    22962099            if (*pszLine != '\0')
    2297                 return vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
     2100                return vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: parse error in extent description in '%s'"), pImage->pszFilename);
    22982101        }
    22992102    }
     
    23062109        pImage->PCHSGeometry.cCylinders = 0;
    23072110    else if (RT_FAILURE(rc))
    2308         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
     2111        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
    23092112    rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
    23102113                           VMDK_DDB_GEO_PCHS_HEADS,
     
    23132116        pImage->PCHSGeometry.cHeads = 0;
    23142117    else if (RT_FAILURE(rc))
    2315         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
     2118        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
    23162119    rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
    23172120                           VMDK_DDB_GEO_PCHS_SECTORS,
     
    23202123        pImage->PCHSGeometry.cSectors = 0;
    23212124    else if (RT_FAILURE(rc))
    2322         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
     2125        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting PCHS geometry from extent description in '%s'"), pImage->pszFilename);
    23232126    if (    pImage->PCHSGeometry.cCylinders == 0
    23242127        ||  pImage->PCHSGeometry.cHeads == 0
     
    23412144        pImage->LCHSGeometry.cCylinders = 0;
    23422145    else if (RT_FAILURE(rc))
    2343         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
     2146        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
    23442147    rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
    23452148                           VMDK_DDB_GEO_LCHS_HEADS,
     
    23482151        pImage->LCHSGeometry.cHeads = 0;
    23492152    else if (RT_FAILURE(rc))
    2350         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
     2153        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
    23512154    rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor,
    23522155                           VMDK_DDB_GEO_LCHS_SECTORS,
     
    23552158        pImage->LCHSGeometry.cSectors = 0;
    23562159    else if (RT_FAILURE(rc))
    2357         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
     2160        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting LCHS geometry from extent description in '%s'"), pImage->pszFilename);
    23582161    if (    pImage->LCHSGeometry.cCylinders == 0
    23592162        ||  pImage->LCHSGeometry.cHeads == 0
     
    23832186                                    VMDK_DDB_IMAGE_UUID, &pImage->ImageUuid);
    23842187            if (RT_FAILURE(rc))
    2385                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
     2188                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
    23862189        }
    23872190    }
     
    24092212                                    &pImage->ModificationUuid);
    24102213            if (RT_FAILURE(rc))
    2411                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image modification UUID in descriptor in '%s'"), pImage->pszFilename);
     2214                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing image modification UUID in descriptor in '%s'"), pImage->pszFilename);
    24122215        }
    24132216    }
     
    24332236                                    VMDK_DDB_PARENT_UUID, &pImage->ParentUuid);
    24342237            if (RT_FAILURE(rc))
    2435                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent UUID in descriptor in '%s'"), pImage->pszFilename);
     2238                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing parent UUID in descriptor in '%s'"), pImage->pszFilename);
    24362239        }
    24372240    }
     
    24572260                                    &pImage->ParentModificationUuid);
    24582261            if (RT_FAILURE(rc))
    2459                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in descriptor in '%s'"), pImage->pszFilename);
     2262                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in descriptor in '%s'"), pImage->pszFilename);
    24602263        }
    24612264    }
     
    24992302            if (cbLimit)
    25002303            {
    2501                 rc = vmdkError(pImage, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too long in '%s'"), pImage->pszFilename);
     2304                rc = vdIfError(pImage->pIfError, VERR_BUFFER_OVERFLOW, RT_SRC_POS, N_("VMDK: descriptor too long in '%s'"), pImage->pszFilename);
    25022305                break;
    25032306            }
     
    25722375    if (RT_SUCCESS(rc))
    25732376    {
    2574         rc = vmdkFileWriteSync(pImage, pDescFile, uOffset, pvDescriptor, cbLimit ? cbLimit : cbDescriptor, NULL);
     2377        rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pDescFile->pStorage, uOffset,
     2378                                    pvDescriptor, cbLimit ? cbLimit : cbDescriptor, NULL);
    25752379        if (RT_FAILURE(rc))
    2576             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
     2380            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
    25772381
    25782382        if (RT_SUCCESS(rc) && !cbLimit)
    25792383        {
    2580             rc = vmdkFileSetSize(pImage, pDescFile, cbDescriptor);
     2384            rc = vdIfIoIntFileSetSize(pImage->pIfIo, pDescFile->pStorage, cbDescriptor);
    25812385            if (RT_FAILURE(rc))
    2582                 rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
     2386                rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
    25832387        }
    25842388
     
    26252429    if (RT_SUCCESS(rc))
    26262430    {
    2627         rc = vmdkFileWriteMetaAsync(pImage, pDescFile, uOffset, pvDescriptor, cbLimit ? cbLimit : cbDescriptor, pIoCtx, NULL, NULL);
     2431        rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pDescFile->pStorage,
     2432                                         uOffset, pvDescriptor,
     2433                                         cbLimit ? cbLimit : cbDescriptor,
     2434                                         pIoCtx, NULL, NULL);
    26282435        if (   RT_FAILURE(rc)
    26292436            && rc != VERR_VD_ASYNC_IO_IN_PROGRESS)
    2630             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
     2437            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error writing descriptor in '%s'"), pImage->pszFilename);
    26312438    }
    26322439
    26332440    if (RT_SUCCESS(rc) && !cbLimit)
    26342441    {
    2635         rc = vmdkFileSetSize(pImage, pDescFile, cbDescriptor);
     2442        rc = vdIfIoIntFileSetSize(pImage->pIfIo, pDescFile->pStorage, cbDescriptor);
    26362443        if (RT_FAILURE(rc))
    2637             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
     2444            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error truncating descriptor in '%s'"), pImage->pszFilename);
    26382445    }
    26392446
     
    26542461    if (RT_LE2H_U32(pHeader->magicNumber) != VMDK_SPARSE_MAGICNUMBER)
    26552462    {
    2656         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect magic in sparse extent header in '%s'"), pExtent->pszFullname);
     2463        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect magic in sparse extent header in '%s'"), pExtent->pszFullname);
    26572464        return rc;
    26582465    }
    26592466    if (RT_LE2H_U32(pHeader->version) != 1 && RT_LE2H_U32(pHeader->version) != 3)
    26602467    {
    2661         rc = vmdkError(pImage, VERR_VD_VMDK_UNSUPPORTED_VERSION, RT_SRC_POS, N_("VMDK: incorrect version in sparse extent header in '%s', not a VMDK 1.0/1.1 conforming file"), pExtent->pszFullname);
     2468        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_UNSUPPORTED_VERSION, RT_SRC_POS, N_("VMDK: incorrect version in sparse extent header in '%s', not a VMDK 1.0/1.1 conforming file"), pExtent->pszFullname);
    26622469        return rc;
    26632470    }
     
    26682475             || pHeader->doubleEndLineChar2 != '\n') )
    26692476    {
    2670         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: corrupted by CR/LF translation in '%s'"), pExtent->pszFullname);
     2477        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: corrupted by CR/LF translation in '%s'"), pExtent->pszFullname);
    26712478        return rc;
    26722479    }
     
    26872494
    26882495    if (!fMagicAlreadyRead)
    2689         rc = vmdkFileReadSync(pImage, pExtent->pFile, 0, &Header,
    2690                               sizeof(Header), NULL);
     2496        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage, 0,
     2497                                   &Header, sizeof(Header), NULL);
    26912498    else
    26922499    {
    26932500        Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER);
    2694         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    2695                               RT_OFFSETOF(SparseExtentHeader, version),
    2696                               &Header.version,
    2697                                 sizeof(Header)
    2698                               - RT_OFFSETOF(SparseExtentHeader, version),
    2699                               NULL);
     2501        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     2502                                   RT_OFFSETOF(SparseExtentHeader, version),
     2503                                   &Header.version,
     2504                                     sizeof(Header)
     2505                                   - RT_OFFSETOF(SparseExtentHeader, version),
     2506                                   NULL);
    27002507    }
    27012508    AssertRC(rc);
    27022509    if (RT_FAILURE(rc))
    27032510    {
    2704         vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading extent header in '%s'"), pExtent->pszFullname);
     2511        vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error reading extent header in '%s'"), pExtent->pszFullname);
    27052512        rc = VERR_VD_VMDK_INVALID_HEADER;
    27062513        goto out;
     
    27182525            && !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
    27192526    {
    2720         rc = vmdkFileGetSize(pImage, pExtent->pFile, &cbFile);
     2527        rc = vdIfIoIntFileGetSize(pImage->pIfIo, pExtent->pFile->pStorage, &cbFile);
    27212528        AssertRC(rc);
    27222529        if (RT_FAILURE(rc))
    27232530        {
    2724             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot get size of '%s'"), pExtent->pszFullname);
     2531            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot get size of '%s'"), pExtent->pszFullname);
    27252532            goto out;
    27262533        }
     
    27352542    {
    27362543        /* Read the footer, which comes before the end-of-stream marker. */
    2737         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    2738                               cbFile - 2*512, &Header,
    2739                               sizeof(Header), NULL);
     2544        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     2545                                   cbFile - 2*512, &Header,
     2546                                   sizeof(Header), NULL);
    27402547        AssertRC(rc);
    27412548        if (RT_FAILURE(rc))
    27422549        {
    2743             vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading extent footer in '%s'"), pExtent->pszFullname);
     2550            vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error reading extent footer in '%s'"), pExtent->pszFullname);
    27442551            rc = VERR_VD_VMDK_INVALID_HEADER;
    27452552            goto out;
     
    27602567    if (pExtent->uDescriptorSector && !pExtent->cDescriptorSectors)
    27612568    {
    2762         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent embedded descriptor config in '%s'"), pExtent->pszFullname);
     2569        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: inconsistent embedded descriptor config in '%s'"), pExtent->pszFullname);
    27632570        goto out;
    27642571    }
     
    27792586            || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL)))
    27802587    {
    2781         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot resolve grain directory offset in '%s'"), pExtent->pszFullname);
     2588        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot resolve grain directory offset in '%s'"), pExtent->pszFullname);
    27822589        goto out;
    27832590    }
     
    27882595    if (!cSectorsPerGDE || cSectorsPerGDE > UINT32_MAX)
    27892596    {
    2790         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect grain directory size in '%s'"), pExtent->pszFullname);
     2597        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: incorrect grain directory size in '%s'"), pExtent->pszFullname);
    27912598        goto out;
    27922599    }
     
    28272634     * area (flat images only). If not, it means the image is at least
    28282635     * truncated, or even seriously garbled. */
    2829     rc = vmdkFileGetSize(pImage, pExtent->pFile, &cbExtentSize);
     2636    rc = vdIfIoIntFileGetSize(pImage->pIfIo, pExtent->pFile->pStorage, &cbExtentSize);
    28302637    if (RT_FAILURE(rc))
    28312638    {
    2832         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error getting size in '%s'"), pExtent->pszFullname);
     2639        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error getting size in '%s'"), pExtent->pszFullname);
    28332640        goto out;
    28342641    }
     
    28362643        &&  (pExtent->enmType != VMDKETYPE_FLAT || pExtent->cNominalSectors + pExtent->uSectorOffset > VMDK_BYTE2SECTOR(cbExtentSize)))
    28372644    {
    2838         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: file size is not a multiple of 512 in '%s', file is truncated or otherwise garbled"), pExtent->pszFullname);
     2645        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: file size is not a multiple of 512 in '%s', file is truncated or otherwise garbled"), pExtent->pszFullname);
    28392646        goto out;
    28402647    }
     
    28482655        ||  pExtent->cSectorsPerGrain < 8)
    28492656    {
    2850         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: invalid extent grain size %u in '%s'"), pExtent->cSectorsPerGrain, pExtent->pszFullname);
     2657        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: invalid extent grain size %u in '%s'"), pExtent->cSectorsPerGrain, pExtent->pszFullname);
    28512658        goto out;
    28522659    }
     
    28572664        ||  pExtent->cGTEntries < VMDK_GT_CACHELINE_SIZE)
    28582665    {
    2859         rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: grain table cache size problem in '%s'"), pExtent->pszFullname);
     2666        rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: grain table cache size problem in '%s'"), pExtent->pszFullname);
    28602667        goto out;
    28612668    }
     
    29412748    Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression);
    29422749
    2943     int rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOffset, &Header, sizeof(Header), NULL);
     2750    int rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     2751                                    uOffset, &Header, sizeof(Header), NULL);
    29442752    AssertRC(rc);
    29452753    if (RT_FAILURE(rc))
    2946         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
     2754        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
    29472755    return rc;
    29482756}
     
    30032811    Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression);
    30042812
    3005     int rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    3006                                     uOffset, &Header, sizeof(Header),
    3007                                     pIoCtx, NULL, NULL);
     2813    int rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     2814                                         uOffset, &Header, sizeof(Header),
     2815                                         pIoCtx, NULL, NULL);
    30082816    if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS))
    3009         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
     2817        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error writing extent header in '%s'"), pExtent->pszFullname);
    30102818    return rc;
    30112819}
     
    30222830    uint64_t cSectorsPerGDE;
    30232831
    3024     int rc = vmdkFileReadSync(pImage, pExtent->pFile, 0, &Header, sizeof(Header), NULL);
     2832    int rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage, 0,
     2833                                   &Header, sizeof(Header), NULL);
    30252834    AssertRC(rc);
    30262835    if (RT_FAILURE(rc))
    30272836    {
    3028         vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading ESX sparse extent header in '%s'"), pExtent->pszFullname);
     2837        vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error reading ESX sparse extent header in '%s'"), pExtent->pszFullname);
    30292838        rc = VERR_VD_VMDK_INVALID_HEADER;
    30302839        goto out;
     
    32113020    pImage->uOpenFlags = uOpenFlags;
    32123021
    3213     /* Try to get error interface. */
    3214     pImage->pInterfaceError = VDInterfaceGet(pImage->pVDIfsDisk, VDINTERFACETYPE_ERROR);
    3215     if (pImage->pInterfaceError)
    3216         pImage->pInterfaceErrorCallbacks = VDGetInterfaceError(pImage->pInterfaceError);
    3217 
    3218     /* Get I/O interface. */
    3219     pImage->pInterfaceIO = VDInterfaceGet(pImage->pVDIfsImage, VDINTERFACETYPE_IOINT);
    3220     AssertPtrReturn(pImage->pInterfaceIO, VERR_INVALID_PARAMETER);
    3221     pImage->pInterfaceIOCallbacks = VDGetInterfaceIOInt(pImage->pInterfaceIO);
    3222     AssertPtrReturn(pImage->pInterfaceIOCallbacks, VERR_INVALID_PARAMETER);
     3022    pImage->pIfError = VDIfErrorGet(pImage->pVDIfsDisk);
     3023    pImage->pIfIo = VDIfIoIntGet(pImage->pVDIfsImage);
     3024    AssertPtrReturn(pImage->pIfIo, VERR_INVALID_PARAMETER);
    32233025
    32243026    /*
     
    32413043
    32423044    /* Read magic (if present). */
    3243     rc = vmdkFileReadSync(pImage, pFile, 0, &u32Magic, sizeof(u32Magic), NULL);
     3045    rc = vdIfIoIntFileReadSync(pImage->pIfIo, pFile->pStorage, 0,
     3046                               &u32Magic, sizeof(u32Magic), NULL);
    32443047    if (RT_FAILURE(rc))
    32453048    {
    3246         vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error reading the magic number in '%s'"), pImage->pszFilename);
     3049        vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error reading the magic number in '%s'"), pImage->pszFilename);
    32473050        rc = VERR_VD_VMDK_INVALID_HEADER;
    32483051        goto out;
     
    32753078        if (!pExtent->uDescriptorSector || !pExtent->cDescriptorSectors)
    32763079        {
    3277             rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image without descriptor in '%s'"), pImage->pszFilename);
     3080            rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: monolithic image without descriptor in '%s'"), pImage->pszFilename);
    32783081            goto out;
    32793082        }
     
    32963099            goto out;
    32973100        }
    3298         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    3299                               VMDK_SECTOR2BYTE(pExtent->uDescriptorSector),
    3300                               pExtent->pDescData,
    3301                               VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors), NULL);
     3101        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     3102                                   VMDK_SECTOR2BYTE(pExtent->uDescriptorSector),
     3103                                   pExtent->pDescData,
     3104                                   VMDK_SECTOR2BYTE(pExtent->cDescriptorSectors), NULL);
    33023105        AssertRC(rc);
    33033106        if (RT_FAILURE(rc))
    33043107        {
    3305             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pExtent->pszFullname);
     3108            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pExtent->pszFullname);
    33063109            goto out;
    33073110        }
     
    33383141         * and will result in the correct "truncated read" error handling. */
    33393142        uint64_t cbFileSize;
    3340         rc = vmdkFileGetSize(pImage, pFile, &cbFileSize);
     3143        rc = vdIfIoIntFileGetSize(pImage->pIfIo, pFile->pStorage, &cbFileSize);
    33413144        if (RT_FAILURE(rc))
    33423145            goto out;
     
    33453148        if (cbFileSize < 50)
    33463149        {
    3347             rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor in '%s' is too short"), pImage->pszFilename);
     3150            rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor in '%s' is too short"), pImage->pszFilename);
    33483151            goto out;
    33493152        }
     
    33673170        memcpy(pImage->pDescData, &u32Magic, sizeof(u32Magic));
    33683171        size_t cbRead;
    3369         rc = vmdkFileReadSync(pImage, pImage->pFile, sizeof(u32Magic),
    3370                               pImage->pDescData + sizeof(u32Magic),
    3371                               RT_MIN(pImage->cbDescAlloc - sizeof(u32Magic),
    3372                                      cbFileSize - sizeof(u32Magic)),
    3373                               &cbRead);
     3172        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pFile->pStorage, sizeof(u32Magic),
     3173                                   pImage->pDescData + sizeof(u32Magic),
     3174                                   RT_MIN(pImage->cbDescAlloc - sizeof(u32Magic),
     3175                                          cbFileSize - sizeof(u32Magic)),
     3176                                   &cbRead);
    33743177        if (RT_FAILURE(rc))
    33753178        {
    3376             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pImage->pszFilename);
     3179            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: read error for descriptor in '%s'"), pImage->pszFilename);
    33773180            goto out;
    33783181        }
     
    33823185            /* Likely the read is truncated. Better fail a bit too early
    33833186             * (normally the descriptor is much smaller than our buffer). */
    3384             rc = vmdkError(pImage, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot read descriptor in '%s'"), pImage->pszFilename);
     3187            rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: cannot read descriptor in '%s'"), pImage->pszFilename);
    33853188            goto out;
    33863189        }
     
    35953398        rc = vmdkCreateExtents(pImage, 1);
    35963399        if (RT_FAILURE(rc))
    3597             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
     3400            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
    35983401        pExtent = &pImage->pExtents[0];
    35993402        /* Create raw disk descriptor file. */
     
    36033406                          false /* fAsyncIO */);
    36043407        if (RT_FAILURE(rc))
    3605             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
     3408            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
    36063409
    36073410        /* Set up basename for extent description. Cannot use StrDup. */
     
    36283431                          false /* fAsyncIO */);
    36293432        if (RT_FAILURE(rc))
    3630             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not open raw disk file '%s'"), pExtent->pszFullname);
     3433            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not open raw disk file '%s'"), pExtent->pszFullname);
    36313434    }
    36323435    else
     
    36453448            PVBOXHDDRAWPARTDESC pPart = &pRaw->pPartDescs[i];
    36463449            if (uStart > pPart->uStart)
    3647                 return vmdkError(pImage, VERR_INVALID_PARAMETER, RT_SRC_POS, N_("VMDK: incorrect partition data area ordering set up by the caller in '%s'"), pImage->pszFilename);
     3450                return vdIfError(pImage->pIfError, VERR_INVALID_PARAMETER, RT_SRC_POS, N_("VMDK: incorrect partition data area ordering set up by the caller in '%s'"), pImage->pszFilename);
    36483451
    36493452            if (uStart < pPart->uStart)
     
    36583461        rc = vmdkCreateExtents(pImage, cExtents);
    36593462        if (RT_FAILURE(rc))
    3660             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
     3463            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
    36613464
    36623465        /* Create raw partition descriptor file. */
     
    36663469                          false /* fAsyncIO */);
    36673470        if (RT_FAILURE(rc))
    3668             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
     3471            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pImage->pszFilename);
    36693472
    36703473        /* Create base filename for the partition table extent. */
     
    36743477        const char *pszExt = RTPathExt(pszBase);
    36753478        if (pszExt == NULL)
    3676             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: invalid filename '%s'"), pImage->pszFilename);
     3479            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: invalid filename '%s'"), pImage->pszFilename);
    36773480        char *pszBaseBase = RTStrDup(pszBase);
    36783481        if (!pszBaseBase)
     
    37383541                                  false /* fAsyncIO */);
    37393542                if (RT_FAILURE(rc))
    3740                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new partition data file '%s'"), pExtent->pszFullname);
    3741                 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    3742                                        VMDK_SECTOR2BYTE(uPartOffset),
    3743                                        pPart->pvPartitionData,
    3744                                        pPart->cbData, NULL);
     3543                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new partition data file '%s'"), pExtent->pszFullname);
     3544                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     3545                                            VMDK_SECTOR2BYTE(uPartOffset),
     3546                                            pPart->pvPartitionData,
     3547                                            pPart->cbData, NULL);
    37453548                if (RT_FAILURE(rc))
    3746                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not write partition data to '%s'"), pExtent->pszFullname);
     3549                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not write partition data to '%s'"), pExtent->pszFullname);
    37473550                uPartOffset += VMDK_BYTE2SECTOR(pPart->cbData);
    37483551            }
     
    37743577                                      false /* fAsyncIO */);
    37753578                    if (RT_FAILURE(rc))
    3776                         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not open raw partition file '%s'"), pExtent->pszFullname);
     3579                        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not open raw partition file '%s'"), pExtent->pszFullname);
    37773580                }
    37783581                else
     
    38063609                            "fullDevice" : "partitionedDevice");
    38073610    if (RT_FAILURE(rc))
    3808         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
     3611        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
    38093612    return rc;
    38103613}
     
    38333636    rc = vmdkCreateExtents(pImage, cExtents);
    38343637    if (RT_FAILURE(rc))
    3835         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
     3638        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
    38363639
    38373640    /* Basename strings needed for constructing the extent names. */
     
    38483651                          false /* fAsyncIO */);
    38493652        if (RT_FAILURE(rc))
    3850             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new sparse descriptor file '%s'"), pImage->pszFilename);
     3653            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new sparse descriptor file '%s'"), pImage->pszFilename);
    38513654    }
    38523655    else
     
    39193722                          false /* fAsyncIO */);
    39203723        if (RT_FAILURE(rc))
    3921             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
     3724            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
    39223725        if (uImageFlags & VD_IMAGE_FLAGS_FIXED)
    39233726        {
    3924             rc = vmdkFileSetSize(pImage, pExtent->pFile, cbExtent);
     3727            rc = vdIfIoIntFileSetSize(pImage->pIfIo, pExtent->pFile->pStorage, cbExtent);
    39253728            if (RT_FAILURE(rc))
    3926                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set size of new file '%s'"), pExtent->pszFullname);
     3729                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not set size of new file '%s'"), pExtent->pszFullname);
    39273730
    39283731            /* Fill image with zeroes. We do this for every fixed-size image since on some systems
     
    39453748                unsigned cbChunk = (unsigned)RT_MIN(cbExtent, cbBuf);
    39463749
    3947                 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOff, pvBuf, cbChunk, NULL);
     3750                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     3751                                            uOff, pvBuf, cbChunk, NULL);
    39483752                if (RT_FAILURE(rc))
    39493753                {
    39503754                    RTMemFree(pvBuf);
    3951                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: writing block failed for '%s'"), pImage->pszFilename);
     3755                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: writing block failed for '%s'"), pImage->pszFilename);
    39523756                }
    39533757
     
    40213825                                          true /* fPreAlloc */);
    40223826            if (RT_FAILURE(rc))
    4023                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
     3827                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
    40243828        }
    40253829
     
    40373841        rc = vmdkDescDDBSetStr(pImage, &pImage->Descriptor, "ddb.adapterType", "lsilogic");
    40383842        if (RT_FAILURE(rc))
    4039             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set controller type to lsilogic in '%s'"), pImage->pszFilename);
     3843            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not set controller type to lsilogic in '%s'"), pImage->pszFilename);
    40403844    }
    40413845
     
    40623866                            pszDescType);
    40633867    if (RT_FAILURE(rc))
    4064         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
     3868        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
    40653869    return rc;
    40663870}
     
    40783882    rc = vmdkCreateExtents(pImage, 1);
    40793883    if (RT_FAILURE(rc))
    4080         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
     3884        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new extent list in '%s'"), pImage->pszFilename);
    40813885
    40823886    /* Basename strings needed for constructing the extent names. */
     
    41163920                      false /* fAsyncIO */);
    41173921    if (RT_FAILURE(rc))
    4118         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
     3922        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new file '%s'"), pExtent->pszFullname);
    41193923
    41203924    /* Place descriptor file information. */
     
    41553959                                  false /* fPreAlloc */);
    41563960    if (RT_FAILURE(rc))
    4157         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
     3961        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new grain directory in '%s'"), pExtent->pszFullname);
    41583962
    41593963    rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType",
    41603964                            "streamOptimized");
    41613965    if (RT_FAILURE(rc))
    4162         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
     3966        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not set the image type in '%s'"), pImage->pszFilename);
    41633967
    41643968    return rc;
     
    41803984    pImage->uImageFlags = uImageFlags;
    41813985
    4182     /* Try to get error interface. */
    4183     pImage->pInterfaceError = VDInterfaceGet(pImage->pVDIfsDisk, VDINTERFACETYPE_ERROR);
    4184     if (pImage->pInterfaceError)
    4185         pImage->pInterfaceErrorCallbacks = VDGetInterfaceError(pImage->pInterfaceError);
    4186 
    4187     /* Get I/O interface. */
    4188     pImage->pInterfaceIO = VDInterfaceGet(pImage->pVDIfsImage, VDINTERFACETYPE_IOINT);
    4189     AssertPtrReturn(pImage->pInterfaceIO, VERR_INVALID_PARAMETER);
    4190     pImage->pInterfaceIOCallbacks = VDGetInterfaceIOInt(pImage->pInterfaceIO);
    4191     AssertPtrReturn(pImage->pInterfaceIOCallbacks, VERR_INVALID_PARAMETER);
     3986    pImage->pIfError = VDIfErrorGet(pImage->pVDIfsDisk);
     3987    pImage->pIfIo = VDIfIoIntGet(pImage->pVDIfsImage);
     3988    AssertPtrReturn(pImage->pIfIo, VERR_INVALID_PARAMETER);
    41923989
    41933990    rc = vmdkCreateDescriptor(pImage, pImage->pDescData, pImage->cbDescAlloc,
     
    41953992    if (RT_FAILURE(rc))
    41963993    {
    4197         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new descriptor in '%s'"), pImage->pszFilename);
     3994        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not create new descriptor in '%s'"), pImage->pszFilename);
    41983995        goto out;
    41993996    }
     
    42444041        if (RT_FAILURE(rc))
    42454042        {
    4246             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not insert the extent list into descriptor in '%s'"), pImage->pszFilename);
     4043            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not insert the extent list into descriptor in '%s'"), pImage->pszFilename);
    42474044            goto out;
    42484045        }
     
    42754072    if (RT_FAILURE(rc))
    42764073    {
    4277         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in new descriptor in '%s'"), pImage->pszFilename);
     4074        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in new descriptor in '%s'"), pImage->pszFilename);
    42784075        goto out;
    42794076    }
     
    42834080    if (RT_FAILURE(rc))
    42844081    {
    4285         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in new descriptor in '%s'"), pImage->pszFilename);
     4082        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in new descriptor in '%s'"), pImage->pszFilename);
    42864083        goto out;
    42874084    }
     
    42924089    if (RT_FAILURE(rc))
    42934090    {
    4294         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in new descriptor in '%s'"), pImage->pszFilename);
     4091        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in new descriptor in '%s'"), pImage->pszFilename);
    42954092        goto out;
    42964093    }
     
    43014098    if (RT_FAILURE(rc))
    43024099    {
    4303         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in new descriptor in '%s'"), pImage->pszFilename);
     4100        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing parent modification UUID in new descriptor in '%s'"), pImage->pszFilename);
    43044101        goto out;
    43054102    }
     
    43124109    if (RT_FAILURE(rc))
    43134110    {
    4314         rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot set image comment in '%s'"), pImage->pszFilename);
     4111        rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot set image comment in '%s'"), pImage->pszFilename);
    43154112        goto out;
    43164113    }
     
    43294126        if (RT_FAILURE(rc))
    43304127        {
    4331             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK header in '%s'"), pImage->pszFilename);
     4128            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK header in '%s'"), pImage->pszFilename);
    43324129            goto out;
    43334130        }
     
    43364133        if (RT_FAILURE(rc))
    43374134        {
    4338             rc = vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK descriptor in '%s'"), pImage->pszFilename);
     4135            rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write VMDK descriptor in '%s'"), pImage->pszFilename);
    43394136            goto out;
    43404137        }
     
    43714168        RTStrFree(pszCommentEncoded);
    43724169    if (RT_FAILURE(rc))
    4373         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image comment in descriptor in '%s'"), pImage->pszFilename);
     4170        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing image comment in descriptor in '%s'"), pImage->pszFilename);
    43744171    return VINF_SUCCESS;
    43754172}
     
    44294226    pMarker->uSector = RT_H2LE_U64(VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t)));
    44304227    pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GT);
    4431     rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    4432                            aMarker, sizeof(aMarker), NULL);
     4228    rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, uFileOffset,
     4229                                aMarker, sizeof(aMarker), NULL);
    44334230    AssertRC(rc);
    44344231    uFileOffset += 512;
     
    44474244            *pGTTmp = RT_H2LE_U32(*pGTTmp);
    44484245
    4449         rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    4450                                &pImage->pGTCache->aGTCache[i].aGTData[0],
    4451                                VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t),
    4452                                NULL);
     4246        rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, uFileOffset,
     4247                                    &pImage->pGTCache->aGTCache[i].aGTData[0],
     4248                                    VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t),
     4249                                    NULL);
    44534250        uFileOffset += VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t);
    44544251        if (RT_FAILURE(rc))
     
    45374334                pMarker->uSector = VMDK_BYTE2SECTOR(RT_ALIGN_64(RT_H2LE_U64(pExtent->cGDEntries * sizeof(uint32_t)), 512));
    45384335                pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GD);
    4539                 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    4540                                        aMarker, sizeof(aMarker), NULL);
     4336                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, uFileOffset,
     4337                                            aMarker, sizeof(aMarker), NULL);
    45414338                AssertRC(rc);
    45424339                uFileOffset += 512;
     
    45474344                for (uint32_t i = 0; i < pExtent->cGDEntries; i++, pGDTmp++)
    45484345                    *pGDTmp = RT_H2LE_U32(*pGDTmp);
    4549                 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    4550                                        pExtent->pGD,
    4551                                        pExtent->cGDEntries * sizeof(uint32_t),
    4552                                        NULL);
     4346                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4347                                            uFileOffset, pExtent->pGD,
     4348                                            pExtent->cGDEntries * sizeof(uint32_t),
     4349                                            NULL);
    45534350                AssertRC(rc);
    45544351
     
    45634360                pMarker->uSector = VMDK_BYTE2SECTOR(512);
    45644361                pMarker->uType = RT_H2LE_U32(VMDK_MARKER_FOOTER);
    4565                 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    4566                                        aMarker, sizeof(aMarker), NULL);
     4362                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4363                                            uFileOffset, aMarker, sizeof(aMarker), NULL);
    45674364                AssertRC(rc);
    45684365
     
    45744371                /* End-of-stream marker. */
    45754372                memset(pMarker, '\0', sizeof(aMarker));
    4576                 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    4577                                        aMarker, sizeof(aMarker), NULL);
     4373                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4374                                            uFileOffset, aMarker, sizeof(aMarker), NULL);
    45784375                AssertRC(rc);
    45794376            }
     
    46824479                    && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY)
    46834480                    && !(pExtent->pszBasename[0] == RTPATH_SLASH))
    4684                     rc = vmdkFileFlush(pImage, pExtent->pFile);
     4481                    rc = vdIfIoIntFileFlushSync(pImage->pIfIo, pExtent->pFile->pStorage);
    46854482                break;
    46864483            case VMDKETYPE_ZERO:
     
    47814578    {
    47824579        /* Cache miss, fetch data from disk. */
    4783         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    4784                               VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    4785                               aGTDataTmp, sizeof(aGTDataTmp), NULL);
     4580        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4581                                   VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     4582                                   aGTDataTmp, sizeof(aGTDataTmp), NULL);
    47864583        if (RT_FAILURE(rc))
    4787             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read grain table entry in '%s'"), pExtent->pszFullname);
     4584            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot read grain table entry in '%s'"), pExtent->pszFullname);
    47884585        pGTCacheEntry->uExtent = pExtent->uExtent;
    47894586        pGTCacheEntry->uGTBlock = uGTBlock;
     
    48354632        /* Cache miss, fetch data from disk. */
    48364633        PVDMETAXFER pMetaXfer;
    4837         rc = vmdkFileReadMetaAsync(pImage, pExtent->pFile,
    4838                                    VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    4839                                    aGTDataTmp, sizeof(aGTDataTmp), pIoCtx, &pMetaXfer, NULL, NULL);
     4634        rc = vdIfIoIntFileReadMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     4635                                        VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     4636                                        aGTDataTmp, sizeof(aGTDataTmp), pIoCtx, &pMetaXfer, NULL, NULL);
    48404637        if (RT_FAILURE(rc))
    48414638            return rc;
    48424639        /* We can release the metadata transfer immediately. */
    4843         vmdkFileMetaXferRelease(pImage, pMetaXfer);
     4640        vdIfIoIntMetaXferRelease(pImage->pIfIo, pMetaXfer);
    48444641        pGTCacheEntry->uExtent = pExtent->uExtent;
    48454642        pGTCacheEntry->uGTBlock = uGTBlock;
     
    49114708             i++)
    49124709        {
    4913             rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    4914                                    VMDK_SECTOR2BYTE(uGTSector) + i * sizeof(aGTDataTmp),
    4915                                    aGTDataTmp, sizeof(aGTDataTmp), NULL);
     4710            rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4711                                        VMDK_SECTOR2BYTE(uGTSector) + i * sizeof(aGTDataTmp),
     4712                                        aGTDataTmp, sizeof(aGTDataTmp), NULL);
    49164713            if (RT_FAILURE(rc))
    4917                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
     4714                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
    49184715        }
    49194716        pExtent->uAppendPosition = RT_ALIGN_64(  pExtent->uAppendPosition
     
    49464743                 i++)
    49474744            {
    4948                 rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    4949                                        VMDK_SECTOR2BYTE(uRGTSector) + i * sizeof(aGTDataTmp),
    4950                                        aGTDataTmp, sizeof(aGTDataTmp), NULL);
     4745                rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4746                                            VMDK_SECTOR2BYTE(uRGTSector) + i * sizeof(aGTDataTmp),
     4747                                            aGTDataTmp, sizeof(aGTDataTmp), NULL);
    49514748                if (RT_FAILURE(rc))
    4952                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
     4749                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
    49534750            }
    49544751
     
    49624759         * some unused sectors in the extent. */
    49634760        uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector);
    4964         rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    4965                                VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
    4966                                &uGTSectorLE, sizeof(uGTSectorLE), NULL);
     4761        rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4762                                    VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
     4763                                    &uGTSectorLE, sizeof(uGTSectorLE), NULL);
    49674764        if (RT_FAILURE(rc))
    4968             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
     4765            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
    49694766        if (pExtent->pRGD)
    49704767        {
    49714768            uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector);
    4972             rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    4973                                    VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uRGTSectorLE),
    4974                                    &uRGTSectorLE, sizeof(uRGTSectorLE), NULL);
     4769            rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4770                                        VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uRGTSectorLE),
     4771                                        &uRGTSectorLE, sizeof(uRGTSectorLE), NULL);
    49754772            if (RT_FAILURE(rc))
    4976                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
     4773                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
    49774774        }
    49784775
     
    49924789    {
    49934790        if (cbWrite != VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain))
    4994             return vmdkError(pImage, VERR_INTERNAL_ERROR, RT_SRC_POS, N_("VMDK: not enough data for a compressed data block in '%s'"), pExtent->pszFullname);
     4791            return vdIfError(pImage->pIfError, VERR_INTERNAL_ERROR, RT_SRC_POS, N_("VMDK: not enough data for a compressed data block in '%s'"), pExtent->pszFullname);
    49954792
    49964793        /* Invalidate cache, just in case some code incorrectly allows mixing
     
    50054802        {
    50064803            AssertRC(rc);
    5007             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated compressed data block in '%s'"), pExtent->pszFullname);
     4804            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write allocated compressed data block in '%s'"), pExtent->pszFullname);
    50084805        }
    50094806        pExtent->uLastGrainAccess = uSector / pExtent->cSectorsPerGrain;
     
    50124809    else
    50134810    {
    5014         rc = vmdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,
    5015                                pvBuf, cbWrite, NULL);
     4811        rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4812                                    uFileOffset, pvBuf, cbWrite, NULL);
    50164813        if (RT_FAILURE(rc))
    5017             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
     4814            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
    50184815        pExtent->uAppendPosition += cbWrite;
    50194816    }
     
    50274824    {
    50284825        /* Cache miss, fetch data from disk. */
    5029         rc = vmdkFileReadSync(pImage, pExtent->pFile,
    5030                               VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    5031                               aGTDataTmp, sizeof(aGTDataTmp), NULL);
     4826        rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4827                                   VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     4828                                   aGTDataTmp, sizeof(aGTDataTmp), NULL);
    50324829        if (RT_FAILURE(rc))
    5033             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
     4830            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
    50344831        pGTCacheEntry->uExtent = pExtent->uExtent;
    50354832        pGTCacheEntry->uGTBlock = uGTBlock;
     
    50484845    pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(uFileOffset);
    50494846    /* Update grain table on disk. */
    5050     rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    5051                            VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    5052                            aGTDataTmp, sizeof(aGTDataTmp), NULL);
     4847    rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4848                                VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     4849                                aGTDataTmp, sizeof(aGTDataTmp), NULL);
    50534850    if (RT_FAILURE(rc))
    5054         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
     4851        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
    50554852    if (pExtent->pRGD)
    50564853    {
    50574854        /* Update backup grain table on disk. */
    5058         rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    5059                                VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    5060                                aGTDataTmp, sizeof(aGTDataTmp), NULL);
     4855        rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     4856                                    VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     4857                                    aGTDataTmp, sizeof(aGTDataTmp), NULL);
    50614858        if (RT_FAILURE(rc))
    5062             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
     4859            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
    50634860    }
    50644861#ifdef VBOX_WITH_VMDK_ESX
     
    51644961        pExtent->uGrainSectorAbs = 0;
    51654962        AssertRC(rc);
    5166         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write compressed data block in '%s'"), pExtent->pszFullname);
     4963        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write compressed data block in '%s'"), pExtent->pszFullname);
    51674964    }
    51684965    pExtent->uLastGrainAccess = uGrain;
     
    52045001        LogFlow(("Cache miss, fetch data from disk\n"));
    52055002        PVDMETAXFER pMetaXfer = NULL;
    5206         rc = vmdkFileReadMetaAsync(pImage, pExtent->pFile,
    5207                                    VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    5208                                    aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
    5209                                    &pMetaXfer, vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5003        rc = vdIfIoIntFileReadMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5004                                        VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     5005                                        aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
     5006                                        &pMetaXfer, vmdkAllocGrainAsyncComplete, pGrainAlloc);
    52105007        if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    52115008        {
     
    52175014        }
    52185015        else if (RT_FAILURE(rc))
    5219             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
    5220         vmdkFileMetaXferRelease(pImage, pMetaXfer);
     5016            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);
     5017        vdIfIoIntMetaXferRelease(pImage->pIfIo, pMetaXfer);
    52215018        pGTCacheEntry->uExtent = pExtent->uExtent;
    52225019        pGTCacheEntry->uGTBlock = uGTBlock;
     
    52365033    pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(pGrainAlloc->uGrainOffset);
    52375034    /* Update grain table on disk. */
    5238     rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    5239                                 VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    5240                                 aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
    5241                                 vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5035    rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5036                                     VMDK_SECTOR2BYTE(uGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     5037                                     aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
     5038                                     vmdkAllocGrainAsyncComplete, pGrainAlloc);
    52425039    if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    52435040        pGrainAlloc->cIoXfersPending++;
    52445041    else if (RT_FAILURE(rc))
    5245         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
     5042        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write updated grain table in '%s'"), pExtent->pszFullname);
    52465043    if (pExtent->pRGD)
    52475044    {
    52485045        /* Update backup grain table on disk. */
    5249         rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    5250                                     VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
    5251                                     aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
    5252                                     vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5046        rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5047                                         VMDK_SECTOR2BYTE(uRGTSector) + (uGTBlock % (pExtent->cGTEntries / VMDK_GT_CACHELINE_SIZE)) * sizeof(aGTDataTmp),
     5048                                         aGTDataTmp, sizeof(aGTDataTmp), pIoCtx,
     5049                                         vmdkAllocGrainAsyncComplete, pGrainAlloc);
    52535050        if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    52545051            pGrainAlloc->cIoXfersPending++;
    52555052        else if (RT_FAILURE(rc))
    5256             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
     5053            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write updated backup grain table in '%s'"), pExtent->pszFullname);
    52575054    }
    52585055#ifdef VBOX_WITH_VMDK_ESX
     
    53645161
    53655162        memset(paGTDataTmp, '\0', cbGTDataTmp);
    5366         rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    5367                                     VMDK_SECTOR2BYTE(uGTSector),
    5368                                     paGTDataTmp, cbGTDataTmp, pIoCtx,
    5369                                     vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5163        rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5164                                         VMDK_SECTOR2BYTE(uGTSector),
     5165                                         paGTDataTmp, cbGTDataTmp, pIoCtx,
     5166                                         vmdkAllocGrainAsyncComplete, pGrainAlloc);
    53705167        if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    53715168            pGrainAlloc->cIoXfersPending++;
     
    53735170        {
    53745171            RTMemTmpFree(paGTDataTmp);
    5375             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
     5172            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write grain table allocation in '%s'"), pExtent->pszFullname);
    53765173        }
    53775174        pExtent->uAppendPosition = RT_ALIGN_64(  pExtent->uAppendPosition
     
    53995196             * cache chunks. Allocate memory dynamically here or we flood the
    54005197             * metadata cache with very small entries. */
    5401             rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    5402                                         VMDK_SECTOR2BYTE(uRGTSector),
    5403                                         paGTDataTmp, cbGTDataTmp, pIoCtx,
    5404                                         vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5198            rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5199                                             VMDK_SECTOR2BYTE(uRGTSector),
     5200                                             paGTDataTmp, cbGTDataTmp, pIoCtx,
     5201                                             vmdkAllocGrainAsyncComplete, pGrainAlloc);
    54055202            if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    54065203                pGrainAlloc->cIoXfersPending++;
     
    54085205            {
    54095206                RTMemTmpFree(paGTDataTmp);
    5410                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
     5207                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain table allocation in '%s'"), pExtent->pszFullname);
    54115208            }
    54125209
     
    54215218         * some unused sectors in the extent. */
    54225219        uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector);
    5423         rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    5424                                     VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
    5425                                     &uGTSectorLE, sizeof(uGTSectorLE), pIoCtx,
    5426                                     vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5220        rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5221                                         VMDK_SECTOR2BYTE(pExtent->uSectorGD) + uGDIndex * sizeof(uGTSectorLE),
     5222                                         &uGTSectorLE, sizeof(uGTSectorLE), pIoCtx,
     5223                                         vmdkAllocGrainAsyncComplete, pGrainAlloc);
    54275224        if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    54285225            pGrainAlloc->cIoXfersPending++;
    54295226        else if (RT_FAILURE(rc))
    5430             return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
     5227            return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write grain directory entry in '%s'"), pExtent->pszFullname);
    54315228        if (pExtent->pRGD)
    54325229        {
    54335230            uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector);
    5434             rc = vmdkFileWriteMetaAsync(pImage, pExtent->pFile,
    5435                                         VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uGTSectorLE),
    5436                                         &uRGTSectorLE, sizeof(uRGTSectorLE), pIoCtx,
    5437                                         vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5231            rc = vdIfIoIntFileWriteMetaAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5232                                             VMDK_SECTOR2BYTE(pExtent->uSectorRGD) + uGDIndex * sizeof(uGTSectorLE),
     5233                                             &uRGTSectorLE, sizeof(uRGTSectorLE), pIoCtx,
     5234                                             vmdkAllocGrainAsyncComplete, pGrainAlloc);
    54385235            if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    54395236                pGrainAlloc->cIoXfersPending++;
    54405237            else if (RT_FAILURE(rc))
    5441                 return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
     5238                return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write backup grain directory entry in '%s'"), pExtent->pszFullname);
    54425239        }
    54435240
     
    54605257
    54615258    /* Write the data. Always a full grain, or we're in big trouble. */
    5462     rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
    5463                                 uFileOffset, pIoCtx, cbWrite,
    5464                                 vmdkAllocGrainAsyncComplete, pGrainAlloc);
     5259    rc = vdIfIoIntFileWriteUserAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     5260                                     uFileOffset, pIoCtx, cbWrite,
     5261                                     vmdkAllocGrainAsyncComplete, pGrainAlloc);
    54655262    if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS)
    54665263        pGrainAlloc->cIoXfersPending++;
    54675264    else if (RT_FAILURE(rc))
    5468         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
     5265        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: cannot write allocated data block in '%s'"), pExtent->pszFullname);
    54695266
    54705267    pExtent->uAppendPosition += cbWrite;
     
    55185315        {
    55195316            RT_ZERO(Marker);
    5520             rc = vmdkFileReadSync(pImage, pExtent->pFile,
    5521                                   VMDK_SECTOR2BYTE(uGrainSectorAbs),
    5522                                   &Marker, RT_OFFSETOF(VMDKMARKER, uType),
    5523                                   NULL);
     5317            rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     5318                                       VMDK_SECTOR2BYTE(uGrainSectorAbs),
     5319                                       &Marker, RT_OFFSETOF(VMDKMARKER, uType),
     5320                                       NULL);
    55245321            if (RT_FAILURE(rc))
    55255322                return rc;
     
    55305327            {
    55315328                /* A marker for something else than a compressed grain. */
    5532                 rc = vmdkFileReadSync(pImage, pExtent->pFile,
    5533                                         VMDK_SECTOR2BYTE(uGrainSectorAbs)
    5534                                       + RT_OFFSETOF(VMDKMARKER, uType),
    5535                                       &Marker.uType, sizeof(Marker.uType),
    5536                                       NULL);
     5329                rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     5330                                             VMDK_SECTOR2BYTE(uGrainSectorAbs)
     5331                                           + RT_OFFSETOF(VMDKMARKER, uType),
     5332                                           &Marker.uType, sizeof(Marker.uType),
     5333                                           NULL);
    55375334                if (RT_FAILURE(rc))
    55385335                    return rc;
     
    55475344                         * success case. If this read fails it means the image
    55485345                         * is truncated, but this is harmless so ignore. */
    5549                         vmdkFileReadSync(pImage, pExtent->pFile,
    5550                                            VMDK_SECTOR2BYTE(uGrainSectorAbs)
    5551                                          + 511,
    5552                                          &Marker.uSector, 1, NULL);
     5346                        vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     5347                                                VMDK_SECTOR2BYTE(uGrainSectorAbs)
     5348                                              + 511,
     5349                                              &Marker.uSector, 1, NULL);
    55535350                        break;
    55545351                    case VMDK_MARKER_GT:
     
    57675564    PFNVDPROGRESS pfnProgress = NULL;
    57685565    void *pvUser = NULL;
    5769     PVDINTERFACE pIfProgress = VDInterfaceGet(pVDIfsOperation,
    5770                                               VDINTERFACETYPE_PROGRESS);
    5771     PVDINTERFACEPROGRESS pCbProgress = NULL;
     5566    PVDINTERFACEPROGRESS pIfProgress = VDIfProgressGet(pVDIfsOperation);
    57725567    if (pIfProgress)
    57735568    {
    5774         pCbProgress = VDGetInterfaceProgress(pIfProgress);
    5775         pfnProgress = pCbProgress->pfnProgress;
    5776         pvUser = pIfProgress->pvUser;
     5569        pfnProgress = pIfProgress->pfnProgress;
     5570        pvUser = pIfProgress->Core.pvUser;
    57775571    }
    57785572
     
    59965790        vmdkFileClose(pImage, &pExtent->pFile, false);
    59975791        /* Rename the extent file. */
    5998         rc = vmdkFileMove(pImage, pExtent->pszFullname, apszNewName[i], 0);
     5792        rc = vdIfIoIntFileMove(pImage->pIfIo, pExtent->pszFullname, apszNewName[i], 0);
    59995793        if (RT_FAILURE(rc))
    60005794            goto rollback;
     
    60145808    if (!fEmbeddedDesc)
    60155809    {
    6016         rc = vmdkFileMove(pImage, pImage->pszFilename, apszNewName[cExtents], 0);
     5810        rc = vdIfIoIntFileMove(pImage->pIfIo, pImage->pszFilename, apszNewName[cExtents], 0);
    60175811        if (RT_FAILURE(rc))
    60185812            goto rollback;
     
    60475841            if (apszOldName[i])
    60485842            {
    6049                 rrc = vmdkFileMove(pImage, apszNewName[i], apszOldName[i], 0);
     5843                rrc = vdIfIoIntFileMove(pImage->pIfIo, apszNewName[i], apszOldName[i], 0);
    60505844                AssertRC(rrc);
    60515845            }
     
    62276021                else
    62286022                {
    6229                     rc = vmdkFileReadSync(pImage, pExtent->pFile,
    6230                                           VMDK_SECTOR2BYTE(uSectorExtentAbs),
    6231                                           pvBuf, cbToRead, NULL);
     6023                    rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     6024                                               VMDK_SECTOR2BYTE(uSectorExtentAbs),
     6025                                               pvBuf, cbToRead, NULL);
    62326026                }
    62336027            }
     
    62356029        case VMDKETYPE_VMFS:
    62366030        case VMDKETYPE_FLAT:
    6237             rc = vmdkFileReadSync(pImage, pExtent->pFile,
    6238                                   VMDK_SECTOR2BYTE(uSectorExtentRel),
    6239                                   pvBuf, cbToRead, NULL);
     6031            rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage,
     6032                                       VMDK_SECTOR2BYTE(uSectorExtentRel),
     6033                                       pvBuf, cbToRead, NULL);
    62406034            break;
    62416035        case VMDKETYPE_ZERO:
     
    63696163                else
    63706164                {
    6371                     rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    6372                                            VMDK_SECTOR2BYTE(uSectorExtentAbs),
    6373                                            pvBuf, cbToWrite, NULL);
     6165                    rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     6166                                                VMDK_SECTOR2BYTE(uSectorExtentAbs),
     6167                                                pvBuf, cbToWrite, NULL);
    63746168                }
    63756169            }
     
    63796173            /* Clip write range to remain in this extent. */
    63806174            cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
    6381             rc = vmdkFileWriteSync(pImage, pExtent->pFile,
    6382                                    VMDK_SECTOR2BYTE(uSectorExtentRel),
    6383                                    pvBuf, cbToWrite, NULL);
     6175            rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage,
     6176                                        VMDK_SECTOR2BYTE(uSectorExtentRel),
     6177                                        pvBuf, cbToWrite, NULL);
    63846178            break;
    63856179        case VMDKETYPE_ZERO:
     
    64556249        if (pImage->pFile != NULL)
    64566250        {
    6457             int rc = vmdkFileGetSize(pImage, pImage->pFile, &cbFile);
     6251            int rc = vdIfIoIntFileGetSize(pImage->pIfIo, pImage->pFile->pStorage, &cbFile);
    64586252            if (RT_SUCCESS(rc))
    64596253                cb += cbFile;
     
    64636257            if (pImage->pExtents[i].pFile != NULL)
    64646258            {
    6465                 int rc = vmdkFileGetSize(pImage, pImage->pExtents[i].pFile, &cbFile);
     6259                int rc = vdIfIoIntFileGetSize(pImage->pIfIo, pImage->pExtents[i].pFile->pStorage, &cbFile);
    64666260                if (RT_SUCCESS(rc))
    64676261                    cb += cbFile;
     
    67776571                                        VMDK_DDB_IMAGE_UUID, pUuid);
    67786572                if (RT_FAILURE(rc))
    6779                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
     6573                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing image UUID in descriptor in '%s'"), pImage->pszFilename);
    67806574                rc = VINF_SUCCESS;
    67816575            }
     
    68366630                                            VMDK_DDB_MODIFICATION_UUID, pUuid);
    68376631                    if (RT_FAILURE(rc))
    6838                         return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in descriptor in '%s'"), pImage->pszFilename);
     6632                        return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing modification UUID in descriptor in '%s'"), pImage->pszFilename);
    68396633                }
    68406634                rc = VINF_SUCCESS;
     
    68936687                                        VMDK_DDB_PARENT_UUID, pUuid);
    68946688                if (RT_FAILURE(rc))
    6895                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
     6689                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
    68966690                rc = VINF_SUCCESS;
    68976691            }
     
    69496743                                        VMDK_DDB_PARENT_MODIFICATION_UUID, pUuid);
    69506744                if (RT_FAILURE(rc))
    6951                     return vmdkError(pImage, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
     6745                    return vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: error storing parent image UUID in descriptor in '%s'"), pImage->pszFilename);
    69526746                rc = VINF_SUCCESS;
    69536747            }
     
    69736767    if (pImage)
    69746768    {
    6975         vmdkMessage(pImage, "Header: Geometry PCHS=%u/%u/%u LCHS=%u/%u/%u cbSector=%llu\n",
    6976                     pImage->PCHSGeometry.cCylinders, pImage->PCHSGeometry.cHeads, pImage->PCHSGeometry.cSectors,
    6977                     pImage->LCHSGeometry.cCylinders, pImage->LCHSGeometry.cHeads, pImage->LCHSGeometry.cSectors,
    6978                     VMDK_BYTE2SECTOR(pImage->cbSize));
    6979         vmdkMessage(pImage, "Header: uuidCreation={%RTuuid}\n", &pImage->ImageUuid);
    6980         vmdkMessage(pImage, "Header: uuidModification={%RTuuid}\n", &pImage->ModificationUuid);
    6981         vmdkMessage(pImage, "Header: uuidParent={%RTuuid}\n", &pImage->ParentUuid);
    6982         vmdkMessage(pImage, "Header: uuidParentModification={%RTuuid}\n", &pImage->ParentModificationUuid);
     6769        vdIfErrorMessage(pImage->pIfError, "Header: Geometry PCHS=%u/%u/%u LCHS=%u/%u/%u cbSector=%llu\n",
     6770                         pImage->PCHSGeometry.cCylinders, pImage->PCHSGeometry.cHeads, pImage->PCHSGeometry.cSectors,
     6771                         pImage->LCHSGeometry.cCylinders, pImage->LCHSGeometry.cHeads, pImage->LCHSGeometry.cSectors,
     6772                         VMDK_BYTE2SECTOR(pImage->cbSize));
     6773        vdIfErrorMessage(pImage->pIfError, "Header: uuidCreation={%RTuuid}\n", &pImage->ImageUuid);
     6774        vdIfErrorMessage(pImage->pIfError, "Header: uuidModification={%RTuuid}\n", &pImage->ModificationUuid);
     6775        vdIfErrorMessage(pImage->pIfError, "Header: uuidParent={%RTuuid}\n", &pImage->ParentUuid);
     6776        vdIfErrorMessage(pImage->pIfError, "Header: uuidParentModification={%RTuuid}\n", &pImage->ParentModificationUuid);
    69836777    }
    69846778}
     
    70416835            {
    70426836                AssertMsg(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED), ("Async I/O is not supported for stream optimized VMDK's\n"));
    7043                 rc = vmdkFileReadUserAsync(pImage, pExtent->pFile,
    7044                                            VMDK_SECTOR2BYTE(uSectorExtentAbs),
    7045                                            pIoCtx, cbRead);
     6837                rc = vdIfIoIntFileReadUserAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     6838                                                VMDK_SECTOR2BYTE(uSectorExtentAbs),
     6839                                                pIoCtx, cbRead);
    70466840            }
    70476841            break;
    70486842        case VMDKETYPE_VMFS:
    70496843        case VMDKETYPE_FLAT:
    7050             rc = vmdkFileReadUserAsync(pImage, pExtent->pFile,
    7051                                        VMDK_SECTOR2BYTE(uSectorExtentRel),
    7052                                        pIoCtx, cbRead);
     6844            rc = vdIfIoIntFileReadUserAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     6845                                            VMDK_SECTOR2BYTE(uSectorExtentRel),
     6846                                            pIoCtx, cbRead);
    70536847            break;
    70546848        case VMDKETYPE_ZERO:
    70556849            size_t cbSet;
    70566850
    7057             cbSet = vmdkFileIoCtxSet(pImage, pIoCtx, 0, cbRead);
     6851            cbSet = vdIfIoIntIoCtxSet(pImage->pIfIo, pIoCtx, 0, cbRead);
    70586852            Assert(cbSet == cbRead);
    70596853
     
    71666960            {
    71676961                Assert(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED));
    7168                 rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
    7169                                             VMDK_SECTOR2BYTE(uSectorExtentAbs),
    7170                                             pIoCtx, cbWrite, NULL, NULL);
     6962                rc = vdIfIoIntFileWriteUserAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     6963                                                 VMDK_SECTOR2BYTE(uSectorExtentAbs),
     6964                                                 pIoCtx, cbWrite, NULL, NULL);
    71716965            }
    71726966            break;
     
    71756969            /* Clip write range to remain in this extent. */
    71766970            cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel));
    7177             rc = vmdkFileWriteUserAsync(pImage, pExtent->pFile,
    7178                                         VMDK_SECTOR2BYTE(uSectorExtentRel),
    7179                                         pIoCtx, cbWrite, NULL, NULL);
     6971            rc = vdIfIoIntFileWriteUserAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     6972                                             VMDK_SECTOR2BYTE(uSectorExtentRel),
     6973                                             pIoCtx, cbWrite, NULL, NULL);
    71806974            break;
    71816975        case VMDKETYPE_ZERO:
     
    72707064                if (   pExtent->pFile != NULL
    72717065                    && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY))
    7272                     rc = vmdkFileFlushAsync(pImage, pExtent->pFile, pIoCtx);
     7066                    rc = vdIfIoIntFileFlushAsync(pImage->pIfIo, pExtent->pFile->pStorage,
     7067                                                 pIoCtx, NULL, NULL);
    72737068                break;
    72747069            case VMDKETYPE_ZERO:
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