| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884 |
- /* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- *
- */
- #include "security_dispatcher.h"
- #include <string.h>
- #include "ble.h"
- #include "ble_gap.h"
- #include "ble_conn_state.h"
- #include "peer_manager_types.h"
- #include "peer_database.h"
- #include "id_manager.h"
- #include "sdk_common.h"
- #define MAX_REGISTRANTS 3 /**< The number of user that can register with the module. */
- typedef struct
- {
- smd_evt_handler_t evt_handlers[MAX_REGISTRANTS];
- uint8_t n_registrants;
- ble_conn_state_user_flag_id_t flag_id_sec_proc;
- ble_conn_state_user_flag_id_t flag_id_sec_proc_pairing;
- ble_conn_state_user_flag_id_t flag_id_sec_proc_new_peer;
- ble_gap_lesc_p256_pk_t peer_pk;
- } smd_t;
- static smd_t m_smd =
- {
- .flag_id_sec_proc = BLE_CONN_STATE_USER_FLAG_INVALID,
- .flag_id_sec_proc_pairing = BLE_CONN_STATE_USER_FLAG_INVALID,
- .flag_id_sec_proc_new_peer = BLE_CONN_STATE_USER_FLAG_INVALID,
- };
- #define MODULE_INITIALIZED (m_smd.n_registrants > 0) /**< Expression which is true when the module is initialized. */
- #include "sdk_macros.h"
- static void evt_send(smd_evt_t * p_event)
- {
- for (int i = 0; i < m_smd.n_registrants; i++)
- {
- m_smd.evt_handlers[i](p_event);
- }
- }
- static void sec_start_send(uint16_t conn_handle, pm_conn_sec_procedure_t procedure)
- {
- smd_evt_t evt =
- {
- .evt_id = SMD_EVT_SEC_PROCEDURE_START,
- .conn_handle = conn_handle,
- .params = {.sec_procedure_start = {.procedure = procedure}}
- };
- evt_send(&evt);
- }
- /**@brief Event handler for events from the peer_database module.
- *
- * @param[in] p_event The event that has happened.
- */
- static void pdb_evt_handler(pdb_evt_t const * p_event)
- {
- if ((p_event->evt_id == PDB_EVT_WRITE_BUF_STORED) && (p_event->data_id == PM_PEER_DATA_ID_BONDING))
- {
- smd_evt_t evt =
- {
- .evt_id = SMD_EVT_BONDING_INFO_STORED,
- .conn_handle = im_conn_handle_get(p_event->peer_id),
- .params = {.bonding_info_stored =
- {
- .peer_id = p_event->peer_id,
- }}
- };
- evt_send(&evt);
- }
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_SEC_PARAMS_REQUEST event from the SoftDevice.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void sec_params_request_process(ble_gap_evt_t * p_gap_evt)
- {
- smd_evt_t evt =
- {
- .evt_id = SMD_EVT_PARAMS_REQ,
- .conn_handle = p_gap_evt->conn_handle
- };
- evt_send(&evt);
- return;
- }
- /**@brief Function for administrative actions to be taken when a security process has been attempted.
- *
- * @param[in] conn_handle The connection the security process was attempted on.
- * @param[in] peer_id The peer ID given to the connected peer.
- * @param[in] success Whether the process was started successfully.
- * @param[in] pairing Whether the process was a pairing process.
- * @param[in] new_peer_created Whether a new peer was created during the process attempt.
- */
- static void sec_proc_start(uint16_t conn_handle,
- pm_peer_id_t peer_id,
- bool success,
- bool pairing,
- bool new_peer_created)
- {
- ble_conn_state_user_flag_set(conn_handle, m_smd.flag_id_sec_proc, success);
- if (success)
- {
- ble_conn_state_user_flag_set(conn_handle, m_smd.flag_id_sec_proc_pairing, pairing);
- ble_conn_state_user_flag_set(conn_handle, m_smd.flag_id_sec_proc_new_peer, new_peer_created);
- if(new_peer_created)
- {
- im_new_peer_id(conn_handle, peer_id);
- }
- }
- else
- {
- if(new_peer_created)
- {
- ret_code_t err_code = im_peer_free(peer_id); // Attempt to free allocated peer.
- UNUSED_VARIABLE(err_code);
- }
- }
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_SEC_INFO_REQUEST event from the SoftDevice.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void sec_info_request_process(ble_gap_evt_t * p_gap_evt)
- {
- ret_code_t err_code;
- ble_gap_enc_info_t const * p_enc_info = NULL;
- pm_peer_data_flash_t peer_data;
- pm_peer_id_t peer_id = im_peer_id_get_by_master_id(&p_gap_evt->params.sec_info_request.master_id);
- smd_evt_t evt;
- evt.conn_handle = p_gap_evt->conn_handle;
- if (peer_id == PM_PEER_ID_INVALID)
- {
- peer_id = im_peer_id_get_by_conn_handle(p_gap_evt->conn_handle);
- }
- if (peer_id != PM_PEER_ID_INVALID)
- {
- err_code = pdb_read_buf_get(peer_id, PM_PEER_DATA_ID_BONDING, &peer_data, NULL);
- if (err_code == NRF_SUCCESS)
- {
- // There is stored bonding data for this peer.
- ble_gap_enc_key_t const * p_existing_key = &peer_data.p_bonding_data->own_ltk;
- if ( p_existing_key->enc_info.lesc
- || (im_master_ids_compare(&p_existing_key->master_id,
- &p_gap_evt->params.sec_info_request.master_id)))
- {
- p_enc_info = &p_existing_key->enc_info;
- }
- }
- }
- // All return values from the following can be safely ignored.
- err_code = sd_ble_gap_sec_info_reply(p_gap_evt->conn_handle, p_enc_info, NULL, NULL);
- if (err_code != NRF_SUCCESS)
- {
- evt.evt_id = SMD_EVT_ERROR_UNEXPECTED;
- evt.params.error_unexpected.error = err_code;
- evt_send(&evt);
- }
- else if (p_enc_info == NULL)
- {
- evt.evt_id = SMD_EVT_LINK_ENCRYPTION_FAILED;
- evt.params.link_encryption_failed.error = PM_CONN_SEC_ERROR_PIN_OR_KEY_MISSING;
- evt.params.link_encryption_failed.error_src = BLE_GAP_SEC_STATUS_SOURCE_LOCAL;
- evt_send(&evt);
- sec_proc_start(p_gap_evt->conn_handle, peer_id, false, false, false);
- }
- else
- {
- sec_start_send(p_gap_evt->conn_handle, PM_LINK_SECURED_PROCEDURE_ENCRYPTION);
- sec_proc_start(p_gap_evt->conn_handle, peer_id, err_code == NRF_SUCCESS, false, false);
- }
- return;
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_SEC_REQUEST event from the SoftDevice.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void sec_request_process(ble_gap_evt_t * p_gap_evt)
- {
- smd_evt_t evt =
- {
- .evt_id = SMD_EVT_SLAVE_SECURITY_REQ,
- .conn_handle = p_gap_evt->conn_handle,
- .params =
- {
- .slave_security_req =
- {
- .bond = p_gap_evt->params.sec_request.bond,
- .mitm = p_gap_evt->params.sec_request.mitm,
- }
- }
- };
- evt_send(&evt);
- return;
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_AUTH_STATUS event from the SoftDevice, when
- * the auth_status is success.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void auth_status_success_process(ble_gap_evt_t * p_gap_evt)
- {
- ret_code_t err_code = NRF_SUCCESS;
- uint8_t role = ble_conn_state_role(p_gap_evt->conn_handle);
- pm_peer_id_t peer_id = im_peer_id_get_by_conn_handle(p_gap_evt->conn_handle);
- ble_gap_sec_kdist_t kdist_own = p_gap_evt->params.auth_status.kdist_own;
- ble_gap_sec_kdist_t kdist_peer = p_gap_evt->params.auth_status.kdist_peer;
- ble_conn_state_user_flag_set(p_gap_evt->conn_handle, m_smd.flag_id_sec_proc, false);
- if (role == BLE_GAP_ROLE_INVALID)
- {
- /* Unlikely, but maybe possible? */
- return;
- }
- if (p_gap_evt->params.auth_status.bonded)
- {
- err_code = pdb_write_buf_store(peer_id, PM_PEER_DATA_ID_BONDING);
- if (err_code != NRF_SUCCESS)
- {
- /* Unexpected */
- smd_evt_t error_evt;
- error_evt.evt_id = SMD_EVT_ERROR_BONDING_INFO;
- error_evt.conn_handle = p_gap_evt->conn_handle;
- error_evt.params.error_bonding_info.peer_id = peer_id;
- error_evt.params.error_bonding_info.error = err_code;
- evt_send(&error_evt);
- }
- }
- else if (ble_conn_state_user_flag_get(p_gap_evt->conn_handle, m_smd.flag_id_sec_proc_new_peer))
- {
- ret_code_t err_code_free = im_peer_free(peer_id);
- UNUSED_VARIABLE(err_code_free); // Errors can be safely ignored.
- }
- smd_evt_t pairing_success_evt;
- pairing_success_evt.evt_id = SMD_EVT_PAIRING_SUCCESS;
- pairing_success_evt.conn_handle = p_gap_evt->conn_handle;
- pairing_success_evt.params.pairing_success.bonded = p_gap_evt->params.auth_status.bonded;
- pairing_success_evt.params.pairing_success.mitm = p_gap_evt->params.auth_status.sm1_levels.lv3;
- pairing_success_evt.params.pairing_success.kdist_own = kdist_own;
- pairing_success_evt.params.pairing_success.kdist_peer = kdist_peer;
- evt_send(&pairing_success_evt);
- return;
- }
- /**@brief Function for cleaning up after a failed pairing procedure.
- *
- * @param[in] conn_handle The handle of the connection the pairing procedure happens on.
- * @param[in] peer_id The peer id used in the pairing procedure.
- * @param[in] error The error the procedure failed with.
- * @param[in] error_src The party that raised the error. See @ref BLE_GAP_SEC_STATUS_SOURCES.
- */
- static void pairing_failure(uint16_t conn_handle,
- pm_peer_id_t peer_id,
- pm_sec_error_code_t error,
- uint8_t error_src)
- {
- ret_code_t err_code = NRF_SUCCESS;
- smd_evt_t evt =
- {
- .evt_id = SMD_EVT_PAIRING_FAIL,
- .conn_handle = conn_handle,
- .params =
- {
- .pairing_failed =
- {
- .error = error,
- .error_src = error_src,
- }
- }
- };
- if(ble_conn_state_user_flag_get(conn_handle, m_smd.flag_id_sec_proc_new_peer))
- {
- // The peer_id was created during the procedure, and should be freed, because no data is
- // stored under it.
- err_code = im_peer_free(peer_id); // Attempt to free allocated peer.
- UNUSED_VARIABLE(err_code);
- }
- else
- {
- err_code = pdb_write_buf_release(peer_id, PM_PEER_DATA_ID_BONDING);
- if ((err_code != NRF_SUCCESS) && (err_code == NRF_ERROR_NOT_FOUND /* No buffer was allocated */))
- {
- smd_evt_t error_evt;
- error_evt.evt_id = SMD_EVT_ERROR_UNEXPECTED;
- error_evt.conn_handle = conn_handle;
- error_evt.params.error_unexpected.error = err_code;
- evt_send(&error_evt);
- }
- }
- ble_conn_state_user_flag_set(conn_handle, m_smd.flag_id_sec_proc, false);
- evt_send(&evt);
- return;
- }
- /**@brief Function for cleaning up after a failed encryption procedure.
- *
- * @param[in] conn_handle The handle of the connection the encryption procedure happens on.
- * @param[in] error The error the procedure failed with.
- * @param[in] error_src The party that raised the error. See @ref BLE_GAP_SEC_STATUS_SOURCES.
- */
- static void encryption_failure(uint16_t conn_handle,
- pm_sec_error_code_t error,
- uint8_t error_src)
- {
- smd_evt_t evt =
- {
- .evt_id = SMD_EVT_LINK_ENCRYPTION_FAILED,
- .conn_handle = conn_handle,
- .params =
- {
- .link_encryption_failed =
- {
- .error = error,
- .error_src = error_src,
- }
- }
- };
- ble_conn_state_user_flag_set(conn_handle, m_smd.flag_id_sec_proc, false);
- evt_send(&evt);
- return;
- }
- /**@brief Function for possibly cleaning up after a failed pairing or encryption procedure.
- *
- * @param[in] conn_handle The handle of the connection the pairing procedure happens on.
- * @param[in] peer_id The peer id used in the pairing procedure.
- * @param[in] error The error the procedure failed with.
- * @param[in] error_src The party that raised the error. See @ref BLE_GAP_SEC_STATUS_SOURCES.
- */
- static void link_secure_failure(uint16_t conn_handle,
- pm_sec_error_code_t error,
- uint8_t error_src)
- {
- if (ble_conn_state_user_flag_get(conn_handle, m_smd.flag_id_sec_proc))
- {
- pm_peer_id_t peer_id = im_peer_id_get_by_conn_handle(conn_handle);
- if (peer_id != PM_PEER_ID_INVALID)
- {
- if (ble_conn_state_user_flag_get(conn_handle, m_smd.flag_id_sec_proc_pairing))
- {
- pairing_failure(conn_handle, peer_id, error, error_src);
- }
- else
- {
- encryption_failure(conn_handle, error, error_src);
- }
- }
- }
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_DISCONNECT event from the SoftDevice.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void disconnect_process(ble_gap_evt_t * p_gap_evt)
- {
- pm_sec_error_code_t error = (p_gap_evt->params.disconnected.reason
- == BLE_HCI_CONN_TERMINATED_DUE_TO_MIC_FAILURE)
- ? PM_CONN_SEC_ERROR_MIC_FAILURE : PM_CONN_SEC_ERROR_DISCONNECT;
- link_secure_failure(p_gap_evt->conn_handle, error, BLE_GAP_SEC_STATUS_SOURCE_LOCAL);
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_AUTH_STATUS event from the SoftDevice, when
- * the auth_status is failure.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void auth_status_failure_process(ble_gap_evt_t * p_gap_evt)
- {
- link_secure_failure(p_gap_evt->conn_handle,
- p_gap_evt->params.auth_status.auth_status,
- p_gap_evt->params.auth_status.error_src);
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_AUTH_STATUS event from the SoftDevice.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void auth_status_process(ble_gap_evt_t * p_gap_evt)
- {
- switch (p_gap_evt->params.auth_status.auth_status)
- {
- case BLE_GAP_SEC_STATUS_SUCCESS:
- auth_status_success_process(p_gap_evt);
- break;
- default:
- auth_status_failure_process(p_gap_evt);
- break;
- }
- }
- /**@brief Function for processing the @ref BLE_GAP_EVT_CONN_SEC_UPDATE event from the SoftDevice.
- *
- * @param[in] p_gap_evt The event from the SoftDevice.
- */
- static void conn_sec_update_process(ble_gap_evt_t * p_gap_evt)
- {
- if (ble_conn_state_encrypted(p_gap_evt->conn_handle))
- {
- if (!ble_conn_state_user_flag_get(p_gap_evt->conn_handle, m_smd.flag_id_sec_proc_pairing))
- {
- ble_conn_state_user_flag_set(p_gap_evt->conn_handle, m_smd.flag_id_sec_proc, false);
- }
- smd_evt_t evt;
- evt.conn_handle = p_gap_evt->conn_handle;
- evt.evt_id = SMD_EVT_LINK_ENCRYPTION_UPDATE;
- evt.params.link_encryption_update.mitm_protected
- = ble_conn_state_mitm_protected(p_gap_evt->conn_handle);
- evt_send(&evt);
- }
- else
- {
- encryption_failure(p_gap_evt->conn_handle,
- PM_CONN_SEC_ERROR_PIN_OR_KEY_MISSING,
- BLE_GAP_SEC_STATUS_SOURCE_REMOTE);
- }
- }
- /**@brief Funtion for initializing a BLE Connection State user flag.
- *
- * @param[out] flag_id The flag to initialize.
- */
- static void flag_id_init(ble_conn_state_user_flag_id_t * p_flag_id)
- {
- if (*p_flag_id == BLE_CONN_STATE_USER_FLAG_INVALID)
- {
- *p_flag_id = ble_conn_state_user_flag_acquire();
- }
- }
- ret_code_t smd_register(smd_evt_handler_t evt_handler)
- {
- ret_code_t err_code = NRF_SUCCESS;
- if (evt_handler == NULL)
- {
- err_code = NRF_ERROR_NULL;
- }
- else
- {
- if (!MODULE_INITIALIZED)
- {
- flag_id_init(&m_smd.flag_id_sec_proc);
- flag_id_init(&m_smd.flag_id_sec_proc_pairing);
- flag_id_init(&m_smd.flag_id_sec_proc_new_peer);
- if (m_smd.flag_id_sec_proc_new_peer == BLE_CONN_STATE_USER_FLAG_INVALID)
- {
- err_code = NRF_ERROR_INTERNAL;
- }
- else
- {
- err_code = pdb_register(pdb_evt_handler);
- }
- }
- if ((err_code == NRF_SUCCESS))
- {
- if ((m_smd.n_registrants < MAX_REGISTRANTS))
- {
- m_smd.evt_handlers[m_smd.n_registrants++] = evt_handler;
- }
- else
- {
- err_code = NRF_ERROR_NO_MEM;
- }
- }
- }
- return err_code;
- }
- ret_code_t smd_params_reply(uint16_t conn_handle,
- ble_gap_sec_params_t * p_sec_params,
- ble_gap_lesc_p256_pk_t * p_public_key)
- {
- VERIFY_MODULE_INITIALIZED();
- uint8_t role = ble_conn_state_role(conn_handle);
- pm_peer_id_t peer_id = PM_PEER_ID_INVALID;
- ret_code_t err_code = NRF_SUCCESS;
- uint8_t sec_status = BLE_GAP_SEC_STATUS_SUCCESS;
- ble_gap_sec_keyset_t sec_keyset;
- bool new_peer_created = false;
- memset(&sec_keyset, 0, sizeof(ble_gap_sec_keyset_t));
- if (role == BLE_GAP_ROLE_INVALID)
- {
- return BLE_ERROR_INVALID_CONN_HANDLE;
- }
- if (p_sec_params == NULL)
- {
- // NULL params means reject pairing.
- sec_status = BLE_GAP_SEC_STATUS_PAIRING_NOT_SUPP;
- }
- else if (p_sec_params->bond)
- {
- // Bonding is to be performed, prepare to receive bonding data.
- pm_peer_data_t peer_data;
- peer_id = im_peer_id_get_by_conn_handle(conn_handle);
- if (peer_id == PM_PEER_ID_INVALID)
- {
- // Peer is unknown to us, allocate a new peer ID for it.
- peer_id = pdb_peer_allocate();
- if (peer_id != PM_PEER_ID_INVALID)
- {
- new_peer_created = true;
- }
- else
- {
- err_code = NRF_ERROR_INTERNAL;
- }
- }
- if (err_code == NRF_SUCCESS)
- {
- // Peer ID is ready, acquire a memory buffer to receive bonding data into.
- err_code = pdb_write_buf_get(peer_id, PM_PEER_DATA_ID_BONDING, 1, &peer_data);
- if (err_code == NRF_SUCCESS)
- {
- memset(peer_data.p_bonding_data, 0, sizeof(pm_peer_data_bonding_t));
- peer_data.p_bonding_data->own_role = role;
- sec_keyset.keys_own.p_enc_key = &peer_data.p_bonding_data->own_ltk;
- sec_keyset.keys_own.p_pk = p_public_key;
- sec_keyset.keys_peer.p_enc_key = &peer_data.p_bonding_data->peer_ltk;
- sec_keyset.keys_peer.p_id_key = &peer_data.p_bonding_data->peer_id;
- sec_keyset.keys_peer.p_pk = &m_smd.peer_pk;
- ret_code_t err_code_addr = im_ble_addr_get(conn_handle, &peer_data.p_bonding_data->peer_id.id_addr_info); // Retrieve the address the peer used during connection establishment. This address will be overwritten if ID is shared. Should not fail.
- UNUSED_VARIABLE(err_code_addr);
- // Buffer is OK, reserve room in flash for the data.
- err_code = pdb_write_buf_store_prepare(peer_id, PM_PEER_DATA_ID_BONDING);
- }
- }
- }
- else
- {
- // Pairing only, no action needed.
- }
- if (err_code == NRF_SUCCESS)
- {
- // Everything OK, reply to SoftDevice. If an error happened, the user is given an
- // opportunity to change the parameters and retry the call.
- if (role == BLE_GAP_ROLE_CENTRAL)
- {
- err_code = sd_ble_gap_sec_params_reply(conn_handle, sec_status, NULL, &sec_keyset);
- }
- else
- {
- err_code = sd_ble_gap_sec_params_reply(conn_handle, sec_status, p_sec_params, &sec_keyset);
- if ((p_sec_params != NULL) && (err_code == NRF_SUCCESS))
- {
- pm_conn_sec_procedure_t procedure = p_sec_params->bond
- ? PM_LINK_SECURED_PROCEDURE_BONDING
- : PM_LINK_SECURED_PROCEDURE_PAIRING;
- sec_start_send(conn_handle, procedure);
- }
- }
- }
- sec_proc_start(conn_handle,
- peer_id,
- (err_code == NRF_SUCCESS) && (sec_status != BLE_GAP_SEC_STATUS_PAIRING_NOT_SUPP),
- true,
- new_peer_created);
- return err_code;
- }
- static ret_code_t link_secure_central_existing_peer(uint16_t conn_handle,
- ble_gap_sec_params_t * p_sec_params,
- bool force_repairing,
- pm_peer_id_t peer_id,
- pm_conn_sec_procedure_t * procedure)
- {
- pm_peer_data_flash_t peer_data;
- pm_peer_data_t dummy_peer_data;
- ret_code_t err_code;
- ble_gap_enc_key_t const * p_existing_key = NULL;
- bool lesc = false;
- err_code = pdb_read_buf_get(peer_id, PM_PEER_DATA_ID_BONDING, &peer_data, NULL);
- if (err_code == NRF_SUCCESS)
- {
- // Use peer's key since they are peripheral.
- p_existing_key = &(peer_data.p_bonding_data->peer_ltk);
- lesc = peer_data.p_bonding_data->own_ltk.enc_info.lesc;
- if (lesc) // LESC was used during bonding.
- {
- // For LESC, always use own key.
- p_existing_key = &(peer_data.p_bonding_data->own_ltk);
- }
- }
- if (!force_repairing
- && (err_code == NRF_SUCCESS)
- && (p_existing_key != NULL)
- && (lesc || im_master_id_is_valid(&(p_existing_key->master_id)))) /* There is a valid LTK stored. */
- //&& (p_existing_key->enc_info.auth >= p_sec_params->mitm) /* The requested MITM security is at or below the existing level. */
- //&& (!p_sec_params->mitm || (lesc >= p_sec_params->lesc))) /* The requested LESC security is at or below the existing level. We only care about LESC if MITM is required. */
- {
- err_code = sd_ble_gap_encrypt(conn_handle, &(p_existing_key->master_id), &(p_existing_key->enc_info));
- *procedure = PM_LINK_SECURED_PROCEDURE_ENCRYPTION;
- }
- else if ((err_code == NRF_SUCCESS) || (err_code == NRF_ERROR_NOT_FOUND))
- {
- /* Re-pairing is needed, because there is no LTK available or the existing key is not
- secure enough */
- err_code = NRF_SUCCESS;
- if (p_sec_params->bond)
- {
- err_code = pdb_write_buf_get(peer_id, PM_PEER_DATA_ID_BONDING, 1, &dummy_peer_data);
- if (err_code == NRF_SUCCESS)
- {
- err_code = pdb_write_buf_store_prepare(peer_id, PM_PEER_DATA_ID_BONDING);
- }
- }
- if (err_code == NRF_SUCCESS)
- {
- err_code = sd_ble_gap_authenticate(conn_handle, p_sec_params);
- }
- if (err_code != NRF_SUCCESS)
- {
- ret_code_t err_code_release = pdb_write_buf_release(peer_id, PM_PEER_DATA_ID_BONDING);
- if ((err_code_release != NRF_SUCCESS) && (err_code_release != NRF_ERROR_NOT_FOUND))
- {
- err_code = NRF_ERROR_INTERNAL;
- }
- }
- }
- sec_proc_start(conn_handle,
- peer_id,
- err_code == NRF_SUCCESS,
- *procedure != PM_LINK_SECURED_PROCEDURE_ENCRYPTION,
- false);
- return err_code;
- }
- static ret_code_t link_secure_central_new_peer(uint16_t conn_handle,
- ble_gap_sec_params_t * p_sec_params)
- {
- pm_peer_id_t peer_id = pdb_peer_allocate();
- pm_peer_data_t dummy_peer_data;
- ret_code_t err_code;
- if (peer_id != PM_PEER_ID_INVALID)
- {
- err_code = pdb_write_buf_get(peer_id, PM_PEER_DATA_ID_BONDING, 1, &dummy_peer_data);
- if (err_code == NRF_SUCCESS)
- {
- err_code = pdb_write_buf_store_prepare(peer_id, PM_PEER_DATA_ID_BONDING);
- }
- if (err_code == NRF_SUCCESS)
- {
- err_code = sd_ble_gap_authenticate(conn_handle, p_sec_params);
- }
- if (err_code != NRF_SUCCESS)
- {
- ret_code_t err_code_free = pdb_write_buf_release(peer_id, PM_PEER_DATA_ID_BONDING);
- if ((err_code_free != NRF_SUCCESS) && (err_code_free != NRF_ERROR_NOT_FOUND))
- {
- err_code = NRF_ERROR_INTERNAL;
- }
- }
- }
- else
- {
- err_code = NRF_ERROR_INTERNAL;
- }
- sec_proc_start(conn_handle,
- peer_id,
- err_code == NRF_SUCCESS,
- true,
- peer_id != PM_PEER_ID_INVALID);
- return err_code;
- }
- static ret_code_t link_secure_central(uint16_t conn_handle,
- ble_gap_sec_params_t * p_sec_params,
- bool force_repairing)
- {
- ret_code_t err_code;
- pm_peer_id_t peer_id;
- if (p_sec_params == NULL)
- {
- return sd_ble_gap_authenticate(conn_handle, NULL);
- }
- pm_conn_sec_procedure_t procedure = p_sec_params->bond ? PM_LINK_SECURED_PROCEDURE_BONDING
- : PM_LINK_SECURED_PROCEDURE_PAIRING;
- peer_id = im_peer_id_get_by_conn_handle(conn_handle);
- if (peer_id != PM_PEER_ID_INVALID)
- {
- // There is already data in flash for this peer.
- err_code = link_secure_central_existing_peer(conn_handle,
- p_sec_params,
- force_repairing,
- peer_id,
- &procedure);
- }
- else if (p_sec_params->bond)
- {
- // New peer is required.
- err_code = link_secure_central_new_peer(conn_handle, p_sec_params);
- }
- else
- {
- // No bonding, only pairing.
- err_code = sd_ble_gap_authenticate(conn_handle, p_sec_params);
- sec_proc_start(conn_handle, peer_id, err_code == NRF_SUCCESS, true, false);
- }
- if (err_code == NRF_SUCCESS)
- {
- sec_start_send(conn_handle, procedure);
- }
- return err_code;
- }
- static ret_code_t link_secure_peripheral(uint16_t conn_handle, ble_gap_sec_params_t * p_sec_params)
- {
- VERIFY_PARAM_NOT_NULL(p_sec_params);
- ret_code_t err_code = sd_ble_gap_authenticate(conn_handle, p_sec_params);
- return err_code;
- }
- ret_code_t smd_link_secure(uint16_t conn_handle,
- ble_gap_sec_params_t * p_sec_params,
- bool force_repairing)
- {
- VERIFY_MODULE_INITIALIZED();
- uint8_t role = ble_conn_state_role(conn_handle);
- switch (role)
- {
- case BLE_GAP_ROLE_CENTRAL:
- return link_secure_central(conn_handle, p_sec_params, force_repairing);
- case BLE_GAP_ROLE_PERIPH:
- return link_secure_peripheral(conn_handle, p_sec_params);
- default:
- return BLE_ERROR_INVALID_CONN_HANDLE;
- }
- }
- void smd_ble_evt_handler(ble_evt_t * p_ble_evt)
- {
- switch (p_ble_evt->header.evt_id)
- {
- case BLE_GAP_EVT_DISCONNECTED:
- disconnect_process(&(p_ble_evt->evt.gap_evt));
- break;
- case BLE_GAP_EVT_SEC_PARAMS_REQUEST:
- sec_params_request_process(&(p_ble_evt->evt.gap_evt));
- break;
- case BLE_GAP_EVT_SEC_INFO_REQUEST:
- sec_info_request_process(&(p_ble_evt->evt.gap_evt));
- break;
- case BLE_GAP_EVT_SEC_REQUEST:
- sec_request_process(&(p_ble_evt->evt.gap_evt));
- break;
- case BLE_GAP_EVT_AUTH_STATUS:
- auth_status_process(&(p_ble_evt->evt.gap_evt));
- break;
- case BLE_GAP_EVT_CONN_SEC_UPDATE:
- conn_sec_update_process(&(p_ble_evt->evt.gap_evt));
- break;
- };
- }
|