You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

290 lines
11KB

  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. // Ensure we don't loop forever
  76. const uint32_t maxiteration = 8096;
  77. const uint64_t maxpixels_per_frame = 4096 * 4096;
  78. uint64_t maxpixels;
  79. static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
  80. int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  81. const uint64_t fuzz_tag = FUZZ_TAG;
  82. const uint8_t *last = data;
  83. const uint8_t *end = data + size;
  84. uint32_t it = 0;
  85. uint64_t ec_pixels = 0;
  86. int (*decode_handler)(AVCodecContext *avctx, AVFrame *picture,
  87. int *got_picture_ptr,
  88. const AVPacket *avpkt) = NULL;
  89. AVCodecParserContext *parser = NULL;
  90. if (!c) {
  91. #ifdef FFMPEG_DECODER
  92. #define DECODER_SYMBOL0(CODEC) ff_##CODEC##_decoder
  93. #define DECODER_SYMBOL(CODEC) DECODER_SYMBOL0(CODEC)
  94. extern AVCodec DECODER_SYMBOL(FFMPEG_DECODER);
  95. codec_list[0] = &DECODER_SYMBOL(FFMPEG_DECODER);
  96. avcodec_register(&DECODER_SYMBOL(FFMPEG_DECODER));
  97. c = &DECODER_SYMBOL(FFMPEG_DECODER);
  98. #else
  99. avcodec_register_all();
  100. c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
  101. #endif
  102. av_log_set_level(AV_LOG_PANIC);
  103. }
  104. switch (c->type) {
  105. case AVMEDIA_TYPE_AUDIO : decode_handler = avcodec_decode_audio4; break;
  106. case AVMEDIA_TYPE_VIDEO : decode_handler = avcodec_decode_video2; break;
  107. case AVMEDIA_TYPE_SUBTITLE: decode_handler = subtitle_handler ; break;
  108. }
  109. maxpixels = maxpixels_per_frame * maxiteration;
  110. switch (c->id) {
  111. // Allows a small input to generate gigantic output
  112. case AV_CODEC_ID_BINKVIDEO: maxpixels /= 32; break;
  113. case AV_CODEC_ID_DIRAC: maxpixels /= 8192; break;
  114. case AV_CODEC_ID_MSRLE: maxpixels /= 16; break;
  115. case AV_CODEC_ID_QTRLE: maxpixels /= 16; break;
  116. case AV_CODEC_ID_SANM: maxpixels /= 16; break;
  117. case AV_CODEC_ID_GIF: maxpixels /= 16; break;
  118. // Performs slow frame rescaling in C
  119. case AV_CODEC_ID_GDV: maxpixels /= 512; break;
  120. // Postprocessing in C
  121. case AV_CODEC_ID_HNM4_VIDEO:maxpixels /= 128; break;
  122. // Cliping in C, generally slow even with small input
  123. case AV_CODEC_ID_INDEO4: maxpixels /= 128; break;
  124. case AV_CODEC_ID_LSCR: maxpixels /= 16; break;
  125. case AV_CODEC_ID_MOTIONPIXELS:maxpixels /= 256; break;
  126. case AV_CODEC_ID_SNOW: maxpixels /= 128; break;
  127. case AV_CODEC_ID_TRUEMOTION2: maxpixels /= 1024; break;
  128. }
  129. AVCodecContext* ctx = avcodec_alloc_context3(c);
  130. AVCodecContext* parser_avctx = avcodec_alloc_context3(NULL);
  131. if (!ctx || !parser_avctx)
  132. error("Failed memory allocation");
  133. if (ctx->max_pixels == 0 || ctx->max_pixels > maxpixels_per_frame)
  134. ctx->max_pixels = maxpixels_per_frame; //To reduce false positive OOM and hangs
  135. ctx->refcounted_frames = 1; //To reduce false positive timeouts and focus testing on the refcounted API
  136. if (size > 1024) {
  137. GetByteContext gbc;
  138. int extradata_size;
  139. size -= 1024;
  140. bytestream2_init(&gbc, data + size, 1024);
  141. ctx->width = bytestream2_get_le32(&gbc);
  142. ctx->height = bytestream2_get_le32(&gbc);
  143. ctx->bit_rate = bytestream2_get_le64(&gbc);
  144. ctx->bits_per_coded_sample = bytestream2_get_le32(&gbc);
  145. // Try to initialize a parser for this codec, note, this may fail which just means we test without one
  146. if (bytestream2_get_byte(&gbc) & 1)
  147. parser = av_parser_init(c->id);
  148. extradata_size = bytestream2_get_le32(&gbc);
  149. if (extradata_size < size) {
  150. ctx->extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
  151. if (ctx->extradata) {
  152. ctx->extradata_size = extradata_size;
  153. size -= ctx->extradata_size;
  154. memcpy(ctx->extradata, data + size, ctx->extradata_size);
  155. }
  156. }
  157. if (av_image_check_size(ctx->width, ctx->height, 0, ctx))
  158. ctx->width = ctx->height = 0;
  159. }
  160. int res = avcodec_open2(ctx, c, NULL);
  161. if (res < 0) {
  162. avcodec_free_context(&ctx);
  163. av_free(parser_avctx);
  164. av_parser_close(parser);
  165. return 0; // Failure of avcodec_open2() does not imply that a issue was found
  166. }
  167. parser_avctx->codec_id = ctx->codec_id;
  168. int got_frame;
  169. AVFrame *frame = av_frame_alloc();
  170. if (!frame)
  171. error("Failed memory allocation");
  172. // Read very simple container
  173. AVPacket avpkt, parsepkt;
  174. av_init_packet(&avpkt);
  175. av_init_packet(&parsepkt);
  176. while (data < end && it < maxiteration) {
  177. // Search for the TAG
  178. while (data + sizeof(fuzz_tag) < end) {
  179. if (data[0] == (fuzz_tag & 0xFF) && AV_RN64(data) == fuzz_tag)
  180. break;
  181. data++;
  182. }
  183. if (data + sizeof(fuzz_tag) > end)
  184. data = end;
  185. res = av_new_packet(&parsepkt, data - last);
  186. if (res < 0)
  187. error("Failed memory allocation");
  188. memcpy(parsepkt.data, last, data - last);
  189. data += sizeof(fuzz_tag);
  190. last = data;
  191. while (parsepkt.size > 0) {
  192. if (parser) {
  193. av_init_packet(&avpkt);
  194. int ret = av_parser_parse2(parser, parser_avctx, &avpkt.data, &avpkt.size,
  195. parsepkt.data, parsepkt.size,
  196. parsepkt.pts, parsepkt.dts, parsepkt.pos);
  197. if (avpkt.data == parsepkt.data) {
  198. avpkt.buf = av_buffer_ref(parsepkt.buf);
  199. if (!avpkt.buf)
  200. error("Failed memory allocation");
  201. } else {
  202. if (av_packet_make_refcounted(&avpkt) < 0)
  203. error("Failed memory allocation");
  204. }
  205. parsepkt.data += ret;
  206. parsepkt.size -= ret;
  207. parsepkt.pos += ret;
  208. avpkt.pts = parser->pts;
  209. avpkt.dts = parser->dts;
  210. avpkt.pos = parser->pos;
  211. if ( parser->key_frame == 1 ||
  212. (parser->key_frame == -1 && parser->pict_type == AV_PICTURE_TYPE_I))
  213. avpkt.flags |= AV_PKT_FLAG_KEY;
  214. avpkt.flags |= parsepkt.flags & AV_PKT_FLAG_DISCARD;
  215. } else {
  216. av_packet_move_ref(&avpkt, &parsepkt);
  217. }
  218. // Iterate through all data
  219. while (avpkt.size > 0 && it++ < maxiteration) {
  220. av_frame_unref(frame);
  221. int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
  222. ec_pixels += ctx->width * ctx->height;
  223. if (it > 20 || ec_pixels > 4 * ctx->max_pixels)
  224. ctx->error_concealment = 0;
  225. if (ec_pixels > maxpixels)
  226. goto maximums_reached;
  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. av_packet_unref(&avpkt);
  235. }
  236. av_packet_unref(&parsepkt);
  237. }
  238. maximums_reached:
  239. av_packet_unref(&avpkt);
  240. do {
  241. got_frame = 0;
  242. av_frame_unref(frame);
  243. decode_handler(ctx, frame, &got_frame, &avpkt);
  244. } while (got_frame == 1 && it++ < maxiteration);
  245. fprintf(stderr, "pixels decoded: %"PRId64", iterations: %d\n", ec_pixels, it);
  246. av_frame_free(&frame);
  247. avcodec_free_context(&ctx);
  248. avcodec_free_context(&parser_avctx);
  249. av_parser_close(parser);
  250. av_packet_unref(&parsepkt);
  251. return 0;
  252. }