Skip to content

Commit

Permalink
Merge pull request #435 from LedgerHQ/NFC-oob-write
Browse files Browse the repository at this point in the history
fix nfc oob write
  • Loading branch information
tjoly-ledger authored Oct 2, 2023
2 parents a7f3dd5 + 666b901 commit e8b56c4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/os_io_seproxyhal.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,13 @@ void io_seproxyhal_handle_capdu_event(void)
#ifdef HAVE_NFC
void io_seproxyhal_handle_nfc_recv_event(void)
{
size_t max = MIN(sizeof(G_io_apdu_buffer), sizeof(G_io_seproxyhal_spi_buffer) - 3);
size_t size = U2BE(G_io_seproxyhal_spi_buffer, 1);

G_io_app.apdu_media = IO_APDU_MEDIA_NFC;
G_io_app.apdu_state = APDU_NFC;
G_io_app.apdu_length = ((G_io_seproxyhal_spi_buffer[1] << 8) & 0xFF00)
| (G_io_seproxyhal_spi_buffer[2] & 0x00FF);
G_io_app.apdu_length = MIN(size, max);

memcpy(G_io_apdu_buffer, &G_io_seproxyhal_spi_buffer[3], G_io_app.apdu_length);
}
#endif
Expand Down

0 comments on commit e8b56c4

Please sign in to comment.