All of lore.kernel.org
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@tieto.com>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: Anderson Lizardo <anderson.lizardo@openbossa.org>,
	"linux-bluetooth@vger.kernel.org"
	<linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH BlueZ 1/7] android: Use 16-bit UUID for SDP search
Date: Wed, 12 Feb 2014 11:59:43 +0100	[thread overview]
Message-ID: <1458044.bhGCHJKobi@leonov> (raw)
In-Reply-To: <CABBYNZ+V-pg6sGO7yK1gsFnu+6pxDJhBq6QUdW_RyP6+YSMnUg@mail.gmail.com>

Hi,

On Wednesday 12 of February 2014 11:58:16 Luiz Augusto von Dentz wrote:
> Hi Anderson,
> 
> On Tue, Feb 11, 2014 at 8:32 PM, Anderson Lizardo
> 
> <anderson.lizardo@openbossa.org> wrote:
> > These UUIDs are assigned by BT-SIG and therefore there is no need to
> > use full 128-bit UUIDs. This also avoids unnecessary conversion from
> > string representation.
> > ---
> > 
> >  android/handsfree.c |    3 +--
> >  android/hidhost.c   |    7 +++----
> >  2 files changed, 4 insertions(+), 6 deletions(-)
> > 
> > diff --git a/android/handsfree.c b/android/handsfree.c
> > index 9482b2e..a869d58 100644
> > --- a/android/handsfree.c
> > +++ b/android/handsfree.c
> > @@ -34,7 +34,6 @@
> > 
> >  #include "lib/bluetooth.h"
> >  #include "lib/sdp.h"
> >  #include "lib/sdp_lib.h"
> > 
> > -#include "lib/uuid.h"
> > 
> >  #include "src/sdp-client.h"
> >  #include "src/uuid-helper.h"
> >  #include "src/shared/hfp.h"
> > 
> > @@ -294,7 +293,7 @@ static void handle_connect(const void *buf, uint16_t
> > len)> 
> >         device_init(&bdaddr);
> > 
> > -       bt_string2uuid(&uuid, HFP_HS_UUID);
> > +       sdp_uuid16_create(&uuid, HANDSFREE_SVCLASS_ID);
> > 
> >         if (bt_search_service(&adapter_addr, &device.bdaddr, &uuid,
> >         
> >                                         sdp_search_cb, NULL, NULL, 0) < 0)
> >                                         {
> >                 
> >                 error("handsfree: SDP search failed");
> > 
> > diff --git a/android/hidhost.c b/android/hidhost.c
> > index 8bd3455..45fe14f 100644
> > --- a/android/hidhost.c
> > +++ b/android/hidhost.c
> > @@ -37,7 +37,6 @@
> > 
> >  #include "lib/bluetooth.h"
> >  #include "lib/sdp.h"
> >  #include "lib/sdp_lib.h"
> > 
> > -#include "lib/uuid.h"
> > 
> >  #include "src/shared/mgmt.h"
> >  #include "src/sdp-client.h"
> >  #include "src/uuid-helper.h"
> > 
> > @@ -751,7 +750,7 @@ static void hid_sdp_did_search_cb(sdp_list_t *recs,
> > int err, gpointer data)> 
> >                         dev->version = data->val.uint16;
> >         
> >         }
> > 
> > -       bt_string2uuid(&uuid, HID_UUID);
> > +       sdp_uuid16_create(&uuid, HID_SVCLASS_ID);
> > 
> >         if (bt_search_service(&adapter_addr, &dev->dst, &uuid,
> >         
> >                                 hid_sdp_search_cb, dev, NULL, 0) < 0) {
> >                 
> >                 error("failed to search sdp details");
> > 
> > @@ -792,7 +791,7 @@ static void bt_hid_connect(const void *buf, uint16_t
> > len)> 
> >         ba2str(&dev->dst, addr);
> >         DBG("connecting to %s", addr);
> > 
> > -       bt_string2uuid(&uuid, PNP_UUID);
> > +       sdp_uuid16_create(&uuid, PNP_INFO_SVCLASS_ID);
> > 
> >         if (bt_search_service(&adapter_addr, &dev->dst, &uuid,
> >         
> >                                         hid_sdp_did_search_cb, dev, NULL,
> >                                         0) < 0) {
> >                 
> >                 error("Failed to search DeviceID SDP details");
> > 
> > @@ -1293,7 +1292,7 @@ static void connect_cb(GIOChannel *chan, GError
> > *err, gpointer user_data)> 
> >                 dev->ctrl_io = g_io_channel_ref(chan);
> >                 dev->uhid_fd = -1;
> > 
> > -               bt_string2uuid(&uuid, PNP_UUID);
> > +               sdp_uuid16_create(&uuid, PNP_INFO_SVCLASS_ID);
> > 
> >                 if (bt_search_service(&src, &dev->dst, &uuid,
> >                 
> >                                         hid_sdp_did_search_cb, dev, NULL,
> >                                         0) < 0) {
> >                         
> >                         error("failed to search did sdp details");
> > 
> > --
> > 1.7.9.5
> 
> Applied all except 6/7, I think we should probably return an error if
> there is an attempt to register a service out of range, then the
> caller can assert so we can have a proper test for it that expect an
> error in such case.

Well, currently IPC depends on hal-msg.h which defines max allowed service ID 
and using something bigger is a code bug. We could have make IPC independent 
of hal-msg.h and just verify registered ID in runtime but that would add extra 
code for each caller with no profit as IDs are fixed anyway.

That test fix is invalid as we actually want to test if IPC handles out-of-
bound service ID correctly (when receiving register command).
And I'm not sure why this actually was causing any problems since that test is 
not registering handlers for out-of-bound service ID, just sends ipc message 
with such ID.

(BTW I think we should pass max service id on ipc_init, as currently audio ipc 
is using max service id from bt ipc)

-- 
BR
Szymon Janc

  reply	other threads:[~2014-02-12 10:59 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-11 18:32 [PATCH BlueZ 1/7] android: Use 16-bit UUID for SDP search Anderson Lizardo
2014-02-11 18:32 ` [PATCH BlueZ 2/7] android/tester: Update SDP PDU after UUID change Anderson Lizardo
2014-02-11 18:32 ` [PATCH BlueZ 3/7] android/hidhost: Trivial coding style fix Anderson Lizardo
2014-02-11 18:32 ` [PATCH BlueZ 4/7] android/client: Fix set_info command Anderson Lizardo
2014-02-11 18:32 ` [PATCH BlueZ 5/7] android/test-ipc: Fix crash due to invalid ipc_register() parameter Anderson Lizardo
2014-02-11 18:32 ` [PATCH BlueZ 6/7] android: Add assertion for ID parameter in ipc_register/ipc_unregister Anderson Lizardo
2014-02-11 18:32 ` [PATCH BlueZ 7/7] android: Add test-ipc to "make check" Anderson Lizardo
2014-02-12  9:58 ` [PATCH BlueZ 1/7] android: Use 16-bit UUID for SDP search Luiz Augusto von Dentz
2014-02-12 10:59   ` Szymon Janc [this message]
2014-02-12 11:28     ` Anderson Lizardo
2014-02-12 12:17       ` Szymon Janc
2014-02-12 11:29     ` Luiz Augusto von Dentz

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=1458044.bhGCHJKobi@leonov \
    --to=szymon.janc@tieto.com \
    --cc=anderson.lizardo@openbossa.org \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    /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 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.