Changeset 59710 in vbox for trunk/src/VBox/HostServices/SharedFolders
- Timestamp:
- Feb 17, 2016 10:24:10 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105567
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/mappings.cpp
r56962 r59710 79 79 } 80 80 81 return VERR_INVALID_PARAMETER; 81 /* No corresponding mapping on the host but the guest still uses it. 82 * Add a 'placeholder' mapping. 83 */ 84 LogRel2(("SharedFolders: mapping a placeholder for '%ls' -> '%s'\n", 85 pLoadedMapping->pMapName->String.ucs2, pLoadedMapping->pszFolderName)); 86 return vbsfMappingsAdd(pLoadedMapping->pszFolderName, pLoadedMapping->pMapName, 87 pLoadedMapping->fWritable, pLoadedMapping->fAutoMount, 88 pLoadedMapping->fSymlinksCreate, /* fMissing = */ true, /* fPlaceholder = */ true); 82 89 } 83 90 … … 191 198 * We are always executed from one specific HGCM thread. So thread safe. 192 199 */ 193 int vbsfMappingsAdd( PSHFLSTRING pFolderName, PSHFLSTRING pMapName,194 bool fWritable, bool fAutoMount, bool fSymlinksCreate, bool fMissing )200 int vbsfMappingsAdd(const char *pszFolderName, PSHFLSTRING pMapName, 201 bool fWritable, bool fAutoMount, bool fSymlinksCreate, bool fMissing, bool fPlaceholder) 195 202 { 196 203 unsigned i; 197 204 198 Assert(p FolderName && pMapName);205 Assert(pszFolderName && pMapName); 199 206 200 207 Log(("vbsfMappingsAdd %ls\n", pMapName->String.ucs2)); … … 217 224 if (FolderMapping[i].fValid == false) 218 225 { 219 int rc = RTUtf16ToUtf8(pFolderName->String.ucs2, &FolderMapping[i].pszFolderName); 220 AssertRCReturn(rc, rc); 226 FolderMapping[i].pszFolderName = RTStrDup(pszFolderName); 227 if (!FolderMapping[i].pszFolderName) 228 { 229 return VERR_NO_MEMORY; 230 } 221 231 222 232 FolderMapping[i].pMapName = (PSHFLSTRING)RTMemAlloc(ShflStringSizeOfBuffer(pMapName)); … … 238 248 FolderMapping[i].fSymlinksCreate = fSymlinksCreate; 239 249 FolderMapping[i].fMissing = fMissing; 250 FolderMapping[i].fPlaceholder = fPlaceholder; 240 251 241 252 /* Check if the host file system is case sensitive */ … … 243 254 char *pszAsciiRoot; 244 255 245 rc = RTStrUtf8ToCurrentCP(&pszAsciiRoot, FolderMapping[i].pszFolderName);256 int rc = RTStrUtf8ToCurrentCP(&pszAsciiRoot, FolderMapping[i].pszFolderName); 246 257 if (RT_SUCCESS(rc)) 247 258 { … … 258 269 if (i == SHFL_MAX_MAPPINGS) 259 270 { 260 Assert MsgFailed(("vbsfMappingsAdd: no more room to add mapping %ls to %ls!!\n", pFolderName->String.ucs2, pMapName->String.ucs2));271 AssertLogRelMsgFailed(("vbsfMappingsAdd: no more room to add mapping %s to %ls!!\n", pszFolderName, pMapName->String.ucs2)); 261 272 return VERR_TOO_MUCH_DATA; 262 273 } … … 291 302 if (FolderMapping[i].cMappings != 0) 292 303 { 293 Log(("vbsfMappingsRemove: trying to remove active share %ls\n", pMapName->String.ucs2)); 294 return VERR_PERMISSION_DENIED; 304 LogRel2(("SharedFolders: removing '%ls' -> '%s', which is still used by the guest\n", 305 pMapName->String.ucs2, FolderMapping[i].pszFolderName)); 306 FolderMapping[i].fMissing = true; 307 FolderMapping[i].fPlaceholder = true; 308 return VINF_PERMISSION_DENIED; 295 309 } 310 311 /* pMapName can be the same as FolderMapping[i].pMapName, 312 * log it before deallocating the memory. 313 */ 314 Log(("vbsfMappingsRemove: mapping %ls removed\n", pMapName->String.ucs2)); 296 315 297 316 RTStrFree(FolderMapping[i].pszFolderName); … … 301 320 FolderMapping[i].fValid = false; 302 321 vbsfRootHandleRemove(i); 303 break;322 return VINF_SUCCESS; 304 323 } 305 324 } 306 325 } 307 326 308 if (i == SHFL_MAX_MAPPINGS) 309 { 310 AssertMsgFailed(("vbsfMappingsRemove: mapping %ls not found!!!!\n", pMapName->String.ucs2)); 311 return VERR_FILE_NOT_FOUND; 312 } 313 Log(("vbsfMappingsRemove: mapping %ls removed\n", pMapName->String.ucs2)); 314 return VINF_SUCCESS; 327 AssertMsgFailed(("vbsfMappingsRemove: mapping %ls not found!!!!\n", pMapName->String.ucs2)); 328 return VERR_FILE_NOT_FOUND; 315 329 } 316 330 … … 334 348 return VERR_NOT_FOUND; 335 349 *ppszRoot = pFolderMapping->pszFolderName; 336 *pcbRootLen = strlen(pFolderMapping->pszFolderName);350 *pcbRootLen = (uint32_t)strlen(pFolderMapping->pszFolderName); 337 351 return VINF_SUCCESS; 338 352 } … … 468 482 } 469 483 484 /** Queries fWritable flag for the given root. Returns error if the root is not accessible. 485 */ 470 486 int vbsfMappingsQueryWritable(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fWritable) 471 487 { … … 633 649 pFolderMapping->cMappings--; 634 650 651 if ( pFolderMapping->cMappings == 0 652 && pFolderMapping->fPlaceholder) 653 { 654 /* Automatically remove, it is not used by the guest anymore. */ 655 Assert(pFolderMapping->fMissing); 656 LogRel2(("SharedFolders: unmapping placeholder '%ls' -> '%s'\n", 657 pFolderMapping->pMapName->String.ucs2, pFolderMapping->pszFolderName)); 658 vbsfMappingsRemove(pFolderMapping->pMapName); 659 } 660 635 661 Log(("vbsfUnmapFolder\n")); 636 662 return rc; -
trunk/src/VBox/HostServices/SharedFolders/mappings.h
r56962 r59710 34 34 bool fMissing; /**< mapping not invalid but host path does not exist. 35 35 Any guest operation on such a folder fails! */ 36 bool fPlaceholder; /**< mapping does not exist in the VM settings but the guest 37 still has. fMissing is always true for this mapping. */ 36 38 } MAPPING; 37 39 /** Pointer to a MAPPING structure. */ … … 42 44 bool vbsfMappingQuery(uint32_t iMapping, PMAPPING *pMapping); 43 45 44 int vbsfMappingsAdd( PSHFLSTRING pFolderName, PSHFLSTRING pMapName,45 bool fWritable, bool fAutoMount, bool fCreateSymlinks, bool fMissing );46 int vbsfMappingsAdd(const char *pszFolderName, PSHFLSTRING pMapName, 47 bool fWritable, bool fAutoMount, bool fCreateSymlinks, bool fMissing, bool fPlaceholder); 46 48 int vbsfMappingsRemove(PSHFLSTRING pMapName); 47 49 -
trunk/src/VBox/HostServices/SharedFolders/service.cpp
r57210 r59710 1340 1340 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_MISSING) ? "true" : "false")); 1341 1341 1342 /* Execute the function. */ 1343 rc = vbsfMappingsAdd(pFolderName, pMapName, 1344 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_WRITABLE), 1345 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_AUTOMOUNT), 1346 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_CREATE_SYMLINKS), 1347 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_MISSING)); 1342 char *pszFolderName; 1343 rc = RTUtf16ToUtf8(pFolderName->String.ucs2, &pszFolderName); 1344 1348 1345 if (RT_SUCCESS(rc)) 1349 1346 { 1350 /* Update parameters.*/ 1351 ; /* none */ 1347 /* Execute the function. */ 1348 rc = vbsfMappingsAdd(pszFolderName, pMapName, 1349 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_WRITABLE), 1350 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_AUTOMOUNT), 1351 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_CREATE_SYMLINKS), 1352 RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_MISSING), 1353 /* fPlaceholder = */ false); 1354 if (RT_SUCCESS(rc)) 1355 { 1356 /* Update parameters.*/ 1357 ; /* none */ 1358 } 1359 RTStrFree(pszFolderName); 1352 1360 } 1353 1361 } -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r58770 r59710 960 960 Log(("vbsfRead %RX64 offset %RX64 bytes %x\n", Handle, offset, *pcbBuffer)); 961 961 962 /* Is the guest allowed to access this share? 963 * Checked here because the shared folder can be removed from the VM settings. */ 964 bool fWritable; 965 rc = vbsfMappingsQueryWritable(pClient, root, &fWritable); 966 if (RT_FAILURE(rc)) 967 return VERR_ACCESS_DENIED; 968 962 969 if (*pcbBuffer == 0) 963 970 return VINF_SUCCESS; /* @todo correct? */ … … 1004 1011 1005 1012 /* Is the guest allowed to write to this share? 1006 * XXX Actually this check was still done in vbsfCreate() -- RTFILE_O_WRITE cannot be set if vbsfMappingsQueryWritable() failed. */1013 * Checked here because the shared folder can be removed from the VM settings. */ 1007 1014 bool fWritable; 1008 1015 rc = vbsfMappingsQueryWritable(pClient, root, &fWritable); … … 1087 1094 return VERR_INVALID_PARAMETER; 1088 1095 } 1096 1097 /* Is the guest allowed to access this share? 1098 * Checked here because the shared folder can be removed from the VM settings. */ 1099 bool fWritable; 1100 rc = vbsfMappingsQueryWritable(pClient, root, &fWritable); 1101 if (RT_FAILURE(rc)) 1102 return VERR_ACCESS_DENIED; 1103 1089 1104 Assert(pIndex && *pIndex == 0); 1090 1105 DirHandle = pHandle->dir.Handle;
Note:
See TracChangeset
for help on using the changeset viewer.