target_bsf_fuzzer.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. #include "config.h"
  19. #include "libavutil/imgutils.h"
  20. #include "libavutil/opt.h"
  21. #include "libavcodec/avcodec.h"
  22. #include "libavcodec/bsf.h"
  23. #include "libavcodec/bsf_internal.h"
  24. #include "libavcodec/bytestream.h"
  25. #include "libavcodec/internal.h"
  26. int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
  27. static void error(const char *err)
  28. {
  29. fprintf(stderr, "%s", err);
  30. exit(1);
  31. }
  32. static const AVBitStreamFilter *f = NULL;
  33. static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
  34. int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
  35. const uint64_t fuzz_tag = FUZZ_TAG;
  36. const uint8_t *last = data;
  37. const uint8_t *end = data + size;
  38. AVBSFContext *bsf = NULL;
  39. AVPacket *pkt;
  40. uint64_t keyframes = 0;
  41. uint64_t flushpattern = -1;
  42. int res;
  43. if (!f) {
  44. #ifdef FFMPEG_BSF
  45. #define BSF_SYMBOL0(BSF) ff_##BSF##_bsf
  46. #define BSF_SYMBOL(BSF) BSF_SYMBOL0(BSF)
  47. extern const AVBitStreamFilter BSF_SYMBOL(FFMPEG_BSF);
  48. f = &BSF_SYMBOL(FFMPEG_BSF);
  49. #endif
  50. av_log_set_level(AV_LOG_PANIC);
  51. }
  52. res = f ? av_bsf_alloc(f, &bsf) : av_bsf_get_null_filter(&bsf);
  53. if (res < 0)
  54. error("Failed memory allocation");
  55. f = bsf->filter;
  56. if (size > 1024) {
  57. GetByteContext gbc;
  58. int extradata_size;
  59. int flags;
  60. size -= 1024;
  61. bytestream2_init(&gbc, data + size, 1024);
  62. bsf->par_in->width = bytestream2_get_le32(&gbc);
  63. bsf->par_in->height = bytestream2_get_le32(&gbc);
  64. bsf->par_in->bit_rate = bytestream2_get_le64(&gbc);
  65. bsf->par_in->bits_per_coded_sample = bytestream2_get_le32(&gbc);
  66. if (f->codec_ids) {
  67. int i, id;
  68. for (i = 0; f->codec_ids[i] != AV_CODEC_ID_NONE; i++);
  69. id = f->codec_ids[bytestream2_get_byte(&gbc) % i];
  70. bsf->par_in->codec_id = id;
  71. bsf->par_in->codec_tag = bytestream2_get_le32(&gbc);
  72. }
  73. extradata_size = bytestream2_get_le32(&gbc);
  74. bsf->par_in->sample_rate = bytestream2_get_le32(&gbc);
  75. bsf->par_in->ch_layout.nb_channels = (unsigned)bytestream2_get_le32(&gbc) % FF_SANE_NB_CHANNELS;
  76. bsf->par_in->block_align = bytestream2_get_le32(&gbc);
  77. keyframes = bytestream2_get_le64(&gbc);
  78. flushpattern = bytestream2_get_le64(&gbc);
  79. flags = bytestream2_get_byte(&gbc);
  80. if (flags & 0x20) {
  81. if (!strcmp(f->name, "av1_metadata"))
  82. av_opt_set_int(bsf->priv_data, "td", bytestream2_get_byte(&gbc) % 3, 0);
  83. else if (!strcmp(f->name, "h264_metadata") || !strcmp(f->name, "h265_metadata"))
  84. av_opt_set_int(bsf->priv_data, "aud", bytestream2_get_byte(&gbc) % 3, 0);
  85. else if (!strcmp(f->name, "extract_extradata"))
  86. av_opt_set_int(bsf->priv_data, "remove", bytestream2_get_byte(&gbc) & 1, 0);
  87. }
  88. if (extradata_size < size) {
  89. bsf->par_in->extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
  90. if (bsf->par_in->extradata) {
  91. bsf->par_in->extradata_size = extradata_size;
  92. size -= bsf->par_in->extradata_size;
  93. memcpy(bsf->par_in->extradata, data + size, bsf->par_in->extradata_size);
  94. }
  95. }
  96. if (av_image_check_size(bsf->par_in->width, bsf->par_in->height, 0, bsf))
  97. bsf->par_in->width = bsf->par_in->height = 0;
  98. }
  99. res = av_bsf_init(bsf);
  100. if (res < 0) {
  101. av_bsf_free(&bsf);
  102. return 0; // Failure of av_bsf_init() does not imply that a issue was found
  103. }
  104. pkt = av_packet_alloc();
  105. if (!pkt)
  106. error("Failed memory allocation");
  107. while (data < end) {
  108. // Search for the TAG
  109. while (data + sizeof(fuzz_tag) < end) {
  110. if (data[0] == (fuzz_tag & 0xFF) && AV_RN64(data) == fuzz_tag)
  111. break;
  112. data++;
  113. }
  114. if (data + sizeof(fuzz_tag) > end)
  115. data = end;
  116. res = av_new_packet(pkt, data - last);
  117. if (res < 0)
  118. error("Failed memory allocation");
  119. memcpy(pkt->data, last, data - last);
  120. pkt->flags = (keyframes & 1) * AV_PKT_FLAG_DISCARD + (!!(keyframes & 2)) * AV_PKT_FLAG_KEY;
  121. keyframes = (keyframes >> 2) + (keyframes<<62);
  122. data += sizeof(fuzz_tag);
  123. last = data;
  124. if (!(flushpattern & 7))
  125. av_bsf_flush(bsf);
  126. flushpattern = (flushpattern >> 3) + (flushpattern << 61);
  127. res = av_bsf_send_packet(bsf, pkt);
  128. if (res < 0) {
  129. av_packet_unref(pkt);
  130. continue;
  131. }
  132. while (av_bsf_receive_packet(bsf, pkt) >= 0)
  133. av_packet_unref(pkt);
  134. }
  135. av_bsf_send_packet(bsf, NULL);
  136. while (av_bsf_receive_packet(bsf, pkt) >= 0)
  137. av_packet_unref(pkt);
  138. av_packet_free(&pkt);
  139. av_bsf_free(&bsf);
  140. return 0;
  141. }