* [PATCH BlueZ] gatt: sanitize input at profile registration
@ 2022-02-26 10:08 Andreas Kemnade
2022-02-26 12:34 ` [BlueZ] " bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: Andreas Kemnade @ 2022-02-26 10:08 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Andreas Kemnade
Check whether type of UUIDs property of GattProfile1 object
is correct.
---
src/gatt-database.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/gatt-database.c b/src/gatt-database.c
index 481222d44..485af04ea 100644
--- a/src/gatt-database.c
+++ b/src/gatt-database.c
@@ -3423,6 +3423,11 @@ static struct external_profile *create_profile(struct gatt_app *app,
goto fail;
}
+ if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY) {
+ DBG("UUIDs wrongly formatted");
+ goto fail;
+ }
+
dbus_message_iter_recurse(&iter, &array);
while (dbus_message_iter_get_arg_type(&array) == DBUS_TYPE_STRING) {
--
2.30.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [BlueZ] gatt: sanitize input at profile registration
2022-02-26 10:08 [PATCH BlueZ] gatt: sanitize input at profile registration Andreas Kemnade
@ 2022-02-26 12:34 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2022-02-26 12:34 UTC (permalink / raw)
To: linux-bluetooth, andreas
[-- Attachment #1: Type: text/plain, Size: 997 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=618281
---Test result---
Test Summary:
CheckPatch PASS 0.57 seconds
GitLint PASS 0.38 seconds
Prep - Setup ELL PASS 51.10 seconds
Build - Prep PASS 0.62 seconds
Build - Configure PASS 10.09 seconds
Build - Make PASS 1750.78 seconds
Make Check PASS 12.32 seconds
Make Check w/Valgrind PASS 517.24 seconds
Make Distcheck PASS 280.39 seconds
Build w/ext ELL - Configure PASS 10.10 seconds
Build w/ext ELL - Make PASS 1730.19 seconds
Incremental Build with patchesPASS 0.00 seconds
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-02-26 12:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-26 10:08 [PATCH BlueZ] gatt: sanitize input at profile registration Andreas Kemnade
2022-02-26 12:34 ` [BlueZ] " bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox