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.

245 lines
8.2KB

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