summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/key_string_to_bson_fuzzer.cpp
blob: 3ed29c66d5ba358f1ce42579446afb843980364e (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
 *    Copyright (C) 2019-present MongoDB, Inc.
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the Server Side Public License, version 1,
 *    as published by MongoDB, Inc.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    Server Side Public License for more details.
 *
 *    You should have received a copy of the Server Side Public License
 *    along with this program. If not, see
 *    <http://www.mongodb.com/licensing/server-side-public-license>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the Server Side Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */

#include "mongo/bson/bson_validate.h"
#include "mongo/db/storage/key_string.h"

const mongo::Ordering kAllAscending = mongo::Ordering::make(mongo::BSONObj());
const mongo::Ordering kOneDescending = mongo::Ordering::make(BSON("a" << -1));
const auto kV1 = mongo::KeyString::Version::V1;
const auto kV0 = mongo::KeyString::Version::V0;

uint8_t getZeroType(char val) {
    switch (val % 10) {
        case 0:
            return mongo::KeyString::TypeBits::kInt;
        case 1:
            return mongo::KeyString::TypeBits::kDouble;
        case 2:
            return mongo::KeyString::TypeBits::kLong;
        case 3:
            return mongo::KeyString::TypeBits::kNegativeDoubleZero;
        case 4:
            return mongo::KeyString::TypeBits::kDecimalZero0xxx;
        case 5:
            return mongo::KeyString::TypeBits::kDecimalZero1xxx;
        case 6:
            return mongo::KeyString::TypeBits::kDecimalZero2xxx;
        case 7:
            return mongo::KeyString::TypeBits::kDecimalZero3xxx;
        case 8:
            return mongo::KeyString::TypeBits::kDecimalZero4xxx;
        case 9:
            return mongo::KeyString::TypeBits::kDecimalZero5xxx;
        default:
            return 0x00;
    }
}

extern "C" int LLVMFuzzerTestOneInput(const char* Data, size_t Size) {
    if (Size < 4)
        return 0;

    const auto version = Data[0] % 2 == 0 ? kV0 : kV1;
    const auto ord = Data[1] % 2 == 0 ? kAllAscending : kOneDescending;

    mongo::KeyString::TypeBits tb(version);

    const size_t len = Data[2];
    if (len > static_cast<size_t>(Size - 3))
        return 0;
    // Data[2] defines the number of types to append to the TypeBits
    // Data[3 + i] defines which types have to be added
    for (size_t i = 0; i < len; i++) {
        char randomType = Data[3 + i] & 0xf;
        char randomZeroType = (Data[3 + i] & 0xf0) >> 4;
        switch (randomType % 9) {
            case 0:
                tb.appendString();
                break;
            case 1:
                tb.appendSymbol();
                break;
            case 2:
                tb.appendNumberInt();
                break;
            case 3:
                tb.appendNumberLong();
                break;
            case 4:
                tb.appendNumberDouble();
                break;
            case 5:
                tb.appendNumberDecimal();
                break;
            case 6:
                tb.appendZero(getZeroType(randomZeroType));
                break;
            case 7:
                tb.appendDecimalZero(getZeroType(randomZeroType));
                break;
            case 8:
                tb.appendDecimalExponent(getZeroType(randomZeroType));
                break;
            default:
                break;
        }
    }

    try {
        mongo::BSONObj obj =
            mongo::KeyString::toBsonSafe(&Data[2 + len], Size - (2 + len), ord, tb);
        // We want to make sure the generated BSON is valid
        invariant(mongo::validateBSON(obj.objdata(), obj.objsize()));
    } catch (const mongo::AssertionException&) {
        // We need to catch exceptions caused by invalid inputs
    }

    return 0;
}