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.

175 lines
5.9KB

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