Changeset 95144 in vbox for trunk/src/VBox/ImageMounter/vboximg-mount
- Timestamp:
- May 31, 2022 10:14:03 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151635
- Location:
- trunk/src/VBox/ImageMounter/vboximg-mount
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ImageMounter/vboximg-mount/vboximg-mount.cpp
r95142 r95144 271 271 vboximgOptHandler(void *data, const char *arg, int optKey, struct fuse_args *outargs) 272 272 { 273 NOREF(data);274 NOREF(arg);275 NOREF(optKey);276 NOREF(outargs);273 RT_NOREF(data); 274 RT_NOREF(arg); 275 RT_NOREF(optKey); 276 RT_NOREF(outargs); 277 277 278 278 /* … … 313 313 /* Retrieve the accessed volume and return the stat data. */ 314 314 uint32_t idxVol; 315 int rcIprt= RTStrToUInt32Full(&pPathSplit->apszComps[1][3], 10, &idxVol);316 if ( rcIprt== VINF_SUCCESS315 int vrc = RTStrToUInt32Full(&pPathSplit->apszComps[1][3], 10, &idxVol); 316 if ( vrc == VINF_SUCCESS 317 317 && idxVol < g_cVolumes 318 318 && g_paVolumes[idxVol].hVfsFileVol != NIL_RTVFSFILE) … … 325 325 /* Retrieve the accessed volume and return the stat data. */ 326 326 uint32_t idxVol; 327 int rcIprt= RTStrToUInt32Full(&pPathSplit->apszComps[1][2], 10, &idxVol);328 if ( rcIprt== VINF_SUCCESS327 int vrc = RTStrToUInt32Full(&pPathSplit->apszComps[1][2], 10, &idxVol); 328 if ( vrc == VINF_SUCCESS 329 329 && idxVol < g_cVolumes 330 330 && g_paVolumes[idxVol].hVfsDirRoot != NIL_RTVFSDIR) … … 390 390 391 391 RTVFSOBJ hVfsObj; 392 int rcIprt= vboxImgMntVfsObjQueryFromPath(pszPath, &hVfsObj);393 if (RT_SUCCESS( rc))392 int vrc = vboxImgMntVfsObjQueryFromPath(pszPath, &hVfsObj); 393 if (RT_SUCCESS(vrc)) 394 394 { 395 395 uint32_t fNotSup = 0; … … 420 420 # endif 421 421 #endif 422 423 422 if (!rc) 424 423 { … … 433 432 } 434 433 else 435 rc = -RTErrConvertToErrno( rcIprt);434 rc = -RTErrConvertToErrno(vrc); 436 435 437 436 LogFlowFunc(("rc=%d \"%s\"\n", rc, pszPath)); … … 443 442 static int vboximgOp_release(const char *pszPath, struct fuse_file_info *pInfo) 444 443 { 445 NOREF(pszPath);444 RT_NOREF(pszPath); 446 445 447 446 LogFlowFunc(("pszPath=%s\n", pszPath)); … … 457 456 /** @copydoc fuse_operations::read */ 458 457 static int vboximgOp_read(const char *pszPath, char *pbBuf, size_t cbBuf, 459 460 { 461 NOREF(pszPath);458 off_t offset, struct fuse_file_info *pInfo) 459 { 460 RT_NOREF(pszPath); 462 461 463 462 LogFlowFunc(("offset=%#llx size=%#zx path=\"%s\"\n", (uint64_t)offset, cbBuf, pszPath)); … … 475 474 size_t cbRead = 0; 476 475 RTVFSFILE hVfsFile = RTVfsObjToFile(hVfsObj); 477 int rcIprt= RTVfsFileReadAt(hVfsFile, offset, pbBuf, cbBuf, &cbRead);476 int vrc = RTVfsFileReadAt(hVfsFile, offset, pbBuf, cbBuf, &cbRead); 478 477 if (cbRead) 479 478 rc = cbRead; 480 else if ( rcIprt== VINF_EOF)479 else if (vrc == VINF_EOF) 481 480 rc = -RTErrConvertToErrno(VERR_EOF); 482 481 RTVfsFileRelease(hVfsFile); … … 496 495 off_t offset, struct fuse_file_info *pInfo) 497 496 { 498 NOREF(pszPath);499 NOREF(pInfo);497 RT_NOREF(pszPath); 498 RT_NOREF(pInfo); 500 499 501 500 LogFlowFunc(("offset=%#llx size=%#zx path=\"%s\"\n", (uint64_t)offset, cbBuf, pszPath)); … … 520 519 size_t cbWritten = 0; 521 520 RTVFSFILE hVfsFile = RTVfsObjToFile(hVfsObj); 522 int rcIprt= RTVfsFileWriteAt(hVfsFile, offset, pbBuf, cbBuf, &cbWritten);521 int vrc = RTVfsFileWriteAt(hVfsFile, offset, pbBuf, cbBuf, &cbWritten); 523 522 if (cbWritten) 524 523 rc = cbWritten; 525 else if ( rcIprt== VINF_EOF)524 else if (vrc == VINF_EOF) 526 525 rc = -RTErrConvertToErrno(VERR_EOF); 527 526 RTVfsFileRelease(hVfsFile); … … 539 538 540 539 /** @copydoc fuse_operations::getattr */ 541 static int 542 vboximgOp_getattr(const char *pszPath, struct stat *stbuf) 540 static int vboximgOp_getattr(const char *pszPath, struct stat *stbuf) 543 541 { 544 542 int rc = 0; … … 577 575 /* Query the VFS object and fill in the data. */ 578 576 RTVFSOBJ hVfsObj = NIL_RTVFSOBJ; 579 int rcIprt= vboxImgMntVfsObjQueryFromPath(pszPath, &hVfsObj);580 if (RT_SUCCESS( rcIprt))577 int vrc = vboxImgMntVfsObjQueryFromPath(pszPath, &hVfsObj); 578 if (RT_SUCCESS(vrc)) 581 579 { 582 580 RTFSOBJINFO ObjInfo; 583 581 584 rcIprt= RTVfsObjQueryInfo(hVfsObj, &ObjInfo, RTFSOBJATTRADD_UNIX);585 if (RT_SUCCESS( rcIprt))582 vrc = RTVfsObjQueryInfo(hVfsObj, &ObjInfo, RTFSOBJATTRADD_UNIX); 583 if (RT_SUCCESS(vrc)) 586 584 { 587 585 stbuf->st_size = ObjInfo.cbObject; … … 696 694 RTVfsObjRelease(hVfsObj); 697 695 } 698 else if ( rcIprt== VERR_NOT_FOUND)696 else if (vrc == VERR_NOT_FOUND) 699 697 rc = -ENOENT; 700 698 else 701 rc = -RTErrConvertToErrno( rcIprt);699 rc = -RTErrConvertToErrno(vrc); 702 700 } 703 701 … … 706 704 707 705 /** @copydoc fuse_operations::readdir */ 708 static int 709 vboximgOp_readdir(const char *pszPath, void *pvBuf, fuse_fill_dir_t pfnFiller, 710 off_t offset, struct fuse_file_info *pInfo) 711 706 static int vboximgOp_readdir(const char *pszPath, void *pvBuf, fuse_fill_dir_t pfnFiller, 707 off_t offset, struct fuse_file_info *pInfo) 712 708 { 713 709 RT_NOREF(offset); … … 768 764 /* Query the VFS object and fill in the data. */ 769 765 RTVFSOBJ hVfsObj = NIL_RTVFSOBJ; 770 int rcIprt= vboxImgMntVfsObjQueryFromPath(pszPath, &hVfsObj);771 if (RT_SUCCESS( rcIprt))766 int vrc = vboxImgMntVfsObjQueryFromPath(pszPath, &hVfsObj); 767 if (RT_SUCCESS(vrc)) 772 768 { 773 769 switch (RTVfsObjGetType(hVfsObj)) … … 778 774 RTDIRENTRYEX DirEntry; 779 775 780 rcIprt = RTVfsDirRewind(hVfsDir); AssertRC(rcIprt);781 rcIprt= RTVfsDirReadEx(hVfsDir, &DirEntry, NULL, RTFSOBJATTRADD_NOTHING);782 while (RT_SUCCESS( rcIprt))776 vrc = RTVfsDirRewind(hVfsDir); AssertRC(vrc); 777 vrc = RTVfsDirReadEx(hVfsDir, &DirEntry, NULL, RTFSOBJATTRADD_NOTHING); 778 while (RT_SUCCESS(vrc)) 783 779 { 784 780 pfnFiller(pvBuf, DirEntry.szName, NULL, 0); 785 rcIprt= RTVfsDirReadEx(hVfsDir, &DirEntry, NULL, RTFSOBJATTRADD_NOTHING);781 vrc = RTVfsDirReadEx(hVfsDir, &DirEntry, NULL, RTFSOBJATTRADD_NOTHING); 786 782 } 787 783 … … 796 792 } 797 793 else 798 rc = -RTErrConvertToErrno( rcIprt);794 rc = -RTErrConvertToErrno(vrc); 799 795 } 800 796 … … 803 799 804 800 /** @copydoc fuse_operations::readlink */ 805 static int 806 vboximgOp_readlink(const char *pszPath, char *buf, size_t size) 807 { 808 NOREF(pszPath); 801 static int vboximgOp_readlink(const char *pszPath, char *buf, size_t size) 802 { 803 RT_NOREF(pszPath); 809 804 RTStrCopy(buf, size, g_pszImagePath); 810 805 return 0; … … 990 985 if (g_vboximgOpts.pszImageUuidOrPath) 991 986 { 992 HRESULT hrc;993 994 987 /* compiler was too fussy about access mode's data type in conditional expr, so... */ 995 988 if (g_vboximgOpts.fRW) … … 1189 1182 /* **************** END IFDEF'D (STUBBED-OUT) CODE ***************** */ 1190 1183 1191 int rc = RTCritSectInit(&g_vdioLock);1192 if (RT_SUCCESS( rc))1184 int vrc = RTCritSectInit(&g_vdioLock); 1185 if (RT_SUCCESS(vrc)) 1193 1186 { 1194 1187 g_VDIfThreadSync.pfnStartRead = vboximgThreadStartRead; … … 1196 1189 g_VDIfThreadSync.pfnStartWrite = vboximgThreadStartWrite; 1197 1190 g_VDIfThreadSync.pfnFinishWrite = vboximgThreadFinishWrite; 1198 rc = VDInterfaceAdd(&g_VDIfThreadSync.Core, "vboximg_ThreadSync", VDINTERFACETYPE_THREADSYNC,1199 &g_vdioLock, sizeof(VDINTERFACETHREADSYNC), &g_pVdIfs);1191 vrc = VDInterfaceAdd(&g_VDIfThreadSync.Core, "vboximg_ThreadSync", VDINTERFACETYPE_THREADSYNC, 1192 &g_vdioLock, sizeof(VDINTERFACETHREADSYNC), &g_pVdIfs); 1200 1193 } 1201 1194 else 1202 1195 return RTMsgErrorExitFailure("ERROR: Failed to create critsects " 1203 "for virtual disk I/O, rc=%Rrc\n", rc);1196 "for virtual disk I/O, rc=%Rrc\n", vrc); 1204 1197 1205 1198 /* 1206 1199 * Create HDD container to open base image and differencing images into 1207 1200 */ 1208 rc = VDGetFormat(NULL /* pVDIIfsDisk */, NULL /* pVDIIfsImage*/,1209 CSTR(pVDiskBaseImagePath), VDTYPE_INVALID, &pszFormat, &enmType);1210 1211 if (RT_FAILURE( rc))1201 vrc = VDGetFormat(NULL /* pVDIIfsDisk */, NULL /* pVDIIfsImage*/, 1202 CSTR(pVDiskBaseImagePath), VDTYPE_INVALID, &pszFormat, &enmType); 1203 1204 if (RT_FAILURE(vrc)) 1212 1205 return RTMsgErrorExitFailure("VDGetFormat(,,%s,,) " 1213 "failed (during HDD container creation), rc=%Rrc\n", g_pszImagePath, rc);1206 "failed (during HDD container creation), rc=%Rrc\n", g_pszImagePath, vrc); 1214 1207 1215 1208 if (VERBOSE) … … 1217 1210 1218 1211 PVDISK pVDisk = NULL; 1219 rc = VDCreate(g_pVdIfs, enmType, &pVDisk);1220 if ( (rc))1212 vrc = VDCreate(g_pVdIfs, enmType, &pVDisk); 1213 if (RT_FAILURE(vrc)) 1221 1214 return RTMsgErrorExitFailure("ERROR: Couldn't create virtual disk container\n"); 1222 1215 … … 1232 1225 RTPrintf(" Open: %s\n", CSTR(pCurMedium->pImagePath)); 1233 1226 1234 rc = VDOpen(pVDisk,1235 pszFormat,1236 CSTR(pCurMedium->pImagePath),1237 pCurMedium->fWriteable ? 0 : VD_OPEN_FLAGS_READONLY,1238 g_pVdIfs);1239 1240 if (RT_FAILURE( rc))1227 vrc = VDOpen(pVDisk, 1228 pszFormat, 1229 CSTR(pCurMedium->pImagePath), 1230 pCurMedium->fWriteable ? 0 : VD_OPEN_FLAGS_READONLY, 1231 g_pVdIfs); 1232 1233 if (RT_FAILURE(vrc)) 1241 1234 return RTMsgErrorExitFailure("Could not open the medium storage unit '%s' %Rrc", 1242 CSTR(pCurMedium->pImagePath),rc);1235 CSTR(pCurMedium->pImagePath), vrc); 1243 1236 1244 1237 pCurMedium = pCurMedium->prev; … … 1248 1241 1249 1242 /* Create the VFS file to use for the disk image access. */ 1250 rc = VDCreateVfsFileFromDisk(pVDisk, VD_VFSFILE_DESTROY_ON_RELEASE, &g_hVfsFileDisk);1251 if (RT_FAILURE( rc))1243 vrc = VDCreateVfsFileFromDisk(pVDisk, VD_VFSFILE_DESTROY_ON_RELEASE, &g_hVfsFileDisk); 1244 if (RT_FAILURE(vrc)) 1252 1245 return RTMsgErrorExitFailure("Error creating VFS file wrapper for disk image\n"); 1253 1246 1254 1247 g_cbSector = VDGetSectorSize(pVDisk, VD_LAST_IMAGE); 1255 1248 1256 rc = vboxImgMntVolumesSetup();1257 if (RT_FAILURE( rc))1249 vrc = vboxImgMntVolumesSetup(); 1250 if (RT_FAILURE(vrc)) 1258 1251 return RTMsgErrorExitFailure("Error parsing volumes on disk\n"); 1259 1252 … … 1265 1258 RTPrintf("\n"); 1266 1259 vboxImgMntVolumesDisplay(); 1267 return 0;1260 return VINF_SUCCESS; /** @todo r=andy Re-visit this. */ 1268 1261 } 1269 1262 … … 1273 1266 for (uint32_t i = 0; i < g_cVolumes; i++) 1274 1267 { 1275 rc = RTVfsMountVol(g_paVolumes[i].hVfsFileVol,1268 vrc = RTVfsMountVol(g_paVolumes[i].hVfsFileVol, 1276 1269 g_vboximgOpts.fRW ? 0 : RTVFSMNT_F_READ_ONLY, 1277 1270 &g_paVolumes[i].hVfsRoot, 1278 1271 NULL); 1279 if (RT_SUCCESS( rc))1272 if (RT_SUCCESS(vrc)) 1280 1273 { 1281 rc = RTVfsOpenRoot(g_paVolumes[i].hVfsRoot, &g_paVolumes[i].hVfsDirRoot);1282 if (RT_FAILURE( rc))1274 vrc = RTVfsOpenRoot(g_paVolumes[i].hVfsRoot, &g_paVolumes[i].hVfsDirRoot); 1275 if (RT_FAILURE(vrc)) 1283 1276 { 1284 1277 RTPrintf("\nvboximg-mount: Failed to access filesystem on volume %u, ignoring\n", i); … … 1298 1291 RTPrintf("\nvboximg-mount: Going into background...\n"); 1299 1292 1300 rc = fuse_main_real(args->argc, args->argv, &g_vboximgOps, sizeof(g_vboximgOps), NULL); 1293 int rc = fuse_main_real(args->argc, args->argv, &g_vboximgOps, sizeof(g_vboximgOps), NULL); 1294 RTPrintf("vboximg-mount: fuse_main -> %d\n", rc); 1301 1295 1302 1296 int rc2 = RTVfsFileRelease(g_hVfsFileDisk); 1303 1297 AssertRC(rc2); 1304 RTPrintf("vboximg-mount: fuse_main -> %d\n", rc); 1305 return rc;1298 1299 return vrc; 1306 1300 } 1307 1301 -
trunk/src/VBox/ImageMounter/vboximg-mount/vboximgMedia.cpp
r95141 r95144 94 94 } 95 95 96 static int 97 getMediumInfo(IMachine *pMachine, IMedium *pMedium, MEDIUMINFO **ppMediumInfo) 98 { 99 NOREF(pMachine); 100 int rc; 96 static int getMediumInfo(IMachine *pMachine, IMedium *pMedium, MEDIUMINFO **ppMediumInfo) 97 { 98 RT_NOREF(pMachine); 99 101 100 MEDIUMINFO *info = new MEDIUMINFO(); 102 101 *ppMediumInfo = info; … … 114 113 115 114 *pState = MediumState_NotCreated; 115 116 HRESULT hrc; 116 117 117 118 CHECK_ERROR(pMedium, RefreshState(pState)); … … 254 255 static int vboximgListBranch(IMachine *pMachine, IMedium *pMedium, uint8_t nestLevel, bool fLast) 255 256 { 256 int rc;257 257 MEDIUMINFO *pMediumInfo; 258 rc = getMediumInfo(pMachine, pMedium, &pMediumInfo); 259 if (FAILED(rc)) 260 return rc; 258 int vrc = getMediumInfo(pMachine, pMedium, &pMediumInfo); 259 if (RT_FAILURE(vrc)) 260 return vrc; 261 261 262 displayMediumInfo(pMediumInfo, nestLevel, fLast); 263 264 HRESULT hrc; 262 265 com::SafeIfaceArray<IMedium> pChildren; 263 CHECK_ERROR_RET(pMedium, COMGETTER(Children)(ComSafeArrayAsOutParam(pChildren)), rc); 266 CHECK_ERROR_RET(pMedium, COMGETTER(Children)(ComSafeArrayAsOutParam(pChildren)), VERR_NOT_FOUND); /** @todo r=andy Find a better rc. */ 267 264 268 for (size_t i = 0; i < pChildren.size(); i++) 265 269 vboximgListBranch(pMachine, pChildren[i], nestLevel + 1, fLast); 270 266 271 delete pMediumInfo; 272 267 273 return VINF_SUCCESS; 268 274 } 269 275 270 static int 271 listMedia(IVirtualBox *pVirtualBox, IMachine *pMachine, char *vmName, char *vmUuid) 272 { 273 274 NOREF(pVirtualBox); 275 NOREF(vmName); 276 NOREF(vmUuid); 277 278 int rc = 0; 276 static int listMedia(IVirtualBox *pVirtualBox, IMachine *pMachine, char *vmName, char *vmUuid) 277 { 278 RT_NOREF(pVirtualBox); 279 RT_NOREF(vmName); 280 RT_NOREF(vmUuid); 281 282 int vrc = VINF_SUCCESS; 283 279 284 com::SafeIfaceArray<IMediumAttachment> pMediumAttachments; 280 285 286 HRESULT hrc; 281 287 CHECK_ERROR(pMachine, COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(pMediumAttachments))); 288 282 289 for (size_t i = 0; i < pMediumAttachments.size(); i++) 283 290 { … … 298 305 else 299 306 RTPrintf("\n"); 300 rc = vboximgListBranch(pMachine, pBase, 0, fLast); 301 if (FAILED(rc)) 307 308 vrc = vboximgListBranch(pMachine, pBase, 0, fLast); 309 if (RT_FAILURE(vrc)) 302 310 { 303 RTPrintf("vboximgListBranch failed %d\n",rc);304 return rc;311 RTPrintf("vboximgListBranch failed with %Rrc\n", vrc); 312 break; 305 313 } 306 307 } 308 return VINF_SUCCESS;314 } 315 316 return vrc; 309 317 } 310 318 /** … … 313 321 * @param virtualBox VirtualBox instance object. 314 322 */ 315 int 316 vboximgListVMs(IVirtualBox *pVirtualBox) 317 { 318 HRESULT hrc = 0; 323 int vboximgListVMs(IVirtualBox *pVirtualBox) 324 { 325 HRESULT hrc; 319 326 com::SafeIfaceArray<IMachine> pMachines; 320 327 CHECK_ERROR(pVirtualBox, COMGETTER(Machines)(ComSafeArrayAsOutParam(pMachines))); 328 321 329 if (g_vboximgOpts.fWide) 322 330 { … … 324 332 RTPrintf("VM Image Size Type State UUID (hierarchy)\n"); 325 333 } 334 335 int vrc = VINF_SUCCESS; 336 326 337 for (size_t i = 0; i < pMachines.size(); ++i) 327 338 { … … 372 383 } 373 384 } 374 hrc = listMedia(pVirtualBox, pMachine, 375 RTStrDup(CSTR(machineName)), RTStrDup(CSTR(machineUuid))); 385 386 int vrc2 = listMedia(pVirtualBox, pMachine, 387 RTStrDup(CSTR(machineName)), RTStrDup(CSTR(machineUuid))); 388 if (RT_SUCCESS(vrc)) 389 vrc = vrc2; 390 376 391 RTPrintf("\n"); 377 392 } … … 379 394 } 380 395 } 381 return hrc; 382 } 396 397 return vrc; 398 } 399
Note:
See TracChangeset
for help on using the changeset viewer.