summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiddharth Kapoor <ksiddharth@google.com>2022-03-29 20:49:08 +0800
committerSiddharth Kapoor <ksiddharth@google.com>2022-04-07 12:26:39 +0800
commite7e91d94d1fdd3320d7138c3e0ff56f989d4cf1c (patch)
tree88efd11bdbc399328c6027f0a1066c2e7575666c
parentd4a075ecad69f9d8abc6a7dc49a0640bd3ac9cd5 (diff)
downloadgchips-e7e91d94d1fdd3320d7138c3e0ff56f989d4cf1c.tar.gz
Validate alloc_size while mapping a buffer
Bug: 212804042 Signed-off-by: Siddharth Kapoor <ksiddharth@google.com> Change-Id: Ic05453615b61e1dfc60cdb33bc7ecce6e01a5d53
-rw-r--r--gralloc4/src/core/mali_gralloc_reference.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/gralloc4/src/core/mali_gralloc_reference.cpp b/gralloc4/src/core/mali_gralloc_reference.cpp
index 954c2b3..b73c08b 100644
--- a/gralloc4/src/core/mali_gralloc_reference.cpp
+++ b/gralloc4/src/core/mali_gralloc_reference.cpp
@@ -76,6 +76,16 @@ private:
return 0;
}
+ for (auto i = 0; i < MAX_BUFFER_FDS; i++) {
+ auto size = get_buffer_size(hnd->fds[i]);
+ auto size_padding = size - (off_t)hnd->alloc_sizes[i];
+ if ((size != -1) && ((size_padding < 0) || (size_padding > PAGE_SIZE))){
+ MALI_GRALLOC_LOGE("Found an imported buffer with out-of-bounds size %" PRIu64 "",
+ hnd->alloc_sizes[i]);
+ return -EINVAL;
+ }
+ }
+
int error = mali_gralloc_ion_map(hnd);
if (error != 0) {
return error;
@@ -115,7 +125,7 @@ private:
} else {
for (auto i = 0; i < MAX_BUFFER_FDS; i++) {
if (hnd->bases[i] != 0 || data.bases[i] != nullptr) {
- MALI_GRALLOC_LOGE("Validation failed: Expected nullptr for unmaped buffer");
+ MALI_GRALLOC_LOGE("Validation failed: Expected nullptr for unmapped buffer");
return -EINVAL;
}
}
@@ -124,6 +134,13 @@ private:
return 0;
}
+ off_t get_buffer_size(unsigned int fd) {
+ off_t current = lseek(fd, 0, SEEK_CUR);
+ off_t size = lseek(fd, 0, SEEK_END);
+ lseek(fd, current, SEEK_SET);
+ return size;
+ }
+
public:
static BufferManager &getInstance() {
static BufferManager instance;