2020-01-10 18:15:16

by Gix, Brian

[permalink] [raw]
Subject: [PATCH BlueZ] mesh: Implement provisioning loop-back

This allows one App using the mesh daemon to provision another.
---
mesh/pb-adv.c | 182 ++++++++++++++++++++++++++++++++++++++++----------
1 file changed, 148 insertions(+), 34 deletions(-)

diff --git a/mesh/pb-adv.c b/mesh/pb-adv.c
index c9a2a6574..4f32bf013 100644
--- a/mesh/pb-adv.c
+++ b/mesh/pb-adv.c
@@ -39,6 +39,7 @@ struct pb_adv_session {
mesh_prov_receive_func_t rx_cb;
mesh_prov_ack_func_t ack_cb;
struct l_timeout *tx_timeout;
+ struct pb_adv_session *loop;
uint32_t link_id;
uint16_t exp_len;
uint8_t exp_fcs;
@@ -93,10 +94,38 @@ struct pb_close_ind {
uint8_t reason;
} __packed;

-static struct pb_adv_session *pb_session = NULL;
+struct idle_rx {
+ struct pb_adv_session *session;
+ uint16_t len;
+ uint8_t data[PB_ADV_MTU + 6];
+};
+
+static struct l_queue *pb_sessions = NULL;

static const uint8_t filter[1] = { MESH_AD_TYPE_PROVISION };

+static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len);
+
+static void idle_rx_adv(void *user_data)
+{
+ struct idle_rx *rx = user_data;
+
+ pb_adv_packet(rx->session, rx->data, rx->len);
+ l_free(rx);
+}
+
+static void loop_adv(struct pb_adv_session *session, const uint8_t *data,
+ uint16_t len)
+{
+ struct idle_rx *rx = l_new(struct idle_rx, 1);
+
+ rx->session = session;
+ rx->len = len;
+ memcpy(rx->data, data, len);
+
+ l_idle_oneshot(idle_rx_adv, rx, NULL);
+}
+
static void send_adv_segs(struct pb_adv_session *session, const uint8_t *data,
uint16_t size)
{
@@ -135,7 +164,12 @@ static void send_adv_segs(struct pb_adv_session *session, const uint8_t *data,
l_debug("max_seg: %2.2x", max_seg);
l_debug("size: %2.2x, CRC: %2.2x", size, buf[9]);
/* print_packet("PB-TX", buf + 1, init_size + 9); */
- mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 200, buf, init_size + 10);
+
+ if (session->loop)
+ loop_adv(session->loop, buf, init_size + 10);
+ else
+ mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 200,
+ buf, init_size + 10);

consumed = init_size;

@@ -152,19 +186,42 @@ static void send_adv_segs(struct pb_adv_session *session, const uint8_t *data,

/* print_packet("PB-TX", buf + 1, seg_size + 6); */

- mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 200,
+ if (session->loop)
+ loop_adv(session->loop, buf, seg_size + 7);
+ else
+ mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 200,
buf, seg_size + 7);

consumed += seg_size;
}
}

+static bool session_match (const void *a, const void *b)
+{
+ return a == b;
+}
+
+static bool uuid_match (const void *a, const void *b)
+{
+ const struct pb_adv_session *session = a;
+ const uint8_t *uuid = b;
+
+ return !memcmp(session->uuid, uuid, sizeof(session->uuid));
+}
+
+static bool user_match (const void *a, const void *b)
+{
+ const struct pb_adv_session *session = a;
+
+ return session->user_data == b;
+}
+
static void tx_timeout(struct l_timeout *timeout, void *user_data)
{
struct pb_adv_session *session = user_data;
mesh_prov_close_func_t cb;

- if (!session || pb_session != session)
+ if (!l_queue_find(pb_sessions, session_match, session))
return;

l_timeout_remove(session->tx_timeout);
@@ -172,9 +229,9 @@ static void tx_timeout(struct l_timeout *timeout, void *user_data)

mesh_send_cancel(filter, sizeof(filter));

- l_info("TX timeout");
- cb = pb_session->close_cb;
- user_data = pb_session->user_data;
+ l_info("PB-ADV: TX timeout");
+ cb = session->close_cb;
+ user_data = session->user_data;
cb(user_data, 1);
}

@@ -182,7 +239,7 @@ static void pb_adv_tx(void *user_data, void *data, uint16_t len)
{
struct pb_adv_session *session = user_data;

- if (!session || pb_session != session)
+ if (!l_queue_find(pb_sessions, session_match, session))
return;

l_timeout_remove(session->tx_timeout);
@@ -201,7 +258,12 @@ static void send_open_req(struct pb_adv_session *session)
memcpy(open_req.uuid, session->uuid, 16);

mesh_send_cancel(filter, sizeof(filter));
- mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 500, &open_req,
+
+ if (session->loop)
+ loop_adv(session->loop, (uint8_t *) &open_req,
+ sizeof(open_req));
+ else
+ mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 500, &open_req,
sizeof(open_req));
}

@@ -214,7 +276,12 @@ static void send_open_cfm(struct pb_adv_session *session)
open_cfm.opcode = PB_ADV_OPEN_CFM;

mesh_send_cancel(filter, sizeof(filter));
- mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 500, &open_cfm,
+
+ if (session->loop)
+ loop_adv(session->loop, (uint8_t *) &open_cfm,
+ sizeof(open_cfm));
+ else
+ mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 500, &open_cfm,
sizeof(open_cfm));
}

@@ -222,18 +289,24 @@ static void send_ack(struct pb_adv_session *session, uint8_t trans_num)
{
struct pb_ack ack = { MESH_AD_TYPE_PROVISION };

+ if (!l_queue_find(pb_sessions, session_match, session))
+ return;
+
l_put_be32(session->link_id, &ack.link_id);
ack.trans_num = trans_num;
ack.opcode = PB_ADV_ACK;

- mesh_send_pkt(1, 100, &ack, sizeof(ack));
+ if (session->loop)
+ loop_adv(session->loop, (uint8_t *) &ack, sizeof(ack));
+ else
+ mesh_send_pkt(1, 100, &ack, sizeof(ack));
}

static void send_close_ind(struct pb_adv_session *session, uint8_t reason)
{
struct pb_close_ind close_ind = { MESH_AD_TYPE_PROVISION };

- if (!pb_session || pb_session != session)
+ if (!l_queue_find(pb_sessions, session_match, session))
return;

l_put_be32(session->link_id, &close_ind.link_id);
@@ -242,7 +315,12 @@ static void send_close_ind(struct pb_adv_session *session, uint8_t reason)
close_ind.reason = reason;

mesh_send_cancel(filter, sizeof(filter));
- mesh_send_pkt(10, 100, &close_ind, sizeof(close_ind));
+
+ if (session->loop)
+ loop_adv(session->loop, (uint8_t *) &close_ind,
+ sizeof(close_ind));
+ else
+ mesh_send_pkt(10, 100, &close_ind, sizeof(close_ind));
}

static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
@@ -254,7 +332,7 @@ static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
uint8_t type;
bool first;

- if (!pb_session || pb_session != session)
+ if (!l_queue_find(pb_sessions, session_match, session))
return;

link_id = l_get_be32(pkt + 1);
@@ -331,14 +409,15 @@ static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)

case PB_ADV_CLOSE:
l_timeout_remove(session->tx_timeout);
+ session->tx_timeout = NULL;
l_debug("Link closed notification: %2.2x", pkt[0]);
/* Wrap callback for pre-cleaning */
if (true) {
mesh_prov_close_func_t cb = session->close_cb;
void *user_data = session->user_data;

+ l_queue_remove(pb_sessions, session);
l_free(session);
- pb_session = NULL;
cb(user_data, pkt[0]);
}
break;
@@ -442,37 +521,72 @@ bool pb_adv_reg(bool initiator, mesh_prov_open_func_t open_cb,
mesh_prov_receive_func_t rx_cb, mesh_prov_ack_func_t ack_cb,
uint8_t uuid[16], void *user_data)
{
- if (pb_session)
+ struct pb_adv_session *session, *old_session;
+
+ if (!pb_sessions)
+ pb_sessions = l_queue_new();
+
+ old_session = l_queue_find(pb_sessions, uuid_match, uuid);
+
+ /* Reject 2nd session if not looping back */
+ if (l_queue_length(pb_sessions) && !old_session)
return false;

- pb_session = l_new(struct pb_adv_session, 1);
- pb_session->open_cb = open_cb;
- pb_session->close_cb = close_cb;
- pb_session->rx_cb = rx_cb;
- pb_session->ack_cb = ack_cb;
- pb_session->user_data = user_data;
- pb_session->initiator = initiator;
- memcpy(pb_session->uuid, uuid, 16);
+ /* Reject looping to more than one session or with same role*/
+ if (old_session && old_session->loop &&
+ old_session->initiator == initiator)
+ return false;
+
+ session = l_new(struct pb_adv_session, 1);
+ session->open_cb = open_cb;
+ session->close_cb = close_cb;
+ session->rx_cb = rx_cb;
+ session->ack_cb = ack_cb;
+ session->user_data = user_data;
+ session->initiator = initiator;
+ memcpy(session->uuid, uuid, 16);

- mesh_reg_prov_rx(pb_adv_packet, pb_session);
+ l_queue_push_head(pb_sessions, session);

if (initiator) {
- l_getrandom(&pb_session->link_id, sizeof(pb_session->link_id));
- pb_session->tx_timeout = l_timeout_create(60, tx_timeout,
- pb_session, NULL);
- send_open_req(pb_session);
+ l_getrandom(&session->link_id, sizeof(session->link_id));
+ session->tx_timeout = l_timeout_create(60, tx_timeout,
+ session, NULL);
+ }
+
+ /* Setup Loop-back if complementary session with same UUID */
+ if (old_session) {
+ session->loop = old_session;
+ old_session->loop = session;
+ mesh_unreg_prov_rx(pb_adv_packet);
+
+ if (initiator)
+ send_open_req(session);
+ else
+ send_open_req(old_session);
+
+ return true;
}

+ mesh_reg_prov_rx(pb_adv_packet, session);
+
+ if (initiator)
+ send_open_req(session);
+
return true;
}

void pb_adv_unreg(void *user_data)
{
- if (!pb_session || pb_session->user_data != user_data)
+ struct pb_adv_session *session = l_queue_find(pb_sessions,
+ user_match, user_data);
+
+ if (!session)
return;

- l_timeout_remove(pb_session->tx_timeout);
- send_close_ind(pb_session, 0);
- l_free(pb_session);
- pb_session = NULL;
+ l_timeout_remove(session->tx_timeout);
+ session->tx_timeout = NULL;
+ send_close_ind(session, 0);
+ l_queue_remove(pb_sessions, session);
+ l_free(session);
}
--
2.21.1


2020-01-10 23:47:26

by Michał Lowas-Rzechonek

[permalink] [raw]
Subject: Re: [PATCH BlueZ] mesh: Implement provisioning loop-back

Hi Brian,

On 01/10, Brian Gix wrote:
> This allows one App using the mesh daemon to provision another.

This patch contains also some wording cosmetics and other PB-ADV fixes
that don't seem related to the loopback mechanism.

Could you please split this into a patchset?

> +static void loop_adv(struct pb_adv_session *session, const uint8_t *data,
> + uint16_t len)
> +{
> + struct idle_rx *rx = l_new(struct idle_rx, 1);
> +
> + rx->session = session;
> + rx->len = len;
> + memcpy(rx->data, data, len);
> +
> + l_idle_oneshot(idle_rx_adv, rx, NULL);
> +}
(...)
> + if (session->loop)
> + loop_adv(session->loop, buf, init_size + 10);
> + else
> + mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 200,
> + buf, init_size + 10);

This condition check is repeated throughout the code. I think it would
be clearer to replace mesh_send_pkt usages with something like:

static void pb_adv_send(struct pb_adv_session *session, uint8_t count,
uint16_t interval, void *data, uint16_t len)
{
if (session->loop) {
struct idle_rx *rx = ...
} else {
mesh_send_pkt(count, interval, data, len);
}
}

--
Michał Lowas-Rzechonek <[email protected]>
Silvair http://silvair.com
Jasnogórska 44, 31-358 Krakow, POLAND

2020-01-11 00:54:02

by Gix, Brian

[permalink] [raw]
Subject: Re: [PATCH BlueZ] mesh: Implement provisioning loop-back

On Sat, 2020-01-11 at 00:47 +0100, Michał Lowas-Rzechonek wrote:
> Hi Brian,
>
> On 01/10, Brian Gix wrote:
> > This allows one App using the mesh daemon to provision another.
>
> This patch contains also some wording cosmetics and other PB-ADV fixes
> that don't seem related to the loopback mechanism.
>
> Could you please split this into a patchset?

Sure, I will look at this.

> > (...)
> > + if (session->loop)
> > + loop_adv(session->loop, buf, init_size + 10);
> > + else
> > + mesh_send_pkt(MESH_IO_TX_COUNT_UNLIMITED, 200,
> > + buf, init_size + 10);
>
> This condition check is repeated throughout the code. I think it would
> be clearer to replace mesh_send_pkt usages with something like:

Yeah, I can probably do this... One reason I didn't was because of the count/interval differences from packet
to packet, but sure I could add a level of nesting there...

>
> static void pb_adv_send(struct pb_adv_session *session, uint8_t count,
> uint16_t interval, void *data, uint16_t len)
> {
> if (session->loop) {
> struct idle_rx *rx = ...
> } else {
> mesh_send_pkt(count, interval, data, len);
> }
> }
>