Coverage Report

Created: 2025-10-10 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/pjsip/tests/fuzz/fuzz-h264.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
#include <pjmedia-codec/h264_packetizer.h>
24
25
#if defined(PJMEDIA_HAS_VIDEO) && (PJMEDIA_HAS_VIDEO != 0)
26
252
#define kMinInputLength 10
27
120
#define kMaxInputLength 5120
28
29
pj_pool_factory *mem;
30
31
int h264_unpacketizer(const uint8_t *data, size_t size,
32
                      uint8_t *output, size_t output_size)
33
101
{
34
101
    int ret = 0;
35
101
    pj_pool_t *pool;
36
101
    pj_status_t status;
37
101
    pjmedia_h264_packetizer_cfg cfg;
38
101
    pjmedia_h264_packetizer *pktz;
39
101
    unsigned bits_pos = 0;
40
41
101
    pool = pj_pool_create(mem, "h264_test", 1000, 1000, NULL);
42
43
101
    pj_bzero(&cfg, sizeof(cfg));
44
101
    cfg.mtu = 1500;
45
101
    cfg.unpack_nal_start = 4;
46
101
    cfg.mode = PJMEDIA_H264_PACKETIZER_MODE_NON_INTERLEAVED;
47
48
101
    status = pjmedia_h264_packetizer_create(pool, &cfg, &pktz);
49
50
101
    if (status == PJ_SUCCESS) {
51
101
        status = pjmedia_h264_unpacketize(pktz, data, size, output,
52
101
                                          output_size, &bits_pos);
53
101
    }
54
55
101
    pj_pool_release(pool);
56
57
101
    return ret;
58
101
}
59
60
extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
61
126
{
62
126
    int ret = 0;
63
126
    uint8_t *data;
64
126
    uint8_t *output;
65
126
    size_t output_size;
66
126
    pj_caching_pool caching_pool;
67
68
126
    if (Size < kMinInputLength || Size > kMaxInputLength) {
69
25
        return 1;
70
25
    }
71
72
    /* Add null termination for the data */
73
101
    data = (uint8_t *)calloc((Size+1), sizeof(uint8_t));
74
101
    memcpy((void *)data, (void *)Data, Size);
75
101
    output_size = Size + 32;
76
101
    output = (uint8_t *)calloc(output_size, sizeof(uint8_t));
77
78
    /* Init */
79
101
    pj_init();
80
101
    pj_caching_pool_init(&caching_pool, &pj_pool_factory_default_policy, 0);
81
101
    pj_log_set_level(0);
82
83
101
    mem = &caching_pool.factory;
84
85
    /* Fuzz */
86
101
    ret = h264_unpacketizer(data, Size, output, output_size);
87
88
101
    free(data);
89
101
    free(output);
90
101
    pj_caching_pool_destroy(&caching_pool);
91
92
101
    return ret;
93
126
}
94
#else
95
extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
96
{
97
    PJ_UNUSED_ARG(Data);
98
    PJ_UNUSED_ARG(Size);
99
    return 0;
100
}
101
#endif