mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-22 13:10:55 +01:00
Fix missing data when reading large values.
The wrong length value was being used to set the values read from peer attributes. This has been corrected to use the proper value size.
This commit is contained in:
parent
7a82067177
commit
f2ade345f4
2 changed files with 8 additions and 6 deletions
|
@ -547,11 +547,12 @@ int NimBLERemoteCharacteristic::onReadCB(uint16_t conn_handle,
|
||||||
|
|
||||||
if(rc == 0) {
|
if(rc == 0) {
|
||||||
if(attr) {
|
if(attr) {
|
||||||
if(((*strBuf).length() + attr->om->om_len) > BLE_ATT_ATTR_MAX_LEN) {
|
uint32_t data_len = OS_MBUF_PKTLEN(attr->om);
|
||||||
|
if(((*strBuf).length() + data_len) > BLE_ATT_ATTR_MAX_LEN) {
|
||||||
rc = BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
rc = BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
||||||
} else {
|
} else {
|
||||||
NIMBLE_LOGD(LOG_TAG, "Got %d bytes", attr->om->om_len);
|
NIMBLE_LOGD(LOG_TAG, "Got %d bytes", data_len);
|
||||||
(*strBuf) += std::string((char*) attr->om->om_data, attr->om->om_len);
|
(*strBuf) += std::string((char*) attr->om->om_data, data_len);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -202,11 +202,12 @@ int NimBLERemoteDescriptor::onReadCB(uint16_t conn_handle,
|
||||||
|
|
||||||
if(rc == 0) {
|
if(rc == 0) {
|
||||||
if(attr) {
|
if(attr) {
|
||||||
if(((*strBuf).length() + attr->om->om_len) > BLE_ATT_ATTR_MAX_LEN) {
|
uint32_t data_len = OS_MBUF_PKTLEN(attr->om);
|
||||||
|
if(((*strBuf).length() + data_len) > BLE_ATT_ATTR_MAX_LEN) {
|
||||||
rc = BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
rc = BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
||||||
} else {
|
} else {
|
||||||
NIMBLE_LOGD(LOG_TAG, "Got %d bytes", attr->om->om_len);
|
NIMBLE_LOGD(LOG_TAG, "Got %d bytes", data_len);
|
||||||
(*strBuf) += std::string((char*) attr->om->om_data, attr->om->om_len);
|
(*strBuf) += std::string((char*) attr->om->om_data, data_len);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue