/* * Copyright (C) 2014 BlueKitchen GmbH * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * 4. Any redistribution, use, or modification is done solely for * personal benefit and not for any commercial purpose or for * monetary gain. * * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * Please inquire about commercial licensing options at * contact@bluekitchen-gmbh.com * */ #ifndef __SM_H #define __SM_H #if defined __cplusplus extern "C" { #endif #include #include "btstack_util.h" #include "btstack_defines.h" #include "hci.h" typedef struct { btstack_linked_item_t item; bd_addr_t address; bd_addr_type_t address_type; } sm_lookup_entry_t; static inline uint8_t sm_pairing_packet_get_code(sm_pairing_packet_t packet){ return packet[0]; } static inline uint8_t sm_pairing_packet_get_io_capability(sm_pairing_packet_t packet){ return packet[1]; } static inline uint8_t sm_pairing_packet_get_oob_data_flag(sm_pairing_packet_t packet){ return packet[2]; } static inline uint8_t sm_pairing_packet_get_auth_req(sm_pairing_packet_t packet){ return packet[3]; } static inline uint8_t sm_pairing_packet_get_max_encryption_key_size(sm_pairing_packet_t packet){ return packet[4]; } static inline uint8_t sm_pairing_packet_get_initiator_key_distribution(sm_pairing_packet_t packet){ return packet[5]; } static inline uint8_t sm_pairing_packet_get_responder_key_distribution(sm_pairing_packet_t packet){ return packet[6]; } static inline void sm_pairing_packet_set_code(sm_pairing_packet_t packet, uint8_t code){ packet[0] = code; } static inline void sm_pairing_packet_set_io_capability(sm_pairing_packet_t packet, uint8_t io_capability){ packet[1] = io_capability; } static inline void sm_pairing_packet_set_oob_data_flag(sm_pairing_packet_t packet, uint8_t oob_data_flag){ packet[2] = oob_data_flag; } static inline void sm_pairing_packet_set_auth_req(sm_pairing_packet_t packet, uint8_t auth_req){ packet[3] = auth_req; } static inline void sm_pairing_packet_set_max_encryption_key_size(sm_pairing_packet_t packet, uint8_t max_encryption_key_size){ packet[4] = max_encryption_key_size; } static inline void sm_pairing_packet_set_initiator_key_distribution(sm_pairing_packet_t packet, uint8_t initiator_key_distribution){ packet[5] = initiator_key_distribution; } static inline void sm_pairing_packet_set_responder_key_distribution(sm_pairing_packet_t packet, uint8_t responder_key_distribution){ packet[6] = responder_key_distribution; } /* API_START */ /** * @brief Initializes the Security Manager, connects to L2CAP */ void sm_init(void); /** * @brief Set secret ER key for key generation as described in Core V4.0, Vol 3, Part G, 5.2.2 * @param er */ void sm_set_er(sm_key_t er); /** * @brief Set secret IR key for key generation as described in Core V4.0, Vol 3, Part G, 5.2.2 */ void sm_set_ir(sm_key_t ir); /** * * @brief Registers OOB Data Callback. The callback should set the oob_data and return 1 if OOB data is availble * @param get_oob_data_callback */ void sm_register_oob_data_callback( int (*get_oob_data_callback)(uint8_t addres_type, bd_addr_t addr, uint8_t * oob_data)); /** * @brief Add event packet handler. */ void sm_add_event_handler(btstack_packet_callback_registration_t * callback_handler); /** * @brief Limit the STK generation methods. Bonding is stopped if the resulting one isn't in the list * @param OR combination of SM_STK_GENERATION_METHOD_ */ void sm_set_accepted_stk_generation_methods(uint8_t accepted_stk_generation_methods); /** * @brief Set the accepted encryption key size range. Bonding is stopped if the result isn't within the range * @param min_size (default 7) * @param max_size (default 16) */ void sm_set_encryption_key_size_range(uint8_t min_size, uint8_t max_size); /** * @brief Sets the requested authentication requirements, bonding yes/no, MITM yes/no, SC yes/no, keypress yes/no * @param OR combination of SM_AUTHREQ_ flags */ void sm_set_authentication_requirements(uint8_t auth_req); /** * @brief Sets the available IO Capabilities * @param IO_CAPABILITY_ */ void sm_set_io_capabilities(io_capability_t io_capability); /** * @brief Let Peripheral request an encrypted connection right after connecting * @note Not used normally. Bonding is triggered by access to protected attributes in ATT Server */ void sm_set_request_security(int enable); /** * @brief Trigger Security Request * @note Not used normally. Bonding is triggered by access to protected attributes in ATT Server */ void sm_send_security_request(hci_con_handle_t con_handle); /** * @brief Decline bonding triggered by event before * @param con_handle */ void sm_bonding_decline(hci_con_handle_t con_handle); /** * @brief Confirm Just Works bonding * @param con_handle */ void sm_just_works_confirm(hci_con_handle_t con_handle); /** * @brief Confirm value from SM_EVENT_NUMERIC_COMPARISON_REQUEST for Numeric Comparison bonding * @param con_handle */ void sm_numeric_comparison_confirm(hci_con_handle_t con_handle); /** * @brief Reports passkey input by user * @param con_handle * @param passkey in [0..999999] */ void sm_passkey_input(hci_con_handle_t con_handle, uint32_t passkey); /** * @brief Send keypress notification for keyboard only devices * @param con_handle * @param action see SM_KEYPRESS_* in bluetooth.h */ void sm_keypress_notification(hci_con_handle_t con_handle, uint8_t action); /** * * @brief Get encryption key size. * @param con_handle * @return 0 if not encrypted, 7-16 otherwise */ int sm_encryption_key_size(hci_con_handle_t con_handle); /** * @brief Get authentication property. * @param con_handle * @return 1 if bonded with OOB/Passkey (AND MITM protection) */ int sm_authenticated(hci_con_handle_t con_handle); /** * @brief Queries authorization state. * @param con_handle * @return authorization_state for the current session */ authorization_state_t sm_authorization_state(hci_con_handle_t con_handle); /** * @brief Used by att_server.c to request user authorization. * @param con_handle */ void sm_request_pairing(hci_con_handle_t con_handle); /** * @brief Report user authorization decline. * @param con_handle */ void sm_authorization_decline(hci_con_handle_t con_handle); /** * @brief Report user authorization grant. * @param con_handle */ void sm_authorization_grant(hci_con_handle_t con_handle); /** * @brief Check if CMAC AES engine is ready * @return ready */ int sm_cmac_ready(void); /* * @brief Generic CMAC AES * @param key * @param message_len * @param get_byte_callback * @param done_callback * @note hash is 16 bytes in big endian */ void sm_cmac_general_start(const sm_key_t key, uint16_t message_len, uint8_t (*get_byte_callback)(uint16_t offset), void (*done_callback)(uint8_t * hash)); /** * @brief Support for signed writes, used by att_server. * @note Message is in little endian to allows passing in ATT PDU without flipping. * @note signing data: [opcode, attribute_handle, message, sign_counter] * @note calculated hash in done_callback is big endian and has 16 byte. * @param key * @param opcde * @param attribute_handle * @param message_len * @param message * @param sign_counter */ void sm_cmac_signed_write_start(const sm_key_t key, uint8_t opcode, uint16_t attribute_handle, uint16_t message_len, const uint8_t * message, uint32_t sign_counter, void (*done_callback)(uint8_t * hash)); /* * @brief Match address against bonded devices * @return 0 if successfully added to lookup queue * @note Triggers SM_IDENTITY_RESOLVING_* events */ int sm_address_resolution_lookup(uint8_t addr_type, bd_addr_t addr); /** * @brief Identify device in LE Device DB. * @param handle * @return index from le_device_db or -1 if not found/identified */ int sm_le_device_index(hci_con_handle_t con_handle ); /** * @brief Set Elliptic Key Public/Private Keypair * @note Creating a new key pair requires about 4600 bytes additional when used with MBEDTLS EC * @note Using the same key for more than one device is not recommended. * @param qx 32 bytes * @param qy 32 bytes * @param d 32 bytes */ void sm_use_fixed_ec_keypair(uint8_t * qx, uint8_t * qy, uint8_t * d); /* API_END */ // PTS testing void sm_test_set_irk(sm_key_t irk); void sm_test_use_fixed_local_csrk(void); void sm_test_use_fixed_ec_keypair(void); #if defined __cplusplus } #endif #endif // __SM_H