Coverage Report

Created: 2025-12-05 06:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/uWebSockets/fuzzing/TopicTree.cpp
Line
Count
Source
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.09k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
13
    /* Create topic tree */
14
6.43M
    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
6.43M
        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
6.43M
        if (s->topics.size() == 0) {
24
2.10k
            return true;
25
2.10k
        }
26
27
        /* Success */
28
6.42M
        return false;
29
6.43M
    });
30
31
    /* Holder for all manually allocated subscribers */
32
3.09k
    std::map<uint32_t, uWS::Subscriber *> subscribers;
33
34
    /* Iterate the padded fuzz as chunks */
35
5.72M
    makeChunked(makePadded(data, size), size, [&topicTree, &subscribers](const uint8_t *data, size_t size) {
36
        /* We need at least 5 bytes */
37
5.72M
        if (size > 4) {
38
            /* Last of all is a string */
39
5.19M
            std::string_view lastString((char *) data + 5, size - 5);
40
            
41
            /* Why not */
42
5.19M
            topicTree.lookupTopic(lastString);
43
44
            /* First 4 bytes is the subscriber id */
45
5.19M
            uint32_t id;
46
5.19M
            memcpy(&id, data, 4);
47
48
            /* Then one byte action */
49
5.19M
            if (data[4] == 'S') {
50
51
                /* Some ridiculously long topics has to be cut short (OOM) */
52
1.77M
                if (lastString.length() > 512) {
53
19
                    lastString = "too long!";
54
19
                }
55
56
                /* Subscribe */
57
1.77M
                if (subscribers.find(id) == subscribers.end()) {
58
59
                    /* Limit number of subscribers to 100 (OOM) */
60
1.60M
                    if (subscribers.size() > 100) {
61
624
                        return;
62
624
                    }
63
64
1.60M
                    uWS::Subscriber *subscriber = topicTree.createSubscriber();
65
1.60M
                    subscribers[id] = subscriber;
66
1.60M
                    topicTree.subscribe(subscriber, lastString);
67
1.60M
                } else {
68
                    /* Limit per subscriber subscriptions (OOM) */
69
166k
                    uWS::Subscriber *subscriber = subscribers[id];
70
166k
                    if (subscriber->topics.size() < 50) {
71
163k
                        topicTree.subscribe(subscriber, lastString);
72
163k
                    }
73
166k
                }
74
3.42M
            } else if (data[4] == 'U') {
75
                /* Unsubscribe */
76
20.0k
                auto it = subscribers.find(id);
77
20.0k
                if (it != subscribers.end()) {
78
17.5k
                    topicTree.unsubscribe(it->second, lastString);
79
17.5k
                }
80
3.40M
            } else if (data[4] == 'F') {
81
                /* Free subscriber */
82
1.70M
                auto it = subscribers.find(id);
83
1.70M
                if (it != subscribers.end()) {
84
1.58M
                    topicTree.freeSubscriber(it->second);
85
1.58M
                    subscribers.erase(it);
86
1.58M
                }
87
1.70M
            } else if (data[4] == 'A') {
88
                /* Unsubscribe from all */
89
17.6k
                auto it = subscribers.find(id);
90
17.6k
                if (it != subscribers.end()) {
91
16.0k
                    std::vector<std::string> topics;
92
58.1k
                    for (auto *topic : it->second->topics) {
93
58.1k
                        topics.push_back(topic->name);
94
58.1k
                    }
95
96
58.1k
                    for (std::string &topic : topics) {
97
58.1k
                        topicTree.unsubscribe(it->second, topic);
98
58.1k
                    }
99
16.0k
                }
100
1.68M
            } else if (data[4] == 'O') {
101
                /* Drain one socket */
102
3.40k
                auto it = subscribers.find(id);
103
3.40k
                if (it != subscribers.end()) {
104
2.04k
                    topicTree.drain(it->second);
105
2.04k
                }
106
1.68M
            } else if (data[4] == 'P') {
107
                /* Publish only if we actually have data */
108
1.42M
                if (lastString.length()) {
109
19.9k
                    topicTree.publish(nullptr, lastString, std::string(lastString));
110
1.40M
                } else {
111
                    /* We could use having more strings */
112
1.40M
                    topicTree.publish(nullptr, "", "anything");
113
1.40M
                }
114
1.42M
            } else {
115
                /* Drain for everything else (OOM) */
116
257k
                topicTree.drain();
117
257k
            }
118
5.19M
        }
119
5.72M
    });
120
121
    /* Remove any subscriber from the tree */
122
22.0k
    for (auto &p : subscribers) {
123
22.0k
        topicTree.freeSubscriber(p.second);
124
22.0k
    }
125
126
3.09k
    return 0;
127
3.09k
}
128