aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/librdkafka
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2020-11-18 15:10:09 +0000
committerGravatar GitHub <noreply@github.com>2020-11-18 07:10:09 -0800
commitf6eb565cd8c44a28eabc1f34bc125df07b7cad97 (patch)
tree2ec56e3274c6f354d694bf2e2cc7d6df6f4a9986 /projects/librdkafka
parent750a177e5aca5c1770d3e72e21caa7d3fe121a29 (diff)
[Librdkafka] Initial integration (#4652)
* Added initial integration of librdkafka.' * librdkafka: updated primary email and auto_ccs. * librdkafka: fix build script.
Diffstat (limited to 'projects/librdkafka')
-rwxr-xr-xprojects/librdkafka/Dockerfile21
-rwxr-xr-xprojects/librdkafka/build.sh32
-rwxr-xr-xprojects/librdkafka/project.yaml5
3 files changed, 58 insertions, 0 deletions
diff --git a/projects/librdkafka/Dockerfile b/projects/librdkafka/Dockerfile
new file mode 100755
index 00000000..43a2c2a4
--- /dev/null
+++ b/projects/librdkafka/Dockerfile
@@ -0,0 +1,21 @@
+# Copyright 2020 Google Inc.
+#
+# 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 make cmake flex bison
+RUN git clone https://github.com/edenhill/librdkafka
+
+WORKDIR $SRC
+COPY build.sh $SRC/
diff --git a/projects/librdkafka/build.sh b/projects/librdkafka/build.sh
new file mode 100755
index 00000000..ea59e898
--- /dev/null
+++ b/projects/librdkafka/build.sh
@@ -0,0 +1,32 @@
+#!/bin/bash -eu
+# Copyright 2020 Google Inc.
+#
+# 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.
+#
+################################################################################
+cd librdkafka
+./configure --install-deps --disable-regex-ext
+make
+
+export LIBZSTD=$PWD/mklove/deps/dest/libzstd/usr/lib/libzstd.a
+export LIBZ_LIB=$PWD/mklove/deps/dest/zlib/usr/lib/libz.a
+
+cd tests
+echo $PWD
+ls -al
+$CC -g -fPIC $CFLAGS -I../src -c ./fuzzers/fuzz_regex.c -o fuzz_regex.o
+$CXX $CXXFLAGS $LIB_FUZZING_ENGINE -rdynamic fuzz_regex.o -o fuzzer \
+ ../src/librdkafka.a -lm ${LIBZSTD} -lsasl2 -lssl -lcrypto \
+ -lcrypto ${LIBZ_LIB} -ldl -lpthread -lrt
+
+cp fuzzer $OUT/fuzz_regex
diff --git a/projects/librdkafka/project.yaml b/projects/librdkafka/project.yaml
new file mode 100755
index 00000000..b4a09bec
--- /dev/null
+++ b/projects/librdkafka/project.yaml
@@ -0,0 +1,5 @@
+homepage: "https://github.com/edenhill/librdkafka"
+primary_contact: "rdkafka@edenhill.se"
+language: c++
+auto_ccs:
+ - "david@adalogics.com"