From: "Martin Storsjö" <martin@martin.st>
To: "Ronald S. Bultje" <rsbultje@gmail.com>
Cc: Alan Kelly <alankelly@google.com>,
FFmpeg development discussions and patches
<ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 2/2] checkasm: sw_scale: Reduce range of test data in the yuv2yuvX test to get closer to real data
Date: Thu, 18 Aug 2022 10:22:53 +0300 (EEST)
Message-ID: <d7b09efc-ad2-423a-44d3-d153f9c7c7f@martin.st> (raw)
In-Reply-To: <CAEEMt2kgj6OZ1kr3Kuqq3MV==La0uLfo7k=MOEOP1oCAvnhqRg@mail.gmail.com>
On Wed, 17 Aug 2022, Ronald S. Bultje wrote:
> On Wed, Aug 17, 2022 at 4:32 PM Martin Storsjö <martin@martin.st> wrote:
> This avoids overflows on some inputs in the x86 case, where the
> assembly version would clip/overflow differently from the
> C reference function.
>
> This doesn't seem to be a real issue with actual input data, but
> only with the previous fully random input data.
>
>
> I'm a bit scared of this change... If we can trigger overflows with specific
> pixel patterns, doesn't that make FFmpeg input-data exploitable? Think of
> how that would go with corporate users with user-provided input data.
No, this most probably isn't a real issue with actual filters - it's only
that the current checkasm test was overly simplistic.
The input to this DSP function isn't raw user-provided input pixels, but
16 bit integers produced as the output of the first (horizontal) scaling
step. Yesterday when I wrote the patch, I hadn't checked exactly what the
range of those values were, and I assumed it wasn't the whole int16_t
range - but apparently they can range at least up to max int16_t. (They
most probably can't range down to the minimum negative int16_t though -
simulating that aspect would be nice too.)
The filter coefficients should add up to 4096. The input sample range is
15 bits (plus sign), and filter coefficients add a total magnitude of 12
bits, giving a total range of 27 bits (plus sign). After shifting down by
19 bits at the end, this produces 8 bits output (which is clipped).
The critical stage here is the 27 bits, where there's still plenty of
headroom (4 bits) for filter overshoot - with a real filter.
However in the current test, the filter coefficients are just plain random
int16_t values in the whole range - and that can easily cause overflows in
the intermediates.
So I guess we shouldn't scale down the input "pixels" here as they
actually can use the whole range up to max int16_t (but ideally, they
wouldn't range further down below zero than what you'd get from the
maximal negative filter overshoot either), but we should scale down the
fully random filter coefficients, so that they can't overflow even if they
all happen to align in the worst way.
Alternatively we could construct a more realistic test filter, e.g.
something like what's used in the hscale test. There, if the filter should
add up to 1<<F, and we have N filter coefficients, we have all of them but
one be set to -((1<<F)/(N-1)) and one set to ((1<<(F+1)) - 1). It doesn't
look much like a real actual filter, but keeps most properties - it adds
up to the right sum and doesn't trigger unreal overflows and it produces
both positive and negative values.
Anyway, I'll update the patch and make a clearer comment for it.
// Martin
_______________________________________________
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:[~2022-08-18 7:23 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-17 20:31 [FFmpeg-devel] [PATCH 1/2] checkasm: sw_scale: Fix the difference printing for approximate functions Martin Storsjö
2022-08-17 20:31 ` [FFmpeg-devel] [PATCH 2/2] checkasm: sw_scale: Reduce range of test data in the yuv2yuvX test to get closer to real data Martin Storsjö
2022-08-17 20:49 ` Ronald S. Bultje
2022-08-18 7:22 ` Martin Storsjö [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=d7b09efc-ad2-423a-44d3-d153f9c7c7f@martin.st \
--to=martin@martin.st \
--cc=alankelly@google.com \
--cc=ffmpeg-devel@ffmpeg.org \
--cc=rsbultje@gmail.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