VirtualBox

Changeset 40123 in vbox for trunk/src


Ignore:
Timestamp:
Feb 14, 2012 11:16:58 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76267
Message:

Runtime/strings: add Utf-8 and Utf-16 sanitising to a white list of characters. Use ranges not individual code points for the white list.

Location:
trunk/src/VBox/Runtime
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/string/utf-16.cpp

    r40091 r40123  
    264264        if (!Cp)
    265265            break;
    266         for (pCp = puszValidSet; ; ++pCp)
    267             if (!*pCp || *pCp == Cp)
     266        for (pCp = puszValidSet; *pCp; pCp += 2)
     267        {
     268            AssertReturn(*(pCp + 1), -1);
     269            if (*pCp <= Cp && *(pCp + 1) >= Cp) /* No, I won't do * and ++. */
    268270                break;
     271        }
    269272        if (!*pCp)
    270273        {
  • trunk/src/VBox/Runtime/common/string/utf-8.cpp

    r40091 r40123  
    365365        if (!Cp)
    366366            break;
    367         for (pCp = puszValidSet; ; ++pCp)
    368             if (!*pCp || *pCp == Cp)
     367        for (pCp = puszValidSet; *pCp; pCp += 2)
     368        {
     369            AssertReturn(*(pCp + 1), -1);
     370            if (*pCp <= Cp && *(pCp + 1) >= Cp) /* No, I won't do * and ++. */
    369371                break;
     372        }
    370373        if (!*pCp)
    371374        {
  • trunk/src/VBox/Runtime/testcase/tstUtf8.cpp

    r40074 r40123  
    845845{
    846846    RTTestSub(hTest, "RTStrPurgeComplementSet");
    847     RTUNICP aCpSet[] = { '1', '2', '3', '4', '5', 'w', 'r', 'f', 't', 'e',
    848                          '\0' };
     847    RTUNICP aCpSet[]    = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't',
     848                            '\0' };
     849    RTUNICP aCpBadSet[] = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't',
     850                            '7', '\0' };  /* Contains an incomplete pair. */
    849851    struct
    850852    {
     
    862864        { "hjhj8766", "????????", aCpSet, '?', 8 },
    863865        { "123\xf0\xa4\xad\xa2""4", "123____4", aCpSet, '_', 1 },
    864         { "\xff", "\xff", aCpSet, '_', -1 }
     866        { "\xff", "\xff", aCpSet, '_', -1 },
     867        { "____", "____", aCpBadSet, '_', -1 }
    865868    };
    866869    enum { MAX_IN_STRING = 256 };
     
    890893{
    891894    RTTestSub(hTest, "RTUtf16PurgeComplementSet");
    892     RTUNICP aCpSet[] = { '1', '2', '3', '4', '5', 'w', 'r', 'f', 't', 'e',
    893                          '\0' };
     895    RTUNICP aCpSet[]    = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't',
     896                            '\0' };
     897    RTUNICP aCpBadSet[] = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't',
     898                            '7', '\0' };  /* Contains an incomplete pair. */
    894899    struct
    895900    {
     
    909914        { "123\xf0\xa4\xad\xa2""4", "123__4", 0, aCpSet, '_', 1 },
    910915        { "\xff\xff\0", "\xff\xff\0", 2, aCpSet, '_', -1 },
    911         { "\xff\xff\0", "\xff\xff\0", 2, aCpSet, '_', -1 }
     916        { "\xff\xff\0", "\xff\xff\0", 2, aCpSet, '_', -1 },
     917        { "____", "____", 0, aCpBadSet, '_', -1 }
    912918    };
    913919    enum { MAX_IN_STRING = 256 };
     
    15081514    TstRTStrXCmp(hTest);
    15091515    TstRTStrPurgeEncoding(hTest);
     1516    /* TstRT*PurgeComplementSet test conditions which assert. */
     1517    bool fAreQuiet = RTAssertAreQuiet(), fMayPanic = RTAssertMayPanic();
     1518    RTAssertSetQuiet(true);
     1519    RTAssertSetMayPanic(false);
    15101520    TstRTStrPurgeComplementSet(hTest);
    15111521    TstRTUtf16PurgeComplementSet(hTest);
     1522    RTAssertSetQuiet(fAreQuiet);
     1523    RTAssertSetMayPanic(fMayPanic);
    15121524    testStrEnd(hTest);
    15131525    testStrStr(hTest);
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