FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
target_dec_fuzzer.c
Go to the documentation of this file.
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-yasm
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 
48 #include "libavutil/avassert.h"
49 #include "libavutil/intreadwrite.h"
50 
51 #include "libavcodec/avcodec.h"
52 #include "libavformat/avformat.h"
53 
54 static void error(const char *err)
55 {
56  fprintf(stderr, "%s", err);
57  exit(1);
58 }
59 
60 static AVCodec *c = NULL;
62 {
63  AVCodec *res;
66  res = avcodec_find_decoder(codec_id);
67  if (!res)
68  error("Failed to find decoder");
69  return res;
70 }
71 
72 #if defined(FUZZ_FFMPEG_VIDEO)
73 #define decode_handler avcodec_decode_video2
74 #elif defined(FUZZ_FFMPEG_AUDIO)
75 #define decode_handler avcodec_decode_audio4
76 #elif defined(FUZZ_FFMPEG_SUBTITLE)
77 static int subtitle_handler(AVCodecContext *avctx, void *frame,
78  int *got_sub_ptr, AVPacket *avpkt)
79 {
80  AVSubtitle sub;
81  int ret = avcodec_decode_subtitle2(avctx, &sub, got_sub_ptr, avpkt);
82  if (ret >= 0 && *got_sub_ptr)
83  avsubtitle_free(&sub);
84  return ret;
85 }
86 
87 #define decode_handler subtitle_handler
88 #else
89 #error "Specify encoder type" // To catch mistakes
90 #endif
91 
92 // Class to handle buffer allocation and resize for each frame
93 typedef struct FuzzDataBuffer {
94  size_t size_;
97 
99  FDB->size_ = 0x1000;
100  FDB->data_ = av_malloc(FDB->size_);
101  if (!FDB->data_)
102  error("Failed memory allocation");
103 }
104 
105 void FDBDesroy(FuzzDataBuffer *FDB) { av_free(FDB->data_); }
106 
107 void FDBRealloc(FuzzDataBuffer *FDB, size_t size) {
108  size_t needed = size + FF_INPUT_BUFFER_PADDING_SIZE;
109  av_assert0(needed > size);
110  if (needed > FDB->size_) {
111  av_free(FDB->data_);
112  FDB->size_ = needed;
113  FDB->data_ = av_malloc(FDB->size_);
114  if (!FDB->data_)
115  error("Failed memory allocation");
116  }
117 }
118 
120  size_t size)
121 {
122  FDBRealloc(FDB, size);
123  memcpy(FDB->data_, data, size);
124  size_t padd = FDB->size_ - size;
125  if (padd > FF_INPUT_BUFFER_PADDING_SIZE)
127  memset(FDB->data_ + size, 0, padd);
128  av_init_packet(dst);
129  dst->data = FDB->data_;
130  dst->size = size;
131 }
132 
133 // Ensure we don't loop forever
134 const uint32_t maxiteration = 8096;
135 
136 static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
137 
139  const uint64_t fuzz_tag = FUZZ_TAG;
141  const uint8_t *last = data;
142  const uint8_t *end = data + size;
143  uint32_t it = 0;
144 
145  if (!c)
146  c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
147 
149  if (!ctx)
150  error("Failed memory allocation");
151 
152  ctx->max_pixels = 4096 * 4096; //To reduce false positive OOM and hangs
153 
154  int res = avcodec_open2(ctx, c, NULL);
155  if (res < 0)
156  return res;
157 
158  FDBCreate(&buffer);
159  int got_frame;
160  AVFrame *frame = av_frame_alloc();
161  if (!frame)
162  error("Failed memory allocation");
163 
164  // Read very simple container
165  AVPacket avpkt;
166  while (data < end && it < maxiteration) {
167  // Search for the TAG
168  while (data + sizeof(fuzz_tag) < end) {
169  if (data[0] == (fuzz_tag & 0xFF) && AV_RN64(data) == fuzz_tag)
170  break;
171  data++;
172  }
173  if (data + sizeof(fuzz_tag) > end)
174  data = end;
175 
176  FDBPrepare(&buffer, &avpkt, last, data - last);
177  data += sizeof(fuzz_tag);
178  last = data;
179 
180  // Iterate through all data
181  while (avpkt.size > 0 && it++ < maxiteration) {
182  av_frame_unref(frame);
183  int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
184 
185  if (it > 20)
186  ctx->error_concealment = 0;
187 
188  if (ret <= 0 || ret > avpkt.size)
189  break;
190  if (ctx->codec_type != AVMEDIA_TYPE_AUDIO)
191  ret = avpkt.size;
192  avpkt.data += ret;
193  avpkt.size -= ret;
194  }
195  }
196 
197  av_init_packet(&avpkt);
198  avpkt.data = NULL;
199  avpkt.size = 0;
200 
201  do {
202  got_frame = 0;
203  decode_handler(ctx, frame, &got_frame, &avpkt);
204  } while (got_frame == 1 && it++ < maxiteration);
205 
206  av_frame_free(&frame);
207  avcodec_free_context(&ctx);
208  av_freep(&ctx);
209  FDBDesroy(&buffer);
210  return 0;
211 }
const uint32_t maxiteration
#define NULL
Definition: coverity.c:32
This structure describes decoded (raw) audio or video data.
Definition: frame.h:187
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
void av_log_set_level(int level)
Set the log level.
Definition: log.c:391
int size
Definition: avcodec.h:1658
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, AVPacket *avpkt)
Decode a subtitle message.
Definition: utils.c:2669
AVCodec.
Definition: avcodec.h:3681
#define FF_INPUT_BUFFER_PADDING_SIZE
Definition: avcodec.h:782
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
uint8_t
#define av_malloc(s)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:150
void FDBCreate(FuzzDataBuffer *FDB)
#define AV_LOG_PANIC
Something went really wrong and we will crash now.
Definition: log.h:163
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1657
ptrdiff_t size
Definition: opengl_enc.c:101
static AVCodec * c
void FDBPrepare(FuzzDataBuffer *FDB, AVPacket *dst, const uint8_t *data, size_t size)
static const uint64_t FUZZ_TAG
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:214
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:163
int error_concealment
error concealment flags
Definition: avcodec.h:2963
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.
Definition: avcodec.h:3615
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition: options.c:157
static AVCodec * AVCodecInitialize(enum AVCodecID codec_id)
AVFormatContext * ctx
Definition: movenc.c:48
enum AVCodecID codec_id
Definition: vaapi_decode.c:235
void FDBDesroy(FuzzDataBuffer *FDB)
static void error(const char *err)
Libavcodec external API header.
enum AVMediaType codec_type
Definition: avcodec.h:1740
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer...
Definition: options.c:172
main external API structure.
Definition: avcodec.h:1732
AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition: utils.c:3168
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: utils.c:2782
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: utils.c:1242
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:498
Main libavformat public API header.
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:33
void FDBRealloc(FuzzDataBuffer *FDB, size_t size)
#define av_free(p)
#define AV_RN64(p)
Definition: intreadwrite.h:373
#define av_freep(p)
This structure stores compressed data.
Definition: avcodec.h:1634
void av_register_all(void)
Initialize libavformat and register all the muxers, demuxers and protocols.
Definition: allformats.c:385
GLuint buffer
Definition: opengl_enc.c:102