[bluez/bluez] 9e504d: unit: Add test for sdp_xml_parse_record()
hadess <[email protected]>
| Newsgroups | org.kernel.vger.linux-bluetooth |
|---|---|
| Message-ID | <bluez/bluez/push/refs/heads/1144549/[email protected]> |
Branch: refs/heads/1144549
Home: https://github.com/bluez/bluez
Commit: 9e504ddc8bdc34b9dcdf10982c69f7dcab5cea70
https://github.com/bluez/bluez/commit/9e504ddc8bdc34b9dcdf10982c69f7dcab5cea70
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M Makefile.am
A unit/sdp-xml/Bluetooth_HID-sdp_record.xml
A unit/sdp-xml/qt-SerialPortSDPRecord.xml
A unit/test-sdp-xml.c
Log Message:
-----------
unit: Add test for sdp_xml_parse_record()
This adds 2 example XML files from other repositories, under a fair use
license exception.
Commit: 7074b7d01e015769651701d893983121b7425697
https://github.com/bluez/bluez/commit/7074b7d01e015769651701d893983121b7425697
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M src/sdp-xml.c
Log Message:
-----------
sdp-xml: Fix crash caused by type confusion when parsing crafted SDP XML
When element_end() processes </attribute>, it frees ctx_data->stack_head
and clears the stack even if parsing is still nested inside a parent
container.
If a crafted ServiceRecord places a nested <attribute> inside <sequence>,
a later sibling scalar element such as <uint64> can become the new stack
head. When the closing </sequence> is then processed, compute_seq_size()
is reached without first validating that the current node is actually
a sequence.
sdp_data_t.val stores both scalar members such as uint64 and the
dataseq pointer in the same union. As a result, attacker-controlled
scalar data can be reinterpreted as a linked-list pointer and traversed
until bluetoothd crashes.
See https://github.com/bluez/bluez/security/advisories/GHSA-7mmr-gwqx-vc34
Reported-by: Aisle Research
Co-authored-by: Aisle Research
Commit: a94a2ccddc2aae7381a0c405e1e23c22aba1c19c
https://github.com/bluez/bluez/commit/a94a2ccddc2aae7381a0c405e1e23c22aba1c19c
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M Makefile.am
A unit/sdp-xml/compute-seq-size-type-confusion.xml
M unit/test-sdp-xml.c
Log Message:
-----------
unit: Add test for sdp-xml type-confusion bug
See https://github.com/bluez/bluez/security/advisories/GHSA-7mmr-gwqx-vc34
Co-authored-by: Aisle Research
Commit: 406953a2229a3a86f07d9c7925f9c0cf88809ef4
https://github.com/bluez/bluez/commit/406953a2229a3a86f07d9c7925f9c0cf88809ef4
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M src/sdp-xml.c
Log Message:
-----------
sdp-xml: Fix memory leak when adding duplicate attributes
When sdp_attr_add() fails because an attribute is duplicated, don't
unset its pointer in the parsing context data. As the attribute wasn't
added to the record, the ownership of the attribute didn't get passed
to the record either.
Don't set the pointer to NULL so it gets freed when cleaning up the
context.
Fixes those 2 ASan warnings:
Direct leak of 48 byte(s) in 1 object(s) allocated from:
#0 0x7f896a8ef24f in calloc (/lib64/libasan.so.8+0xef24f) (BuildId: 5395ec74f54d9ec7bf97c06583dd39a96c230822)
#1 0x562042b747f2 in sdp_data_alloc_with_length lib/bluetooth/sdp.c:350
Indirect leak of 2 byte(s) in 1 object(s) allocated from:
#0 0x7f896a8ef24f in calloc (/lib64/libasan.so.8+0xef24f) (BuildId: 5395ec74f54d9ec7bf97c06583dd39a96c230822)
#1 0x562042b74bd7 in sdp_data_alloc_with_length lib/bluetooth/sdp.c:425
See https://github.com/bluez/bluez/security/advisories/GHSA-75v6-6q44-57hc
Reported-by: Aisle Research
Co-authored-by: Aisle Research
Commit: 0448df4549fbe82371d4b05ffd5f02b29ee170a6
https://github.com/bluez/bluez/commit/0448df4549fbe82371d4b05ffd5f02b29ee170a6
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M Makefile.am
A unit/sdp-xml/duplicate-attribute.xml
M unit/test-sdp-xml.c
Log Message:
-----------
unit: Add test for sdp-xml duplicate attribute bug
See https://github.com/bluez/bluez/security/advisories/GHSA-75v6-6q44-57hc
Co-authored-by: Aisle Research
Commit: cd6432449149171235b1fb556a3b7db4cf3f31e2
https://github.com/bluez/bluez/commit/cd6432449149171235b1fb556a3b7db4cf3f31e2
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M src/sdp-xml.c
Log Message:
-----------
sdp-xml: Optimise parsing large sequences
SDP sequences are stored as single-linked lists, so appending members
to a sequence requires finding the tail of the list before the
insertion.
Finding the tail of the list always starts at the beginning of the list,
so takes longer and longer as the list grows bigger.
Keep track of the tail to avoid that problem. This cuts down the
sequence_on_squared() test from around 3 to 4 seconds to less than
0.1 seconds.
Commit: 6f3ce91d1f7a3b79bbd2d25a68b53ea8b2da4fee
https://github.com/bluez/bluez/commit/6f3ce91d1f7a3b79bbd2d25a68b53ea8b2da4fee
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M unit/test-sdp-xml.c
Log Message:
-----------
unit: Add test for slow element_end() append
This uses 40k iterations as this takes a visible amount of time on a
pretty fast desktop machine (3-4 secs on an i9 9900k).
See: https://github.com/bluez/bluez/security/advisories/GHSA-4p57-mrcv-r2jc
Commit: 0aec92f6bec3ba46abe27e5dab87ba514d0e4555
https://github.com/bluez/bluez/commit/0aec92f6bec3ba46abe27e5dab87ba514d0e4555
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M src/sdp-xml.c
Log Message:
-----------
sdp-xml: Fix stack overflow when converting large sequences to XML
Don't make convert_raw_data_to_xml() call itself recursively X times
if there are X elements in a sequence.
AddressSanitizer:DEADLYSIGNAL
=================================================================
==1684518==ERROR: AddressSanitizer: stack-overflow on address 0x7fff7fb40d98 (pc 0x7fbe1ee95c2b bp 0x7fff7fb41610 sp 0x7fff7fb40d70 T0)
#0 0x7fbe1ee95c2b in printf_common(void*, char const*, __va_list_tag*) (/lib64/libasan.so.8+0x95c2b) (BuildId: 5395ec74f54d9ec7bf97c06583dd39a96c230822)
#1 0x7fbe1eeb72d6 in vsnprintf (/lib64/libasan.so.8+0xb72d6) (BuildId: 5395ec74f54d9ec7bf97c06583dd39a96c230822)
#2 0x7fbe1eeb94f4 in snprintf (/lib64/libasan.so.8+0xb94f4) (BuildId: 5395ec74f54d9ec7bf97c06583dd39a96c230822)
#3 0x000000401fc2 in convert_raw_data_to_xml ../../../../Projects/jhbuild/bluez/src/sdp-xml.c:709
#4 0x000000401c4f in convert_raw_data_to_xml ../../../../Projects/jhbuild/bluez/src/sdp-xml.c:994
[...]
#246 0x000000401c4f in convert_raw_data_to_xml ../../../../Projects/jhbuild/bluez/src/sdp-xml.c:994
SUMMARY: AddressSanitizer: stack-overflow ../../../../Projects/jhbuild/bluez/src/sdp-xml.c:709 in convert_raw_data_to_xml
Commit: 7551c6e5a358c33f8d8b8665fd0b5a9bd71f4309
https://github.com/bluez/bluez/commit/7551c6e5a358c33f8d8b8665fd0b5a9bd71f4309
Author: Bastien Nocera <[email protected]>
Date: 2026-08-12 (Wed, 12 Aug 2026)
Changed paths:
M unit/test-sdp-xml.c
Log Message:
-----------
unit: Add convert_sdp_record_to_xml() to SDP XML testing
This tests SDP binary to XML conversion, including whether a fix for
a stack overflow when dealing with large sequences, like in
sequence_on_squared(), works correctly.
Compare: https://github.com/bluez/bluez/compare/9e504ddc8bdc%5E...7551c6e5a358
To unsubscribe from these emails, change your notification settings at https://github.com/bluez/bluez/settings/notifications