Linux bluetooth development
 help / color / mirror / Atom feed
* [RFC/PATCH] Bluetooth: SMP: Fail gracefully if device doesn't support pairing
@ 2017-06-01 15:35 John Keeping
  2017-06-09 17:02 ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: John Keeping @ 2017-06-01 15:35 UTC (permalink / raw)
  To: linux-bluetooth
  Cc: Marcel Holtmann, Gustavo Padovan, Johan Hedberg, John Keeping

If a device does not support pairing, we have no way of knowing this
except by trying and seeing if it returns a "pairing not supported"
error.

Handle this response specially so that we don't drop the connection when
an attempt at pairing fails because the device doesn't support pairing.
Also pass a specific failure value back to userspace to allow detection
of this case as distinct from an authentication failure during pairing.

Signed-off-by: John Keeping <john@metanate.com>
---
I'm not particularly happy with the use of
HCI_ERROR_PAIRING_NOT_SUPPORTED here since this is actually "pairing
with unit key is not supported" so I don't think it's technically the
right thing to return here.  But I can't see a more appropriate HCI
error to which to map the SMP_PAIRING_NOTSUPP reason.

 include/net/bluetooth/hci.h |  1 +
 net/bluetooth/smp.c         | 23 ++++++++++++++++++++---
 2 files changed, 21 insertions(+), 3 deletions(-)

diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index fe98f0a5bef0..0917385a95eb 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -463,6 +463,7 @@ enum {
 #define HCI_ERROR_PAIRING_NOT_ALLOWED	0x18
 #define HCI_ERROR_INVALID_LL_PARAMS	0x1e
 #define HCI_ERROR_UNSPECIFIED		0x1f
+#define HCI_ERROR_PAIRING_NOT_SUPPORTED	0x29
 #define HCI_ERROR_ADVERTISING_TIMEOUT	0x3c
 
 /* Flow control modes */
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 14585edc9439..41f246a69178 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -813,7 +813,10 @@ static void smp_failure(struct l2cap_conn *conn, u8 reason)
 		smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
 			     &reason);
 
-	mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
+	if (reason == SMP_PAIRING_NOTSUPP)
+		mgmt_auth_failed(hcon, HCI_ERROR_PAIRING_NOT_SUPPORTED);
+	else
+		mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
 
 	if (chan->data)
 		smp_chan_destroy(conn);
@@ -1866,6 +1869,17 @@ static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
 	return 0;
 }
 
+static u8 smp_cmd_pairing_fail(struct l2cap_conn *conn, struct sk_buff *skb)
+{
+	struct smp_cmd_pairing_fail *rsp = (void *) skb->data;
+
+	if (skb->len < sizeof(*rsp))
+		return SMP_INVALID_PARAMS;
+
+	skb_pull(skb, sizeof(*rsp));
+	return rsp->reason;
+}
+
 static u8 sc_send_public_key(struct smp_chan *smp)
 {
 	struct hci_dev *hdev = smp->conn->hcon->hdev;
@@ -2864,8 +2878,11 @@ static int smp_sig_channel(struct l2cap_chan *chan, struct sk_buff *skb)
 		break;
 
 	case SMP_CMD_PAIRING_FAIL:
-		smp_failure(conn, 0);
-		err = -EPERM;
+		reason = smp_cmd_pairing_fail(conn, skb);
+		if (reason != SMP_PAIRING_NOTSUPP) {
+			smp_failure(conn, 0);
+			err = -EPERM;
+		}
 		break;
 
 	case SMP_CMD_PAIRING_RSP:
-- 
2.12.2.648.g6730d8bc62.dirty

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

* Re: [RFC/PATCH] Bluetooth: SMP: Fail gracefully if device doesn't support pairing
  2017-06-01 15:35 [RFC/PATCH] Bluetooth: SMP: Fail gracefully if device doesn't support pairing John Keeping
@ 2017-06-09 17:02 ` Marcel Holtmann
  2017-06-13 10:56   ` John Keeping
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2017-06-09 17:02 UTC (permalink / raw)
  To: John Keeping; +Cc: linux-bluetooth, Gustavo F. Padovan, Johan Hedberg

Hi John,

> If a device does not support pairing, we have no way of knowing this
> except by trying and seeing if it returns a "pairing not supported"
> error.
> 
> Handle this response specially so that we don't drop the connection when
> an attempt at pairing fails because the device doesn't support pairing.
> Also pass a specific failure value back to userspace to allow detection
> of this case as distinct from an authentication failure during pairing.
> 
> Signed-off-by: John Keeping <john@metanate.com>
> ---
> I'm not particularly happy with the use of
> HCI_ERROR_PAIRING_NOT_SUPPORTED here since this is actually "pairing
> with unit key is not supported" so I don't think it's technically the
> right thing to return here.  But I can't see a more appropriate HCI
> error to which to map the SMP_PAIRING_NOTSUPP reason.
> 
> include/net/bluetooth/hci.h |  1 +
> net/bluetooth/smp.c         | 23 ++++++++++++++++++++---
> 2 files changed, 21 insertions(+), 3 deletions(-)
> 
> diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
> index fe98f0a5bef0..0917385a95eb 100644
> --- a/include/net/bluetooth/hci.h
> +++ b/include/net/bluetooth/hci.h
> @@ -463,6 +463,7 @@ enum {
> #define HCI_ERROR_PAIRING_NOT_ALLOWED	0x18
> #define HCI_ERROR_INVALID_LL_PARAMS	0x1e
> #define HCI_ERROR_UNSPECIFIED		0x1f
> +#define HCI_ERROR_PAIRING_NOT_SUPPORTED	0x29
> #define HCI_ERROR_ADVERTISING_TIMEOUT	0x3c
> 
> /* Flow control modes */
> diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
> index 14585edc9439..41f246a69178 100644
> --- a/net/bluetooth/smp.c
> +++ b/net/bluetooth/smp.c
> @@ -813,7 +813,10 @@ static void smp_failure(struct l2cap_conn *conn, u8 reason)
> 		smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
> 			     &reason);
> 
> -	mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
> +	if (reason == SMP_PAIRING_NOTSUPP)
> +		mgmt_auth_failed(hcon, HCI_ERROR_PAIRING_NOT_SUPPORTED);
> +	else
> +		mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);

actually this is a bug. This should have been always MGMT_STATUS_AUTH_FAILED. Handing the ev->status to mgmt_auth_failed is something we should have never done. Luckily HCI_ERROR_AUTH_FAILURE and MGMT_STATUS_AUTH_FAILED are the same error code number. And the Core spec defines usage of error code Authentication Failure (0x05) in Simple Pairing Complete cases.

So I propose that first we fix the usage of HCI_ERROR_AUTH_FAILURE and replace it with MGMT_STATUS_ versions.

And then we use a new MGMT_STATUS_ code or use MGMT_STATUS_NOT_SUPPORTED to indicate the different error.

Regards

Marcel


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

* Re: [RFC/PATCH] Bluetooth: SMP: Fail gracefully if device doesn't support pairing
  2017-06-09 17:02 ` Marcel Holtmann
@ 2017-06-13 10:56   ` John Keeping
  2017-06-13 11:06     ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: John Keeping @ 2017-06-13 10:56 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth, Gustavo F. Padovan, Johan Hedberg

Hi Marcel,

On Fri, 9 Jun 2017 19:02:53 +0200, Marcel Holtmann wrote:

> > If a device does not support pairing, we have no way of knowing this
> > except by trying and seeing if it returns a "pairing not supported"
> > error.
> > 
> > Handle this response specially so that we don't drop the connection when
> > an attempt at pairing fails because the device doesn't support pairing.
> > Also pass a specific failure value back to userspace to allow detection
> > of this case as distinct from an authentication failure during pairing.
> > 
> > Signed-off-by: John Keeping <john@metanate.com>
> > ---
> > I'm not particularly happy with the use of
> > HCI_ERROR_PAIRING_NOT_SUPPORTED here since this is actually "pairing
> > with unit key is not supported" so I don't think it's technically the
> > right thing to return here.  But I can't see a more appropriate HCI
> > error to which to map the SMP_PAIRING_NOTSUPP reason.
> > 
> > include/net/bluetooth/hci.h |  1 +
> > net/bluetooth/smp.c         | 23 ++++++++++++++++++++---
> > 2 files changed, 21 insertions(+), 3 deletions(-)
> > 
> > diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
> > index fe98f0a5bef0..0917385a95eb 100644
> > --- a/include/net/bluetooth/hci.h
> > +++ b/include/net/bluetooth/hci.h
> > @@ -463,6 +463,7 @@ enum {
> > #define HCI_ERROR_PAIRING_NOT_ALLOWED	0x18
> > #define HCI_ERROR_INVALID_LL_PARAMS	0x1e
> > #define HCI_ERROR_UNSPECIFIED		0x1f
> > +#define HCI_ERROR_PAIRING_NOT_SUPPORTED	0x29
> > #define HCI_ERROR_ADVERTISING_TIMEOUT	0x3c
> > 
> > /* Flow control modes */
> > diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
> > index 14585edc9439..41f246a69178 100644
> > --- a/net/bluetooth/smp.c
> > +++ b/net/bluetooth/smp.c
> > @@ -813,7 +813,10 @@ static void smp_failure(struct l2cap_conn *conn, u8 reason)
> > 		smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
> > 			     &reason);
> > 
> > -	mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
> > +	if (reason == SMP_PAIRING_NOTSUPP)
> > +		mgmt_auth_failed(hcon, HCI_ERROR_PAIRING_NOT_SUPPORTED);
> > +	else
> > +		mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);  
> 
> actually this is a bug. This should have been always
> MGMT_STATUS_AUTH_FAILED. Handing the ev->status to mgmt_auth_failed is
> something we should have never done. Luckily HCI_ERROR_AUTH_FAILURE
> and MGMT_STATUS_AUTH_FAILED are the same error code number. And the
> Core spec defines usage of error code Authentication Failure (0x05) in
> Simple Pairing Complete cases.

Are you sure about this?  I have just checked and it seems that
mgmt_auth_failed expects an HCI status value which it then maps to a
MGMT status value via mgmt_status_table.

> So I propose that first we fix the usage of HCI_ERROR_AUTH_FAILURE and
> replace it with MGMT_STATUS_ versions.

Does this mean that mgmt_auth_failed should take a MGMT_STATUS_ value
and remove the mapping via mgmt_status_table?  That seems sensible, but
it looks like all of the mgmt_ functions currently take an HCI status
and map it to a MGMT_STATUS_ so changing just mgmt_auth_failed would
make this inconsistent.

Changing all of the mgmt_ functions to take a MGMT_STATUS_ directly
would be quite a big change, but it sounds like you're suggesting that
there should be a public mgmt_status_from_hci() function and the mapping
from HCI status to MGMT status should move to the caller.  Is that the
direction you want to go?


Regards,
John

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

* Re: [RFC/PATCH] Bluetooth: SMP: Fail gracefully if device doesn't support pairing
  2017-06-13 10:56   ` John Keeping
@ 2017-06-13 11:06     ` Marcel Holtmann
  0 siblings, 0 replies; 4+ messages in thread
From: Marcel Holtmann @ 2017-06-13 11:06 UTC (permalink / raw)
  To: John Keeping
  Cc: open list:BLUETOOTH DRIVERS, Gustavo F. Padovan, Johan Hedberg

Hi John,

>>> If a device does not support pairing, we have no way of knowing this
>>> except by trying and seeing if it returns a "pairing not supported"
>>> error.
>>> 
>>> Handle this response specially so that we don't drop the connection when
>>> an attempt at pairing fails because the device doesn't support pairing.
>>> Also pass a specific failure value back to userspace to allow detection
>>> of this case as distinct from an authentication failure during pairing.
>>> 
>>> Signed-off-by: John Keeping <john@metanate.com>
>>> ---
>>> I'm not particularly happy with the use of
>>> HCI_ERROR_PAIRING_NOT_SUPPORTED here since this is actually "pairing
>>> with unit key is not supported" so I don't think it's technically the
>>> right thing to return here.  But I can't see a more appropriate HCI
>>> error to which to map the SMP_PAIRING_NOTSUPP reason.
>>> 
>>> include/net/bluetooth/hci.h |  1 +
>>> net/bluetooth/smp.c         | 23 ++++++++++++++++++++---
>>> 2 files changed, 21 insertions(+), 3 deletions(-)
>>> 
>>> diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
>>> index fe98f0a5bef0..0917385a95eb 100644
>>> --- a/include/net/bluetooth/hci.h
>>> +++ b/include/net/bluetooth/hci.h
>>> @@ -463,6 +463,7 @@ enum {
>>> #define HCI_ERROR_PAIRING_NOT_ALLOWED	0x18
>>> #define HCI_ERROR_INVALID_LL_PARAMS	0x1e
>>> #define HCI_ERROR_UNSPECIFIED		0x1f
>>> +#define HCI_ERROR_PAIRING_NOT_SUPPORTED	0x29
>>> #define HCI_ERROR_ADVERTISING_TIMEOUT	0x3c
>>> 
>>> /* Flow control modes */
>>> diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
>>> index 14585edc9439..41f246a69178 100644
>>> --- a/net/bluetooth/smp.c
>>> +++ b/net/bluetooth/smp.c
>>> @@ -813,7 +813,10 @@ static void smp_failure(struct l2cap_conn *conn, u8 reason)
>>> 		smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
>>> 			     &reason);
>>> 
>>> -	mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
>>> +	if (reason == SMP_PAIRING_NOTSUPP)
>>> +		mgmt_auth_failed(hcon, HCI_ERROR_PAIRING_NOT_SUPPORTED);
>>> +	else
>>> +		mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);  
>> 
>> actually this is a bug. This should have been always
>> MGMT_STATUS_AUTH_FAILED. Handing the ev->status to mgmt_auth_failed is
>> something we should have never done. Luckily HCI_ERROR_AUTH_FAILURE
>> and MGMT_STATUS_AUTH_FAILED are the same error code number. And the
>> Core spec defines usage of error code Authentication Failure (0x05) in
>> Simple Pairing Complete cases.
> 
> Are you sure about this?  I have just checked and it seems that
> mgmt_auth_failed expects an HCI status value which it then maps to a
> MGMT status value via mgmt_status_table.

that is an internal detail and can be easily fixed. The caller of mgmt_auth_failed can just do the mapping. There are not that many callers.

>> So I propose that first we fix the usage of HCI_ERROR_AUTH_FAILURE and
>> replace it with MGMT_STATUS_ versions.
> 
> Does this mean that mgmt_auth_failed should take a MGMT_STATUS_ value
> and remove the mapping via mgmt_status_table?  That seems sensible, but
> it looks like all of the mgmt_ functions currently take an HCI status
> and map it to a MGMT_STATUS_ so changing just mgmt_auth_failed would
> make this inconsistent.
> 
> Changing all of the mgmt_ functions to take a MGMT_STATUS_ directly
> would be quite a big change, but it sounds like you're suggesting that
> there should be a public mgmt_status_from_hci() function and the mapping
> from HCI status to MGMT status should move to the caller.  Is that the
> direction you want to go?

I would focus on making mgmt_auth_failed work and allow us to return a proper MGMT error status so that bluetoothd can do the right thing.

Regards

Marcel


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

end of thread, other threads:[~2017-06-13 11:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-01 15:35 [RFC/PATCH] Bluetooth: SMP: Fail gracefully if device doesn't support pairing John Keeping
2017-06-09 17:02 ` Marcel Holtmann
2017-06-13 10:56   ` John Keeping
2017-06-13 11:06     ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox