diff options
author | xiphon <xiphon@protonmail.com> | 2019-10-25 13:13:23 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2019-10-25 13:13:23 +0000 |
commit | 296ec7c9bba3ff83af473085dd654b88f5f3e6a6 (patch) | |
tree | 61988215f60107ca3eecc2491c72aec1d9bae9a8 | |
parent | Fix debug feature (diff) | |
download | monero-296ec7c9bba3ff83af473085dd654b88f5f3e6a6.tar.xz |
device: bounds checking in Ledger send_secret/receive_secret
-rw-r--r-- | src/device/device_ledger.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/device/device_ledger.cpp b/src/device/device_ledger.cpp index b89fb0827..49f54e5a5 100644 --- a/src/device/device_ledger.cpp +++ b/src/device/device_ledger.cpp @@ -357,9 +357,11 @@ namespace hw { void device_ledger::send_secret(const unsigned char sec[32], int &offset) { MDEBUG("send_secret: " << this->tx_in_progress); + ASSERT_X(offset + 32 <= BUFFER_SEND_SIZE, "send_secret: out of bounds write (secret)"); memmove(this->buffer_send+offset, sec, 32); offset +=32; if (this->tx_in_progress) { + ASSERT_X(offset + 32 <= BUFFER_SEND_SIZE, "send_secret: out of bounds write (mac)"); this->hmac_map.find_mac((uint8_t*)sec, this->buffer_send+offset); offset += 32; } @@ -367,9 +369,11 @@ namespace hw { void device_ledger::receive_secret(unsigned char sec[32], int &offset) { MDEBUG("receive_secret: " << this->tx_in_progress); + ASSERT_X(offset + 32 <= BUFFER_RECV_SIZE, "receive_secret: out of bounds read (secret)"); memmove(sec, this->buffer_recv+offset, 32); offset += 32; if (this->tx_in_progress) { + ASSERT_X(offset + 32 <= BUFFER_RECV_SIZE, "receive_secret: out of bounds read (mac)"); this->hmac_map.add_mac((uint8_t*)sec, this->buffer_recv+offset); offset += 32; } |