From 2fc19b92387d4248c715edfbf38658238978abb6 Mon Sep 17 00:00:00 2001 From: steve Date: Fri, 27 Mar 2015 20:54:14 +0100 Subject: [PATCH] Fixed #24544 -- Fixed get_image_dimensions() on image buffers that Pillow fails to parse. Thanks Steve Kossouho for the report and original patch. --- django/core/files/images.py | 6 ++++++ tests/files/tests.py | 21 +++++++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/django/core/files/images.py b/django/core/files/images.py index f5254e37a6..47b3585d39 100644 --- a/django/core/files/images.py +++ b/django/core/files/images.py @@ -3,6 +3,7 @@ Utility functions for handling images. Requires Pillow as you might imagine. """ +import struct import zlib from django.core.files import File @@ -63,6 +64,11 @@ def get_image_dimensions(file_or_path, close=False): pass else: raise + except struct.error as e: + # Ignore PIL failing on a too short buffer when reads return + # less bytes than expected. Skip and feed more data to the + # parser (ticket #24544). + pass if p.image: return p.image.size chunk_size *= 2 diff --git a/tests/files/tests.py b/tests/files/tests.py index d5d952d1e0..13560e509c 100644 --- a/tests/files/tests.py +++ b/tests/files/tests.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals import gzip import os +import struct import tempfile import unittest import zlib @@ -13,6 +14,7 @@ from django.core.files.base import ContentFile from django.core.files.move import file_move_safe from django.core.files.temp import NamedTemporaryFile from django.core.files.uploadedfile import SimpleUploadedFile, UploadedFile +from django.test import mock from django.utils import six from django.utils._os import upath @@ -239,8 +241,9 @@ class InconsistentGetImageDimensionsBug(unittest.TestCase): self.assertEqual(size, Image.open(fh).size) -class GetImageDimensionsOnInvalidImages(unittest.TestCase): - @unittest.skipUnless(Image, "Pillow not installed") +@unittest.skipUnless(Image, "Pillow not installed") +class GetImageDimensionsTests(unittest.TestCase): + def test_invalid_image(self): """ get_image_dimensions() should return (None, None) for the dimensions of @@ -254,6 +257,20 @@ class GetImageDimensionsOnInvalidImages(unittest.TestCase): size = images.get_image_dimensions(fh) self.assertEqual(size, (None, None)) + def test_valid_image(self): + """ + get_image_dimensions() should catch struct.error while feeding the PIL + Image parser (#24544). + + Emulates the Parser feed error. Since the error is raised on every feed + attempt, the resulting image size should be invalid: (None, None). + """ + img_path = os.path.join(os.path.dirname(upath(__file__)), "test.png") + with mock.patch('PIL.ImageFile.Parser.feed', side_effect=struct.error): + with open(img_path, 'rb') as fh: + size = images.get_image_dimensions(fh) + self.assertEqual(size, (None, None)) + class FileMoveSafeTests(unittest.TestCase): def test_file_move_overwrite(self):