You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
0 commit comments