From: Nuo Mi <nuomi2021@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Frank Plowman <post@frankplowman.com> Subject: Re: [FFmpeg-devel] [PATCH] lavc/vvc: Fix slice_idx out-of-bounds memset Date: Tue, 6 Feb 2024 20:10:29 +0800 Message-ID: <CAFXK13eHk2aEYFzxrkZ_OWTWYMiskQCXn_OowtHFkwDZUUUTPw@mail.gmail.com> (raw) In-Reply-To: <20240205180005.12440-1-post@frankplowman.com> On Tue, Feb 6, 2024 at 2:00 AM <post@frankplowman.com> wrote: > From: Frank Plowman <post@frankplowman.com> > > If the number of CTUs reduces between one picture and the next, the > slice_idx table is reduced in size in the frame_context_for_each_tl call > on vvcdec.c:321. When initialising the slice_idx table on vvcdec.c:325, > the old code uses fc->tab.sz.ctu_count when calculating the table size. > fc->tab.sz.ctu_count holds the old ctu count at this point however, not > being updated to hold the new ctu count until vvcdec.c:342. This causes > an out-of-bounds write. > > Patch fixes the problem by using pps->ctb_count, which was just used > when allocating the table, in place of fc->tab.sz.ctu_count when > initialising the table. > > Signed-off-by: Frank Plowman <post@frankplowman.com> > --- > libavcodec/vvc/vvcdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/vvc/vvcdec.c b/libavcodec/vvc/vvcdec.c > index 1a050600eb..8163b5ecb6 100644 > --- a/libavcodec/vvc/vvcdec.c > +++ b/libavcodec/vvc/vvcdec.c > @@ -322,7 +322,7 @@ static int pic_arrays_init(VVCContext *s, > VVCFrameContext *fc) > if (ret < 0) > return ret; > > - memset(fc->tab.slice_idx, -1, sizeof(*fc->tab.slice_idx) * > fc->tab.sz.ctu_count); > + memset(fc->tab.slice_idx, -1, sizeof(*fc->tab.slice_idx) * ctu_count); > applied, thank you frank > > if (fc->tab.sz.ctu_count != ctu_count) { > ff_refstruct_pool_uninit(&fc->rpl_tab_pool); > -- > 2.43.0 > > _______________________________________________ > 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". > _______________________________________________ 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".
prev parent reply other threads:[~2024-02-06 12:10 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-02-05 18:00 post 2024-02-06 12:10 ` Nuo Mi [this message]
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=CAFXK13eHk2aEYFzxrkZ_OWTWYMiskQCXn_OowtHFkwDZUUUTPw@mail.gmail.com \ --to=nuomi2021@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=post@frankplowman.com \ /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