VirtualBox

Changeset 65998 in vbox for trunk/src/VBox/HostServices


Ignore:
Timestamp:
Mar 8, 2017 8:03:24 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
113847
Message:

SharedFolders: Do RTAbsPath on folder roots, don't double convert to UTF-8 when calling RTFsQueryProperties, testcase workarounds for new absolute path handling.

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

Legend:

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

    r62791 r65998  
    2222#include <iprt/alloc.h>
    2323#include <iprt/assert.h>
     24#include <iprt/path.h>
    2425#include <iprt/string.h>
    2526
     
    224225        if (FolderMapping[i].fValid == false)
    225226        {
    226             FolderMapping[i].pszFolderName = RTStrDup(pszFolderName);
     227            /* Make sure the folder name is an absolute path, otherwise we're
     228               likely to get into trouble with buffer sizes in vbsfPathGuestToHost. */
     229            char szAbsFolderName[RTPATH_MAX];
     230            int rc = RTPathAbs(pszFolderName, szAbsFolderName, sizeof(szAbsFolderName));
     231            AssertRCReturn(rc, rc);
     232
     233            FolderMapping[i].pszFolderName = RTStrDup(szAbsFolderName);
    227234            if (!FolderMapping[i].pszFolderName)
    228235            {
     
    253260            RTFSPROPERTIES prop;
    254261            prop.fCaseSensitive = false; /* Shut up MSC. */
    255             char *pszAsciiRoot;
    256 
    257             int rc = RTStrUtf8ToCurrentCP(&pszAsciiRoot, FolderMapping[i].pszFolderName);
    258             if (RT_SUCCESS(rc))
    259             {
    260                 rc = RTFsQueryProperties(pszAsciiRoot, &prop);
    261                 AssertRC(rc);
    262                 RTStrFree(pszAsciiRoot);
    263             }
    264 
     262            rc = RTFsQueryProperties(FolderMapping[i].pszFolderName, &prop);
     263            AssertRC(rc);
    265264            FolderMapping[i].fHostCaseSensitive = RT_SUCCESS(rc) ? prop.fCaseSensitive : false;
    266265            vbsfRootHandleAdd(i);
  • trunk/src/VBox/HostServices/SharedFolders/testcase/tstSharedFolderService.cpp

    r63760 r65998  
    751751    RTTEST_CHECK_RC_OK(hTest, rc);
    752752    RTTEST_CHECK_MSG(hTest,
    753                      !strcmp(testRTFileOpenName, "/test/mapping/test/file"),
    754                      (hTest, "pszFilename=%s\n", testRTFileOpenName));
     753                     !strcmp(&testRTFileOpenName[RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS ? 2 : 0],
     754                             "/test/mapping/test/file"),
     755                     (hTest, "pszFilename=%s\n", &testRTFileOpenName[RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS ? 2 : 0]));
    755756    RTTEST_CHECK_MSG(hTest, testRTFileOpenFlags == 0x181,
    756757                     (hTest, "fOpen=%llu\n", LLUIFY(testRTFileOpenFlags)));
     
    781782    RTTEST_CHECK_RC_OK(hTest, rc);
    782783    RTTEST_CHECK_MSG(hTest,
    783                      !strcmp(testRTDirCreatePath, "/test/mapping/test/dir"),
    784                      (hTest, "pszPath=%s\n", testRTDirCreatePath));
     784                     !strcmp(&testRTDirCreatePath[RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS ? 2 : 0],
     785                             "/test/mapping/test/dir"),
     786                     (hTest, "pszPath=%s\n", &testRTDirCreatePath[RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS ? 2 : 0]));
    785787    RTTEST_CHECK_MSG(hTest,
    786                      !strcmp(testRTDirOpenName, "/test/mapping/test/dir"),
    787                      (hTest, "pszFilename=%s\n", testRTDirOpenName));
     788                     !strcmp(&testRTDirOpenName[RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS ? 2 : 0],
     789                             "/test/mapping/test/dir"),
     790                     (hTest, "pszFilename=%s\n", &testRTDirOpenName[RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS ? 2 : 0]));
    788791    RTTEST_CHECK_MSG(hTest, Result == SHFL_FILE_CREATED,
    789792                     (hTest, "Result=%d\n", (int) Result));
     
    924927    const uint32_t fMode = 0660;
    925928    SHFLFSOBJINFO Info;
    926     SHFLHANDLE Handle;
    927929    int rc;
    928930
     
    930932    Root = initWithWritableMapping(hTest, &svcTable, &svcHelpers,
    931933                                   "/test/mapping", "testname");
     934    SHFLHANDLE Handle = SHFL_HANDLE_NIL;
    932935    testRTFileOpenpFile = hcFile;
    933936    rc = createFile(&svcTable, Root, "/test/file", SHFL_CF_ACCESS_READ,
    934937                    &Handle, NULL);
    935     RTTEST_CHECK_RC_OK(hTest, rc);
     938    RTTEST_CHECK_RC_OK_RETV(hTest, rc);
     939
    936940    RT_ZERO(Info);
    937941    testRTFileQueryInfoFMode = fMode;
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