summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-08-22 14:55:14 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-08-22 15:00:02 -0700
commit081897da74f036a2e248956fdf16455b66bee91c (patch)
treed1aaaae7bbf32d906f0d3383f97a82d395b5dca5 /tools
parent5bf220eb3b86e3d162b1b926c529a975821b6a02 (diff)
downloadbluez-081897da74f036a2e248956fdf16455b66bee91c.tar.gz
iso-tester: Make use of bthost_add_iso_hook destroy callback
This makes use of bthost_add_iso_hook to track when an ISO connection has been disconnected and then set its handle to 0x0000 which is then checked when the socket HUP to confirm the remote has properly disconnected (e.g. received Disconnected Complete).
Diffstat (limited to 'tools')
-rw-r--r--tools/iso-tester.c52
1 files changed, 31 insertions, 21 deletions
diff --git a/tools/iso-tester.c b/tools/iso-tester.c
index 8c935b922..269fbe2d6 100644
--- a/tools/iso-tester.c
+++ b/tools/iso-tester.c
@@ -676,13 +676,42 @@ static void client_connectable_complete(uint16_t opcode, uint8_t status,
}
}
+static void bthost_recv_data(const void *buf, uint16_t len, void *user_data)
+{
+ struct test_data *data = user_data;
+ const struct iso_client_data *isodata = data->test_data;
+
+ tester_print("Client received %u bytes of data", len);
+
+ if (isodata->send && (isodata->send->iov_len != len ||
+ memcmp(isodata->send->iov_base, buf, len))) {
+ if (!isodata->recv->iov_base)
+ tester_test_failed();
+ } else
+ tester_test_passed();
+}
+
+static void bthost_iso_disconnected(void *user_data)
+{
+ struct test_data *data = user_data;
+
+ tester_print("ISO handle 0x%04x disconnected", data->handle);
+
+ data->handle = 0x0000;
+}
+
static void iso_new_conn(uint16_t handle, void *user_data)
{
struct test_data *data = user_data;
+ struct bthost *host;
tester_print("New client connection with handle 0x%04x", handle);
data->handle = handle;
+
+ host = hciemu_client_get_host(data->hciemu);
+ bthost_add_iso_hook(host, data->handle, bthost_recv_data, data,
+ bthost_iso_disconnected);
}
static void acl_new_conn(uint16_t handle, void *user_data)
@@ -722,7 +751,7 @@ static void setup_powered_callback(uint8_t status, uint16_t length,
if (!isodata)
continue;
- if (isodata->send || isodata->recv)
+ if (isodata->send || isodata->recv || isodata->disconnect)
bthost_set_iso_cb(host, iso_new_conn, data);
if (isodata->bcast) {
@@ -1110,25 +1139,9 @@ static void iso_recv(struct test_data *data, GIOChannel *io)
data->io_id[0] = g_io_add_watch(io, G_IO_IN, iso_recv_data, data);
}
-static void bthost_recv_data(const void *buf, uint16_t len, void *user_data)
-{
- struct test_data *data = user_data;
- const struct iso_client_data *isodata = data->test_data;
-
- tester_print("Client received %u bytes of data", len);
-
- if (isodata->send && (isodata->send->iov_len != len ||
- memcmp(isodata->send->iov_base, buf, len))) {
- if (!isodata->recv->iov_base)
- tester_test_failed();
- } else
- tester_test_passed();
-}
-
static void iso_send(struct test_data *data, GIOChannel *io)
{
const struct iso_client_data *isodata = data->test_data;
- struct bthost *host;
ssize_t ret;
int sk;
@@ -1136,9 +1149,6 @@ static void iso_send(struct test_data *data, GIOChannel *io)
tester_print("Writing %zu bytes of data", isodata->send->iov_len);
- host = hciemu_client_get_host(data->hciemu);
- bthost_add_iso_hook(host, data->handle, bthost_recv_data, data, NULL);
-
ret = writev(sk, isodata->send, 1);
if (ret < 0 || isodata->send->iov_len != (size_t) ret) {
tester_warn("Failed to write %zu bytes: %s (%d)",
@@ -1167,7 +1177,7 @@ static gboolean iso_disconnected(GIOChannel *io, GIOCondition cond,
data->io_id[0] = 0;
- if (cond & G_IO_HUP) {
+ if ((cond & G_IO_HUP) && !data->handle) {
tester_print("Successfully disconnected");
if (data->reconnect) {