]> git.sesse.net Git - ffmpeg/blob - tools/target_dem_fuzzer.c
fate: add adpcm_ima_apm encoding test
[ffmpeg] / tools / target_dem_fuzzer.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg 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 GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "config.h"
20 #include "libavutil/avassert.h"
21 #include "libavutil/avstring.h"
22
23 #include "libavcodec/avcodec.h"
24 #include "libavcodec/bytestream.h"
25 #include "libavformat/avformat.h"
26
27
28 typedef struct IOContext {
29     int64_t pos;
30     int64_t filesize;
31     uint8_t *fuzz;
32     int fuzz_size;
33 } IOContext;
34
35 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
36
37 static void error(const char *err)
38 {
39     fprintf(stderr, "%s", err);
40     exit(1);
41 }
42
43 static int io_read(void *opaque, uint8_t *buf, int buf_size)
44 {
45     IOContext *c = opaque;
46     int size = FFMIN(buf_size, c->fuzz_size);
47
48     if (!c->fuzz_size) {
49         c->filesize = FFMIN(c->pos, c->filesize);
50         return AVERROR_EOF;
51     }
52
53     memcpy(buf, c->fuzz, size);
54     c->fuzz      += size;
55     c->fuzz_size -= size;
56     c->pos       += size;
57     c->filesize   = FFMAX(c->filesize, c->pos);
58
59     return size;
60 }
61
62 static int64_t io_seek(void *opaque, int64_t offset, int whence)
63 {
64     IOContext *c = opaque;
65
66     if (whence == SEEK_CUR) {
67         if (offset > INT64_MAX - c->pos)
68             return -1;
69         offset += c->pos;
70     } else if (whence == SEEK_END) {
71         if (offset > INT64_MAX - c->filesize)
72             return -1;
73         offset += c->filesize;
74     } else if (whence == AVSEEK_SIZE) {
75         return c->filesize;
76     }
77     if (offset < 0 || offset > c->filesize)
78         return -1;
79     c->pos = offset;
80     return 0;
81 }
82
83 // Ensure we don't loop forever
84 const uint32_t maxiteration = 8096;
85
86 static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
87
88 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
89     const uint64_t fuzz_tag = FUZZ_TAG;
90     uint32_t it = 0;
91     AVFormatContext *avfmt = avformat_alloc_context();
92     AVPacket pkt;
93     char filename[1025] = {0};
94     AVIOContext *fuzzed_pb = NULL;
95     uint8_t *io_buffer;
96     int io_buffer_size = 32768;
97     int64_t filesize   = size;
98     IOContext opaque;
99     static int c;
100     int seekable = 0;
101     int ret;
102
103     if (!c) {
104         av_register_all();
105         avcodec_register_all();
106         av_log_set_level(AV_LOG_PANIC);
107         c=1;
108     }
109
110     if (!avfmt)
111         error("Failed avformat_alloc_context()");
112
113     if (size > 2048) {
114         int flags;
115         char extension[64];
116
117         GetByteContext gbc;
118         memcpy (filename, data + size - 1024, 1024);
119         bytestream2_init(&gbc, data + size - 2048, 1024);
120         size -= 2048;
121
122         io_buffer_size = bytestream2_get_le32(&gbc) & 0xFFFFFFF;
123         flags          = bytestream2_get_byte(&gbc);
124         seekable       = flags & 1;
125         filesize       = bytestream2_get_le64(&gbc) & 0x7FFFFFFFFFFFFFFF;
126
127         if ((flags & 2) && strlen(filename) < sizeof(filename) / 2) {
128             AVInputFormat *avif = NULL;
129             int avif_count = 0;
130             while ((avif = av_iformat_next(avif))) {
131                 if (avif->extensions)
132                     avif_count ++;
133             }
134             avif_count =  bytestream2_get_le32(&gbc) % avif_count;
135
136             while ((avif = av_iformat_next(avif))) {
137                 if (avif->extensions)
138                     if (!avif_count--)
139                         break;
140             }
141             av_strlcpy(extension, avif->extensions, sizeof(extension));
142             if (strchr(extension, ','))
143                 *strchr(extension, ',') = 0;
144             av_strlcatf(filename, sizeof(filename), ".%s", extension);
145         }
146     }
147     io_buffer = av_malloc(io_buffer_size);
148     if (!io_buffer)
149         error("Failed to allocate io_buffer");
150
151     opaque.filesize = filesize;
152     opaque.pos      = 0;
153     opaque.fuzz     = data;
154     opaque.fuzz_size= size;
155     fuzzed_pb = avio_alloc_context(io_buffer, io_buffer_size, 0, &opaque,
156                                    io_read, NULL, seekable ? io_seek : NULL);
157     if (!fuzzed_pb)
158         error("avio_alloc_context failed");
159
160     avfmt->pb = fuzzed_pb;
161
162     ret = avformat_open_input(&avfmt, filename, NULL, NULL);
163     if (ret < 0) {
164         av_freep(&fuzzed_pb->buffer);
165         av_freep(&fuzzed_pb);
166         avformat_free_context(avfmt);
167         return 0;
168     }
169
170     ret = avformat_find_stream_info(avfmt, NULL);
171
172     av_init_packet(&pkt);
173
174     //TODO, test seeking
175
176     for(it = 0; it < maxiteration; it++) {
177         ret = av_read_frame(avfmt, &pkt);
178         if (ret < 0)
179             break;
180         av_packet_unref(&pkt);
181     }
182 end:
183     av_freep(&fuzzed_pb->buffer);
184     av_freep(&fuzzed_pb);
185     avformat_close_input(&avfmt);
186
187     return 0;
188 }