[draco] Add fuzz target for 3D mesh/point cloud decoding - #16096
Closed
smoke-wolf wants to merge 1 commit into
Closed
[draco] Add fuzz target for 3D mesh/point cloud decoding#16096smoke-wolf wants to merge 1 commit into
smoke-wolf wants to merge 1 commit into
Conversation
Add oss-fuzz project for google/draco, a 3D geometry compression library used in Chrome (glTF), Android SceneViewer, and AR/VR apps. The fuzz target exercises DecodeMeshFromBuffer and DecodePointCloudFromBuffer on arbitrary compressed geometry data, including attribute access on decoded results.
|
smoke-wolf is a new contributor to projects/draco. The PR must be approved by known contributors before it can be merged. The past contributors are: DonggeLiu, FrankGalligan, rjotwani |
DavidKorczynski
requested changes
Sep 2, 2026
DavidKorczynski
left a comment
Collaborator
There was a problem hiding this comment.
please coordinate with the upstream maintainers and place the fuzzing harness there. Will close this PR but if you land the harness in the upstream repository and maintainers are happy to add this harness for continuous fuzzing please open a new PR that builds the new harness (with the harness upstream still).
| - honggfuzz | ||
| - centipede | ||
| main_repo: 'https://github.com/google/draco' | ||
| file_github_issue: True |
Collaborator
There was a problem hiding this comment.
why delete all of this?
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and |
Collaborator
There was a problem hiding this comment.
why delete all of this?
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.
Add oss-fuzz project for
google/draco— a 3D geometry compression libraryused in Chrome (glTF), Android SceneViewer, and AR/VR applications.
Fuzz target
fuzz_decodeexercisesdraco::Decoder::DecodeMeshFromBuffer()andDecodePointCloudFromBuffer()on arbitrary compressed geometry data,including attribute access on decoded results. This covers the mesh
connectivity decoder, attribute decoders, entropy (rANS) decoder, and
prediction scheme paths.
Rationale
Draco processes untrusted
.drcfiles from the web (glTF models in Chrome)and has no existing oss-fuzz coverage. The decoder has complex binary parsing
with multiple codec paths that would benefit from continuous fuzzing.