cdrom: fix cdread_2048 writing the sector header into the wrong buffer - #2068
Open
nicolasnoble wants to merge 1 commit into
Open
cdrom: fix cdread_2048 writing the sector header into the wrong buffer#2068nicolasnoble wants to merge 1 commit into
nicolasnoble wants to merge 1 commit into
Conversation
cdread_2048 wrote the sync pattern and MSF into the caller-supplied dest, but the mode byte, the Mode 2 subheader and the EDC/ECC into the member scratch m_cdbuffer. readTrack passes m_cdbuffer as dest so the two alias and the emulator's own path never noticed, but every other caller - which in practice means every Lua caller going through CDRIsoFile - got bytes 15..23 and the EDC/ECC tail as whatever was left in its own buffer. Visible effect: GUESS mode reads the garbage mode byte, falls through to RAW, and hands back the sync pattern where user data was expected. Signed-off-by: Nicolas 'Pixel' Noble <nicolas@nobis-crew.org>
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthrough
ChangesCD-ROM sector buffer generation
Estimated code review effort: 2 (Simple) | ~10 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches 💡 1🛠️ Fix failing CI checks 💡
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
cdread_2048 writes the sync pattern and MSF into the caller's dest, but the
mode byte, subheader and EDC/ECC into the member scratch m_cdbuffer. readTrack
passes m_cdbuffer as dest so the two alias there and it never showed; every
other caller, in practice every Lua read through CDRIsoFile, gets bytes 15..23
and the EDC/ECC tail as leftover garbage. GUESS then reads the bogus mode byte,
falls through to RAW, and hands back the sync pattern where user data should be.
Verified against an ISO9660 image: GUESS on sector 16 now returns the CD001
volume descriptor instead of the sync pattern.