From: "Frédéric Danis" <frederic.danis@collabora.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH BlueZ 3/3] client/btpclient: Add BTP_OP_GAP_SET_EXTENDED_ADVERTISING support
Date: Tue, 19 May 2026 12:55:19 +0200 [thread overview]
Message-ID: <20260519105519.226648-4-frederic.danis@collabora.com> (raw)
In-Reply-To: <20260519105519.226648-1-frederic.danis@collabora.com>
This set LEAdvertisement1's SecondaryChannel property to "2M" to
force Extended advertisement type.
---
client/btpclient/gap.c | 68 ++++++++++++++++++++++++++++++++++++++++--
src/shared/btp.h | 7 +++++
2 files changed, 73 insertions(+), 2 deletions(-)
diff --git a/client/btpclient/gap.c b/client/btpclient/gap.c
index 2d393dd4d..7c7dad966 100644
--- a/client/btpclient/gap.c
+++ b/client/btpclient/gap.c
@@ -73,7 +73,7 @@ static char *dupuuid2str(const uint8_t *uuid, uint8_t len)
{
switch (len) {
case 16:
- return l_strdup_printf("%hhx%hhx", uuid[0], uuid[1]);
+ return l_strdup_printf("%hhx%hhx", uuid[1], uuid[0]);
case 128:
return l_strdup_printf("%hhx%hhx%hhx%hhx%hhx%hhx%hhx%hhx%hhx"
"%hhx%hhx%hhx%hhx%hhx%hhx%hhx", uuid[0],
@@ -109,6 +109,7 @@ static void btp_gap_read_commands(uint8_t index, const void *param,
BTP_OP_GAP_UNPAIR,
BTP_OP_GAP_PASSKEY_ENTRY_RSP,
BTP_OP_GAP_PASSKEY_CONFIRM_RSP,
+ BTP_OP_GAP_SET_EXTENDED_ADVERTISING,
};
uint8_t *commands = NULL;
size_t commands_len = 0;
@@ -813,6 +814,22 @@ static bool ad_timeout_getter(struct l_dbus *dbus,
return true;
}
+static bool ad_secondarychannel_getter(struct l_dbus *dbus,
+ struct l_dbus_message *message,
+ struct l_dbus_message_builder *builder,
+ void *user_data)
+{
+ struct btp_adapter *adapter = user_data;
+ uint32_t settings = adapter->current_settings;
+
+ if (!(settings & BTP_GAP_SETTINGS_EXTENDED_ADVERTISING))
+ return false;
+
+ l_dbus_message_builder_append_basic(builder, 's', "2M");
+
+ return true;
+}
+
static void setup_ad_interface(struct l_dbus_interface *interface)
{
l_dbus_interface_method(interface, "Release",
@@ -839,6 +856,8 @@ static void setup_ad_interface(struct l_dbus_interface *interface)
ad_duration_getter, NULL);
l_dbus_interface_property(interface, "Timeout", 0, "q",
ad_timeout_getter, NULL);
+ l_dbus_interface_property(interface, "SecondaryChannel", 0, "s",
+ ad_secondarychannel_getter, NULL);
}
static void start_advertising_reply(struct l_dbus_proxy *proxy,
@@ -889,6 +908,9 @@ static void create_advertising_data(uint8_t adv_data_len, const uint8_t *data)
ad_data = &data[adv_data_len - remaining_data_len + 2];
switch (ad_type) {
+ case BT_AD_FLAGS:
+ /* Advertisement flags are set by bluetoothd */
+ break;
case BT_AD_UUID16_SOME:
{
char *uuid = dupuuid2str(ad_data, 16);
@@ -897,6 +919,14 @@ static void create_advertising_data(uint8_t adv_data_len, const uint8_t *data)
break;
}
+ case BT_AD_UUID16_ALL:
+ {
+ char *uuid = dupuuid2str(ad_data, 16);
+
+ l_queue_push_tail(ad.uuids, uuid);
+
+ break;
+ }
case BT_AD_NAME_SHORT:
case BT_AD_NAME_COMPLETE:
ad.local_name = malloc(ad_len + 1);
@@ -1008,7 +1038,7 @@ static void btp_gap_start_advertising(uint8_t index, const void *param,
goto failed;
}
- if (!l_dbus_object_add_interface(dbus, AD_PATH, AD_IFACE, NULL)) {
+ if (!l_dbus_object_add_interface(dbus, AD_PATH, AD_IFACE, adapter)) {
l_info("Unable to instantiate ad interface");
if (!l_dbus_unregister_interface(dbus, AD_IFACE))
@@ -2380,6 +2410,36 @@ failed:
btp_send_error(btp, BTP_GAP_SERVICE, index, status);
}
+
+static void btp_gap_set_extended_advertising(uint8_t index, const void *param,
+ uint16_t length, void *user_data)
+{
+ struct btp_adapter *adapter = find_adapter_by_index(index);
+ const struct btp_gap_set_extended_advertising_cp *cp = param;
+ uint32_t new_settings;
+ uint8_t status = BTP_ERROR_FAIL;
+
+ if (!adapter) {
+ status = BTP_ERROR_INVALID_INDEX;
+ goto failed;
+ }
+
+ new_settings = adapter->current_settings;
+ if (cp->settings)
+ new_settings |= BTP_GAP_SETTINGS_EXTENDED_ADVERTISING;
+ else
+ new_settings &= ~BTP_GAP_SETTINGS_EXTENDED_ADVERTISING;
+ update_current_settings(adapter, new_settings);
+
+ btp_send(btp, BTP_GAP_SERVICE, BTP_OP_GAP_SET_EXTENDED_ADVERTISING,
+ adapter->index, sizeof(new_settings),
+ &new_settings);
+
+ return;
+failed:
+ btp_send_error(btp, BTP_GAP_SERVICE, index, status);
+}
+
static void btp_gap_device_found_ev(struct l_dbus_proxy *proxy)
{
struct btp_device *device = find_device_by_proxy(proxy);
@@ -2632,6 +2692,10 @@ static void register_gap_service(void)
btp_register(btp, BTP_GAP_SERVICE, BTP_OP_GAP_PASSKEY_CONFIRM_RSP,
btp_gap_confirm_entry_rsp, NULL, NULL);
+
+ btp_register(btp, BTP_GAP_SERVICE, BTP_OP_GAP_SET_EXTENDED_ADVERTISING,
+ btp_gap_set_extended_advertising,
+ NULL, NULL);
}
void gap_proxy_added(struct l_dbus_proxy *proxy, void *user_data)
diff --git a/src/shared/btp.h b/src/shared/btp.h
index b99ad3a28..098c0c39f 100644
--- a/src/shared/btp.h
+++ b/src/shared/btp.h
@@ -82,6 +82,8 @@ struct btp_gap_read_index_rp {
#define BTP_GAP_SETTING_PRIVACY 0x00002000
#define BTP_GAP_SETTING_CONTROLLER_CONF 0x00004000
#define BTP_GAP_SETTING_STATIC_ADDRESS 0x00008000
+#define BTP_GAP_SETTINGS_SC_ONLY 0x00010000
+#define BTP_GAP_SETTINGS_EXTENDED_ADVERTISING 0x00020000
#define BTP_OP_GAP_READ_CONTROLLER_INFO 0x03
struct btp_gap_read_info_rp {
@@ -224,6 +226,11 @@ struct btp_gap_passkey_confirm_rsp_cp {
uint8_t match;
} __packed;
+#define BTP_OP_GAP_SET_EXTENDED_ADVERTISING 0x21
+struct btp_gap_set_extended_advertising_cp {
+ uint8_t settings;
+} __packed;
+
#define BTP_EV_GAP_NEW_SETTINGS 0x80
struct btp_new_settings_ev {
uint32_t current_settings;
--
2.43.0
next prev parent reply other threads:[~2026-05-19 10:55 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-19 10:55 [PATCH BlueZ 0/3] client/btpclient: Add GAP extended advertising support Frédéric Danis
2026-05-19 10:55 ` [PATCH BlueZ 1/3] client/btpclient: refactor read-commands bitmap building Frédéric Danis
2026-05-19 12:34 ` client/btpclient: Add GAP extended advertising support bluez.test.bot
2026-05-19 10:55 ` [PATCH BlueZ 2/3] client/btpclient: Replace advertising defines by shared ones Frédéric Danis
2026-05-19 10:55 ` Frédéric Danis [this message]
2026-05-21 13:30 ` [PATCH BlueZ 0/3] client/btpclient: Add GAP extended advertising support patchwork-bot+bluetooth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260519105519.226648-4-frederic.danis@collabora.com \
--to=frederic.danis@collabora.com \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox