linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism
@ 2020-01-11  1:38 Brian Gix
  2020-01-11  1:38 ` [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back Brian Gix
  2020-01-11  6:32 ` [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism Michał Lowas-Rzechonek
  0 siblings, 2 replies; 6+ messages in thread
From: Brian Gix @ 2020-01-11  1:38 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: brian.gix, inga.stotland, michal.lowas-rzechonek

Version 3 fixed logic flaw which is supposed to prevent to sessions with
same roll being loop-back to each other, or more than one loop-back
session.

Version 2 centralizes the loop-back mechanism

Cosmetic changes reversed, as they added nothing important to the
functionality.


Brian Gix (1):
  mesh: Implement provisioning loop-back

 mesh/pb-adv.c | 163 ++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 130 insertions(+), 33 deletions(-)

-- 
2.21.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back
  2020-01-11  1:38 [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism Brian Gix
@ 2020-01-11  1:38 ` Brian Gix
  2020-01-11  6:34   ` Michał Lowas-Rzechonek
  2020-01-11  6:32 ` [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism Michał Lowas-Rzechonek
  1 sibling, 1 reply; 6+ messages in thread
From: Brian Gix @ 2020-01-11  1:38 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: brian.gix, inga.stotland, michal.lowas-rzechonek

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

diff --git a/mesh/pb-adv.c b/mesh/pb-adv.c
index c9a2a6574..4767908f3 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,43 @@ 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 pb_adv_send(struct pb_adv_session *session,
+					uint8_t count, uint16_t interval,
+					void *data, uint16_t len)
+{
+	struct idle_rx *rx = l_new(struct idle_rx, 1);
+
+	if (session->loop) {
+		rx = l_new(struct idle_rx, 1);
+		rx->session = session->loop;
+		rx->len = len;
+		memcpy(rx->data, data, len);
+
+		l_idle_oneshot(idle_rx_adv, rx, NULL);
+	} else
+		mesh_send_pkt(count, interval, data, len);
+}
+
 static void send_adv_segs(struct pb_adv_session *session, const uint8_t *data,
 							uint16_t size)
 {
@@ -135,7 +169,9 @@ 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);
+
+	pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 200,
+							buf, init_size + 10);
 
 	consumed = init_size;
 
@@ -152,19 +188,39 @@ 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,
+		pb_adv_send(session, 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);
@@ -173,8 +229,8 @@ 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;
+	cb = session->close_cb;
+	user_data = session->user_data;
 	cb(user_data, 1);
 }
 
@@ -182,7 +238,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 +257,8 @@ 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,
+
+	pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 500, &open_req,
 							sizeof(open_req));
 }
 
@@ -214,7 +271,8 @@ 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,
+
+	pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 500, &open_cfm,
 							sizeof(open_cfm));
 }
 
@@ -222,18 +280,21 @@ 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));
+	pb_adv_send(session, 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 +303,8 @@ 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));
+
+	pb_adv_send(session, 10, 100, &close_ind, sizeof(close_ind));
 }
 
 static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
@@ -254,7 +316,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);
@@ -337,8 +399,8 @@ static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
 			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 +504,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;
+
+	/* Reject looping to more than one session or with same role*/
+	if (old_session && (old_session->loop ||
+					old_session->initiator == initiator))
 		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);
+	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


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism
  2020-01-11  1:38 [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism Brian Gix
  2020-01-11  1:38 ` [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back Brian Gix
@ 2020-01-11  6:32 ` Michał Lowas-Rzechonek
  1 sibling, 0 replies; 6+ messages in thread
From: Michał Lowas-Rzechonek @ 2020-01-11  6:32 UTC (permalink / raw)
  To: Brian Gix; +Cc: linux-bluetooth, inga.stotland

Brian,

On 01/10, Brian Gix wrote:
> Cosmetic changes reversed, as they added nothing important to the
> functionality.

For the record, I'm all for cosmetics, as I think that readability
matters (a lot!), so feel free to do these renames etc. even (or:
especially if) then don't affect the functionality.

-- 
Michał Lowas-Rzechonek <michal.lowas-rzechonek@silvair.com>
Silvair http://silvair.com
Jasnogórska 44, 31-358 Krakow, POLAND

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back
  2020-01-11  1:38 ` [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back Brian Gix
@ 2020-01-11  6:34   ` Michał Lowas-Rzechonek
  2020-01-11  7:19     ` Michał Lowas-Rzechonek
  2020-01-11 15:24     ` Gix, Brian
  0 siblings, 2 replies; 6+ messages in thread
From: Michał Lowas-Rzechonek @ 2020-01-11  6:34 UTC (permalink / raw)
  To: Brian Gix; +Cc: linux-bluetooth, inga.stotland

Hi Brian,

On 01/10, Brian Gix wrote:
> This allows one App using the mesh daemon to provision another.
> ---
>  mesh/pb-adv.c | 163 ++++++++++++++++++++++++++++++++++++++++----------
>  1 file changed, 130 insertions(+), 33 deletions(-)
> 
> diff --git a/mesh/pb-adv.c b/mesh/pb-adv.c
> index c9a2a6574..4767908f3 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,43 @@ struct pb_close_ind {
>  	uint8_t reason;
>  } __packed;

By the way, why is this struct 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 pb_adv_send(struct pb_adv_session *session,
> +					uint8_t count, uint16_t interval,
> +					void *data, uint16_t len)
> +{
> +	struct idle_rx *rx = l_new(struct idle_rx, 1);

This leaks memory.

> +
> +	if (session->loop) {
> +		rx = l_new(struct idle_rx, 1);
> +		rx->session = session->loop;
> +		rx->len = len;
> +		memcpy(rx->data, data, len);
> +
> +		l_idle_oneshot(idle_rx_adv, rx, NULL);
> +	} else
> +		mesh_send_pkt(count, interval, data, len);
> +}
> +
>  static void send_adv_segs(struct pb_adv_session *session, const uint8_t *data,
>  							uint16_t size)
>  {
> @@ -135,7 +169,9 @@ 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);
> +
> +	pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 200,
> +							buf, init_size + 10);
>  
>  	consumed = init_size;
>  
> @@ -152,19 +188,39 @@ 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,
> +		pb_adv_send(session, 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);
> @@ -173,8 +229,8 @@ 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;
> +	cb = session->close_cb;
> +	user_data = session->user_data;
>  	cb(user_data, 1);
>  }
>  
> @@ -182,7 +238,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 +257,8 @@ 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,
> +
> +	pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 500, &open_req,
>  							sizeof(open_req));
>  }
>  
> @@ -214,7 +271,8 @@ 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,
> +
> +	pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 500, &open_cfm,
>  							sizeof(open_cfm));
>  }
>  
> @@ -222,18 +280,21 @@ 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));
> +	pb_adv_send(session, 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 +303,8 @@ 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));
> +
> +	pb_adv_send(session, 10, 100, &close_ind, sizeof(close_ind));
>  }
>  
>  static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
> @@ -254,7 +316,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);
> @@ -337,8 +399,8 @@ static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
>  			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 +504,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;
> +
> +	/* Reject looping to more than one session or with same role*/
> +	if (old_session && (old_session->loop ||
> +					old_session->initiator == initiator))
>  		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);
> +	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
> 

-- 
Michał Lowas-Rzechonek <michal.lowas-rzechonek@silvair.com>
Silvair http://silvair.com
Jasnogórska 44, 31-358 Krakow, POLAND

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back
  2020-01-11  6:34   ` Michał Lowas-Rzechonek
@ 2020-01-11  7:19     ` Michał Lowas-Rzechonek
  2020-01-11 15:24     ` Gix, Brian
  1 sibling, 0 replies; 6+ messages in thread
From: Michał Lowas-Rzechonek @ 2020-01-11  7:19 UTC (permalink / raw)
  To: Brian Gix, linux-bluetooth, inga.stotland

On 01/11, Michał Lowas-Rzechonek wrote:
> > @@ -93,10 +94,43 @@ struct pb_close_ind {
> >  	uint8_t reason;
> >  } __packed;
> 
> By the way, why is this struct packed?

... because it's a packet.

Seems like lately I need to think before hitting "send"...

-- 
Michał Lowas-Rzechonek <michal.lowas-rzechonek@silvair.com>
Silvair http://silvair.com
Jasnogórska 44, 31-358 Krakow, POLAND

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back
  2020-01-11  6:34   ` Michał Lowas-Rzechonek
  2020-01-11  7:19     ` Michał Lowas-Rzechonek
@ 2020-01-11 15:24     ` Gix, Brian
  1 sibling, 0 replies; 6+ messages in thread
From: Gix, Brian @ 2020-01-11 15:24 UTC (permalink / raw)
  To: Michał Lowas-Rzechonek; +Cc: linux-bluetooth, Stotland, Inga


> On Jan 10, 2020, at 10:34 PM, Michał Lowas-Rzechonek <michal.lowas-rzechonek@silvair.com> wrote:
> 
> Hi Brian,
> 
>> On 01/10, Brian Gix wrote:
>> This allows one App using the mesh daemon to provision another.
>> ---
>> mesh/pb-adv.c | 163 ++++++++++++++++++++++++++++++++++++++++----------
>> 1 file changed, 130 insertions(+), 33 deletions(-)
>> 
>> diff --git a/mesh/pb-adv.c b/mesh/pb-adv.c
>> index c9a2a6574..4767908f3 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,43 @@ struct pb_close_ind {
>>    uint8_t reason;
>> } __packed;
> 
> By the way, why is this struct packed?

As you later noted, it is an OTA packet.

> 
>> 
>> -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 pb_adv_send(struct pb_adv_session *session,
>> +                    uint8_t count, uint16_t interval,
>> +                    void *data, uint16_t len)
>> +{
>> +    struct idle_rx *rx = l_new(struct idle_rx, 1);
> 
> This leaks memory.

Whoops... v4 upcoming.

> 
>> +
>> +    if (session->loop) {
>> +        rx = l_new(struct idle_rx, 1);
>> +        rx->session = session->loop;
>> +        rx->len = len;
>> +        memcpy(rx->data, data, len);
>> +
>> +        l_idle_oneshot(idle_rx_adv, rx, NULL);
>> +    } else
>> +        mesh_send_pkt(count, interval, data, len);
>> +}
>> +
>> static void send_adv_segs(struct pb_adv_session *session, const uint8_t *data,
>>                            uint16_t size)
>> {
>> @@ -135,7 +169,9 @@ 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);
>> +
>> +    pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 200,
>> +                            buf, init_size + 10);
>> 
>>    consumed = init_size;
>> 
>> @@ -152,19 +188,39 @@ 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,
>> +        pb_adv_send(session, 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);
>> @@ -173,8 +229,8 @@ 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;
>> +    cb = session->close_cb;
>> +    user_data = session->user_data;
>>    cb(user_data, 1);
>> }
>> 
>> @@ -182,7 +238,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 +257,8 @@ 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,
>> +
>> +    pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 500, &open_req,
>>                            sizeof(open_req));
>> }
>> 
>> @@ -214,7 +271,8 @@ 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,
>> +
>> +    pb_adv_send(session, MESH_IO_TX_COUNT_UNLIMITED, 500, &open_cfm,
>>                            sizeof(open_cfm));
>> }
>> 
>> @@ -222,18 +280,21 @@ 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));
>> +    pb_adv_send(session, 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 +303,8 @@ 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));
>> +
>> +    pb_adv_send(session, 10, 100, &close_ind, sizeof(close_ind));
>> }
>> 
>> static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
>> @@ -254,7 +316,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);
>> @@ -337,8 +399,8 @@ static void pb_adv_packet(void *user_data, const uint8_t *pkt, uint16_t len)
>>            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 +504,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;
>> +
>> +    /* Reject looping to more than one session or with same role*/
>> +    if (old_session && (old_session->loop ||
>> +                    old_session->initiator == initiator))
>>        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);
>> +    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
>> 
> 
> -- 
> Michał Lowas-Rzechonek <michal.lowas-rzechonek@silvair.com>
> Silvair http://silvair.com
> Jasnogórska 44, 31-358 Krakow, POLAND

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-01-11 15:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-11  1:38 [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism Brian Gix
2020-01-11  1:38 ` [PATCH BlueZ v3 1/1] mesh: Implement provisioning loop-back Brian Gix
2020-01-11  6:34   ` Michał Lowas-Rzechonek
2020-01-11  7:19     ` Michał Lowas-Rzechonek
2020-01-11 15:24     ` Gix, Brian
2020-01-11  6:32 ` [PATCH BlueZ v3 0/1] Add Mesh Provisioning Loop-Back mechanism Michał Lowas-Rzechonek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).