This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

pm_peer_data_bonding_load not finding the data (error code 5)

We have a device (in central mode) initiating a secure connection to a peripheral (slave) via the usage of `pm_conn_secure(conn_handle, false)`. This results in a `PM_EVT_CONN_SEC_SUCCEEDED` event being generated by the peer manager.

Checking the status of the bond in `p_evt->params.conn_sec_succeeded.data_stored` and `p_evt->params.conn_sec_succeeded.procedure` results in a true value and `PM_CONN_SEC_PROCEDURE_BONDING` respectively.

Furthermore when checking the status of the connection via `pm_conn_sec_status_get` the values returned are connected:true, encrypted:true, mitm_protection:false, bonded:true

At this point we try to retrieve the bonding information from the peer manager via `pm_peer_data_bonding_load` using `p_evt->peer_id` (which has a value 0, i.e. not invalid) however the `pm_peer_data_bonding_t` structure is filled with 0s and the return from the function is 5 (which I believe is NRF_ERROR_NOT_FOUND).

All of the calls are performed from within the callback from the peer_manager event handler associated with `PM_EVT_CONN_SEC_SUCCEEDED`.

What is the correct way to retrieve the stored bonding information?

I could not add tags for the following so mentioning the crucial versions here. We are using the following:

SDK 15.0.0

SoftDevice S132 V6.0.0

Parents
  • Hi Alex, 

    When you received PM_EVT_CONN_SEC_SUCCEEDED event, what the peer_id was ? 

    I'm not sure why you receive NOT_FOUND return, but could you try to do a read after some delay ? There could be a chance that the flash store command is not executed by the softdevice (even though data_stored = 1). You can try doing the bond read after the DISCONNECTED event, it should return the correct bond information. 

  • As mentioned in the issue, the peer_id has the value 0 which is not the invalid peer_id value.

    Why would the bonding information be available on the disconnect event, but not before?

    I will try the delay and reading after disconnect, but our application really needs this to work at the point of the connection being secured.

    Is there a fix for this in later SDKs?

Reply Children
No Data
Related