All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes
@ 2020-01-16 16:39 Brian Gix
  2020-01-16 16:39 ` [PATCH BlueZ v3 1/1] " Brian Gix
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Brian Gix @ 2020-01-16 16:39 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: brian.gix, inga.stotland, michal.lowas-rzechonek, jakub.witowski

Version 3 -
Adjusted comments for clarity, and adjusted the cache-write code
to not rewrite the NVM storage if nothing has changed, to prevent
NVM thrashing if we do reach the out-of-range boundary.

I would like both Michal and Jakub's comments on these adjustments.

Jakub Witowski (1):
  mesh: Sequence number related fixes

 mesh/crypto.c           |  3 +++
 mesh/mesh-config-json.c | 16 ++++++++++++++--
 mesh/net.c              |  9 +++++++++
 3 files changed, 26 insertions(+), 2 deletions(-)

-- 
2.21.1


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

* [PATCH BlueZ v3 1/1] mesh: Sequence number related fixes
  2020-01-16 16:39 [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes Brian Gix
@ 2020-01-16 16:39 ` Brian Gix
  2020-01-16 18:16 ` [PATCH BlueZ v3 0/1] " Michał Lowas-Rzechonek
  2020-01-16 20:51 ` Gix, Brian
  2 siblings, 0 replies; 4+ messages in thread
From: Brian Gix @ 2020-01-16 16:39 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: brian.gix, inga.stotland, michal.lowas-rzechonek, jakub.witowski

From: Jakub Witowski <jakub.witowski@silvair.com>

---
 mesh/crypto.c           |  3 +++
 mesh/mesh-config-json.c | 16 ++++++++++++++--
 mesh/net.c              |  9 +++++++++
 3 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/mesh/crypto.c b/mesh/crypto.c
index 8ea906ac9..596a289f9 100644
--- a/mesh/crypto.c
+++ b/mesh/crypto.c
@@ -637,6 +637,9 @@ bool mesh_crypto_packet_build(bool ctl, uint8_t ttl,
 	uint32_t hdr;
 	size_t n;
 
+	if (seq > SEQ_MASK)
+		return false;
+
 	l_put_be32(seq, packet + 1);
 	packet[1] = (ctl ? CTL : 0) | (ttl & TTL_MASK);
 
diff --git a/mesh/mesh-config-json.c b/mesh/mesh-config-json.c
index 755caab0e..5855149e3 100644
--- a/mesh/mesh-config-json.c
+++ b/mesh/mesh-config-json.c
@@ -40,6 +40,7 @@
 #include "mesh/mesh-defs.h"
 #include "mesh/util.h"
 #include "mesh/mesh-config.h"
+#include "mesh/net.h"
 
 /* To prevent local node JSON cache thrashing, minimum update times */
 #define MIN_SEQ_CACHE_TRIGGER	32
@@ -365,7 +366,7 @@ static bool read_seq_number(json_object *jobj, uint32_t *seq_number)
 	if (!val && errno == EINVAL)
 		return false;
 
-	if (val < 0 || val > 0xffffff)
+	if (val < 0 || val > SEQ_MASK + 1)
 		return false;
 
 	*seq_number = (uint32_t) val;
@@ -2019,10 +2020,21 @@ bool mesh_config_write_seq_number(struct mesh_config *cfg, uint32_t seq,
 		if (cached < seq + MIN_SEQ_CACHE_VALUE)
 			cached = seq + MIN_SEQ_CACHE_VALUE;
 
-		l_debug("Seq Cache: %d -> %d", seq, cached);
+		/* Cap the seq cache maximum to fixed out-of-range value.
+		 * If daemon restarts with out-of-range value, no packets
+		 * are to be sent until IV Update procedure completes.
+		 */
+		if (cached > SEQ_MASK)
+			cached = SEQ_MASK + 1;
 
 		cfg->write_seq = seq;
 
+		/* Don't rewrite NVM storage if unchanged */
+		if (value == (int) cached)
+			return true;
+
+		l_debug("Seq Cache: %d -> %d", seq, cached);
+
 		if (!write_int(cfg->jnode, "sequenceNumber", cached))
 		    return false;
 
diff --git a/mesh/net.c b/mesh/net.c
index f0f0dbdbd..35388beec 100644
--- a/mesh/net.c
+++ b/mesh/net.c
@@ -511,6 +511,15 @@ uint32_t mesh_net_next_seq_num(struct mesh_net *net)
 {
 	uint32_t seq = net->seq_num++;
 
+	/* Cap out-of-range seq_num max value to +1. Out of range
+	 * seq_nums will not be sent as they would violate spec.
+	 * This condition signals a runaway seq_num condition, and
+	 * the node must wait for a completed IV Index update procedure
+	 * before it can send again.
+	 */
+	if (net->seq_num > SEQ_MASK)
+		net->seq_num = SEQ_MASK + 1;
+
 	node_set_sequence_number(net->node, net->seq_num);
 	return seq;
 }
-- 
2.21.1


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

* Re: [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes
  2020-01-16 16:39 [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes Brian Gix
  2020-01-16 16:39 ` [PATCH BlueZ v3 1/1] " Brian Gix
@ 2020-01-16 18:16 ` Michał Lowas-Rzechonek
  2020-01-16 20:51 ` Gix, Brian
  2 siblings, 0 replies; 4+ messages in thread
From: Michał Lowas-Rzechonek @ 2020-01-16 18:16 UTC (permalink / raw)
  To: Brian Gix; +Cc: linux-bluetooth, inga.stotland, jakub.witowski

Brian, Jakub,

On 01/16, Brian Gix wrote:
> Adjusted comments for clarity,

Thank you.

> and adjusted the cache-write code to not rewrite the NVM storage if
> nothing has changed, to prevent NVM thrashing if we do reach the
> out-of-range boundary

True.

> I would like both Michal and Jakub's comments on these adjustments.

Thanks again, LGTM.

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

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

* Re: [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes
  2020-01-16 16:39 [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes Brian Gix
  2020-01-16 16:39 ` [PATCH BlueZ v3 1/1] " Brian Gix
  2020-01-16 18:16 ` [PATCH BlueZ v3 0/1] " Michał Lowas-Rzechonek
@ 2020-01-16 20:51 ` Gix, Brian
  2 siblings, 0 replies; 4+ messages in thread
From: Gix, Brian @ 2020-01-16 20:51 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: michal.lowas-rzechonek, jakub.witowski, Stotland, Inga

Applied
On Thu, 2020-01-16 at 08:39 -0800, Brian Gix wrote:
> Version 3 -
> Adjusted comments for clarity, and adjusted the cache-write code
> to not rewrite the NVM storage if nothing has changed, to prevent
> NVM thrashing if we do reach the out-of-range boundary.
> 
> I would like both Michal and Jakub's comments on these adjustments.
> 
> Jakub Witowski (1):
>   mesh: Sequence number related fixes
> 
>  mesh/crypto.c           |  3 +++
>  mesh/mesh-config-json.c | 16 ++++++++++++++--
>  mesh/net.c              |  9 +++++++++
>  3 files changed, 26 insertions(+), 2 deletions(-)
> 

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

end of thread, other threads:[~2020-01-16 20:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16 16:39 [PATCH BlueZ v3 0/1] mesh: Sequence number related fixes Brian Gix
2020-01-16 16:39 ` [PATCH BlueZ v3 1/1] " Brian Gix
2020-01-16 18:16 ` [PATCH BlueZ v3 0/1] " Michał Lowas-Rzechonek
2020-01-16 20:51 ` Gix, Brian

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.