Coverage Report

Created: 2025-09-05 06:52

/src/uWebSockets/fuzzing/TopicTree.cpp
Line
Count
Source (jump to first uncovered line)
1
#define WIN32_EXPORT
2
3
#include "helpers.h"
4
5
/* Test for the topic tree */
6
#include "../src/TopicTree.h"
7
8
#include <memory>
9
10
// std::vector<std::string_view> topics = {"", "one", "two", "three"};
11
12
3.05k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
13
    /* Create topic tree */
14
2.85M
    uWS::TopicTree<std::string, std::string_view> topicTree([](uWS::Subscriber *s, std::string &message, auto flags) {
15
16
        /* Depending on what publishing we do below (with or without empty strings),
17
         * this assumption can hold true or not. For now it should hold true */
18
2.85M
        if (!message.length()) {
19
0
            free((void *) -1);
20
0
        }
21
22
        /* Break if we have no subscriptions (not really an error, just to bring more randomness) */
23
2.85M
        if (s->topics.size() == 0) {
24
1.24k
            return true;
25
1.24k
        }
26
27
        /* Success */
28
2.85M
        return false;
29
2.85M
    });
30
31
    /* Holder for all manually allocated subscribers */
32
3.05k
    std::map<uint32_t, uWS::Subscriber *> subscribers;
33
34
    /* Iterate the padded fuzz as chunks */
35
4.06M
    makeChunked(makePadded(data, size), size, [&topicTree, &subscribers](const uint8_t *data, size_t size) {
36
        /* We need at least 5 bytes */
37
4.06M
        if (size > 4) {
38
            /* Last of all is a string */
39
3.53M
            std::string_view lastString((char *) data + 5, size - 5);
40
            
41
            /* Why not */
42
3.53M
            topicTree.lookupTopic(lastString);
43
44
            /* First 4 bytes is the subscriber id */
45
3.53M
            uint32_t id;
46
3.53M
            memcpy(&id, data, 4);
47
48
            /* Then one byte action */
49
3.53M
            if (data[4] == 'S') {
50
51
                /* Some ridiculously long topics has to be cut short (OOM) */
52
1.04M
                if (lastString.length() > 512) {
53
21
                    lastString = "too long!";
54
21
                }
55
56
                /* Subscribe */
57
1.04M
                if (subscribers.find(id) == subscribers.end()) {
58
59
                    /* Limit number of subscribers to 100 (OOM) */
60
906k
                    if (subscribers.size() > 100) {
61
18.1k
                        return;
62
18.1k
                    }
63
64
888k
                    uWS::Subscriber *subscriber = topicTree.createSubscriber();
65
888k
                    subscribers[id] = subscriber;
66
888k
                    topicTree.subscribe(subscriber, lastString);
67
888k
                } else {
68
                    /* Limit per subscriber subscriptions (OOM) */
69
135k
                    uWS::Subscriber *subscriber = subscribers[id];
70
135k
                    if (subscriber->topics.size() < 50) {
71
133k
                        topicTree.subscribe(subscriber, lastString);
72
133k
                    }
73
135k
                }
74
2.49M
            } else if (data[4] == 'U') {
75
                /* Unsubscribe */
76
16.1k
                auto it = subscribers.find(id);
77
16.1k
                if (it != subscribers.end()) {
78
13.7k
                    topicTree.unsubscribe(it->second, lastString);
79
13.7k
                }
80
2.47M
            } else if (data[4] == 'F') {
81
                /* Free subscriber */
82
944k
                auto it = subscribers.find(id);
83
944k
                if (it != subscribers.end()) {
84
868k
                    topicTree.freeSubscriber(it->second);
85
868k
                    subscribers.erase(it);
86
868k
                }
87
1.53M
            } else if (data[4] == 'A') {
88
                /* Unsubscribe from all */
89
14.1k
                auto it = subscribers.find(id);
90
14.1k
                if (it != subscribers.end()) {
91
12.4k
                    std::vector<std::string> topics;
92
50.0k
                    for (auto *topic : it->second->topics) {
93
50.0k
                        topics.push_back(topic->name);
94
50.0k
                    }
95
96
50.0k
                    for (std::string &topic : topics) {
97
50.0k
                        topicTree.unsubscribe(it->second, topic);
98
50.0k
                    }
99
12.4k
                }
100
1.52M
            } else if (data[4] == 'O') {
101
                /* Drain one socket */
102
3.37k
                auto it = subscribers.find(id);
103
3.37k
                if (it != subscribers.end()) {
104
2.10k
                    topicTree.drain(it->second);
105
2.10k
                }
106
1.51M
            } else if (data[4] == 'P') {
107
                /* Publish only if we actually have data */
108
1.27M
                if (lastString.length()) {
109
18.1k
                    topicTree.publish(nullptr, lastString, std::string(lastString));
110
1.25M
                } else {
111
                    /* We could use having more strings */
112
1.25M
                    topicTree.publish(nullptr, "", "anything");
113
1.25M
                }
114
1.27M
            } else {
115
                /* Drain for everything else (OOM) */
116
240k
                topicTree.drain();
117
240k
            }
118
3.53M
        }
119
4.06M
    });
120
121
    /* Remove any subscriber from the tree */
122
19.9k
    for (auto &p : subscribers) {
123
19.9k
        topicTree.freeSubscriber(p.second);
124
19.9k
    }
125
126
3.05k
    return 0;
127
3.05k
}
128