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.
110 lines
4.6 KiB
110 lines
4.6 KiB
From 6b98423e19a68b182cd50e3c640f9828b025818b Mon Sep 17 00:00:00 2001
|
|
From: Wan-Teh Chang <wtc@google.com>
|
|
Date: Wed, 10 Apr 2024 17:01:10 -0700
|
|
Subject: [PATCH 1/3] Fix integer overflows in calc of stride_in_bytes
|
|
|
|
A port of the libaom CL
|
|
https://aomedia-review.googlesource.com/c/aom/+/188761.
|
|
|
|
Fix unsigned integer overflows in the calculation of stride_in_bytes in
|
|
img_alloc_helper() when d_w is huge.
|
|
|
|
Change the type of stride_in_bytes from unsigned int to int because it
|
|
will be assigned to img->stride[VPX_PLANE_Y], which is of the int type.
|
|
|
|
Test:
|
|
. ../libvpx/tools/set_analyzer_env.sh integer
|
|
../libvpx/configure --enable-debug --disable-optimizations
|
|
make -j
|
|
./test_libvpx --gtest_filter=VpxImageTest.VpxImgAllocHugeWidth
|
|
|
|
Bug: chromium:332382766
|
|
Change-Id: I3b39d78f61c7255e10cbf72ba2f4975425a05a82
|
|
---
|
|
vpx/src/vpx_image.c | 32 +++++++++++++++++++-------------
|
|
1 file changed, 19 insertions(+), 13 deletions(-)
|
|
|
|
diff --git a/vpx/src/vpx_image.c b/vpx/src/vpx_image.c
|
|
index af7c529a7..a01aab29c 100644
|
|
--- a/vpx/src/vpx_image.c
|
|
+++ b/vpx/src/vpx_image.c
|
|
@@ -20,9 +20,9 @@ static vpx_image_t *img_alloc_helper(vpx_image_t *img, vpx_img_fmt_t fmt,
|
|
unsigned int buf_align,
|
|
unsigned int stride_align,
|
|
unsigned char *img_data) {
|
|
- unsigned int h, w, s, xcs, ycs, bps;
|
|
- unsigned int stride_in_bytes;
|
|
- int align;
|
|
+ unsigned int h, w, xcs, ycs, bps;
|
|
+ uint64_t s;
|
|
+ int stride_in_bytes, align;
|
|
|
|
/* Treat align==0 like align==1 */
|
|
if (!buf_align) buf_align = 1;
|
|
@@ -92,9 +92,11 @@ static vpx_image_t *img_alloc_helper(vpx_image_t *img, vpx_img_fmt_t fmt,
|
|
* and height shouldn't be adjusted. */
|
|
w = d_w;
|
|
h = d_h;
|
|
- s = (fmt & VPX_IMG_FMT_PLANAR) ? w : bps * w / 8;
|
|
- s = (s + stride_align - 1) & ~(stride_align - 1);
|
|
- stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s;
|
|
+ s = (fmt & VPX_IMG_FMT_PLANAR) ? w : (uint64_t)bps * w / 8;
|
|
+ s = (s + stride_align - 1) & ~((uint64_t)stride_align - 1);
|
|
+ s = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s;
|
|
+ if (s > INT_MAX) goto fail;
|
|
+ stride_in_bytes = (int)s;
|
|
|
|
/* Allocate the new image */
|
|
if (!img) {
|
|
@@ -117,9 +119,11 @@ static vpx_image_t *img_alloc_helper(vpx_image_t *img, vpx_img_fmt_t fmt,
|
|
align = (1 << ycs) - 1;
|
|
h = (d_h + align) & ~align;
|
|
|
|
- s = (fmt & VPX_IMG_FMT_PLANAR) ? w : bps * w / 8;
|
|
- s = (s + stride_align - 1) & ~(stride_align - 1);
|
|
- stride_in_bytes = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s;
|
|
+ s = (fmt & VPX_IMG_FMT_PLANAR) ? w : (uint64_t)bps * w / 8;
|
|
+ s = (s + stride_align - 1) & ~((uint64_t)stride_align - 1);
|
|
+ s = (fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? s * 2 : s;
|
|
+ if (s > INT_MAX) goto fail;
|
|
+ stride_in_bytes = (int)s;
|
|
alloc_size = (fmt & VPX_IMG_FMT_PLANAR) ? (uint64_t)h * s * bps / 8
|
|
: (uint64_t)h * s;
|
|
|
|
@@ -185,18 +189,19 @@ int vpx_img_set_rect(vpx_image_t *img, unsigned int x, unsigned int y,
|
|
if (img->fmt & VPX_IMG_FMT_HAS_ALPHA) {
|
|
img->planes[VPX_PLANE_ALPHA] =
|
|
data + x * bytes_per_sample + y * img->stride[VPX_PLANE_ALPHA];
|
|
- data += img->h * img->stride[VPX_PLANE_ALPHA];
|
|
+ data += (size_t)img->h * img->stride[VPX_PLANE_ALPHA];
|
|
}
|
|
|
|
img->planes[VPX_PLANE_Y] =
|
|
data + x * bytes_per_sample + y * img->stride[VPX_PLANE_Y];
|
|
- data += img->h * img->stride[VPX_PLANE_Y];
|
|
+ data += (size_t)img->h * img->stride[VPX_PLANE_Y];
|
|
|
|
if (!(img->fmt & VPX_IMG_FMT_UV_FLIP)) {
|
|
img->planes[VPX_PLANE_U] =
|
|
data + (x >> img->x_chroma_shift) * bytes_per_sample +
|
|
(y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
|
|
- data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
|
|
+ data +=
|
|
+ (size_t)(img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
|
|
img->planes[VPX_PLANE_V] =
|
|
data + (x >> img->x_chroma_shift) * bytes_per_sample +
|
|
(y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
|
|
@@ -204,7 +209,8 @@ int vpx_img_set_rect(vpx_image_t *img, unsigned int x, unsigned int y,
|
|
img->planes[VPX_PLANE_V] =
|
|
data + (x >> img->x_chroma_shift) * bytes_per_sample +
|
|
(y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
|
|
- data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
|
|
+ data +=
|
|
+ (size_t)(img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V];
|
|
img->planes[VPX_PLANE_U] =
|
|
data + (x >> img->x_chroma_shift) * bytes_per_sample +
|
|
(y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U];
|
|
--
|
|
2.45.2
|
|
|