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.

229 lines
7.5KB

  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_register_all();
  61. av_log_set_level(AV_LOG_PANIC);
  62. res = avcodec_find_decoder(codec_id);
  63. if (!res)
  64. error("Failed to find decoder");
  65. return res;
  66. }
  67. #if defined(FUZZ_FFMPEG_VIDEO)
  68. #define decode_handler avcodec_decode_video2
  69. #elif defined(FUZZ_FFMPEG_AUDIO)
  70. #define decode_handler avcodec_decode_audio4
  71. #elif defined(FUZZ_FFMPEG_SUBTITLE)
  72. static int subtitle_handler(AVCodecContext *avctx, void *frame,
  73. int *got_sub_ptr, AVPacket *avpkt)
  74. {
  75. AVSubtitle sub;
  76. int ret = avcodec_decode_subtitle2(avctx, &sub, got_sub_ptr, avpkt);
  77. if (ret >= 0 && *got_sub_ptr)
  78. avsubtitle_free(&sub);
  79. return ret;
  80. }
  81. #define decode_handler subtitle_handler
  82. #else
  83. #error "Specify encoder type" // To catch mistakes
  84. #endif
  85. // Class to handle buffer allocation and resize for each frame
  86. typedef struct FuzzDataBuffer {
  87. size_t size_;
  88. uint8_t *data_;
  89. } FuzzDataBuffer;
  90. static void FDBCreate(FuzzDataBuffer *FDB) {
  91. FDB->size_ = 0x1000;
  92. FDB->data_ = av_malloc(FDB->size_);
  93. if (!FDB->data_)
  94. error("Failed memory allocation");
  95. }
  96. static void FDBDesroy(FuzzDataBuffer *FDB) { av_free(FDB->data_); }
  97. static void FDBRealloc(FuzzDataBuffer *FDB, size_t size) {
  98. size_t needed = size + FF_INPUT_BUFFER_PADDING_SIZE;
  99. av_assert0(needed > size);
  100. if (needed > FDB->size_) {
  101. av_free(FDB->data_);
  102. FDB->size_ = needed;
  103. FDB->data_ = av_malloc(FDB->size_);
  104. if (!FDB->data_)
  105. error("Failed memory allocation");
  106. }
  107. }
  108. static void FDBPrepare(FuzzDataBuffer *FDB, AVPacket *dst, const uint8_t *data,
  109. size_t size)
  110. {
  111. FDBRealloc(FDB, size);
  112. memcpy(FDB->data_, data, size);
  113. size_t padd = FDB->size_ - size;
  114. if (padd > FF_INPUT_BUFFER_PADDING_SIZE)
  115. padd = FF_INPUT_BUFFER_PADDING_SIZE;
  116. memset(FDB->data_ + size, 0, padd);
  117. av_init_packet(dst);
  118. dst->data = FDB->data_;
  119. dst->size = size;
  120. }
  121. // Ensure we don't loop forever
  122. const uint32_t maxiteration = 8096;
  123. static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
  124. int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  125. const uint64_t fuzz_tag = FUZZ_TAG;
  126. FuzzDataBuffer buffer;
  127. const uint8_t *last = data;
  128. const uint8_t *end = data + size;
  129. uint32_t it = 0;
  130. if (!c)
  131. c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
  132. AVCodecContext* ctx = avcodec_alloc_context3(NULL);
  133. if (!ctx)
  134. error("Failed memory allocation");
  135. ctx->max_pixels = 4096 * 4096; //To reduce false positive OOM and hangs
  136. if (size > 1024) {
  137. GetByteContext gbc;
  138. bytestream2_init(&gbc, data + size - 1024, 1024);
  139. ctx->width = bytestream2_get_le32(&gbc);
  140. ctx->height = bytestream2_get_le32(&gbc);
  141. ctx->bit_rate = bytestream2_get_le64(&gbc);
  142. ctx->bits_per_coded_sample = bytestream2_get_le32(&gbc);
  143. if (av_image_check_size(ctx->width, ctx->height, 0, ctx))
  144. ctx->width = ctx->height = 0;
  145. size -= 1024;
  146. }
  147. int res = avcodec_open2(ctx, c, NULL);
  148. if (res < 0)
  149. return res;
  150. FDBCreate(&buffer);
  151. int got_frame;
  152. AVFrame *frame = av_frame_alloc();
  153. if (!frame)
  154. error("Failed memory allocation");
  155. // Read very simple container
  156. AVPacket avpkt;
  157. while (data < end && it < maxiteration) {
  158. // Search for the TAG
  159. while (data + sizeof(fuzz_tag) < end) {
  160. if (data[0] == (fuzz_tag & 0xFF) && AV_RN64(data) == fuzz_tag)
  161. break;
  162. data++;
  163. }
  164. if (data + sizeof(fuzz_tag) > end)
  165. data = end;
  166. FDBPrepare(&buffer, &avpkt, last, data - last);
  167. data += sizeof(fuzz_tag);
  168. last = data;
  169. // Iterate through all data
  170. while (avpkt.size > 0 && it++ < maxiteration) {
  171. av_frame_unref(frame);
  172. int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
  173. if (it > 20)
  174. ctx->error_concealment = 0;
  175. if (ret <= 0 || ret > avpkt.size)
  176. break;
  177. if (ctx->codec_type != AVMEDIA_TYPE_AUDIO)
  178. ret = avpkt.size;
  179. avpkt.data += ret;
  180. avpkt.size -= ret;
  181. }
  182. }
  183. av_init_packet(&avpkt);
  184. avpkt.data = NULL;
  185. avpkt.size = 0;
  186. do {
  187. got_frame = 0;
  188. decode_handler(ctx, frame, &got_frame, &avpkt);
  189. } while (got_frame == 1 && it++ < maxiteration);
  190. av_frame_free(&frame);
  191. avcodec_free_context(&ctx);
  192. av_freep(&ctx);
  193. FDBDesroy(&buffer);
  194. return 0;
  195. }