target_dec_fuzzer.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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. /* Targeted fuzzer that targets specific codecs depending on two
  19. compile-time flags.
  20. INSTRUCTIONS:
  21. * Get the very fresh clang, e.g. see http://libfuzzer.info#versions
  22. * Get and build libFuzzer:
  23. svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
  24. ./Fuzzer/build.sh
  25. * build ffmpeg for fuzzing:
  26. FLAGS="-fsanitize=address -fsanitize-coverage=trace-pc-guard,trace-cmp -g" CC="clang $FLAGS" CXX="clang++ $FLAGS" ./configure --disable-x86asm
  27. make clean && make -j
  28. * build the fuzz target.
  29. Choose the value of FFMPEG_CODEC (e.g. AV_CODEC_ID_DVD_SUBTITLE) and
  30. choose one of FUZZ_FFMPEG_VIDEO, FUZZ_FFMPEG_AUDIO, FUZZ_FFMPEG_SUBTITLE.
  31. 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
  32. * create a corpus directory and put some samples there (empty dir is ok too):
  33. mkdir CORPUS && cp some-files CORPUS
  34. * Run fuzzing:
  35. ./target_dec_fuzzer -max_len=100000 CORPUS
  36. More info:
  37. http://libfuzzer.info
  38. http://tutorial.libfuzzer.info
  39. https://github.com/google/oss-fuzz
  40. http://lcamtuf.coredump.cx/afl/
  41. https://security.googleblog.com/2016/08/guided-in-process-fuzzing-of-chrome.html
  42. */
  43. #include "config.h"
  44. #include "libavutil/avassert.h"
  45. #include "libavutil/imgutils.h"
  46. #include "libavutil/intreadwrite.h"
  47. #include "libavcodec/avcodec.h"
  48. #include "libavcodec/bytestream.h"
  49. #include "libavformat/avformat.h"
  50. int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
  51. extern AVCodec * codec_list[];
  52. static void error(const char *err)
  53. {
  54. fprintf(stderr, "%s", err);
  55. exit(1);
  56. }
  57. static AVCodec *c = NULL;
  58. static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
  59. {
  60. AVCodec *res;
  61. res = avcodec_find_decoder(codec_id);
  62. if (!res)
  63. error("Failed to find decoder");
  64. return res;
  65. }
  66. static int subtitle_handler(AVCodecContext *avctx, void *frame,
  67. int *got_sub_ptr, AVPacket *avpkt)
  68. {
  69. AVSubtitle sub;
  70. int ret = avcodec_decode_subtitle2(avctx, &sub, got_sub_ptr, avpkt);
  71. if (ret >= 0 && *got_sub_ptr)
  72. avsubtitle_free(&sub);
  73. return ret;
  74. }
  75. // Class to handle buffer allocation and resize for each frame
  76. typedef struct FuzzDataBuffer {
  77. size_t size_;
  78. uint8_t *data_;
  79. } FuzzDataBuffer;
  80. static void FDBCreate(FuzzDataBuffer *FDB) {
  81. FDB->size_ = 0x1000;
  82. FDB->data_ = av_malloc(FDB->size_);
  83. if (!FDB->data_)
  84. error("Failed memory allocation");
  85. }
  86. static void FDBDesroy(FuzzDataBuffer *FDB) { av_free(FDB->data_); }
  87. static void FDBRealloc(FuzzDataBuffer *FDB, size_t size) {
  88. size_t needed = size + AV_INPUT_BUFFER_PADDING_SIZE;
  89. av_assert0(needed > size);
  90. if (needed > FDB->size_) {
  91. av_free(FDB->data_);
  92. FDB->size_ = needed;
  93. FDB->data_ = av_malloc(FDB->size_);
  94. if (!FDB->data_)
  95. error("Failed memory allocation");
  96. }
  97. }
  98. static void FDBPrepare(FuzzDataBuffer *FDB, AVPacket *dst, const uint8_t *data,
  99. size_t size)
  100. {
  101. FDBRealloc(FDB, size);
  102. memcpy(FDB->data_, data, size);
  103. size_t padd = FDB->size_ - size;
  104. if (padd > AV_INPUT_BUFFER_PADDING_SIZE)
  105. padd = AV_INPUT_BUFFER_PADDING_SIZE;
  106. memset(FDB->data_ + size, 0, padd);
  107. av_init_packet(dst);
  108. dst->data = FDB->data_;
  109. dst->size = size;
  110. }
  111. // Ensure we don't loop forever
  112. const uint32_t maxiteration = 8096;
  113. static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
  114. int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  115. const uint64_t fuzz_tag = FUZZ_TAG;
  116. FuzzDataBuffer buffer;
  117. const uint8_t *last = data;
  118. const uint8_t *end = data + size;
  119. uint32_t it = 0;
  120. uint64_t ec_pixels = 0;
  121. int (*decode_handler)(AVCodecContext *avctx, AVFrame *picture,
  122. int *got_picture_ptr,
  123. const AVPacket *avpkt) = NULL;
  124. AVCodecParserContext *parser = NULL;
  125. if (!c) {
  126. #ifdef FFMPEG_DECODER
  127. #define DECODER_SYMBOL0(CODEC) ff_##CODEC##_decoder
  128. #define DECODER_SYMBOL(CODEC) DECODER_SYMBOL0(CODEC)
  129. extern AVCodec DECODER_SYMBOL(FFMPEG_DECODER);
  130. codec_list[0] = &DECODER_SYMBOL(FFMPEG_DECODER);
  131. avcodec_register(&DECODER_SYMBOL(FFMPEG_DECODER));
  132. c = &DECODER_SYMBOL(FFMPEG_DECODER);
  133. #else
  134. avcodec_register_all();
  135. c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
  136. #endif
  137. av_log_set_level(AV_LOG_PANIC);
  138. }
  139. switch (c->type) {
  140. case AVMEDIA_TYPE_AUDIO : decode_handler = avcodec_decode_audio4; break;
  141. case AVMEDIA_TYPE_VIDEO : decode_handler = avcodec_decode_video2; break;
  142. case AVMEDIA_TYPE_SUBTITLE: decode_handler = subtitle_handler ; break;
  143. }
  144. AVCodecContext* ctx = avcodec_alloc_context3(NULL);
  145. AVCodecContext* parser_avctx = avcodec_alloc_context3(NULL);
  146. if (!ctx || !parser_avctx)
  147. error("Failed memory allocation");
  148. ctx->max_pixels = 4096 * 4096; //To reduce false positive OOM and hangs
  149. if (size > 1024) {
  150. GetByteContext gbc;
  151. int extradata_size;
  152. size -= 1024;
  153. bytestream2_init(&gbc, data + size, 1024);
  154. ctx->width = bytestream2_get_le32(&gbc);
  155. ctx->height = bytestream2_get_le32(&gbc);
  156. ctx->bit_rate = bytestream2_get_le64(&gbc);
  157. ctx->bits_per_coded_sample = bytestream2_get_le32(&gbc);
  158. // Try to initialize a parser for this codec, note, this may fail which just means we test without one
  159. if (bytestream2_get_byte(&gbc) & 1)
  160. parser = av_parser_init(c->id);
  161. extradata_size = bytestream2_get_le32(&gbc);
  162. if (extradata_size < size) {
  163. ctx->extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
  164. if (ctx->extradata) {
  165. ctx->extradata_size = extradata_size;
  166. size -= ctx->extradata_size;
  167. memcpy(ctx->extradata, data + size, ctx->extradata_size);
  168. }
  169. }
  170. if (av_image_check_size(ctx->width, ctx->height, 0, ctx))
  171. ctx->width = ctx->height = 0;
  172. }
  173. int res = avcodec_open2(ctx, c, NULL);
  174. if (res < 0) {
  175. av_free(ctx);
  176. av_free(parser_avctx);
  177. av_parser_close(parser);
  178. return 0; // Failure of avcodec_open2() does not imply that a issue was found
  179. }
  180. parser_avctx->codec_id = ctx->codec_id;
  181. FDBCreate(&buffer);
  182. int got_frame;
  183. AVFrame *frame = av_frame_alloc();
  184. if (!frame)
  185. error("Failed memory allocation");
  186. // Read very simple container
  187. AVPacket avpkt, parsepkt;
  188. while (data < end && it < maxiteration) {
  189. // Search for the TAG
  190. while (data + sizeof(fuzz_tag) < end) {
  191. if (data[0] == (fuzz_tag & 0xFF) && AV_RN64(data) == fuzz_tag)
  192. break;
  193. data++;
  194. }
  195. if (data + sizeof(fuzz_tag) > end)
  196. data = end;
  197. FDBPrepare(&buffer, &parsepkt, last, data - last);
  198. data += sizeof(fuzz_tag);
  199. last = data;
  200. while (parsepkt.size > 0) {
  201. if (parser) {
  202. av_init_packet(&avpkt);
  203. int ret = av_parser_parse2(parser, parser_avctx, &avpkt.data, &avpkt.size,
  204. parsepkt.data, parsepkt.size,
  205. parsepkt.pts, parsepkt.dts, parsepkt.pos);
  206. parsepkt.data += ret;
  207. parsepkt.size -= ret;
  208. parsepkt.pos += ret;
  209. avpkt.pts = parser->pts;
  210. avpkt.dts = parser->dts;
  211. avpkt.pos = parser->pos;
  212. if ( parser->key_frame == 1 ||
  213. (parser->key_frame == -1 && parser->pict_type == AV_PICTURE_TYPE_I))
  214. avpkt.flags |= AV_PKT_FLAG_KEY;
  215. avpkt.flags |= parsepkt.flags & AV_PKT_FLAG_DISCARD;
  216. } else {
  217. avpkt = parsepkt;
  218. parsepkt.size = 0;
  219. }
  220. // Iterate through all data
  221. while (avpkt.size > 0 && it++ < maxiteration) {
  222. av_frame_unref(frame);
  223. int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
  224. ec_pixels += ctx->width * ctx->height;
  225. if (it > 20 || ec_pixels > 4 * ctx->max_pixels)
  226. ctx->error_concealment = 0;
  227. if (ret <= 0 || ret > avpkt.size)
  228. break;
  229. if (ctx->codec_type != AVMEDIA_TYPE_AUDIO)
  230. ret = avpkt.size;
  231. avpkt.data += ret;
  232. avpkt.size -= ret;
  233. }
  234. }
  235. }
  236. av_init_packet(&avpkt);
  237. avpkt.data = NULL;
  238. avpkt.size = 0;
  239. do {
  240. got_frame = 0;
  241. decode_handler(ctx, frame, &got_frame, &avpkt);
  242. } while (got_frame == 1 && it++ < maxiteration);
  243. av_frame_free(&frame);
  244. avcodec_free_context(&ctx);
  245. avcodec_free_context(&parser_avctx);
  246. av_parser_close(parser);
  247. FDBDesroy(&buffer);
  248. return 0;
  249. }