summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/OggExtractor.cpp
diff options
context:
space:
mode:
authorWonsik Kim <wonsik@google.com>2015-09-02 16:02:19 +0900
committerThe Android Automerger <android-build@google.com>2015-09-28 17:08:18 -0700
commitf605c786c375105c9ffc4cb34dd30a3c36c37682 (patch)
tree5a047213b1a7e042096bf0b1c0f32025d82a26ed /media/libstagefright/OggExtractor.cpp
parentd3e29ba2b9bc735e246d055b0259e1a32a5728d5 (diff)
downloadframeworks_av-f605c786c375105c9ffc4cb34dd30a3c36c37682.zip
frameworks_av-f605c786c375105c9ffc4cb34dd30a3c36c37682.tar.gz
frameworks_av-f605c786c375105c9ffc4cb34dd30a3c36c37682.tar.bz2
Ogg: avoid size_t overflow in base64 decoding
Bug: 23707088 Change-Id: I8d32841fee3213c721cdcc57788807ea64d19d74
Diffstat (limited to 'media/libstagefright/OggExtractor.cpp')
-rw-r--r--media/libstagefright/OggExtractor.cpp20
1 files changed, 15 insertions, 5 deletions
diff --git a/media/libstagefright/OggExtractor.cpp b/media/libstagefright/OggExtractor.cpp
index 6fba8e1..d5c929e 100644
--- a/media/libstagefright/OggExtractor.cpp
+++ b/media/libstagefright/OggExtractor.cpp
@@ -1220,11 +1220,14 @@ static uint8_t *DecodeBase64(const char *s, size_t size, size_t *outSize) {
}
}
- size_t outLen = 3 * size / 4 - padding;
-
- *outSize = outLen;
+ // We divide first to avoid overflow. It's OK to do this because we
+ // already made sure that size % 4 == 0.
+ size_t outLen = (size / 4) * 3 - padding;
void *buffer = malloc(outLen);
+ if (buffer == NULL) {
+ return NULL;
+ }
uint8_t *out = (uint8_t *)buffer;
size_t j = 0;
@@ -1243,10 +1246,10 @@ static uint8_t *DecodeBase64(const char *s, size_t size, size_t *outSize) {
} else if (c == '/') {
value = 63;
} else if (c != '=') {
- return NULL;
+ break;
} else {
if (i < n - padding) {
- return NULL;
+ break;
}
value = 0;
@@ -1264,6 +1267,13 @@ static uint8_t *DecodeBase64(const char *s, size_t size, size_t *outSize) {
}
}
+ // Check if we exited the loop early.
+ if (j < outLen) {
+ free(buffer);
+ return NULL;
+ }
+
+ *outSize = outLen;
return (uint8_t *)buffer;
}