target_dec_fuzzer.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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 + AV_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 > AV_INPUT_BUFFER_PADDING_SIZE)
  104. padd = AV_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. switch (c->type) {
  136. case AVMEDIA_TYPE_AUDIO : decode_handler = avcodec_decode_audio4; break;
  137. case AVMEDIA_TYPE_VIDEO : decode_handler = avcodec_decode_video2; break;
  138. case AVMEDIA_TYPE_SUBTITLE: decode_handler = subtitle_handler ; break;
  139. }
  140. AVCodecContext* ctx = avcodec_alloc_context3(NULL);
  141. if (!ctx)
  142. error("Failed memory allocation");
  143. ctx->max_pixels = 4096 * 4096; //To reduce false positive OOM and hangs
  144. if (size > 1024) {
  145. GetByteContext gbc;
  146. bytestream2_init(&gbc, data + size - 1024, 1024);
  147. ctx->width = bytestream2_get_le32(&gbc);
  148. ctx->height = bytestream2_get_le32(&gbc);
  149. ctx->bit_rate = bytestream2_get_le64(&gbc);
  150. ctx->bits_per_coded_sample = bytestream2_get_le32(&gbc);
  151. if (av_image_check_size(ctx->width, ctx->height, 0, ctx))
  152. ctx->width = ctx->height = 0;
  153. size -= 1024;
  154. }
  155. int res = avcodec_open2(ctx, c, NULL);
  156. if (res < 0) {
  157. av_free(ctx);
  158. return 0; // Failure of avcodec_open2() does not imply that a issue was found
  159. }
  160. FDBCreate(&buffer);
  161. int got_frame;
  162. AVFrame *frame = av_frame_alloc();
  163. if (!frame)
  164. error("Failed memory allocation");
  165. // Read very simple container
  166. AVPacket avpkt;
  167. while (data < end && it < maxiteration) {
  168. // Search for the TAG
  169. while (data + sizeof(fuzz_tag) < end) {
  170. if (data[0] == (fuzz_tag & 0xFF) && AV_RN64(data) == fuzz_tag)
  171. break;
  172. data++;
  173. }
  174. if (data + sizeof(fuzz_tag) > end)
  175. data = end;
  176. FDBPrepare(&buffer, &avpkt, last, data - last);
  177. data += sizeof(fuzz_tag);
  178. last = data;
  179. // Iterate through all data
  180. while (avpkt.size > 0 && it++ < maxiteration) {
  181. av_frame_unref(frame);
  182. int ret = decode_handler(ctx, frame, &got_frame, &avpkt);
  183. if (it > 20)
  184. ctx->error_concealment = 0;
  185. if (ret <= 0 || ret > avpkt.size)
  186. break;
  187. if (ctx->codec_type != AVMEDIA_TYPE_AUDIO)
  188. ret = avpkt.size;
  189. avpkt.data += ret;
  190. avpkt.size -= ret;
  191. }
  192. }
  193. av_init_packet(&avpkt);
  194. avpkt.data = NULL;
  195. avpkt.size = 0;
  196. do {
  197. got_frame = 0;
  198. decode_handler(ctx, frame, &got_frame, &avpkt);
  199. } while (got_frame == 1 && it++ < maxiteration);
  200. av_frame_free(&frame);
  201. avcodec_free_context(&ctx);
  202. av_freep(&ctx);
  203. FDBDesroy(&buffer);
  204. return 0;
  205. }