Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: Classic: Refactor query and deletion bonding information #87743

Conversation

lylezhu2012
Copy link
Collaborator

@lylezhu2012 lylezhu2012 commented Mar 27, 2025

  • Bluetooth: Classic: Refactor query and deletion of bonding information

In current implementation, the bonding information of classic is queried by calling the function bt_foreach_bond(). And the bonding information of classic is deleted by calling bt_unpair().

There are two issues if the LE and classic are bonded at same time for dual mode peer device.
Issue 1, for the function bt_foreach_bond(), there are two bonding information will be found. But there is no way to find which bonding information belongs to LE or classic.
Issue 2, For the function bt_unpair(), all bonding information will be deleted if the passed address is the public address. But there is no way to delete the bonding information of LE or classic.

Remove the calling of function bt_foreach_bond_br() from the function bt_foreach_bond(). And rename it to bt_br_foreach_bond(), and public it as an API to query the bonding information of classic.
Remove the calling of function bt_keys_link_key_clear_addr() from the function bt_unpair(). Add an API bt_br_unpair() to delete the bonding information of classic.

Add a br_bond_deleted to structure bt_conn_auth_info_cb for classic. The callback will be triggered if the bonding information has been deleted by the function bt_br_unpair().

Add a clear shell command for classic to delete the bonding information.

  • Bluetooth: Classic: shell: Add command bonds

Add shell command bonds to list all the bonding information of classic.

@github-actions github-actions bot added area: Bluetooth Host Bluetooth Host (excluding BR/EDR) area: Bluetooth Classic Bluetooth Classic (BR/EDR) area: Bluetooth labels Mar 27, 2025
@lylezhu2012 lylezhu2012 force-pushed the br_classic_refactor_query_and_deletion_bonds branch from 9f2ad9d to d0cec9a Compare March 27, 2025 11:14
@github-actions github-actions bot added the Release Notes To be mentioned in the release notes label Mar 27, 2025
jhedberg
jhedberg previously approved these changes Mar 27, 2025
@lylezhu2012 lylezhu2012 force-pushed the br_classic_refactor_query_and_deletion_bonds branch from d0cec9a to 4208a85 Compare March 27, 2025 13:41
@Thalley Thalley removed their request for review March 27, 2025 13:50
@lylezhu2012 lylezhu2012 force-pushed the br_classic_refactor_query_and_deletion_bonds branch from 4208a85 to c201fea Compare March 31, 2025 07:45
@lylezhu2012 lylezhu2012 requested review from makeshi and jhedberg March 31, 2025 07:49
In current implementation, the bonding information of classic is
queried by calling the function `bt_foreach_bond()`. And the bonding
information of classic is deleted by calling `bt_unpair()`.

There are two issues if the LE and classic are bonded at same time for
dual mode peer device.
Issue 1, for the function `bt_foreach_bond()`, there are two bonding
information will be found. But there is no way to find which bonding
information belongs to LE or classic.
Issue 2, For the function `bt_unpair()`, all bonding information will
be deleted if the passed address is the public address. But there is
no way to delete the bonding information of LE or classic.

Remove the calling of function `bt_foreach_bond_br()` from the
function `bt_foreach_bond()`. And rename it to `bt_br_foreach_bond()`,
and public it as an API to query the bonding information of classic.

Remove the calling of function `bt_keys_link_key_clear_addr()` from
the function `bt_unpair()`. Add an API `bt_br_unpair()` to delete the
bonding information of classic.

Add a `br_bond_deleted` to structure `bt_conn_auth_info_cb` for
classic. The callback will be triggered if the bonding information has
been deleted by the function `bt_br_unpair()`.

Add a `clear` shell command for classic to delete the bonding
information.

Signed-off-by: Lyle Zhu <lyle.zhu@nxp.com>
Add shell command `bonds` to list all the bonding information of
classic.

Signed-off-by: Lyle Zhu <lyle.zhu@nxp.com>
@lylezhu2012 lylezhu2012 force-pushed the br_classic_refactor_query_and_deletion_bonds branch from c201fea to 22b7fdc Compare April 1, 2025 10:56
@lylezhu2012
Copy link
Collaborator Author

Rebase the PR.

@kartben kartben merged commit f9e8eca into zephyrproject-rtos:main Apr 1, 2025
27 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: Bluetooth Classic Bluetooth Classic (BR/EDR) area: Bluetooth Host Bluetooth Host (excluding BR/EDR) area: Bluetooth Release Notes To be mentioned in the release notes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants