Compare commits
No commits in common. "5158efaaafdbfff142b30a70735b00586490b709" and "0f7fe95ea13305cb80e8eec44f5a066c17e6c381" have entirely different histories.
5158efaaaf
...
0f7fe95ea1
@ -1,223 +0,0 @@
|
|||||||
From bcea4646325b3bc526b8bfaee0bdd795218e3658 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ivan Solovev <ivan.solovev@qt.io>
|
|
||||||
Date: Thu, 02 Jan 2025 16:48:49 +0100
|
|
||||||
Subject: [PATCH] QLowEnergyControllerPrivateBluez: guard against malformed replies
|
|
||||||
|
|
||||||
The QLowEnergyControllerPrivateBluez::l2cpReadyRead() slot reads the
|
|
||||||
data from a Bluetooth L2CAP socket and then tries to process it
|
|
||||||
according to ATT protocol specs.
|
|
||||||
|
|
||||||
However, the code was missing length and sanity checks at some
|
|
||||||
codepaths in processUnsolicitedReply() and processReply() helper
|
|
||||||
methods, simply relying on the data to be in the proper format.
|
|
||||||
|
|
||||||
This patch adds some minimal checks to make sure that we do not read
|
|
||||||
past the end of the received array and do not divide by zero.
|
|
||||||
|
|
||||||
This problem was originally pointed out by Marc Mutz in an unrelated
|
|
||||||
patch.
|
|
||||||
|
|
||||||
Conflict resolution for 5.15: adjusted the patch to the fact that
|
|
||||||
there is no QBluezConst::AttCommand enum in this branch, and the
|
|
||||||
code uses quint8 to represent the ATT commands. This required to
|
|
||||||
change the debug message in reportMalformedData() function.
|
|
||||||
|
|
||||||
Change-Id: I8dcfe031f70ad61fa3d87dc9d771c3fabc6d0edc
|
|
||||||
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
|
|
||||||
Reviewed-by: Juha Vuolle <juha.vuolle@qt.io>
|
|
||||||
(cherry picked from commit aecbd657c841a2a8c74631ceac96b8ff1f03ab5c)
|
|
||||||
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
|
|
||||||
(cherry picked from commit 53e991671f725c136e9aa824c59ec13934c63fb4)
|
|
||||||
(cherry picked from commit 465e3f3112a9c158aa6dd2f8b9439ae6c2de336f)
|
|
||||||
(cherry picked from commit 88c30a23dcff5e7c16a54f93accf743847e22617)
|
|
||||||
---
|
|
||||||
|
|
||||||
diff --git a/src/bluetooth/qlowenergycontroller_bluez.cpp b/src/bluetooth/qlowenergycontroller_bluez.cpp
|
|
||||||
index fcb497d..9f9246d 100644
|
|
||||||
--- a/src/bluetooth/qlowenergycontroller_bluez.cpp
|
|
||||||
+++ b/src/bluetooth/qlowenergycontroller_bluez.cpp
|
|
||||||
@@ -179,12 +179,13 @@
|
|
||||||
return QBluetoothUuid(qtdst);
|
|
||||||
}
|
|
||||||
|
|
||||||
-static void dumpErrorInformation(const QByteArray &response)
|
|
||||||
+/* returns false if the format is incorrect */
|
|
||||||
+static bool dumpErrorInformation(const QByteArray &response)
|
|
||||||
{
|
|
||||||
const char *data = response.constData();
|
|
||||||
if (response.size() != 5 || data[0] != ATT_OP_ERROR_RESPONSE) {
|
|
||||||
qCWarning(QT_BT_BLUEZ) << QLatin1String("Not a valid error response");
|
|
||||||
- return;
|
|
||||||
+ return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
quint8 lastCommand = data[1];
|
|
||||||
@@ -238,6 +239,8 @@
|
|
||||||
qCDebug(QT_BT_BLUEZ) << "Error1:" << errorString
|
|
||||||
<< "last command:" << hex << lastCommand
|
|
||||||
<< "handle:" << handle;
|
|
||||||
+
|
|
||||||
+ return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int getUuidSize(const QBluetoothUuid &uuid)
|
|
||||||
@@ -1014,6 +1017,7 @@
|
|
||||||
{
|
|
||||||
Q_ASSERT(charData);
|
|
||||||
Q_ASSERT(data);
|
|
||||||
+ Q_ASSERT(elementLength >= 5);
|
|
||||||
|
|
||||||
QLowEnergyHandle attributeHandle = bt_get_le16(&data[0]);
|
|
||||||
charData->properties =
|
|
||||||
@@ -1022,7 +1026,7 @@
|
|
||||||
|
|
||||||
if (elementLength == 7) // 16 bit uuid
|
|
||||||
charData->uuid = QBluetoothUuid(bt_get_le16(&data[5]));
|
|
||||||
- else
|
|
||||||
+ else if (elementLength == 21) // 128 bit uuid
|
|
||||||
charData->uuid = convert_uuid128((quint128 *)&data[5]);
|
|
||||||
|
|
||||||
qCDebug(QT_BT_BLUEZ) << "Found handle:" << hex << attributeHandle
|
|
||||||
@@ -1039,6 +1043,7 @@
|
|
||||||
{
|
|
||||||
Q_ASSERT(foundServices);
|
|
||||||
Q_ASSERT(data);
|
|
||||||
+ Q_ASSERT(elementLength >= 6);
|
|
||||||
|
|
||||||
QLowEnergyHandle attributeHandle = bt_get_le16(&data[0]);
|
|
||||||
|
|
||||||
@@ -1048,9 +1053,14 @@
|
|
||||||
// data[2] -> included service start handle
|
|
||||||
// data[4] -> included service end handle
|
|
||||||
|
|
||||||
+ // TODO: Spec v. 5.3, Vol. 3, Part G, 4.5.1 mentions that only
|
|
||||||
+ // 16-bit UUID can be returned here. If the UUID is 128-bit,
|
|
||||||
+ // then it is omitted from the response, and should be requested
|
|
||||||
+ // separately with the ATT_READ_REQ command.
|
|
||||||
+
|
|
||||||
if (elementLength == 8) //16 bit uuid
|
|
||||||
foundServices->append(QBluetoothUuid(bt_get_le16(&data[6])));
|
|
||||||
- else
|
|
||||||
+ else if (elementLength == 22) // 128 bit uuid
|
|
||||||
foundServices->append(convert_uuid128((quint128 *) &data[6]));
|
|
||||||
|
|
||||||
qCDebug(QT_BT_BLUEZ) << "Found included service: " << hex
|
|
||||||
@@ -1059,17 +1069,29 @@
|
|
||||||
return attributeHandle;
|
|
||||||
}
|
|
||||||
|
|
||||||
+Q_DECL_COLD_FUNCTION
|
|
||||||
+static void reportMalformedData(quint8 cmd, const QByteArray &response)
|
|
||||||
+{
|
|
||||||
+ qCDebug(QT_BT_BLUEZ, "Command 0x%X malformed data: %s", cmd,
|
|
||||||
+ response.toHex().constData());
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void QLowEnergyControllerPrivateBluez::processReply(
|
|
||||||
const Request &request, const QByteArray &response)
|
|
||||||
{
|
|
||||||
Q_Q(QLowEnergyController);
|
|
||||||
|
|
||||||
+ // We already have an isEmpty() check at the only calling site that reads
|
|
||||||
+ // incoming data, so Q_ASSERT is enough.
|
|
||||||
+ Q_ASSERT(!response.isEmpty());
|
|
||||||
+
|
|
||||||
quint8 command = response.constData()[0];
|
|
||||||
|
|
||||||
bool isErrorResponse = false;
|
|
||||||
// if error occurred 2. byte is previous request type
|
|
||||||
if (command == ATT_OP_ERROR_RESPONSE) {
|
|
||||||
- dumpErrorInformation(response);
|
|
||||||
+ if (!dumpErrorInformation(response))
|
|
||||||
+ return;
|
|
||||||
command = response.constData()[1];
|
|
||||||
isErrorResponse = true;
|
|
||||||
}
|
|
||||||
@@ -1084,6 +1106,10 @@
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ if (response.size() < 3) {
|
|
||||||
+ reportMalformedData(command, response);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
const char *data = response.constData();
|
|
||||||
quint16 mtu = bt_get_le16(&data[1]);
|
|
||||||
mtuSize = mtu;
|
|
||||||
@@ -1111,8 +1137,15 @@
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ // response[1] == elementLength. According to the spec it should be
|
|
||||||
+ // at least 4 bytes. See Spec v5.3, Vol 3, Part F, 3.4.4.10
|
|
||||||
+ if (response.size() < 2 || response[1] < 4) {
|
|
||||||
+ reportMalformedData(command, response);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
QLowEnergyHandle start = 0, end = 0;
|
|
||||||
- const quint16 elementLength = response.constData()[1];
|
|
||||||
+ const quint16 elementLength = response.constData()[1]; // value checked above
|
|
||||||
const quint16 numElements = (response.size() - 2) / elementLength;
|
|
||||||
quint16 offset = 2;
|
|
||||||
const char *data = response.constData();
|
|
||||||
@@ -1190,16 +1223,25 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
/* packet format:
|
|
||||||
- * if GATT_CHARACTERISTIC discovery
|
|
||||||
+ * if GATT_CHARACTERISTIC discovery (Spec 5.3, Vol. 3, Part G, 4.6)
|
|
||||||
* <opcode><elementLength>
|
|
||||||
* [<handle><property><charHandle><uuid>]+
|
|
||||||
+ * The minimum elementLength is 7 bytes (uuid is always included)
|
|
||||||
*
|
|
||||||
- * if GATT_INCLUDE discovery
|
|
||||||
+ * if GATT_INCLUDE discovery (Spec 5.3, Vol. 3, Part G, 4.5.1)
|
|
||||||
* <opcode><elementLength>
|
|
||||||
* [<handle><startHandle_included><endHandle_included><uuid>]+
|
|
||||||
+ * The minimum elementLength is 6 bytes (uuid can be omitted).
|
|
||||||
*
|
|
||||||
* The uuid can be 16 or 128 bit.
|
|
||||||
*/
|
|
||||||
+
|
|
||||||
+ const quint8 minimumElementLength = attributeType == GATT_CHARACTERISTIC ? 7 : 6;
|
|
||||||
+ if (response.size() < 2 || response[1] < minimumElementLength) {
|
|
||||||
+ reportMalformedData(command, response);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
QLowEnergyHandle lastHandle;
|
|
||||||
const quint16 elementLength = response.constData()[1];
|
|
||||||
const quint16 numElements = (response.size() - 2) / elementLength;
|
|
||||||
@@ -1401,6 +1443,12 @@
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ // Spec 5.3, Vol. 3, Part F, 3.4.3.2
|
|
||||||
+ if (response.size() < 6) {
|
|
||||||
+ reportMalformedData(command, response);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
const quint8 format = response[1];
|
|
||||||
quint16 elementLength;
|
|
||||||
switch (format) {
|
|
||||||
@@ -1831,8 +1879,17 @@
|
|
||||||
|
|
||||||
void QLowEnergyControllerPrivateBluez::processUnsolicitedReply(const QByteArray &payload)
|
|
||||||
{
|
|
||||||
+ Q_ASSERT(!payload.isEmpty());
|
|
||||||
+
|
|
||||||
const char *data = payload.constData();
|
|
||||||
- bool isNotification = (data[0] == ATT_OP_HANDLE_VAL_NOTIFICATION);
|
|
||||||
+ const quint8 command = data[0];
|
|
||||||
+ bool isNotification = (command == ATT_OP_HANDLE_VAL_NOTIFICATION);
|
|
||||||
+
|
|
||||||
+ if (payload.size() < 3) {
|
|
||||||
+ reportMalformedData(command, payload);
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
const QLowEnergyHandle changedHandle = bt_get_le16(&data[1]);
|
|
||||||
|
|
||||||
if (QT_BT_BLUEZ().isDebugEnabled()) {
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
diff --git a/src/bluetooth/lecmaccalculator.cpp b/src/bluetooth/lecmaccalculator.cpp
|
|
||||||
index b150466..507603c 100644
|
|
||||||
--- a/src/bluetooth/lecmaccalculator.cpp
|
|
||||||
+++ b/src/bluetooth/lecmaccalculator.cpp
|
|
||||||
@@ -38,6 +38,8 @@
|
|
||||||
****************************************************************************/
|
|
||||||
#include "lecmaccalculator_p.h"
|
|
||||||
|
|
||||||
+#include <limits>
|
|
||||||
+
|
|
||||||
#include "bluez/bluez_data_p.h"
|
|
||||||
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
@ -1,23 +1,18 @@
|
|||||||
# spec file for qt5-qtconnectivity
|
# spec file for qt5-qtconnectivity
|
||||||
%global qt_module qtconnectivity
|
%global qt_module qtconnectivity
|
||||||
|
|
||||||
Name: qt5-%{qt_module}
|
Name: qt5-%{qt_module}
|
||||||
Version: 5.15.10
|
Version: 5.11.1
|
||||||
Release: 2
|
Release: 3
|
||||||
Summary: Qt5 - Connectivity components
|
Summary: QtConnectivity components for qt5
|
||||||
License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
License: LGPLv2 with exceptions or GPLv3 with exceptions
|
||||||
Url: https://qt.io
|
URL: http://qt.io
|
||||||
%global majmin %(echo %{version} | cut -d. -f1-2)
|
%global major_minor %(echo %{version} | cut -d. -f1-2)
|
||||||
Source0: https://download.qt.io/official_releases/qt/%{majmin}/%{version}/submodules/%{qt_module}-everywhere-opensource-src-%{version}.tar.xz
|
Source0: https://download.qt.io/official_releases/qt/%{major_minor}/%{version}/submodules/%{qt_module}-everywhere-src-%{version}.tar.xz
|
||||||
Patch0: %{name}-gcc11.patch
|
|
||||||
Patch6001: CVE-2025-23050-qtconnectivity-5.15.diff
|
|
||||||
|
|
||||||
%global __provides_exclude_from ^%{_qt5_archdatadir}/qml/.*\\.so$
|
%global __provides_exclude_from ^%{_qt5_archdatadir}/qml/.*\\.so$
|
||||||
|
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: qt5-qtbase-devel >= %{version}
|
BuildRequires: qt5-qtbase-devel >= %{version}
|
||||||
BuildRequires: qt5-qtbase-private-devel >= %{version}
|
|
||||||
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
|
||||||
BuildRequires: qt5-qtdeclarative-devel >= %{version}
|
BuildRequires: qt5-qtdeclarative-devel >= %{version}
|
||||||
BuildRequires: pkgconfig(bluez)
|
BuildRequires: pkgconfig(bluez)
|
||||||
|
|
||||||
@ -41,7 +36,7 @@ Examples files for %{name}
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %{qt_module}-everywhere-src-%{version}
|
%setup -q -n %{qt_module}-everywhere-src-%{version}
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -111,17 +106,5 @@ popd
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jan 22 2025 Funda Wang <fundawang@yeah.net> - 5.15.10-2
|
|
||||||
- fix CVE-2025-23050
|
|
||||||
|
|
||||||
* Mon Aug 21 2023 huayadong <huayadong@kylinos.cn> - 5.15.10-1
|
|
||||||
- update to version 5.15.10-1
|
|
||||||
|
|
||||||
* Wed Oct 13 2021 peijiankang <peijiankang@kylinos.cn> - 5.15.2-1
|
|
||||||
- update to upstream version 5.15.2
|
|
||||||
|
|
||||||
* Mon Sep 14 2020 liuweibo <liuweibo10@huawei.com> - 5.11.1-4
|
|
||||||
- Fix Source0
|
|
||||||
|
|
||||||
* Sat Nov 23 2019 openEuler Buildteam <buildteam@openeuler.org> - 5.11.1-3
|
* Sat Nov 23 2019 openEuler Buildteam <buildteam@openeuler.org> - 5.11.1-3
|
||||||
- refactor qt5-qtconnectivity.spec
|
- refactor qt5-qtconnectivity.spec
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
version_control: git
|
version_control: git
|
||||||
src_repo: https://code.qt.io/qt/qtconnectivity.git
|
src_repo: https://code.qt.io/qt/qtconnectivity.git
|
||||||
tag_prefix: "^v"
|
tag_prefix: ^v
|
||||||
separator: "."
|
seperator: .
|
||||||
|
|||||||
Binary file not shown.
BIN
qtconnectivity-everywhere-src-5.11.1.tar.xz
Normal file
BIN
qtconnectivity-everywhere-src-5.11.1.tar.xz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user