Skip to content

Commit

Permalink
mxj: initial integration (#8155)
Browse files Browse the repository at this point in the history
  • Loading branch information
manunio authored Aug 5, 2022
1 parent d04436b commit ef63558
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
22 changes: 22 additions & 0 deletions projects/mxj/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2022 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-go
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone --depth 1 https://github.com/clbanning/mxj mxj
COPY build.sh $SRC/
COPY fuzz.go $SRC/mxj
WORKDIR $SRC/mxj
18 changes: 18 additions & 0 deletions projects/mxj/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash -eu
# Copyright 2022 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 . FuzzMapXml fuzz_map_xml gofuzz
15 changes: 15 additions & 0 deletions projects/mxj/fuzz.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package mxj

func FuzzMapXml(data []byte) int {
m, err := NewMapXml(data)
if err != nil {
return 0
}

_, err = m.Xml()
if err != nil {
return 0
}

return 1
}
10 changes: 10 additions & 0 deletions projects/mxj/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
homepage: "https://github.com/clbanning/mxj"
language: go
fuzzing_engines:
- libfuzzer
sanitizers:
- address
main_repo: "https://github.com/clbanning/mxj"
vendor_ccs:
- [email protected]
file_github_issue: true

0 comments on commit ef63558

Please sign in to comment.