Skip to content

Commit

Permalink
nimble/ll: Fix channel map update instant calculation
Browse files Browse the repository at this point in the history
The instant for channel map update was calculated at the time PDU was
enqueued in connsm. This caused new map to be always applied at instant
regardless if PDU was even dequeued for tx, e.g. in case there
encryption procedure pending. This could result in connection being
dropped.

Currently we calculate instant when PDU is dequeued to make sure this is
the next PDU to be sent and thus instant is valid.
  • Loading branch information
sjanc authored and KKopyscinski committed Feb 13, 2024
1 parent 572e5fb commit 4340db0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 21 deletions.
20 changes: 0 additions & 20 deletions nimble/host/include/host/ble_gatt.h
Original file line number Diff line number Diff line change
Expand Up @@ -1076,26 +1076,6 @@ int ble_gatts_reset(void);
*/
int ble_gatts_start(void);

/**
* Saves Client Supported Features for specified connection.
*
* @param conn_handle Connection handle identifying connection for
* which Client Supported Features should be saved
* @param om The mbuf chain to set value from.
*
* @return 0 on success;
* BLE_HS_ENOTCONN if no matching connection
* was found
* BLE_HS_EINVAL if supplied buffer is empty or
* if any Client Supported Feature was
* attempted to be disabled.
* A BLE host core return code on unexpected
* error.
*
*/
int ble_gatts_peer_cl_sup_feat_update(uint16_t conn_handle,
struct os_mbuf *om);

/**
* Gets Client Supported Features for specified connection.
*
Expand Down
5 changes: 4 additions & 1 deletion nimble/host/services/gatt/src/ble_svc_gatt.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "sysinit/sysinit.h"
#include "host/ble_hs.h"
#include "services/gatt/ble_svc_gatt.h"
#include "../src/ble_gatt_priv.h"

static uint16_t ble_svc_gatt_changed_val_handle;
static uint16_t ble_svc_gatt_start_handle;
Expand Down Expand Up @@ -112,7 +113,9 @@ ble_svc_gatt_cl_sup_feat_access(uint16_t conn_handle, uint16_t attr_handle,
return 0;
}
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
return ble_gatts_peer_cl_sup_feat_update(conn_handle, ctxt->om);
if (ble_gatts_peer_cl_sup_feat_update(conn_handle, ctxt->om)) {
return BLE_ATT_ERR_UNLIKELY;
}
}

return 0;
Expand Down
2 changes: 2 additions & 0 deletions nimble/host/src/ble_gatt_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ int ble_gatts_clt_cfg_access(uint16_t conn_handle, uint16_t attr_handle,
uint8_t op, uint16_t offset, struct os_mbuf **om,
void *arg);

int ble_gatts_peer_cl_sup_feat_update(uint16_t conn_handle,
struct os_mbuf *om);
/*** @misc. */
int ble_gatts_conn_can_alloc(void);
int ble_gatts_conn_init(struct ble_gatts_conn *gatts_conn);
Expand Down

0 comments on commit 4340db0

Please sign in to comment.