Skip to content
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

Adds go json-patch project #5627

Merged
merged 1 commit into from
Apr 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions projects/json-patch/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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
# limitations under the License.
#
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder
RUN git clone --depth 1 https://github.com/evanphx/json-patch

COPY fuzz_*.go $SRC/json-patch/

COPY build.sh $SRC/
WORKDIR $SRC/json-patch
19 changes: 19 additions & 0 deletions projects/json-patch/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash -eu
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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
# limitations under the License.
#
################################################################################

compile_go_fuzzer github.com/evanphx/json-patch FuzzCreateMerge fuzz_create_merge
compile_go_fuzzer github.com/evanphx/json-patch FuzzDecodeApply fuzz_decode_apply
26 changes: 26 additions & 0 deletions projects/json-patch/fuzz_create_merge.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package jsonpatch

import (
"bytes"
)

func FuzzCreateMerge(data []byte) int {
s := bytes.Split(data, []byte{0})
if len(s) != 3 {
return 0
}
original := s[0]
target := s[1]
alternative := s[2]

patch, err := CreateMergePatch(original, target)
if err != nil {
return 0
}
_, err = MergePatch(alternative, patch)
if err != nil {
return 0
}

return 1
}
25 changes: 25 additions & 0 deletions projects/json-patch/fuzz_decode_apply.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package jsonpatch

import (
"bytes"
)

func FuzzDecodeApply(data []byte) int {
s := bytes.Split(data, []byte{0})
if len(s) != 2 {
return 0
}
patchJSON := s[0]
original := s[1]

patch, err := DecodePatch(patchJSON)
if err != nil {
return 0
}

_, err = patch.Apply(original)
if err != nil {
return 0
}
return 1
}
10 changes: 10 additions & 0 deletions projects/json-patch/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
homepage: "https://github.com/evanphx/json-patch"
primary_contact: "[email protected]"
auto_ccs:
- "[email protected]"
language: go
fuzzing_engines:
- libfuzzer
sanitizers:
- address
main_repo: 'https://github.com/evanphx/json-patch'