Skip to content

Commit 4a35690

Browse files
Jordan Yatesde-nordic
Jordan Yates
authored andcommitted
[nrf fromtree] Bluetooth: hci: correct ext adv cmd definition
Update the definition of the set extended advertising data command to be a variable array instead of hardcoded to the maximum length. This conforms to the definition from the Bluetooth specification and allows the corresponding code to be slightly cleaner. Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au> (cherry picked from commit 855f4b9) Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
1 parent 669a6cf commit 4a35690

File tree

2 files changed

+10
-13
lines changed
  • include/zephyr/bluetooth
  • subsys/bluetooth/host

2 files changed

+10
-13
lines changed

include/zephyr/bluetooth/hci.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ struct bt_hci_cp_le_set_ext_adv_data {
13261326
uint8_t op;
13271327
uint8_t frag_pref;
13281328
uint8_t len;
1329-
uint8_t data[251];
1329+
uint8_t data[0];
13301330
} __packed;
13311331

13321332
#define BT_HCI_OP_LE_SET_EXT_SCAN_RSP_DATA BT_OP(BT_OGF_LE, 0x0038)
@@ -1335,7 +1335,7 @@ struct bt_hci_cp_le_set_ext_scan_rsp_data {
13351335
uint8_t op;
13361336
uint8_t frag_pref;
13371337
uint8_t len;
1338-
uint8_t data[251];
1338+
uint8_t data[0];
13391339
} __packed;
13401340

13411341
#define BT_HCI_OP_LE_SET_EXT_ADV_ENABLE BT_OP(BT_OGF_LE, 0x0039)
@@ -1390,7 +1390,7 @@ struct bt_hci_cp_le_set_per_adv_data {
13901390
uint8_t handle;
13911391
uint8_t op;
13921392
uint8_t len;
1393-
uint8_t data[BT_HCI_LE_PER_ADV_FRAG_MAX_LEN];
1393+
uint8_t data[0];
13941394
} __packed;
13951395

13961396
#define BT_HCI_LE_SET_PER_ADV_ENABLE_ENABLE BIT(0)

subsys/bluetooth/host/adv.c

+7-10
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,7 @@ static int hci_set_adv_ext_complete(struct bt_le_ext_adv *adv, uint16_t hci_op,
556556
total_data_len = BT_GAP_ADV_MAX_ADV_DATA_LEN;
557557
}
558558

559-
cmd_size = total_data_len +
560-
offsetof(struct bt_hci_cp_le_set_ext_adv_data, data);
559+
cmd_size = sizeof(*set_data) + total_data_len;
561560

562561
buf = bt_hci_cmd_create(hci_op, cmd_size);
563562
if (!buf) {
@@ -596,9 +595,8 @@ static int hci_set_adv_ext_fragmented(struct bt_le_ext_adv *adv, uint16_t hci_op
596595
while (!ad_stream_is_empty(&stream)) {
597596
struct bt_hci_cp_le_set_ext_adv_data *set_data;
598597
struct net_buf *buf;
599-
size_t data_len = MIN(sizeof(set_data->data), stream.remaining_size);
600-
const size_t cmd_size = data_len +
601-
offsetof(struct bt_hci_cp_le_set_ext_adv_data, data);
598+
const size_t data_len = MIN(BT_HCI_LE_EXT_ADV_FRAG_MAX_LEN, stream.remaining_size);
599+
const size_t cmd_size = sizeof(*set_data) + data_len;
602600
int err;
603601

604602
buf = bt_hci_cmd_create(hci_op, cmd_size);
@@ -610,7 +608,7 @@ static int hci_set_adv_ext_fragmented(struct bt_le_ext_adv *adv, uint16_t hci_op
610608

611609
set_data->handle = adv->handle;
612610
set_data->frag_pref = BT_HCI_LE_EXT_ADV_FRAG_ENABLED;
613-
set_data->len = ad_stream_read(&stream, set_data->data, sizeof(set_data->data));
611+
set_data->len = ad_stream_read(&stream, set_data->data, data_len);
614612

615613
if (is_first_iteration && ad_stream_is_empty(&stream)) {
616614
set_data->op = BT_HCI_LE_EXT_ADV_OP_COMPLETE_DATA;
@@ -705,9 +703,8 @@ static int hci_set_per_adv_data(const struct bt_le_ext_adv *adv,
705703
while (!ad_stream_is_empty(&stream)) {
706704
struct bt_hci_cp_le_set_per_adv_data *set_data;
707705
struct net_buf *buf;
708-
size_t data_len = MIN(sizeof(set_data->data), stream.remaining_size);
709-
const size_t cmd_size = data_len +
710-
offsetof(struct bt_hci_cp_le_set_ext_adv_data, data);
706+
const size_t data_len = MIN(BT_HCI_LE_PER_ADV_FRAG_MAX_LEN, stream.remaining_size);
707+
const size_t cmd_size = sizeof(*set_data) + data_len;
711708
int err;
712709

713710
buf = bt_hci_cmd_create(BT_HCI_OP_LE_SET_PER_ADV_DATA, cmd_size);
@@ -719,7 +716,7 @@ static int hci_set_per_adv_data(const struct bt_le_ext_adv *adv,
719716
(void)memset(set_data, 0, cmd_size);
720717

721718
set_data->handle = adv->handle;
722-
set_data->len = ad_stream_read(&stream, set_data->data, sizeof(set_data->data));
719+
set_data->len = ad_stream_read(&stream, set_data->data, data_len);
723720

724721
if (is_first_iteration && ad_stream_is_empty(&stream)) {
725722
set_data->op = BT_HCI_LE_EXT_ADV_OP_COMPLETE_DATA;

0 commit comments

Comments
 (0)