All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
@ 2015-04-17 22:00 Petri Gynther
  2015-04-20 14:50 ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 10+ messages in thread
From: Petri Gynther @ 2015-04-17 22:00 UTC (permalink / raw)
  To: linux-bluetooth

On HoG device reconnect, re-enable HoG report notifications every
time by writing the client characteristic configuration attribute
of each HoG report.

Doing this on every reconnect:
1. ensures that HoG report notifications are always enabled
   (e.g. lost report notification state in battery swap).
2. signals to HoG device that it can start sending HoG reports
   (e.g. buffered keypresses while the reconnect is still pending).
---
 profiles/input/hog.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/profiles/input/hog.c b/profiles/input/hog.c
index c55443c..690fd43 100644
--- a/profiles/input/hog.c
+++ b/profiles/input/hog.c
@@ -842,10 +842,7 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
 	for (l = hogdev->reports; l; l = l->next) {
 		struct report *r = l->data;
 
-		r->notifyid = g_attrib_register(hogdev->attrib,
-					ATT_OP_HANDLE_NOTIFY,
-					r->decl->value_handle,
-					report_value_cb, r, NULL);
+		enable_report_notification(r);
 	}
 }
 
-- 
2.2.0.rc0.207.ga3a616c


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-17 22:00 [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect Petri Gynther
@ 2015-04-20 14:50 ` Luiz Augusto von Dentz
  2015-04-20 16:34   ` Petri Gynther
  0 siblings, 1 reply; 10+ messages in thread
From: Luiz Augusto von Dentz @ 2015-04-20 14:50 UTC (permalink / raw)
  To: Petri Gynther; +Cc: linux-bluetooth

Hi Petri,

On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
> On HoG device reconnect, re-enable HoG report notifications every
> time by writing the client characteristic configuration attribute
> of each HoG report.
>
> Doing this on every reconnect:
> 1. ensures that HoG report notifications are always enabled
>    (e.g. lost report notification state in battery swap).
> 2. signals to HoG device that it can start sending HoG reports
>    (e.g. buffered keypresses while the reconnect is still pending).

Is that happening for a specific device? For 1 I suppose it would
loose the paring keys as well which means we would not be able to
connect at all as HoG mandates pairing, or does it loose only the CCC
configuration? Reason 2 is not necessary the behavior every device
would have, for example I don't expect a mouse to buffer anything and
even a keyboard may buffer only the last key pressed since it might
have very little memory to spend in buffering, anyway I suppose reason
1 is what you should really concentrate to tell us what is going on.

> ---
>  profiles/input/hog.c | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/profiles/input/hog.c b/profiles/input/hog.c
> index c55443c..690fd43 100644
> --- a/profiles/input/hog.c
> +++ b/profiles/input/hog.c
> @@ -842,10 +842,7 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
>         for (l = hogdev->reports; l; l = l->next) {
>                 struct report *r = l->data;
>
> -               r->notifyid = g_attrib_register(hogdev->attrib,
> -                                       ATT_OP_HANDLE_NOTIFY,
> -                                       r->decl->value_handle,
> -                                       report_value_cb, r, NULL);
> +               enable_report_notification(r);
>         }
>  }
>
> --
> 2.2.0.rc0.207.ga3a616c
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-20 14:50 ` Luiz Augusto von Dentz
@ 2015-04-20 16:34   ` Petri Gynther
  2015-04-20 20:12     ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 10+ messages in thread
From: Petri Gynther @ 2015-04-20 16:34 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
> Hi Petri,
>
> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>> On HoG device reconnect, re-enable HoG report notifications every
>> time by writing the client characteristic configuration attribute
>> of each HoG report.
>>
>> Doing this on every reconnect:
>> 1. ensures that HoG report notifications are always enabled
>>    (e.g. lost report notification state in battery swap).
>> 2. signals to HoG device that it can start sending HoG reports
>>    (e.g. buffered keypresses while the reconnect is still pending).
>
> Is that happening for a specific device? For 1 I suppose it would
> loose the paring keys as well which means we would not be able to
> connect at all as HoG mandates pairing, or does it loose only the CCC
> configuration? Reason 2 is not necessary the behavior every device
> would have, for example I don't expect a mouse to buffer anything and
> even a keyboard may buffer only the last key pressed since it might
> have very little memory to spend in buffering, anyway I suppose reason
> 1 is what you should really concentrate to tell us what is going on.
>

On the device that I'm working on, pairing info is stored in
persistent storage, so it survives battery swap. However, I'm not sure
yet about HoG report notification enable/disable state. Waiting for
confirmation from vendor.

Anyways, we are seeing (2). The first keypress from HoG device is
getting lost on reconnect, leading to bad user experience. The device
is sending the keypress immediately when the connection is good, but
too early before BlueZ has managed to re-register the handler with
g_attrib_register(). During the reconnect, the HoG device has no way
of knowing when BlueZ is ready and has registered the handler. So, to
provide this indication, I propose to re-enable the HoG report
notification every time.

>> ---
>>  profiles/input/hog.c | 5 +----
>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>
>> diff --git a/profiles/input/hog.c b/profiles/input/hog.c
>> index c55443c..690fd43 100644
>> --- a/profiles/input/hog.c
>> +++ b/profiles/input/hog.c
>> @@ -842,10 +842,7 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
>>         for (l = hogdev->reports; l; l = l->next) {
>>                 struct report *r = l->data;
>>
>> -               r->notifyid = g_attrib_register(hogdev->attrib,
>> -                                       ATT_OP_HANDLE_NOTIFY,
>> -                                       r->decl->value_handle,
>> -                                       report_value_cb, r, NULL);
>> +               enable_report_notification(r);
>>         }
>>  }
>>
>> --
>> 2.2.0.rc0.207.ga3a616c
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>
>
> --
> Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-20 16:34   ` Petri Gynther
@ 2015-04-20 20:12     ` Luiz Augusto von Dentz
  2015-04-20 21:54       ` Petri Gynther
  0 siblings, 1 reply; 10+ messages in thread
From: Luiz Augusto von Dentz @ 2015-04-20 20:12 UTC (permalink / raw)
  To: Petri Gynther; +Cc: linux-bluetooth

Hi Petri,

On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
> Hi Luiz,
>
> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
> <luiz.dentz@gmail.com> wrote:
>> Hi Petri,
>>
>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>> On HoG device reconnect, re-enable HoG report notifications every
>>> time by writing the client characteristic configuration attribute
>>> of each HoG report.
>>>
>>> Doing this on every reconnect:
>>> 1. ensures that HoG report notifications are always enabled
>>>    (e.g. lost report notification state in battery swap).
>>> 2. signals to HoG device that it can start sending HoG reports
>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>
>> Is that happening for a specific device? For 1 I suppose it would
>> loose the paring keys as well which means we would not be able to
>> connect at all as HoG mandates pairing, or does it loose only the CCC
>> configuration? Reason 2 is not necessary the behavior every device
>> would have, for example I don't expect a mouse to buffer anything and
>> even a keyboard may buffer only the last key pressed since it might
>> have very little memory to spend in buffering, anyway I suppose reason
>> 1 is what you should really concentrate to tell us what is going on.
>>
>
> On the device that I'm working on, pairing info is stored in
> persistent storage, so it survives battery swap. However, I'm not sure
> yet about HoG report notification enable/disable state. Waiting for
> confirmation from vendor.

I would expect it to store the CCC state as well in the persistent
storage if one exists.

> Anyways, we are seeing (2). The first keypress from HoG device is
> getting lost on reconnect, leading to bad user experience. The device
> is sending the keypress immediately when the connection is good, but
> too early before BlueZ has managed to re-register the handler with
> g_attrib_register(). During the reconnect, the HoG device has no way
> of knowing when BlueZ is ready and has registered the handler. So, to
> provide this indication, I propose to re-enable the HoG report
> notification every time.

But I already fixed this problem not long ago:

commit 14569a33418a4c1dc07cca090b9336373d63a085
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Mar 11 21:23:55 2015 +0200

    core/device: Fix not handling notification

    attio callbacks needs to be triggered as soon as possible once connected
    otherwise profiles such as HoG may miss notification that are sent while
    bt_gatt_client is doing MTU exchange.

Perhaps you don't have this patch?

>>> ---
>>>  profiles/input/hog.c | 5 +----
>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>
>>> diff --git a/profiles/input/hog.c b/profiles/input/hog.c
>>> index c55443c..690fd43 100644
>>> --- a/profiles/input/hog.c
>>> +++ b/profiles/input/hog.c
>>> @@ -842,10 +842,7 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
>>>         for (l = hogdev->reports; l; l = l->next) {
>>>                 struct report *r = l->data;
>>>
>>> -               r->notifyid = g_attrib_register(hogdev->attrib,
>>> -                                       ATT_OP_HANDLE_NOTIFY,
>>> -                                       r->decl->value_handle,
>>> -                                       report_value_cb, r, NULL);
>>> +               enable_report_notification(r);
>>>         }
>>>  }
>>>
>>> --
>>> 2.2.0.rc0.207.ga3a616c
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>>
>>
>> --
>> Luiz Augusto von Dentz



-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-20 20:12     ` Luiz Augusto von Dentz
@ 2015-04-20 21:54       ` Petri Gynther
  2015-04-20 23:17         ` Petri Gynther
  0 siblings, 1 reply; 10+ messages in thread
From: Petri Gynther @ 2015-04-20 21:54 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

On Mon, Apr 20, 2015 at 1:12 PM, Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
> Hi Petri,
>
> On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
>> Hi Luiz,
>>
>> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
>> <luiz.dentz@gmail.com> wrote:
>>> Hi Petri,
>>>
>>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>>> On HoG device reconnect, re-enable HoG report notifications every
>>>> time by writing the client characteristic configuration attribute
>>>> of each HoG report.
>>>>
>>>> Doing this on every reconnect:
>>>> 1. ensures that HoG report notifications are always enabled
>>>>    (e.g. lost report notification state in battery swap).
>>>> 2. signals to HoG device that it can start sending HoG reports
>>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>>
>>> Is that happening for a specific device? For 1 I suppose it would
>>> loose the paring keys as well which means we would not be able to
>>> connect at all as HoG mandates pairing, or does it loose only the CCC
>>> configuration? Reason 2 is not necessary the behavior every device
>>> would have, for example I don't expect a mouse to buffer anything and
>>> even a keyboard may buffer only the last key pressed since it might
>>> have very little memory to spend in buffering, anyway I suppose reason
>>> 1 is what you should really concentrate to tell us what is going on.
>>>
>>
>> On the device that I'm working on, pairing info is stored in
>> persistent storage, so it survives battery swap. However, I'm not sure
>> yet about HoG report notification enable/disable state. Waiting for
>> confirmation from vendor.
>
> I would expect it to store the CCC state as well in the persistent
> storage if one exists.
>
>> Anyways, we are seeing (2). The first keypress from HoG device is
>> getting lost on reconnect, leading to bad user experience. The device
>> is sending the keypress immediately when the connection is good, but
>> too early before BlueZ has managed to re-register the handler with
>> g_attrib_register(). During the reconnect, the HoG device has no way
>> of knowing when BlueZ is ready and has registered the handler. So, to
>> provide this indication, I propose to re-enable the HoG report
>> notification every time.
>
> But I already fixed this problem not long ago:
>
> commit 14569a33418a4c1dc07cca090b9336373d63a085
> Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> Date:   Wed Mar 11 21:23:55 2015 +0200
>
>     core/device: Fix not handling notification
>
>     attio callbacks needs to be triggered as soon as possible once connected
>     otherwise profiles such as HoG may miss notification that are sent while
>     bt_gatt_client is doing MTU exchange.
>
> Perhaps you don't have this patch?
>

Thanks for pointing this out. We are still using BlueZ 5.28, so don't
have this. I'll patch this in and see how HoG reconnect works then.

>>>> ---
>>>>  profiles/input/hog.c | 5 +----
>>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>>
>>>> diff --git a/profiles/input/hog.c b/profiles/input/hog.c
>>>> index c55443c..690fd43 100644
>>>> --- a/profiles/input/hog.c
>>>> +++ b/profiles/input/hog.c
>>>> @@ -842,10 +842,7 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
>>>>         for (l = hogdev->reports; l; l = l->next) {
>>>>                 struct report *r = l->data;
>>>>
>>>> -               r->notifyid = g_attrib_register(hogdev->attrib,
>>>> -                                       ATT_OP_HANDLE_NOTIFY,
>>>> -                                       r->decl->value_handle,
>>>> -                                       report_value_cb, r, NULL);
>>>> +               enable_report_notification(r);
>>>>         }
>>>>  }
>>>>
>>>> --
>>>> 2.2.0.rc0.207.ga3a616c
>>>>
>>>> --
>>>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
>>>> the body of a message to majordomo@vger.kernel.org
>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>
>>>
>>>
>>> --
>>> Luiz Augusto von Dentz
>
>
>
> --
> Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-20 21:54       ` Petri Gynther
@ 2015-04-20 23:17         ` Petri Gynther
  2015-04-21  6:08           ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 10+ messages in thread
From: Petri Gynther @ 2015-04-20 23:17 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

On Mon, Apr 20, 2015 at 2:54 PM, Petri Gynther <pgynther@google.com> wrote:
> Hi Luiz,
>
> On Mon, Apr 20, 2015 at 1:12 PM, Luiz Augusto von Dentz
> <luiz.dentz@gmail.com> wrote:
>> Hi Petri,
>>
>> On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
>>> Hi Luiz,
>>>
>>> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
>>> <luiz.dentz@gmail.com> wrote:
>>>> Hi Petri,
>>>>
>>>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>>>> On HoG device reconnect, re-enable HoG report notifications every
>>>>> time by writing the client characteristic configuration attribute
>>>>> of each HoG report.
>>>>>
>>>>> Doing this on every reconnect:
>>>>> 1. ensures that HoG report notifications are always enabled
>>>>>    (e.g. lost report notification state in battery swap).
>>>>> 2. signals to HoG device that it can start sending HoG reports
>>>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>>>
>>>> Is that happening for a specific device? For 1 I suppose it would
>>>> loose the paring keys as well which means we would not be able to
>>>> connect at all as HoG mandates pairing, or does it loose only the CCC
>>>> configuration? Reason 2 is not necessary the behavior every device
>>>> would have, for example I don't expect a mouse to buffer anything and
>>>> even a keyboard may buffer only the last key pressed since it might
>>>> have very little memory to spend in buffering, anyway I suppose reason
>>>> 1 is what you should really concentrate to tell us what is going on.
>>>>
>>>
>>> On the device that I'm working on, pairing info is stored in
>>> persistent storage, so it survives battery swap. However, I'm not sure
>>> yet about HoG report notification enable/disable state. Waiting for
>>> confirmation from vendor.
>>
>> I would expect it to store the CCC state as well in the persistent
>> storage if one exists.
>>
>>> Anyways, we are seeing (2). The first keypress from HoG device is
>>> getting lost on reconnect, leading to bad user experience. The device
>>> is sending the keypress immediately when the connection is good, but
>>> too early before BlueZ has managed to re-register the handler with
>>> g_attrib_register(). During the reconnect, the HoG device has no way
>>> of knowing when BlueZ is ready and has registered the handler. So, to
>>> provide this indication, I propose to re-enable the HoG report
>>> notification every time.
>>
>> But I already fixed this problem not long ago:
>>
>> commit 14569a33418a4c1dc07cca090b9336373d63a085
>> Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>> Date:   Wed Mar 11 21:23:55 2015 +0200
>>
>>     core/device: Fix not handling notification
>>
>>     attio callbacks needs to be triggered as soon as possible once connected
>>     otherwise profiles such as HoG may miss notification that are sent while
>>     bt_gatt_client is doing MTU exchange.
>>
>> Perhaps you don't have this patch?
>>
>
> Thanks for pointing this out. We are still using BlueZ 5.28, so don't
> have this. I'll patch this in and see how HoG reconnect works then.
>

I reverted my 3 patches and applied your "core/device: Fix not
handling notification" patch on top of our BlueZ 5.28 stack.
Unfortunately, your patch breaks our HoG device completely. Our
device's report map ends up being read incorrectly, and as a result,
not a single keypress works any more.

Applying your patch causes attio_connected_cb() getting called very
early, before the MTU exchange has been negotiated. Somehow, this
doesn't work for our device.

>>>>> ---
>>>>>  profiles/input/hog.c | 5 +----
>>>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>>>
>>>>> diff --git a/profiles/input/hog.c b/profiles/input/hog.c
>>>>> index c55443c..690fd43 100644
>>>>> --- a/profiles/input/hog.c
>>>>> +++ b/profiles/input/hog.c
>>>>> @@ -842,10 +842,7 @@ static void attio_connected_cb(GAttrib *attrib, gpointer user_data)
>>>>>         for (l = hogdev->reports; l; l = l->next) {
>>>>>                 struct report *r = l->data;
>>>>>
>>>>> -               r->notifyid = g_attrib_register(hogdev->attrib,
>>>>> -                                       ATT_OP_HANDLE_NOTIFY,
>>>>> -                                       r->decl->value_handle,
>>>>> -                                       report_value_cb, r, NULL);
>>>>> +               enable_report_notification(r);
>>>>>         }
>>>>>  }
>>>>>
>>>>> --
>>>>> 2.2.0.rc0.207.ga3a616c
>>>>>
>>>>> --
>>>>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
>>>>> the body of a message to majordomo@vger.kernel.org
>>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>>
>>>>
>>>>
>>>> --
>>>> Luiz Augusto von Dentz
>>
>>
>>
>> --
>> Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-20 23:17         ` Petri Gynther
@ 2015-04-21  6:08           ` Luiz Augusto von Dentz
  2015-04-21 20:27             ` Petri Gynther
  0 siblings, 1 reply; 10+ messages in thread
From: Luiz Augusto von Dentz @ 2015-04-21  6:08 UTC (permalink / raw)
  To: Petri Gynther; +Cc: linux-bluetooth

Hi Petri,

On Tue, Apr 21, 2015 at 2:17 AM, Petri Gynther <pgynther@google.com> wrote:
> Hi Luiz,
>
> On Mon, Apr 20, 2015 at 2:54 PM, Petri Gynther <pgynther@google.com> wrote:
>> Hi Luiz,
>>
>> On Mon, Apr 20, 2015 at 1:12 PM, Luiz Augusto von Dentz
>> <luiz.dentz@gmail.com> wrote:
>>> Hi Petri,
>>>
>>> On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
>>>> Hi Luiz,
>>>>
>>>> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
>>>> <luiz.dentz@gmail.com> wrote:
>>>>> Hi Petri,
>>>>>
>>>>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>>>>> On HoG device reconnect, re-enable HoG report notifications every
>>>>>> time by writing the client characteristic configuration attribute
>>>>>> of each HoG report.
>>>>>>
>>>>>> Doing this on every reconnect:
>>>>>> 1. ensures that HoG report notifications are always enabled
>>>>>>    (e.g. lost report notification state in battery swap).
>>>>>> 2. signals to HoG device that it can start sending HoG reports
>>>>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>>>>
>>>>> Is that happening for a specific device? For 1 I suppose it would
>>>>> loose the paring keys as well which means we would not be able to
>>>>> connect at all as HoG mandates pairing, or does it loose only the CCC
>>>>> configuration? Reason 2 is not necessary the behavior every device
>>>>> would have, for example I don't expect a mouse to buffer anything and
>>>>> even a keyboard may buffer only the last key pressed since it might
>>>>> have very little memory to spend in buffering, anyway I suppose reason
>>>>> 1 is what you should really concentrate to tell us what is going on.
>>>>>
>>>>
>>>> On the device that I'm working on, pairing info is stored in
>>>> persistent storage, so it survives battery swap. However, I'm not sure
>>>> yet about HoG report notification enable/disable state. Waiting for
>>>> confirmation from vendor.
>>>
>>> I would expect it to store the CCC state as well in the persistent
>>> storage if one exists.
>>>
>>>> Anyways, we are seeing (2). The first keypress from HoG device is
>>>> getting lost on reconnect, leading to bad user experience. The device
>>>> is sending the keypress immediately when the connection is good, but
>>>> too early before BlueZ has managed to re-register the handler with
>>>> g_attrib_register(). During the reconnect, the HoG device has no way
>>>> of knowing when BlueZ is ready and has registered the handler. So, to
>>>> provide this indication, I propose to re-enable the HoG report
>>>> notification every time.
>>>
>>> But I already fixed this problem not long ago:
>>>
>>> commit 14569a33418a4c1dc07cca090b9336373d63a085
>>> Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>> Date:   Wed Mar 11 21:23:55 2015 +0200
>>>
>>>     core/device: Fix not handling notification
>>>
>>>     attio callbacks needs to be triggered as soon as possible once connected
>>>     otherwise profiles such as HoG may miss notification that are sent while
>>>     bt_gatt_client is doing MTU exchange.
>>>
>>> Perhaps you don't have this patch?
>>>
>>
>> Thanks for pointing this out. We are still using BlueZ 5.28, so don't
>> have this. I'll patch this in and see how HoG reconnect works then.
>>
>
> I reverted my 3 patches and applied your "core/device: Fix not
> handling notification" patch on top of our BlueZ 5.28 stack.
> Unfortunately, your patch breaks our HoG device completely. Our
> device's report map ends up being read incorrectly, and as a result,
> not a single keypress works any more.
>
> Applying your patch causes attio_connected_cb() getting called very
> early, before the MTU exchange has been negotiated. Somehow, this
> doesn't work for our device.

You might need to following as well:

    attrib: Fix not honoring MTU

    If MTU has changed, by bt_gatt_client for example, the code should be
    able to figure it out without waiting g_attrib_set_mtu to be called.

-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-21  6:08           ` Luiz Augusto von Dentz
@ 2015-04-21 20:27             ` Petri Gynther
  2015-04-21 20:49               ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 10+ messages in thread
From: Petri Gynther @ 2015-04-21 20:27 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

On Mon, Apr 20, 2015 at 11:08 PM, Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
> Hi Petri,
>
> On Tue, Apr 21, 2015 at 2:17 AM, Petri Gynther <pgynther@google.com> wrote:
>> Hi Luiz,
>>
>> On Mon, Apr 20, 2015 at 2:54 PM, Petri Gynther <pgynther@google.com> wrote:
>>> Hi Luiz,
>>>
>>> On Mon, Apr 20, 2015 at 1:12 PM, Luiz Augusto von Dentz
>>> <luiz.dentz@gmail.com> wrote:
>>>> Hi Petri,
>>>>
>>>> On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
>>>>> Hi Luiz,
>>>>>
>>>>> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
>>>>> <luiz.dentz@gmail.com> wrote:
>>>>>> Hi Petri,
>>>>>>
>>>>>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>>>>>> On HoG device reconnect, re-enable HoG report notifications every
>>>>>>> time by writing the client characteristic configuration attribute
>>>>>>> of each HoG report.
>>>>>>>
>>>>>>> Doing this on every reconnect:
>>>>>>> 1. ensures that HoG report notifications are always enabled
>>>>>>>    (e.g. lost report notification state in battery swap).
>>>>>>> 2. signals to HoG device that it can start sending HoG reports
>>>>>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>>>>>
>>>>>> Is that happening for a specific device? For 1 I suppose it would
>>>>>> loose the paring keys as well which means we would not be able to
>>>>>> connect at all as HoG mandates pairing, or does it loose only the CCC
>>>>>> configuration? Reason 2 is not necessary the behavior every device
>>>>>> would have, for example I don't expect a mouse to buffer anything and
>>>>>> even a keyboard may buffer only the last key pressed since it might
>>>>>> have very little memory to spend in buffering, anyway I suppose reason
>>>>>> 1 is what you should really concentrate to tell us what is going on.
>>>>>>
>>>>>
>>>>> On the device that I'm working on, pairing info is stored in
>>>>> persistent storage, so it survives battery swap. However, I'm not sure
>>>>> yet about HoG report notification enable/disable state. Waiting for
>>>>> confirmation from vendor.
>>>>
>>>> I would expect it to store the CCC state as well in the persistent
>>>> storage if one exists.
>>>>
>>>>> Anyways, we are seeing (2). The first keypress from HoG device is
>>>>> getting lost on reconnect, leading to bad user experience. The device
>>>>> is sending the keypress immediately when the connection is good, but
>>>>> too early before BlueZ has managed to re-register the handler with
>>>>> g_attrib_register(). During the reconnect, the HoG device has no way
>>>>> of knowing when BlueZ is ready and has registered the handler. So, to
>>>>> provide this indication, I propose to re-enable the HoG report
>>>>> notification every time.
>>>>
>>>> But I already fixed this problem not long ago:
>>>>
>>>> commit 14569a33418a4c1dc07cca090b9336373d63a085
>>>> Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>>> Date:   Wed Mar 11 21:23:55 2015 +0200
>>>>
>>>>     core/device: Fix not handling notification
>>>>
>>>>     attio callbacks needs to be triggered as soon as possible once connected
>>>>     otherwise profiles such as HoG may miss notification that are sent while
>>>>     bt_gatt_client is doing MTU exchange.
>>>>
>>>> Perhaps you don't have this patch?
>>>>
>>>
>>> Thanks for pointing this out. We are still using BlueZ 5.28, so don't
>>> have this. I'll patch this in and see how HoG reconnect works then.
>>>
>>
>> I reverted my 3 patches and applied your "core/device: Fix not
>> handling notification" patch on top of our BlueZ 5.28 stack.
>> Unfortunately, your patch breaks our HoG device completely. Our
>> device's report map ends up being read incorrectly, and as a result,
>> not a single keypress works any more.
>>
>> Applying your patch causes attio_connected_cb() getting called very
>> early, before the MTU exchange has been negotiated. Somehow, this
>> doesn't work for our device.
>
> You might need to following as well:
>
>     attrib: Fix not honoring MTU
>
>     If MTU has changed, by bt_gatt_client for example, the code should be
>     able to figure it out without waiting g_attrib_set_mtu to be called.
>
> --
> Luiz Augusto von Dentz

I merged 5.30 into our codebase. Our HoG device is now operational
(report map is OK), but the first keypress is still lost on reconnect.

I'll have to dig deeper with btmon, once I get it compiling.
Unfortunately, 5.30 has a dependency on #include <wordexp.h>, which
our uClibc doesn't support.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-21 20:27             ` Petri Gynther
@ 2015-04-21 20:49               ` Luiz Augusto von Dentz
  2015-04-28  3:17                 ` Arman Uguray
  0 siblings, 1 reply; 10+ messages in thread
From: Luiz Augusto von Dentz @ 2015-04-21 20:49 UTC (permalink / raw)
  To: Petri Gynther; +Cc: linux-bluetooth

Hi Petri,

On Tue, Apr 21, 2015 at 11:27 PM, Petri Gynther <pgynther@google.com> wrote:
> Hi Luiz,
>
> On Mon, Apr 20, 2015 at 11:08 PM, Luiz Augusto von Dentz
> <luiz.dentz@gmail.com> wrote:
>> Hi Petri,
>>
>> On Tue, Apr 21, 2015 at 2:17 AM, Petri Gynther <pgynther@google.com> wrote:
>>> Hi Luiz,
>>>
>>> On Mon, Apr 20, 2015 at 2:54 PM, Petri Gynther <pgynther@google.com> wrote:
>>>> Hi Luiz,
>>>>
>>>> On Mon, Apr 20, 2015 at 1:12 PM, Luiz Augusto von Dentz
>>>> <luiz.dentz@gmail.com> wrote:
>>>>> Hi Petri,
>>>>>
>>>>> On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
>>>>>> Hi Luiz,
>>>>>>
>>>>>> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
>>>>>> <luiz.dentz@gmail.com> wrote:
>>>>>>> Hi Petri,
>>>>>>>
>>>>>>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>>>>>>> On HoG device reconnect, re-enable HoG report notifications every
>>>>>>>> time by writing the client characteristic configuration attribute
>>>>>>>> of each HoG report.
>>>>>>>>
>>>>>>>> Doing this on every reconnect:
>>>>>>>> 1. ensures that HoG report notifications are always enabled
>>>>>>>>    (e.g. lost report notification state in battery swap).
>>>>>>>> 2. signals to HoG device that it can start sending HoG reports
>>>>>>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>>>>>>
>>>>>>> Is that happening for a specific device? For 1 I suppose it would
>>>>>>> loose the paring keys as well which means we would not be able to
>>>>>>> connect at all as HoG mandates pairing, or does it loose only the CCC
>>>>>>> configuration? Reason 2 is not necessary the behavior every device
>>>>>>> would have, for example I don't expect a mouse to buffer anything and
>>>>>>> even a keyboard may buffer only the last key pressed since it might
>>>>>>> have very little memory to spend in buffering, anyway I suppose reason
>>>>>>> 1 is what you should really concentrate to tell us what is going on.
>>>>>>>
>>>>>>
>>>>>> On the device that I'm working on, pairing info is stored in
>>>>>> persistent storage, so it survives battery swap. However, I'm not sure
>>>>>> yet about HoG report notification enable/disable state. Waiting for
>>>>>> confirmation from vendor.
>>>>>
>>>>> I would expect it to store the CCC state as well in the persistent
>>>>> storage if one exists.
>>>>>
>>>>>> Anyways, we are seeing (2). The first keypress from HoG device is
>>>>>> getting lost on reconnect, leading to bad user experience. The device
>>>>>> is sending the keypress immediately when the connection is good, but
>>>>>> too early before BlueZ has managed to re-register the handler with
>>>>>> g_attrib_register(). During the reconnect, the HoG device has no way
>>>>>> of knowing when BlueZ is ready and has registered the handler. So, to
>>>>>> provide this indication, I propose to re-enable the HoG report
>>>>>> notification every time.
>>>>>
>>>>> But I already fixed this problem not long ago:
>>>>>
>>>>> commit 14569a33418a4c1dc07cca090b9336373d63a085
>>>>> Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>>>> Date:   Wed Mar 11 21:23:55 2015 +0200
>>>>>
>>>>>     core/device: Fix not handling notification
>>>>>
>>>>>     attio callbacks needs to be triggered as soon as possible once connected
>>>>>     otherwise profiles such as HoG may miss notification that are sent while
>>>>>     bt_gatt_client is doing MTU exchange.
>>>>>
>>>>> Perhaps you don't have this patch?
>>>>>
>>>>
>>>> Thanks for pointing this out. We are still using BlueZ 5.28, so don't
>>>> have this. I'll patch this in and see how HoG reconnect works then.
>>>>
>>>
>>> I reverted my 3 patches and applied your "core/device: Fix not
>>> handling notification" patch on top of our BlueZ 5.28 stack.
>>> Unfortunately, your patch breaks our HoG device completely. Our
>>> device's report map ends up being read incorrectly, and as a result,
>>> not a single keypress works any more.
>>>
>>> Applying your patch causes attio_connected_cb() getting called very
>>> early, before the MTU exchange has been negotiated. Somehow, this
>>> doesn't work for our device.
>>
>> You might need to following as well:
>>
>>     attrib: Fix not honoring MTU
>>
>>     If MTU has changed, by bt_gatt_client for example, the code should be
>>     able to figure it out without waiting g_attrib_set_mtu to be called.
>>
>> --
>> Luiz Augusto von Dentz
>
> I merged 5.30 into our codebase. Our HoG device is now operational
> (report map is OK), but the first keypress is still lost on reconnect.
>
> I'll have to dig deeper with btmon, once I get it compiling.
> Unfortunately, 5.30 has a dependency on #include <wordexp.h>, which
> our uClibc doesn't support.

Maybe try with your own box? We actually have this problem of missing
keys before so I would surprised if it is still happening since we
should be registering the notification handler within
device_attach_att on gatt_client_init and the notification should only
be triggering on att.c:can_read_data.

-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect
  2015-04-21 20:49               ` Luiz Augusto von Dentz
@ 2015-04-28  3:17                 ` Arman Uguray
  0 siblings, 0 replies; 10+ messages in thread
From: Arman Uguray @ 2015-04-28  3:17 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: Petri Gynther, linux-bluetooth

Hi Luiz & Petri,

> On Tue, Apr 21, 2015 at 1:49 PM, Luiz Augusto von Dentz <luiz.dentz@gmail.com> wrote:
> Hi Petri,
>
> On Tue, Apr 21, 2015 at 11:27 PM, Petri Gynther <pgynther@google.com> wrote:
>> Hi Luiz,
>>
>> On Mon, Apr 20, 2015 at 11:08 PM, Luiz Augusto von Dentz
>> <luiz.dentz@gmail.com> wrote:
>>> Hi Petri,
>>>
>>> On Tue, Apr 21, 2015 at 2:17 AM, Petri Gynther <pgynther@google.com> wrote:
>>>> Hi Luiz,
>>>>
>>>> On Mon, Apr 20, 2015 at 2:54 PM, Petri Gynther <pgynther@google.com> wrote:
>>>>> Hi Luiz,
>>>>>
>>>>> On Mon, Apr 20, 2015 at 1:12 PM, Luiz Augusto von Dentz
>>>>> <luiz.dentz@gmail.com> wrote:
>>>>>> Hi Petri,
>>>>>>
>>>>>> On Mon, Apr 20, 2015 at 7:34 PM, Petri Gynther <pgynther@google.com> wrote:
>>>>>>> Hi Luiz,
>>>>>>>
>>>>>>> On Mon, Apr 20, 2015 at 7:50 AM, Luiz Augusto von Dentz
>>>>>>> <luiz.dentz@gmail.com> wrote:
>>>>>>>> Hi Petri,
>>>>>>>>
>>>>>>>> On Sat, Apr 18, 2015 at 1:00 AM, Petri Gynther <pgynther@google.com> wrote:
>>>>>>>>> On HoG device reconnect, re-enable HoG report notifications every
>>>>>>>>> time by writing the client characteristic configuration attribute
>>>>>>>>> of each HoG report.
>>>>>>>>>
>>>>>>>>> Doing this on every reconnect:
>>>>>>>>> 1. ensures that HoG report notifications are always enabled
>>>>>>>>>    (e.g. lost report notification state in battery swap).
>>>>>>>>> 2. signals to HoG device that it can start sending HoG reports
>>>>>>>>>    (e.g. buffered keypresses while the reconnect is still pending).
>>>>>>>>
>>>>>>>> Is that happening for a specific device? For 1 I suppose it would
>>>>>>>> loose the paring keys as well which means we would not be able to
>>>>>>>> connect at all as HoG mandates pairing, or does it loose only the CCC
>>>>>>>> configuration? Reason 2 is not necessary the behavior every device
>>>>>>>> would have, for example I don't expect a mouse to buffer anything and
>>>>>>>> even a keyboard may buffer only the last key pressed since it might
>>>>>>>> have very little memory to spend in buffering, anyway I suppose reason
>>>>>>>> 1 is what you should really concentrate to tell us what is going on.
>>>>>>>>
>>>>>>>
>>>>>>> On the device that I'm working on, pairing info is stored in
>>>>>>> persistent storage, so it survives battery swap. However, I'm not sure
>>>>>>> yet about HoG report notification enable/disable state. Waiting for
>>>>>>> confirmation from vendor.
>>>>>>
>>>>>> I would expect it to store the CCC state as well in the persistent
>>>>>> storage if one exists.
>>>>>>
>>>>>>> Anyways, we are seeing (2). The first keypress from HoG device is
>>>>>>> getting lost on reconnect, leading to bad user experience. The device
>>>>>>> is sending the keypress immediately when the connection is good, but
>>>>>>> too early before BlueZ has managed to re-register the handler with
>>>>>>> g_attrib_register(). During the reconnect, the HoG device has no way
>>>>>>> of knowing when BlueZ is ready and has registered the handler. So, to
>>>>>>> provide this indication, I propose to re-enable the HoG report
>>>>>>> notification every time.
>>>>>>
>>>>>> But I already fixed this problem not long ago:
>>>>>>
>>>>>> commit 14569a33418a4c1dc07cca090b9336373d63a085
>>>>>> Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>>>>> Date:   Wed Mar 11 21:23:55 2015 +0200
>>>>>>
>>>>>>     core/device: Fix not handling notification
>>>>>>
>>>>>>     attio callbacks needs to be triggered as soon as possible once connected
>>>>>>     otherwise profiles such as HoG may miss notification that are sent while
>>>>>>     bt_gatt_client is doing MTU exchange.
>>>>>>
>>>>>> Perhaps you don't have this patch?
>>>>>>
>>>>>
>>>>> Thanks for pointing this out. We are still using BlueZ 5.28, so don't
>>>>> have this. I'll patch this in and see how HoG reconnect works then.
>>>>>
>>>>
>>>> I reverted my 3 patches and applied your "core/device: Fix not
>>>> handling notification" patch on top of our BlueZ 5.28 stack.
>>>> Unfortunately, your patch breaks our HoG device completely. Our
>>>> device's report map ends up being read incorrectly, and as a result,
>>>> not a single keypress works any more.
>>>>
>>>> Applying your patch causes attio_connected_cb() getting called very
>>>> early, before the MTU exchange has been negotiated. Somehow, this
>>>> doesn't work for our device.
>>>
>>> You might need to following as well:
>>>
>>>     attrib: Fix not honoring MTU
>>>
>>>     If MTU has changed, by bt_gatt_client for example, the code should be
>>>     able to figure it out without waiting g_attrib_set_mtu to be called.
>>>
>>> --
>>> Luiz Augusto von Dentz
>>
>> I merged 5.30 into our codebase. Our HoG device is now operational
>> (report map is OK), but the first keypress is still lost on reconnect.
>>
>> I'll have to dig deeper with btmon, once I get it compiling.
>> Unfortunately, 5.30 has a dependency on #include <wordexp.h>, which
>> our uClibc doesn't support.
>
> Maybe try with your own box? We actually have this problem of missing
> keys before so I would surprised if it is still happening since we
> should be registering the notification handler within
> device_attach_att on gatt_client_init and the notification should only
> be triggering on att.c:can_read_data.
>
> --
> Luiz Augusto von Dentz
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Are there any updates on this? I've been chasing a similar bug lately,
where after a connection I can see the ATT protocol notifications over
btmon but writing the reports to uhid fails (bt_uhid_send fails with
"Invalid Arguments").

Somewhat tangentially to this, I ran into some other issues in the HoG
plugin. After running some tests on two different LE keyboards (one
from HP and one from DELL), I realized that these return the 16-bit
"GATT UUID" value from the "External Report Reference" descriptor in
big endian format rather than little endian. I'm not sure which is
correct but the plugin ends up parsing the UUID wrong and thus fails
to properly discover the "Report Reference" descriptors under the
included "Battery Level" characteristic. The discovery itself gets
performed using the wrong handle range as well (0x00-0xff, rather than
0x0001-0xffff), which also results in an error response from the
remote end.

I'm not sure how closely these two issues are related since the
bt_uhid issue is frequent but sporadic. Either way, maybe it's time to
move this profile over to use shared/gatt instead of attrib/ and we
can flesh out some of these bugs in the process.

Thanks,
Arman

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-04-28  3:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-17 22:00 [PATCH 2/3] hog: re-enable HoG report notifications on HoG device reconnect Petri Gynther
2015-04-20 14:50 ` Luiz Augusto von Dentz
2015-04-20 16:34   ` Petri Gynther
2015-04-20 20:12     ` Luiz Augusto von Dentz
2015-04-20 21:54       ` Petri Gynther
2015-04-20 23:17         ` Petri Gynther
2015-04-21  6:08           ` Luiz Augusto von Dentz
2015-04-21 20:27             ` Petri Gynther
2015-04-21 20:49               ` Luiz Augusto von Dentz
2015-04-28  3:17                 ` Arman Uguray

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.