Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: SDP: Fix the error if continuation length is not 0 #86422

Conversation

lylezhu2012
Copy link
Collaborator

@lylezhu2012 lylezhu2012 commented Feb 27, 2025

When the continuation length is not 0, there is an reported error.

In current implementation, the total length is only valid only when the frame is the first block of the SDP response. For following continuous frame, the total length is 0.

So, change the condition to (total != 0 && frame_len > total)

Comment on lines 2055 to -2056
frame_len -= sdp_client_get_total(session, buf, &total);
if (frame_len != total) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Based on your description, shouldn't this test be (total != 0 && frame_len != total)?

Copy link
Collaborator Author

@lylezhu2012 lylezhu2012 Feb 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think only valid condition could be (total != 0 && frame_len > total).

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think only valid condition could be (total != 0 && frame_len > total).

This looks reasonable.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But I think the condition has not much effect for the entire response. It can only avoid the first frame of response is not valid.

So I think we need to keep the total len in the duration of the response. So I plan to improve it. That is why I removed the condition.
Besides, there is another issue is the SDP discover cannot be done in some cases that the frame of the response is invalid. This is another point we can improve.

Copy link
Collaborator Author

@lylezhu2012 lylezhu2012 Feb 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By the way, please help review the PRs #82316 and #81769. All of them are used to make sure the quality of the SDP.
If the test suites are applied in main line, we can easy verify SDP.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I created several PRs, including #86459, #86460, #86458, #86457, and #86456.

@lylezhu2012 lylezhu2012 force-pushed the fix_sdp_invalid_attribute_lists_error branch from 7dcc4f4 to c3d198b Compare February 27, 2025 14:12
@zephyrbot zephyrbot added the size: XS A PR changing only a single line of code label Feb 27, 2025
gzh-terry
gzh-terry previously approved these changes Feb 27, 2025
@lylezhu2012 lylezhu2012 requested a review from jhedberg February 27, 2025 14:38
makeshi
makeshi previously approved these changes Feb 28, 2025
@@ -2053,7 +2053,7 @@ static int sdp_client_receive_ssa_sa(struct bt_sdp_client *session, struct net_b

/* Get total value of all attributes to be collected */
frame_len -= sdp_client_get_total(session, buf, &total);
if (frame_len != total) {
if (total && (frame_len > total)) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be good to add a code comment above this, so future readers (years from now) understand why the condition is as it is.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure. Updated.

When the continuation length is not 0, there is a reported error.

In current implementation, the total length is only valid only when
the frame is the first block of the SDP response. For following
continuous frame, the total length is 0.

So, change the condition to `(total != 0 && frame_len > total)`.

Signed-off-by: Lyle Zhu <lyle.zhu@nxp.com>
@lylezhu2012 lylezhu2012 dismissed stale reviews from makeshi and gzh-terry via 7eaa1e8 February 28, 2025 11:49
@lylezhu2012 lylezhu2012 force-pushed the fix_sdp_invalid_attribute_lists_error branch from c3d198b to 7eaa1e8 Compare February 28, 2025 11:49
@kartben kartben added this to the v4.2.0 milestone Mar 5, 2025
@aescolar aescolar merged commit 7ec9f58 into zephyrproject-rtos:main Mar 7, 2025
23 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: Bluetooth Classic Bluetooth Classic (BR/EDR) area: Bluetooth size: XS A PR changing only a single line of code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants