mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
fix(bt/ble): Update esp32 libbtdm_app.a (17db8bd)
- Added a verification step for the Access Address within the CONNECT_IND PDU
This commit is contained in:
@ -444,6 +444,15 @@ config BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX
|
|||||||
minimize collision of scan request PDUs from nultiple scanners. If scan backoff is disabled, in active
|
minimize collision of scan request PDUs from nultiple scanners. If scan backoff is disabled, in active
|
||||||
scanning, scan request PDU will be sent every time when HW receives scannable ADV PDU.
|
scanning, scan request PDU will be sent every time when HW receives scannable ADV PDU.
|
||||||
|
|
||||||
|
config BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS
|
||||||
|
bool "Enable enhanced Access Address check in CONNECT_IND"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Enabling this option will add stricter verification of the Access Address in the CONNECT_IND PDU.
|
||||||
|
This improves security by ensuring that only connection requests with valid Access Addresses are accepted.
|
||||||
|
If disabled, only basic checks are applied, improving compatibility.
|
||||||
|
|
||||||
|
|
||||||
config BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP
|
config BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP
|
||||||
bool "BLE adv report flow control supported"
|
bool "BLE adv report flow control supported"
|
||||||
depends on (BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY)
|
depends on (BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY)
|
||||||
|
Submodule components/bt/controller/lib_esp32 updated: c3f6258cfb...120783fe47
@ -55,7 +55,7 @@ extern "C" {
|
|||||||
*
|
*
|
||||||
* @note Please do not modify this value
|
* @note Please do not modify this value
|
||||||
*/
|
*/
|
||||||
#define ESP_BT_CONTROLLER_CONFIG_MAGIC_VAL 0x20240926
|
#define ESP_BT_CONTROLLER_CONFIG_MAGIC_VAL 0x20241015
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Bluetooth Controller mode
|
* @brief Bluetooth Controller mode
|
||||||
@ -193,6 +193,12 @@ the advertising packet will be discarded until the memory is restored. */
|
|||||||
|
|
||||||
#define BTDM_BLE_LLCP_DISC_FLAG (BTDM_BLE_LLCP_CONN_UPDATE | BTDM_BLE_LLCP_CHAN_MAP_UPDATE)
|
#define BTDM_BLE_LLCP_DISC_FLAG (BTDM_BLE_LLCP_CONN_UPDATE | BTDM_BLE_LLCP_CHAN_MAP_UPDATE)
|
||||||
|
|
||||||
|
#ifdef CONFIG_BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS
|
||||||
|
#define BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS_ENABLED CONFIG_BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS
|
||||||
|
#else
|
||||||
|
#define BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS_ENABLED 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Default Bluetooth Controller configuration
|
* @brief Default Bluetooth Controller configuration
|
||||||
*/
|
*/
|
||||||
@ -222,6 +228,7 @@ the advertising packet will be discarded until the memory is restored. */
|
|||||||
.dup_list_refresh_period = SCAN_DUPL_CACHE_REFRESH_PERIOD, \
|
.dup_list_refresh_period = SCAN_DUPL_CACHE_REFRESH_PERIOD, \
|
||||||
.ble_scan_backoff = BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX, \
|
.ble_scan_backoff = BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX, \
|
||||||
.ble_llcp_disc_flag = BTDM_BLE_LLCP_DISC_FLAG, \
|
.ble_llcp_disc_flag = BTDM_BLE_LLCP_DISC_FLAG, \
|
||||||
|
.ble_aa_check = BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS_ENABLED, \
|
||||||
.magic = ESP_BT_CONTROLLER_CONFIG_MAGIC_VAL, \
|
.magic = ESP_BT_CONTROLLER_CONFIG_MAGIC_VAL, \
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -275,6 +282,7 @@ typedef struct {
|
|||||||
uint16_t dup_list_refresh_period; /*!< Scan duplicate filtering list refresh period in seconds. Configurable in menuconfig */
|
uint16_t dup_list_refresh_period; /*!< Scan duplicate filtering list refresh period in seconds. Configurable in menuconfig */
|
||||||
bool ble_scan_backoff; /*!< True if BLE scan backoff is enabled; false otherwise. Configurable in menuconfig */
|
bool ble_scan_backoff; /*!< True if BLE scan backoff is enabled; false otherwise. Configurable in menuconfig */
|
||||||
uint8_t ble_llcp_disc_flag; /*!< BLE disconnect flag when instant passed. Configurable in menuconfig */
|
uint8_t ble_llcp_disc_flag; /*!< BLE disconnect flag when instant passed. Configurable in menuconfig */
|
||||||
|
bool ble_aa_check; /*!< True if adds a verification step for the Access Address within the CONNECT_IND PDU; false otherwise. Configurable in menuconfig */
|
||||||
uint32_t magic; /*!< Magic number */
|
uint32_t magic; /*!< Magic number */
|
||||||
} esp_bt_controller_config_t;
|
} esp_bt_controller_config_t;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user