OSDN Git Service

Handle bogus multi value packet lengths
authorChris Manton <cmanton@google.com>
Wed, 8 Dec 2021 02:57:48 +0000 (18:57 -0800)
committerChris Manton <cmanton@google.com>
Thu, 9 Dec 2021 00:05:32 +0000 (16:05 -0800)
Bug: 206128341
Tag: #security
Test: gd/cert/run

Ignore-AOSP-First: Security fix
Change-Id: I7cbb601e87259c08796731de44f2b2eaba1e2894

stack/gatt/gatt_cl.cc

index ae22dd6..5a20050 100644 (file)
@@ -747,7 +747,7 @@ void gatt_process_notification(tGATT_TCB& tcb, uint16_t cid, uint8_t op_code,
     rem_len -= 4;
     // Make sure we don't read past the remaining data even if the length says
     // we can Also need to watch comparing the int16_t with the uint16_t
-    value.len = std::min(rem_len, (int16_t)value.len);
+    value.len = std::min((uint16_t)rem_len, value.len);
     STREAM_TO_ARRAY(value.value, p, value.len);
     // Accounting
     rem_len -= value.len;