Blame SOURCES/exiv2-CVE-2017-17723-2.patch

4a042c
From 7f5b0778fa301b68c1c88e3820ec3afbd09dd0a5 Mon Sep 17 00:00:00 2001
4a042c
From: clanmills <robin@clanmills.com>
4a042c
Date: Wed, 27 Sep 2017 09:20:13 +0100
4a042c
Subject: Fix https://github.com/Exiv2/exiv2/issues/55
4a042c
4a042c
(cherry picked from commit 6e3855aed7ba8bb4731fc4087ca7f9078b2f3d97)
4a042c
4a042c
diff --git a/include/exiv2/value.hpp b/include/exiv2/value.hpp
4a042c
index 2078c6bd..b7d76fef 100644
4a042c
--- a/include/exiv2/value.hpp
4a042c
+++ b/include/exiv2/value.hpp
4a042c
@@ -1659,11 +1659,13 @@ namespace Exiv2 {
4a042c
         ok_ = true;
4a042c
         return static_cast<long>(value_[n]);
4a042c
     }
4a042c
+// #55 crash when value_[n].first == LONG_MIN
4a042c
+#define LARGE_INT 1000000
4a042c
     // Specialization for rational
4a042c
     template<>
4a042c
     inline long ValueType<Rational>::toLong(long n) const
4a042c
     {
4a042c
-        ok_ = (value_[n].second != 0 && INT_MIN < value_[n].first && value_[n].first < INT_MAX );
4a042c
+        ok_ = (value_[n].second != 0 && -LARGE_INT < value_[n].first && value_[n].first < LARGE_INT);
4a042c
         if (!ok_) return 0;
4a042c
         return value_[n].first / value_[n].second;
4a042c
     }
4a042c
@@ -1671,7 +1673,7 @@ namespace Exiv2 {
4a042c
     template<>
4a042c
     inline long ValueType<URational>::toLong(long n) const
4a042c
     {
4a042c
-        ok_ = (value_[n].second != 0);
4a042c
+        ok_ = (value_[n].second != 0 && value_[n].first < LARGE_INT);
4a042c
         if (!ok_) return 0;
4a042c
         return value_[n].first / value_[n].second;
4a042c
     }
4a042c
diff --git a/src/basicio.cpp b/src/basicio.cpp
4a042c
index 95589cd2..f2e1518b 100644
4a042c
--- a/src/basicio.cpp
4a042c
+++ b/src/basicio.cpp
4a042c
@@ -990,6 +990,7 @@ namespace Exiv2 {
4a042c
     DataBuf FileIo::read(long rcount)
4a042c
     {
4a042c
         assert(p_->fp_ != 0);
4a042c
+        if ( (size_t) rcount > size() ) throw Error(57);
4a042c
         DataBuf buf(rcount);
4a042c
         long readCount = read(buf.pData_, buf.size_);
4a042c
         buf.size_ = readCount;
4a042c
diff --git a/src/error.cpp b/src/error.cpp
4a042c
index 80378c19..e90a9c0a 100644
4a042c
--- a/src/error.cpp
4a042c
+++ b/src/error.cpp
4a042c
@@ -106,6 +106,9 @@ namespace {
4a042c
         { 52, N_("%1 has invalid XMP value type `%2'") }, // %1=key, %2=value type
4a042c
         { 53, N_("Not a valid ICC Profile") },
4a042c
         { 54, N_("Not valid XMP") },
4a042c
+        { 55, N_("tiff directory length is too large") },
4a042c
+        { 56, N_("invalid type value detected in Image::printIFDStructure") },
4a042c
+        { 57, N_("invalid memory allocation request") },
4a042c
     };
4a042c
4a042c
 }
4a042c
diff --git a/src/image.cpp b/src/image.cpp
4a042c
index 0d828045..ec5b873e 100644
4a042c
--- a/src/image.cpp
4a042c
+++ b/src/image.cpp
4a042c
@@ -399,7 +399,13 @@ namespace Exiv2 {
4a042c
                                 ;
4a042c
4a042c
                 // if ( offset > io.size() ) offset = 0; // Denial of service?
4a042c
-                DataBuf  buf(size*count + pad+20);  // allocate a buffer
4a042c
+
4a042c
+                // #55 memory allocation crash test/data/POC8
4a042c
+                long long allocate = (long long) (size*count + pad+20);
4a042c
+                if ( allocate > (long long) io.size() ) {
4a042c
+                    throw Error(57);
4a042c
+                }
4a042c
+                DataBuf  buf(allocate);  // allocate a buffer
4a042c
                 std::memcpy(buf.pData_,dir.pData_+8,4);  // copy dir[8:11] into buffer (short strings)
4a042c
                 if ( count*size > 4 ) {            // read into buffer
4a042c
                     size_t   restore = io.tell();  // save