From: Archie Pusaka <apusaka@xxxxxxxxxxxx> According to bluetooth spec Ver 5.1, Vol 3, Part B, 4.7.2, there might be multiple service records returned in a SDP Service Search Attribute Response. Also, according to 2.5.2, the service pattern can match any UUID contained within the service record, it doesn't have to match only some specific attributes of the record. Therefore, before using the service record to connect to any profile, first we must check that the service class ID of the service record matches with whatever UUID specified in the service pattern we are looking for. --- src/profile.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/profile.c b/src/profile.c index 192fd0245..1b481836e 100644 --- a/src/profile.c +++ b/src/profile.c @@ -1568,8 +1568,34 @@ static void record_cb(sdp_list_t *recs, int err, gpointer user_data) for (r = recs; r != NULL; r = r->next) { sdp_record_t *rec = r->data; + sdp_list_t *svcclass; + sdp_list_t *svcclass_iter; sdp_list_t *protos; int port; + bool matches_class_uuid = false; + + if (sdp_get_service_classes(rec, &svcclass) < 0) { + error("Unable to get svc class ID list from %s record", + ext->name); + continue; + } + + for (svcclass_iter = svcclass; svcclass_iter != NULL; + svcclass_iter = svcclass_iter->next) { + char *uuid = bt_uuid2string(svcclass_iter->data); + int cmp_result = bt_uuid_strcmp(uuid, ext->uuid); + + free(uuid); + if (cmp_result == 0) { + matches_class_uuid = true; + break; + } + } + + sdp_list_free(svcclass, free); + + if (!matches_class_uuid) + continue; if (sdp_get_access_protos(rec, &protos) < 0) { error("Unable to get proto list from %s record", -- 2.25.0.265.gbab2e86ba0-goog