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 /* Targeted fuzzer that targets specific codecs depending on two
20 compile-time flags.
21 INSTRUCTIONS:
22
23 * Get the very fresh clang, e.g. see http://libfuzzer.info#versions
24 * Get and build libFuzzer:
25 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
26 ./Fuzzer/build.sh
27 * build ffmpeg for fuzzing:
28 FLAGS="-fsanitize=address -fsanitize-coverage=trace-pc-guard,trace-cmp -g" CC="clang $FLAGS" CXX="clang++ $FLAGS" ./configure --disable-x86asm
29 make clean && make -j
30 * build the fuzz target.
31 Choose the value of FFMPEG_CODEC (e.g. AV_CODEC_ID_DVD_SUBTITLE) and
32 choose one of FUZZ_FFMPEG_VIDEO, FUZZ_FFMPEG_AUDIO, FUZZ_FFMPEG_SUBTITLE.
33 clang -fsanitize=address -fsanitize-coverage=trace-pc-guard,trace-cmp tools/target_dec_fuzzer.c -o target_dec_fuzzer -I. -DFFMPEG_CODEC=AV_CODEC_ID_MPEG1VIDEO -DFUZZ_FFMPEG_VIDEO ../../libfuzzer/libFuzzer.a -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl,-z,noexecstack -Wl,--warn-common -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -lavdevice -lavfilter -lavformat -lavcodec -lswresample -lswscale -lavutil -ldl -lxcb -lxcb-shm -lxcb -lxcb-xfixes -lxcb -lxcb-shape -lxcb -lX11 -lasound -lm -lbz2 -lz -pthread
34 * create a corpus directory and put some samples there (empty dir is ok too):
35 mkdir CORPUS && cp some-files CORPUS
36
37 * Run fuzzing:
38 ./target_dec_fuzzer -max_len=100000 CORPUS
39
40 More info:
41 http://libfuzzer.info
42 http://tutorial.libfuzzer.info
43 https://github.com/google/oss-fuzz
44 http://lcamtuf.coredump.cx/afl/
45 https://security.googleblog.com/2016/08/guided-in-process-fuzzing-of-chrome.html
46 */
47
52
56
58
59 static void error(
const char *err)
60 {
61 fprintf(stderr, "%s", err);
62 exit(1);
63 }
64
67 {
69
71 if (!res)
72 error(
"Failed to find decoder");
73 return res;
74 }
75
78 {
81 if (ret >= 0 && *got_sub_ptr)
83 return ret;
84 }
85
86 // Class to handle buffer allocation and resize for each frame
91
96 error(
"Failed memory allocation");
97 }
98
100
104 if (needed > FDB->
size_) {
109 error(
"Failed memory allocation");
110 }
111 }
112
115 {
117 memcpy(FDB->
data_, data, size);
121 memset(FDB->
data_ + size, 0, padd);
125 }
126
127 // Ensure we don't loop forever
129
130 static const uint64_t
FUZZ_TAG = 0x4741542D5A5A5546ULL;
131
137 uint32_t it = 0;
139 int *got_picture_ptr,
141
142 if (!c) {
143 #ifdef FFMPEG_DECODER
144 #define DECODER_SYMBOL0(CODEC) ff_##CODEC##_decoder
145 #define DECODER_SYMBOL(CODEC) DECODER_SYMBOL0(CODEC)
146 extern AVCodec DECODER_SYMBOL(FFMPEG_DECODER);
148
149 c = &DECODER_SYMBOL(FFMPEG_DECODER);
150 #else
153 #endif
155 }
156
161 }
162
164 if (!ctx)
165 error(
"Failed memory allocation");
166
167 ctx->
max_pixels = 4096 * 4096;
//To reduce false positive OOM and hangs
168
169 if (size > 1024) {
172 ctx->
width = bytestream2_get_le32(&gbc);
173 ctx->
height = bytestream2_get_le32(&gbc);
174 ctx->
bit_rate = bytestream2_get_le64(&gbc);
178 size -= 1024;
179 }
180
182 if (res < 0) {
184 return 0; // Failure of avcodec_open2() does not imply that a issue was found
185 }
186
188 int got_frame;
190 if (!frame)
191 error(
"Failed memory allocation");
192
193 // Read very simple container
196 // Search for the TAG
197 while (data + sizeof(fuzz_tag) < end) {
198 if (data[0] == (fuzz_tag & 0xFF) &&
AV_RN64(data) == fuzz_tag)
199 break;
200 data++;
201 }
202 if (data + sizeof(fuzz_tag) > end)
204
205 FDBPrepare(&buffer, &avpkt, last, data - last);
206 data += sizeof(fuzz_tag);
208
209 // Iterate through all data
212 int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
213
214 if (it > 20)
216
217 if (ret <= 0 || ret > avpkt.
size)
218 break;
223 }
224 }
225
229
230 do {
231 got_frame = 0;
232 decode_handler(ctx, frame, &got_frame, &avpkt);
234
239 return 0;
240 }
const uint32_t maxiteration
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
int64_t bit_rate
the average bitrate
void av_log_set_level(int level)
Set the log level.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
attribute_deprecated int avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, const AVPacket *avpkt)
Decode the audio frame of size avpkt->size from avpkt->data into frame.
static void FDBCreate(FuzzDataBuffer *FDB)
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, AVPacket *avpkt)
Decode a subtitle message.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
#define AV_LOG_PANIC
Something went really wrong and we will crash now.
static av_cold int end(AVCodecContext *avctx)
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
av_cold void avcodec_register(AVCodec *codec)
Register the codec codec and initialize libavcodec.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
void avcodec_register_all(void)
Register all the codecs, parsers and bitstream filters which were enabled at configuration time...
static const uint64_t FUZZ_TAG
AVCodecID
Identify the syntax and semantics of the bitstream.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int error_concealment
error concealment flags
simple assert() macros that are a bit more flexible than ISO C assert().
int64_t max_pixels
The number of pixels per image to maximally accept.
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
static AVCodec * AVCodecInitialize(enum AVCodecID codec_id)
int width
picture width / height.
static void error(const char *err)
static int subtitle_handler(AVCodecContext *avctx, void *frame, int *got_sub_ptr, AVPacket *avpkt)
Libavcodec external API header.
enum AVMediaType codec_type
attribute_deprecated int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, const AVPacket *avpkt)
Decode the video frame of size avpkt->size from avpkt->data into picture.
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer...
main external API structure.
AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
static void FDBPrepare(FuzzDataBuffer *FDB, AVPacket *dst, const uint8_t *data, size_t size)
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
static void FDBDesroy(FuzzDataBuffer *FDB)
static void FDBRealloc(FuzzDataBuffer *FDB, size_t size)
This structure stores compressed data.