[DO NOT MERGE] Check bounds in offsetToPtr
am: 7b83d625aa
Change-Id: Icfcec14e7d4bfcd6c893f0fa319541223b9d7901
This commit is contained in:
@@ -128,12 +128,13 @@ public:
|
|||||||
inline const char* getFieldSlotValueString(FieldSlot* fieldSlot,
|
inline const char* getFieldSlotValueString(FieldSlot* fieldSlot,
|
||||||
size_t* outSizeIncludingNull) {
|
size_t* outSizeIncludingNull) {
|
||||||
*outSizeIncludingNull = fieldSlot->data.buffer.size;
|
*outSizeIncludingNull = fieldSlot->data.buffer.size;
|
||||||
return static_cast<char*>(offsetToPtr(fieldSlot->data.buffer.offset));
|
return static_cast<char*>(offsetToPtr(
|
||||||
|
fieldSlot->data.buffer.offset, fieldSlot->data.buffer.size));
|
||||||
}
|
}
|
||||||
|
|
||||||
inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) {
|
inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) {
|
||||||
*outSize = fieldSlot->data.buffer.size;
|
*outSize = fieldSlot->data.buffer.size;
|
||||||
return offsetToPtr(fieldSlot->data.buffer.offset);
|
return offsetToPtr(fieldSlot->data.buffer.offset, fieldSlot->data.buffer.size);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -166,7 +167,16 @@ private:
|
|||||||
bool mReadOnly;
|
bool mReadOnly;
|
||||||
Header* mHeader;
|
Header* mHeader;
|
||||||
|
|
||||||
inline void* offsetToPtr(uint32_t offset) {
|
inline void* offsetToPtr(uint32_t offset, uint32_t bufferSize = 0) {
|
||||||
|
if (offset >= mSize) {
|
||||||
|
ALOGE("Offset %zu out of bounds, max value %zu", offset, mSize);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (offset + bufferSize > mSize) {
|
||||||
|
ALOGE("End offset %zu out of bounds, max value %zu",
|
||||||
|
offset + bufferSize, mSize);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
return static_cast<uint8_t*>(mData) + offset;
|
return static_cast<uint8_t*>(mData) + offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -98,9 +98,14 @@ status_t CursorWindow::createFromParcel(Parcel* parcel, CursorWindow** outCursor
|
|||||||
if (dupAshmemFd < 0) {
|
if (dupAshmemFd < 0) {
|
||||||
result = -errno;
|
result = -errno;
|
||||||
} else {
|
} else {
|
||||||
|
// the size of the ashmem descriptor can be modified between ashmem_get_size_region
|
||||||
|
// call and mmap, so we'll check again immediately after memory is mapped
|
||||||
void* data = ::mmap(NULL, size, PROT_READ, MAP_SHARED, dupAshmemFd, 0);
|
void* data = ::mmap(NULL, size, PROT_READ, MAP_SHARED, dupAshmemFd, 0);
|
||||||
if (data == MAP_FAILED) {
|
if (data == MAP_FAILED) {
|
||||||
result = -errno;
|
result = -errno;
|
||||||
|
} else if (ashmem_get_size_region(dupAshmemFd) != size) {
|
||||||
|
::munmap(data, size);
|
||||||
|
result = BAD_VALUE;
|
||||||
} else {
|
} else {
|
||||||
CursorWindow* window = new CursorWindow(name, dupAshmemFd,
|
CursorWindow* window = new CursorWindow(name, dupAshmemFd,
|
||||||
data, size, true /*readOnly*/);
|
data, size, true /*readOnly*/);
|
||||||
|
|||||||
Reference in New Issue
Block a user