TIKA-4861: reject a BigTIFF directory offset that overflows the prefi… - #3130
Merged
Conversation
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change is small, localized, and directly addresses the described overflow failure mode with solid regression coverage.
Pull request overview
Fixes an overflow edge case in RawTiffDetector’s prefix bounds checking so malformed BigTIFF directory offsets near Long.MAX_VALUE cannot wrap negative and incorrectly pass the “already in prefix” fast-path (preventing uncaught runtime exceptions during detection).
Changes:
- Harden
Prefix.ensure(long end)to reject negative (wrapped)endvalues before comparing against current buffer length. - Add targeted regression tests for out-of-range BigTIFF directory offsets and for skipping an invalid “next IFD” follower offset.
- Add a randomized boundary fuzz test for directory-walk offset/count/value arithmetic invariants, and document the fix in
CHANGES.txt.
File summaries
| File | Description |
|---|---|
| tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-image-module/src/main/java/org/apache/tika/detect/image/RawTiffDetector.java | Rejects negative/wrapped end in prefix bounds checks to prevent overflow-driven misclassification and exceptions. |
| tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-image-module/src/test/java/org/apache/tika/detect/image/RawTiffDetectorTest.java | Adds regression coverage for invalid BigTIFF directory offsets and invalid follower offsets. |
| tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-image-module/src/test/java/org/apache/tika/detect/image/RawTiffDetectorFuzzTest.java | Adds randomized boundary fuzzing to ensure no throwables escape detection across arithmetic edge cases. |
| CHANGES.txt | Adds release note describing the overflow fix and its impact (TIKA-4861). |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 2
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
…x bounds check
Thanks for your contribution to Apache Tika! Your help is appreciated!
Before opening the pull request, please verify that
TIKA-XXXX)[TIKA-XXXX] Issue or pull request title)./mvnw clean install(clean testalone cannot resolve the pipes plugin zips)Generated-by: <tool>in the commit message), and consider running the pre-flight in.skills/devs/pr-review/SKILL.md— fix what it finds; don't paste its report heremainbranch. If there are conflicts, please try to rebase the pull request branch on top of a freshly pulledmainbranchtika-bom/pom.xml.We will be able to faster integrate your pull request if these conditions are met. If you have any questions how to fix your problem or about using Tika in general, please sign up for the Tika mailing list. Thanks!