Skip to content
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
56 changes: 30 additions & 26 deletions .github/workflows/ipc_fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,25 @@ name: IPC fuzzing
# yamllint disable-line rule:truthy
on: [pull_request, workflow_dispatch]

jobs:

# For the actual fuzzer see tools/oss-fuzz/README.
# also see
# https://google.github.io/oss-fuzz/getting-started/continuous-integration/
#
# Build and run fuzzer for 5s just to check that it runs properly. If it
# consistently fails in under 5s you probably did something wrong

# If you came here to quickly copy/paste the invocation of some build
# script in order to reproduce a failure reported by github then you
# will be disappointed by the Github Action below: it's magical. For a
# thorough reproduction you must follow the links above. For a quick,
# dirty and incomplete reproduction hack you can try the following two
# lines. Don't do this at home.
#
# OUT=unused_dir cmake -B oss-fuzz-build/ -S tools/oss-fuzz/
# make -j -C oss-fuzz-build sof_ep fuzz_ipc.o
jobs:
# For the actual fuzzer see tools/oss-fuzz/README.
# also see
# https://google.github.io/oss-fuzz/getting-started/continuous-integration/
#
# Build and run fuzzer for 5s just to check that it runs properly. If it
# consistently fails in under 5s you probably did something wrong

# If you came here to quickly copy/paste the invocation of some build
# script in order to reproduce a failure reported by github then you
# will be disappointed by the Github Action below: it's magical. For a
# thorough reproduction you must follow the links above. For a quick,
# dirty and incomplete reproduction hack you can try the following two
# lines. Don't do this at home.
#
# OUT=unused_dir cmake -B oss-fuzz-build/ -S tools/oss-fuzz/
# make -j -C oss-fuzz-build sof_ep fuzz_ipc.o
ipc-fuzzer-build:
runs-on: ubuntu-latest
steps:
Expand All @@ -41,16 +42,15 @@ jobs:
language: c
fuzz-seconds: 5


# TODO, to add IPC4 support fix compilation of:
#
# ./scripts/fuzz.sh -t 1 -- -DCONFIG_IPC_MAJOR_4=y
#
# ... or of some other _IPC4_ -DOVERLAY_CONFIG=
#
# Then use a simple IPC3/IPC4 matrix like the one in zephyr.yml
simple-IPC3-fuzz_sh:
# Newer fuzzer
simple-IPC-fuzz_sh:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
# Keep these names short due to questionable Github UI choices
IPC: [IPC3, IPC4]

steps:
- name: add i386 arch
run: |
Expand Down Expand Up @@ -78,4 +78,8 @@ jobs:
cd workspace
clang --verbose
set -x
sof/scripts/fuzz.sh -o _.log -t 300
case '${{ matrix.IPC }}' in
IPC3) cmake_arg='-DCONFIG_IPC_MAJOR_3=y' ;;
IPC4) cmake_arg='-DCONFIG_IPC_MAJOR_4=y' ;;
esac
sof/scripts/fuzz.sh -o _.log -t 300 -- "$cmake_arg"
3 changes: 2 additions & 1 deletion scripts/fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ EOFHELP

void ipc_cmd(struct ipc_cmd_hdr *_hdr)
{
+ __ASSERT(false, "test the fuzzer test");
+ __ASSERT(false, "test the IPC3 fuzzer test");
+
struct sof_ipc_cmd_hdr *hdr = ipc_from_hdr(_hdr);
EOF_TEST_PATCH

# When fuzzing IPC4, make the same change in src/ipc/ipc4/handler.c#ipc_cmd()

main()
{
Expand Down