Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Mark Thompson <sw@jkqxz.net>
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH 2/2] avcodec/cbs_vp9: Try to store fewer than 2 things in the same bit
Date: Sun, 11 Aug 2024 19:05:52 +0100
Message-ID: <dfff1a26-4ef9-496f-96ed-197f11df5b76@jkqxz.net> (raw)
In-Reply-To: <20240807235333.2148870-2-michael@niedermayer.cc>

On 08/08/2024 00:53, Michael Niedermayer wrote:
> Fixes: use of uninitialized value
> Fixes: 70907/clusterfuzz-testcase-minimized-ffmpeg_BSF_VP9_METADATA_fuzzer-6339363208757248
> 
> Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
> ---
>  libavcodec/cbs_vp9.c                 | 9 ++++++---
>  libavcodec/cbs_vp9.h                 | 3 +++
>  libavcodec/cbs_vp9_syntax_template.c | 6 +++---
>  3 files changed, 12 insertions(+), 6 deletions(-)
> 
> diff --git a/libavcodec/cbs_vp9.c b/libavcodec/cbs_vp9.c
> index 816d06da04d..7b8bc9c7985 100644
> --- a/libavcodec/cbs_vp9.c
> +++ b/libavcodec/cbs_vp9.c
> @@ -541,9 +541,12 @@ static int cbs_vp9_assemble_fragment(CodedBitstreamContext *ctx,
>              size_len = av_log2(max) / 8 + 1;
>          av_assert0(size_len <= 4);
>  
> -        sfi.superframe_marker            = VP9_SUPERFRAME_MARKER;
> -        sfi.bytes_per_framesize_minus_1  = size_len - 1;
> -        sfi.frames_in_superframe_minus_1 = frag->nb_units - 1;
> +        sfi.superframe_marker            =
> +        sfi.superframe_marker_2          = VP9_SUPERFRAME_MARKER;
> +        sfi.bytes_per_framesize_minus_1  =
> +        sfi.bytes_per_framesize_minus_1_2= size_len - 1;
> +        sfi.frames_in_superframe_minus_1   =
> +        sfi.frames_in_superframe_minus_1_2 = frag->nb_units - 1;
>  
>          size = 2;
>          for (i = 0; i < frag->nb_units; i++) {
> diff --git a/libavcodec/cbs_vp9.h b/libavcodec/cbs_vp9.h
> index af15eb4bace..428662a8cdb 100644
> --- a/libavcodec/cbs_vp9.h
> +++ b/libavcodec/cbs_vp9.h
> @@ -174,6 +174,9 @@ typedef struct VP9RawSuperframeIndex {
>      uint8_t bytes_per_framesize_minus_1;
>      uint8_t frames_in_superframe_minus_1;
>      uint32_t frame_sizes[VP9_MAX_FRAMES_IN_SUPERFRAME];
> +    uint8_t superframe_marker_2;
> +    uint8_t bytes_per_framesize_minus_1_2;
> +    uint8_t frames_in_superframe_minus_1_2;
>  } VP9RawSuperframeIndex;
>  
>  typedef struct VP9RawSuperframe {
> diff --git a/libavcodec/cbs_vp9_syntax_template.c b/libavcodec/cbs_vp9_syntax_template.c
> index 2f08eccf180..3f542d0c5d5 100644
> --- a/libavcodec/cbs_vp9_syntax_template.c
> +++ b/libavcodec/cbs_vp9_syntax_template.c
> @@ -421,9 +421,9 @@ static int FUNC(superframe_index)(CodedBitstreamContext *ctx, RWContext *rw,
>              frame_sizes[i], 1, i);
>      }
>  
> -    f(3, superframe_marker);
> -    f(2, bytes_per_framesize_minus_1);
> -    f(3, frames_in_superframe_minus_1);
> +    f(3, superframe_marker_2);
> +    f(2, bytes_per_framesize_minus_1_2);
> +    f(3, frames_in_superframe_minus_1_2);

This gets the syntax element names wrong in traces.

>  
>      return 0;
>  }

The two instances of the syntax elements must be identical, if they aren't then the file is invalid.

The correct fix therefore would be to constrain the second read values to be identical to the first, not to introduce new syntax elements not in the standard to cover the invalid case.

Thanks,

- Mark
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

  reply	other threads:[~2024-08-11 18:05 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-07 23:53 [FFmpeg-devel] [PATCH 1/2] avcodec/cfhdenc: Clear dwt_tmp Michael Niedermayer
2024-08-07 23:53 ` [FFmpeg-devel] [PATCH 2/2] avcodec/cbs_vp9: Try to store fewer than 2 things in the same bit Michael Niedermayer
2024-08-11 18:05   ` Mark Thompson [this message]
2024-08-11 18:17     ` [FFmpeg-devel] [PATCH] cbs_vp9: Ensure that the two superframe_header instances are identical Mark Thompson
2024-08-12 19:43       ` Michael Niedermayer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=dfff1a26-4ef9-496f-96ed-197f11df5b76@jkqxz.net \
    --to=sw@jkqxz.net \
    --cc=ffmpeg-devel@ffmpeg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git