* [PATCH 1/2] mesh: prov-db: Correct json database parsing
@ 2018-02-16 12:20 Steve Brown
2018-02-16 12:20 ` [PATCH 2/2] mesh: node: Correct minor errors Steve Brown
2018-02-25 18:34 ` [PATCH 1/2] mesh: prov-db: Correct json database parsing Johan Hedberg
0 siblings, 2 replies; 3+ messages in thread
From: Steve Brown @ 2018-02-16 12:20 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Steve Brown
"composition": {
"cid": "0002",
"pid": "0010",
"vid": "0001",
"crpl": "000a",
"features": {
"relay": false,
"proxy": true,
"friend": false,
"lowPower": false
},
"elements": [
{
"elementIndex": 0,
"location": "0001",
"models": ["0000", "0001", "1001"]
}
]
},
---
mesh/prov-db.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/mesh/prov-db.c b/mesh/prov-db.c
index 012705134..019b4e173 100644
--- a/mesh/prov-db.c
+++ b/mesh/prov-db.c
@@ -687,7 +687,7 @@ bool prov_db_add_node_composition(struct mesh_node *node, uint8_t *data,
put_uint16(jcomp, "cid", comp->cid);
put_uint16(jcomp, "pid", comp->pid);
- put_uint16(jcomp, "vid", comp->pid);
+ put_uint16(jcomp, "vid", comp->vid);
put_uint16(jcomp, "crpl", comp->crpl);
jfeatures = json_object_new_object();
@@ -1286,6 +1286,7 @@ static bool parse_node_composition(struct mesh_node *node, json_object *jcomp)
{
json_object *jvalue;
json_object *jelements;
+ json_object *jfeatures;
json_bool enable;
char *str;
struct mesh_node_composition comp;
@@ -1305,7 +1306,7 @@ static bool parse_node_composition(struct mesh_node *node, json_object *jcomp)
str = (char *)json_object_get_string(jvalue);
- if (sscanf(str, "%04hx", &comp.vid) != 1)
+ if (sscanf(str, "%04hx", &comp.pid) != 1)
return false;
json_object_object_get_ex(jcomp, "vid", &jvalue);
@@ -1327,19 +1328,24 @@ static bool parse_node_composition(struct mesh_node *node, json_object *jcomp)
return false;
/* Extract features */
- json_object_object_get_ex(jcomp, "relay", &jvalue);
+
+ json_object_object_get_ex(jcomp, "features", &jfeatures);
+ if (!jfeatures)
+ return false;
+
+ json_object_object_get_ex(jfeatures, "relay", &jvalue);
enable = json_object_get_boolean(jvalue);
comp.relay = (enable) ? true : false;
- json_object_object_get_ex(jcomp, "proxy", &jvalue);
+ json_object_object_get_ex(jfeatures, "proxy", &jvalue);
enable = json_object_get_boolean(jvalue);
comp.proxy = (enable) ? true : false;
- json_object_object_get_ex(jcomp, "friend", &jvalue);
+ json_object_object_get_ex(jfeatures, "friend", &jvalue);
enable = json_object_get_boolean(jvalue);
comp.friend = (enable) ? true : false;
- json_object_object_get_ex(jcomp, "lowPower", &jvalue);
+ json_object_object_get_ex(jfeatures, "lowPower", &jvalue);
enable = json_object_get_boolean(jvalue);
comp.lpn = (enable) ? true : false;
--
2.14.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] mesh: node: Correct minor errors
2018-02-16 12:20 [PATCH 1/2] mesh: prov-db: Correct json database parsing Steve Brown
@ 2018-02-16 12:20 ` Steve Brown
2018-02-25 18:34 ` [PATCH 1/2] mesh: prov-db: Correct json database parsing Johan Hedberg
1 sibling, 0 replies; 3+ messages in thread
From: Steve Brown @ 2018-02-16 12:20 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Steve Brown
Correct length computation in node_parse_composition()
Correct return value in node_set_model()
An existing node is not an error
---
mesh/node.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mesh/node.c b/mesh/node.c
index fc8898c49..9ff741962 100644
--- a/mesh/node.c
+++ b/mesh/node.c
@@ -417,7 +417,7 @@ bool node_parse_composition(struct mesh_node *node, uint8_t *data, uint16_t len)
m = *data++;
v = *data++;
- len -= 4;
+ len -= 2;
while (len >= 2 && m--) {
mod_id = get_le16(data);
@@ -691,7 +691,7 @@ bool node_set_model(struct mesh_node *node, uint8_t ele_idx, uint32_t id)
l = g_list_find_custom(ele->models, GUINT_TO_POINTER(id),
match_model_id);
if (l)
- return false;
+ return true;
model = g_malloc0(sizeof(struct mesh_model));
if (!model)
--
2.14.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] mesh: prov-db: Correct json database parsing
2018-02-16 12:20 [PATCH 1/2] mesh: prov-db: Correct json database parsing Steve Brown
2018-02-16 12:20 ` [PATCH 2/2] mesh: node: Correct minor errors Steve Brown
@ 2018-02-25 18:34 ` Johan Hedberg
1 sibling, 0 replies; 3+ messages in thread
From: Johan Hedberg @ 2018-02-25 18:34 UTC (permalink / raw)
To: Steve Brown; +Cc: linux-bluetooth
Hi Steve,
On Fri, Feb 16, 2018, Steve Brown wrote:
> "composition": {
> "cid": "0002",
> "pid": "0010",
> "vid": "0001",
> "crpl": "000a",
> "features": {
> "relay": false,
> "proxy": true,
> "friend": false,
> "lowPower": false
> },
> "elements": [
> {
> "elementIndex": 0,
> "location": "0001",
> "models": ["0000", "0001", "1001"]
> }
> ]
> },
> ---
> mesh/prov-db.c | 18 ++++++++++++------
> 1 file changed, 12 insertions(+), 6 deletions(-)
Both patches in this set have been applied. Thanks.
Johan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-02-25 18:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-16 12:20 [PATCH 1/2] mesh: prov-db: Correct json database parsing Steve Brown
2018-02-16 12:20 ` [PATCH 2/2] mesh: node: Correct minor errors Steve Brown
2018-02-25 18:34 ` [PATCH 1/2] mesh: prov-db: Correct json database parsing Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox