Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove syzkaller #4049

Merged
merged 20 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/clusterfuzz/_internal/base/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@
'LINUX_WITH_GPU': 'Linux (with GPU)',
'LINUX_UNTRUSTED': 'Linux (untrusted)',
'ANDROID': 'Android',
'ANDROID_KERNEL': 'Android Kernel',
'ANDROID_KERNEL_X86': 'Android Kernel (X86)',
'ANDROID_AUTO': 'Android Auto',
'ANDROID_X86': 'Android (x86)',
'ANDROID_EMULATOR': 'Android (Emulated)',
Expand Down
3 changes: 0 additions & 3 deletions src/clusterfuzz/_internal/bot/fuzzers/engine_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,6 @@ def find_fuzzer_path(build_directory, fuzzer_name):
# Fuchsia targets are not on disk.
return fuzzer_name

if environment.is_android_kernel():
return os.path.join(build_directory, 'syzkaller', 'bin', 'syz-manager')

# TODO(ochang): This is necessary for legacy testcases, which include the
# project prefix in arguments. Remove this in the near future.
project_name = environment.get_value('PROJECT_NAME')
Expand Down
7 changes: 2 additions & 5 deletions src/clusterfuzz/_internal/bot/fuzzers/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@
from clusterfuzz.fuzz import engine


def run(include_private=True, include_lowercase=False):
def run(include_lowercase=False):
"""Initialise builtin fuzzing engines."""
if include_private:
engines = fuzzing.ENGINES
else:
engines = fuzzing.PUBLIC_ENGINES
engines = fuzzing.ENGINES

for engine_name in engines:
mod = importlib.import_module(
Expand Down
13 changes: 0 additions & 13 deletions src/clusterfuzz/_internal/bot/fuzzers/syzkaller/__init__.py

This file was deleted.

92 changes: 0 additions & 92 deletions src/clusterfuzz/_internal/bot/fuzzers/syzkaller/config.py

This file was deleted.

21 changes: 0 additions & 21 deletions src/clusterfuzz/_internal/bot/fuzzers/syzkaller/constants.py

This file was deleted.

Loading
Loading