Skip to content

Commit

Permalink
[nrf fromtree] Revert "Bluetooth: att: use a dedicated metadata struc…
Browse files Browse the repository at this point in the history
…t for RSP PDUs"

This reverts commit 14858d96d87d33ebb593d61380f4607e14107287.

Signed-off-by: Jonathan Rico <[email protected]>
(cherry picked from commit 239a846255457fbcefa82532590b1041840f828b)
  • Loading branch information
jori-nordic authored and cvinayak committed Apr 19, 2024
1 parent d57a6ca commit 8d8503f
Showing 1 changed file with 18 additions and 54 deletions.
72 changes: 18 additions & 54 deletions subsys/bluetooth/host/att.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,6 @@ enum {
ATT_NUM_FLAGS,
};

struct bt_att_tx_meta_data {
struct bt_att_chan *att_chan;
uint16_t attr_count;
bt_gatt_complete_func_t func;
void *user_data;
enum bt_att_chan_opt chan_opt;
};

struct bt_att_tx_meta {
struct bt_att_tx_meta_data *data;
};

/* ATT channel specific data */
struct bt_att_chan {
/* Connection this channel is associated with */
Expand All @@ -103,7 +91,6 @@ struct bt_att_chan {
ATOMIC_DEFINE(flags, ATT_NUM_FLAGS);
struct bt_att_req *req;
struct k_fifo tx_queue;
struct bt_att_tx_meta_data rsp_meta;
struct k_work_delayable timeout_work;
sys_snode_t node;
};
Expand Down Expand Up @@ -172,6 +159,18 @@ static struct bt_att_req cancel;
*/
static k_tid_t att_handle_rsp_thread;

struct bt_att_tx_meta_data {
struct bt_att_chan *att_chan;
uint16_t attr_count;
bt_gatt_complete_func_t func;
void *user_data;
enum bt_att_chan_opt chan_opt;
};

struct bt_att_tx_meta {
struct bt_att_tx_meta_data *data;
};

#define bt_att_tx_meta_data(buf) (((struct bt_att_tx_meta *)net_buf_user_data(buf))->data)

static struct bt_att_tx_meta_data tx_meta_data[CONFIG_BT_CONN_TX_MAX];
Expand All @@ -193,22 +192,9 @@ static struct bt_att_tx_meta_data *tx_meta_data_alloc(k_timeout_t timeout)
static inline void tx_meta_data_free(struct bt_att_tx_meta_data *data)
{
__ASSERT_NO_MSG(data);
bool alloc_from_global = PART_OF_ARRAY(tx_meta_data, data);

if (data == &data->att_chan->rsp_meta) {
/* "Free-ness" is kept by remote: There can only ever be one
* transaction per-bearer.
*/
__ASSERT_NO_MSG(!alloc_from_global);
} else {
__ASSERT_NO_MSG(alloc_from_global);
}

(void)memset(data, 0, sizeof(*data));

if (alloc_from_global) {
k_fifo_put(&free_att_tx_meta_data, data);
}
k_fifo_put(&free_att_tx_meta_data, data);
}

static int bt_att_chan_send(struct bt_att_chan *chan, struct net_buf *buf);
Expand Down Expand Up @@ -659,7 +645,6 @@ static struct net_buf *bt_att_chan_create_pdu(struct bt_att_chan *chan, uint8_t
struct net_buf *buf;
struct bt_att_tx_meta_data *data;
k_timeout_t timeout;
bool is_rsp = false;

if (len + sizeof(op) > bt_att_mtu(chan)) {
LOG_WRN("ATT MTU exceeded, max %u, wanted %zu", bt_att_mtu(chan),
Expand All @@ -672,7 +657,6 @@ static struct net_buf *bt_att_chan_create_pdu(struct bt_att_chan *chan, uint8_t
case ATT_CONFIRMATION:
/* Use a timeout only when responding/confirming */
timeout = BT_ATT_TIMEOUT;
is_rsp = true;
break;
default:
timeout = K_FOREVER;
Expand All @@ -684,31 +668,11 @@ static struct net_buf *bt_att_chan_create_pdu(struct bt_att_chan *chan, uint8_t
return NULL;
}

if (is_rsp) {
/* There can only ever be one transaction at a time on a
* bearer/channel. Use a dedicated channel meta-data to ensure
* we can always queue an (error) RSP for each REQ. The ATT
* module can then reschedule the RSP if it is not able to send
* it immediately.
*/
if (chan->rsp_meta.att_chan) {
/* Returning a NULL here will trigger an ATT timeout.
* This is better than an assert as an assert would
* allow a peer to DoS us.
*/
LOG_ERR("already processing a transaction on chan %p", chan);

return NULL;
}
data = &chan->rsp_meta;
LOG_INF("alloc rsp meta");
} else {
data = tx_meta_data_alloc(timeout);
if (!data) {
LOG_WRN("Unable to allocate ATT TX meta");
net_buf_unref(buf);
return NULL;
}
data = tx_meta_data_alloc(timeout);
if (!data) {
LOG_WRN("Unable to allocate ATT TX meta");
net_buf_unref(buf);
return NULL;
}

if (IS_ENABLED(CONFIG_BT_EATT)) {
Expand Down

0 comments on commit 8d8503f

Please sign in to comment.