Skip to content

Commit

Permalink
burntsushi-toml: initial integration (#8279)
Browse files Browse the repository at this point in the history
  • Loading branch information
manunio authored Aug 17, 2022
1 parent 20e8ba4 commit f1aba37
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 0 deletions.
22 changes: 22 additions & 0 deletions projects/burntsushi-toml/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/BurntSushi/toml toml
COPY build.sh $SRC/
COPY *.go $SRC/toml
WORKDIR $SRC/toml
18 changes: 18 additions & 0 deletions projects/burntsushi-toml/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 . FuzzToml fuzz_toml gofuzz
20 changes: 20 additions & 0 deletions projects/burntsushi-toml/fuzz.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package toml

import "bytes"

func FuzzToml(data []byte) int {
buf := make([]byte, 0, 2048)

var m interface{}
_, err := Decode(string(data), &m)
if err != nil {
return 0
}

err = NewEncoder(bytes.NewBuffer(buf)).Encode(m)
if err != nil {
return 0
}

return 1
}
10 changes: 10 additions & 0 deletions projects/burntsushi-toml/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
homepage: "https://github.com/BurntSushi/toml"
language: go
main_repo: "https://github.com/BurntSushi/toml"
fuzzing_engines:
- libfuzzer
sanitizers:
- address
vendor_ccs:
- maxnair.dev@gmail.com
file_github_issue: true

0 comments on commit f1aba37

Please sign in to comment.