From: Stanislav Malyshev Date: Sat, 2 Mar 2019 21:38:00 +0000 (-0800) Subject: Fix bug #77540 - Invalid Read on exif_process_SOFn X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30d2b94a2e88021b77b07149e1f4438662ca8e5e;p=php Fix bug #77540 - Invalid Read on exif_process_SOFn --- diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 4f2f660a28..8ed9c857be 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -3902,7 +3902,7 @@ static int exif_scan_thumbnail(image_info_type *ImageInfo) return FALSE; marker = c; length = php_jpg_get16(data+pos); - if (pos+length>=ImageInfo->Thumbnail.size) { + if (length > ImageInfo->Thumbnail.size || pos >= ImageInfo->Thumbnail.size - length) { return FALSE; } #ifdef EXIF_DEBUG @@ -3923,6 +3923,10 @@ static int exif_scan_thumbnail(image_info_type *ImageInfo) case M_SOF14: case M_SOF15: /* handle SOFn block */ + if (length < 8 || ImageInfo->Thumbnail.size - 8 < pos) { + /* exif_process_SOFn needs 8 bytes */ + return FALSE; + } exif_process_SOFn(data+pos, marker, &sof_info); ImageInfo->Thumbnail.height = sof_info.height; ImageInfo->Thumbnail.width = sof_info.width; @@ -4654,7 +4658,9 @@ PHP_FUNCTION(exif_thumbnail) ZVAL_STRINGL(return_value, ImageInfo.Thumbnail.data, ImageInfo.Thumbnail.size); if (arg_c >= 3) { if (!ImageInfo.Thumbnail.width || !ImageInfo.Thumbnail.height) { - exif_scan_thumbnail(&ImageInfo); + if (!exif_scan_thumbnail(&ImageInfo)) { + ImageInfo.Thumbnail.width = ImageInfo.Thumbnail.height = 0; + } } ZEND_TRY_ASSIGN_LONG(z_width, ImageInfo.Thumbnail.width); ZEND_TRY_ASSIGN_LONG(z_height, ImageInfo.Thumbnail.height); diff --git a/ext/exif/tests/bug77540.jpg b/ext/exif/tests/bug77540.jpg new file mode 100644 index 0000000000..559022db0e Binary files /dev/null and b/ext/exif/tests/bug77540.jpg differ diff --git a/ext/exif/tests/bug77540.phpt b/ext/exif/tests/bug77540.phpt new file mode 100644 index 0000000000..a284e1f263 --- /dev/null +++ b/ext/exif/tests/bug77540.phpt @@ -0,0 +1,16 @@ +--TEST-- +Bug 77540 (Invalid Read on exif_process_SOFn) +--SKIPIF-- + +--FILE-- + +DONE +--EXPECTF-- +Width 0 +Height 0 +DONE \ No newline at end of file