linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level
@ 2020-09-21  8:31 Archie Pusaka
  2020-09-21 17:13 ` Luiz Augusto von Dentz
  2020-09-25 16:25 ` Marcel Holtmann
  0 siblings, 2 replies; 5+ messages in thread
From: Archie Pusaka @ 2020-09-21  8:31 UTC (permalink / raw)
  To: linux-bluetooth, Marcel Holtmann
  Cc: CrosBT Upstreaming, Archie Pusaka, Alain Michaud,
	David S. Miller, Jakub Kicinski, Johan Hedberg, linux-kernel,
	netdev

From: Archie Pusaka <apusaka@chromium.org>

According to the spec Ver 5.2, Vol 3, Part C, Sec 5.2.2.8:
Device in security mode 4 level 4 shall enforce:
128-bit equivalent strength for link and encryption keys required
using FIPS approved algorithms (E0 not allowed, SAFER+ not allowed,
and P-192 not allowed; encryption key not shortened)

This patch rejects connection with key size below 16 for FIPS level
services.

Signed-off-by: Archie Pusaka <apusaka@chromium.org>
Reviewed-by: Alain Michaud <alainm@chromium.org>

---

 net/bluetooth/l2cap_core.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index ade83e224567..306616ec26e6 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -1515,8 +1515,13 @@ static bool l2cap_check_enc_key_size(struct hci_conn *hcon)
 	 * that have no key size requirements. Ensure that the link is
 	 * actually encrypted before enforcing a key size.
 	 */
+	int min_key_size = hcon->hdev->min_enc_key_size;
+
+	if (hcon->sec_level == BT_SECURITY_FIPS)
+		min_key_size = 16;
+
 	return (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags) ||
-		hcon->enc_key_size >= hcon->hdev->min_enc_key_size);
+		hcon->enc_key_size >= min_key_size);
 }
 
 static void l2cap_do_start(struct l2cap_chan *chan)
-- 
2.28.0.681.g6f77f65b4e-goog


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

* Re: [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level
  2020-09-21  8:31 [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level Archie Pusaka
@ 2020-09-21 17:13 ` Luiz Augusto von Dentz
  2020-09-22  7:37   ` Archie Pusaka
  2020-09-25 16:25 ` Marcel Holtmann
  1 sibling, 1 reply; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2020-09-21 17:13 UTC (permalink / raw)
  To: Archie Pusaka
  Cc: linux-bluetooth, Marcel Holtmann, CrosBT Upstreaming,
	Archie Pusaka, Alain Michaud, David S. Miller, Jakub Kicinski,
	Johan Hedberg, Linux Kernel Mailing List,
	open list:NETWORKING [GENERAL]

Hi Archie,

On Mon, Sep 21, 2020 at 1:31 AM Archie Pusaka <apusaka@google.com> wrote:
>
> From: Archie Pusaka <apusaka@chromium.org>
>
> According to the spec Ver 5.2, Vol 3, Part C, Sec 5.2.2.8:
> Device in security mode 4 level 4 shall enforce:
> 128-bit equivalent strength for link and encryption keys required
> using FIPS approved algorithms (E0 not allowed, SAFER+ not allowed,
> and P-192 not allowed; encryption key not shortened)
>
> This patch rejects connection with key size below 16 for FIPS level
> services.
>
> Signed-off-by: Archie Pusaka <apusaka@chromium.org>
> Reviewed-by: Alain Michaud <alainm@chromium.org>
>
> ---
>
>  net/bluetooth/l2cap_core.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
> index ade83e224567..306616ec26e6 100644
> --- a/net/bluetooth/l2cap_core.c
> +++ b/net/bluetooth/l2cap_core.c
> @@ -1515,8 +1515,13 @@ static bool l2cap_check_enc_key_size(struct hci_conn *hcon)
>          * that have no key size requirements. Ensure that the link is
>          * actually encrypted before enforcing a key size.
>          */
> +       int min_key_size = hcon->hdev->min_enc_key_size;
> +
> +       if (hcon->sec_level == BT_SECURITY_FIPS)
> +               min_key_size = 16;
> +
>         return (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags) ||
> -               hcon->enc_key_size >= hcon->hdev->min_enc_key_size);
> +               hcon->enc_key_size >= min_key_size);

While this looks fine to me, it looks like this should be placed
elsewhere since it takes an hci_conn and it is not L2CAP specific.

>  }
>
>  static void l2cap_do_start(struct l2cap_chan *chan)
> --
> 2.28.0.681.g6f77f65b4e-goog
>


-- 
Luiz Augusto von Dentz

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

* Re: [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level
  2020-09-21 17:13 ` Luiz Augusto von Dentz
@ 2020-09-22  7:37   ` Archie Pusaka
  2020-09-22 17:19     ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 5+ messages in thread
From: Archie Pusaka @ 2020-09-22  7:37 UTC (permalink / raw)
  To: Luiz Augusto von Dentz
  Cc: linux-bluetooth, Marcel Holtmann, CrosBT Upstreaming,
	Archie Pusaka, Alain Michaud, David S. Miller, Jakub Kicinski,
	Johan Hedberg, Linux Kernel Mailing List,
	open list:NETWORKING [GENERAL]

Hi Luiz,

On Tue, 22 Sep 2020 at 01:13, Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
>
> Hi Archie,
>
> On Mon, Sep 21, 2020 at 1:31 AM Archie Pusaka <apusaka@google.com> wrote:
> >
> > From: Archie Pusaka <apusaka@chromium.org>
> >
> > According to the spec Ver 5.2, Vol 3, Part C, Sec 5.2.2.8:
> > Device in security mode 4 level 4 shall enforce:
> > 128-bit equivalent strength for link and encryption keys required
> > using FIPS approved algorithms (E0 not allowed, SAFER+ not allowed,
> > and P-192 not allowed; encryption key not shortened)
> >
> > This patch rejects connection with key size below 16 for FIPS level
> > services.
> >
> > Signed-off-by: Archie Pusaka <apusaka@chromium.org>
> > Reviewed-by: Alain Michaud <alainm@chromium.org>
> >
> > ---
> >
> >  net/bluetooth/l2cap_core.c | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
> > index ade83e224567..306616ec26e6 100644
> > --- a/net/bluetooth/l2cap_core.c
> > +++ b/net/bluetooth/l2cap_core.c
> > @@ -1515,8 +1515,13 @@ static bool l2cap_check_enc_key_size(struct hci_conn *hcon)
> >          * that have no key size requirements. Ensure that the link is
> >          * actually encrypted before enforcing a key size.
> >          */
> > +       int min_key_size = hcon->hdev->min_enc_key_size;
> > +
> > +       if (hcon->sec_level == BT_SECURITY_FIPS)
> > +               min_key_size = 16;
> > +
> >         return (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags) ||
> > -               hcon->enc_key_size >= hcon->hdev->min_enc_key_size);
> > +               hcon->enc_key_size >= min_key_size);
>
> While this looks fine to me, it looks like this should be placed
> elsewhere since it takes an hci_conn and it is not L2CAP specific.

From what I understood, it is permissible to use AES-CCM P-256
encryption with key length < 16 when encrypting the link, but such a
connection does not satisfy security level 4, and therefore must not
be given access to level 4 services. However, I think it is
permissible to give them access to level 3 services or below.

Should I use l2cap chan->sec_level for this purpose? I'm kind of lost
on the difference between hcon->sec_level and chan->sec_level.

>
> >  }
> >
> >  static void l2cap_do_start(struct l2cap_chan *chan)
> > --
> > 2.28.0.681.g6f77f65b4e-goog
> >
>
>
> --
> Luiz Augusto von Dentz

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

* Re: [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level
  2020-09-22  7:37   ` Archie Pusaka
@ 2020-09-22 17:19     ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2020-09-22 17:19 UTC (permalink / raw)
  To: Archie Pusaka
  Cc: linux-bluetooth, Marcel Holtmann, CrosBT Upstreaming,
	Archie Pusaka, Alain Michaud, David S. Miller, Jakub Kicinski,
	Johan Hedberg, Linux Kernel Mailing List,
	open list:NETWORKING [GENERAL]

Hi Archie,

On Tue, Sep 22, 2020 at 12:37 AM Archie Pusaka <apusaka@google.com> wrote:
>
> Hi Luiz,
>
> On Tue, 22 Sep 2020 at 01:13, Luiz Augusto von Dentz
> <luiz.dentz@gmail.com> wrote:
> >
> > Hi Archie,
> >
> > On Mon, Sep 21, 2020 at 1:31 AM Archie Pusaka <apusaka@google.com> wrote:
> > >
> > > From: Archie Pusaka <apusaka@chromium.org>
> > >
> > > According to the spec Ver 5.2, Vol 3, Part C, Sec 5.2.2.8:
> > > Device in security mode 4 level 4 shall enforce:
> > > 128-bit equivalent strength for link and encryption keys required
> > > using FIPS approved algorithms (E0 not allowed, SAFER+ not allowed,
> > > and P-192 not allowed; encryption key not shortened)
> > >
> > > This patch rejects connection with key size below 16 for FIPS level
> > > services.
> > >
> > > Signed-off-by: Archie Pusaka <apusaka@chromium.org>
> > > Reviewed-by: Alain Michaud <alainm@chromium.org>
> > >
> > > ---
> > >
> > >  net/bluetooth/l2cap_core.c | 7 ++++++-
> > >  1 file changed, 6 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
> > > index ade83e224567..306616ec26e6 100644
> > > --- a/net/bluetooth/l2cap_core.c
> > > +++ b/net/bluetooth/l2cap_core.c
> > > @@ -1515,8 +1515,13 @@ static bool l2cap_check_enc_key_size(struct hci_conn *hcon)
> > >          * that have no key size requirements. Ensure that the link is
> > >          * actually encrypted before enforcing a key size.
> > >          */
> > > +       int min_key_size = hcon->hdev->min_enc_key_size;
> > > +
> > > +       if (hcon->sec_level == BT_SECURITY_FIPS)
> > > +               min_key_size = 16;
> > > +
> > >         return (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags) ||
> > > -               hcon->enc_key_size >= hcon->hdev->min_enc_key_size);
> > > +               hcon->enc_key_size >= min_key_size);
> >
> > While this looks fine to me, it looks like this should be placed
> > elsewhere since it takes an hci_conn and it is not L2CAP specific.
>
> From what I understood, it is permissible to use AES-CCM P-256
> encryption with key length < 16 when encrypting the link, but such a
> connection does not satisfy security level 4, and therefore must not
> be given access to level 4 services. However, I think it is
> permissible to give them access to level 3 services or below.
>
> Should I use l2cap chan->sec_level for this purpose? I'm kind of lost
> on the difference between hcon->sec_level and chan->sec_level.

The chan->sec_level is L2CAP channel required sec_level while
hcon->sec_level is the current secure level in effect, at some point I
guess we assign the hcon->sec_level with chan->sec_level but Im not
sure if that has already happened here or not.

> >
> > >  }
> > >
> > >  static void l2cap_do_start(struct l2cap_chan *chan)
> > > --
> > > 2.28.0.681.g6f77f65b4e-goog
> > >
> >
> >
> > --
> > Luiz Augusto von Dentz



-- 
Luiz Augusto von Dentz

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

* Re: [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level
  2020-09-21  8:31 [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level Archie Pusaka
  2020-09-21 17:13 ` Luiz Augusto von Dentz
@ 2020-09-25 16:25 ` Marcel Holtmann
  1 sibling, 0 replies; 5+ messages in thread
From: Marcel Holtmann @ 2020-09-25 16:25 UTC (permalink / raw)
  To: Archie Pusaka
  Cc: linux-bluetooth, CrosBT Upstreaming, Archie Pusaka,
	Alain Michaud, David S. Miller, Jakub Kicinski, Johan Hedberg,
	linux-kernel, netdev

Hi Archie,

> According to the spec Ver 5.2, Vol 3, Part C, Sec 5.2.2.8:
> Device in security mode 4 level 4 shall enforce:
> 128-bit equivalent strength for link and encryption keys required
> using FIPS approved algorithms (E0 not allowed, SAFER+ not allowed,
> and P-192 not allowed; encryption key not shortened)
> 
> This patch rejects connection with key size below 16 for FIPS level
> services.
> 
> Signed-off-by: Archie Pusaka <apusaka@chromium.org>
> Reviewed-by: Alain Michaud <alainm@chromium.org>
> 
> ---
> 
> net/bluetooth/l2cap_core.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
> index ade83e224567..306616ec26e6 100644
> --- a/net/bluetooth/l2cap_core.c
> +++ b/net/bluetooth/l2cap_core.c
> @@ -1515,8 +1515,13 @@ static bool l2cap_check_enc_key_size(struct hci_conn *hcon)
> 	 * that have no key size requirements. Ensure that the link is
> 	 * actually encrypted before enforcing a key size.
> 	 */
> +	int min_key_size = hcon->hdev->min_enc_key_size;
> +
> +	if (hcon->sec_level == BT_SECURITY_FIPS)
> +		min_key_size = 16;
> +
> 	return (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags) ||
> -		hcon->enc_key_size >= hcon->hdev->min_enc_key_size);
> +		hcon->enc_key_size >= min_key_size);
> }

I think this is fine at this position. It is a L2CAP socket requirement to be in FIPS mode since you will set it via socket option. However I would extend the comment above to describe what is going on. And generally the variable declaration might be better placed before the comment.

Regards

Marcel


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

end of thread, other threads:[~2020-09-25 16:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-21  8:31 [PATCH v1] Bluetooth: Enforce key size of 16 bytes on FIPS level Archie Pusaka
2020-09-21 17:13 ` Luiz Augusto von Dentz
2020-09-22  7:37   ` Archie Pusaka
2020-09-22 17:19     ` Luiz Augusto von Dentz
2020-09-25 16:25 ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).