diff options
author | Michael Lentine <mlentine@google.com> | 2014-10-31 15:25:03 -0700 |
---|---|---|
committer | Michael Lentine <mlentine@google.com> | 2014-11-21 17:18:59 -0800 |
commit | e6f7a44e835d320593fa33052f35ea52948ff0b2 (patch) | |
tree | 7ff230f9e51105309d1d1d9804ef64b9c87e436b /libs/ui/GraphicBuffer.cpp | |
parent | c0af9cafba1217e2585777964730c70e40957dcd (diff) | |
download | frameworks_native-e6f7a44e835d320593fa33052f35ea52948ff0b2.zip frameworks_native-e6f7a44e835d320593fa33052f35ea52948ff0b2.tar.gz frameworks_native-e6f7a44e835d320593fa33052f35ea52948ff0b2.tar.bz2 |
Fix for corruption when numFds or numInts is too large.
Bug: 18076253
Change-Id: I4c5935440013fc755e1d123049290383f4659fb6
Diffstat (limited to 'libs/ui/GraphicBuffer.cpp')
-rw-r--r-- | libs/ui/GraphicBuffer.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/libs/ui/GraphicBuffer.cpp b/libs/ui/GraphicBuffer.cpp index 580788d..4dff5f1 100644 --- a/libs/ui/GraphicBuffer.cpp +++ b/libs/ui/GraphicBuffer.cpp @@ -250,10 +250,19 @@ status_t GraphicBuffer::unflatten(void const* buffer, size_t size, const size_t numFds = buf[6]; const size_t numInts = buf[7]; + const size_t maxNumber = UINT_MAX / sizeof(int); + if (numFds >= maxNumber || numInts >= (maxNumber - 10)) { + width = height = stride = format = usage = 0; + handle = NULL; + ALOGE("unflatten: numFds or numInts is too large: %d, %d", + numFds, numInts); + return BAD_VALUE; + } + const size_t sizeNeeded = (8 + numInts) * sizeof(int); if (size < sizeNeeded) return NO_MEMORY; - size_t fdCountNeeded = 0; + size_t fdCountNeeded = numFds; if (count < fdCountNeeded) return NO_MEMORY; if (handle) { @@ -268,6 +277,12 @@ status_t GraphicBuffer::unflatten(void const* buffer, size_t size, format = buf[4]; usage = buf[5]; native_handle* h = native_handle_create(numFds, numInts); + if (!h) { + width = height = stride = format = usage = 0; + handle = NULL; + ALOGE("unflatten: native_handle_create failed"); + return NO_MEMORY; + } memcpy(h->data, fds, numFds*sizeof(int)); memcpy(h->data + numFds, &buf[8], numInts*sizeof(int)); handle = h; |