Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH Bluez] tools/mesh-cfgclient: add unbind command
@ 2019-11-11  0:24 Aurelien Jarno
  2019-11-11 18:26 ` Stotland, Inga
  2019-11-12 17:55 ` Gix, Brian
  0 siblings, 2 replies; 4+ messages in thread
From: Aurelien Jarno @ 2019-11-11  0:24 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Aurelien Jarno

This is basically a copy of cmd_bind with OP_MODEL_APP_BIND replaced by
OP_MODEL_APP_UNBIND as cmds[] already has code to handle it.
---
 tools/mesh/cfgcli.c | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c
index 086998910..a4de42943 100644
--- a/tools/mesh/cfgcli.c
+++ b/tools/mesh/cfgcli.c
@@ -897,6 +897,40 @@ static void cmd_bind(int argc, char *argv[])
 	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
 }
 
+static void cmd_unbind(int argc, char *argv[])
+{
+	uint16_t n;
+	uint8_t msg[32];
+	int parm_cnt;
+
+	parm_cnt = read_input_parameters(argc, argv);
+	if (parm_cnt != 3 && parm_cnt != 4) {
+		bt_shell_printf("Bad arguments\n");
+		return bt_shell_noninteractive_quit(EXIT_FAILURE);
+	}
+
+	n = mesh_opcode_set(OP_MODEL_APP_UNBIND, msg);
+
+	put_le16(parms[0], msg + n);
+	n += 2;
+	put_le16(parms[1], msg + n);
+	n += 2;
+
+	if (parm_cnt == 4) {
+		put_le16(parms[3], msg + n);
+		put_le16(parms[2], msg + n + 2);
+		n += 4;
+	} else {
+		put_le16(parms[2], msg + n);
+		n += 2;
+	}
+
+	if (!config_send(msg, n, OP_MODEL_APP_UNBIND))
+		return bt_shell_noninteractive_quit(EXIT_FAILURE);
+
+	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
+}
+
 static void cmd_beacon_set(int argc, char *argv[])
 {
 	uint16_t n;
@@ -1335,6 +1369,8 @@ static const struct bt_shell_menu cfg_menu = {
 				"Delete application key"},
 	{"bind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_bind,
 				"Bind app key to a model"},
+	{"unbind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_unbind,
+				"Remove app key from a model"},
 	{"mod-appidx-get", "<ele_addr> <model id>", cmd_mod_appidx_get,
 				"Get model app_idx"},
 	{"ttl-set", "<ttl>", cmd_ttl_set,
-- 
2.24.0


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

* Re: [PATCH Bluez] tools/mesh-cfgclient: add unbind command
  2019-11-11  0:24 [PATCH Bluez] tools/mesh-cfgclient: add unbind command Aurelien Jarno
@ 2019-11-11 18:26 ` Stotland, Inga
  2019-11-12 17:55 ` Gix, Brian
  1 sibling, 0 replies; 4+ messages in thread
From: Stotland, Inga @ 2019-11-11 18:26 UTC (permalink / raw)
  To: aurelien@aurel32.net, linux-bluetooth@vger.kernel.org

Hi Aurelien,

On Mon, 2019-11-11 at 01:24 +0100, Aurelien Jarno wrote:
> This is basically a copy of cmd_bind with OP_MODEL_APP_BIND replaced by
> OP_MODEL_APP_UNBIND as cmds[] already has code to handle it.
> ---
>  tools/mesh/cfgcli.c | 36 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 36 insertions(+)
> 
> diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c
> index 086998910..a4de42943 100644
> --- a/tools/mesh/cfgcli.c
> +++ b/tools/mesh/cfgcli.c
> @@ -897,6 +897,40 @@ static void cmd_bind(int argc, char *argv[])
>  	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
>  }
>  
> +static void cmd_unbind(int argc, char *argv[])
> +{
> +	uint16_t n;
> +	uint8_t msg[32];
> +	int parm_cnt;
> +
> +	parm_cnt = read_input_parameters(argc, argv);
> +	if (parm_cnt != 3 && parm_cnt != 4) {
> +		bt_shell_printf("Bad arguments\n");
> +		return bt_shell_noninteractive_quit(EXIT_FAILURE);
> +	}
> +
> +	n = mesh_opcode_set(OP_MODEL_APP_UNBIND, msg);
> +
> +	put_le16(parms[0], msg + n);
> +	n += 2;
> +	put_le16(parms[1], msg + n);
> +	n += 2;
> +
> +	if (parm_cnt == 4) {
> +		put_le16(parms[3], msg + n);
> +		put_le16(parms[2], msg + n + 2);
> +		n += 4;
> +	} else {
> +		put_le16(parms[2], msg + n);
> +		n += 2;
> +	}
> +
> +	if (!config_send(msg, n, OP_MODEL_APP_UNBIND))
> +		return bt_shell_noninteractive_quit(EXIT_FAILURE);
> +
> +	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
> +}

Since cmd_bind() & and cmd_unbind()
are virtually identical with the exception of the opcode, let's combine
them to call one routine, e.g.
cmd_add_binding() and cmd delete_binding() would call
cmd_bind(int argc, char*argv[], int opcode)

> +
>  static void cmd_beacon_set(int argc, char *argv[])
>  {
>  	uint16_t n;
> @@ -1335,6 +1369,8 @@ static const struct bt_shell_menu cfg_menu = {
>  				"Delete application key"},
>  	{"bind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_bind,
>  				"Bind app key to a model"},
> +	{"unbind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_unbind,
> +				"Remove app key from a model"},
>  	{"mod-appidx-get", "<ele_addr> <model id>", cmd_mod_appidx_get,
>  				"Get model app_idx"},
>  	{"ttl-set", "<ttl>", cmd_ttl_set,

Best regards,
Inga

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

* Re: [PATCH Bluez] tools/mesh-cfgclient: add unbind command
  2019-11-11  0:24 [PATCH Bluez] tools/mesh-cfgclient: add unbind command Aurelien Jarno
  2019-11-11 18:26 ` Stotland, Inga
@ 2019-11-12 17:55 ` Gix, Brian
  2019-11-12 18:02   ` Gix, Brian
  1 sibling, 1 reply; 4+ messages in thread
From: Gix, Brian @ 2019-11-12 17:55 UTC (permalink / raw)
  To: aurelien@aurel32.net, linux-bluetooth@vger.kernel.org

Applied, Thanks

On Mon, 2019-11-11 at 01:24 +0100, Aurelien Jarno wrote:
> This is basically a copy of cmd_bind with OP_MODEL_APP_BIND replaced by
> OP_MODEL_APP_UNBIND as cmds[] already has code to handle it.
> ---
>  tools/mesh/cfgcli.c | 36 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 36 insertions(+)
> 
> diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c
> index 086998910..a4de42943 100644
> --- a/tools/mesh/cfgcli.c
> +++ b/tools/mesh/cfgcli.c
> @@ -897,6 +897,40 @@ static void cmd_bind(int argc, char *argv[])
>  	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
>  }
>  
> +static void cmd_unbind(int argc, char *argv[])
> +{
> +	uint16_t n;
> +	uint8_t msg[32];
> +	int parm_cnt;
> +
> +	parm_cnt = read_input_parameters(argc, argv);
> +	if (parm_cnt != 3 && parm_cnt != 4) {
> +		bt_shell_printf("Bad arguments\n");
> +		return bt_shell_noninteractive_quit(EXIT_FAILURE);
> +	}
> +
> +	n = mesh_opcode_set(OP_MODEL_APP_UNBIND, msg);
> +
> +	put_le16(parms[0], msg + n);
> +	n += 2;
> +	put_le16(parms[1], msg + n);
> +	n += 2;
> +
> +	if (parm_cnt == 4) {
> +		put_le16(parms[3], msg + n);
> +		put_le16(parms[2], msg + n + 2);
> +		n += 4;
> +	} else {
> +		put_le16(parms[2], msg + n);
> +		n += 2;
> +	}
> +
> +	if (!config_send(msg, n, OP_MODEL_APP_UNBIND))
> +		return bt_shell_noninteractive_quit(EXIT_FAILURE);
> +
> +	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
> +}
> +
>  static void cmd_beacon_set(int argc, char *argv[])
>  {
>  	uint16_t n;
> @@ -1335,6 +1369,8 @@ static const struct bt_shell_menu cfg_menu = {
>  				"Delete application key"},
>  	{"bind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_bind,
>  				"Bind app key to a model"},
> +	{"unbind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_unbind,
> +				"Remove app key from a model"},
>  	{"mod-appidx-get", "<ele_addr> <model id>", cmd_mod_appidx_get,
>  				"Get model app_idx"},
>  	{"ttl-set", "<ttl>", cmd_ttl_set,

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

* Re: [PATCH Bluez] tools/mesh-cfgclient: add unbind command
  2019-11-12 17:55 ` Gix, Brian
@ 2019-11-12 18:02   ` Gix, Brian
  0 siblings, 0 replies; 4+ messages in thread
From: Gix, Brian @ 2019-11-12 18:02 UTC (permalink / raw)
  To: aurelien@aurel32.net, linux-bluetooth@vger.kernel.org

Actually applied v2 of this patch

On Tue, 2019-11-12 at 17:55 +0000, Gix, Brian wrote:
> Applied, Thanks
> 
> On Mon, 2019-11-11 at 01:24 +0100, Aurelien Jarno wrote:
> > This is basically a copy of cmd_bind with OP_MODEL_APP_BIND replaced by
> > OP_MODEL_APP_UNBIND as cmds[] already has code to handle it.
> > ---
> >  tools/mesh/cfgcli.c | 36 ++++++++++++++++++++++++++++++++++++
> >  1 file changed, 36 insertions(+)
> > 
> > diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c
> > index 086998910..a4de42943 100644
> > --- a/tools/mesh/cfgcli.c
> > +++ b/tools/mesh/cfgcli.c
> > @@ -897,6 +897,40 @@ static void cmd_bind(int argc, char *argv[])
> >  	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
> >  }
> >  
> > +static void cmd_unbind(int argc, char *argv[])
> > +{
> > +	uint16_t n;
> > +	uint8_t msg[32];
> > +	int parm_cnt;
> > +
> > +	parm_cnt = read_input_parameters(argc, argv);
> > +	if (parm_cnt != 3 && parm_cnt != 4) {
> > +		bt_shell_printf("Bad arguments\n");
> > +		return bt_shell_noninteractive_quit(EXIT_FAILURE);
> > +	}
> > +
> > +	n = mesh_opcode_set(OP_MODEL_APP_UNBIND, msg);
> > +
> > +	put_le16(parms[0], msg + n);
> > +	n += 2;
> > +	put_le16(parms[1], msg + n);
> > +	n += 2;
> > +
> > +	if (parm_cnt == 4) {
> > +		put_le16(parms[3], msg + n);
> > +		put_le16(parms[2], msg + n + 2);
> > +		n += 4;
> > +	} else {
> > +		put_le16(parms[2], msg + n);
> > +		n += 2;
> > +	}
> > +
> > +	if (!config_send(msg, n, OP_MODEL_APP_UNBIND))
> > +		return bt_shell_noninteractive_quit(EXIT_FAILURE);
> > +
> > +	return bt_shell_noninteractive_quit(EXIT_SUCCESS);
> > +}
> > +
> >  static void cmd_beacon_set(int argc, char *argv[])
> >  {
> >  	uint16_t n;
> > @@ -1335,6 +1369,8 @@ static const struct bt_shell_menu cfg_menu = {
> >  				"Delete application key"},
> >  	{"bind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_bind,
> >  				"Bind app key to a model"},
> > +	{"unbind", "<ele_addr> <app_idx> <mod_id> [vendor_id]", cmd_unbind,
> > +				"Remove app key from a model"},
> >  	{"mod-appidx-get", "<ele_addr> <model id>", cmd_mod_appidx_get,
> >  				"Get model app_idx"},
> >  	{"ttl-set", "<ttl>", cmd_ttl_set,

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

end of thread, other threads:[~2019-11-12 18:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-11  0:24 [PATCH Bluez] tools/mesh-cfgclient: add unbind command Aurelien Jarno
2019-11-11 18:26 ` Stotland, Inga
2019-11-12 17:55 ` Gix, Brian
2019-11-12 18:02   ` Gix, Brian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox