-
Notifications
You must be signed in to change notification settings - Fork 3.9k
GH-48089: [C++][Parquet] Read statistics and other metadata when fuzzing #48090
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
Conversation
|
@github-actions crossbow submit fuzz |
|
Revision: b663073 Submitted crossbow builds: ursacomputing/crossbow @ actions-ed4742dbd2
|
b663073 to
a1d2895
Compare
|
@github-actions crossbow submit fuzz |
|
Revision: a1d2895 Submitted crossbow builds: ursacomputing/crossbow @ actions-e898f807d8
|
a1d2895 to
2ec30dd
Compare
|
@github-actions crossbow submit fuzz |
|
Revision: 2ec30dd Submitted crossbow builds: ursacomputing/crossbow @ actions-ce7ba541c2
|
|
@wgtmac @mapleFU @adamreeve @EnricoMi Are you available to take a look at this? |
| throw ParquetException("bloom_filter_length less than 0"); | ||
| } | ||
| if (*bloom_filter_length + *bloom_filter_offset > file_size) { | ||
| if (*bloom_filter_length > file_size - *bloom_filter_offset) { |
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.
Why calling this ? Would add overflows
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, it could. The alternative is to call AddWithOverflow.
|
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 934554d. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 5 possible false positives for unstable benchmarks that are known to sometimes produce them. |
Rationale for this change
Some parts of the Parquet C++ codebase are not fuzzed yet, since they are not exercised in the fuzz target.
What changes are included in this PR?
Add the following tasks when fuzzing an input:
Are these changes tested?
By OSS-Fuzz.
Are there any user-facing changes?
No.