[cfengine] Initial integration (#5496)

This commit is contained in:
AdamKorcz 2021-05-12 20:08:33 +01:00 committed by GitHub
parent 44a3cdf6fc
commit aac200815a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# 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 apt-get update && apt-get install -y \
build-essential autoconf automake libssl-dev \
libpcre3 libpcre3-dev bison libbison-dev \
libacl1 libacl1-dev libpq-dev lmdb-utils \
liblmdb-dev libpam0g-dev flex libtool
RUN git clone --depth 1 https://github.com/cfengine/core --recursive
WORKDIR core
COPY build.sh string_fuzzer.c $SRC/

28
projects/cfengine/build.sh Executable file
View File

@ -0,0 +1,28 @@
#!/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.
#
################################################################################
./autogen.sh
./configure
make V=1 -j$(nproc)
cd libpromises
mv $SRC/string_fuzzer.c .
find . -name "*.o" -exec ar rcs fuzz_lib.a {} \;
$CC $CFLAGS -I./ -c string_fuzzer.c -o string_fuzzer.o
$CC $CXXFLAGS $LIB_FUZZING_ENGINE string_fuzzer.o \
-o $OUT/string_fuzzer fuzz_lib.a \
../libntech/libutils/.libs/libutils.a

View File

@ -0,0 +1,10 @@
homepage: "https://github.com/cfengine/core"
main_repo: "https://github.com/cfengine/core"
language: c++
primary_contact: "vratislav.podzimek@northern.tech"
auto_ccs:
- "Adam@adalogics.com"
sanitizers:
- address
- undefined
- memory

View File

@ -0,0 +1,40 @@
/* 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.
*/
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <string_expressions.h>
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
if(size<4) {
return 0;
}
for (int i=0; i<size; i++) {
if(data[i]==0) {
return 0;
}
}
char *new_str = (char *)malloc(size+1);
if (new_str == NULL){
return 0;
}
memcpy(new_str, data, size);
new_str[size] = '\0';
int len = strlen(new_str);
StringParseResult res = ParseStringExpression(new_str, 0, len);
FreeStringExpression(res.result);
free(new_str);
return 0;
}