-
Notifications
You must be signed in to change notification settings - Fork 7.2k
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
Bluetooth: SDP: Fix the error if continuation length is not 0 #86422
Conversation
frame_len -= sdp_client_get_total(session, buf, &total); | ||
if (frame_len != total) { |
There was a problem hiding this comment.
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)
?
There was a problem hiding this comment.
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)
.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7dcc4f4
to
c3d198b
Compare
@@ -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)) { |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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>
c3d198b
to
7eaa1e8
Compare
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)