Coverage Report

Created: 2026-08-12 07:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/wolfmqtt-fuzzers/fuzzer.cpp
Line
Count
Source
1
// Copyright 2026 Google LLC.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//     http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
#include <fuzzing/datasource/datasource.hpp>
16
#include <wolfmqtt/mqtt_client.h>
17
#include <wolfmqtt/mqtt_packet.h>
18
#include <optional>
19
20
40.7k
#define CHECK_EQ(expr, res) if ( (expr) != (res) ) { goto end; }
21
#define CHECK_NE(expr, res) if ( (expr) == (res) ) { goto end; }
22
23
9.55k
#define BADPTR ((void*)0x12)
24
2.63k
#define MAX_TOPICS 50
25
26
41.8k
#define DEBUG 0
27
28
class Base {
29
    protected:
30
        fuzzing::datasource::Datasource& ds;
31
        MqttQoS GetQoS(void) const;
32
    public:
33
        Base(fuzzing::datasource::Datasource& ds);
34
        ~Base();
35
};
36
37
Base::Base(fuzzing::datasource::Datasource& ds) :
38
14.5k
    ds(ds)
39
14.5k
{ }
40
41
14.5k
Base::~Base() { }
42
43
7.91k
MqttQoS Base::GetQoS(void) const {
44
7.91k
    switch ( ds.Get<uint8_t>() % 3 ) {
45
4.55k
        case    0:
46
4.55k
            return MQTT_QOS_0;
47
2.15k
        case    1:
48
2.15k
            return MQTT_QOS_1;
49
1.15k
        case    2:
50
1.15k
            return MQTT_QOS_2;
51
0
        default:
52
            /* Silence compiler warning */
53
0
            abort();
54
7.91k
    }
55
7.91k
}
56
57
class Topic : public Base {
58
    private:
59
        MqttTopic topic;
60
        std::vector<std::string> strings;
61
    public:
62
        Topic(fuzzing::datasource::Datasource& ds);
63
        ~Topic();
64
        bool Generate(void);
65
        MqttTopic Get(void);
66
};
67
68
Topic::Topic(fuzzing::datasource::Datasource& ds) :
69
7.09k
    Base(ds)
70
7.09k
{ }
71
72
7.09k
Topic::~Topic() { }
73
74
7.09k
bool Topic::Generate(void) {
75
7.09k
    bool ret;
76
77
7.09k
    memset(&topic, 0, sizeof(topic));
78
79
7.09k
    strings.push_back( ds.Get<std::string>() );
80
7.09k
    topic.topic_filter = strings.back().c_str();
81
82
7.09k
    topic.qos = GetQoS();
83
84
7.09k
    ret = true;
85
7.09k
end:
86
6.47k
    return ret;
87
7.09k
}
88
89
6.23k
MqttTopic Topic::Get(void) {
90
6.23k
    return topic;
91
6.23k
}
92
93
class Topics : public Base {
94
    private:
95
        std::vector<Topic*> topics;
96
    public:
97
        Topics(fuzzing::datasource::Datasource& ds);
98
        ~Topics();
99
        bool Generate(void);
100
        MqttTopic* ToArray(void);
101
        size_t Size(void) const;
102
};
103
104
Topics::Topics(fuzzing::datasource::Datasource& ds) :
105
2.63k
    Base(ds)
106
2.63k
{ }
107
108
2.63k
Topics::~Topics() {
109
7.09k
    for (auto& t : topics) {
110
7.09k
        delete t;
111
7.09k
    }
112
2.63k
}
113
        
114
2.63k
bool Topics::Generate(void) {
115
2.63k
    bool ret;
116
117
2.63k
    try {
118
2.63k
        const auto numTopics = ds.Get<uint16_t>() % (MAX_TOPICS+1);
119
120
9.72k
        for (size_t i = 0; i < numTopics; i++) {
121
7.09k
            topics.push_back(new Topic(ds));
122
7.09k
            CHECK_EQ(topics.back()->Generate(), true);
123
7.09k
        }
124
125
2.63k
        ret = true;
126
2.63k
    } catch ( ... ) { }
127
128
2.63k
end:
129
2.63k
    return ret;
130
2.63k
}
131
132
2.46k
MqttTopic* Topics::ToArray(void) {
133
2.46k
    auto ret = new MqttTopic[topics.size()];
134
135
8.70k
    for (size_t i = 0; i < Size(); i++) {
136
6.23k
        ret[i] = topics[i]->Get();
137
6.23k
    }
138
2.46k
    return ret;
139
2.46k
}
140
        
141
11.1k
size_t Topics::Size(void) const {
142
11.1k
    return topics.size();
143
11.1k
}
144
145
class wolfMQTTFuzzer : public Base {
146
        MqttClient client;
147
        MqttNet net;
148
        MqttConnect connect;
149
150
        uint8_t* tx_buf = nullptr, *rx_buf = nullptr;
151
        size_t tx_size = 0, rx_size = 0;
152
153
        std::string client_id;
154
155
        void* malloc(const size_t n);
156
        void free(void* ptr);
157
158
        word16 GetPacketId(void) const;
159
        std::optional<Topic> GetTopic(void) const;
160
161
        bool subscribe(void);
162
        bool unsubscribe(void);
163
        bool publish(void);
164
        bool ping(void);
165
        bool wait(void);
166
    public:
167
        wolfMQTTFuzzer(fuzzing::datasource::Datasource& ds);
168
        ~wolfMQTTFuzzer();
169
        bool Initialize(void);
170
        void Run(void);
171
        int recv(byte* buf, const int buf_len);
172
        int write(const int buf_len);
173
174
};
175
176
static int mqtt_connect(void *context, const char* host, word16 port, int timeout_ms)
177
4.61k
{
178
4.61k
    (void)context;
179
4.61k
    (void)host;
180
4.61k
    (void)port;
181
4.61k
    (void)timeout_ms;
182
183
4.61k
    return MQTT_CODE_SUCCESS;
184
4.61k
}
185
186
static int mqtt_recv(void *context, byte* buf, int buf_len, int timeout_ms)
187
27.6k
{
188
27.6k
    (void)context;
189
27.6k
    (void)timeout_ms;
190
191
27.6k
    auto fuzzer = static_cast<wolfMQTTFuzzer*>(context);
192
27.6k
    return fuzzer->recv(buf, buf_len);
193
27.6k
}
194
195
static int mqtt_write(void *context, const byte* buf, int buf_len, int timeout_ms)
196
11.0k
{
197
11.0k
    (void)context;
198
11.0k
    (void)timeout_ms;
199
11.0k
    (void)buf;
200
201
11.0k
    auto fuzzer = static_cast<wolfMQTTFuzzer*>(context);
202
11.0k
    return fuzzer->write(buf_len);
203
11.0k
}
204
205
static int mqtt_disconnect(void *context)
206
138
{
207
138
    (void)context;
208
209
138
    return MQTT_CODE_SUCCESS;
210
138
}
211
212
static int mqtt_message_cb(MqttClient *client, MqttMessage *msg, byte msg_new, byte msg_done)
213
3.56k
{
214
3.56k
    return MQTT_CODE_SUCCESS;
215
3.56k
}
216
217
9.47k
void* wolfMQTTFuzzer::malloc(const size_t n) {
218
9.47k
    return n == 0 ? BADPTR : ::malloc(n);
219
9.47k
}
220
221
9.55k
void wolfMQTTFuzzer::free(void* ptr) {
222
9.55k
    if ( ptr == BADPTR ) {
223
0
        return;
224
0
    }
225
226
9.55k
    ::free(ptr);
227
9.55k
}
228
229
0
std::optional<Topic> wolfMQTTFuzzer::GetTopic(void) const {
230
0
    Topic topic(ds);
231
232
0
    if ( topic.Generate() == false ) {
233
0
        return std::nullopt;
234
0
    }
235
236
0
    return topic;
237
0
}
238
239
3.73k
word16 wolfMQTTFuzzer::GetPacketId(void) const {
240
3.73k
    return ds.Get<word16>();
241
3.73k
}
242
243
1.67k
bool wolfMQTTFuzzer::subscribe(void) {
244
1.67k
    MqttTopic* topicsArray = nullptr;
245
246
1.67k
    bool ret = false;
247
248
1.67k
    try {
249
1.67k
        Topics topics(ds);
250
1.67k
        CHECK_EQ(topics.Generate(), true);
251
252
1.67k
        MqttSubscribe subscribe;
253
254
1.67k
        memset(&subscribe, 0, sizeof(subscribe));
255
256
1.67k
        subscribe.packet_id = GetPacketId();
257
1.67k
        topicsArray = topics.ToArray();
258
1.67k
        subscribe.topic_count = topics.Size();
259
1.67k
        subscribe.topics = topicsArray;
260
261
1.67k
        CHECK_EQ(MqttClient_Subscribe(&client, &subscribe), MQTT_CODE_SUCCESS);
262
263
205
        ret = true;
264
205
    } catch ( ... ) { }
265
266
1.67k
end:
267
1.67k
    if ( topicsArray ) {
268
1.53k
        delete[] topicsArray;
269
1.53k
    }
270
1.67k
    return ret;
271
1.67k
}
272
273
965
bool wolfMQTTFuzzer::unsubscribe(void) {
274
965
    MqttTopic* topicsArray = nullptr;
275
276
965
    bool ret = false;
277
278
965
    try {
279
965
        Topics topics(ds);
280
965
        CHECK_EQ(topics.Generate(), true);
281
282
965
        MqttUnsubscribe unsubscribe;
283
284
965
        memset(&unsubscribe, 0, sizeof(unsubscribe));
285
286
965
        unsubscribe.packet_id = GetPacketId();
287
965
        topicsArray = topics.ToArray();
288
965
        unsubscribe.topic_count = topics.Size();
289
965
        unsubscribe.topics = topicsArray;
290
291
965
        CHECK_EQ(MqttClient_Unsubscribe(&client, &unsubscribe), MQTT_CODE_SUCCESS);
292
293
86
        ret = true;
294
86
    } catch ( ... ) { }
295
296
965
end:
297
965
    if ( topicsArray ) {
298
929
        delete[] topicsArray;
299
929
    }
300
965
    return ret;
301
965
}
302
303
1.27k
bool wolfMQTTFuzzer::publish(void) {
304
1.27k
    bool ret = false;
305
306
1.27k
    try {
307
1.27k
        MqttPublish publish;
308
309
1.27k
        memset(&publish, 0, sizeof(publish));
310
311
1.27k
        publish.retain = ds.Get<bool>() ? 1 : 0;
312
1.27k
        publish.qos = GetQoS();
313
1.27k
        publish.duplicate = ds.Get<bool>() ? 1 : 0;
314
315
1.27k
        const auto topic_str = ds.Get<std::string>();
316
1.27k
        publish.topic_name = topic_str.c_str();
317
318
1.27k
        publish.packet_id = GetPacketId();
319
320
1.27k
        auto buffer = ds.GetData(0);
321
1.27k
        publish.buffer = buffer.data();
322
1.27k
        publish.total_len = buffer.size();
323
324
1.27k
        if ( DEBUG ) {
325
0
            printf("publish: topic name size: %zu\n", strlen(topic_str.c_str()));
326
0
        }
327
328
1.27k
        CHECK_EQ(MqttClient_Publish(&client, &publish), MQTT_CODE_SUCCESS);
329
330
397
        ret = true;
331
397
    } catch ( ... ) { }
332
333
1.27k
end:
334
1.27k
    return ret;
335
1.27k
}
336
337
1.51k
bool wolfMQTTFuzzer::ping(void) {
338
1.51k
    bool ret = false;
339
340
1.51k
    MqttPing ping;
341
342
1.51k
    memset(&ping, 0, sizeof(ping));
343
344
1.51k
    CHECK_EQ(MqttClient_Ping_ex(&client, &ping), true);
345
346
0
    ret = true;
347
348
1.51k
end:
349
1.51k
    return ret;
350
0
}
351
352
6.45k
bool wolfMQTTFuzzer::wait(void) {
353
6.45k
    bool ret = false;
354
355
6.45k
    CHECK_EQ(MqttClient_WaitMessage(&client, 1000), MQTT_CODE_SUCCESS);
356
357
1.35k
    ret = true;
358
359
6.45k
end:
360
6.45k
    return ret;
361
1.35k
}
362
363
wolfMQTTFuzzer::wolfMQTTFuzzer(fuzzing::datasource::Datasource& ds) :
364
4.77k
    Base(ds)
365
4.77k
{ }
366
367
4.77k
wolfMQTTFuzzer::~wolfMQTTFuzzer() {
368
4.77k
    this->free(tx_buf);
369
4.77k
    this->free(rx_buf);
370
4.77k
}
371
372
4.77k
bool wolfMQTTFuzzer::Initialize(void) {
373
4.77k
    bool ret = false;
374
375
4.77k
    try {
376
        /* net */
377
4.77k
        {
378
4.77k
            memset(&net, 0, sizeof(net));
379
380
4.77k
            net.connect = mqtt_connect;
381
4.77k
            net.read = mqtt_recv;
382
4.77k
            net.write = mqtt_write;
383
4.77k
            net.disconnect = mqtt_disconnect;
384
4.77k
            net.context = this;
385
4.77k
        }
386
387
        /* client */
388
4.77k
        {
389
4.77k
            memset(&client, 0, sizeof(client));
390
391
4.77k
            tx_size = ds.Get<uint16_t>();
392
4.77k
            tx_size = 4096;
393
4.77k
            tx_buf = (uint8_t*)this->malloc(tx_size);
394
4.77k
            rx_size = ds.Get<uint16_t>();
395
4.77k
            rx_size = 4096;
396
4.77k
            rx_buf = (uint8_t*)this->malloc(rx_size);
397
4.77k
            memset(tx_buf, 0, tx_size);
398
4.77k
            memset(rx_buf, 0, rx_size);
399
400
4.77k
            client.msg_cb = mqtt_message_cb;
401
4.77k
            client.tx_buf = tx_buf;
402
4.77k
            client.tx_buf_len = tx_size;
403
4.77k
            client.rx_buf = rx_buf;
404
4.77k
            client.rx_buf_len = rx_size;
405
4.77k
            client.cmd_timeout_ms = 1000;
406
4.77k
        }
407
408
        /* connect */
409
        /* Zero-initialize: only a subset of lwt_msg's fields are set below when
410
         * LWT is enabled, and the MQTT v5 encoder in MqttEncode_Connect reads
411
         * other members (e.g. props). Leaving them uninitialized is a harness
412
         * bug that MSAN reports as a use-of-uninitialized-value inside
413
         * MqttEncode_Connect. */
414
4.77k
        MqttMessage lwt_msg;
415
4.77k
        memset(&lwt_msg, 0, sizeof(lwt_msg));
416
4.77k
        {
417
4.77k
            memset(&connect, 0, sizeof(connect));
418
419
4.77k
            connect.keep_alive_sec = 1;
420
4.77k
            connect.clean_session = ds.Get<bool>() ? 1 : 0;
421
4.77k
            client_id = ds.Get<std::string>();
422
4.77k
            connect.client_id = client_id.c_str();
423
4.77k
            connect.enable_lwt = ds.Get<bool>() ? 1 : 0;
424
4.77k
        }
425
            
426
4.77k
        std::string lwt_topic_name;
427
4.77k
        std::vector<uint8_t> lwt_buffer;
428
429
4.77k
        if ( connect.enable_lwt ) {
430
135
            lwt_topic_name = ds.Get<std::string>();
431
135
            lwt_buffer = ds.GetData(0);
432
433
135
            connect.lwt_msg = &lwt_msg;
434
135
            lwt_msg.qos = GetQoS();
435
135
            lwt_msg.retain = ds.Get<bool>() ? 1 : 0;
436
135
            lwt_msg.topic_name = lwt_topic_name.c_str();
437
135
            lwt_msg.buffer = lwt_buffer.data();
438
135
            lwt_msg.total_len = lwt_buffer.size();
439
135
        }
440
441
4.77k
        CHECK_EQ(MqttSocket_Init(&client, &net), MQTT_CODE_SUCCESS);
442
443
#if 0
444
        if ( ds.Get<bool>() ) {
445
            //CHECK_EQ(MqttClient_SetPropertyCallback(&client, mqtt_property_cb, NULL);
446
        }
447
#endif
448
449
4.77k
        CHECK_EQ(MqttClient_NetConnect(&client, "dummy", 12345, 1000, 0, NULL), MQTT_CODE_SUCCESS);
450
4.77k
        CHECK_EQ(MqttClient_Connect(&client, &connect), MQTT_CODE_SUCCESS);
451
452
3.03k
        ret = true;
453
454
3.03k
    } catch ( ... ) {
455
166
        return false;
456
166
    }
457
458
4.61k
end:
459
4.61k
    return ret;
460
4.77k
}
461
462
2.86k
void wolfMQTTFuzzer::Run(void) {
463
2.86k
    try {
464
2.86k
        const auto numActions = ds.Get<uint8_t>() % 20;
465
466
15.8k
        for (size_t i = 0; i < numActions; i++) {
467
15.6k
            switch ( ds.Get<uint8_t>() ) {
468
1.67k
                case    0:
469
1.67k
                    subscribe();
470
1.67k
                    break;
471
965
                case    1:
472
965
                    unsubscribe();
473
965
                    break;
474
1.27k
                case    2:
475
1.27k
                    publish();
476
1.27k
                    break;
477
1.51k
                case    3:
478
1.51k
                    ping();
479
1.51k
                    break;
480
6.45k
                case    4:
481
6.45k
                    wait();
482
6.45k
                    break;
483
15.6k
            }
484
15.6k
        }
485
486
151
        MqttClient_NetDisconnect(&client);
487
2.73k
    } catch ( ... ) { }
488
2.86k
}
489
490
27.6k
int wolfMQTTFuzzer::recv(byte* buf, const int buf_len) {
491
27.6k
    try {
492
27.6k
        const auto data = ds.GetData(0);
493
27.6k
        const size_t copySize = buf_len > data.size() ? data.size() : buf_len;
494
27.6k
        if ( copySize ) {
495
22.5k
            memcpy(buf, data.data(), copySize);
496
22.5k
        }
497
27.6k
        if ( DEBUG )
498
0
        {
499
0
            printf("Recv: %zu bytes (%d requested)\n", copySize, buf_len);
500
0
            for (size_t i = 0; i < copySize; i++) {
501
0
                printf("%02X ", data[i]);
502
0
            }
503
0
            printf("\n");
504
0
        }
505
27.6k
        return copySize;
506
27.6k
    } catch ( ... ) {
507
1.95k
        if ( DEBUG ) printf("Recv: -1\n");
508
1.95k
        return -1;
509
1.95k
    }
510
27.6k
}
511
512
11.0k
int wolfMQTTFuzzer::write(const int buf_len) {
513
11.0k
    try {
514
11.0k
        if ( ds.Get<bool>() == true ) {
515
607
            if ( DEBUG ) printf("write: -1\n");
516
607
            return -1;
517
607
        }
518
519
10.3k
        const auto ret = (int)(ds.Get<uint32_t>() % (buf_len+1));
520
10.3k
        if ( DEBUG ) printf("write: %d bytes (%d requested)\n", ret, buf_len);
521
10.3k
        return ret;
522
11.0k
    } catch ( ... ) {
523
744
        return -1;
524
744
    }
525
11.0k
}
526
527
4.77k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
528
4.77k
    fuzzing::datasource::Datasource ds(data, size);
529
4.77k
    wolfMQTTFuzzer fuzzer(ds);
530
531
4.77k
    CHECK_EQ(fuzzer.Initialize(), true);
532
533
2.86k
    fuzzer.Run();
534
535
4.77k
end:
536
4.77k
    return 0;
537
2.86k
}