2024-02-06 11:28:30

by Jonas Dreßler

[permalink] [raw]
Subject: [PATCH BlueZ v2 0/4] Adjust tests for sequential conn establishing

We're going to change the logic to establish connections to ACL
devices in the kernel so that they only happen sequentially,
similar to what we're already doing for "LE Create Connection".

This needs a change in mgmt-tester, and while at it, let's also
introduce a test verifying the new behavior.

Also included in this series is a small drive-by fix for running
mgmt-tester with address sanititzer.

Kernel series:
https://lore.kernel.org/linux-bluetooth/[email protected]/

---

v1: https://lore.kernel.org/linux-bluetooth/[email protected]/
v2:
- Switched to terminating lists for expect_hci_list using {} instead
of opcode = 0 as suggested by review
- Changed the timeout for sending page timeout error to 5.12 seconds
as suggested by review

Jonas Dreßler (4):
mgmt-tester: Add a 0-entry to expect_hci_list lists
mgmt-tester: Adjust a test for recent kernel changes
emulator/btdev: Send page timeout after 5.12 secs delay
mgmt-tester: Add a test for connecting sequentially

emulator/btdev.c | 32 +++++++++++-
tools/mgmt-tester.c | 115 +++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 145 insertions(+), 2 deletions(-)

--
2.43.0



2024-02-06 11:28:37

by Jonas Dreßler

[permalink] [raw]
Subject: [PATCH BlueZ v2 4/4] mgmt-tester: Add a test for connecting sequentially

The kernel was recently changed to only connect to ACL devices
sequentially (see kernel commit "Bluetooth: hci_conn: Only do
ACL connections sequentially"), similar to how it already behaves
for LE devices.

Add some testing for this behavior to mgmt-tester and make sure
that new "HCI Create Connection" commands only get sent after
the previous "Pair Device" MGMT command has failed.
---
tools/mgmt-tester.c | 106 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 106 insertions(+)

diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index 767cd5cda..ac3045e13 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
@@ -12767,6 +12767,103 @@ static void test_hci_devcd(const void *test_data)
tester_wait(test->dump_data->timeout + 1, verify_devcd, NULL);
}

+static const struct generic_data sequential_connect = {
+ .setup_settings = settings_powered_bondable,
+ .pin = pair_device_pin,
+ .pin_len = sizeof(pair_device_pin),
+ .client_pin = pair_device_pin,
+ .client_pin_len = sizeof(pair_device_pin),
+};
+
+struct pair_devices_data {
+ struct test_data *test_data;
+ unsigned int n_conn_failed_evts;
+ unsigned int n_create_conn_cmds;
+};
+
+static void pair_device_command_callback(uint8_t status, uint16_t length,
+ const void *param, void *user_data)
+{
+ struct pair_devices_data *pd_data = user_data;
+
+ if (status != MGMT_STATUS_CONNECT_FAILED) {
+ tester_warn("Unexpected status got %d expected %d",
+ status, MGMT_STATUS_CONNECT_FAILED);
+ tester_test_failed();
+ free(pd_data);
+ return;
+ }
+
+ tester_print("Connect failed for Pair Device");
+
+ pd_data->n_conn_failed_evts++;
+ if (pd_data->n_conn_failed_evts != pd_data->n_create_conn_cmds) {
+ tester_test_failed();
+ free(pd_data);
+ return;
+ }
+
+ if (pd_data->n_conn_failed_evts == 3) {
+ test_condition_complete(pd_data->test_data);
+ free(pd_data);
+ }
+}
+
+static bool connect_multiple_create_conn(const void *data, uint16_t len,
+ void *user_data)
+{
+ struct pair_devices_data *pd_data = user_data;
+ const uint8_t *status = data;
+
+ if (*status == 0) {
+ tester_print("Create connection finished");
+
+ pd_data->n_create_conn_cmds++;
+ if (pd_data->n_conn_failed_evts != pd_data->n_create_conn_cmds - 1) {
+ tester_test_failed();
+ free(pd_data);
+ }
+ } else {
+ tester_print("Create connection failed: 0x%02x", *status);
+ tester_test_failed();
+ free(pd_data);
+ }
+
+ return true;
+}
+
+static void test_sequential_connect(const void *test_data)
+{
+ struct test_data *data = tester_get_data();
+ struct pair_devices_data *pd_data;
+ static uint8_t param[8] = {
+ 0x31, 0xAB, 0xCD, 0x32, 0x34, 0x73, /* random bdaddr so we fail to connect */
+ BDADDR_BREDR,
+ 0x03, /* NoInputNoOutput */
+ };
+
+ pd_data = new0(struct pair_devices_data, 1);
+ pd_data->test_data = data;
+ pd_data->n_conn_failed_evts = 0;
+ pd_data->n_create_conn_cmds = 0;
+
+ hciemu_add_hook(data->hciemu, HCIEMU_HOOK_POST_CMD,
+ BT_HCI_CMD_CREATE_CONN,
+ connect_multiple_create_conn, pd_data);
+
+ mgmt_send_nowait(data->mgmt, MGMT_OP_PAIR_DEVICE, data->mgmt_index,
+ sizeof(param), param,
+ pair_device_command_callback, pd_data, NULL);
+ param[2] = 0x09; /* change bdaddr a bit */
+ mgmt_send_nowait(data->mgmt, MGMT_OP_PAIR_DEVICE, data->mgmt_index,
+ sizeof(param), param,
+ pair_device_command_callback, pd_data, NULL);
+ param[2] = 0x10; /* change bdaddr a bit */
+ mgmt_send_nowait(data->mgmt, MGMT_OP_PAIR_DEVICE, data->mgmt_index,
+ sizeof(param), param,
+ pair_device_command_callback, pd_data, NULL);
+}
+
int main(int argc, char *argv[])
{
tester_init(&argc, &argv);
@@ -14932,5 +15029,14 @@ int main(int argc, char *argv[])
test_bredrle_full("HCI Devcoredump - Dump Timeout", &dump_timeout, NULL,
test_hci_devcd, 3);

+ /* Sequential connect
+ * Setup: Power on
+ * Run: Try connecting to multiple devices
+ * Expect: Connects time out sequentially
+ */
+ test_bredrle_full("Sequential connect",
+ &sequential_connect, NULL,
+ test_sequential_connect, 7);
+
return tester_run();
}
--
2.43.0


2024-02-06 22:30:42

by patchwork-bot+bluetooth

[permalink] [raw]
Subject: Re: [PATCH BlueZ v2 0/4] Adjust tests for sequential conn establishing

Hello:

This series was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <[email protected]>:

On Tue, 6 Feb 2024 12:22:49 +0100 you wrote:
> We're going to change the logic to establish connections to ACL
> devices in the kernel so that they only happen sequentially,
> similar to what we're already doing for "LE Create Connection".
>
> This needs a change in mgmt-tester, and while at it, let's also
> introduce a test verifying the new behavior.
>
> [...]

Here is the summary with links:
- [BlueZ,v2,1/4] mgmt-tester: Add a 0-entry to expect_hci_list lists
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=141513cd0229
- [BlueZ,v2,2/4] mgmt-tester: Adjust a test for recent kernel changes
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=6a264df7200b
- [BlueZ,v2,3/4] emulator/btdev: Send page timeout after 5.12 secs delay
(no matching commit)
- [BlueZ,v2,4/4] mgmt-tester: Add a test for connecting sequentially
(no matching commit)

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html