* [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string
@ 2024-08-29 13:25 Iulia Tanasescu
2024-08-29 13:25 ` [PATCH BlueZ 1/2] " Iulia Tanasescu
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Iulia Tanasescu @ 2024-08-29 13:25 UTC (permalink / raw)
To: linux-bluetooth
Cc: claudia.rosu, mihai-octavian.urzica, vlad.pruteanu,
andrei.istodorescu, luiz.dentz, Iulia Tanasescu
Currently, the user sets the Broadcast Code as an array of bytes
when prompted from the assistant submenu. However, the Bluetooth
Core Specification requires that, on the UI level, the Broadcast
Code shall be represented as a string (Vol 3, Part C, 3.2.6).
This patch makes the Broadcast Code be parsed as a string from
the assistant prompt. The bluetoothctl-assistant.rst is also
updated.
The bluetoothctl log below shows a Broadcast
Assistant pushing an encrypted stream to a peer:
client/bluetoothctl
[bluetooth]# [CHG] Controller 00:60:37:31:7E:3F Pairable: yes
[bluetooth]# AdvertisementMonitor path registered
[bluetooth]# scan on
[bluetooth]# [NEW] Device 00:60:37:31:7E:3F 00-60-37-31-7E-3F
[bluetooth]# connect 00:60:37:31:7E:3F
Attempting to connect to 00:60:37:31:7E:3F
[CHG] Device 00:60:37:31:7E:3F Connected: yes
[00-60-37-31-7E-3F]# Connection successful
[00-60-37-31-7E-3F]# [NEW] Device 19:9A:7A:71:E5:8B 19-9A-7A-71-E5-8B
[00-60-37-31-7E-3F]# [NEW] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
[00-60-37-31-7E-3F]# assistant.push
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
[Assistant] Enter Metadata (auto/value): a
[Assistant] Enter Broadcast Code (auto/value): Borne House
[00-60-37-31-7E-3F]# [CHG] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
State: pending
[00-60-37-31-7E-3F]# Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
pushed
[00-60-37-31-7E-3F]# [CHG] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
State: requesting
[00-60-37-31-7E-3F]# [CHG] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
State: active
The btmon log below shows the way the Broadcast Code string is converted
into a byte array and sent to the peer via GATT:
bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 28
ATT: Write Command (0x52) len 23
Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
Data[21]: 02018be5717a9a1900db5e3a02ffff010100000000
Opcode: Add Source (0x02)
Source_Address_Type: 1
Source_Address: 19:9A:7A:71:E5:8B
Source_Adv_SID: 0
Broadcast_ID: 0x3a5edb
PA_Sync_State: Synchronize to PA - PAST not available
PA_Interval: 0xffff
Num_Subgroups: 1
Subgroup #0:
BIS_Sync State: 0x00000001
> ACL Data RX: Handle 0 flags 0x01 dlen 2
ATT: Handle Multiple Value Notification (0x23) len 24
Length: 0x0014
Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
Data[20]: 01018be5717a9a1900db5e3a0201010000000000
Source_ID: 1
Source_Address_Type: 1
Source_Address: 19:9A:7A:71:E5:8B
Source_Adv_SID: 0
Broadcast_ID: 0x3a5edb
PA_Sync_State: Synchronized to PA
BIG_Encryption: Broadcast_Code required
Num_Subgroups: 1
Subgroup #0:
BIS_Sync State: 0x00000000
bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 25
ATT: Write Command (0x52) len 20
Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
Data[18]: 040142c3b8726e6520486f75736500000000
Opcode: Set Broadcast_Code (0x04)
Source_ID: 1
Broadcast_Code[16]: 426f726e6520486f7573650000000000
> ACL Data RX: Handle 0 flags 0x01 dlen 2
ATT: Handle Multiple Value Notification (0x23) len 24
Length: 0x0014
Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
Data[20]: 01018be5717a9a1900db5e3a0202010100000000
Source_ID: 1
Source_Address_Type: 1
Source_Address: 19:9A:7A:71:E5:8B
Source_Adv_SID: 0
Broadcast_ID: 0x3a5edb
PA_Sync_State: Synchronized to PA
BIG_Encryption: Decrypting
Num_Subgroups: 1
Subgroup #0:
BIS_Sync State: 0x00000001
Iulia Tanasescu (2):
client/assistant: Enter Broadcast Code as string
bluetoothctl-assistant.1: Update push command example
client/assistant.c | 24 ++++++++++++++----------
client/bluetoothctl-assistant.rst | 16 ++++++++++------
2 files changed, 24 insertions(+), 16 deletions(-)
base-commit: 4ed7060ca9dfcc89c55801f818b0b43db6f5acdd
--
2.39.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH BlueZ 1/2] client/assistant: Enter Broadcast Code as string
2024-08-29 13:25 [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string Iulia Tanasescu
@ 2024-08-29 13:25 ` Iulia Tanasescu
2024-08-29 15:41 ` bluez.test.bot
2024-08-29 15:50 ` [PATCH BlueZ 1/2] " Luiz Augusto von Dentz
2024-08-29 13:25 ` [PATCH BlueZ 2/2] bluetoothctl-assistant.1: Update push command example Iulia Tanasescu
2024-09-09 17:30 ` [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string patchwork-bot+bluetooth
2 siblings, 2 replies; 7+ messages in thread
From: Iulia Tanasescu @ 2024-08-29 13:25 UTC (permalink / raw)
To: linux-bluetooth
Cc: claudia.rosu, mihai-octavian.urzica, vlad.pruteanu,
andrei.istodorescu, luiz.dentz, Iulia Tanasescu
Currently, the user sets the Broadcast Code as an array of bytes
when prompted from the assistant submenu. However, the Bluetooth
Core Specification requires that, on the UI level, the Broadcast
Code shall be represented as a string (Vol 3, Part C, 3.2.6).
This commit makes the Broadcast Code be parsed as a string from
the assistant prompt. The bluetoothctl log below shows a Broadcast
Assistant pushing an encrypted stream to a peer:
client/bluetoothctl
[bluetooth]# [CHG] Controller 00:60:37:31:7E:3F Pairable: yes
[bluetooth]# AdvertisementMonitor path registered
[bluetooth]# scan on
[bluetooth]# [NEW] Device 00:60:37:31:7E:3F 00-60-37-31-7E-3F
[bluetooth]# connect 00:60:37:31:7E:3F
Attempting to connect to 00:60:37:31:7E:3F
[CHG] Device 00:60:37:31:7E:3F Connected: yes
[00-60-37-31-7E-3F]# Connection successful
[00-60-37-31-7E-3F]# [NEW] Device 19:9A:7A:71:E5:8B 19-9A-7A-71-E5-8B
[00-60-37-31-7E-3F]# [NEW] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
[00-60-37-31-7E-3F]# assistant.push
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
[Assistant] Enter Metadata (auto/value): a
[Assistant] Enter Broadcast Code (auto/value): Borne House
[00-60-37-31-7E-3F]# [CHG] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
State: pending
[00-60-37-31-7E-3F]# Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
pushed
[00-60-37-31-7E-3F]# [CHG] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
State: requesting
[00-60-37-31-7E-3F]# [CHG] Assistant
/org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
State: active
The btmon log below shows the way the Broadcast Code string is converted
into a byte array and sent to the peer via GATT:
bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 28
ATT: Write Command (0x52) len 23
Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
Data[21]: 02018be5717a9a1900db5e3a02ffff010100000000
Opcode: Add Source (0x02)
Source_Address_Type: 1
Source_Address: 19:9A:7A:71:E5:8B
Source_Adv_SID: 0
Broadcast_ID: 0x3a5edb
PA_Sync_State: Synchronize to PA - PAST not available
PA_Interval: 0xffff
Num_Subgroups: 1
Subgroup #0:
BIS_Sync State: 0x00000001
> ACL Data RX: Handle 0 flags 0x01 dlen 2
ATT: Handle Multiple Value Notification (0x23) len 24
Length: 0x0014
Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
Data[20]: 01018be5717a9a1900db5e3a0201010000000000
Source_ID: 1
Source_Address_Type: 1
Source_Address: 19:9A:7A:71:E5:8B
Source_Adv_SID: 0
Broadcast_ID: 0x3a5edb
PA_Sync_State: Synchronized to PA
BIG_Encryption: Broadcast_Code required
Num_Subgroups: 1
Subgroup #0:
BIS_Sync State: 0x00000000
bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 25
ATT: Write Command (0x52) len 20
Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
Data[18]: 040142c3b8726e6520486f75736500000000
Opcode: Set Broadcast_Code (0x04)
Source_ID: 1
Broadcast_Code[16]: 426f726e6520486f7573650000000000
> ACL Data RX: Handle 0 flags 0x01 dlen 2
ATT: Handle Multiple Value Notification (0x23) len 24
Length: 0x0014
Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
Data[20]: 01018be5717a9a1900db5e3a0202010100000000
Source_ID: 1
Source_Address_Type: 1
Source_Address: 19:9A:7A:71:E5:8B
Source_Adv_SID: 0
Broadcast_ID: 0x3a5edb
PA_Sync_State: Synchronized to PA
BIG_Encryption: Decrypting
Num_Subgroups: 1
Subgroup #0:
BIS_Sync State: 0x00000001
---
client/assistant.c | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/client/assistant.c b/client/assistant.c
index 77fb78329..16e94664a 100644
--- a/client/assistant.c
+++ b/client/assistant.c
@@ -255,28 +255,32 @@ static void push_reply(DBusMessage *message, void *user_data)
static void assistant_set_bcode_cfg(const char *input, void *user_data)
{
struct assistant_config *cfg = user_data;
- char *endptr;
- uint8_t *bcode = cfg->qos.bcast.bcode;
if (!strcasecmp(input, "a") || !strcasecmp(input, "auto")) {
- memset(bcode, 0, BCODE_LEN);
+ memset(cfg->qos.bcast.bcode, 0, BCODE_LEN);
} else {
- bcode[0] = strtol(input, &endptr, 16);
+ if (strlen(input) > BCODE_LEN) {
+ bt_shell_printf("Input string too long %s\n", input);
+ goto fail;
+ }
- for (uint8_t i = 1; i < BCODE_LEN; i++)
- bcode[i] = strtol(endptr, &endptr, 16);
+ memcpy(cfg->qos.bcast.bcode, input, strlen(input));
}
if (!g_dbus_proxy_method_call(cfg->proxy, "Push",
push_setup, push_reply,
cfg, NULL)) {
bt_shell_printf("Failed to push assistant\n");
+ goto fail;
+ }
- free(cfg->meta);
- g_free(cfg);
+ return;
- return bt_shell_noninteractive_quit(EXIT_FAILURE);
- }
+fail:
+ free(cfg->meta);
+ g_free(cfg);
+
+ return bt_shell_noninteractive_quit(EXIT_FAILURE);
}
static void assistant_set_metadata_cfg(const char *input, void *user_data)
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH BlueZ 2/2] bluetoothctl-assistant.1: Update push command example
2024-08-29 13:25 [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string Iulia Tanasescu
2024-08-29 13:25 ` [PATCH BlueZ 1/2] " Iulia Tanasescu
@ 2024-08-29 13:25 ` Iulia Tanasescu
2024-09-09 17:30 ` [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string patchwork-bot+bluetooth
2 siblings, 0 replies; 7+ messages in thread
From: Iulia Tanasescu @ 2024-08-29 13:25 UTC (permalink / raw)
To: linux-bluetooth
Cc: claudia.rosu, mihai-octavian.urzica, vlad.pruteanu,
andrei.istodorescu, luiz.dentz, Iulia Tanasescu
This updates the push command example to enter the Broadcast Code,
since it should be entered as a string instead of a byte array.
---
client/bluetoothctl-assistant.rst | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/client/bluetoothctl-assistant.rst b/client/bluetoothctl-assistant.rst
index b4f7d039b..fb8c3a0d8 100644
--- a/client/bluetoothctl-assistant.rst
+++ b/client/bluetoothctl-assistant.rst
@@ -41,16 +41,20 @@ the default metadata will be overwritten by the LTVs
entered by the user.
If the stream is encrypted, the user will also be prompted
-to enter the Broadcast Code. This is a 16 bytes array which
-will be used by the peer to decrypt the stream. If the auto
-value is chosen, a zero filled array will be sent to the peer.
-Otherwise, the bytes entered by the user will be sent.
+to enter the Broadcast Code. This is the key to decrypt the
+stream. On the UI level, the Broadcast Code shall be represented
+as a string of at least 4 octets, and no more than 16 octets
+when represented in UTF-8. The string will be sent to the peer
+via GATT as an array of 16 octets.
+
+If the auto value is chosen when prompted for the Broadcast
+Code, a zero filled array will be sent to the peer. Otherwise,
+the string entered by the user will be sent as an array of bytes.
:Usage: **# push <assistant>**
:Example: | **# push /org/bluez/hci0/src_05_1F_EE_F3_F8_7D/dev_00_60_37_31_7E_3F/bis1**
| **[Assistant] Enter Metadata (auto/value): 0x03 0x02 0x04 0x00**
- | **[Assistant] Enter Broadcast Code (auto/value): 0x01 0x02 0x68 0x05 0x53
- 0xf1 0x41 0x5a 0xa2 0x65 0xbb 0xaf 0xc6 0xea 0x03 0xb8**
+ | **[Assistant] Enter Broadcast Code (auto/value): Borne House**
RESOURCES
=========
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* RE: client/assistant: Enter Broadcast Code as string
2024-08-29 13:25 ` [PATCH BlueZ 1/2] " Iulia Tanasescu
@ 2024-08-29 15:41 ` bluez.test.bot
2024-08-29 15:50 ` [PATCH BlueZ 1/2] " Luiz Augusto von Dentz
1 sibling, 0 replies; 7+ messages in thread
From: bluez.test.bot @ 2024-08-29 15:41 UTC (permalink / raw)
To: linux-bluetooth, iulia.tanasescu
[-- Attachment #1: Type: text/plain, Size: 949 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=884775
---Test result---
Test Summary:
CheckPatch PASS 1.61 seconds
GitLint PASS 0.38 seconds
BuildEll PASS 25.57 seconds
BluezMake PASS 1900.51 seconds
MakeCheck PASS 13.68 seconds
MakeDistcheck PASS 187.15 seconds
CheckValgrind PASS 261.31 seconds
CheckSmatch PASS 366.95 seconds
bluezmakeextell PASS 126.65 seconds
IncrementalBuild PASS 3394.10 seconds
ScanBuild PASS 1079.53 seconds
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH BlueZ 1/2] client/assistant: Enter Broadcast Code as string
2024-08-29 13:25 ` [PATCH BlueZ 1/2] " Iulia Tanasescu
2024-08-29 15:41 ` bluez.test.bot
@ 2024-08-29 15:50 ` Luiz Augusto von Dentz
2024-08-30 10:38 ` Iulia Tanasescu
1 sibling, 1 reply; 7+ messages in thread
From: Luiz Augusto von Dentz @ 2024-08-29 15:50 UTC (permalink / raw)
To: Iulia Tanasescu
Cc: linux-bluetooth, claudia.rosu, mihai-octavian.urzica,
vlad.pruteanu, andrei.istodorescu
Hi Iulia,
On Thu, Aug 29, 2024 at 9:25 AM Iulia Tanasescu <iulia.tanasescu@nxp.com> wrote:
>
> Currently, the user sets the Broadcast Code as an array of bytes
> when prompted from the assistant submenu. However, the Bluetooth
> Core Specification requires that, on the UI level, the Broadcast
> Code shall be represented as a string (Vol 3, Part C, 3.2.6).
Interesting, but we could go one step further can hash the string
using bt_crypto_AES-CMAC since that would always generate a 16 bits
hash, we actually have done something similar for SIRK on main.conf:
https://github.com/bluez/bluez/blob/master/src/main.conf#L268
> This commit makes the Broadcast Code be parsed as a string from
> the assistant prompt. The bluetoothctl log below shows a Broadcast
> Assistant pushing an encrypted stream to a peer:
>
> client/bluetoothctl
> [bluetooth]# [CHG] Controller 00:60:37:31:7E:3F Pairable: yes
> [bluetooth]# AdvertisementMonitor path registered
> [bluetooth]# scan on
> [bluetooth]# [NEW] Device 00:60:37:31:7E:3F 00-60-37-31-7E-3F
> [bluetooth]# connect 00:60:37:31:7E:3F
> Attempting to connect to 00:60:37:31:7E:3F
> [CHG] Device 00:60:37:31:7E:3F Connected: yes
> [00-60-37-31-7E-3F]# Connection successful
> [00-60-37-31-7E-3F]# [NEW] Device 19:9A:7A:71:E5:8B 19-9A-7A-71-E5-8B
> [00-60-37-31-7E-3F]# [NEW] Assistant
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> [00-60-37-31-7E-3F]# assistant.push
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> [Assistant] Enter Metadata (auto/value): a
> [Assistant] Enter Broadcast Code (auto/value): Borne House
> [00-60-37-31-7E-3F]# [CHG] Assistant
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> State: pending
> [00-60-37-31-7E-3F]# Assistant
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> pushed
> [00-60-37-31-7E-3F]# [CHG] Assistant
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> State: requesting
> [00-60-37-31-7E-3F]# [CHG] Assistant
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> State: active
>
> The btmon log below shows the way the Broadcast Code string is converted
> into a byte array and sent to the peer via GATT:
>
> bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 28
> ATT: Write Command (0x52) len 23
> Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
> Data[21]: 02018be5717a9a1900db5e3a02ffff010100000000
> Opcode: Add Source (0x02)
> Source_Address_Type: 1
> Source_Address: 19:9A:7A:71:E5:8B
> Source_Adv_SID: 0
> Broadcast_ID: 0x3a5edb
> PA_Sync_State: Synchronize to PA - PAST not available
> PA_Interval: 0xffff
> Num_Subgroups: 1
> Subgroup #0:
> BIS_Sync State: 0x00000001
> > ACL Data RX: Handle 0 flags 0x01 dlen 2
> ATT: Handle Multiple Value Notification (0x23) len 24
> Length: 0x0014
> Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
> Data[20]: 01018be5717a9a1900db5e3a0201010000000000
> Source_ID: 1
> Source_Address_Type: 1
> Source_Address: 19:9A:7A:71:E5:8B
> Source_Adv_SID: 0
> Broadcast_ID: 0x3a5edb
> PA_Sync_State: Synchronized to PA
> BIG_Encryption: Broadcast_Code required
> Num_Subgroups: 1
> Subgroup #0:
> BIS_Sync State: 0x00000000
> bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 25
> ATT: Write Command (0x52) len 20
> Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
> Data[18]: 040142c3b8726e6520486f75736500000000
> Opcode: Set Broadcast_Code (0x04)
> Source_ID: 1
> Broadcast_Code[16]: 426f726e6520486f7573650000000000
> > ACL Data RX: Handle 0 flags 0x01 dlen 2
> ATT: Handle Multiple Value Notification (0x23) len 24
> Length: 0x0014
> Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
> Data[20]: 01018be5717a9a1900db5e3a0202010100000000
> Source_ID: 1
> Source_Address_Type: 1
> Source_Address: 19:9A:7A:71:E5:8B
> Source_Adv_SID: 0
> Broadcast_ID: 0x3a5edb
> PA_Sync_State: Synchronized to PA
> BIG_Encryption: Decrypting
> Num_Subgroups: 1
> Subgroup #0:
> BIS_Sync State: 0x00000001
> ---
> client/assistant.c | 24 ++++++++++++++----------
> 1 file changed, 14 insertions(+), 10 deletions(-)
>
> diff --git a/client/assistant.c b/client/assistant.c
> index 77fb78329..16e94664a 100644
> --- a/client/assistant.c
> +++ b/client/assistant.c
> @@ -255,28 +255,32 @@ static void push_reply(DBusMessage *message, void *user_data)
> static void assistant_set_bcode_cfg(const char *input, void *user_data)
> {
> struct assistant_config *cfg = user_data;
> - char *endptr;
> - uint8_t *bcode = cfg->qos.bcast.bcode;
>
> if (!strcasecmp(input, "a") || !strcasecmp(input, "auto")) {
> - memset(bcode, 0, BCODE_LEN);
> + memset(cfg->qos.bcast.bcode, 0, BCODE_LEN);
> } else {
> - bcode[0] = strtol(input, &endptr, 16);
> + if (strlen(input) > BCODE_LEN) {
> + bt_shell_printf("Input string too long %s\n", input);
> + goto fail;
> + }
>
> - for (uint8_t i = 1; i < BCODE_LEN; i++)
> - bcode[i] = strtol(endptr, &endptr, 16);
> + memcpy(cfg->qos.bcast.bcode, input, strlen(input));
> }
>
> if (!g_dbus_proxy_method_call(cfg->proxy, "Push",
> push_setup, push_reply,
> cfg, NULL)) {
> bt_shell_printf("Failed to push assistant\n");
> + goto fail;
> + }
>
> - free(cfg->meta);
> - g_free(cfg);
> + return;
>
> - return bt_shell_noninteractive_quit(EXIT_FAILURE);
> - }
> +fail:
> + free(cfg->meta);
> + g_free(cfg);
> +
> + return bt_shell_noninteractive_quit(EXIT_FAILURE);
> }
>
> static void assistant_set_metadata_cfg(const char *input, void *user_data)
> --
> 2.39.2
>
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH BlueZ 1/2] client/assistant: Enter Broadcast Code as string
2024-08-29 15:50 ` [PATCH BlueZ 1/2] " Luiz Augusto von Dentz
@ 2024-08-30 10:38 ` Iulia Tanasescu
0 siblings, 0 replies; 7+ messages in thread
From: Iulia Tanasescu @ 2024-08-30 10:38 UTC (permalink / raw)
To: luiz.dentz
Cc: andrei.istodorescu, claudia.rosu, iulia.tanasescu,
linux-bluetooth, mihai-octavian.urzica, vlad.pruteanu
Hi Luiz,
> -----Original Message-----
> From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
> Sent: Thursday, August 29, 2024 6:50 PM
> To: Iulia Tanasescu <iulia.tanasescu@nxp.com>
> Cc: linux-bluetooth@vger.kernel.org; Claudia Cristina Draghicescu
> <claudia.rosu@nxp.com>; Mihai-Octavian Urzica <mihai-
> octavian.urzica@nxp.com>; Vlad Pruteanu <vlad.pruteanu@nxp.com>; Andrei
> Istodorescu <andrei.istodorescu@nxp.com>
> Subject: Re: [PATCH BlueZ 1/2] client/assistant: Enter Broadcast Code as
> string
>
> Hi Iulia,
>
> On Thu, Aug 29, 2024 at 9:25 AM Iulia Tanasescu <iulia.tanasescu@nxp.com>
> wrote:
> >
> > Currently, the user sets the Broadcast Code as an array of bytes when
> > prompted from the assistant submenu. However, the Bluetooth Core
> > Specification requires that, on the UI level, the Broadcast Code shall
> > be represented as a string (Vol 3, Part C, 3.2.6).
>
> Interesting, but we could go one step further can hash the string using
> bt_crypto_AES-CMAC since that would always generate a 16 bits hash, we
> actually have done something similar for SIRK on main.conf:
>
> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithu
> b.com%2Fbluez%2Fbluez%2Fblob%2Fmaster%2Fsrc%2Fmain.conf%23L268
> &data=05%7C02%7Ciulia.tanasescu%40nxp.com%7C55a1c6477d7440ca5aa
> 208dcc842487c%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C6
> 38605434214981441%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAw
> MDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7
> C&sdata=3fX9C6T9JKo2KBn1KzJI0NfOJmFelje3sQdCv6HElYo%3D&reserved=
> 0
I think this would violate the spec, which states that the string should
be converted into a number simply by placing the bytes into a 128-bit
value (Vol 3, Part C, 3.2.6).
Also, by hashing the string, the bytes will not match the key used
by the Broadcast Source to encrypt the stream, so the controller
on the Scan Delegator will use an incorrect key for decrypting.
>
> > This commit makes the Broadcast Code be parsed as a string from the
> > assistant prompt. The bluetoothctl log below shows a Broadcast
> > Assistant pushing an encrypted stream to a peer:
> >
> > client/bluetoothctl
> > [bluetooth]# [CHG] Controller 00:60:37:31:7E:3F Pairable: yes
> > [bluetooth]# AdvertisementMonitor path registered [bluetooth]# scan on
> > [bluetooth]# [NEW] Device 00:60:37:31:7E:3F 00-60-37-31-7E-3F
> > [bluetooth]# connect 00:60:37:31:7E:3F Attempting to connect to
> > 00:60:37:31:7E:3F [CHG] Device 00:60:37:31:7E:3F Connected: yes
> > [00-60-37-31-7E-3F]# Connection successful [00-60-37-31-7E-3F]# [NEW]
> > Device 19:9A:7A:71:E5:8B 19-9A-7A-71-E5-8B [00-60-37-31-7E-3F]#
> [NEW]
> > Assistant
> >
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> > [00-60-37-31-7E-3F]# assistant.push
> >
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> > [Assistant] Enter Metadata (auto/value): a [Assistant] Enter Broadcast
> > Code (auto/value): Borne House [00-60-37-31-7E-3F]# [CHG] Assistant
> >
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> > State: pending
> > [00-60-37-31-7E-3F]# Assistant
> >
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> > pushed
> > [00-60-37-31-7E-3F]# [CHG] Assistant
> >
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> > State: requesting
> > [00-60-37-31-7E-3F]# [CHG] Assistant
> >
> /org/bluez/hci0/src_19_9A_7A_71_E5_8B/dev_00_60_37_31_7E_3F/bis1
> > State: active
> >
> > The btmon log below shows the way the Broadcast Code string is
> > converted into a byte array and sent to the peer via GATT:
> >
> > bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 28
> > ATT: Write Command (0x52) len 23
> > Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
> > Data[21]: 02018be5717a9a1900db5e3a02ffff010100000000
> > Opcode: Add Source (0x02)
> > Source_Address_Type: 1
> > Source_Address: 19:9A:7A:71:E5:8B
> > Source_Adv_SID: 0
> > Broadcast_ID: 0x3a5edb
> > PA_Sync_State: Synchronize to PA - PAST not available
> > PA_Interval: 0xffff
> > Num_Subgroups: 1
> > Subgroup #0:
> > BIS_Sync State: 0x00000001
> > > ACL Data RX: Handle 0 flags 0x01 dlen 2
> > ATT: Handle Multiple Value Notification (0x23) len 24
> > Length: 0x0014
> > Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
> > Data[20]: 01018be5717a9a1900db5e3a0201010000000000
> > Source_ID: 1
> > Source_Address_Type: 1
> > Source_Address: 19:9A:7A:71:E5:8B
> > Source_Adv_SID: 0
> > Broadcast_ID: 0x3a5edb
> > PA_Sync_State: Synchronized to PA
> > BIG_Encryption: Broadcast_Code required
> > Num_Subgroups: 1
> > Subgroup #0:
> > BIS_Sync State: 0x00000000
> > bluetoothd[6013]: < ACL Data TX: Handle 0 flags 0x00 dlen 25
> > ATT: Write Command (0x52) len 20
> > Handle: 0x0040 Type: Broadcast Audio Scan Control Point (0x2bc7)
> > Data[18]: 040142c3b8726e6520486f75736500000000
> > Opcode: Set Broadcast_Code (0x04)
> > Source_ID: 1
> > Broadcast_Code[16]: 426f726e6520486f7573650000000000
> > > ACL Data RX: Handle 0 flags 0x01 dlen 2
> > ATT: Handle Multiple Value Notification (0x23) len 24
> > Length: 0x0014
> > Handle: 0x003a Type: Broadcast Receive State (0x2bc8)
> > Data[20]: 01018be5717a9a1900db5e3a0202010100000000
> > Source_ID: 1
> > Source_Address_Type: 1
> > Source_Address: 19:9A:7A:71:E5:8B
> > Source_Adv_SID: 0
> > Broadcast_ID: 0x3a5edb
> > PA_Sync_State: Synchronized to PA
> > BIG_Encryption: Decrypting
> > Num_Subgroups: 1
> > Subgroup #0:
> > BIS_Sync State: 0x00000001
> > ---
> > client/assistant.c | 24 ++++++++++++++----------
> > 1 file changed, 14 insertions(+), 10 deletions(-)
> >
> > diff --git a/client/assistant.c b/client/assistant.c index
> > 77fb78329..16e94664a 100644
> > --- a/client/assistant.c
> > +++ b/client/assistant.c
> > @@ -255,28 +255,32 @@ static void push_reply(DBusMessage *message,
> > void *user_data) static void assistant_set_bcode_cfg(const char
> > *input, void *user_data) {
> > struct assistant_config *cfg = user_data;
> > - char *endptr;
> > - uint8_t *bcode = cfg->qos.bcast.bcode;
> >
> > if (!strcasecmp(input, "a") || !strcasecmp(input, "auto")) {
> > - memset(bcode, 0, BCODE_LEN);
> > + memset(cfg->qos.bcast.bcode, 0, BCODE_LEN);
> > } else {
> > - bcode[0] = strtol(input, &endptr, 16);
> > + if (strlen(input) > BCODE_LEN) {
> > + bt_shell_printf("Input string too long %s\n", input);
> > + goto fail;
> > + }
> >
> > - for (uint8_t i = 1; i < BCODE_LEN; i++)
> > - bcode[i] = strtol(endptr, &endptr, 16);
> > + memcpy(cfg->qos.bcast.bcode, input, strlen(input));
> > }
> >
> > if (!g_dbus_proxy_method_call(cfg->proxy, "Push",
> > push_setup, push_reply,
> > cfg, NULL)) {
> > bt_shell_printf("Failed to push assistant\n");
> > + goto fail;
> > + }
> >
> > - free(cfg->meta);
> > - g_free(cfg);
> > + return;
> >
> > - return bt_shell_noninteractive_quit(EXIT_FAILURE);
> > - }
> > +fail:
> > + free(cfg->meta);
> > + g_free(cfg);
> > +
> > + return bt_shell_noninteractive_quit(EXIT_FAILURE);
> > }
> >
> > static void assistant_set_metadata_cfg(const char *input, void
> > *user_data)
> > --
> > 2.39.2
> >
>
>
> --
> Luiz Augusto von Dentz
Regards,
Iulia
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string
2024-08-29 13:25 [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string Iulia Tanasescu
2024-08-29 13:25 ` [PATCH BlueZ 1/2] " Iulia Tanasescu
2024-08-29 13:25 ` [PATCH BlueZ 2/2] bluetoothctl-assistant.1: Update push command example Iulia Tanasescu
@ 2024-09-09 17:30 ` patchwork-bot+bluetooth
2 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+bluetooth @ 2024-09-09 17:30 UTC (permalink / raw)
To: Iulia Tanasescu
Cc: linux-bluetooth, claudia.rosu, mihai-octavian.urzica,
vlad.pruteanu, andrei.istodorescu, luiz.dentz
Hello:
This series was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Thu, 29 Aug 2024 16:25:05 +0300 you wrote:
> Currently, the user sets the Broadcast Code as an array of bytes
> when prompted from the assistant submenu. However, the Bluetooth
> Core Specification requires that, on the UI level, the Broadcast
> Code shall be represented as a string (Vol 3, Part C, 3.2.6).
>
> This patch makes the Broadcast Code be parsed as a string from
> the assistant prompt. The bluetoothctl-assistant.rst is also
> updated.
>
> [...]
Here is the summary with links:
- [BlueZ,1/2] client/assistant: Enter Broadcast Code as string
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=2ec779935496
- [BlueZ,2/2] bluetoothctl-assistant.1: Update push command example
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=f30cbaa43d28
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-09-09 17:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-29 13:25 [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string Iulia Tanasescu
2024-08-29 13:25 ` [PATCH BlueZ 1/2] " Iulia Tanasescu
2024-08-29 15:41 ` bluez.test.bot
2024-08-29 15:50 ` [PATCH BlueZ 1/2] " Luiz Augusto von Dentz
2024-08-30 10:38 ` Iulia Tanasescu
2024-08-29 13:25 ` [PATCH BlueZ 2/2] bluetoothctl-assistant.1: Update push command example Iulia Tanasescu
2024-09-09 17:30 ` [PATCH BlueZ 0/2] client/assistant: Enter Broadcast Code as string patchwork-bot+bluetooth
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.