VirtualBox

Ignore:
Timestamp:
Feb 17, 2016 10:24:10 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
105567
Message:

SharedFolders: bugref:7765: handle deleted folders

Location:
trunk/src/VBox/HostServices/SharedFolders
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedFolders/mappings.cpp

    r56962 r59710  
    7979    }
    8080
    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);
    8289}
    8390
     
    191198 * We are always executed from one specific HGCM thread. So thread safe.
    192199 */
    193 int vbsfMappingsAdd(PSHFLSTRING pFolderName, PSHFLSTRING pMapName,
    194                     bool fWritable, bool fAutoMount, bool fSymlinksCreate, bool fMissing)
     200int vbsfMappingsAdd(const char *pszFolderName, PSHFLSTRING pMapName,
     201                    bool fWritable, bool fAutoMount, bool fSymlinksCreate, bool fMissing, bool fPlaceholder)
    195202{
    196203    unsigned i;
    197204
    198     Assert(pFolderName && pMapName);
     205    Assert(pszFolderName && pMapName);
    199206
    200207    Log(("vbsfMappingsAdd %ls\n", pMapName->String.ucs2));
     
    217224        if (FolderMapping[i].fValid == false)
    218225        {
    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            }
    221231
    222232            FolderMapping[i].pMapName = (PSHFLSTRING)RTMemAlloc(ShflStringSizeOfBuffer(pMapName));
     
    238248            FolderMapping[i].fSymlinksCreate = fSymlinksCreate;
    239249            FolderMapping[i].fMissing        = fMissing;
     250            FolderMapping[i].fPlaceholder    = fPlaceholder;
    240251
    241252            /* Check if the host file system is case sensitive */
     
    243254            char *pszAsciiRoot;
    244255
    245             rc = RTStrUtf8ToCurrentCP(&pszAsciiRoot, FolderMapping[i].pszFolderName);
     256            int rc = RTStrUtf8ToCurrentCP(&pszAsciiRoot, FolderMapping[i].pszFolderName);
    246257            if (RT_SUCCESS(rc))
    247258            {
     
    258269    if (i == SHFL_MAX_MAPPINGS)
    259270    {
    260         AssertMsgFailed(("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));
    261272        return VERR_TOO_MUCH_DATA;
    262273    }
     
    291302                if (FolderMapping[i].cMappings != 0)
    292303                {
    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;
    295309                }
     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));
    296315
    297316                RTStrFree(FolderMapping[i].pszFolderName);
     
    301320                FolderMapping[i].fValid        = false;
    302321                vbsfRootHandleRemove(i);
    303                 break;
     322                return VINF_SUCCESS;
    304323            }
    305324        }
    306325    }
    307326
    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;
    315329}
    316330
     
    334348        return VERR_NOT_FOUND;
    335349    *ppszRoot = pFolderMapping->pszFolderName;
    336     *pcbRootLen = strlen(pFolderMapping->pszFolderName);
     350    *pcbRootLen = (uint32_t)strlen(pFolderMapping->pszFolderName);
    337351    return VINF_SUCCESS;
    338352}
     
    468482}
    469483
     484/** Queries fWritable flag for the given root. Returns error if the root is not accessible.
     485 */
    470486int vbsfMappingsQueryWritable(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fWritable)
    471487{
     
    633649        pFolderMapping->cMappings--;
    634650
     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
    635661    Log(("vbsfUnmapFolder\n"));
    636662    return rc;
  • trunk/src/VBox/HostServices/SharedFolders/mappings.h

    r56962 r59710  
    3434    bool        fMissing;             /**< mapping not invalid but host path does not exist.
    3535                                           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. */
    3638} MAPPING;
    3739/** Pointer to a MAPPING structure. */
     
    4244bool vbsfMappingQuery(uint32_t iMapping, PMAPPING *pMapping);
    4345
    44 int vbsfMappingsAdd(PSHFLSTRING pFolderName, PSHFLSTRING pMapName,
    45                     bool fWritable, bool fAutoMount, bool fCreateSymlinks, bool fMissing);
     46int vbsfMappingsAdd(const char *pszFolderName, PSHFLSTRING pMapName,
     47                    bool fWritable, bool fAutoMount, bool fCreateSymlinks, bool fMissing, bool fPlaceholder);
    4648int vbsfMappingsRemove(PSHFLSTRING pMapName);
    4749
  • trunk/src/VBox/HostServices/SharedFolders/service.cpp

    r57210 r59710  
    13401340                        RT_BOOL(fFlags & SHFL_ADD_MAPPING_F_MISSING) ? "true" : "false"));
    13411341
    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
    13481345                if (RT_SUCCESS(rc))
    13491346                {
    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);
    13521360                }
    13531361            }
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r58770 r59710  
    960960    Log(("vbsfRead %RX64 offset %RX64 bytes %x\n", Handle, offset, *pcbBuffer));
    961961
     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
    962969    if (*pcbBuffer == 0)
    963970        return VINF_SUCCESS; /* @todo correct? */
     
    10041011
    10051012    /* 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. */
    10071014    bool fWritable;
    10081015    rc = vbsfMappingsQueryWritable(pClient, root, &fWritable);
     
    10871094        return VERR_INVALID_PARAMETER;
    10881095    }
     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
    10891104    Assert(pIndex && *pIndex == 0);
    10901105    DirHandle = pHandle->dir.Handle;
Note: See TracChangeset for help on using the changeset viewer.

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