advertising: Create and use scannable adv param flag
authorDaniel Winkler <danielwinkler@google.com>
Tue, 16 Mar 2021 22:49:56 +0000 (15:49 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:35 +0000 (19:08 +0530)
In order for the advertising parameters hci request to indicate that an
advertising set uses a scannable PDU, we pass a scannable flag along
with the initial parameters MGMT request. This flag is populated based
on the existence of any scan response data requested by the client.

Without this patch, a broadcast advertisement with a scan response will
either be rejected by the controller, or will ignore the requested scan
response. The patch is tested by performing the above and confirming
that the scan response is retrievable from a peer as expected.

Reviewed-by: Sonny Sasaka <sonnysasaka@chromium.org>
Reviewed-by: Miao-chen Chou <mcchou@chromium.org>
Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
lib/mgmt.h
src/advertising.c
src/shared/ad.c
src/shared/ad.h

index d76a5a9..01f720d 100644 (file)
@@ -509,6 +509,7 @@ struct mgmt_rp_add_advertising {
 #define MGMT_ADV_PARAM_TIMEOUT         (1 << 13)
 #define MGMT_ADV_PARAM_INTERVALS       (1 << 14)
 #define MGMT_ADV_PARAM_TX_POWER                (1 << 15)
+#define MGMT_ADV_PARAM_SCAN_RSP                (1 << 16)
 
 #define MGMT_OP_REMOVE_ADVERTISING     0x003F
 struct mgmt_cp_remove_advertising {
index 6d3d32d..bc32ebf 100644 (file)
@@ -788,6 +788,22 @@ static uint8_t *generate_scan_rsp(struct btd_adv_client *client,
        return bt_ad_generate(client->scan, len);
 }
 
+static bool adv_client_has_scan_response(struct btd_adv_client *client,
+                                               uint32_t flags)
+{
+       /* The local name isn't added into the bt_ad structure until
+        * generate_scan_rsp is called, so we must check these conditions as
+        * well.
+        */
+       if (!(flags & MGMT_ADV_FLAG_LOCAL_NAME) &&
+                       !client->name &&
+                       bt_ad_is_empty(client->scan)) {
+               return false;
+       }
+
+       return true;
+}
+
 static int get_adv_flags(struct btd_adv_client *client)
 {
        uint32_t flags = 0;
@@ -912,7 +928,13 @@ static int refresh_extended_adv(struct btd_adv_client *client,
                flags |= MGMT_ADV_PARAM_TX_POWER;
        }
 
-       cp.flags = htobl(flags);
+       /* Indicate that this instance will be configured as scannable */
+       if (adv_client_has_scan_response(client, flags) &&
+               client->manager->supported_flags & MGMT_ADV_PARAM_SCAN_RSP) {
+               flags |= MGMT_ADV_PARAM_SCAN_RSP;
+       }
+
+       cp.flags = cpu_to_le32(flags);
 
        mgmt_ret = mgmt_send(client->manager->mgmt, MGMT_OP_ADD_EXT_ADV_PARAMS,
                        client->manager->mgmt_index, sizeof(cp), &cp,
index 5cc1088..bb457b6 100755 (executable)
@@ -546,6 +546,23 @@ uint8_t *bt_ad_generate(struct bt_ad *ad, size_t *length)
        return adv_data;
 }
 
+bool bt_ad_is_empty(struct bt_ad *ad)
+{
+       /* If any of the bt_ad fields are non-empty or don't have the default
+        * value, then bt_ad_generate will return a non-empty buffer
+        */
+       if (!ad->name &&
+               ad->appearance == UINT16_MAX &&
+               queue_isempty(ad->service_uuids) &&
+               queue_isempty(ad->manufacturer_data) &&
+               queue_isempty(ad->solicit_uuids) &&
+               queue_isempty(ad->service_data) &&
+               queue_isempty(ad->data)) {
+               return true;
+       }
+       return false;
+}
+
 static bool queue_add_uuid(struct queue *queue, const bt_uuid_t *uuid)
 {
        bt_uuid_t *new_uuid;
index 13adcb4..84ef9de 100755 (executable)
@@ -105,6 +105,8 @@ void bt_ad_unref(struct bt_ad *ad);
 
 uint8_t *bt_ad_generate(struct bt_ad *ad, size_t *length);
 
+bool bt_ad_is_empty(struct bt_ad *ad);
+
 bool bt_ad_add_service_uuid(struct bt_ad *ad, const bt_uuid_t *uuid);
 
 bool bt_ad_remove_service_uuid(struct bt_ad *ad, bt_uuid_t *uuid);