mirror of
https://github.com/angr/pyvex
synced 2026-06-21 13:47:01 +00:00
bf1d476250
Adds `--collect-submodules=bitstring` when packaging the harnesses. Fixes: https://oss-fuzz-build-logs.storage.googleapis.com/log-850dd25a-c58a-4c37-abd4-c5a703638319.txt ``` ... Step #4 - "build-check-libfuzzer-address-x86_64": INFO: Instrumenting pyvex.data_ref Step #4 - "build-check-libfuzzer-address-x86_64": INFO: Instrumenting pyvex.lifting Step #4 - "build-check-libfuzzer-address-x86_64": INFO: Instrumenting pyvex.lifting.gym Step #4 - "build-check-libfuzzer-address-x86_64": INFO: Instrumenting pyvex.lifting.gym.aarch64_spotter Step #4 - "build-check-libfuzzer-address-x86_64": INFO: Instrumenting pyvex.lifting.util Step #4 - "build-check-libfuzzer-address-x86_64": INFO: Instrumenting pyvex.lifting.util.instr_helper Step #4 - "build-check-libfuzzer-address-x86_64": Traceback (most recent call last): Step #4 - "build-check-libfuzzer-address-x86_64": File "irsb_fuzzer.py", line 26, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "pyvex/__init__.py", line 41, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "pyvex/lifting/__init__.py", line 1, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "pyvex/lifting/gym/__init__.py", line 1, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "pyvex/lifting/gym/aarch64_spotter.py", line 3, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "pyvex/lifting/util/__init__.py", line 1, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "pyvex/lifting/util/instr_helper.py", line 4, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "PyInstaller/loader/pyimod02_importers.py", line 378, in exec_module Step #4 - "build-check-libfuzzer-address-x86_64": File "bitstring/__init__.py", line 75, in <module> Step #4 - "build-check-libfuzzer-address-x86_64": File "importlib/__init__.py", line 126, in import_module Step #4 - "build-check-libfuzzer-address-x86_64": ModuleNotFoundError: No module named 'bitstring.bitstore_bitarray' Step #4 - "build-check-libfuzzer-address-x86_64": [PYI-106:ERROR] Failed to execute script 'irsb_fuzzer' due to unhandled exception! Step #4 - "build-check-libfuzzer-address-x86_64": Step #4 - "build-check-libfuzzer-address-x86_64": ERROR: 100.0% of fuzz targets seem to be broken. See the list above for a detailed information. ```
37 lines
1.4 KiB
Bash
Executable File
37 lines
1.4 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2023 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.
|
|
#
|
|
################################################################################
|
|
|
|
# Since pyvex requires a specific developer build of archinfo, install it from source
|
|
cd "$SRC"/archinfo
|
|
python3 -m pip install .
|
|
|
|
cd "$SRC"/pyvex
|
|
python3 -m pip install .[testing]
|
|
|
|
# Generate a simple binary for the corpus
|
|
echo -ne "start:\n\txor %edi, %edi\nmov \$60, %eax\nsyscall" > /tmp/corpus.s
|
|
clang -Os -s /tmp/corpus.s -nostdlib -nostartfiles -m32 -o corpus
|
|
zip -r "$OUT"/irsb_fuzzer_seed_corpus.zip corpus
|
|
|
|
# Build fuzzers in $OUT
|
|
# --collect-submodules=bitstring ensures all bitstring submodules are bundled by PyInstaller
|
|
for fuzzer in $(find $SRC -name '*_fuzzer.py'); do
|
|
compile_python_fuzzer "$fuzzer" \
|
|
--add-binary="pyvex/lib/libpyvex.so:pyvex/lib" \
|
|
--collect-submodules=bitstring
|
|
done
|