Coverage Report

Created: 2025-08-29 06:52

/src/pjsip/tests/fuzz/fuzz-dns.c
Line
Count
Source
1
/* 
2
 * Copyright (C) 2023 Teluu Inc. (http://www.teluu.com)
3
 *
4
 * This program is free software; you can redistribute it and/or modify
5
 * it under the terms of the GNU General Public License as published by
6
 * the Free Software Foundation; either version 2 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, write to the Free Software
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
17
 */
18
#include <stdio.h>
19
#include <stdint.h>
20
#include <stdlib.h>
21
22
#include <pjlib.h>
23
24
#include <pjlib-util/dns.h>
25
26
968
#define kMinInputLength 10
27
478
#define kMaxInputLength 5120
28
29
pj_pool_factory *mem;
30
31
int dns_parser(char *data, size_t size)
32
459
{
33
34
459
    int ret = 0;
35
459
  pj_pool_t *pool;
36
459
  pj_status_t status;
37
459
    pj_dns_parsed_packet *dns;
38
39
459
    pool = pj_pool_create(mem, "dns_test", 4000, 4000, NULL);
40
41
459
    status = pj_dns_parse_packet(pool, data, size, &dns);
42
459
    if (status != PJ_SUCCESS)
43
357
        ret = 1;
44
45
459
    pj_pool_release(pool);
46
47
459
    return ret;
48
459
}
49
50
extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
51
484
{
52
484
    int ret = 0;
53
484
    char *data;
54
484
    pj_caching_pool caching_pool;
55
56
484
    if (Size < kMinInputLength || Size > kMaxInputLength) {
57
25
        return 1;
58
25
    }
59
60
    /* Add null termination for the data */
61
459
    data = (char *)calloc((Size+1), sizeof(char));
62
459
    memcpy((void *)data, (void *)Data, Size);
63
64
    /* Init */
65
459
    pj_init();
66
459
    pj_caching_pool_init(&caching_pool, &pj_pool_factory_default_policy, 0);
67
459
    pj_log_set_level(0);
68
69
459
    mem = &caching_pool.factory;
70
71
    /* Fuzz */
72
459
    ret = dns_parser(data, Size);
73
74
459
    free(data);
75
459
    pj_caching_pool_destroy(&caching_pool);
76
77
459
    return ret;
78
484
}