Skip to content

Commit 3db0812

Browse files
olivier-le-sagenordicjm
authored andcommitted
bluetooth: services: Fix discarding valid steps in RAS RREQ parser
We can't use sizeof(struct ras_rd_cs_subevent_step) and sizeof(struct bt_le_cs_subevent_step) to validate the protocol bytes, because: - those structs aren't packed (seems they're both 8 bytes) - they contain a data pointer (unlike both RAS and HCI data) To validate the data format before pulling from the buffers we just need to check that: - the local HCI steps contain step mode, channel, and data length - the ranging data contains the step mode Signed-off-by: Olivier Lesage <olivier.lesage@nordicsemi.no>
1 parent 029bc80 commit 3db0812

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

subsys/bluetooth/services/ras/rreq/ras_rreq.c

+14-6
Original file line numberDiff line numberDiff line change
@@ -1003,9 +1003,13 @@ void bt_ras_rreq_rd_subevent_data_parse(struct net_buf_simple *peer_ranging_data
10031003
struct bt_le_cs_subevent_step local_step;
10041004
struct bt_le_cs_subevent_step peer_step;
10051005

1006-
if (local_step_data_buf->len < sizeof(struct bt_le_cs_subevent_step) ||
1007-
peer_ranging_data_buf->len < sizeof(struct ras_rd_cs_subevent_step)) {
1008-
LOG_WRN("Step data appears malformed.");
1006+
if (local_step_data_buf->len < 3) {
1007+
LOG_WRN("Local step data appears malformed.");
1008+
return;
1009+
}
1010+
1011+
if (peer_ranging_data_buf->len < 1) {
1012+
LOG_WRN("Peer step data appears malformed.");
10091013
return;
10101014
}
10111015

@@ -1054,9 +1058,13 @@ void bt_ras_rreq_rd_subevent_data_parse(struct net_buf_simple *peer_ranging_data
10541058
bt_hci_le_cs_step_data_mode_0_initiator);
10551059
}
10561060

1057-
if (local_step.data_len > local_step_data_buf->len ||
1058-
peer_step.data_len > peer_ranging_data_buf->len) {
1059-
LOG_WRN("Step data appears malformed.");
1061+
if (local_step.data_len > local_step_data_buf->len) {
1062+
LOG_WRN("Local step data appears malformed.");
1063+
return;
1064+
}
1065+
1066+
if (peer_step.data_len > peer_ranging_data_buf->len) {
1067+
LOG_WRN("Peer step data appears malformed.");
10601068
return;
10611069
}
10621070

0 commit comments

Comments
 (0)