File: list_format_fuzzer.cpp

package info (click to toggle)
icu 76.1-4
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 121,296 kB
  • sloc: cpp: 522,712; ansic: 113,387; sh: 4,983; makefile: 4,709; perl: 3,198; python: 2,847; xml: 2,652; sed: 36; lisp: 12
file content (69 lines) | stat: -rw-r--r-- 2,409 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// © 2023 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

// Fuzzer for ICU Calendar.

#include <cstring>

#include "fuzzer_utils.h"

#include "unicode/listformatter.h"
#include "unicode/locid.h"


void TestFormat(icu::ListFormatter* listFormat, const icu::UnicodeString* items) {
    for (size_t i = 0; i <= 4; i++) {
        icu::UnicodeString appendTo;
        UErrorCode status = U_ZERO_ERROR;
        listFormat->format(items, i, appendTo, status);
        status = U_ZERO_ERROR;
        icu::FormattedList formatted = listFormat->formatStringsToValue(items, i, status);
    }
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
    uint16_t rnd;
    UListFormatterType type;
    UListFormatterWidth width;
    if (size < sizeof(rnd) + sizeof(type) + sizeof(width)) return 0;
    icu::StringPiece fuzzData(reinterpret_cast<const char *>(data), size);

    std::memcpy(&rnd, fuzzData.data(), sizeof(rnd));
    icu::Locale locale = GetRandomLocale(rnd);
    fuzzData.remove_prefix(sizeof(rnd));

    std::memcpy(&type, fuzzData.data(), sizeof(type));
    fuzzData.remove_prefix(sizeof(type));
    std::memcpy(&width, fuzzData.data(), sizeof(width));
    fuzzData.remove_prefix(sizeof(width));

    size_t len = fuzzData.size() / sizeof(char16_t);
    icu::UnicodeString text(false, reinterpret_cast<const char16_t*>(fuzzData.data()), len);
    const icu::UnicodeString items[] = { text, text, text, text };

    UErrorCode status = U_ZERO_ERROR;
    std::unique_ptr<icu::ListFormatter> listFormat(
        icu::ListFormatter::createInstance(locale, status));
    if (U_SUCCESS(status)) {
        TestFormat(listFormat.get(), items);
    }

    status = U_ZERO_ERROR;
    listFormat.reset(
        icu::ListFormatter::createInstance(locale, type, width, status));
    if (U_SUCCESS(status)) {
        TestFormat(listFormat.get(), items);
    }

    status = U_ZERO_ERROR;
    type = static_cast<UListFormatterType>(
        static_cast<int>(type) % (static_cast<int>(ULISTFMT_TYPE_UNITS) + 1));
    width = static_cast<UListFormatterWidth>(
        static_cast<int>(width) % (static_cast<int>(ULISTFMT_WIDTH_NARROW) + 1));
    listFormat.reset(
        icu::ListFormatter::createInstance(locale, type, width, status));
    if (U_SUCCESS(status)) {
        TestFormat(listFormat.get(), items);
    }

    return EXIT_SUCCESS;
}