-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
MdeModulePkg/Bus/Pci: Fix Descriptor Misalignment in USB Config Handling #6442
Open
AniketSurekar
wants to merge
1
commit into
tianocore:master
Choose a base branch
from
AniketSurekar:xhci_fix
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Since IfDesc and ConfigDesc are pointer values, it would be better to type cast to another pointer type such as
UINT8 *
instead of an integer type ofUINTN
.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.
Yes, I had a similar thought, but another file with existing code uses UINTN typecasting for IfDesc , ConfigDesc and EpDesc, so I kept it the same to maintain consistency. I referenced some of the existing code in
edk2/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c:
XhcInitializeEndpointContext() API: lines 2854, 2858, 2935, 2993, 3008
XhcInitializeEndpointContext64() API: lines 3057, 3061, 3138, 3196, 3211 And so on....
Similarly, in edk2/MdeModulePkg/Bus/Pci/XhciPei/XhciSched.c:
XhcPeiSetConfigCmd API: lines 1765, 1833, 1880, 1895
XhcPeiSetConfigCmd64 API: lines 1991, 2060, 2107, 2124 And so on....
For uniformity, I chose to retain the same typecasting.
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.
@mdkinney @lgao4 @niruiyu If you are satisfied with the changes, could you please approve them?
These changes address an issue where multiple third-party EFTPOS USB devices caused the system to hang in preboot after being connected to the SUT.
Detail analysis:
Analysis of the Issue: (same analysis is applicable for End point descriptor)
The issue occurs because the Interface/Endpoint Descriptor does not receive the expected value, and the length of the interface descriptor is being read as 0 (9th byte of data is 0x0 mentioned in hex dump snap). Consequently, the system hangs in a while loop.
The root cause is that the configDesc (USB_CONFIG_DESCRIPTOR) structure has a fixed length of 9 bytes. However, recent logs from the dump show that a third-party USB device reports a configuration length of 0x0A (10 bytes). In the code, the length is incremented by 9 bytes, causing the interface descriptor to be incorrectly updated from 9 bytes instead of 10 bytes. This mismatch results in the interface descriptor and End Point descriptor type and length being incorrect.
Snap hex dump of config/interface/end point descriptor (Red highlighted config descriptor , Blue highlighted Interface descriptor and remaining dump for end point descriptor )
So fix as mentioned :
Update the code to increment the pointers by the actual descriptor lengths,
ensuring proper access to all descriptors in the USB configuration.
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.
@mdkinney @lgao4 @niruiyu If you are satisfied with the changes, could you please approve them?