OSDN Git Service

Region: Detect malicious overflow in unflatten
authorPablo Ceballos <pceballos@google.com>
Wed, 13 Jul 2016 21:11:57 +0000 (14:11 -0700)
committerPablo Ceballos <pceballos@google.com>
Thu, 14 Jul 2016 14:05:19 +0000 (14:05 +0000)
Bug 29983260

Change-Id: Ib6e1cb8ae279010c5e9960aaa03513f55b7d873b

libs/ui/Region.cpp

index 3810da4..cfed7a9 100644 (file)
@@ -795,6 +795,11 @@ status_t Region::unflatten(void const* buffer, size_t size) {
         return NO_MEMORY;
     }
 
+    if (numRects > (UINT32_MAX / sizeof(Rect))) {
+        android_errorWriteWithInfoLog(0x534e4554, "29983260", -1, NULL, 0);
+        return NO_MEMORY;
+    }
+
     Region result;
     result.mStorage.clear();
     for (size_t r = 0; r < numRects; ++r) {