Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp5137916ybb; Tue, 24 Mar 2020 11:34:22 -0700 (PDT) X-Google-Smtp-Source: ADFU+vtAO/c2Fp2u6j0sP4UgaB9zIvw2NVAvXywvuhT7YPUbOEwkvtH9PTD3B9hUxzxRe4HcTilB X-Received: by 2002:a9d:3a45:: with SMTP id j63mr21496820otc.71.1585074862014; Tue, 24 Mar 2020 11:34:22 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585074862; cv=none; d=google.com; s=arc-20160816; b=mJsyscAXZrCFn8CYG94rzd0ir+pqHjIkYrPuzgx1I1DtUOFQsnbdgV1X5iV+MqHh5B OMxsFiHofbpqymNSsyl39fBi2BiTOYtEwyQn3DXHuoRX8TBiM+GMxWpYA/JdsO+GZkPl C57UMNCHQfUr40LbsrcZOOqRCZ6wLC3IX+hPBDjEdM6oqgS98qIZi3FcV2iqXTc7wm08 bC94W7AqBsvJafCeIRsmQU4e2roUAd6ByfynpR9qgbhewLaqlri+uRt65GF13iWfGSHH VdBJOxIvitANodVACJ3P/93xZpcGDaYSzBIlxo9EXN+ddW4jRsL8p+7nceDfdNLChRkQ R0eg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:to:references:message-id :content-transfer-encoding:cc:date:in-reply-to:from:subject :mime-version; bh=4DIn+kVTvMhM9d0K5TGP3jime8dThDY4lSxLkQWz2gM=; b=JmycZzkKUUmv2kpGPwmWOWSKFuhYsfOnnP1YZfwxRanaYQTlpxGsQvf9Stb1pomzfV TqkKwqCLfgEzxs4BFis3+bGfRJDwWhh22KCqEuiLqnQ7kpLjnkDcuSXUFnvk8GLE+Vu8 v3cBgBez+UU99h07hlEzQyxZlD9t3CEUCiXMwoMpvBNZ0BtjUt3IcJFfF+hTHnLNxpJk T6FiFNONoBnG+5l+eIrmNS54YBasnivj/XFiTZ+toHo0oXdZCM4czTOdUn5v++z2kT+e 8DunG6KE0Zt7uObqRu56gc3iaLh+9uFBjbWfQKvLtnIsNiPAt6Y8sRnbJ3Sl6HvLzlBl s+Zg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-bluetooth-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l1si913441oos.74.2020.03.24.11.33.50; Tue, 24 Mar 2020 11:34:21 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-bluetooth-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727468AbgCXSdO convert rfc822-to-8bit (ORCPT + 99 others); Tue, 24 Mar 2020 14:33:14 -0400 Received: from coyote.holtmann.net ([212.227.132.17]:51961 "EHLO mail.holtmann.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727398AbgCXSdN (ORCPT ); Tue, 24 Mar 2020 14:33:13 -0400 Received: from marcel-macbook.fritz.box (p4FEFC5A7.dip0.t-ipconnect.de [79.239.197.167]) by mail.holtmann.org (Postfix) with ESMTPSA id CD531CECBE; Tue, 24 Mar 2020 19:42:43 +0100 (CET) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 13.0 \(3608.60.0.2.5\)) Subject: Re: [PATCH v2] bluetooth: Enforce classic key size verification. From: Marcel Holtmann In-Reply-To: Date: Tue, 24 Mar 2020 19:33:11 +0100 Cc: Alain Michaud , Marcel Holtmann , BlueZ Content-Transfer-Encoding: 8BIT Message-Id: <992DB845-DB7F-41B9-93E0-538B08BDF910@holtmann.org> References: <20200320133748.154926-1-alainm@chromium.org> <1ACCF17B-90EB-4DE1-BD8C-A927ABEC3913@holtmann.org> To: Alain Michaud X-Mailer: Apple Mail (2.3608.60.0.2.5) Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org Hi Alain, >>>> This change introduces a new configuration to strictly enforce key size >>>> checks. This ensures that systems are in a secured configuration by >>>> default while allowing for a compatible posture via a Kconfig option to >>>> support controllers who may not support the read encryption key size >>>> command. >>>> >>>> Signed-off-by: Alain Michaud >>>> --- >>>> >>>> net/bluetooth/Kconfig | 20 ++++++++++++++++++++ >>>> net/bluetooth/hci_core.c | 10 ++++++++++ >>>> net/bluetooth/hci_event.c | 4 ++++ >>>> 3 files changed, 34 insertions(+) >>>> >>>> diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig >>>> index 165148c7c4ce..8e177d4f3f02 100644 >>>> --- a/net/bluetooth/Kconfig >>>> +++ b/net/bluetooth/Kconfig >>>> @@ -128,4 +128,24 @@ config BT_DEBUGFS >>>> Provide extensive information about internal Bluetooth states >>>> in debugfs. >>>> >>>> +config BT_EXPERT >>>> + bool "Expert Bluetooth options" >>>> + depends on BT >>>> + default n >>>> + help >>>> + Provides a set of expert options and configurations that should >>>> + only be used deliberately by BT experts. This is considered a >>>> + global switch to ensure these advanced features or options that >>>> + depends on BT_EXPERT are only used in expert mode. >>>> + >>>> +config BT_ENFORCE_CLASSIC_KEY_SIZES >>>> + bool "Enforces security requirements for Bluetooth classic" >>>> + depends on BT && BT_EXPERT >>>> + default y >>>> + help >>>> + Enforces Bluetooth classic security requirements by disallowing >>>> + use of insecure Bluetooth controllers, i.e. that doesn't support >>>> + Read Encryption Key Size command to prevent BT classic connection >>>> + with very short encryption key. >>>> + >>>> source "drivers/bluetooth/Kconfig" >>>> diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c >>>> index 4e6d61a95b20..142130d4b66b 100644 >>>> --- a/net/bluetooth/hci_core.c >>>> +++ b/net/bluetooth/hci_core.c >>>> @@ -1540,6 +1540,16 @@ static int hci_dev_do_open(struct hci_dev *hdev) >>>> >>>> clear_bit(HCI_INIT, &hdev->flags); >>>> >>>> +#ifdef BT_ENFORCE_CLASSIC_KEY_SIZES >>>> + /* Don't allow usage of Bluetooth if the chip doesn't support */ >>>> + /* Read Encryption Key Size command */ >>>> + if (!ret && !(hdev->commands[20] & 0x10)) { >>>> + bt_dev_err(hdev, >>>> + "Disabling BT, Read Encryption Key Size !supported"); >>>> + ret = -EIO; >>>> + } >>>> +#endif >>> Just FYI, I haven't changed this bit yet. I'll wait for your guidance >>> on where best to put this to leave the controller in the right state. >> >> while I was writing a patch to show how to use unconfigured state for controllers that don’t support the Read Encryption Key Size command, I was wonder why put this into the kernel in the first place. >> >> I was thinking that essentially userspace can just make the decision to use a controller, or use it in LE only mode or not use a controller at all. So all we need is to collect the security information of the controller and kernel and expose them to bluetoothd. >> >> +Read Security Features Command >> +============================== >> + >> + Command Code: 0x0048 >> + Controller Index: >> + Command Parameters: >> + Return Parameters: Security_Features (4 Octets) >> + >> + This command is used to retrieve the supported security features >> + by the controller or the kernel. >> + >> + The Security_Features parameter is a bitmask with currently the >> + following available bits: >> + >> + 0 Encryption Key Size enforcement (BR/EDR) >> + 1 Encryption Key Size enforcement (LE) >> + >> + This command generates a Command Complete event on success or >> + a Command Status event on failure. >> + >> + Possible errors: Invalid Parameters >> + Invalid Index >> + >> + >> >> I was also considering that we additionally add the ECDH Public Key validation here as supported bits. And in the future even more security related information that we want to enforce. However the enforcement to power on or not use a controller is left to bluetoothd and its main.conf configuration. Thoughts? > I like the idea. However, I feel we will still need to guard against > the Read Encryption Key Size failing. Perhaps we can just do this > unconditionally (where it is reported as supported but fails, we > simply set the encryption key size to 0 and move on). I was thinking the same thing. Lets just set the encryption size to zero and report the error. Care to send a patch for it or should I send one? Regards Marcel