Changeset 38469 in vbox for trunk/src/VBox/Storage/VMDK.cpp
- Timestamp:
- Aug 16, 2011 10:34:32 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73520
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VMDK.cpp
r38030 r38469 410 410 /** Descriptor file if applicable. */ 411 411 PVMDKFILE pFile; 412 /** I/O interface. */413 PVDINTERFACE pInterfaceIO;414 /** I/O interface callbacks. */415 PVDINTERFACEIOINT pInterfaceIOCallbacks;416 412 417 413 /** Pointer to the per-disk VD interface list. */ … … 421 417 422 418 /** Error interface. */ 423 PVDINTERFACE pInterfaceError; 424 /** Error interface callbacks. */ 425 PVDINTERFACEERROR pInterfaceErrorCallbacks; 419 PVDINTERFACEERROR pIfError; 420 /** I/O interface. */ 421 PVDINTERFACEIOINT pIfIo; 422 426 423 427 424 /** Pointer to the image extents. */ … … 536 533 537 534 /** 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 /**568 535 * Internal: open a file (using a file descriptor cache to ensure each file 569 536 * is only opened once - anything else can cause locking problems). … … 608 575 pVmdkFile->fAsyncIO = fAsyncIO; 609 576 610 rc = pImage->pInterfaceIOCallbacks->pfnOpen(pImage->pInterfaceIO->pvUser, 611 pszFilename, fOpen, 612 &pVmdkFile->pStorage); 577 rc = vdIfIoIntFileOpen(pImage->pIfIo, pszFilename, fOpen, 578 &pVmdkFile->pStorage); 613 579 if (RT_SUCCESS(rc)) 614 580 { … … 660 626 pImage->pFiles = pNext; 661 627 662 rc = pImage->pInterfaceIOCallbacks->pfnClose(pImage->pInterfaceIO->pvUser, 663 pVmdkFile->pStorage); 628 rc = vdIfIoIntFileClose(pImage->pIfIo, pVmdkFile->pStorage); 664 629 if (RT_SUCCESS(rc) && pVmdkFile->fDelete) 665 rc = pImage->pInterfaceIOCallbacks->pfnDelete(pImage->pInterfaceIO->pvUser, 666 pVmdkFile->pszFilename); 630 rc = vdIfIoIntFileDelete(pImage->pIfIo, pVmdkFile->pszFilename); 667 631 RTStrFree((char *)(void *)pVmdkFile->pszFilename); 668 632 RTMemFree(pVmdkFile); … … 672 636 return rc; 673 637 } 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 836 638 837 639 static DECLCALLBACK(int) vmdkFileInflateHelper(void *pvUser, void *pvBuf, size_t cbBuf, size_t *pcbBuf) … … 888 690 if (!pcvMarker) 889 691 { 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); 892 695 if (RT_FAILURE(rc)) 893 696 return rc; … … 909 712 910 713 /* Compressed grain marker. Data follows immediately. */ 911 rc = v mdkFileReadSync(pImage, pExtent->pFile,912 uOffset + RT_OFFSETOF(VMDKMARKER, uType),913 (uint8_t *)pExtent->pvCompGrain914 + RT_OFFSETOF(VMDKMARKER, uType),915 RT_ALIGN_Z( cbCompSize916 + 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); 919 722 920 723 if (puLBA) … … 1021 824 pMarker->cbSize = RT_H2LE_U32( DeflateState.iOffset 1022 825 - RT_OFFSETOF(VMDKMARKER, uType)); 1023 rc = v mdkFileWriteSync(pImage, pExtent->pFile, uOffset, pMarker,1024 uSize, NULL);826 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, 827 uOffset, pMarker, uSize, NULL); 1025 828 if (RT_FAILURE(rc)) 1026 829 return rc; … … 1258 1061 /* The VMDK 1.1 spec seems to talk about compressed grain directories, 1259 1062 * but in reality they are not compressed. */ 1260 rc = v mdkFileReadSync(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); 1263 1066 AssertRC(rc); 1264 1067 if (RT_FAILURE(rc)) 1265 1068 { 1266 rc = v mdkError(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); 1267 1070 goto out; 1268 1071 } … … 1274 1077 /* The VMDK 1.1 spec seems to talk about compressed grain directories, 1275 1078 * but in reality they are not compressed. */ 1276 rc = v mdkFileReadSync(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); 1279 1082 AssertRC(rc); 1280 1083 if (RT_FAILURE(rc)) 1281 1084 { 1282 rc = v mdkError(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); 1283 1086 goto out; 1284 1087 } … … 1317 1120 RTMemTmpFree(pTmpGT1); 1318 1121 RTMemTmpFree(pTmpGT2); 1319 rc = v mdkError(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); 1320 1123 goto out; 1321 1124 } 1322 1125 /* The VMDK 1.1 spec seems to talk about compressed grain tables, 1323 1126 * but in reality they are not compressed. */ 1324 rc = v mdkFileReadSync(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); 1327 1130 if (RT_FAILURE(rc)) 1328 1131 { 1329 rc = v mdkError(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); 1330 1133 RTMemTmpFree(pTmpGT1); 1331 1134 RTMemTmpFree(pTmpGT2); … … 1334 1137 /* The VMDK 1.1 spec seems to talk about compressed grain tables, 1335 1138 * but in reality they are not compressed. */ 1336 rc = v mdkFileReadSync(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); 1339 1142 if (RT_FAILURE(rc)) 1340 1143 { 1341 rc = v mdkError(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); 1342 1145 RTMemTmpFree(pTmpGT1); 1343 1146 RTMemTmpFree(pTmpGT2); … … 1348 1151 RTMemTmpFree(pTmpGT1); 1349 1152 RTMemTmpFree(pTmpGT2); 1350 rc = v mdkError(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); 1351 1154 goto out; 1352 1155 } … … 1401 1204 cbOverhead = RT_ALIGN_64(cbOverhead, 1402 1205 VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain)); 1403 rc = v mdkFileSetSize(pImage, pExtent->pFile, cbOverhead);1206 rc = vdIfIoIntFileSetSize(pImage->pIfIo, pExtent->pFile->pStorage, cbOverhead); 1404 1207 } 1405 1208 if (RT_FAILURE(rc)) … … 1440 1243 uGTSectorLE = RT_H2LE_U64(uOffsetSectors); 1441 1244 /* Write the redundant grain directory entry to disk. */ 1442 rc = v mdkFileWriteSync(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); 1445 1248 if (RT_FAILURE(rc)) 1446 1249 { 1447 rc = v mdkError(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); 1448 1251 goto out; 1449 1252 } … … 1458 1261 uGTSectorLE = RT_H2LE_U64(uOffsetSectors); 1459 1262 /* Write the grain directory entry to disk. */ 1460 rc = v mdkFileWriteSync(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); 1463 1266 if (RT_FAILURE(rc)) 1464 1267 { 1465 rc = v mdkError(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); 1466 1269 goto out; 1467 1270 } … … 1497 1300 pszQ = (char *)strchr(pszStr, '"'); 1498 1301 if (pszQ == NULL) 1499 return v mdkError(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); 1500 1303 } 1501 1304 … … 1519 1322 if ( pDescriptor->cLines >= VMDK_DESCRIPTOR_LINES_MAX - 1 1520 1323 && pEnd - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff) 1521 return v mdkError(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); 1522 1325 1523 1326 memcpy(pEnd, pszLine, cbDiff); … … 1593 1396 if ( pDescriptor->aLines[pDescriptor->cLines] 1594 1397 - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff) 1595 return v mdkError(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); 1596 1399 1597 1400 memmove(pszTmp + cbNewVal, pszTmp + cbOldVal, … … 1636 1439 || ( pDescriptor->aLines[pDescriptor->cLines] 1637 1440 - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff)) 1638 return v mdkError(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); 1639 1442 for (unsigned i = pDescriptor->cLines + 1; i > uLast + 1; i--) 1640 1443 { … … 1783 1586 || ( pDescriptor->aLines[pDescriptor->cLines] 1784 1587 - pDescriptor->aLines[0] > (ptrdiff_t)pDescriptor->cbDescAlloc - cbDiff)) 1785 return v mdkError(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); 1786 1589 1787 1590 for (unsigned i = pDescriptor->cLines + 1; i > uLast + 1; i--) … … 1925 1728 if (cLine >= VMDK_DESCRIPTOR_LINES_MAX) 1926 1729 { 1927 rc = v mdkError(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); 1928 1731 goto out; 1929 1732 } … … 1935 1738 if (*(pTmp + 1) != '\n') 1936 1739 { 1937 rc = v mdkError(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); 1938 1741 goto out; 1939 1742 } … … 1960 1763 && strcmp(pDescriptor->aLines[0], "# Disk Descriptor File")) 1961 1764 { 1962 rc = v mdkError(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); 1963 1766 goto out; 1964 1767 } … … 1980 1783 { 1981 1784 /* Incorrect ordering of entries. */ 1982 rc = v mdkError(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); 1983 1786 goto out; 1984 1787 } … … 1995 1798 { 1996 1799 /* Incorrect ordering of entries. */ 1997 rc = v mdkError(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); 1998 1801 goto out; 1999 1802 } … … 2010 1813 { 2011 1814 /* Incorrect ordering of entries. */ 2012 rc = v mdkError(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); 2013 1816 goto out; 2014 1817 } … … 2155 1958 rc = vmdkDescBaseGetU32(&pImage->Descriptor, "version", &uVersion); 2156 1959 if (RT_FAILURE(rc)) 2157 return v mdkError(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); 2158 1961 if (uVersion != 1) 2159 return v mdkError(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); 2160 1963 2161 1964 /* Get image creation type and determine image flags. */ … … 2164 1967 &pszCreateType); 2165 1968 if (RT_FAILURE(rc)) 2166 return v mdkError(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); 2167 1970 if ( !strcmp(pszCreateType, "twoGbMaxExtentSparse") 2168 1971 || !strcmp(pszCreateType, "twoGbMaxExtentFlat")) … … 2186 1989 { 2187 1990 /* Monolithic image, must have only one extent (already opened). */ 2188 return v mdkError(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); 2189 1992 } 2190 1993 … … 2219 2022 } 2220 2023 else 2221 return v mdkError(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); 2222 2025 if (*pszLine++ != ' ') 2223 return v mdkError(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); 2224 2027 2225 2028 /* Nominal size of the extent. */ … … 2227 2030 &pImage->pExtents[i].cNominalSectors); 2228 2031 if (RT_FAILURE(rc)) 2229 return v mdkError(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); 2230 2033 if (*pszLine++ != ' ') 2231 return v mdkError(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); 2232 2035 2233 2036 /* Type of the extent. */ … … 2258 2061 } 2259 2062 else 2260 return v mdkError(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); 2261 2064 2262 2065 if (pImage->pExtents[i].enmType == VMDKETYPE_ZERO) … … 2266 2069 pszLine++; 2267 2070 if (*pszLine != '\0') 2268 return v mdkError(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); 2269 2072 pImage->pExtents[i].pszBasename = NULL; 2270 2073 } … … 2273 2076 /* All other extent types have basename and optional offset. */ 2274 2077 if (*pszLine++ != ' ') 2275 return v mdkError(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); 2276 2079 2277 2080 /* Basename of the image. Surrounded by quotes. */ … … 2290 2093 &pImage->pExtents[i].uSectorOffset); 2291 2094 if (RT_FAILURE(rc)) 2292 return v mdkError(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); 2293 2096 } 2294 2097 } 2295 2098 2296 2099 if (*pszLine != '\0') 2297 return v mdkError(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); 2298 2101 } 2299 2102 } … … 2306 2109 pImage->PCHSGeometry.cCylinders = 0; 2307 2110 else if (RT_FAILURE(rc)) 2308 return v mdkError(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); 2309 2112 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor, 2310 2113 VMDK_DDB_GEO_PCHS_HEADS, … … 2313 2116 pImage->PCHSGeometry.cHeads = 0; 2314 2117 else if (RT_FAILURE(rc)) 2315 return v mdkError(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); 2316 2119 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor, 2317 2120 VMDK_DDB_GEO_PCHS_SECTORS, … … 2320 2123 pImage->PCHSGeometry.cSectors = 0; 2321 2124 else if (RT_FAILURE(rc)) 2322 return v mdkError(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); 2323 2126 if ( pImage->PCHSGeometry.cCylinders == 0 2324 2127 || pImage->PCHSGeometry.cHeads == 0 … … 2341 2144 pImage->LCHSGeometry.cCylinders = 0; 2342 2145 else if (RT_FAILURE(rc)) 2343 return v mdkError(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); 2344 2147 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor, 2345 2148 VMDK_DDB_GEO_LCHS_HEADS, … … 2348 2151 pImage->LCHSGeometry.cHeads = 0; 2349 2152 else if (RT_FAILURE(rc)) 2350 return v mdkError(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); 2351 2154 rc = vmdkDescDDBGetU32(pImage, &pImage->Descriptor, 2352 2155 VMDK_DDB_GEO_LCHS_SECTORS, … … 2355 2158 pImage->LCHSGeometry.cSectors = 0; 2356 2159 else if (RT_FAILURE(rc)) 2357 return v mdkError(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); 2358 2161 if ( pImage->LCHSGeometry.cCylinders == 0 2359 2162 || pImage->LCHSGeometry.cHeads == 0 … … 2383 2186 VMDK_DDB_IMAGE_UUID, &pImage->ImageUuid); 2384 2187 if (RT_FAILURE(rc)) 2385 return v mdkError(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); 2386 2189 } 2387 2190 } … … 2409 2212 &pImage->ModificationUuid); 2410 2213 if (RT_FAILURE(rc)) 2411 return v mdkError(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); 2412 2215 } 2413 2216 } … … 2433 2236 VMDK_DDB_PARENT_UUID, &pImage->ParentUuid); 2434 2237 if (RT_FAILURE(rc)) 2435 return v mdkError(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); 2436 2239 } 2437 2240 } … … 2457 2260 &pImage->ParentModificationUuid); 2458 2261 if (RT_FAILURE(rc)) 2459 return v mdkError(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); 2460 2263 } 2461 2264 } … … 2499 2302 if (cbLimit) 2500 2303 { 2501 rc = v mdkError(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); 2502 2305 break; 2503 2306 } … … 2572 2375 if (RT_SUCCESS(rc)) 2573 2376 { 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); 2575 2379 if (RT_FAILURE(rc)) 2576 rc = v mdkError(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); 2577 2381 2578 2382 if (RT_SUCCESS(rc) && !cbLimit) 2579 2383 { 2580 rc = v mdkFileSetSize(pImage, pDescFile, cbDescriptor);2384 rc = vdIfIoIntFileSetSize(pImage->pIfIo, pDescFile->pStorage, cbDescriptor); 2581 2385 if (RT_FAILURE(rc)) 2582 rc = v mdkError(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); 2583 2387 } 2584 2388 … … 2625 2429 if (RT_SUCCESS(rc)) 2626 2430 { 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); 2628 2435 if ( RT_FAILURE(rc) 2629 2436 && rc != VERR_VD_ASYNC_IO_IN_PROGRESS) 2630 rc = v mdkError(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); 2631 2438 } 2632 2439 2633 2440 if (RT_SUCCESS(rc) && !cbLimit) 2634 2441 { 2635 rc = v mdkFileSetSize(pImage, pDescFile, cbDescriptor);2442 rc = vdIfIoIntFileSetSize(pImage->pIfIo, pDescFile->pStorage, cbDescriptor); 2636 2443 if (RT_FAILURE(rc)) 2637 rc = v mdkError(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); 2638 2445 } 2639 2446 … … 2654 2461 if (RT_LE2H_U32(pHeader->magicNumber) != VMDK_SPARSE_MAGICNUMBER) 2655 2462 { 2656 rc = v mdkError(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); 2657 2464 return rc; 2658 2465 } 2659 2466 if (RT_LE2H_U32(pHeader->version) != 1 && RT_LE2H_U32(pHeader->version) != 3) 2660 2467 { 2661 rc = v mdkError(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); 2662 2469 return rc; 2663 2470 } … … 2668 2475 || pHeader->doubleEndLineChar2 != '\n') ) 2669 2476 { 2670 rc = v mdkError(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); 2671 2478 return rc; 2672 2479 } … … 2687 2494 2688 2495 if (!fMagicAlreadyRead) 2689 rc = v mdkFileReadSync(pImage, pExtent->pFile, 0, &Header,2690 sizeof(Header), NULL);2496 rc = vdIfIoIntFileReadSync(pImage->pIfIo, pExtent->pFile->pStorage, 0, 2497 &Header, sizeof(Header), NULL); 2691 2498 else 2692 2499 { 2693 2500 Header.magicNumber = RT_H2LE_U32(VMDK_SPARSE_MAGICNUMBER); 2694 rc = v mdkFileReadSync(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); 2700 2507 } 2701 2508 AssertRC(rc); 2702 2509 if (RT_FAILURE(rc)) 2703 2510 { 2704 v mdkError(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); 2705 2512 rc = VERR_VD_VMDK_INVALID_HEADER; 2706 2513 goto out; … … 2718 2525 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))) 2719 2526 { 2720 rc = v mdkFileGetSize(pImage, pExtent->pFile, &cbFile);2527 rc = vdIfIoIntFileGetSize(pImage->pIfIo, pExtent->pFile->pStorage, &cbFile); 2721 2528 AssertRC(rc); 2722 2529 if (RT_FAILURE(rc)) 2723 2530 { 2724 rc = v mdkError(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); 2725 2532 goto out; 2726 2533 } … … 2735 2542 { 2736 2543 /* Read the footer, which comes before the end-of-stream marker. */ 2737 rc = v mdkFileReadSync(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); 2740 2547 AssertRC(rc); 2741 2548 if (RT_FAILURE(rc)) 2742 2549 { 2743 v mdkError(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); 2744 2551 rc = VERR_VD_VMDK_INVALID_HEADER; 2745 2552 goto out; … … 2760 2567 if (pExtent->uDescriptorSector && !pExtent->cDescriptorSectors) 2761 2568 { 2762 rc = v mdkError(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); 2763 2570 goto out; 2764 2571 } … … 2779 2586 || !(pImage->uOpenFlags & VD_OPEN_FLAGS_SEQUENTIAL))) 2780 2587 { 2781 rc = v mdkError(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); 2782 2589 goto out; 2783 2590 } … … 2788 2595 if (!cSectorsPerGDE || cSectorsPerGDE > UINT32_MAX) 2789 2596 { 2790 rc = v mdkError(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); 2791 2598 goto out; 2792 2599 } … … 2827 2634 * area (flat images only). If not, it means the image is at least 2828 2635 * truncated, or even seriously garbled. */ 2829 rc = v mdkFileGetSize(pImage, pExtent->pFile, &cbExtentSize);2636 rc = vdIfIoIntFileGetSize(pImage->pIfIo, pExtent->pFile->pStorage, &cbExtentSize); 2830 2637 if (RT_FAILURE(rc)) 2831 2638 { 2832 rc = v mdkError(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); 2833 2640 goto out; 2834 2641 } … … 2836 2643 && (pExtent->enmType != VMDKETYPE_FLAT || pExtent->cNominalSectors + pExtent->uSectorOffset > VMDK_BYTE2SECTOR(cbExtentSize))) 2837 2644 { 2838 rc = v mdkError(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); 2839 2646 goto out; 2840 2647 } … … 2848 2655 || pExtent->cSectorsPerGrain < 8) 2849 2656 { 2850 rc = v mdkError(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); 2851 2658 goto out; 2852 2659 } … … 2857 2664 || pExtent->cGTEntries < VMDK_GT_CACHELINE_SIZE) 2858 2665 { 2859 rc = v mdkError(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); 2860 2667 goto out; 2861 2668 } … … 2941 2748 Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression); 2942 2749 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); 2944 2752 AssertRC(rc); 2945 2753 if (RT_FAILURE(rc)) 2946 rc = v mdkError(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); 2947 2755 return rc; 2948 2756 } … … 3003 2811 Header.compressAlgorithm = RT_H2LE_U16(pExtent->uCompression); 3004 2812 3005 int rc = v mdkFileWriteMetaAsync(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); 3008 2816 if (RT_FAILURE(rc) && (rc != VERR_VD_ASYNC_IO_IN_PROGRESS)) 3009 rc = v mdkError(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); 3010 2818 return rc; 3011 2819 } … … 3022 2830 uint64_t cSectorsPerGDE; 3023 2831 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); 3025 2834 AssertRC(rc); 3026 2835 if (RT_FAILURE(rc)) 3027 2836 { 3028 v mdkError(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); 3029 2838 rc = VERR_VD_VMDK_INVALID_HEADER; 3030 2839 goto out; … … 3211 3020 pImage->uOpenFlags = uOpenFlags; 3212 3021 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); 3223 3025 3224 3026 /* … … 3241 3043 3242 3044 /* 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); 3244 3047 if (RT_FAILURE(rc)) 3245 3048 { 3246 v mdkError(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); 3247 3050 rc = VERR_VD_VMDK_INVALID_HEADER; 3248 3051 goto out; … … 3275 3078 if (!pExtent->uDescriptorSector || !pExtent->cDescriptorSectors) 3276 3079 { 3277 rc = v mdkError(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); 3278 3081 goto out; 3279 3082 } … … 3296 3099 goto out; 3297 3100 } 3298 rc = v mdkFileReadSync(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); 3302 3105 AssertRC(rc); 3303 3106 if (RT_FAILURE(rc)) 3304 3107 { 3305 rc = v mdkError(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); 3306 3109 goto out; 3307 3110 } … … 3338 3141 * and will result in the correct "truncated read" error handling. */ 3339 3142 uint64_t cbFileSize; 3340 rc = v mdkFileGetSize(pImage, pFile, &cbFileSize);3143 rc = vdIfIoIntFileGetSize(pImage->pIfIo, pFile->pStorage, &cbFileSize); 3341 3144 if (RT_FAILURE(rc)) 3342 3145 goto out; … … 3345 3148 if (cbFileSize < 50) 3346 3149 { 3347 rc = v mdkError(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); 3348 3151 goto out; 3349 3152 } … … 3367 3170 memcpy(pImage->pDescData, &u32Magic, sizeof(u32Magic)); 3368 3171 size_t cbRead; 3369 rc = v mdkFileReadSync(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); 3374 3177 if (RT_FAILURE(rc)) 3375 3178 { 3376 rc = v mdkError(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); 3377 3180 goto out; 3378 3181 } … … 3382 3185 /* Likely the read is truncated. Better fail a bit too early 3383 3186 * (normally the descriptor is much smaller than our buffer). */ 3384 rc = v mdkError(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); 3385 3188 goto out; 3386 3189 } … … 3595 3398 rc = vmdkCreateExtents(pImage, 1); 3596 3399 if (RT_FAILURE(rc)) 3597 return v mdkError(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); 3598 3401 pExtent = &pImage->pExtents[0]; 3599 3402 /* Create raw disk descriptor file. */ … … 3603 3406 false /* fAsyncIO */); 3604 3407 if (RT_FAILURE(rc)) 3605 return v mdkError(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); 3606 3409 3607 3410 /* Set up basename for extent description. Cannot use StrDup. */ … … 3628 3431 false /* fAsyncIO */); 3629 3432 if (RT_FAILURE(rc)) 3630 return v mdkError(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); 3631 3434 } 3632 3435 else … … 3645 3448 PVBOXHDDRAWPARTDESC pPart = &pRaw->pPartDescs[i]; 3646 3449 if (uStart > pPart->uStart) 3647 return v mdkError(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); 3648 3451 3649 3452 if (uStart < pPart->uStart) … … 3658 3461 rc = vmdkCreateExtents(pImage, cExtents); 3659 3462 if (RT_FAILURE(rc)) 3660 return v mdkError(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); 3661 3464 3662 3465 /* Create raw partition descriptor file. */ … … 3666 3469 false /* fAsyncIO */); 3667 3470 if (RT_FAILURE(rc)) 3668 return v mdkError(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); 3669 3472 3670 3473 /* Create base filename for the partition table extent. */ … … 3674 3477 const char *pszExt = RTPathExt(pszBase); 3675 3478 if (pszExt == NULL) 3676 return v mdkError(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); 3677 3480 char *pszBaseBase = RTStrDup(pszBase); 3678 3481 if (!pszBaseBase) … … 3738 3541 false /* fAsyncIO */); 3739 3542 if (RT_FAILURE(rc)) 3740 return v mdkError(pImage, rc, RT_SRC_POS, N_("VMDK: could not create new partition data file '%s'"), pExtent->pszFullname);3741 rc = v mdkFileWriteSync(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); 3745 3548 if (RT_FAILURE(rc)) 3746 return v mdkError(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); 3747 3550 uPartOffset += VMDK_BYTE2SECTOR(pPart->cbData); 3748 3551 } … … 3774 3577 false /* fAsyncIO */); 3775 3578 if (RT_FAILURE(rc)) 3776 return v mdkError(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); 3777 3580 } 3778 3581 else … … 3806 3609 "fullDevice" : "partitionedDevice"); 3807 3610 if (RT_FAILURE(rc)) 3808 return v mdkError(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); 3809 3612 return rc; 3810 3613 } … … 3833 3636 rc = vmdkCreateExtents(pImage, cExtents); 3834 3637 if (RT_FAILURE(rc)) 3835 return v mdkError(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); 3836 3639 3837 3640 /* Basename strings needed for constructing the extent names. */ … … 3848 3651 false /* fAsyncIO */); 3849 3652 if (RT_FAILURE(rc)) 3850 return v mdkError(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); 3851 3654 } 3852 3655 else … … 3919 3722 false /* fAsyncIO */); 3920 3723 if (RT_FAILURE(rc)) 3921 return v mdkError(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); 3922 3725 if (uImageFlags & VD_IMAGE_FLAGS_FIXED) 3923 3726 { 3924 rc = v mdkFileSetSize(pImage, pExtent->pFile, cbExtent);3727 rc = vdIfIoIntFileSetSize(pImage->pIfIo, pExtent->pFile->pStorage, cbExtent); 3925 3728 if (RT_FAILURE(rc)) 3926 return v mdkError(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); 3927 3730 3928 3731 /* Fill image with zeroes. We do this for every fixed-size image since on some systems … … 3945 3748 unsigned cbChunk = (unsigned)RT_MIN(cbExtent, cbBuf); 3946 3749 3947 rc = vmdkFileWriteSync(pImage, pExtent->pFile, uOff, pvBuf, cbChunk, NULL); 3750 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, 3751 uOff, pvBuf, cbChunk, NULL); 3948 3752 if (RT_FAILURE(rc)) 3949 3753 { 3950 3754 RTMemFree(pvBuf); 3951 return v mdkError(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); 3952 3756 } 3953 3757 … … 4021 3825 true /* fPreAlloc */); 4022 3826 if (RT_FAILURE(rc)) 4023 return v mdkError(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); 4024 3828 } 4025 3829 … … 4037 3841 rc = vmdkDescDDBSetStr(pImage, &pImage->Descriptor, "ddb.adapterType", "lsilogic"); 4038 3842 if (RT_FAILURE(rc)) 4039 return v mdkError(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); 4040 3844 } 4041 3845 … … 4062 3866 pszDescType); 4063 3867 if (RT_FAILURE(rc)) 4064 return v mdkError(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); 4065 3869 return rc; 4066 3870 } … … 4078 3882 rc = vmdkCreateExtents(pImage, 1); 4079 3883 if (RT_FAILURE(rc)) 4080 return v mdkError(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); 4081 3885 4082 3886 /* Basename strings needed for constructing the extent names. */ … … 4116 3920 false /* fAsyncIO */); 4117 3921 if (RT_FAILURE(rc)) 4118 return v mdkError(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); 4119 3923 4120 3924 /* Place descriptor file information. */ … … 4155 3959 false /* fPreAlloc */); 4156 3960 if (RT_FAILURE(rc)) 4157 return v mdkError(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); 4158 3962 4159 3963 rc = vmdkDescBaseSetStr(pImage, &pImage->Descriptor, "createType", 4160 3964 "streamOptimized"); 4161 3965 if (RT_FAILURE(rc)) 4162 return v mdkError(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); 4163 3967 4164 3968 return rc; … … 4180 3984 pImage->uImageFlags = uImageFlags; 4181 3985 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); 4192 3989 4193 3990 rc = vmdkCreateDescriptor(pImage, pImage->pDescData, pImage->cbDescAlloc, … … 4195 3992 if (RT_FAILURE(rc)) 4196 3993 { 4197 rc = v mdkError(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); 4198 3995 goto out; 4199 3996 } … … 4244 4041 if (RT_FAILURE(rc)) 4245 4042 { 4246 rc = v mdkError(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); 4247 4044 goto out; 4248 4045 } … … 4275 4072 if (RT_FAILURE(rc)) 4276 4073 { 4277 rc = v mdkError(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); 4278 4075 goto out; 4279 4076 } … … 4283 4080 if (RT_FAILURE(rc)) 4284 4081 { 4285 rc = v mdkError(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); 4286 4083 goto out; 4287 4084 } … … 4292 4089 if (RT_FAILURE(rc)) 4293 4090 { 4294 rc = v mdkError(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); 4295 4092 goto out; 4296 4093 } … … 4301 4098 if (RT_FAILURE(rc)) 4302 4099 { 4303 rc = v mdkError(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); 4304 4101 goto out; 4305 4102 } … … 4312 4109 if (RT_FAILURE(rc)) 4313 4110 { 4314 rc = v mdkError(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); 4315 4112 goto out; 4316 4113 } … … 4329 4126 if (RT_FAILURE(rc)) 4330 4127 { 4331 rc = v mdkError(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); 4332 4129 goto out; 4333 4130 } … … 4336 4133 if (RT_FAILURE(rc)) 4337 4134 { 4338 rc = v mdkError(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); 4339 4136 goto out; 4340 4137 } … … 4371 4168 RTStrFree(pszCommentEncoded); 4372 4169 if (RT_FAILURE(rc)) 4373 return v mdkError(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); 4374 4171 return VINF_SUCCESS; 4375 4172 } … … 4429 4226 pMarker->uSector = RT_H2LE_U64(VMDK_BYTE2SECTOR(pExtent->cGTEntries * sizeof(uint32_t))); 4430 4227 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GT); 4431 rc = v mdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,4432 aMarker, sizeof(aMarker), NULL);4228 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, uFileOffset, 4229 aMarker, sizeof(aMarker), NULL); 4433 4230 AssertRC(rc); 4434 4231 uFileOffset += 512; … … 4447 4244 *pGTTmp = RT_H2LE_U32(*pGTTmp); 4448 4245 4449 rc = v mdkFileWriteSync(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); 4453 4250 uFileOffset += VMDK_GT_CACHELINE_SIZE * sizeof(uint32_t); 4454 4251 if (RT_FAILURE(rc)) … … 4537 4334 pMarker->uSector = VMDK_BYTE2SECTOR(RT_ALIGN_64(RT_H2LE_U64(pExtent->cGDEntries * sizeof(uint32_t)), 512)); 4538 4335 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_GD); 4539 rc = v mdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,4540 aMarker, sizeof(aMarker), NULL);4336 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, uFileOffset, 4337 aMarker, sizeof(aMarker), NULL); 4541 4338 AssertRC(rc); 4542 4339 uFileOffset += 512; … … 4547 4344 for (uint32_t i = 0; i < pExtent->cGDEntries; i++, pGDTmp++) 4548 4345 *pGDTmp = RT_H2LE_U32(*pGDTmp); 4549 rc = v mdkFileWriteSync(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); 4553 4350 AssertRC(rc); 4554 4351 … … 4563 4360 pMarker->uSector = VMDK_BYTE2SECTOR(512); 4564 4361 pMarker->uType = RT_H2LE_U32(VMDK_MARKER_FOOTER); 4565 rc = v mdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,4566 aMarker, sizeof(aMarker), NULL);4362 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, 4363 uFileOffset, aMarker, sizeof(aMarker), NULL); 4567 4364 AssertRC(rc); 4568 4365 … … 4574 4371 /* End-of-stream marker. */ 4575 4372 memset(pMarker, '\0', sizeof(aMarker)); 4576 rc = v mdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,4577 aMarker, sizeof(aMarker), NULL);4373 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, 4374 uFileOffset, aMarker, sizeof(aMarker), NULL); 4578 4375 AssertRC(rc); 4579 4376 } … … 4682 4479 && !(pImage->uOpenFlags & VD_OPEN_FLAGS_READONLY) 4683 4480 && !(pExtent->pszBasename[0] == RTPATH_SLASH)) 4684 rc = v mdkFileFlush(pImage, pExtent->pFile);4481 rc = vdIfIoIntFileFlushSync(pImage->pIfIo, pExtent->pFile->pStorage); 4685 4482 break; 4686 4483 case VMDKETYPE_ZERO: … … 4781 4578 { 4782 4579 /* Cache miss, fetch data from disk. */ 4783 rc = v mdkFileReadSync(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); 4786 4583 if (RT_FAILURE(rc)) 4787 return v mdkError(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); 4788 4585 pGTCacheEntry->uExtent = pExtent->uExtent; 4789 4586 pGTCacheEntry->uGTBlock = uGTBlock; … … 4835 4632 /* Cache miss, fetch data from disk. */ 4836 4633 PVDMETAXFER pMetaXfer; 4837 rc = v mdkFileReadMetaAsync(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); 4840 4637 if (RT_FAILURE(rc)) 4841 4638 return rc; 4842 4639 /* We can release the metadata transfer immediately. */ 4843 v mdkFileMetaXferRelease(pImage, pMetaXfer);4640 vdIfIoIntMetaXferRelease(pImage->pIfIo, pMetaXfer); 4844 4641 pGTCacheEntry->uExtent = pExtent->uExtent; 4845 4642 pGTCacheEntry->uGTBlock = uGTBlock; … … 4911 4708 i++) 4912 4709 { 4913 rc = v mdkFileWriteSync(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); 4916 4713 if (RT_FAILURE(rc)) 4917 return v mdkError(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); 4918 4715 } 4919 4716 pExtent->uAppendPosition = RT_ALIGN_64( pExtent->uAppendPosition … … 4946 4743 i++) 4947 4744 { 4948 rc = v mdkFileWriteSync(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); 4951 4748 if (RT_FAILURE(rc)) 4952 return v mdkError(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); 4953 4750 } 4954 4751 … … 4962 4759 * some unused sectors in the extent. */ 4963 4760 uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector); 4964 rc = v mdkFileWriteSync(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); 4967 4764 if (RT_FAILURE(rc)) 4968 return v mdkError(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); 4969 4766 if (pExtent->pRGD) 4970 4767 { 4971 4768 uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector); 4972 rc = v mdkFileWriteSync(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); 4975 4772 if (RT_FAILURE(rc)) 4976 return v mdkError(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); 4977 4774 } 4978 4775 … … 4992 4789 { 4993 4790 if (cbWrite != VMDK_SECTOR2BYTE(pExtent->cSectorsPerGrain)) 4994 return v mdkError(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); 4995 4792 4996 4793 /* Invalidate cache, just in case some code incorrectly allows mixing … … 5005 4802 { 5006 4803 AssertRC(rc); 5007 return v mdkError(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); 5008 4805 } 5009 4806 pExtent->uLastGrainAccess = uSector / pExtent->cSectorsPerGrain; … … 5012 4809 else 5013 4810 { 5014 rc = v mdkFileWriteSync(pImage, pExtent->pFile, uFileOffset,5015 pvBuf, cbWrite, NULL);4811 rc = vdIfIoIntFileWriteSync(pImage->pIfIo, pExtent->pFile->pStorage, 4812 uFileOffset, pvBuf, cbWrite, NULL); 5016 4813 if (RT_FAILURE(rc)) 5017 return v mdkError(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); 5018 4815 pExtent->uAppendPosition += cbWrite; 5019 4816 } … … 5027 4824 { 5028 4825 /* Cache miss, fetch data from disk. */ 5029 rc = v mdkFileReadSync(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); 5032 4829 if (RT_FAILURE(rc)) 5033 return v mdkError(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); 5034 4831 pGTCacheEntry->uExtent = pExtent->uExtent; 5035 4832 pGTCacheEntry->uGTBlock = uGTBlock; … … 5048 4845 pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(uFileOffset); 5049 4846 /* Update grain table on disk. */ 5050 rc = v mdkFileWriteSync(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); 5053 4850 if (RT_FAILURE(rc)) 5054 return v mdkError(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); 5055 4852 if (pExtent->pRGD) 5056 4853 { 5057 4854 /* Update backup grain table on disk. */ 5058 rc = v mdkFileWriteSync(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); 5061 4858 if (RT_FAILURE(rc)) 5062 return v mdkError(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); 5063 4860 } 5064 4861 #ifdef VBOX_WITH_VMDK_ESX … … 5164 4961 pExtent->uGrainSectorAbs = 0; 5165 4962 AssertRC(rc); 5166 return v mdkError(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); 5167 4964 } 5168 4965 pExtent->uLastGrainAccess = uGrain; … … 5204 5001 LogFlow(("Cache miss, fetch data from disk\n")); 5205 5002 PVDMETAXFER pMetaXfer = NULL; 5206 rc = v mdkFileReadMetaAsync(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); 5210 5007 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5211 5008 { … … 5217 5014 } 5218 5015 else if (RT_FAILURE(rc)) 5219 return v mdkError(pImage, rc, RT_SRC_POS, N_("VMDK: cannot read allocated grain table entry in '%s'"), pExtent->pszFullname);5220 v mdkFileMetaXferRelease(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); 5221 5018 pGTCacheEntry->uExtent = pExtent->uExtent; 5222 5019 pGTCacheEntry->uGTBlock = uGTBlock; … … 5236 5033 pGTCacheEntry->aGTData[uGTBlockIndex] = VMDK_BYTE2SECTOR(pGrainAlloc->uGrainOffset); 5237 5034 /* Update grain table on disk. */ 5238 rc = v mdkFileWriteMetaAsync(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); 5242 5039 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5243 5040 pGrainAlloc->cIoXfersPending++; 5244 5041 else if (RT_FAILURE(rc)) 5245 return v mdkError(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); 5246 5043 if (pExtent->pRGD) 5247 5044 { 5248 5045 /* Update backup grain table on disk. */ 5249 rc = v mdkFileWriteMetaAsync(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); 5253 5050 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5254 5051 pGrainAlloc->cIoXfersPending++; 5255 5052 else if (RT_FAILURE(rc)) 5256 return v mdkError(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); 5257 5054 } 5258 5055 #ifdef VBOX_WITH_VMDK_ESX … … 5364 5161 5365 5162 memset(paGTDataTmp, '\0', cbGTDataTmp); 5366 rc = v mdkFileWriteMetaAsync(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); 5370 5167 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5371 5168 pGrainAlloc->cIoXfersPending++; … … 5373 5170 { 5374 5171 RTMemTmpFree(paGTDataTmp); 5375 return v mdkError(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); 5376 5173 } 5377 5174 pExtent->uAppendPosition = RT_ALIGN_64( pExtent->uAppendPosition … … 5399 5196 * cache chunks. Allocate memory dynamically here or we flood the 5400 5197 * metadata cache with very small entries. */ 5401 rc = v mdkFileWriteMetaAsync(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); 5405 5202 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5406 5203 pGrainAlloc->cIoXfersPending++; … … 5408 5205 { 5409 5206 RTMemTmpFree(paGTDataTmp); 5410 return v mdkError(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); 5411 5208 } 5412 5209 … … 5421 5218 * some unused sectors in the extent. */ 5422 5219 uint32_t uGTSectorLE = RT_H2LE_U64(uGTSector); 5423 rc = v mdkFileWriteMetaAsync(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); 5427 5224 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5428 5225 pGrainAlloc->cIoXfersPending++; 5429 5226 else if (RT_FAILURE(rc)) 5430 return v mdkError(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); 5431 5228 if (pExtent->pRGD) 5432 5229 { 5433 5230 uint32_t uRGTSectorLE = RT_H2LE_U64(uRGTSector); 5434 rc = v mdkFileWriteMetaAsync(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); 5438 5235 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5439 5236 pGrainAlloc->cIoXfersPending++; 5440 5237 else if (RT_FAILURE(rc)) 5441 return v mdkError(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); 5442 5239 } 5443 5240 … … 5460 5257 5461 5258 /* Write the data. Always a full grain, or we're in big trouble. */ 5462 rc = v mdkFileWriteUserAsync(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); 5465 5262 if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 5466 5263 pGrainAlloc->cIoXfersPending++; 5467 5264 else if (RT_FAILURE(rc)) 5468 return v mdkError(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); 5469 5266 5470 5267 pExtent->uAppendPosition += cbWrite; … … 5518 5315 { 5519 5316 RT_ZERO(Marker); 5520 rc = v mdkFileReadSync(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); 5524 5321 if (RT_FAILURE(rc)) 5525 5322 return rc; … … 5530 5327 { 5531 5328 /* A marker for something else than a compressed grain. */ 5532 rc = v mdkFileReadSync(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); 5537 5334 if (RT_FAILURE(rc)) 5538 5335 return rc; … … 5547 5344 * success case. If this read fails it means the image 5548 5345 * is truncated, but this is harmless so ignore. */ 5549 v mdkFileReadSync(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); 5553 5350 break; 5554 5351 case VMDK_MARKER_GT: … … 5767 5564 PFNVDPROGRESS pfnProgress = NULL; 5768 5565 void *pvUser = NULL; 5769 PVDINTERFACE pIfProgress = VDInterfaceGet(pVDIfsOperation, 5770 VDINTERFACETYPE_PROGRESS); 5771 PVDINTERFACEPROGRESS pCbProgress = NULL; 5566 PVDINTERFACEPROGRESS pIfProgress = VDIfProgressGet(pVDIfsOperation); 5772 5567 if (pIfProgress) 5773 5568 { 5774 pCbProgress = VDGetInterfaceProgress(pIfProgress); 5775 pfnProgress = pCbProgress->pfnProgress; 5776 pvUser = pIfProgress->pvUser; 5569 pfnProgress = pIfProgress->pfnProgress; 5570 pvUser = pIfProgress->Core.pvUser; 5777 5571 } 5778 5572 … … 5996 5790 vmdkFileClose(pImage, &pExtent->pFile, false); 5997 5791 /* Rename the extent file. */ 5998 rc = v mdkFileMove(pImage, pExtent->pszFullname, apszNewName[i], 0);5792 rc = vdIfIoIntFileMove(pImage->pIfIo, pExtent->pszFullname, apszNewName[i], 0); 5999 5793 if (RT_FAILURE(rc)) 6000 5794 goto rollback; … … 6014 5808 if (!fEmbeddedDesc) 6015 5809 { 6016 rc = v mdkFileMove(pImage, pImage->pszFilename, apszNewName[cExtents], 0);5810 rc = vdIfIoIntFileMove(pImage->pIfIo, pImage->pszFilename, apszNewName[cExtents], 0); 6017 5811 if (RT_FAILURE(rc)) 6018 5812 goto rollback; … … 6047 5841 if (apszOldName[i]) 6048 5842 { 6049 rrc = v mdkFileMove(pImage, apszNewName[i], apszOldName[i], 0);5843 rrc = vdIfIoIntFileMove(pImage->pIfIo, apszNewName[i], apszOldName[i], 0); 6050 5844 AssertRC(rrc); 6051 5845 } … … 6227 6021 else 6228 6022 { 6229 rc = v mdkFileReadSync(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); 6232 6026 } 6233 6027 } … … 6235 6029 case VMDKETYPE_VMFS: 6236 6030 case VMDKETYPE_FLAT: 6237 rc = v mdkFileReadSync(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); 6240 6034 break; 6241 6035 case VMDKETYPE_ZERO: … … 6369 6163 else 6370 6164 { 6371 rc = v mdkFileWriteSync(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); 6374 6168 } 6375 6169 } … … 6379 6173 /* Clip write range to remain in this extent. */ 6380 6174 cbToWrite = RT_MIN(cbToWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel)); 6381 rc = v mdkFileWriteSync(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); 6384 6178 break; 6385 6179 case VMDKETYPE_ZERO: … … 6455 6249 if (pImage->pFile != NULL) 6456 6250 { 6457 int rc = v mdkFileGetSize(pImage, pImage->pFile, &cbFile);6251 int rc = vdIfIoIntFileGetSize(pImage->pIfIo, pImage->pFile->pStorage, &cbFile); 6458 6252 if (RT_SUCCESS(rc)) 6459 6253 cb += cbFile; … … 6463 6257 if (pImage->pExtents[i].pFile != NULL) 6464 6258 { 6465 int rc = v mdkFileGetSize(pImage, pImage->pExtents[i].pFile, &cbFile);6259 int rc = vdIfIoIntFileGetSize(pImage->pIfIo, pImage->pExtents[i].pFile->pStorage, &cbFile); 6466 6260 if (RT_SUCCESS(rc)) 6467 6261 cb += cbFile; … … 6777 6571 VMDK_DDB_IMAGE_UUID, pUuid); 6778 6572 if (RT_FAILURE(rc)) 6779 return v mdkError(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); 6780 6574 rc = VINF_SUCCESS; 6781 6575 } … … 6836 6630 VMDK_DDB_MODIFICATION_UUID, pUuid); 6837 6631 if (RT_FAILURE(rc)) 6838 return v mdkError(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); 6839 6633 } 6840 6634 rc = VINF_SUCCESS; … … 6893 6687 VMDK_DDB_PARENT_UUID, pUuid); 6894 6688 if (RT_FAILURE(rc)) 6895 return v mdkError(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); 6896 6690 rc = VINF_SUCCESS; 6897 6691 } … … 6949 6743 VMDK_DDB_PARENT_MODIFICATION_UUID, pUuid); 6950 6744 if (RT_FAILURE(rc)) 6951 return v mdkError(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); 6952 6746 rc = VINF_SUCCESS; 6953 6747 } … … 6973 6767 if (pImage) 6974 6768 { 6975 v mdkMessage(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 v mdkMessage(pImage, "Header: uuidCreation={%RTuuid}\n", &pImage->ImageUuid);6980 v mdkMessage(pImage, "Header: uuidModification={%RTuuid}\n", &pImage->ModificationUuid);6981 v mdkMessage(pImage, "Header: uuidParent={%RTuuid}\n", &pImage->ParentUuid);6982 v mdkMessage(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); 6983 6777 } 6984 6778 } … … 7041 6835 { 7042 6836 AssertMsg(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED), ("Async I/O is not supported for stream optimized VMDK's\n")); 7043 rc = v mdkFileReadUserAsync(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); 7046 6840 } 7047 6841 break; 7048 6842 case VMDKETYPE_VMFS: 7049 6843 case VMDKETYPE_FLAT: 7050 rc = v mdkFileReadUserAsync(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); 7053 6847 break; 7054 6848 case VMDKETYPE_ZERO: 7055 6849 size_t cbSet; 7056 6850 7057 cbSet = v mdkFileIoCtxSet(pImage, pIoCtx, 0, cbRead);6851 cbSet = vdIfIoIntIoCtxSet(pImage->pIfIo, pIoCtx, 0, cbRead); 7058 6852 Assert(cbSet == cbRead); 7059 6853 … … 7166 6960 { 7167 6961 Assert(!(pImage->uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED)); 7168 rc = v mdkFileWriteUserAsync(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); 7171 6965 } 7172 6966 break; … … 7175 6969 /* Clip write range to remain in this extent. */ 7176 6970 cbWrite = RT_MIN(cbWrite, VMDK_SECTOR2BYTE(pExtent->uSectorOffset + pExtent->cNominalSectors - uSectorExtentRel)); 7177 rc = v mdkFileWriteUserAsync(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); 7180 6974 break; 7181 6975 case VMDKETYPE_ZERO: … … 7270 7064 if ( pExtent->pFile != NULL 7271 7065 && !(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); 7273 7068 break; 7274 7069 case VMDKETYPE_ZERO:
Note:
See TracChangeset
for help on using the changeset viewer.