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.

240 lines
8.1KB

  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-yasm
  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. static void error(const char *err)
  52. {
  53. fprintf(stderr, "%s", err);
  54. exit(1);
  55. }
  56. static AVCodec *c = NULL;
  57. static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
  58. {
  59. AVCodec *res;
  60. av_log_set_level(AV_LOG_PANIC);
  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 + FF_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 > FF_INPUT_BUFFER_PADDING_SIZE)
  105. padd = FF_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. int (*decode_handler)(AVCodecContext *avctx, AVFrame *picture,
  121. int *got_picture_ptr,
  122. const AVPacket *avpkt) = NULL;
  123. if (!c) {
  124. #ifdef FFMPEG_DECODER
  125. #define DECODER_SYMBOL0(CODEC) ff_##CODEC##_decoder
  126. #define DECODER_SYMBOL(CODEC) DECODER_SYMBOL0(CODEC)
  127. extern AVCodec DECODER_SYMBOL(FFMPEG_DECODER);
  128. avcodec_register(&DECODER_SYMBOL(FFMPEG_DECODER));
  129. int codec_id = DECODER_SYMBOL(FFMPEG_DECODER).id;
  130. c = AVCodecInitialize(codec_id); // Done once.
  131. #else
  132. avcodec_register_all();
  133. c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
  134. #endif
  135. }
  136. switch (c->type) {
  137. case AVMEDIA_TYPE_AUDIO : decode_handler = avcodec_decode_audio4; break;
  138. case AVMEDIA_TYPE_VIDEO : decode_handler = avcodec_decode_video2; break;
  139. case AVMEDIA_TYPE_SUBTITLE: decode_handler = subtitle_handler ; break;
  140. }
  141. AVCodecContext* ctx = avcodec_alloc_context3(NULL);
  142. if (!ctx)
  143. error("Failed memory allocation");
  144. ctx->max_pixels = 4096 * 4096; //To reduce false positive OOM and hangs
  145. if (size > 1024) {
  146. GetByteContext gbc;
  147. bytestream2_init(&gbc, data + size - 1024, 1024);
  148. ctx->width = bytestream2_get_le32(&gbc);
  149. ctx->height = bytestream2_get_le32(&gbc);
  150. ctx->bit_rate = bytestream2_get_le64(&gbc);
  151. ctx->bits_per_coded_sample = bytestream2_get_le32(&gbc);
  152. if (av_image_check_size(ctx->width, ctx->height, 0, ctx))
  153. ctx->width = ctx->height = 0;
  154. size -= 1024;
  155. }
  156. int res = avcodec_open2(ctx, c, NULL);
  157. if (res < 0)
  158. return 0; // Failure of avcodec_open2() does not imply that a issue was found
  159. FDBCreate(&buffer);
  160. int got_frame;
  161. AVFrame *frame = av_frame_alloc();
  162. if (!frame)
  163. error("Failed memory allocation");
  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. FDBPrepare(&buffer, &avpkt, last, data - last);
  176. data += sizeof(fuzz_tag);
  177. last = data;
  178. // Iterate through all data
  179. while (avpkt.size > 0 && it++ < maxiteration) {
  180. av_frame_unref(frame);
  181. int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
  182. if (it > 20)
  183. ctx->error_concealment = 0;
  184. if (ret <= 0 || ret > avpkt.size)
  185. break;
  186. if (ctx->codec_type != AVMEDIA_TYPE_AUDIO)
  187. ret = avpkt.size;
  188. avpkt.data += ret;
  189. avpkt.size -= ret;
  190. }
  191. }
  192. av_init_packet(&avpkt);
  193. avpkt.data = NULL;
  194. avpkt.size = 0;
  195. do {
  196. got_frame = 0;
  197. decode_handler(ctx, frame, &got_frame, &avpkt);
  198. } while (got_frame == 1 && it++ < maxiteration);
  199. av_frame_free(&frame);
  200. avcodec_free_context(&ctx);
  201. av_freep(&ctx);
  202. FDBDesroy(&buffer);
  203. return 0;
  204. }