├── .clang-format ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── arc_config │ └── values.yaml ├── codecov.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── depsreview.yaml │ ├── gemini-pr-review.yml │ ├── oss-fuzz.yml │ └── run.sh ├── .gitignore ├── .golangci.yml ├── .mockery.yaml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README.md ├── dashboard ├── api │ ├── api.go │ └── client.go ├── app │ ├── .gcloudignore │ ├── README.md │ ├── access.go │ ├── access_test.go │ ├── admin.go │ ├── api.go │ ├── api_test.go │ ├── app.yaml │ ├── app_test.go │ ├── asset_storage.go │ ├── asset_storage_test.go │ ├── batch_coverage.go │ ├── batch_db_export.go │ ├── batch_main.go │ ├── bisect_test.go │ ├── cache.go │ ├── cache_test.go │ ├── commit_poll_test.go │ ├── config.go │ ├── coverage.go │ ├── coverage_test.go │ ├── cron.yaml │ ├── dashboard.go │ ├── discussion.go │ ├── discussion_test.go │ ├── email_test.go │ ├── entities_datastore.go │ ├── entities_datastore_test.go │ ├── entities_spanner.go │ ├── fix_test.go │ ├── graphs.go │ ├── graphs_test.go │ ├── handler.go │ ├── handler_test.go │ ├── index.yaml │ ├── jobs.go │ ├── jobs_test.go │ ├── kcidb.go │ ├── label.go │ ├── linux_reporting.go │ ├── linux_reporting_test.go │ ├── main.go │ ├── main_test.go │ ├── notifications_test.go │ ├── public_json_api.go │ ├── public_json_api_test.go │ ├── reporting.go │ ├── reporting_email.go │ ├── reporting_external.go │ ├── reporting_lists.go │ ├── reporting_test.go │ ├── repro_test.go │ ├── static │ │ ├── common.js │ │ ├── coverage.js │ │ ├── favicon.ico │ │ ├── robots.txt │ │ └── style.css │ ├── stats.go │ ├── subsystem.go │ ├── subsystem_test.go │ ├── templates │ │ ├── admin.html │ │ ├── backports.html │ │ ├── bug.html │ │ ├── custom_content.html │ │ ├── error.html │ │ ├── graph_bugs.html │ │ ├── graph_crashes.html │ │ ├── graph_fuzzing.html │ │ ├── graph_histogram.html │ │ ├── graph_lifetimes.html │ │ ├── mail_bisect_result.txt │ │ ├── mail_bug.txt │ │ ├── mail_fix_candidate.txt │ │ ├── mail_label_notif.txt │ │ ├── mail_ns_coverage.txt │ │ ├── mail_subsystem.txt │ │ ├── mail_test_result.txt │ │ ├── main.html │ │ ├── manager.html │ │ ├── repos.html │ │ ├── subsystem_page.html │ │ ├── subsystems.html │ │ ├── templates.html │ │ └── terminal.html │ ├── tree.go │ ├── tree_test.go │ └── util_test.go ├── config │ ├── android │ │ ├── cmdline-5.4 │ │ ├── config-5.4 │ │ ├── config-bits │ │ ├── generate.sh │ │ └── sysctl-5.4 │ ├── freebsd │ │ └── syz-ci-service.sh │ ├── linux │ │ ├── README.md │ │ ├── android-5.10-base.config │ │ ├── android-5.10-cuttlefish-base.config │ │ ├── android-5.10-cuttlefish.config │ │ ├── android-5.10.config │ │ ├── android-5.15-base.config │ │ ├── android-5.15-cuttlefish-base.config │ │ ├── android-5.15-cuttlefish.config │ │ ├── android-5.15.config │ │ ├── android-5.4-base.config │ │ ├── android-5.4.config │ │ ├── android-6.1-base.config │ │ ├── android-6.1.config │ │ ├── android-6.12-base.config │ │ ├── android-6.12.config │ │ ├── android14-5.15-cuttlefish-base.config │ │ ├── android14-5.15-cuttlefish.config │ │ ├── bits │ │ │ ├── allyes.yml │ │ │ ├── android-5.10.yml │ │ │ ├── android-5.15.yml │ │ │ ├── android-5.4.yml │ │ │ ├── android-6.1.yml │ │ │ ├── android-6.12.yml │ │ │ ├── android-subsystems.yml │ │ │ ├── android.yml │ │ │ ├── android14-5.15.yml │ │ │ ├── apparmor.yml │ │ │ ├── arm.yml │ │ │ ├── arm64.yml │ │ │ ├── arm64_emu.yml │ │ │ ├── base.yml │ │ │ ├── baseline.yml │ │ │ ├── bluetooth.yml │ │ │ ├── bpf.yml │ │ │ ├── chromeos-5.10.yml │ │ │ ├── chromeos-5.15.yml │ │ │ ├── chromeos-5.4.yml │ │ │ ├── chromeos-6.1.yml │ │ │ ├── chromeos-6.6.yml │ │ │ ├── chromeos-subsystems.yml │ │ │ ├── chromeos.yml │ │ │ ├── comedi.yml │ │ │ ├── crypto.yml │ │ │ ├── debug.yml │ │ │ ├── filesystems.yml │ │ │ ├── hamradio.yml │ │ │ ├── kasan.yml │ │ │ ├── kasan_panic_on_write.yml │ │ │ ├── kasan_sw.yml │ │ │ ├── kcsan.yml │ │ │ ├── kfence.yml │ │ │ ├── kmemleak.yml │ │ │ ├── kmsan.yml │ │ │ ├── linux-next.yml │ │ │ ├── linux-upstream.yml │ │ │ ├── lockdep.yml │ │ │ ├── lsm.yml │ │ │ ├── maintained.yml │ │ │ ├── media.yml │ │ │ ├── mte.yml │ │ │ ├── net-extra.yml │ │ │ ├── net.yml │ │ │ ├── partitions.yml │ │ │ ├── riscv64.yml │ │ │ ├── rust.yml │ │ │ ├── s390.yml │ │ │ ├── selinux.yml │ │ │ ├── smack.yml │ │ │ ├── stable-5.15.yml │ │ │ ├── stable-5.4.yml │ │ │ ├── stable-6.1.yml │ │ │ ├── stable-6.6.yml │ │ │ ├── subsystems.yml │ │ │ ├── timeouts_emu.yml │ │ │ ├── timeouts_native.yml │ │ │ ├── unmaintained.yml │ │ │ ├── usb.yml │ │ │ ├── wireless.yml │ │ │ └── x86_64.yml │ │ ├── chromeos-5.10-base.config │ │ ├── chromeos-5.10.config │ │ ├── chromeos-5.10.sysctl │ │ ├── chromeos-5.15-base.config │ │ ├── chromeos-5.15.config │ │ ├── chromeos-5.15.sysctl │ │ ├── chromeos-5.4-base.config │ │ ├── chromeos-5.4.config │ │ ├── chromeos-5.4.sysctl │ │ ├── chromeos-6.1-base.config │ │ ├── chromeos-6.1.config │ │ ├── chromeos-6.6-base.config │ │ ├── chromeos-6.6.config │ │ ├── cos-5.15-arm64-kasan-base.config │ │ ├── cos-5.15-arm64-kasan.config │ │ ├── cos-5.15-kasan-base.config │ │ ├── cos-5.15-kasan.config │ │ ├── cos-6.1-arm64-kasan-base.config │ │ ├── cos-6.1-arm64-kasan.config │ │ ├── cos-6.1-kasan-base.config │ │ ├── cos-6.1-kasan.config │ │ ├── distros │ │ │ ├── android-google-gs-shusky-5.15-android14-qpr3 │ │ │ ├── android-google-msm-bonito-4.9-pie-b4s4 │ │ │ ├── android-google-msm-coral-4.14-android10-c2f2 │ │ │ ├── android-google-msm-crosshatch-4.9-pie-qpr2 │ │ │ ├── android-google-msm-marlin-3.18-pie-qpr2 │ │ │ ├── android-google-msm-wahoo-4.4-pie-qpr2 │ │ │ ├── android-htc-u11-htcperf_defconfig │ │ │ ├── android-htc-u12_plus-sdm845_defconfig │ │ │ ├── android-huawei-charlotte-merge_kirin970_defconfig │ │ │ ├── android-huawei-vogue-merge_kirin980_defconfig │ │ │ ├── android-samsung-a20s_chn_hk_defconfig │ │ │ ├── android-samsung-exynos9820-beyondxks_defconfig │ │ │ ├── android-samsung-winnerx_eur_open_defconfig │ │ │ ├── android-xiaomi-andromeda-p-oss-andromeda_user_defconfig │ │ │ ├── android-xiaomi-begonia-p-oss-begonia_user_defconfig │ │ │ ├── android-xiaomi-cepheus-q-oss-cepheus_user_defconfig │ │ │ ├── android-xiaomi-dipper-p-oss-dipper_user_defconfig │ │ │ ├── chromeos-crostini-4.19.87 │ │ │ ├── ubuntu-bionic-config-4.15.0-47-generic │ │ │ └── ubuntu-noble-config-6.8.0-31.31-generic │ │ ├── main.yml │ │ ├── stable-5.15-arm64-kasan-base.config │ │ ├── stable-5.15-arm64-kasan.config │ │ ├── stable-5.15-kasan-base.config │ │ ├── stable-5.15-kasan.config │ │ ├── stable-5.4-kasan-base.config │ │ ├── stable-5.4-kasan.config │ │ ├── stable-6.1-arm64-kasan-base.config │ │ ├── stable-6.1-arm64-kasan.config │ │ ├── stable-6.1-kasan-base.config │ │ ├── stable-6.1-kasan.config │ │ ├── stable-6.6-arm64-kasan-base.config │ │ ├── stable-6.6-arm64-kasan.config │ │ ├── stable-6.6-kasan-base.config │ │ ├── stable-6.6-kasan.config │ │ ├── upstream-allyes-base.config │ │ ├── upstream-allyes.config │ │ ├── upstream-apparmor-kasan-base.config │ │ ├── upstream-apparmor-kasan.config │ │ ├── upstream-arm-full-base.config │ │ ├── upstream-arm-full.config │ │ ├── upstream-arm-kasan-base.config │ │ ├── upstream-arm-kasan.config │ │ ├── upstream-arm64-full-base.config │ │ ├── upstream-arm64-full.config │ │ ├── upstream-arm64-kasan-base.config │ │ ├── upstream-arm64-kasan.config │ │ ├── upstream-arm64-kasan_sw-kcov-base.config │ │ ├── upstream-arm64-kasan_sw-kcov.config │ │ ├── upstream-arm64-mte-base.config │ │ ├── upstream-arm64-mte.config │ │ ├── upstream-kasan-badwrites-base.config │ │ ├── upstream-kasan-badwrites.config │ │ ├── upstream-kcsan-base.config │ │ ├── upstream-kcsan.config │ │ ├── upstream-kmsan-base.config │ │ ├── upstream-kmsan-next-base.config │ │ ├── upstream-kmsan-next.config │ │ ├── upstream-kmsan.config │ │ ├── upstream-leak-base.config │ │ ├── upstream-leak.config │ │ ├── upstream-riscv64-kasan-base.config │ │ ├── upstream-riscv64-kasan.config │ │ ├── upstream-rust-kasan-base.config │ │ ├── upstream-rust-kasan.config │ │ ├── upstream-s390-kasan-base.config │ │ ├── upstream-s390-kasan.config │ │ ├── upstream-selinux-kasan-base.config │ │ ├── upstream-selinux-kasan.config │ │ ├── upstream-smack-kasan-base.config │ │ ├── upstream-smack-kasan.config │ │ ├── upstream-snapshot-kasan-base.config │ │ ├── upstream-snapshot-kasan.config │ │ ├── upstream-unmaintained-base.config │ │ ├── upstream-unmaintained.config │ │ ├── upstream-usb-base.config │ │ └── upstream-usb.config │ ├── netbsd │ │ ├── kasan.config │ │ ├── kmsan.config │ │ └── kubsan.config │ └── openbsd │ │ ├── config.ci │ │ ├── mp │ │ ├── overlays │ │ ├── README.md │ │ └── ci-openbsd-multicore │ │ │ └── etc │ │ │ └── rc.conf.local │ │ ├── recreate.sh │ │ └── sp └── dashapi │ ├── dashapi.go │ └── dashapi_test.go ├── docs ├── adding_new_os_support.md ├── akaros │ └── README.md ├── bisect.md ├── ci.md ├── configuration.md ├── contributing.md ├── coverage.md ├── coverage_both.png ├── coverage_covered.png ├── coverage_not_instrumented.png ├── coverage_uncovered.png ├── coverage_weak-uncovered.png ├── darwin │ ├── 0001-fuzzing.patch │ ├── README.md │ └── found_bugs.md ├── db.md ├── freebsd │ ├── README.md │ └── found_bugs.md ├── fuchsia │ ├── README.md │ └── setup.sh ├── gvisor │ └── README.md ├── hafnium │ └── README.md ├── headerparser_usage.md ├── hub.md ├── internals.md ├── issue_template.txt ├── kfuzztest.md ├── linux │ ├── coverage.md │ ├── external_fuzzing_network.md │ ├── external_fuzzing_usb.md │ ├── external_fuzzing_usbip.md │ ├── found_bugs.md │ ├── found_bugs_usb.md │ ├── internals.md │ ├── kernel_configs.md │ ├── reporting_kernel_bugs.md │ ├── setup.md │ ├── setup_linux-host_android-device_arm-kernel.md │ ├── setup_linux-host_android-virtual-device_x86-64-kernel.md │ ├── setup_linux-host_isolated.md │ ├── setup_linux-host_qemu-vm_arm-kernel.md │ ├── setup_linux-host_qemu-vm_arm64-kernel.md │ ├── setup_linux-host_qemu-vm_riscv64-kernel.md │ ├── setup_linux-host_qemu-vm_s390x-kernel.md │ ├── setup_ubuntu-host_qemu-vm_x86-64-kernel.md │ ├── setup_ubuntu-host_virtualbox-vm_x86-64-kernel.md │ ├── setup_ubuntu-host_vmware-vm_x86-64-kernel.md │ ├── troubleshooting.md │ ├── vmw-settings.png │ └── wifi_fuzzing.md ├── maintaining.md ├── netbsd │ ├── README.md │ └── found_bugs.md ├── openbsd │ ├── found_bugs.md │ ├── gce.md │ └── setup.md ├── process_structure.drawio ├── process_structure.png ├── program_syntax.md ├── prometheus.md ├── pseudo_syscalls.md ├── pull_request_template.txt ├── reproducing_crashes.md ├── research.md ├── setup.md ├── setup_syzbot.md ├── starnix │ └── README.md ├── strace.md ├── syscall_descriptions.md ├── syscall_descriptions_syntax.md ├── syz-kfuzztest.md ├── syz_testbed.md ├── syz_verifier.md ├── syz_verifier_structure.png ├── syzbot.md ├── syzbot.png ├── syzbot_architecture.png ├── syzbot_assets.md ├── talks.md ├── translations │ ├── README.md │ └── zh_CN │ │ ├── adding_new_os_support.md │ │ ├── bisect.md │ │ ├── configuration.md │ │ ├── contributing.md │ │ ├── db.md │ │ ├── executing_syzkaller_programs.md │ │ ├── internals.md │ │ ├── linux │ │ ├── external_fuzzing_network.md │ │ ├── reporting_kernel_bugs.md │ │ └── setup_linux-host_qemu-vm_arm64-kernel.md │ │ ├── maintaining.md │ │ ├── program_syntax.md │ │ ├── pseudo_syscalls.md │ │ ├── research.md │ │ ├── strace.md │ │ ├── syscall_descriptions_syntax.md │ │ ├── syz_testbed.md │ │ ├── syz_verifier.md │ │ └── usage.md ├── troubleshooting.md ├── trusty │ └── README.md ├── usage.md └── windows │ └── README.md ├── executor ├── _include │ └── flatbuffers │ │ ├── LICENSE │ │ ├── README.md │ │ ├── allocator.h │ │ ├── array.h │ │ ├── base.h │ │ ├── buffer.h │ │ ├── buffer_ref.h │ │ ├── code_generator.h │ │ ├── code_generators.h │ │ ├── default_allocator.h │ │ ├── detached_buffer.h │ │ ├── file_manager.h │ │ ├── flatbuffer_builder.h │ │ ├── flatbuffers.h │ │ ├── flatc.h │ │ ├── flex_flat_util.h │ │ ├── flexbuffers.h │ │ ├── grpc.h │ │ ├── hash.h │ │ ├── idl.h │ │ ├── minireflect.h │ │ ├── reflection.h │ │ ├── reflection_generated.h │ │ ├── registry.h │ │ ├── stl_emulation.h │ │ ├── string.h │ │ ├── struct.h │ │ ├── table.h │ │ ├── util.h │ │ ├── vector.h │ │ ├── vector_downward.h │ │ └── verifier.h ├── android │ ├── android_seccomp.h │ ├── arm64_app_policy.h │ ├── arm64_system_policy.h │ ├── arm_app_policy.h │ ├── arm_system_policy.h │ ├── x86_64_app_policy.h │ ├── x86_64_system_policy.h │ ├── x86_app_policy.h │ └── x86_system_policy.h ├── common.h ├── common_bsd.h ├── common_ext.h ├── common_ext_example.h ├── common_fuchsia.h ├── common_kvm.h ├── common_kvm_386.h ├── common_kvm_amd64.h ├── common_kvm_amd64_syzos.h ├── common_kvm_arm64.h ├── common_kvm_arm64_syzos.h ├── common_kvm_ppc64.h ├── common_kvm_syzos.h ├── common_linux.h ├── common_openbsd.h ├── common_test.h ├── common_usb.h ├── common_usb_linux.h ├── common_usb_netbsd.h ├── common_windows.h ├── common_zlib.h ├── conn.h ├── cover_filter.h ├── embed.go ├── executor.cc ├── executor_bsd.h ├── executor_darwin.h ├── executor_fuchsia.h ├── executor_linux.h ├── executor_runner.h ├── executor_test.h ├── executor_windows.h ├── files.h ├── gen_linux_amd64.go ├── gen_linux_ppc64le.go ├── kvm.h ├── kvm_amd64.S ├── kvm_amd64.S.h ├── kvm_gen.cc ├── kvm_ppc64le.S ├── kvm_ppc64le.S.h ├── nocover.h ├── shmem.h ├── snapshot.h ├── style_test.go ├── subprocess.h ├── test.h └── test_linux.h ├── go.mod ├── go.sum ├── pkg ├── asset │ ├── backend_dummy.go │ ├── backend_gcs.go │ ├── backend_gcs_test.go │ ├── config.go │ ├── storage.go │ ├── storage_test.go │ └── type.go ├── ast │ ├── ast.go │ ├── clone.go │ ├── filter.go │ ├── format.go │ ├── parser.go │ ├── parser_test.go │ ├── scanner.go │ ├── test_util.go │ ├── testdata │ │ ├── all.txt │ │ └── errors.txt │ └── walk.go ├── auth │ ├── auth.go │ ├── auth_test.go │ └── jwt.go ├── bisect │ ├── bisect.go │ ├── bisect_test.go │ └── minimize │ │ ├── slice.go │ │ └── slice_test.go ├── build │ ├── android.go │ ├── build.go │ ├── build_test.go │ ├── cuttlefish.go │ ├── darwin.go │ ├── freebsd.go │ ├── fuchsia.go │ ├── gvisor.go │ ├── linux.go │ ├── linux_gen.sh │ ├── linux_generated.go │ ├── linux_linux.go │ ├── linux_nolinux.go │ ├── linux_test.go │ ├── netbsd.go │ ├── openbsd.go │ ├── starnix.go │ ├── test.go │ └── testdata │ │ └── linux_compiler_ok │ │ └── include │ │ └── generated │ │ └── compile.h ├── clangtool │ ├── clangtool.go │ └── tooltest │ │ └── tooltest.go ├── codesearch │ ├── codesearch.go │ ├── codesearch_test.go │ ├── database.go │ └── testdata │ │ ├── query-def-comment-close │ │ ├── query-def-comment-header │ │ ├── query-def-comment-open │ │ ├── query-def-source-close │ │ ├── query-def-source-header │ │ ├── query-def-source-missing │ │ ├── query-def-source-open │ │ ├── query-def-source-same-name-non-static │ │ ├── query-def-source-same-name-static │ │ ├── query-file-index-missing │ │ ├── query-file-index-source │ │ ├── source0.c │ │ ├── source0.c.json │ │ ├── source0.h │ │ ├── source1.c │ │ ├── source1.c.json │ │ ├── source2.c │ │ └── source2.c.json ├── compiler │ ├── attrs.go │ ├── check.go │ ├── compiler.go │ ├── compiler_test.go │ ├── const_file.go │ ├── const_file_test.go │ ├── consts.go │ ├── consts_test.go │ ├── fuzz.go │ ├── gen.go │ ├── meta.go │ ├── testdata │ │ ├── all.txt │ │ ├── auto.txt │ │ ├── auto.txt.const │ │ ├── auto0.txt │ │ ├── auto0.txt.const │ │ ├── consts.txt │ │ ├── consts_errors.txt │ │ ├── errors.txt │ │ ├── errors2.txt │ │ ├── errors3.txt │ │ └── warnings.txt │ └── types.go ├── config │ ├── config.go │ ├── merge.go │ └── merge_test.go ├── corpus │ ├── corpus.go │ ├── corpus_test.go │ ├── minimize.go │ ├── prio.go │ └── prio_test.go ├── cover │ ├── backend │ │ ├── backend.go │ │ ├── dwarf.go │ │ ├── dwarf_test.go │ │ ├── elf.go │ │ ├── elf_test.go │ │ ├── gvisor.go │ │ ├── gvisor_test.go │ │ ├── mach-o.go │ │ ├── modules.go │ │ ├── modules_test.go │ │ ├── pc.go │ │ └── test_data │ │ │ ├── symbolize_all_gvisor_be6ffa78e4df78df13d004a17f2a8833305285c4.txt │ │ │ └── symbolize_all_gvisor_release-20211026.0.txt │ ├── canonicalizer.go │ ├── canonicalizer_test.go │ ├── cover.go │ ├── cover_test.go │ ├── file.go │ ├── heatmap.go │ ├── heatmap_test.go │ ├── html.go │ ├── manager_to_ci.go │ ├── manager_to_ci_test.go │ ├── report.go │ ├── report_test.go │ └── templates │ │ ├── cover-table.html │ │ ├── cover.html │ │ └── heatmap.html ├── coveragedb │ ├── README.md │ ├── bq-schema.json │ ├── coveragedb.go │ ├── coveragedb_mock_test.go │ ├── coveragedb_test.go │ ├── functions.go │ ├── init_db.sh │ ├── mocks │ │ ├── ReadOnlyTransaction.go │ │ ├── Row.go │ │ ├── RowIterator.go │ │ └── SpannerClient.go │ ├── spannerclient │ │ └── spanner_client.go │ ├── time_period.go │ └── time_period_test.go ├── covermerger │ ├── bq_csv_reader.go │ ├── bq_csv_reader_test.go │ ├── covermerger.go │ ├── covermerger_test.go │ ├── deleted_file_merger.go │ ├── file_line_merger.go │ ├── lines_matcher.go │ ├── lines_matcher_test.go │ ├── mocks │ │ └── FileVersProvider.go │ ├── provider_monorepo.go │ ├── provider_web.go │ └── testdata │ │ └── integration │ │ ├── aesni-intel_glue │ │ ├── bqTable.txt │ │ ├── merge_result.txt │ │ └── test-workdir-covermerger │ │ │ └── repos │ │ │ ├── 11cb68ad52ac78c81e33b806b531f097e68edfa2 │ │ │ └── arch │ │ │ │ └── x86 │ │ │ │ └── crypto │ │ │ │ └── aesni-intel_glue.c │ │ │ ├── 9fe30842a90be9b57a3bd1a37c9aed92918cc6d0 │ │ │ └── arch │ │ │ │ └── x86 │ │ │ │ └── crypto │ │ │ │ └── aesni-intel_glue.c │ │ │ └── fe46a7dd189e25604716c03576d05ac8a5209743 │ │ │ └── arch │ │ │ └── x86 │ │ │ └── crypto │ │ │ └── aesni-intel_glue.c │ │ └── all │ │ └── test-workdir-covermerger │ │ └── repos │ │ ├── commit1 │ │ ├── add_line.c │ │ ├── change_line.c │ │ ├── delete_code.c │ │ ├── delete_file.c │ │ └── not_changed.c │ │ └── commit2 │ │ ├── add_line.c │ │ ├── change_line.c │ │ ├── delete_code.c │ │ └── not_changed.c ├── csource │ ├── build.go │ ├── common.go │ ├── csource.go │ ├── csource_test.go │ ├── options.go │ ├── options_test.go │ ├── syscall_generation_test.go │ └── testdata │ │ ├── 0 │ │ ├── 1 │ │ └── 2 ├── db │ ├── db.go │ └── db_test.go ├── debugtracer │ └── debug.go ├── declextract │ ├── declextract.go │ ├── entity.go │ ├── fileops.go │ ├── interface.go │ ├── netlink.go │ ├── serialization.go │ └── typing.go ├── email │ ├── action.go │ ├── action_test.go │ ├── lore │ │ ├── parse.go │ │ ├── parse_test.go │ │ └── read.go │ ├── parser.go │ ├── parser_test.go │ ├── patch.go │ ├── patch_test.go │ ├── reply.go │ └── reply_test.go ├── flatrpc │ ├── conn.go │ ├── conn_test.go │ ├── flatrpc.fbs │ ├── flatrpc.go │ ├── flatrpc.h │ └── helpers.go ├── fuzzer │ ├── cover.go │ ├── fuzzer.go │ ├── fuzzer_test.go │ ├── job.go │ ├── job_test.go │ ├── queue │ │ ├── distributor.go │ │ ├── distributor_test.go │ │ ├── prio_queue.go │ │ ├── prio_queue_test.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ ├── retry.go │ │ ├── retry_test.go │ │ ├── stats.go │ │ └── status_string.go │ └── stats.go ├── gce │ ├── gce.go │ └── gce_test.go ├── gcpsecret │ └── secret.go ├── gcs │ ├── gcs.go │ └── mocks │ │ └── Client.go ├── hash │ └── hash.go ├── html │ ├── html.go │ ├── pages │ │ ├── common.js │ │ ├── pages.go │ │ ├── stats.go │ │ ├── stats.html │ │ ├── stats_test.go │ │ └── style.css │ └── urlutil │ │ ├── urls.go │ │ └── urls_test.go ├── ifaceprobe │ └── ifaceprobe.go ├── ifuzz │ ├── arm64 │ │ ├── arm64.go │ │ ├── gen │ │ │ ├── gen.go │ │ │ └── json │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── arm64.json │ │ ├── generated │ │ │ ├── empty.go │ │ │ └── insns.go │ │ ├── pseudo.go │ │ ├── util.go │ │ └── util_test.go │ ├── arm64_test.go │ ├── ifuzz.go │ ├── ifuzz_test.go │ ├── iset │ │ └── iset.go │ ├── powerpc │ │ ├── gen │ │ │ ├── powerisa30_to_syz │ │ │ └── powerisa31_tex_to_syz │ │ ├── generated │ │ │ ├── empty.go │ │ │ └── insns.go │ │ ├── powerpc.go │ │ └── pseudo.go │ ├── x86 │ │ ├── decode.go │ │ ├── encode.go │ │ ├── gen │ │ │ ├── all-enc-instructions.txt │ │ │ └── gen.go │ │ ├── generated │ │ │ ├── empty.go │ │ │ └── insns.go │ │ ├── pseudo.go │ │ ├── x86.go │ │ └── xed.go │ └── x86_test.go ├── image │ ├── compression.go │ ├── compression_nonoptimized.go │ ├── compression_optimized.go │ ├── compression_test.go │ ├── fsck.go │ └── fsck_test.go ├── instance │ ├── execprog.go │ ├── instance.go │ └── instance_test.go ├── kcidb │ ├── client.go │ └── schema.go ├── kconfig │ ├── config.go │ ├── expr.go │ ├── expr_test.go │ ├── fuzz.go │ ├── kconfig.go │ ├── kconfig_test.go │ ├── minimize.go │ ├── minimize_test.go │ └── parser.go ├── kcov │ ├── cdefs.go │ └── kcov.go ├── kd │ ├── kd.go │ └── kd_test.go ├── kfuzztest-executor │ └── executor.go ├── kfuzztest-manager │ └── manager.go ├── kfuzztest │ ├── builder.go │ ├── description_generation_test.go │ ├── extractor.go │ ├── kfuzztest.go │ ├── testdata │ │ ├── 1 │ │ │ ├── desc.txt │ │ │ └── prog.c │ │ ├── 2 │ │ │ ├── desc.txt │ │ │ └── prog.c │ │ ├── .gitignore │ │ ├── common.h │ │ └── linker.ld │ └── types.go ├── log │ ├── log.go │ └── log_test.go ├── manager │ ├── covfilter.go │ ├── crash.go │ ├── crash_test.go │ ├── diff.go │ ├── diff_store.go │ ├── diff_test.go │ ├── html │ │ ├── common.html │ │ ├── corpus.html │ │ ├── crash.html │ │ ├── fallback_cover.html │ │ ├── job_list.html │ │ ├── main.html │ │ ├── prio.html │ │ ├── raw_cover.html │ │ ├── syscalls.html │ │ ├── text.html │ │ └── vms.html │ ├── http.go │ ├── http_test.go │ ├── report_generator.go │ ├── repro.go │ ├── repro_test.go │ ├── seeds.go │ └── seeds_test.go ├── mgrconfig │ ├── config.go │ ├── load.go │ ├── mgrconfig_test.go │ └── testdata │ │ ├── disk.raw │ │ ├── gce1.cfg │ │ ├── gce2.cfg │ │ ├── proxyapp.cfg │ │ ├── qemu-example.cfg │ │ ├── qemu.cfg │ │ ├── syzkaller │ │ └── bin │ │ │ ├── linux_amd64 │ │ │ ├── syz-execprog │ │ │ ├── syz-executor │ │ │ └── syz-fuzzer │ │ │ └── windows_amd64 │ │ │ ├── syz-execprog.exe │ │ │ ├── syz-executor.exe │ │ │ └── syz-fuzzer.exe │ │ └── wheezy.img ├── osutil │ ├── fileutil.go │ ├── fileutil_test.go │ ├── osutil.go │ ├── osutil_bsd.go │ ├── osutil_darwin.go │ ├── osutil_fuchsia.go │ ├── osutil_linux.go │ ├── osutil_test.go │ ├── osutil_unix.go │ ├── osutil_windows.go │ ├── semaphore.go │ ├── tar.go │ └── tar_test.go ├── report │ ├── README.md │ ├── bsd.go │ ├── bsd_test.go │ ├── crash │ │ └── types.go │ ├── darwin.go │ ├── decompile.go │ ├── decompile_test.go │ ├── freebsd.go │ ├── fuchsia.go │ ├── fuzz.go │ ├── gvisor.go │ ├── impact_score.go │ ├── impact_score_test.go │ ├── linux.go │ ├── linux_test.go │ ├── netbsd.go │ ├── netbsd_test.go │ ├── openbsd.go │ ├── openbsd_test.go │ ├── report.go │ ├── report_test.go │ ├── stub.go │ ├── testdata │ │ ├── all │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ └── 6 │ │ ├── darwin │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ └── 6 │ │ ├── freebsd │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ ├── 14 │ │ │ │ └── 15 │ │ ├── fuchsia │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ ├── 14 │ │ │ │ ├── 15 │ │ │ │ ├── 16 │ │ │ │ ├── 17 │ │ │ │ ├── 18 │ │ │ │ ├── 19 │ │ │ │ ├── 20 │ │ │ │ ├── 21 │ │ │ │ ├── 22 │ │ │ │ ├── 23 │ │ │ │ ├── 25 │ │ │ │ ├── 26 │ │ │ │ ├── 27 │ │ │ │ ├── 28 │ │ │ │ ├── 29 │ │ │ │ └── 30 │ │ ├── gvisor │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ ├── 14 │ │ │ │ ├── 15 │ │ │ │ ├── 16 │ │ │ │ ├── 17 │ │ │ │ ├── 18 │ │ │ │ ├── 19 │ │ │ │ ├── 20 │ │ │ │ ├── 21 │ │ │ │ ├── 22 │ │ │ │ ├── 23 │ │ │ │ ├── 24 │ │ │ │ ├── 25 │ │ │ │ ├── 26 │ │ │ │ ├── 27 │ │ │ │ ├── 28 │ │ │ │ └── 29 │ │ ├── linux │ │ │ ├── decompile │ │ │ │ ├── amd64 │ │ │ │ │ ├── 0.in │ │ │ │ │ ├── 0.out │ │ │ │ │ ├── 1.in │ │ │ │ │ ├── 1.out │ │ │ │ │ ├── 2.in │ │ │ │ │ ├── 2.out │ │ │ │ │ ├── 3.in │ │ │ │ │ ├── 3.out │ │ │ │ │ ├── 4.in │ │ │ │ │ └── 4.out │ │ │ │ ├── arm │ │ │ │ │ ├── 0.in │ │ │ │ │ └── 0.out │ │ │ │ └── arm64 │ │ │ │ │ ├── 0.in │ │ │ │ │ ├── 0.out │ │ │ │ │ ├── 1.in │ │ │ │ │ └── 1.out │ │ │ ├── guilty │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ ├── 14 │ │ │ │ ├── 15 │ │ │ │ ├── 16 │ │ │ │ ├── 17 │ │ │ │ ├── 18 │ │ │ │ ├── 19 │ │ │ │ ├── 20 │ │ │ │ ├── 21 │ │ │ │ ├── 22 │ │ │ │ ├── 23 │ │ │ │ ├── 24 │ │ │ │ ├── 25 │ │ │ │ ├── 26 │ │ │ │ ├── 27 │ │ │ │ ├── 28 │ │ │ │ ├── 29 │ │ │ │ ├── 30 │ │ │ │ ├── 31 │ │ │ │ ├── 32 │ │ │ │ ├── 33 │ │ │ │ ├── 34 │ │ │ │ ├── 35 │ │ │ │ ├── 36 │ │ │ │ ├── 37 │ │ │ │ ├── 38 │ │ │ │ ├── 39 │ │ │ │ ├── 40 │ │ │ │ ├── 41 │ │ │ │ ├── 42 │ │ │ │ ├── 43 │ │ │ │ ├── 44 │ │ │ │ ├── 45 │ │ │ │ ├── 46 │ │ │ │ ├── 47 │ │ │ │ ├── 48 │ │ │ │ ├── 49 │ │ │ │ ├── 50 │ │ │ │ ├── 51 │ │ │ │ ├── 52 │ │ │ │ ├── 53 │ │ │ │ ├── 54 │ │ │ │ ├── 55 │ │ │ │ ├── 56 │ │ │ │ ├── 57 │ │ │ │ ├── 58 │ │ │ │ ├── 59 │ │ │ │ ├── 60 │ │ │ │ ├── 61 │ │ │ │ ├── 62 │ │ │ │ ├── 63 │ │ │ │ ├── 64 │ │ │ │ ├── 65 │ │ │ │ └── 66 │ │ │ ├── guilty_raw │ │ │ │ └── 0 │ │ │ ├── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ ├── 14 │ │ │ │ ├── 15 │ │ │ │ ├── 16 │ │ │ │ ├── 17 │ │ │ │ ├── 18 │ │ │ │ ├── 19 │ │ │ │ ├── 20 │ │ │ │ ├── 21 │ │ │ │ ├── 22 │ │ │ │ ├── 23 │ │ │ │ ├── 24 │ │ │ │ ├── 25 │ │ │ │ ├── 26 │ │ │ │ ├── 27 │ │ │ │ ├── 28 │ │ │ │ ├── 29 │ │ │ │ ├── 30 │ │ │ │ ├── 31 │ │ │ │ ├── 32 │ │ │ │ ├── 33 │ │ │ │ ├── 34 │ │ │ │ ├── 35 │ │ │ │ ├── 36 │ │ │ │ ├── 37 │ │ │ │ ├── 38 │ │ │ │ ├── 39 │ │ │ │ ├── 40 │ │ │ │ ├── 41 │ │ │ │ ├── 42 │ │ │ │ ├── 43 │ │ │ │ ├── 44 │ │ │ │ ├── 45 │ │ │ │ ├── 46 │ │ │ │ ├── 47 │ │ │ │ ├── 48 │ │ │ │ ├── 49 │ │ │ │ ├── 50 │ │ │ │ ├── 51 │ │ │ │ ├── 52 │ │ │ │ ├── 53 │ │ │ │ ├── 54 │ │ │ │ ├── 55 │ │ │ │ ├── 56 │ │ │ │ ├── 57 │ │ │ │ ├── 58 │ │ │ │ ├── 59 │ │ │ │ ├── 60 │ │ │ │ ├── 61 │ │ │ │ ├── 62 │ │ │ │ ├── 63 │ │ │ │ ├── 64 │ │ │ │ ├── 65 │ │ │ │ ├── 66 │ │ │ │ ├── 67 │ │ │ │ ├── 68 │ │ │ │ ├── 69 │ │ │ │ ├── 70 │ │ │ │ ├── 71 │ │ │ │ ├── 72 │ │ │ │ ├── 73 │ │ │ │ ├── 74 │ │ │ │ ├── 75 │ │ │ │ ├── 76 │ │ │ │ ├── 77 │ │ │ │ ├── 78 │ │ │ │ ├── 79 │ │ │ │ ├── 80 │ │ │ │ ├── 81 │ │ │ │ ├── 82 │ │ │ │ ├── 83 │ │ │ │ ├── 84 │ │ │ │ ├── 85 │ │ │ │ ├── 86 │ │ │ │ ├── 87 │ │ │ │ ├── 88 │ │ │ │ ├── 89 │ │ │ │ ├── 90 │ │ │ │ ├── 91 │ │ │ │ ├── 92 │ │ │ │ ├── 93 │ │ │ │ ├── 94 │ │ │ │ ├── 95 │ │ │ │ ├── 96 │ │ │ │ ├── 97 │ │ │ │ ├── 98 │ │ │ │ ├── 99 │ │ │ │ ├── 100 │ │ │ │ ├── 101 │ │ │ │ ├── 102 │ │ │ │ ├── 103 │ │ │ │ ├── 104 │ │ │ │ ├── 105 │ │ │ │ ├── 106 │ │ │ │ ├── 107 │ │ │ │ ├── 109 │ │ │ │ ├── 110 │ │ │ │ ├── 111 │ │ │ │ ├── 112 │ │ │ │ ├── 113 │ │ │ │ ├── 114 │ │ │ │ ├── 115 │ │ │ │ ├── 116 │ │ │ │ ├── 117 │ │ │ │ ├── 118 │ │ │ │ ├── 119 │ │ │ │ ├── 120 │ │ │ │ ├── 121 │ │ │ │ ├── 122 │ │ │ │ ├── 123 │ │ │ │ ├── 124 │ │ │ │ ├── 125 │ │ │ │ ├── 126 │ │ │ │ ├── 127 │ │ │ │ ├── 129 │ │ │ │ ├── 130 │ │ │ │ ├── 131 │ │ │ │ ├── 132 │ │ │ │ ├── 133 │ │ │ │ ├── 134 │ │ │ │ ├── 135 │ │ │ │ ├── 136 │ │ │ │ ├── 137 │ │ │ │ ├── 138 │ │ │ │ ├── 139 │ │ │ │ ├── 140 │ │ │ │ ├── 141 │ │ │ │ ├── 142 │ │ │ │ ├── 143 │ │ │ │ ├── 144 │ │ │ │ ├── 145 │ │ │ │ ├── 146 │ │ │ │ ├── 147 │ │ │ │ ├── 148 │ │ │ │ ├── 149 │ │ │ │ ├── 150 │ │ │ │ ├── 151 │ │ │ │ ├── 152 │ │ │ │ ├── 153 │ │ │ │ ├── 154 │ │ │ │ ├── 155 │ │ │ │ ├── 156 │ │ │ │ ├── 157 │ │ │ │ ├── 158 │ │ │ │ ├── 159 │ │ │ │ ├── 160 │ │ │ │ ├── 161 │ │ │ │ ├── 162 │ │ │ │ ├── 163 │ │ │ │ ├── 164 │ │ │ │ ├── 165 │ │ │ │ ├── 166 │ │ │ │ ├── 167 │ │ │ │ ├── 168 │ │ │ │ ├── 169 │ │ │ │ ├── 170 │ │ │ │ ├── 171 │ │ │ │ ├── 172 │ │ │ │ ├── 173 │ │ │ │ ├── 174 │ │ │ │ ├── 175 │ │ │ │ ├── 176 │ │ │ │ ├── 177 │ │ │ │ ├── 178 │ │ │ │ ├── 179 │ │ │ │ ├── 180 │ │ │ │ ├── 181 │ │ │ │ ├── 182 │ │ │ │ ├── 183 │ │ │ │ ├── 184 │ │ │ │ ├── 185 │ │ │ │ ├── 186 │ │ │ │ ├── 187 │ │ │ │ ├── 188 │ │ │ │ ├── 189 │ │ │ │ ├── 190 │ │ │ │ ├── 191 │ │ │ │ ├── 192 │ │ │ │ ├── 193 │ │ │ │ ├── 194 │ │ │ │ ├── 195 │ │ │ │ ├── 196 │ │ │ │ ├── 197 │ │ │ │ ├── 198 │ │ │ │ ├── 199 │ │ │ │ ├── 200 │ │ │ │ ├── 201 │ │ │ │ ├── 202 │ │ │ │ ├── 203 │ │ │ │ ├── 204 │ │ │ │ ├── 205 │ │ │ │ ├── 206 │ │ │ │ ├── 207 │ │ │ │ ├── 208 │ │ │ │ ├── 209 │ │ │ │ ├── 210 │ │ │ │ ├── 211 │ │ │ │ ├── 212 │ │ │ │ ├── 213 │ │ │ │ ├── 214 │ │ │ │ ├── 215 │ │ │ │ ├── 216 │ │ │ │ ├── 217 │ │ │ │ ├── 218 │ │ │ │ ├── 221 │ │ │ │ ├── 222 │ │ │ │ ├── 223 │ │ │ │ ├── 224 │ │ │ │ ├── 225 │ │ │ │ ├── 226 │ │ │ │ ├── 227 │ │ │ │ ├── 229 │ │ │ │ ├── 230 │ │ │ │ ├── 231 │ │ │ │ ├── 233 │ │ │ │ ├── 234 │ │ │ │ ├── 235 │ │ │ │ ├── 236 │ │ │ │ ├── 237 │ │ │ │ ├── 238 │ │ │ │ ├── 239 │ │ │ │ ├── 240 │ │ │ │ ├── 241 │ │ │ │ ├── 242 │ │ │ │ ├── 243 │ │ │ │ ├── 244 │ │ │ │ ├── 245 │ │ │ │ ├── 246 │ │ │ │ ├── 247 │ │ │ │ ├── 248 │ │ │ │ ├── 249 │ │ │ │ ├── 250 │ │ │ │ ├── 251 │ │ │ │ ├── 252 │ │ │ │ ├── 253 │ │ │ │ ├── 254 │ │ │ │ ├── 255 │ │ │ │ ├── 256 │ │ │ │ ├── 257 │ │ │ │ ├── 258 │ │ │ │ ├── 259 │ │ │ │ ├── 260 │ │ │ │ ├── 261 │ │ │ │ ├── 262 │ │ │ │ ├── 263 │ │ │ │ ├── 264 │ │ │ │ ├── 265 │ │ │ │ ├── 266 │ │ │ │ ├── 267 │ │ │ │ ├── 268 │ │ │ │ ├── 269 │ │ │ │ ├── 270 │ │ │ │ ├── 271 │ │ │ │ ├── 272 │ │ │ │ ├── 273 │ │ │ │ ├── 274 │ │ │ │ ├── 275 │ │ │ │ ├── 276 │ │ │ │ ├── 277 │ │ │ │ ├── 278 │ │ │ │ ├── 279 │ │ │ │ ├── 280 │ │ │ │ ├── 281 │ │ │ │ ├── 282 │ │ │ │ ├── 283 │ │ │ │ ├── 284 │ │ │ │ ├── 285 │ │ │ │ ├── 286 │ │ │ │ ├── 287 │ │ │ │ ├── 288 │ │ │ │ ├── 289 │ │ │ │ ├── 290 │ │ │ │ ├── 291 │ │ │ │ ├── 292 │ │ │ │ ├── 293 │ │ │ │ ├── 294 │ │ │ │ ├── 295 │ │ │ │ ├── 296 │ │ │ │ ├── 297 │ │ │ │ ├── 298 │ │ │ │ ├── 299 │ │ │ │ ├── 300 │ │ │ │ ├── 306 │ │ │ │ ├── 307 │ │ │ │ ├── 308 │ │ │ │ ├── 309 │ │ │ │ ├── 310 │ │ │ │ ├── 311 │ │ │ │ ├── 312 │ │ │ │ ├── 313 │ │ │ │ ├── 314 │ │ │ │ ├── 315 │ │ │ │ ├── 316 │ │ │ │ ├── 317 │ │ │ │ ├── 318 │ │ │ │ ├── 320 │ │ │ │ ├── 321 │ │ │ │ ├── 322 │ │ │ │ ├── 323 │ │ │ │ ├── 324 │ │ │ │ ├── 325 │ │ │ │ ├── 326 │ │ │ │ ├── 327 │ │ │ │ ├── 328 │ │ │ │ ├── 329 │ │ │ │ ├── 330 │ │ │ │ ├── 331 │ │ │ │ ├── 332 │ │ │ │ ├── 333 │ │ │ │ ├── 334 │ │ │ │ ├── 335 │ │ │ │ ├── 336 │ │ │ │ ├── 337 │ │ │ │ ├── 338 │ │ │ │ ├── 339 │ │ │ │ ├── 340 │ │ │ │ ├── 341 │ │ │ │ ├── 342 │ │ │ │ ├── 343 │ │ │ │ ├── 344 │ │ │ │ ├── 345 │ │ │ │ ├── 346 │ │ │ │ ├── 347 │ │ │ │ ├── 348 │ │ │ │ ├── 349 │ │ │ │ ├── 350 │ │ │ │ ├── 351 │ │ │ │ ├── 352 │ │ │ │ ├── 353 │ │ │ │ ├── 354 │ │ │ │ ├── 355 │ │ │ │ ├── 356 │ │ │ │ ├── 357 │ │ │ │ ├── 358 │ │ │ │ ├── 359 │ │ │ │ ├── 360 │ │ │ │ ├── 361 │ │ │ │ ├── 362 │ │ │ │ ├── 364 │ │ │ │ ├── 365 │ │ │ │ ├── 366 │ │ │ │ ├── 367 │ │ │ │ ├── 368 │ │ │ │ ├── 369 │ │ │ │ ├── 370 │ │ │ │ ├── 371 │ │ │ │ ├── 372 │ │ │ │ ├── 373 │ │ │ │ ├── 374 │ │ │ │ ├── 375 │ │ │ │ ├── 376 │ │ │ │ ├── 377 │ │ │ │ ├── 378 │ │ │ │ ├── 379 │ │ │ │ ├── 380 │ │ │ │ ├── 381 │ │ │ │ ├── 382 │ │ │ │ ├── 383 │ │ │ │ ├── 384 │ │ │ │ ├── 385 │ │ │ │ ├── 386 │ │ │ │ ├── 387 │ │ │ │ ├── 388 │ │ │ │ ├── 389 │ │ │ │ ├── 390 │ │ │ │ ├── 391 │ │ │ │ ├── 392 │ │ │ │ ├── 393 │ │ │ │ ├── 394 │ │ │ │ ├── 395 │ │ │ │ ├── 396 │ │ │ │ ├── 397 │ │ │ │ ├── 398 │ │ │ │ ├── 399 │ │ │ │ ├── 400 │ │ │ │ ├── 403 │ │ │ │ ├── 404 │ │ │ │ ├── 405 │ │ │ │ ├── 406 │ │ │ │ ├── 407 │ │ │ │ ├── 408 │ │ │ │ ├── 409 │ │ │ │ ├── 410 │ │ │ │ ├── 411 │ │ │ │ ├── 412 │ │ │ │ ├── 413 │ │ │ │ ├── 414 │ │ │ │ ├── 415 │ │ │ │ ├── 416 │ │ │ │ ├── 417 │ │ │ │ ├── 418 │ │ │ │ ├── 419 │ │ │ │ ├── 420 │ │ │ │ ├── 421 │ │ │ │ ├── 422 │ │ │ │ ├── 423 │ │ │ │ ├── 424 │ │ │ │ ├── 425 │ │ │ │ ├── 426 │ │ │ │ ├── 427 │ │ │ │ ├── 428 │ │ │ │ ├── 429 │ │ │ │ ├── 430 │ │ │ │ ├── 431 │ │ │ │ ├── 432 │ │ │ │ ├── 433 │ │ │ │ ├── 434 │ │ │ │ ├── 435 │ │ │ │ ├── 436 │ │ │ │ ├── 437 │ │ │ │ ├── 438 │ │ │ │ ├── 439 │ │ │ │ ├── 440 │ │ │ │ ├── 441 │ │ │ │ ├── 442 │ │ │ │ ├── 443 │ │ │ │ ├── 444 │ │ │ │ ├── 445 │ │ │ │ ├── 446 │ │ │ │ ├── 447 │ │ │ │ ├── 448 │ │ │ │ ├── 449 │ │ │ │ ├── 450 │ │ │ │ ├── 451 │ │ │ │ ├── 452 │ │ │ │ ├── 453 │ │ │ │ ├── 454 │ │ │ │ ├── 455 │ │ │ │ ├── 456 │ │ │ │ ├── 457 │ │ │ │ ├── 458 │ │ │ │ ├── 459 │ │ │ │ ├── 460 │ │ │ │ ├── 461 │ │ │ │ ├── 462 │ │ │ │ ├── 463 │ │ │ │ ├── 464 │ │ │ │ ├── 465 │ │ │ │ ├── 466 │ │ │ │ ├── 467 │ │ │ │ ├── 468 │ │ │ │ ├── 469 │ │ │ │ ├── 470 │ │ │ │ ├── 471 │ │ │ │ ├── 472 │ │ │ │ ├── 473 │ │ │ │ ├── 474 │ │ │ │ ├── 475 │ │ │ │ ├── 476 │ │ │ │ ├── 477 │ │ │ │ ├── 478 │ │ │ │ ├── 479 │ │ │ │ ├── 480 │ │ │ │ ├── 481 │ │ │ │ ├── 482 │ │ │ │ ├── 483 │ │ │ │ ├── 484 │ │ │ │ ├── 485 │ │ │ │ ├── 486 │ │ │ │ ├── 487 │ │ │ │ ├── 488 │ │ │ │ ├── 489 │ │ │ │ ├── 490 │ │ │ │ ├── 491 │ │ │ │ ├── 492 │ │ │ │ ├── 493 │ │ │ │ ├── 494 │ │ │ │ ├── 495 │ │ │ │ ├── 496 │ │ │ │ ├── 497 │ │ │ │ ├── 498 │ │ │ │ ├── 499 │ │ │ │ ├── 500 │ │ │ │ ├── 501 │ │ │ │ ├── 502 │ │ │ │ ├── 503 │ │ │ │ ├── 504 │ │ │ │ ├── 505 │ │ │ │ ├── 506 │ │ │ │ ├── 507 │ │ │ │ ├── 508 │ │ │ │ ├── 510 │ │ │ │ ├── 511 │ │ │ │ ├── 512 │ │ │ │ ├── 513 │ │ │ │ ├── 514 │ │ │ │ ├── 515 │ │ │ │ ├── 517 │ │ │ │ ├── 518 │ │ │ │ ├── 519 │ │ │ │ ├── 520 │ │ │ │ ├── 521 │ │ │ │ ├── 522 │ │ │ │ ├── 523 │ │ │ │ ├── 524 │ │ │ │ ├── 525 │ │ │ │ ├── 526 │ │ │ │ ├── 527 │ │ │ │ ├── 528 │ │ │ │ ├── 529 │ │ │ │ ├── 530 │ │ │ │ ├── 531 │ │ │ │ ├── 532 │ │ │ │ ├── 533 │ │ │ │ ├── 534 │ │ │ │ ├── 535 │ │ │ │ ├── 536 │ │ │ │ ├── 537 │ │ │ │ ├── 538 │ │ │ │ ├── 539 │ │ │ │ ├── 540 │ │ │ │ ├── 541 │ │ │ │ ├── 542 │ │ │ │ ├── 543 │ │ │ │ ├── 544 │ │ │ │ ├── 545 │ │ │ │ ├── 546 │ │ │ │ ├── 547 │ │ │ │ ├── 548 │ │ │ │ ├── 549 │ │ │ │ ├── 550 │ │ │ │ ├── 551 │ │ │ │ ├── 552 │ │ │ │ ├── 553 │ │ │ │ ├── 554 │ │ │ │ ├── 555 │ │ │ │ ├── 556 │ │ │ │ ├── 557 │ │ │ │ ├── 558 │ │ │ │ ├── 559 │ │ │ │ ├── 560 │ │ │ │ ├── 561 │ │ │ │ ├── 562 │ │ │ │ ├── 563 │ │ │ │ ├── 564 │ │ │ │ ├── 565 │ │ │ │ ├── 566 │ │ │ │ ├── 567 │ │ │ │ ├── 568 │ │ │ │ ├── 569 │ │ │ │ ├── 570 │ │ │ │ ├── 571 │ │ │ │ ├── 572 │ │ │ │ ├── 573 │ │ │ │ ├── 574 │ │ │ │ ├── 575 │ │ │ │ ├── 576 │ │ │ │ ├── 577 │ │ │ │ ├── 578 │ │ │ │ ├── 579 │ │ │ │ ├── 580 │ │ │ │ ├── 581 │ │ │ │ ├── 582 │ │ │ │ ├── 583 │ │ │ │ ├── 584 │ │ │ │ ├── 585 │ │ │ │ ├── 586 │ │ │ │ ├── 587 │ │ │ │ ├── 588 │ │ │ │ ├── 589 │ │ │ │ ├── 590 │ │ │ │ ├── 591 │ │ │ │ ├── 592 │ │ │ │ ├── 593 │ │ │ │ ├── 594 │ │ │ │ ├── 595 │ │ │ │ ├── 596 │ │ │ │ ├── 597 │ │ │ │ ├── 598 │ │ │ │ ├── 599 │ │ │ │ ├── 600 │ │ │ │ ├── 601 │ │ │ │ ├── 602 │ │ │ │ ├── 603 │ │ │ │ ├── 604 │ │ │ │ ├── 605 │ │ │ │ ├── 606 │ │ │ │ ├── 607 │ │ │ │ ├── 608 │ │ │ │ ├── 609 │ │ │ │ ├── 610 │ │ │ │ ├── 611 │ │ │ │ ├── 612 │ │ │ │ ├── 613 │ │ │ │ ├── 614 │ │ │ │ ├── 615 │ │ │ │ ├── 616 │ │ │ │ ├── 617 │ │ │ │ ├── 618 │ │ │ │ ├── 619 │ │ │ │ ├── 620 │ │ │ │ ├── 621 │ │ │ │ ├── 622 │ │ │ │ ├── 623 │ │ │ │ ├── 624 │ │ │ │ ├── 625 │ │ │ │ ├── 626 │ │ │ │ ├── 627 │ │ │ │ ├── 628 │ │ │ │ ├── 629 │ │ │ │ ├── 630 │ │ │ │ ├── 631 │ │ │ │ ├── 632 │ │ │ │ ├── 633 │ │ │ │ ├── 634 │ │ │ │ ├── 635 │ │ │ │ ├── 636 │ │ │ │ ├── 637 │ │ │ │ ├── 638 │ │ │ │ ├── 639 │ │ │ │ ├── 640 │ │ │ │ ├── 641 │ │ │ │ ├── 642 │ │ │ │ ├── 643 │ │ │ │ ├── 644 │ │ │ │ ├── 645 │ │ │ │ ├── 646 │ │ │ │ ├── 647 │ │ │ │ ├── 648 │ │ │ │ ├── 649 │ │ │ │ ├── 650 │ │ │ │ ├── 651 │ │ │ │ ├── 652 │ │ │ │ ├── 653 │ │ │ │ ├── 654 │ │ │ │ ├── 655 │ │ │ │ ├── 656 │ │ │ │ ├── 657 │ │ │ │ ├── 658 │ │ │ │ ├── 659 │ │ │ │ ├── 660 │ │ │ │ ├── 661 │ │ │ │ ├── 662 │ │ │ │ ├── 663 │ │ │ │ ├── 664 │ │ │ │ ├── 665 │ │ │ │ ├── 666 │ │ │ │ ├── 667 │ │ │ │ ├── 668 │ │ │ │ ├── 669 │ │ │ │ ├── 670 │ │ │ │ ├── 671 │ │ │ │ ├── 672 │ │ │ │ ├── 673 │ │ │ │ ├── 674 │ │ │ │ ├── 675 │ │ │ │ ├── 676 │ │ │ │ ├── 677 │ │ │ │ ├── 678 │ │ │ │ ├── 679 │ │ │ │ ├── 680 │ │ │ │ ├── 681 │ │ │ │ ├── 682 │ │ │ │ ├── 683 │ │ │ │ ├── 684 │ │ │ │ ├── 685 │ │ │ │ ├── 686 │ │ │ │ ├── 687 │ │ │ │ ├── 688 │ │ │ │ ├── 689 │ │ │ │ ├── 690 │ │ │ │ ├── 691 │ │ │ │ ├── 692 │ │ │ │ ├── 693 │ │ │ │ ├── 694 │ │ │ │ ├── 695 │ │ │ │ ├── 696 │ │ │ │ ├── 697 │ │ │ │ ├── 698 │ │ │ │ ├── 699 │ │ │ │ ├── 700 │ │ │ │ ├── 701 │ │ │ │ ├── 702 │ │ │ │ ├── 703 │ │ │ │ ├── 704 │ │ │ │ ├── 705 │ │ │ │ ├── 706 │ │ │ │ ├── 707 │ │ │ │ ├── 708 │ │ │ │ ├── 709 │ │ │ │ ├── 710 │ │ │ │ ├── 711 │ │ │ │ ├── 712 │ │ │ │ ├── 713 │ │ │ │ ├── 714 │ │ │ │ ├── 715 │ │ │ │ ├── 716 │ │ │ │ ├── 717 │ │ │ │ ├── 718 │ │ │ │ ├── 719 │ │ │ │ ├── 720 │ │ │ │ ├── 721 │ │ │ │ ├── 722 │ │ │ │ ├── 723 │ │ │ │ ├── 724 │ │ │ │ ├── 725 │ │ │ │ ├── 726 │ │ │ │ ├── 727 │ │ │ │ ├── 728 │ │ │ │ ├── 729 │ │ │ │ ├── 730 │ │ │ │ ├── 731 │ │ │ │ ├── 732 │ │ │ │ ├── 733 │ │ │ │ ├── 734 │ │ │ │ ├── 735 │ │ │ │ ├── 736 │ │ │ │ ├── 737 │ │ │ │ ├── 738 │ │ │ │ ├── 739 │ │ │ │ ├── 740 │ │ │ │ ├── 741 │ │ │ │ ├── 742 │ │ │ │ ├── 743 │ │ │ │ ├── 744 │ │ │ │ ├── 745 │ │ │ │ ├── 746 │ │ │ │ ├── 747 │ │ │ │ ├── 748 │ │ │ │ ├── 749 │ │ │ │ ├── 750 │ │ │ │ ├── 751 │ │ │ │ ├── 752 │ │ │ │ ├── 753 │ │ │ │ ├── 754 │ │ │ │ ├── 755 │ │ │ │ ├── 756 │ │ │ │ └── 757 │ │ │ └── symbolize │ │ │ │ └── 1 │ │ ├── netbsd │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ └── 14 │ │ ├── openbsd │ │ │ └── report │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── 11 │ │ │ │ ├── 12 │ │ │ │ ├── 13 │ │ │ │ ├── 14 │ │ │ │ ├── 15 │ │ │ │ ├── 16 │ │ │ │ ├── 17 │ │ │ │ ├── 18 │ │ │ │ ├── 19 │ │ │ │ ├── 20 │ │ │ │ ├── 21 │ │ │ │ ├── 22 │ │ │ │ ├── 23 │ │ │ │ ├── 24 │ │ │ │ ├── 25 │ │ │ │ ├── 26 │ │ │ │ ├── 27 │ │ │ │ ├── 28 │ │ │ │ ├── 29 │ │ │ │ ├── 30 │ │ │ │ ├── 31 │ │ │ │ ├── 32 │ │ │ │ ├── 33 │ │ │ │ ├── 34 │ │ │ │ ├── 35 │ │ │ │ ├── 36 │ │ │ │ ├── 37 │ │ │ │ └── 38 │ │ └── starnix │ │ │ └── report │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ └── 3 │ ├── title_stat.go │ ├── title_stat_test.go │ ├── title_to_type.go │ └── title_to_type_test.go ├── repro │ ├── repro.go │ ├── repro_test.go │ └── strace.go ├── rpcserver │ ├── last_executing.go │ ├── last_executing_test.go │ ├── local.go │ ├── mocks │ │ └── Manager.go │ ├── rpcserver.go │ ├── rpcserver_test.go │ └── runner.go ├── rpctype │ ├── rpc.go │ └── rpctype.go ├── runtest │ ├── executor_test.go │ ├── run.go │ └── run_test.go ├── serializer │ ├── serializer.go │ └── serializer_test.go ├── signal │ ├── signal.go │ └── signal_test.go ├── stat │ ├── avg.go │ ├── sample │ │ ├── pvalue.go │ │ ├── sample.go │ │ └── sample_test.go │ ├── set.go │ ├── set_test.go │ └── syzbotstats │ │ └── bug.go ├── subsystem │ ├── entities.go │ ├── entities_test.go │ ├── extractor.go │ ├── extractor_test.go │ ├── linux │ │ ├── coincidence.go │ │ ├── coincidence_test.go │ │ ├── maintainers.go │ │ ├── maintainers_fuzz.go │ │ ├── maintainers_test.go │ │ ├── names.go │ │ ├── names_test.go │ │ ├── parents.go │ │ ├── parents_test.go │ │ ├── path_coincidence.go │ │ ├── path_coincidence_test.go │ │ ├── rules.go │ │ ├── subsystems.go │ │ └── subsystems_test.go │ ├── list.go │ ├── lists │ │ ├── linux.go │ │ └── linux_test.go │ ├── match.go │ ├── match_test.go │ ├── raw_extractor.go │ ├── raw_extractor_test.go │ ├── service.go │ └── service_test.go ├── symbolizer │ ├── addr2line.go │ ├── addr2line_test.go │ ├── cache.go │ ├── cache_test.go │ ├── nm.go │ ├── nm_test.go │ ├── symbolizer.go │ └── testdata │ │ └── nm.test.out ├── testutil │ ├── norace.go │ ├── race.go │ └── testutil.go ├── tool │ ├── cmdprof.go │ ├── flags.go │ ├── flags_fuzz.go │ ├── flags_test.go │ └── tool.go ├── updater │ └── updater.go ├── validator │ ├── validator.go │ └── validator_test.go ├── vcs │ ├── fuchsia.go │ ├── git.go │ ├── git_repo_test.go │ ├── git_test.go │ ├── git_test_util.go │ ├── linux.go │ ├── linux_configs.go │ ├── linux_configs_test.go │ ├── linux_patches.go │ ├── linux_patches_test.go │ ├── linux_test.go │ ├── testdata │ │ └── linux │ │ │ └── merge_config.sh │ ├── testos.go │ ├── vcs.go │ └── vcs_test.go └── vminfo │ ├── features.go │ ├── linux.go │ ├── linux_syscalls.go │ ├── linux_test.go │ ├── netbsd.go │ ├── openbsd.go │ ├── syscalls.go │ ├── vminfo.go │ └── vminfo_test.go ├── prog ├── alloc.go ├── alloc_test.go ├── analysis.go ├── any.go ├── any_test.go ├── big_endian.go ├── checksum.go ├── checksum_test.go ├── clone.go ├── collide.go ├── collide_test.go ├── decodeexec.go ├── encoding.go ├── encoding_test.go ├── encodingexec.go ├── encodingexec_test.go ├── export_test.go ├── expr.go ├── expr_test.go ├── generation.go ├── heatmap.go ├── heatmap_test.go ├── hints.go ├── hints_test.go ├── images_test.go ├── kfuzztest.go ├── kfuzztest_test.go ├── little_endian.go ├── meta.go ├── minimization.go ├── minimization_test.go ├── mutation.go ├── mutation_test.go ├── parse.go ├── parse_test.go ├── prio.go ├── prio_test.go ├── prog.go ├── prog_test.go ├── rand.go ├── rand_test.go ├── resources.go ├── resources_test.go ├── rotation.go ├── rotation_test.go ├── size.go ├── size_test.go ├── target.go ├── target_test.go ├── test │ ├── fuzz.go │ └── fuzz_test.go ├── test_util.go ├── testdata │ └── fs_images │ │ ├── 0.in │ │ ├── 0.out_mount_0 │ │ ├── 1.in │ │ └── 1.out_mount_0 ├── types.go └── validation.go ├── sys ├── darwin │ ├── fh.txt │ ├── fh.txt.const │ ├── init.go │ ├── ipc.txt │ ├── ipc.txt.const │ ├── kqueue.txt │ ├── kqueue.txt.const │ ├── pf.txt │ ├── pf.txt.const │ ├── posix_fs.txt │ ├── posix_fs.txt.const │ ├── posix_mm.txt │ ├── posix_mm.txt.const │ ├── socket.txt │ ├── socket.txt.const │ ├── socket_inet.txt │ ├── socket_inet.txt.const │ ├── socket_inet6.txt │ ├── socket_inet6.txt.const │ ├── socket_inet_icmp.txt │ ├── socket_inet_icmp.txt.const │ ├── socket_inet_tcp.txt │ ├── socket_inet_tcp.txt.const │ ├── socket_unix.txt │ ├── socket_unix.txt.const │ ├── sys.txt │ ├── sys.txt.const │ ├── vnet.txt │ └── vnet.txt.const ├── empty.go ├── freebsd │ ├── aio.txt │ ├── aio.txt.const │ ├── amd64.txt │ ├── amd64.txt.const │ ├── capsicum.txt │ ├── capsicum.txt.const │ ├── cpuset.txt │ ├── cpuset.txt.const │ ├── dev_bpf.txt │ ├── dev_bpf.txt.const │ ├── dev_crypto.txt │ ├── dev_crypto.txt.const │ ├── dev_kbd.txt │ ├── dev_kbd.txt.const │ ├── dev_md.txt │ ├── dev_md.txt.const │ ├── dev_smbus.txt │ ├── dev_smbus.txt.const │ ├── efidev.txt │ ├── efidev.txt.const │ ├── evdev.txt │ ├── evdev.txt.const │ ├── extattr.txt │ ├── extattr.txt.const │ ├── fh.txt │ ├── fh.txt.const │ ├── filemon.txt │ ├── filemon.txt.const │ ├── init.go │ ├── inotify.txt │ ├── inotify.txt.const │ ├── ipc.txt │ ├── ipc.txt.const │ ├── kmq.txt │ ├── kmq.txt.const │ ├── kqueue.txt │ ├── kqueue.txt.const │ ├── ksem.txt │ ├── ksem.txt.const │ ├── ktimer.txt │ ├── ktimer.txt.const │ ├── ktrace.txt │ ├── ktrace.txt.const │ ├── pf.txt │ ├── pf.txt.const │ ├── posix_fs.txt │ ├── posix_fs.txt.const │ ├── posix_mm.txt │ ├── posix_mm.txt.const │ ├── procctl.txt │ ├── procctl.txt.const │ ├── socket.txt │ ├── socket.txt.const │ ├── socket_bluetooth.txt │ ├── socket_bluetooth.txt.const │ ├── socket_inet.txt │ ├── socket_inet.txt.const │ ├── socket_inet6.txt │ ├── socket_inet6.txt.const │ ├── socket_inet_icmp.txt │ ├── socket_inet_icmp.txt.const │ ├── socket_inet_sctp.txt │ ├── socket_inet_sctp.txt.const │ ├── socket_inet_tcp.txt │ ├── socket_inet_tcp.txt.const │ ├── socket_inet_udp.txt │ ├── socket_inet_udp.txt.const │ ├── socket_inet_udplite.txt │ ├── socket_inet_udplite.txt.const │ ├── socket_unix.txt │ ├── socket_unix.txt.const │ ├── sys.txt │ ├── sys.txt.const │ ├── vnet.txt │ └── vnet.txt.const ├── fuchsia │ ├── README.md │ ├── bti.txt │ ├── cache.txt │ ├── cache_amd64.const │ ├── cache_arm64.const │ ├── channel.txt │ ├── channel_amd64.const │ ├── channel_arm64.const │ ├── clock.txt │ ├── cprng.txt │ ├── cprng_amd64.const │ ├── cprng_arm64.const │ ├── debug.txt │ ├── debuglog.txt │ ├── event.txt │ ├── eventpair.txt │ ├── exception.txt │ ├── fidl.txt │ ├── fidl_amd64.const │ ├── fidl_arm64.const │ ├── fidlgen │ │ └── main.go │ ├── fifo.txt │ ├── framebuffer.txt │ ├── fuchsia_cobalt.syz.txt │ ├── fuchsia_cobalt.syz_amd64.const │ ├── fuchsia_cobalt.syz_arm64.const │ ├── fuchsia_devicesettings.syz.txt │ ├── fuchsia_devicesettings.syz_amd64.const │ ├── fuchsia_devicesettings.syz_arm64.const │ ├── fuchsia_hardware_ethernet.syz.txt │ ├── fuchsia_hardware_ethernet.syz_amd64.const │ ├── fuchsia_hardware_ethernet.syz_arm64.const │ ├── fuchsia_io.syz.txt │ ├── fuchsia_io.syz_amd64.const │ ├── fuchsia_io.syz_arm64.const │ ├── fuchsia_ldsvc.syz.txt │ ├── fuchsia_ldsvc.syz_amd64.const │ ├── fuchsia_ldsvc.syz_arm64.const │ ├── fuchsia_mem.syz.txt │ ├── fuchsia_net.syz.txt │ ├── fuchsia_net.syz_amd64.const │ ├── fuchsia_net.syz_arm64.const │ ├── fuchsia_process.syz.txt │ ├── fuchsia_process.syz_amd64.const │ ├── fuchsia_process.syz_arm64.const │ ├── fuchsia_scpi.syz.txt │ ├── fuchsia_scpi.syz_amd64.const │ ├── fuchsia_scpi.syz_arm64.const │ ├── futex.txt │ ├── guest.txt │ ├── guest_amd64.const │ ├── guest_arm64.const │ ├── handle.txt │ ├── handle_amd64.const │ ├── handle_arm64.const │ ├── init.go │ ├── interrupt.txt │ ├── interrupt_amd64.const │ ├── interrupt_arm64.const │ ├── iommu.txt │ ├── ioports.txt │ ├── job.txt │ ├── job_amd64.const │ ├── job_arm64.const │ ├── ktrace.txt │ ├── layout │ │ └── fidl_mappings.go │ ├── log_amd64.const │ ├── log_arm64.const │ ├── misc.txt │ ├── msi.txt │ ├── mtrace.txt │ ├── object.txt │ ├── object_amd64.const │ ├── object_arm64.const │ ├── pager.txt │ ├── pager_amd64.const │ ├── pager_arm64.const │ ├── pc.txt │ ├── pmt.txt │ ├── port.txt │ ├── port_amd64.const │ ├── port_arm64.const │ ├── posix.txt │ ├── posix_amd64.const │ ├── posix_arm64.const │ ├── processes.txt │ ├── profile.txt │ ├── resource.txt │ ├── restricted │ ├── rights.txt │ ├── rights_amd64.const │ ├── rights_arm64.const │ ├── smc.txt │ ├── sockets.txt │ ├── sockets_amd64.const │ ├── sockets_arm64.const │ ├── stream.txt │ ├── stream_amd64.const │ ├── stream_arm64.const │ ├── sys.txt │ ├── system.txt │ ├── system_amd64.const │ ├── system_arm64.const │ ├── task.txt │ ├── tasks_amd64.const │ ├── tasks_arm64.const │ ├── test │ │ ├── cprng │ │ ├── event │ │ ├── eventpair │ │ ├── fd_assignment │ │ ├── handle │ │ ├── job │ │ ├── pipe │ │ ├── port │ │ ├── simple │ │ ├── socket │ │ ├── stream │ │ ├── vmar │ │ └── vmo │ ├── thread.txt │ ├── time_amd64.const │ ├── time_arm64.const │ ├── timer.txt │ ├── timer_amd64.const │ ├── timer_arm64.const │ ├── vcpu.txt │ ├── vmar.txt │ ├── vmar_amd64.const │ ├── vmar_arm64.const │ ├── vmo.txt │ ├── vmos_amd64.const │ └── vmos_arm64.const ├── generated │ └── generated.go ├── linux │ ├── acpi_thermal_rel.txt │ ├── acpi_thermal_rel.txt.const │ ├── aio.txt │ ├── aio.txt.const │ ├── auto.allyes.txt.info │ ├── auto.txt │ ├── auto.txt.const │ ├── auto.txt.info │ ├── binfmt.txt │ ├── binfmt.txt.const │ ├── binfmt.txt.warn │ ├── bpf.txt │ ├── bpf.txt.const │ ├── bpf.txt.warn │ ├── bpf_prog.txt │ ├── bpf_prog.txt.const │ ├── bpf_trace.txt │ ├── bpf_trace.txt.const │ ├── bpf_trace.txt.warn │ ├── cgroup.txt │ ├── cgroup.txt.const │ ├── cgroup.txt.warn │ ├── damon.txt │ ├── damon.txt.const │ ├── damon.txt.warn │ ├── dev_ashmem.txt │ ├── dev_ashmem.txt.const │ ├── dev_bifrost.txt │ ├── dev_bifrost.txt.const │ ├── dev_bifrost.txt.warn │ ├── dev_binder.txt │ ├── dev_binder.txt.const │ ├── dev_binder.txt.warn │ ├── dev_binderfs.txt │ ├── dev_binderfs.txt.const │ ├── dev_block.txt │ ├── dev_block.txt.const │ ├── dev_bsg.txt │ ├── dev_bsg.txt.const │ ├── dev_bus_usb.txt │ ├── dev_bus_usb.txt.const │ ├── dev_bus_usb.txt.warn │ ├── dev_camx.txt │ ├── dev_camx.txt.const │ ├── dev_cdrom.txt │ ├── dev_cdrom.txt.const │ ├── dev_cdrom.txt.warn │ ├── dev_cec.txt │ ├── dev_cec.txt.const │ ├── dev_char_usb.txt │ ├── dev_char_usb.txt.const │ ├── dev_comedi.txt │ ├── dev_comedi.txt.const │ ├── dev_dma_heap.txt │ ├── dev_dma_heap.txt.const │ ├── dev_dri.txt │ ├── dev_dri.txt.const │ ├── dev_dsp.txt │ ├── dev_dsp.txt.const │ ├── dev_fb.txt │ ├── dev_fb.txt.const │ ├── dev_floppy.txt │ ├── dev_floppy.txt.const │ ├── dev_floppy.txt.warn │ ├── dev_hidraw.txt │ ├── dev_hidraw.txt.const │ ├── dev_hidraw.txt.warn │ ├── dev_i2c.txt │ ├── dev_i2c.txt.const │ ├── dev_i2c.txt.warn │ ├── dev_i915.txt │ ├── dev_i915.txt.const │ ├── dev_i915.txt.warn │ ├── dev_img_rogue.txt │ ├── dev_img_rogue.txt.const │ ├── dev_img_rogue.txt.warn │ ├── dev_infiniband_rdma.txt │ ├── dev_infiniband_rdma.txt.const │ ├── dev_infiniband_rdma.txt.warn │ ├── dev_infiniband_rdma_cm.txt │ ├── dev_infiniband_rdma_cm.txt.const │ ├── dev_infiniband_rdma_cm.txt.warn │ ├── dev_input.txt │ ├── dev_input.txt.const │ ├── dev_input.txt.warn │ ├── dev_iommu.txt │ ├── dev_iommu.txt.const │ ├── dev_kvm.txt │ ├── dev_kvm.txt.const │ ├── dev_kvm.txt.warn │ ├── dev_kvm_amd64.txt │ ├── dev_kvm_amd64.txt.const │ ├── dev_kvm_arm64.txt │ ├── dev_kvm_arm64.txt.const │ ├── dev_kvm_extra.txt │ ├── dev_kvm_extra.txt.const │ ├── dev_loop.txt │ ├── dev_loop.txt.const │ ├── dev_loop.txt.warn │ ├── dev_mali.txt │ ├── dev_mali.txt.const │ ├── dev_media.txt │ ├── dev_media.txt.const │ ├── dev_media.txt.warn │ ├── dev_msm.txt │ ├── dev_msm.txt.const │ ├── dev_msm.txt.warn │ ├── dev_msr.txt │ ├── dev_msr.txt.const │ ├── dev_msr.txt.warn │ ├── dev_nbd.txt │ ├── dev_nbd.txt.const │ ├── dev_nbd.txt.warn │ ├── dev_net_tun.txt │ ├── dev_net_tun.txt.const │ ├── dev_ppp.txt │ ├── dev_ppp.txt.const │ ├── dev_ptmx.txt │ ├── dev_ptmx.txt.const │ ├── dev_ptmx.txt.warn │ ├── dev_ptp.txt │ ├── dev_ptp.txt.const │ ├── dev_qat_adf_ctl.txt │ ├── dev_qat_adf_ctl.txt.const │ ├── dev_qat_adf_ctl.txt.warn │ ├── dev_qrtr_tun.txt │ ├── dev_qrtr_tun.txt.const │ ├── dev_random.txt │ ├── dev_random.txt.const │ ├── dev_rfkill.txt │ ├── dev_rfkill.txt.const │ ├── dev_rtc.txt │ ├── dev_rtc.txt.const │ ├── dev_sequencer.txt │ ├── dev_sequencer.txt.const │ ├── dev_sequencer.txt.warn │ ├── dev_sg.txt │ ├── dev_sg.txt.const │ ├── dev_sg.txt.warn │ ├── dev_snapshot.txt │ ├── dev_snapshot.txt.const │ ├── dev_snd_control.txt │ ├── dev_snd_control.txt.const │ ├── dev_snd_control.txt.warn │ ├── dev_snd_hw.txt │ ├── dev_snd_hw.txt.const │ ├── dev_snd_hw.txt.warn │ ├── dev_snd_midi.txt │ ├── dev_snd_midi.txt.const │ ├── dev_snd_pcm.txt │ ├── dev_snd_pcm.txt.const │ ├── dev_snd_pcm.txt.warn │ ├── dev_snd_seq.txt │ ├── dev_snd_seq.txt.const │ ├── dev_snd_seq.txt.warn │ ├── dev_snd_timer.txt │ ├── dev_snd_timer.txt.const │ ├── dev_snd_timer.txt.warn │ ├── dev_sr.txt │ ├── dev_sr.txt.const │ ├── dev_sw_sync.txt │ ├── dev_sw_sync.txt.const │ ├── dev_tlk_device.txt │ ├── dev_tlk_device.txt.warn │ ├── dev_tlk_device_amd64.const │ ├── dev_tlk_device_arm64.const │ ├── dev_trusty.txt │ ├── dev_trusty.txt.const │ ├── dev_trusty.txt.warn │ ├── dev_udmabuf.txt │ ├── dev_udmabuf.txt.const │ ├── dev_uhid.txt │ ├── dev_uhid.txt.const │ ├── dev_uhid.txt.warn │ ├── dev_uinput.txt │ ├── dev_uinput.txt.const │ ├── dev_usb_hiddev.txt │ ├── dev_usb_hiddev.txt.const │ ├── dev_usbmon.txt │ ├── dev_usbmon.txt.const │ ├── dev_usbmon.txt.warn │ ├── dev_userio.txt │ ├── dev_userio.txt.const │ ├── dev_vfio.txt │ ├── dev_vfio.txt.const │ ├── dev_vfio.txt.warn │ ├── dev_vga_arbiter.txt │ ├── dev_vga_arbiter.txt.const │ ├── dev_vhci.txt │ ├── dev_vhci.txt.const │ ├── dev_vhci.txt.warn │ ├── dev_video4linux.txt │ ├── dev_video4linux.txt.const │ ├── dev_video4linux.txt.warn │ ├── dev_video4linux_vim2m.txt │ ├── dev_video4linux_vim2m.txt.const │ ├── dev_video4linux_vim2m_386.const │ ├── dev_video4linux_vim2m_amd64.const │ ├── dev_video4linux_vim2m_arm.const │ ├── dev_video4linux_vim2m_arm64.const │ ├── dev_video4linux_vim2m_mips64le.const │ ├── dev_video4linux_vim2m_ppc64le.const │ ├── dev_video4linux_vim2m_riscv64.const │ ├── dev_video4linux_vim2m_s390x.const │ ├── dev_virtual_nci.txt │ ├── dev_virtual_nci.txt.const │ ├── dev_vtpm.txt │ ├── dev_vtpm.txt.const │ ├── dev_vtpm.txt.warn │ ├── dev_watch_queue_386.const │ ├── dev_watch_queue_amd64.const │ ├── dev_watch_queue_arm.const │ ├── dev_watch_queue_arm64.const │ ├── dev_watch_queue_mips64le.const │ ├── dev_watch_queue_ppc64le.const │ ├── fanotify.txt │ ├── fanotify.txt.const │ ├── filesystem.txt │ ├── filesystem.txt.const │ ├── filesystem.txt.warn │ ├── fs_9p.txt │ ├── fs_9p.txt.const │ ├── fs_9p.txt.warn │ ├── fs_fuse.txt │ ├── fs_fuse.txt.const │ ├── fs_fuse.txt.warn │ ├── fs_incfs.txt │ ├── fs_incfs.txt.const │ ├── fs_incfs.txt.warn │ ├── fs_ioctl.txt │ ├── fs_ioctl.txt.const │ ├── fs_ioctl_autofs.txt │ ├── fs_ioctl_autofs.txt.const │ ├── fs_ioctl_autofs.txt.warn │ ├── fs_ioctl_btrfs.txt │ ├── fs_ioctl_btrfs.txt.const │ ├── fs_ioctl_btrfs.txt.warn │ ├── fs_ioctl_ext4.txt │ ├── fs_ioctl_ext4.txt.const │ ├── fs_ioctl_f2fs.txt │ ├── fs_ioctl_f2fs.txt.const │ ├── fs_ioctl_fat.txt │ ├── fs_ioctl_fat.txt.const │ ├── fs_ioctl_fscrypt.txt │ ├── fs_ioctl_fscrypt.txt.const │ ├── fs_ioctl_fscrypt.txt.warn │ ├── fs_ioctl_fsverity.txt │ ├── fs_ioctl_fsverity.txt.const │ ├── futex.txt │ ├── futex.txt.const │ ├── hafnium.txt │ ├── hafnium.txt.const │ ├── hafnium.txt.warn │ ├── init.go │ ├── init_alg.go │ ├── init_alg_test.go │ ├── init_iptables.go │ ├── init_test.go │ ├── init_vusb.go │ ├── init_vusb_ids.go │ ├── inotify.txt │ ├── inotify.txt.const │ ├── inotify.txt.warn │ ├── io_uring.txt │ ├── io_uring.txt.const │ ├── io_uring.txt.warn │ ├── ipc.txt │ ├── ipc.txt.const │ ├── ipc.txt.warn │ ├── key.txt │ ├── key.txt.const │ ├── key.txt.warn │ ├── kfuzztest.txt │ ├── kfuzztest.txt.const │ ├── l2cap.txt │ ├── l2cap.txt.const │ ├── l2cap.txt.warn │ ├── landlock.txt │ ├── landlock.txt.const │ ├── lsm.txt │ ├── lsm.txt.const │ ├── namespaces.txt │ ├── namespaces.txt.const │ ├── net_80211.txt │ ├── net_80211.txt.const │ ├── net_80211.txt.warn │ ├── netfilter.txt │ ├── netfilter.txt.const │ ├── netfilter.txt.warn │ ├── netfilter_arp.txt │ ├── netfilter_arp.txt.const │ ├── netfilter_arp.txt.warn │ ├── netfilter_bridge.txt │ ├── netfilter_bridge.txt.const │ ├── netfilter_bridge.txt.warn │ ├── netfilter_ipv4.txt │ ├── netfilter_ipv4.txt.const │ ├── netfilter_ipv4.txt.warn │ ├── netfilter_ipv6.txt │ ├── netfilter_ipv6.txt.const │ ├── netfilter_ipv6.txt.warn │ ├── netfilter_ipvs.txt │ ├── netfilter_ipvs.txt.const │ ├── netfilter_ipvs.txt.warn │ ├── netfilter_targets.txt │ ├── netfilter_targets.txt.const │ ├── netfilter_targets.txt.warn │ ├── pagemap_ioctl.txt │ ├── pagemap_ioctl.txt.const │ ├── perf.txt │ ├── perf.txt.const │ ├── perf.txt.warn │ ├── prctl.txt │ ├── prctl.txt.const │ ├── prctl.txt.warn │ ├── quotactl.txt │ ├── quotactl.txt.const │ ├── seccomp.txt │ ├── seccomp.txt.const │ ├── security_apparmor.txt │ ├── security_apparmor.txt.const │ ├── security_selinux.txt │ ├── security_selinux.txt.const │ ├── security_selinux.txt.warn │ ├── security_smack.txt │ ├── security_smack.txt.const │ ├── security_smack.txt.warn │ ├── socket.txt │ ├── socket.txt.const │ ├── socket.txt.warn │ ├── socket_alg.txt │ ├── socket_alg.txt.const │ ├── socket_alg.txt.warn │ ├── socket_ax25.txt │ ├── socket_ax25.txt.const │ ├── socket_ax25.txt.warn │ ├── socket_bluetooth.txt │ ├── socket_bluetooth.txt.const │ ├── socket_bluetooth.txt.warn │ ├── socket_caif.txt │ ├── socket_caif.txt.const │ ├── socket_caif.txt.warn │ ├── socket_can.txt │ ├── socket_can.txt.const │ ├── socket_can.txt.warn │ ├── socket_ieee802154.txt │ ├── socket_ieee802154.txt.const │ ├── socket_ieee802154.txt.warn │ ├── socket_inet.txt │ ├── socket_inet.txt.const │ ├── socket_inet.txt.warn │ ├── socket_inet6.txt │ ├── socket_inet6.txt.const │ ├── socket_inet6.txt.warn │ ├── socket_inet_dccp.txt │ ├── socket_inet_dccp.txt.const │ ├── socket_inet_icmp.txt │ ├── socket_inet_icmp.txt.const │ ├── socket_inet_igmp.txt │ ├── socket_inet_igmp.txt.const │ ├── socket_inet_l2tp.txt │ ├── socket_inet_l2tp.txt.const │ ├── socket_inet_l2tp.txt.warn │ ├── socket_inet_sctp.txt │ ├── socket_inet_sctp.txt.const │ ├── socket_inet_sctp.txt.warn │ ├── socket_inet_tcp.txt │ ├── socket_inet_tcp.txt.const │ ├── socket_inet_tcp.txt.warn │ ├── socket_inet_udp.txt │ ├── socket_inet_udp.txt.const │ ├── socket_ip_tunnel.txt │ ├── socket_ip_tunnel.txt.const │ ├── socket_isdn.txt │ ├── socket_isdn.txt.const │ ├── socket_isdn.txt.warn │ ├── socket_kcm.txt │ ├── socket_kcm.txt.const │ ├── socket_key.txt │ ├── socket_key.txt.const │ ├── socket_key.txt.warn │ ├── socket_llc.txt │ ├── socket_llc.txt.const │ ├── socket_llc.txt.warn │ ├── socket_netlink.txt │ ├── socket_netlink.txt.const │ ├── socket_netlink.txt.warn │ ├── socket_netlink_audit.txt │ ├── socket_netlink_audit.txt.const │ ├── socket_netlink_crypto.txt │ ├── socket_netlink_crypto.txt.const │ ├── socket_netlink_generic.txt │ ├── socket_netlink_generic.txt.const │ ├── socket_netlink_generic.txt.warn │ ├── socket_netlink_generic_80211.txt │ ├── socket_netlink_generic_80211.txt.const │ ├── socket_netlink_generic_80211.txt.warn │ ├── socket_netlink_generic_batadv.txt │ ├── socket_netlink_generic_batadv.txt.const │ ├── socket_netlink_generic_devlink.txt │ ├── socket_netlink_generic_devlink.txt.const │ ├── socket_netlink_generic_devlink.txt.warn │ ├── socket_netlink_generic_ethtool.txt │ ├── socket_netlink_generic_ethtool.txt.const │ ├── socket_netlink_generic_ethtool.txt.warn │ ├── socket_netlink_generic_fou.txt │ ├── socket_netlink_generic_fou.txt.const │ ├── socket_netlink_generic_gtp.txt │ ├── socket_netlink_generic_gtp.txt.const │ ├── socket_netlink_generic_mptcp.txt │ ├── socket_netlink_generic_mptcp.txt.const │ ├── socket_netlink_generic_net_dm.txt │ ├── socket_netlink_generic_net_dm.txt.const │ ├── socket_netlink_generic_netlabel.txt │ ├── socket_netlink_generic_netlabel.txt.const │ ├── socket_netlink_generic_netlabel.txt.warn │ ├── socket_netlink_generic_nfc.txt │ ├── socket_netlink_generic_nfc.txt.const │ ├── socket_netlink_generic_seg6.txt │ ├── socket_netlink_generic_seg6.txt.const │ ├── socket_netlink_generic_seg6.txt.warn │ ├── socket_netlink_generic_smc.txt │ ├── socket_netlink_generic_smc.txt.const │ ├── socket_netlink_generic_team.txt │ ├── socket_netlink_generic_team.txt.const │ ├── socket_netlink_generic_team.txt.warn │ ├── socket_netlink_generic_wireguard.txt │ ├── socket_netlink_generic_wireguard.txt.const │ ├── socket_netlink_generic_wireguard.txt.warn │ ├── socket_netlink_netfilter.txt │ ├── socket_netlink_netfilter.txt.const │ ├── socket_netlink_netfilter.txt.warn │ ├── socket_netlink_netfilter_acct.txt │ ├── socket_netlink_netfilter_acct.txt.const │ ├── socket_netlink_netfilter_conntrack.txt │ ├── socket_netlink_netfilter_conntrack.txt.const │ ├── socket_netlink_netfilter_conntrack_exp.txt │ ├── socket_netlink_netfilter_conntrack_exp.txt.const │ ├── socket_netlink_netfilter_conntrack_helper.txt │ ├── socket_netlink_netfilter_conntrack_helper.txt.const │ ├── socket_netlink_netfilter_ipset.txt │ ├── socket_netlink_netfilter_ipset.txt.const │ ├── socket_netlink_netfilter_ipset.txt.warn │ ├── socket_netlink_netfilter_log.txt │ ├── socket_netlink_netfilter_log.txt.const │ ├── socket_netlink_netfilter_nft_compat.txt │ ├── socket_netlink_netfilter_nft_compat.txt.const │ ├── socket_netlink_netfilter_nftables.txt │ ├── socket_netlink_netfilter_nftables.txt.const │ ├── socket_netlink_netfilter_nftables.txt.warn │ ├── socket_netlink_netfilter_osf.txt │ ├── socket_netlink_netfilter_osf.txt.const │ ├── socket_netlink_netfilter_queue.txt │ ├── socket_netlink_netfilter_queue.txt.const │ ├── socket_netlink_netfilter_timeout.txt │ ├── socket_netlink_netfilter_timeout.txt.const │ ├── socket_netlink_rdma.txt │ ├── socket_netlink_rdma.txt.const │ ├── socket_netlink_route.txt │ ├── socket_netlink_route.txt.const │ ├── socket_netlink_route.txt.warn │ ├── socket_netlink_route_sched.txt │ ├── socket_netlink_route_sched.txt.const │ ├── socket_netlink_route_sched.txt.warn │ ├── socket_netlink_route_sched_retired.txt │ ├── socket_netlink_route_sched_retired.txt.const │ ├── socket_netlink_sock_diag.txt │ ├── socket_netlink_sock_diag.txt.const │ ├── socket_netlink_sock_diag.txt.warn │ ├── socket_netlink_xfrm.txt │ ├── socket_netlink_xfrm.txt.const │ ├── socket_netlink_xfrm.txt.warn │ ├── socket_netrom.txt │ ├── socket_netrom.txt.const │ ├── socket_netrom.txt.warn │ ├── socket_nfc.txt │ ├── socket_nfc.txt.const │ ├── socket_nfc.txt.warn │ ├── socket_nvme_of_tcp.txt │ ├── socket_nvme_of_tcp.txt.const │ ├── socket_packet.txt │ ├── socket_packet.txt.const │ ├── socket_packet.txt.warn │ ├── socket_phonet.txt │ ├── socket_phonet.txt.const │ ├── socket_pppox.txt │ ├── socket_pppox.txt.const │ ├── socket_pppox.txt.warn │ ├── socket_qipcrtr.txt │ ├── socket_qipcrtr.txt.const │ ├── socket_qipcrtr.txt.warn │ ├── socket_rds.txt │ ├── socket_rds.txt.const │ ├── socket_rds.txt.warn │ ├── socket_rose.txt │ ├── socket_rose.txt.const │ ├── socket_rose.txt.warn │ ├── socket_rxrpc.txt │ ├── socket_rxrpc.txt.const │ ├── socket_rxrpc.txt.warn │ ├── socket_tipc.txt │ ├── socket_tipc.txt.const │ ├── socket_tipc.txt.warn │ ├── socket_tipc_netlink.txt │ ├── socket_tipc_netlink.txt.const │ ├── socket_tipc_netlink.txt.warn │ ├── socket_unix.txt │ ├── socket_unix.txt.const │ ├── socket_unix.txt.warn │ ├── socket_vnet.txt │ ├── socket_vnet.txt.const │ ├── socket_vnet.txt.warn │ ├── socket_x25.txt │ ├── socket_x25.txt.const │ ├── socket_x25.txt.warn │ ├── socket_xdp.txt │ ├── socket_xdp.txt.const │ ├── socket_xdp.txt.warn │ ├── sys.txt │ ├── sys.txt.const │ ├── sys.txt.warn │ ├── test │ │ ├── 80211_ibss │ │ ├── 80211_scan │ │ ├── 80211_setup_ap │ │ ├── 80211_setup_mesh │ │ ├── 80211_setup_station │ │ ├── amd64-syz_kvm_nested_amd_vmcb_write_mask │ │ ├── amd64-syz_kvm_nested_create_vm-hlt │ │ ├── amd64-syz_kvm_nested_intel_vmwrite_mask │ │ ├── amd64-syz_kvm_nested_vmresume │ │ ├── amd64-syz_kvm_nested_vmresume-cpuid │ │ ├── amd64-syz_kvm_nested_vmresume-rdtsc │ │ ├── amd64-syz_kvm_nested_vmresume-rdtscp │ │ ├── amd64-syz_kvm_set_irq_handler │ │ ├── amd64-syz_kvm_setup_syzos_vm │ │ ├── amd64-syz_kvm_setup_syzos_vm-cpuid │ │ ├── amd64-syz_kvm_setup_syzos_vm-default_irq_handler │ │ ├── amd64-syz_kvm_setup_syzos_vm-hlt │ │ ├── amd64-syz_kvm_setup_syzos_vm-in_dx-out_dx │ │ ├── amd64-syz_kvm_setup_syzos_vm-wr_drn │ │ ├── amd64-syz_kvm_setup_syzos_vm-wr_drn-soft │ │ ├── amd64-syz_kvm_setup_syzos_vm-wrmsr-rdmsr │ │ ├── arm64-kvm-bug363975784 │ │ ├── arm64-kvm-bug364495260 │ │ ├── arm64-kvm-bug367186827 │ │ ├── arm64-kvm-bug370977056 │ │ ├── arm64-kvm-bug372635024 │ │ ├── arm64-kvm-bug374854723 │ │ ├── arm64-kvm-bug377473254 │ │ ├── arm64-kvm-bug379251102 │ │ ├── arm64-kvm-bug381462937 │ │ ├── arm64-syz_kvm_setup_syzos_vm │ │ ├── arm64-syz_kvm_setup_syzos_vm-enable-pmu-mrs │ │ ├── arm64-syz_kvm_setup_syzos_vm-enable-pmu-msr │ │ ├── arm64-syz_kvm_setup_syzos_vm-enable-pmu-msr-emul-0 │ │ ├── arm64-syz_kvm_setup_syzos_vm-enable-pmu-msr-emul-1 │ │ ├── arm64-syz_kvm_setup_syzos_vm-enable-pmu-msr-emul-2 │ │ ├── arm64-syz_kvm_setup_syzos_vm-memwrite │ │ ├── arm64-syz_kvm_setup_syzos_vm-mrs │ │ ├── arm64-syz_kvm_setup_syzos_vm-msr │ │ ├── arm64-syz_kvm_setup_syzos_vm-msr-emul-0 │ │ ├── arm64-syz_kvm_setup_syzos_vm-msr-emul-1 │ │ ├── arm64-syz_kvm_setup_syzos_vm-msr-emul-2 │ │ ├── arm64-syz_kvm_setup_syzos_vm-msr-emul-3 │ │ ├── arm64-syz_kvm_setup_syzos_vm-msr-emul-4 │ │ ├── arm64-syz_kvm_setup_syzos_vm-smc │ │ ├── arm64-syz_kvm_setup_syzos_vm-vgicv3 │ │ ├── arm64-syz_kvm_setup_syzos_vm-vgicv3-cpu1 │ │ ├── arm64-syz_kvm_setup_syzos_vm-vgicv3-its │ │ ├── arm64-syz_kvm_setup_syzos_vm-vgicv3-its-cmd │ │ ├── arm64-syz_kvm_setup_syzos_vm-vgicv3-unroll │ │ ├── arm64-syz_kvm_setup_syzos_vm-wfe │ │ ├── arm64-syz_kvm_setup_syzos_vm-wfet │ │ ├── arm64-syz_kvm_setup_syzos_vm-wfi │ │ ├── arm64-syz_kvm_setup_syzos_vm-wfit │ │ ├── binder │ │ ├── binfmt │ │ ├── bpf_cgroup │ │ ├── bpf_helpers │ │ ├── btf_id │ │ ├── can │ │ ├── caps │ │ ├── cet_user_shstk │ │ ├── cgroup │ │ ├── dev_bifrost │ │ ├── dev_iommu │ │ ├── dev_iommu_hwpt │ │ ├── dev_iommu_vfio │ │ ├── execve_elf │ │ ├── exit0 │ │ ├── exit1 │ │ ├── fd_assignment │ │ ├── file │ │ ├── file_immutable │ │ ├── fscrypt_ext4 │ │ ├── fscrypt_f2fs │ │ ├── fuse_deadlock │ │ ├── fuse_getdents64 │ │ ├── gup_fast │ │ ├── io_uring │ │ ├── ipc │ │ ├── landlock_fs_accesses │ │ ├── landlock_fs_disconnected │ │ ├── landlock_fs_forbidden │ │ ├── landlock_fs_ioctl │ │ ├── landlock_fs_reparent │ │ ├── landlock_fs_truncate │ │ ├── landlock_layers │ │ ├── landlock_ptrace │ │ ├── landlock_sb_delete │ │ ├── mmap │ │ ├── netrom │ │ ├── nfc │ │ ├── nvme │ │ ├── nvme_h2c_pdu │ │ ├── ping │ │ ├── pipe │ │ ├── pkey │ │ ├── rfkill │ │ ├── sendmmsg │ │ ├── syz_clone │ │ ├── syz_clone3 │ │ ├── syz_fuse_handle_req │ │ ├── syz_genetlink_get_family_id │ │ ├── syz_kvm_setup_cpu_arm64 │ │ ├── syz_kvm_setup_cpu_arm64-memwrite │ │ ├── syz_kvm_setup_cpu_arm64-msr │ │ ├── syz_kvm_setup_cpu_arm64-smc │ │ ├── syz_kvm_setup_cpu_arm64-vgicv3 │ │ ├── syz_kvm_setup_cpu_ppc64le │ │ ├── syz_mount_image │ │ ├── syz_mount_image_adfs_0 │ │ ├── syz_mount_image_affs_0 │ │ ├── syz_mount_image_bcachefs_0 │ │ ├── syz_mount_image_bcachefs_1 │ │ ├── syz_mount_image_bcachefs_2 │ │ ├── syz_mount_image_bcachefs_3 │ │ ├── syz_mount_image_bcachefs_4 │ │ ├── syz_mount_image_bcachefs_5 │ │ ├── syz_mount_image_bcachefs_6 │ │ ├── syz_mount_image_bcachefs_7 │ │ ├── syz_mount_image_befs_0 │ │ ├── syz_mount_image_bfs_0 │ │ ├── syz_mount_image_bfs_1 │ │ ├── syz_mount_image_bfs_2 │ │ ├── syz_mount_image_btrfs_0 │ │ ├── syz_mount_image_btrfs_1 │ │ ├── syz_mount_image_btrfs_10 │ │ ├── syz_mount_image_btrfs_11 │ │ ├── syz_mount_image_btrfs_12 │ │ ├── syz_mount_image_btrfs_13 │ │ ├── syz_mount_image_btrfs_14 │ │ ├── syz_mount_image_btrfs_15 │ │ ├── syz_mount_image_btrfs_16 │ │ ├── syz_mount_image_btrfs_17 │ │ ├── syz_mount_image_btrfs_18 │ │ ├── syz_mount_image_btrfs_19 │ │ ├── syz_mount_image_btrfs_2 │ │ ├── syz_mount_image_btrfs_20 │ │ ├── syz_mount_image_btrfs_21 │ │ ├── syz_mount_image_btrfs_22 │ │ ├── syz_mount_image_btrfs_23 │ │ ├── syz_mount_image_btrfs_24 │ │ ├── syz_mount_image_btrfs_25 │ │ ├── syz_mount_image_btrfs_26 │ │ ├── syz_mount_image_btrfs_27 │ │ ├── syz_mount_image_btrfs_28 │ │ ├── syz_mount_image_btrfs_29 │ │ ├── syz_mount_image_btrfs_3 │ │ ├── syz_mount_image_btrfs_30 │ │ ├── syz_mount_image_btrfs_31 │ │ ├── syz_mount_image_btrfs_32 │ │ ├── syz_mount_image_btrfs_33 │ │ ├── syz_mount_image_btrfs_34 │ │ ├── syz_mount_image_btrfs_35 │ │ ├── syz_mount_image_btrfs_36 │ │ ├── syz_mount_image_btrfs_37 │ │ ├── syz_mount_image_btrfs_38 │ │ ├── syz_mount_image_btrfs_39 │ │ ├── syz_mount_image_btrfs_4 │ │ ├── syz_mount_image_btrfs_40 │ │ ├── syz_mount_image_btrfs_41 │ │ ├── syz_mount_image_btrfs_42 │ │ ├── syz_mount_image_btrfs_43 │ │ ├── syz_mount_image_btrfs_44 │ │ ├── syz_mount_image_btrfs_45 │ │ ├── syz_mount_image_btrfs_46 │ │ ├── syz_mount_image_btrfs_47 │ │ ├── syz_mount_image_btrfs_48 │ │ ├── syz_mount_image_btrfs_49 │ │ ├── syz_mount_image_btrfs_5 │ │ ├── syz_mount_image_btrfs_50 │ │ ├── syz_mount_image_btrfs_51 │ │ ├── syz_mount_image_btrfs_52 │ │ ├── syz_mount_image_btrfs_53 │ │ ├── syz_mount_image_btrfs_54 │ │ ├── syz_mount_image_btrfs_55 │ │ ├── syz_mount_image_btrfs_56 │ │ ├── syz_mount_image_btrfs_57 │ │ ├── syz_mount_image_btrfs_58 │ │ ├── syz_mount_image_btrfs_59 │ │ ├── syz_mount_image_btrfs_6 │ │ ├── syz_mount_image_btrfs_60 │ │ ├── syz_mount_image_btrfs_61 │ │ ├── syz_mount_image_btrfs_62 │ │ ├── syz_mount_image_btrfs_63 │ │ ├── syz_mount_image_btrfs_64 │ │ ├── syz_mount_image_btrfs_65 │ │ ├── syz_mount_image_btrfs_66 │ │ ├── syz_mount_image_btrfs_67 │ │ ├── syz_mount_image_btrfs_68 │ │ ├── syz_mount_image_btrfs_69 │ │ ├── syz_mount_image_btrfs_7 │ │ ├── syz_mount_image_btrfs_70 │ │ ├── syz_mount_image_btrfs_71 │ │ ├── syz_mount_image_btrfs_72 │ │ ├── syz_mount_image_btrfs_73 │ │ ├── syz_mount_image_btrfs_74 │ │ ├── syz_mount_image_btrfs_75 │ │ ├── syz_mount_image_btrfs_76 │ │ ├── syz_mount_image_btrfs_77 │ │ ├── syz_mount_image_btrfs_78 │ │ ├── syz_mount_image_btrfs_79 │ │ ├── syz_mount_image_btrfs_8 │ │ ├── syz_mount_image_btrfs_9 │ │ ├── syz_mount_image_cramfs_0 │ │ ├── syz_mount_image_cramfs_1 │ │ ├── syz_mount_image_cramfs_2 │ │ ├── syz_mount_image_cramfs_3 │ │ ├── syz_mount_image_efs_0 │ │ ├── syz_mount_image_efs_1 │ │ ├── syz_mount_image_efs_10 │ │ ├── syz_mount_image_efs_11 │ │ ├── syz_mount_image_efs_12 │ │ ├── syz_mount_image_efs_13 │ │ ├── syz_mount_image_efs_2 │ │ ├── syz_mount_image_efs_3 │ │ ├── syz_mount_image_efs_4 │ │ ├── syz_mount_image_efs_5 │ │ ├── syz_mount_image_efs_6 │ │ ├── syz_mount_image_efs_7 │ │ ├── syz_mount_image_efs_8 │ │ ├── syz_mount_image_efs_9 │ │ ├── syz_mount_image_erofs_0 │ │ ├── syz_mount_image_erofs_1 │ │ ├── syz_mount_image_erofs_10 │ │ ├── syz_mount_image_erofs_11 │ │ ├── syz_mount_image_erofs_2 │ │ ├── syz_mount_image_erofs_3 │ │ ├── syz_mount_image_erofs_4 │ │ ├── syz_mount_image_erofs_5 │ │ ├── syz_mount_image_erofs_6 │ │ ├── syz_mount_image_erofs_7 │ │ ├── syz_mount_image_erofs_8 │ │ ├── syz_mount_image_erofs_9 │ │ ├── syz_mount_image_exfat_0 │ │ ├── syz_mount_image_exfat_1 │ │ ├── syz_mount_image_ext4_0 │ │ ├── syz_mount_image_ext4_1 │ │ ├── syz_mount_image_ext4_10 │ │ ├── syz_mount_image_ext4_11 │ │ ├── syz_mount_image_ext4_12 │ │ ├── syz_mount_image_ext4_13 │ │ ├── syz_mount_image_ext4_14 │ │ ├── syz_mount_image_ext4_15 │ │ ├── syz_mount_image_ext4_16 │ │ ├── syz_mount_image_ext4_17 │ │ ├── syz_mount_image_ext4_18 │ │ ├── syz_mount_image_ext4_19 │ │ ├── syz_mount_image_ext4_2 │ │ ├── syz_mount_image_ext4_20 │ │ ├── syz_mount_image_ext4_21 │ │ ├── syz_mount_image_ext4_22 │ │ ├── syz_mount_image_ext4_23 │ │ ├── syz_mount_image_ext4_24 │ │ ├── syz_mount_image_ext4_25 │ │ ├── syz_mount_image_ext4_26 │ │ ├── syz_mount_image_ext4_27 │ │ ├── syz_mount_image_ext4_28 │ │ ├── syz_mount_image_ext4_29 │ │ ├── syz_mount_image_ext4_3 │ │ ├── syz_mount_image_ext4_30 │ │ ├── syz_mount_image_ext4_31 │ │ ├── syz_mount_image_ext4_32 │ │ ├── syz_mount_image_ext4_33 │ │ ├── syz_mount_image_ext4_34 │ │ ├── syz_mount_image_ext4_35 │ │ ├── syz_mount_image_ext4_36 │ │ ├── syz_mount_image_ext4_37 │ │ ├── syz_mount_image_ext4_38 │ │ ├── syz_mount_image_ext4_39 │ │ ├── syz_mount_image_ext4_4 │ │ ├── syz_mount_image_ext4_40 │ │ ├── syz_mount_image_ext4_41 │ │ ├── syz_mount_image_ext4_42 │ │ ├── syz_mount_image_ext4_43 │ │ ├── syz_mount_image_ext4_44 │ │ ├── syz_mount_image_ext4_45 │ │ ├── syz_mount_image_ext4_46 │ │ ├── syz_mount_image_ext4_47 │ │ ├── syz_mount_image_ext4_48 │ │ ├── syz_mount_image_ext4_49 │ │ ├── syz_mount_image_ext4_5 │ │ ├── syz_mount_image_ext4_50 │ │ ├── syz_mount_image_ext4_51 │ │ ├── syz_mount_image_ext4_52 │ │ ├── syz_mount_image_ext4_53 │ │ ├── syz_mount_image_ext4_54 │ │ ├── syz_mount_image_ext4_55 │ │ ├── syz_mount_image_ext4_56 │ │ ├── syz_mount_image_ext4_57 │ │ ├── syz_mount_image_ext4_58 │ │ ├── syz_mount_image_ext4_59 │ │ ├── syz_mount_image_ext4_6 │ │ ├── syz_mount_image_ext4_60 │ │ ├── syz_mount_image_ext4_61 │ │ ├── syz_mount_image_ext4_62 │ │ ├── syz_mount_image_ext4_7 │ │ ├── syz_mount_image_ext4_8 │ │ ├── syz_mount_image_ext4_9 │ │ ├── syz_mount_image_f2fs_0 │ │ ├── syz_mount_image_f2fs_1 │ │ ├── syz_mount_image_f2fs_10 │ │ ├── syz_mount_image_f2fs_11 │ │ ├── syz_mount_image_f2fs_12 │ │ ├── syz_mount_image_f2fs_13 │ │ ├── syz_mount_image_f2fs_14 │ │ ├── syz_mount_image_f2fs_15 │ │ ├── syz_mount_image_f2fs_2 │ │ ├── syz_mount_image_f2fs_3 │ │ ├── syz_mount_image_f2fs_4 │ │ ├── syz_mount_image_f2fs_5 │ │ ├── syz_mount_image_f2fs_6 │ │ ├── syz_mount_image_f2fs_7 │ │ ├── syz_mount_image_f2fs_8 │ │ ├── syz_mount_image_f2fs_9 │ │ ├── syz_mount_image_fuse │ │ ├── syz_mount_image_gfs2_0 │ │ ├── syz_mount_image_gfs2_1 │ │ ├── syz_mount_image_gfs2_10 │ │ ├── syz_mount_image_gfs2_11 │ │ ├── syz_mount_image_gfs2_12 │ │ ├── syz_mount_image_gfs2_13 │ │ ├── syz_mount_image_gfs2_14 │ │ ├── syz_mount_image_gfs2_15 │ │ ├── syz_mount_image_gfs2_16 │ │ ├── syz_mount_image_gfs2_17 │ │ ├── syz_mount_image_gfs2_18 │ │ ├── syz_mount_image_gfs2_19 │ │ ├── syz_mount_image_gfs2_2 │ │ ├── syz_mount_image_gfs2_20 │ │ ├── syz_mount_image_gfs2_21 │ │ ├── syz_mount_image_gfs2_22 │ │ ├── syz_mount_image_gfs2_23 │ │ ├── syz_mount_image_gfs2_24 │ │ ├── syz_mount_image_gfs2_25 │ │ ├── syz_mount_image_gfs2_26 │ │ ├── syz_mount_image_gfs2_27 │ │ ├── syz_mount_image_gfs2_28 │ │ ├── syz_mount_image_gfs2_29 │ │ ├── syz_mount_image_gfs2_3 │ │ ├── syz_mount_image_gfs2_30 │ │ ├── syz_mount_image_gfs2_31 │ │ ├── syz_mount_image_gfs2_4 │ │ ├── syz_mount_image_gfs2_5 │ │ ├── syz_mount_image_gfs2_6 │ │ ├── syz_mount_image_gfs2_7 │ │ ├── syz_mount_image_gfs2_8 │ │ ├── syz_mount_image_gfs2_9 │ │ ├── syz_mount_image_gfs2meta_0 │ │ ├── syz_mount_image_hfs_0 │ │ ├── syz_mount_image_hfs_1 │ │ ├── syz_mount_image_hfs_2 │ │ ├── syz_mount_image_hfs_3 │ │ ├── syz_mount_image_hfsplus_0 │ │ ├── syz_mount_image_hfsplus_1 │ │ ├── syz_mount_image_hfsplus_10 │ │ ├── syz_mount_image_hfsplus_11 │ │ ├── syz_mount_image_hfsplus_2 │ │ ├── syz_mount_image_hfsplus_3 │ │ ├── syz_mount_image_hfsplus_4 │ │ ├── syz_mount_image_hfsplus_5 │ │ ├── syz_mount_image_hfsplus_6 │ │ ├── syz_mount_image_hfsplus_7 │ │ ├── syz_mount_image_hfsplus_8 │ │ ├── syz_mount_image_hfsplus_9 │ │ ├── syz_mount_image_hpfs_0 │ │ ├── syz_mount_image_iso9660_0 │ │ ├── syz_mount_image_iso9660_1 │ │ ├── syz_mount_image_iso9660_10 │ │ ├── syz_mount_image_iso9660_11 │ │ ├── syz_mount_image_iso9660_12 │ │ ├── syz_mount_image_iso9660_13 │ │ ├── syz_mount_image_iso9660_14 │ │ ├── syz_mount_image_iso9660_15 │ │ ├── syz_mount_image_iso9660_16 │ │ ├── syz_mount_image_iso9660_17 │ │ ├── syz_mount_image_iso9660_2 │ │ ├── syz_mount_image_iso9660_3 │ │ ├── syz_mount_image_iso9660_4 │ │ ├── syz_mount_image_iso9660_5 │ │ ├── syz_mount_image_iso9660_6 │ │ ├── syz_mount_image_iso9660_7 │ │ ├── syz_mount_image_iso9660_8 │ │ ├── syz_mount_image_iso9660_9 │ │ ├── syz_mount_image_jffs2_0 │ │ ├── syz_mount_image_jffs2_1 │ │ ├── syz_mount_image_jffs2_2 │ │ ├── syz_mount_image_jffs2_3 │ │ ├── syz_mount_image_jffs2_4 │ │ ├── syz_mount_image_jffs2_5 │ │ ├── syz_mount_image_jffs2_6 │ │ ├── syz_mount_image_jffs2_7 │ │ ├── syz_mount_image_jfs_0 │ │ ├── syz_mount_image_jfs_1 │ │ ├── syz_mount_image_jfs_2 │ │ ├── syz_mount_image_jfs_3 │ │ ├── syz_mount_image_minix_0 │ │ ├── syz_mount_image_minix_1 │ │ ├── syz_mount_image_minix_10 │ │ ├── syz_mount_image_minix_11 │ │ ├── syz_mount_image_minix_12 │ │ ├── syz_mount_image_minix_13 │ │ ├── syz_mount_image_minix_14 │ │ ├── syz_mount_image_minix_2 │ │ ├── syz_mount_image_minix_3 │ │ ├── syz_mount_image_minix_4 │ │ ├── syz_mount_image_minix_5 │ │ ├── syz_mount_image_minix_6 │ │ ├── syz_mount_image_minix_7 │ │ ├── syz_mount_image_minix_8 │ │ ├── syz_mount_image_minix_9 │ │ ├── syz_mount_image_msdos_0 │ │ ├── syz_mount_image_msdos_1 │ │ ├── syz_mount_image_msdos_10 │ │ ├── syz_mount_image_msdos_11 │ │ ├── syz_mount_image_msdos_12 │ │ ├── syz_mount_image_msdos_13 │ │ ├── syz_mount_image_msdos_14 │ │ ├── syz_mount_image_msdos_15 │ │ ├── syz_mount_image_msdos_16 │ │ ├── syz_mount_image_msdos_17 │ │ ├── syz_mount_image_msdos_18 │ │ ├── syz_mount_image_msdos_19 │ │ ├── syz_mount_image_msdos_2 │ │ ├── syz_mount_image_msdos_20 │ │ ├── syz_mount_image_msdos_21 │ │ ├── syz_mount_image_msdos_22 │ │ ├── syz_mount_image_msdos_23 │ │ ├── syz_mount_image_msdos_24 │ │ ├── syz_mount_image_msdos_25 │ │ ├── syz_mount_image_msdos_26 │ │ ├── syz_mount_image_msdos_27 │ │ ├── syz_mount_image_msdos_28 │ │ ├── syz_mount_image_msdos_29 │ │ ├── syz_mount_image_msdos_3 │ │ ├── syz_mount_image_msdos_30 │ │ ├── syz_mount_image_msdos_31 │ │ ├── syz_mount_image_msdos_32 │ │ ├── syz_mount_image_msdos_33 │ │ ├── syz_mount_image_msdos_34 │ │ ├── syz_mount_image_msdos_35 │ │ ├── syz_mount_image_msdos_36 │ │ ├── syz_mount_image_msdos_37 │ │ ├── syz_mount_image_msdos_38 │ │ ├── syz_mount_image_msdos_39 │ │ ├── syz_mount_image_msdos_4 │ │ ├── syz_mount_image_msdos_40 │ │ ├── syz_mount_image_msdos_41 │ │ ├── syz_mount_image_msdos_42 │ │ ├── syz_mount_image_msdos_43 │ │ ├── syz_mount_image_msdos_44 │ │ ├── syz_mount_image_msdos_45 │ │ ├── syz_mount_image_msdos_46 │ │ ├── syz_mount_image_msdos_47 │ │ ├── syz_mount_image_msdos_48 │ │ ├── syz_mount_image_msdos_49 │ │ ├── syz_mount_image_msdos_5 │ │ ├── syz_mount_image_msdos_50 │ │ ├── syz_mount_image_msdos_51 │ │ ├── syz_mount_image_msdos_52 │ │ ├── syz_mount_image_msdos_53 │ │ ├── syz_mount_image_msdos_54 │ │ ├── syz_mount_image_msdos_55 │ │ ├── syz_mount_image_msdos_56 │ │ ├── syz_mount_image_msdos_57 │ │ ├── syz_mount_image_msdos_58 │ │ ├── syz_mount_image_msdos_59 │ │ ├── syz_mount_image_msdos_6 │ │ ├── syz_mount_image_msdos_7 │ │ ├── syz_mount_image_msdos_8 │ │ ├── syz_mount_image_msdos_9 │ │ ├── syz_mount_image_nilfs2_0 │ │ ├── syz_mount_image_nilfs2_1 │ │ ├── syz_mount_image_nilfs2_10 │ │ ├── syz_mount_image_nilfs2_11 │ │ ├── syz_mount_image_nilfs2_12 │ │ ├── syz_mount_image_nilfs2_13 │ │ ├── syz_mount_image_nilfs2_14 │ │ ├── syz_mount_image_nilfs2_15 │ │ ├── syz_mount_image_nilfs2_16 │ │ ├── syz_mount_image_nilfs2_17 │ │ ├── syz_mount_image_nilfs2_2 │ │ ├── syz_mount_image_nilfs2_3 │ │ ├── syz_mount_image_nilfs2_4 │ │ ├── syz_mount_image_nilfs2_5 │ │ ├── syz_mount_image_nilfs2_6 │ │ ├── syz_mount_image_nilfs2_7 │ │ ├── syz_mount_image_nilfs2_8 │ │ ├── syz_mount_image_nilfs2_9 │ │ ├── syz_mount_image_ntfs3_0 │ │ ├── syz_mount_image_ntfs3_1 │ │ ├── syz_mount_image_ntfs3_10 │ │ ├── syz_mount_image_ntfs3_11 │ │ ├── syz_mount_image_ntfs3_12 │ │ ├── syz_mount_image_ntfs3_13 │ │ ├── syz_mount_image_ntfs3_14 │ │ ├── syz_mount_image_ntfs3_15 │ │ ├── syz_mount_image_ntfs3_2 │ │ ├── syz_mount_image_ntfs3_3 │ │ ├── syz_mount_image_ntfs3_4 │ │ ├── syz_mount_image_ntfs3_5 │ │ ├── syz_mount_image_ntfs3_6 │ │ ├── syz_mount_image_ntfs3_7 │ │ ├── syz_mount_image_ntfs3_8 │ │ ├── syz_mount_image_ntfs3_9 │ │ ├── syz_mount_image_ntfs_0 │ │ ├── syz_mount_image_ntfs_1 │ │ ├── syz_mount_image_ntfs_10 │ │ ├── syz_mount_image_ntfs_11 │ │ ├── syz_mount_image_ntfs_12 │ │ ├── syz_mount_image_ntfs_13 │ │ ├── syz_mount_image_ntfs_14 │ │ ├── syz_mount_image_ntfs_15 │ │ ├── syz_mount_image_ntfs_16 │ │ ├── syz_mount_image_ntfs_17 │ │ ├── syz_mount_image_ntfs_2 │ │ ├── syz_mount_image_ntfs_3 │ │ ├── syz_mount_image_ntfs_4 │ │ ├── syz_mount_image_ntfs_5 │ │ ├── syz_mount_image_ntfs_6 │ │ ├── syz_mount_image_ntfs_7 │ │ ├── syz_mount_image_ntfs_8 │ │ ├── syz_mount_image_ntfs_9 │ │ ├── syz_mount_image_ocfs2_0 │ │ ├── syz_mount_image_ocfs2_1 │ │ ├── syz_mount_image_ocfs2_10 │ │ ├── syz_mount_image_ocfs2_11 │ │ ├── syz_mount_image_ocfs2_12 │ │ ├── syz_mount_image_ocfs2_13 │ │ ├── syz_mount_image_ocfs2_14 │ │ ├── syz_mount_image_ocfs2_15 │ │ ├── syz_mount_image_ocfs2_16 │ │ ├── syz_mount_image_ocfs2_17 │ │ ├── syz_mount_image_ocfs2_18 │ │ ├── syz_mount_image_ocfs2_19 │ │ ├── syz_mount_image_ocfs2_2 │ │ ├── syz_mount_image_ocfs2_20 │ │ ├── syz_mount_image_ocfs2_21 │ │ ├── syz_mount_image_ocfs2_22 │ │ ├── syz_mount_image_ocfs2_23 │ │ ├── syz_mount_image_ocfs2_24 │ │ ├── syz_mount_image_ocfs2_25 │ │ ├── syz_mount_image_ocfs2_26 │ │ ├── syz_mount_image_ocfs2_27 │ │ ├── syz_mount_image_ocfs2_28 │ │ ├── syz_mount_image_ocfs2_29 │ │ ├── syz_mount_image_ocfs2_3 │ │ ├── syz_mount_image_ocfs2_30 │ │ ├── syz_mount_image_ocfs2_31 │ │ ├── syz_mount_image_ocfs2_32 │ │ ├── syz_mount_image_ocfs2_33 │ │ ├── syz_mount_image_ocfs2_34 │ │ ├── syz_mount_image_ocfs2_35 │ │ ├── syz_mount_image_ocfs2_36 │ │ ├── syz_mount_image_ocfs2_37 │ │ ├── syz_mount_image_ocfs2_38 │ │ ├── syz_mount_image_ocfs2_39 │ │ ├── syz_mount_image_ocfs2_4 │ │ ├── syz_mount_image_ocfs2_40 │ │ ├── syz_mount_image_ocfs2_41 │ │ ├── syz_mount_image_ocfs2_42 │ │ ├── syz_mount_image_ocfs2_43 │ │ ├── syz_mount_image_ocfs2_44 │ │ ├── syz_mount_image_ocfs2_45 │ │ ├── syz_mount_image_ocfs2_46 │ │ ├── syz_mount_image_ocfs2_47 │ │ ├── syz_mount_image_ocfs2_48 │ │ ├── syz_mount_image_ocfs2_49 │ │ ├── syz_mount_image_ocfs2_5 │ │ ├── syz_mount_image_ocfs2_50 │ │ ├── syz_mount_image_ocfs2_51 │ │ ├── syz_mount_image_ocfs2_52 │ │ ├── syz_mount_image_ocfs2_53 │ │ ├── syz_mount_image_ocfs2_54 │ │ ├── syz_mount_image_ocfs2_55 │ │ ├── syz_mount_image_ocfs2_56 │ │ ├── syz_mount_image_ocfs2_57 │ │ ├── syz_mount_image_ocfs2_58 │ │ ├── syz_mount_image_ocfs2_59 │ │ ├── syz_mount_image_ocfs2_6 │ │ ├── syz_mount_image_ocfs2_60 │ │ ├── syz_mount_image_ocfs2_61 │ │ ├── syz_mount_image_ocfs2_62 │ │ ├── syz_mount_image_ocfs2_63 │ │ ├── syz_mount_image_ocfs2_64 │ │ ├── syz_mount_image_ocfs2_65 │ │ ├── syz_mount_image_ocfs2_66 │ │ ├── syz_mount_image_ocfs2_67 │ │ ├── syz_mount_image_ocfs2_68 │ │ ├── syz_mount_image_ocfs2_69 │ │ ├── syz_mount_image_ocfs2_7 │ │ ├── syz_mount_image_ocfs2_70 │ │ ├── syz_mount_image_ocfs2_71 │ │ ├── syz_mount_image_ocfs2_8 │ │ ├── syz_mount_image_ocfs2_9 │ │ ├── syz_mount_image_omfs_0 │ │ ├── syz_mount_image_qnx4_0 │ │ ├── syz_mount_image_qnx6_0 │ │ ├── syz_mount_image_reiserfs_0 │ │ ├── syz_mount_image_reiserfs_1 │ │ ├── syz_mount_image_reiserfs_10 │ │ ├── syz_mount_image_reiserfs_11 │ │ ├── syz_mount_image_reiserfs_12 │ │ ├── syz_mount_image_reiserfs_13 │ │ ├── syz_mount_image_reiserfs_14 │ │ ├── syz_mount_image_reiserfs_15 │ │ ├── syz_mount_image_reiserfs_16 │ │ ├── syz_mount_image_reiserfs_17 │ │ ├── syz_mount_image_reiserfs_18 │ │ ├── syz_mount_image_reiserfs_19 │ │ ├── syz_mount_image_reiserfs_2 │ │ ├── syz_mount_image_reiserfs_20 │ │ ├── syz_mount_image_reiserfs_21 │ │ ├── syz_mount_image_reiserfs_22 │ │ ├── syz_mount_image_reiserfs_23 │ │ ├── syz_mount_image_reiserfs_24 │ │ ├── syz_mount_image_reiserfs_25 │ │ ├── syz_mount_image_reiserfs_26 │ │ ├── syz_mount_image_reiserfs_27 │ │ ├── syz_mount_image_reiserfs_28 │ │ ├── syz_mount_image_reiserfs_29 │ │ ├── syz_mount_image_reiserfs_3 │ │ ├── syz_mount_image_reiserfs_30 │ │ ├── syz_mount_image_reiserfs_31 │ │ ├── syz_mount_image_reiserfs_32 │ │ ├── syz_mount_image_reiserfs_33 │ │ ├── syz_mount_image_reiserfs_34 │ │ ├── syz_mount_image_reiserfs_35 │ │ ├── syz_mount_image_reiserfs_36 │ │ ├── syz_mount_image_reiserfs_37 │ │ ├── syz_mount_image_reiserfs_38 │ │ ├── syz_mount_image_reiserfs_39 │ │ ├── syz_mount_image_reiserfs_4 │ │ ├── syz_mount_image_reiserfs_40 │ │ ├── syz_mount_image_reiserfs_41 │ │ ├── syz_mount_image_reiserfs_42 │ │ ├── syz_mount_image_reiserfs_43 │ │ ├── syz_mount_image_reiserfs_44 │ │ ├── syz_mount_image_reiserfs_45 │ │ ├── syz_mount_image_reiserfs_46 │ │ ├── syz_mount_image_reiserfs_47 │ │ ├── syz_mount_image_reiserfs_48 │ │ ├── syz_mount_image_reiserfs_49 │ │ ├── syz_mount_image_reiserfs_5 │ │ ├── syz_mount_image_reiserfs_50 │ │ ├── syz_mount_image_reiserfs_51 │ │ ├── syz_mount_image_reiserfs_52 │ │ ├── syz_mount_image_reiserfs_53 │ │ ├── syz_mount_image_reiserfs_54 │ │ ├── syz_mount_image_reiserfs_55 │ │ ├── syz_mount_image_reiserfs_56 │ │ ├── syz_mount_image_reiserfs_57 │ │ ├── syz_mount_image_reiserfs_58 │ │ ├── syz_mount_image_reiserfs_59 │ │ ├── syz_mount_image_reiserfs_6 │ │ ├── syz_mount_image_reiserfs_7 │ │ ├── syz_mount_image_reiserfs_8 │ │ ├── syz_mount_image_reiserfs_9 │ │ ├── syz_mount_image_romfs_0 │ │ ├── syz_mount_image_romfs_1 │ │ ├── syz_mount_image_squashfs_0 │ │ ├── syz_mount_image_squashfs_1 │ │ ├── syz_mount_image_squashfs_10 │ │ ├── syz_mount_image_squashfs_11 │ │ ├── syz_mount_image_squashfs_12 │ │ ├── syz_mount_image_squashfs_13 │ │ ├── syz_mount_image_squashfs_14 │ │ ├── syz_mount_image_squashfs_15 │ │ ├── syz_mount_image_squashfs_16 │ │ ├── syz_mount_image_squashfs_17 │ │ ├── syz_mount_image_squashfs_2 │ │ ├── syz_mount_image_squashfs_3 │ │ ├── syz_mount_image_squashfs_4 │ │ ├── syz_mount_image_squashfs_5 │ │ ├── syz_mount_image_squashfs_6 │ │ ├── syz_mount_image_squashfs_7 │ │ ├── syz_mount_image_squashfs_8 │ │ ├── syz_mount_image_squashfs_9 │ │ ├── syz_mount_image_sysv_0 │ │ ├── syz_mount_image_ubifs_0 │ │ ├── syz_mount_image_udf_0 │ │ ├── syz_mount_image_udf_1 │ │ ├── syz_mount_image_udf_10 │ │ ├── syz_mount_image_udf_11 │ │ ├── syz_mount_image_udf_12 │ │ ├── syz_mount_image_udf_13 │ │ ├── syz_mount_image_udf_14 │ │ ├── syz_mount_image_udf_15 │ │ ├── syz_mount_image_udf_16 │ │ ├── syz_mount_image_udf_17 │ │ ├── syz_mount_image_udf_18 │ │ ├── syz_mount_image_udf_19 │ │ ├── syz_mount_image_udf_2 │ │ ├── syz_mount_image_udf_20 │ │ ├── syz_mount_image_udf_21 │ │ ├── syz_mount_image_udf_22 │ │ ├── syz_mount_image_udf_23 │ │ ├── syz_mount_image_udf_24 │ │ ├── syz_mount_image_udf_25 │ │ ├── syz_mount_image_udf_26 │ │ ├── syz_mount_image_udf_27 │ │ ├── syz_mount_image_udf_28 │ │ ├── syz_mount_image_udf_29 │ │ ├── syz_mount_image_udf_3 │ │ ├── syz_mount_image_udf_30 │ │ ├── syz_mount_image_udf_31 │ │ ├── syz_mount_image_udf_32 │ │ ├── syz_mount_image_udf_33 │ │ ├── syz_mount_image_udf_34 │ │ ├── syz_mount_image_udf_35 │ │ ├── syz_mount_image_udf_36 │ │ ├── syz_mount_image_udf_37 │ │ ├── syz_mount_image_udf_38 │ │ ├── syz_mount_image_udf_39 │ │ ├── syz_mount_image_udf_4 │ │ ├── syz_mount_image_udf_40 │ │ ├── syz_mount_image_udf_41 │ │ ├── syz_mount_image_udf_42 │ │ ├── syz_mount_image_udf_43 │ │ ├── syz_mount_image_udf_44 │ │ ├── syz_mount_image_udf_45 │ │ ├── syz_mount_image_udf_46 │ │ ├── syz_mount_image_udf_47 │ │ ├── syz_mount_image_udf_48 │ │ ├── syz_mount_image_udf_49 │ │ ├── syz_mount_image_udf_5 │ │ ├── syz_mount_image_udf_50 │ │ ├── syz_mount_image_udf_51 │ │ ├── syz_mount_image_udf_52 │ │ ├── syz_mount_image_udf_53 │ │ ├── syz_mount_image_udf_54 │ │ ├── syz_mount_image_udf_55 │ │ ├── syz_mount_image_udf_56 │ │ ├── syz_mount_image_udf_6 │ │ ├── syz_mount_image_udf_7 │ │ ├── syz_mount_image_udf_8 │ │ ├── syz_mount_image_udf_9 │ │ ├── syz_mount_image_ufs_0 │ │ ├── syz_mount_image_v7_0 │ │ ├── syz_mount_image_vfat_0 │ │ ├── syz_mount_image_vfat_1 │ │ ├── syz_mount_image_vfat_10 │ │ ├── syz_mount_image_vfat_11 │ │ ├── syz_mount_image_vfat_12 │ │ ├── syz_mount_image_vfat_13 │ │ ├── syz_mount_image_vfat_14 │ │ ├── syz_mount_image_vfat_15 │ │ ├── syz_mount_image_vfat_16 │ │ ├── syz_mount_image_vfat_17 │ │ ├── syz_mount_image_vfat_18 │ │ ├── syz_mount_image_vfat_19 │ │ ├── syz_mount_image_vfat_2 │ │ ├── syz_mount_image_vfat_20 │ │ ├── syz_mount_image_vfat_21 │ │ ├── syz_mount_image_vfat_22 │ │ ├── syz_mount_image_vfat_23 │ │ ├── syz_mount_image_vfat_24 │ │ ├── syz_mount_image_vfat_25 │ │ ├── syz_mount_image_vfat_26 │ │ ├── syz_mount_image_vfat_27 │ │ ├── syz_mount_image_vfat_28 │ │ ├── syz_mount_image_vfat_29 │ │ ├── syz_mount_image_vfat_3 │ │ ├── syz_mount_image_vfat_30 │ │ ├── syz_mount_image_vfat_31 │ │ ├── syz_mount_image_vfat_32 │ │ ├── syz_mount_image_vfat_33 │ │ ├── syz_mount_image_vfat_34 │ │ ├── syz_mount_image_vfat_35 │ │ ├── syz_mount_image_vfat_36 │ │ ├── syz_mount_image_vfat_37 │ │ ├── syz_mount_image_vfat_38 │ │ ├── syz_mount_image_vfat_39 │ │ ├── syz_mount_image_vfat_4 │ │ ├── syz_mount_image_vfat_40 │ │ ├── syz_mount_image_vfat_41 │ │ ├── syz_mount_image_vfat_42 │ │ ├── syz_mount_image_vfat_43 │ │ ├── syz_mount_image_vfat_44 │ │ ├── syz_mount_image_vfat_45 │ │ ├── syz_mount_image_vfat_46 │ │ ├── syz_mount_image_vfat_47 │ │ ├── syz_mount_image_vfat_48 │ │ ├── syz_mount_image_vfat_49 │ │ ├── syz_mount_image_vfat_5 │ │ ├── syz_mount_image_vfat_50 │ │ ├── syz_mount_image_vfat_51 │ │ ├── syz_mount_image_vfat_52 │ │ ├── syz_mount_image_vfat_53 │ │ ├── syz_mount_image_vfat_54 │ │ ├── syz_mount_image_vfat_55 │ │ ├── syz_mount_image_vfat_56 │ │ ├── syz_mount_image_vfat_57 │ │ ├── syz_mount_image_vfat_58 │ │ ├── syz_mount_image_vfat_59 │ │ ├── syz_mount_image_vfat_6 │ │ ├── syz_mount_image_vfat_7 │ │ ├── syz_mount_image_vfat_8 │ │ ├── syz_mount_image_vfat_9 │ │ ├── syz_mount_image_vxfs_0 │ │ ├── syz_mount_image_xfs_0 │ │ ├── syz_mount_image_xfs_1 │ │ ├── syz_mount_image_xfs_10 │ │ ├── syz_mount_image_xfs_11 │ │ ├── syz_mount_image_xfs_12 │ │ ├── syz_mount_image_xfs_13 │ │ ├── syz_mount_image_xfs_14 │ │ ├── syz_mount_image_xfs_15 │ │ ├── syz_mount_image_xfs_16 │ │ ├── syz_mount_image_xfs_17 │ │ ├── syz_mount_image_xfs_18 │ │ ├── syz_mount_image_xfs_19 │ │ ├── syz_mount_image_xfs_2 │ │ ├── syz_mount_image_xfs_20 │ │ ├── syz_mount_image_xfs_21 │ │ ├── syz_mount_image_xfs_22 │ │ ├── syz_mount_image_xfs_23 │ │ ├── syz_mount_image_xfs_24 │ │ ├── syz_mount_image_xfs_25 │ │ ├── syz_mount_image_xfs_26 │ │ ├── syz_mount_image_xfs_27 │ │ ├── syz_mount_image_xfs_28 │ │ ├── syz_mount_image_xfs_29 │ │ ├── syz_mount_image_xfs_3 │ │ ├── syz_mount_image_xfs_30 │ │ ├── syz_mount_image_xfs_31 │ │ ├── syz_mount_image_xfs_32 │ │ ├── syz_mount_image_xfs_33 │ │ ├── syz_mount_image_xfs_34 │ │ ├── syz_mount_image_xfs_35 │ │ ├── syz_mount_image_xfs_4 │ │ ├── syz_mount_image_xfs_5 │ │ ├── syz_mount_image_xfs_6 │ │ ├── syz_mount_image_xfs_7 │ │ ├── syz_mount_image_xfs_8 │ │ ├── syz_mount_image_xfs_9 │ │ ├── syz_mount_image_zonefs_0 │ │ ├── syz_read_part_table_0 │ │ ├── syz_read_part_table_1 │ │ ├── syz_read_part_table_2 │ │ ├── syz_read_part_table_3 │ │ ├── syz_read_part_table_4 │ │ ├── syz_read_part_table_5 │ │ ├── syz_read_part_table_6 │ │ ├── syz_read_part_table_7 │ │ ├── tipc │ │ ├── udp │ │ ├── udp2 │ │ ├── vhci │ │ ├── vnet_tun │ │ ├── vusb │ │ ├── vusb_ath9k │ │ ├── vusb_cdc_ecm │ │ ├── vusb_cdc_ncm │ │ ├── vusb_hid │ │ ├── vusb_hid_hiddev │ │ ├── vusb_lan78xx │ │ ├── vusb_printer │ │ ├── vusb_rtl8150 │ │ ├── vusb_sierra_net │ │ └── wireguard │ ├── uffd.txt │ ├── uffd.txt.const │ ├── usbip.txt │ ├── usbip.txt.const │ ├── usbip.txt.warn │ ├── vmw_vmci.txt │ ├── vmw_vmci.txt.const │ ├── vmw_vmci.txt.warn │ ├── vnet.txt │ ├── vnet.txt.const │ ├── vnet.txt.warn │ ├── vnet_mptcp.txt │ ├── vnet_mptcp.txt.warn │ ├── vnet_mptcp_386.const │ ├── vnet_mptcp_amd64.const │ ├── vnet_mptcp_arm.const │ ├── vnet_mptcp_arm64.const │ ├── vnet_mptcp_ppc64le.const │ ├── vusb.txt │ ├── vusb.txt.const │ ├── vusb.txt.warn │ ├── watch_queue.txt │ ├── watch_queue.txt.const │ ├── xattr.txt │ ├── xattr.txt.const │ └── xattr.txt.warn ├── netbsd │ ├── dev_dm.txt │ ├── dev_dm.txt.const │ ├── dev_hdaudio.txt │ ├── dev_hdaudio.txt.const │ ├── dev_i2c.txt │ ├── dev_i2c.txt.const │ ├── dev_tprof.txt │ ├── dev_tprof.txt.const │ ├── dev_wscons.txt │ ├── dev_wscons.txt.const │ ├── fs.txt │ ├── fs.txt.const │ ├── init.go │ ├── init_test.go │ ├── ipc.txt │ ├── ipc.txt.const │ ├── ktrace.txt │ ├── ktrace.txt.const │ ├── lwp.txt │ ├── lwp.txt.const │ ├── mm.txt │ ├── mm.txt.const │ ├── socket.txt │ ├── socket.txt.const │ ├── socket_inet.txt │ ├── socket_inet.txt.const │ ├── socket_inet6.txt │ ├── socket_inet6.txt.const │ ├── socket_unix.txt │ ├── socket_unix.txt.const │ ├── sys.txt │ ├── sys.txt.const │ ├── vnet.txt │ ├── vnet.txt.const │ ├── vusb.txt │ └── vusb.txt.const ├── openbsd │ ├── dev_bpf.txt │ ├── dev_bpf.txt.const │ ├── dev_diskmap.txt │ ├── dev_diskmap.txt.const │ ├── dev_klog.txt │ ├── dev_klog.txt.const │ ├── dev_pci.txt │ ├── dev_pci.txt.const │ ├── dev_pf.txt │ ├── dev_pf.txt.const │ ├── dev_speaker.txt │ ├── dev_speaker.txt.const │ ├── dev_vmm.txt │ ├── dev_vmm.txt.const │ ├── dev_vnd.txt │ ├── dev_vnd.txt.const │ ├── fs.txt │ ├── fs.txt.const │ ├── init.go │ ├── init_test.go │ ├── ipc.txt │ ├── ipc.txt.const │ ├── kqueue.txt │ ├── kqueue.txt.const │ ├── ktrace.txt │ ├── ktrace.txt.const │ ├── mm.txt │ ├── mm.txt.const │ ├── socket.txt │ ├── socket.txt.const │ ├── socket_inet.txt │ ├── socket_inet.txt.const │ ├── socket_inet6.txt │ ├── socket_inet6.txt.const │ ├── socket_unix.txt │ ├── socket_unix.txt.const │ ├── sys.txt │ ├── sys.txt.const │ ├── sysctl.txt │ ├── sysctl.txt.const │ ├── tty.txt │ ├── tty.txt.const │ ├── vnet.txt │ ├── vnet.txt.const │ ├── wscons.txt │ └── wscons.txt.const ├── syz-extract │ ├── darwin.go │ ├── extract.go │ ├── fetch.go │ ├── freebsd.go │ ├── fuchsia.go │ ├── linux.go │ ├── netbsd.go │ ├── openbsd.go │ ├── trusty.go │ └── windows.go ├── syz-sysgen │ ├── check.go │ └── sysgen.go ├── targets │ ├── common.go │ └── targets.go ├── test │ ├── any.txt │ ├── arch_32.txt │ ├── arch_64.txt │ ├── csource.txt │ ├── csource.txt.const │ ├── exec.txt │ ├── expressions.txt │ ├── expressions.txt.const │ ├── fmt.txt │ ├── fuzzer.txt │ ├── init.go │ ├── related.txt │ ├── test.txt │ ├── test.txt.const │ └── test │ │ ├── align0 │ │ ├── align0_be │ │ ├── align3 │ │ ├── bf │ │ ├── bf2 │ │ ├── bf2_be │ │ ├── bf_be │ │ ├── errno │ │ ├── exit0 │ │ ├── exit1 │ │ ├── expressions │ │ ├── expressions_be │ │ ├── fmt │ │ ├── nla │ │ ├── nonfailing │ │ ├── overlay │ │ ├── overlay_be │ │ ├── sleep │ │ ├── strings │ │ ├── test │ │ └── zero_args ├── trusty │ ├── init.go │ ├── sys.txt │ └── sys_arm.const └── windows │ ├── init.go │ ├── sys.txt │ ├── sys_amd64.const │ └── windows.txt ├── syz-ci ├── config_test.go ├── jobs.go ├── jobs_test.go ├── manager.go ├── manager_test.go ├── managercmd.go ├── syz-ci.go └── testdata │ └── example.cfg ├── syz-cluster ├── .dockerignore ├── Dockerfile.go-tests ├── Makefile ├── README.md ├── controller │ ├── Dockerfile │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── main.go │ ├── processor.go │ ├── processor_test.go │ └── service.yaml ├── dashboard │ ├── Dockerfile │ ├── README.md │ ├── deployment.yaml │ ├── handler.go │ ├── handler_test.go │ ├── kustomization.yaml │ ├── main.go │ ├── service.yaml │ ├── static │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.min.css │ │ ├── index.html │ │ └── jquery-3.7.1.min.js │ └── templates │ │ ├── base.html │ │ ├── graphs.html │ │ ├── index.html │ │ ├── series.html │ │ └── templates.html ├── email-reporter │ ├── Dockerfile │ ├── deployment.yaml │ ├── handler.go │ ├── handler_test.go │ ├── kustomization.yaml │ ├── lore-disk-pvc.yaml │ ├── main.go │ ├── stream.go │ └── stream_test.go ├── kernel-disk │ ├── fetch-kernels-cron.yaml │ ├── fetch-kernels-once.yaml │ ├── fetch-kernels-template.yaml │ └── kustomization.yaml ├── overlays │ ├── common │ │ ├── argo │ │ │ ├── kustomization.yaml │ │ │ ├── patch-argo-controller.yaml │ │ │ ├── patch-workflow-controller-configmap.yaml │ │ │ └── workflow-roles.yaml │ │ ├── kustomization.yaml │ │ ├── network-deny-all.yaml │ │ ├── network-policy-controller.yaml │ │ ├── network-policy-email-sender.yaml │ │ ├── network-policy-git-access.yaml │ │ ├── network-policy-reporter.yaml │ │ ├── network-policy-web-dashboard.yaml │ │ └── patch-workflow-controller.yaml │ ├── gke │ │ ├── common │ │ │ ├── global-config-env.yaml │ │ │ ├── kernel-disk-pvc.yaml │ │ │ ├── kustomization.yaml │ │ │ └── workflow-artifacts.yaml │ │ ├── prod │ │ │ ├── global-config.yaml │ │ │ └── kustomization.yaml │ │ └── staging │ │ │ ├── global-config.yaml │ │ │ └── kustomization.yaml │ └── minikube │ │ ├── fake-gcs.yaml │ │ ├── global-config-env.yaml │ │ ├── global-config.yaml │ │ ├── kernel-disk-pvc.yaml │ │ ├── kustomization.yaml │ │ ├── network-policy-spanner.yaml │ │ ├── patch-workflow-controller-configmap.yaml │ │ ├── service-accounts.yaml │ │ └── workflow-artifacts.yaml ├── pkg │ ├── api │ │ ├── api.go │ │ ├── client.go │ │ ├── http.go │ │ ├── reporter.go │ │ └── urls.go │ ├── app │ │ ├── config.go │ │ ├── env.go │ │ └── logging.go │ ├── blob │ │ ├── gcs.go │ │ ├── storage.go │ │ └── storage_test.go │ ├── controller │ │ ├── api.go │ │ ├── api_test.go │ │ └── testutil.go │ ├── db │ │ ├── base_finding_repo.go │ │ ├── base_finding_repo_test.go │ │ ├── build_repo.go │ │ ├── build_repo_test.go │ │ ├── entities.go │ │ ├── finding_repo.go │ │ ├── finding_repo_test.go │ │ ├── migrations │ │ │ ├── 1_initialize.down.sql │ │ │ ├── 1_initialize.up.sql │ │ │ ├── 2_extend_build.down.sql │ │ │ ├── 2_extend_build.up.sql │ │ │ ├── 3_add_tree_url.down.sql │ │ │ ├── 3_add_tree_url.up.sql │ │ │ ├── 4_add_series_subject_tags.down.sql │ │ │ ├── 4_add_series_subject_tags.up.sql │ │ │ ├── 5_session_test_skipped.down.sql │ │ │ ├── 5_session_test_skipped.up.sql │ │ │ ├── 6_base_findings.down.sql │ │ │ ├── 6_base_findings.up.sql │ │ │ ├── 7_invalidated_findings.down.sql │ │ │ └── 7_invalidated_findings.up.sql │ │ ├── report_reply_repo.go │ │ ├── report_reply_repo_test.go │ │ ├── report_repo.go │ │ ├── report_repo_test.go │ │ ├── series_repo.go │ │ ├── series_repo_test.go │ │ ├── session_repo.go │ │ ├── session_repo_test.go │ │ ├── session_test_repo.go │ │ ├── session_test_repo_test.go │ │ ├── spanner.go │ │ ├── spanner_test.go │ │ ├── stats_repo.go │ │ ├── stats_repo_test.go │ │ └── util_test.go │ ├── emailclient │ │ ├── dashapi_sender.go │ │ ├── sender.go │ │ ├── smtp_sender.go │ │ └── smtp_sender_test.go │ ├── fuzzconfig │ │ ├── base.cfg │ │ ├── generate.go │ │ ├── generate_test.go │ │ ├── patched.cfg │ │ └── testdata │ │ │ ├── mixed │ │ │ ├── bpf_io_uring.base.cfg │ │ │ └── bpf_io_uring.patched.cfg │ │ │ └── singular │ │ │ ├── bpf.base.cfg │ │ │ ├── bpf.patched.cfg │ │ │ ├── default.base.cfg │ │ │ ├── default.patched.cfg │ │ │ ├── fs.base.cfg │ │ │ ├── fs.patched.cfg │ │ │ ├── io_uring.base.cfg │ │ │ ├── io_uring.patched.cfg │ │ │ ├── kvm.base.cfg │ │ │ ├── kvm.patched.cfg │ │ │ ├── net.base.cfg │ │ │ └── net.patched.cfg │ ├── report │ │ ├── email.go │ │ ├── email_test.go │ │ ├── template.txt │ │ └── testdata │ │ │ ├── 1.in.json │ │ │ ├── 1.moderation.txt │ │ │ ├── 1.upstream.txt │ │ │ ├── 2.in.json │ │ │ ├── 2.moderation.txt │ │ │ └── 2.upstream.txt │ ├── reporter │ │ ├── api.go │ │ ├── api_test.go │ │ └── generator.go │ ├── service │ │ ├── base_finding.go │ │ ├── build.go │ │ ├── discussion.go │ │ ├── finding.go │ │ ├── report.go │ │ ├── series.go │ │ ├── session.go │ │ └── sessiontest.go │ ├── triage │ │ ├── commit.go │ │ ├── commit_test.go │ │ ├── fuzz_target.go │ │ ├── fuzz_target_test.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── tree.go │ │ └── tree_test.go │ └── workflow │ │ ├── argo.go │ │ ├── service.go │ │ └── template.yaml ├── reporter-server │ ├── Dockerfile │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── main.go │ └── service.yaml ├── run-local.sh ├── series-tracker │ ├── Dockerfile │ ├── Dockerfile.test │ ├── deployment.yaml │ ├── git-pvc.yaml │ ├── kustomization.yaml │ ├── main.go │ ├── main_test.go │ ├── manifest.go │ └── manifest_test.go ├── tools │ ├── db-mgmt │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── main.go │ │ └── migrate-job.yaml │ └── send-test-email │ │ ├── Dockerfile │ │ ├── job.yaml │ │ └── main.go └── workflow │ ├── boot-step │ ├── Dockerfile │ ├── main.go │ └── workflow-template.yaml │ ├── build-step │ ├── Dockerfile │ ├── main.go │ └── workflow-template.yaml │ ├── fuzz-step │ ├── Dockerfile │ ├── main.go │ ├── main_test.go │ └── workflow-template.yaml │ ├── kustomization.yaml │ ├── permissions.yaml │ ├── rebuild-kernels-cron.yaml │ └── triage-step │ ├── Dockerfile │ ├── README.md │ ├── main.go │ └── workflow-template.yaml ├── syz-hub ├── http.go ├── hub.go ├── hub_test.go └── state │ ├── state.go │ └── state_test.go ├── syz-kfuzztest └── main.go ├── syz-manager ├── hub.go ├── hub_test.go ├── manager.go ├── snapshot.go └── stats.go ├── syz-verifier ├── execresult.go ├── execresult_test.go ├── exectask.go ├── exectask_test.go ├── main.go ├── monitoring_api.go ├── rpcserver.go ├── rpcserver_test.go ├── stats.go ├── stats_test.go ├── utils_test.go ├── verifier.go └── verifier_test.go ├── tools ├── android │ ├── Makefile │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── sandbox_test.c ├── arm64 │ ├── msr_mrs.txt │ └── registers.go ├── check-commits.sh ├── check-copyright.sh ├── check-html.sh ├── check-language.sh ├── check-shebang.sh ├── check-syzos.sh ├── check-whitespace.sh ├── check_links.py ├── check_translation_update.py ├── clang │ ├── .clang-format │ ├── codesearch │ │ ├── codesearch.cpp │ │ └── output.h │ ├── declextract │ │ ├── declextract.cpp │ │ └── output.h │ └── json.h ├── create-buildroot-image.sh ├── create-ec2-rootfs.sh ├── create-gce-image.sh ├── create-image.sh ├── create-openbsd-gce-ci.sh ├── create-openbsd-vmm-worker.sh ├── demo_setup.sh ├── docker │ ├── README.md │ ├── env │ │ └── Dockerfile │ ├── old-env │ │ └── Dockerfile │ └── syzbot │ │ ├── Dockerfile │ │ └── run-syz-command.sh ├── fops_probe │ └── fops_probe.cc ├── gvisor-smoke-test.sh ├── kcovfuzzer │ └── kcovfuzzer.c ├── kcovtrace │ └── kcovtrace.c ├── kfuzztest-gen │ └── main.go ├── syz-benchcmp │ └── benchcmp.go ├── syz-bisect │ └── bisect.go ├── syz-bq.sh ├── syz-build │ └── build.go ├── syz-check │ ├── check.go │ └── dwarf.go ├── syz-codesearch │ └── codesearch.go ├── syz-cover │ └── syz-cover.go ├── syz-covermerger │ ├── README.md │ └── syz_covermerger.go ├── syz-crush │ └── crush.go ├── syz-db-export │ ├── README.md │ └── reprolist.go ├── syz-db │ ├── syz-db.go │ └── syz-db_test.go ├── syz-declextract │ ├── README.md │ ├── declextract.go │ ├── declextract_test.go │ └── testdata │ │ ├── README.md │ │ ├── arch │ │ ├── arm │ │ │ └── syscalls.tbl │ │ ├── arm64 │ │ │ └── syscalls.tbl │ │ ├── mips │ │ │ └── syscalls.tbl │ │ ├── powerpc │ │ │ └── syscalls.tbl │ │ ├── riscv │ │ │ └── syscalls.tbl │ │ ├── s390 │ │ │ └── syscalls.tbl │ │ └── x86 │ │ │ └── syscalls.tbl │ │ ├── cover.c │ │ ├── cover.c.cover │ │ ├── cover.c.info │ │ ├── cover.c.json │ │ ├── cover.c.txt │ │ ├── file_operations.c │ │ ├── file_operations.c.info │ │ ├── file_operations.c.json │ │ ├── file_operations.c.probe │ │ ├── file_operations.c.txt │ │ ├── functions.c │ │ ├── functions.c.info │ │ ├── functions.c.json │ │ ├── functions.c.txt │ │ ├── include │ │ ├── fs.h │ │ ├── netlink.h │ │ ├── syscall.h │ │ ├── types.h │ │ └── uapi │ │ │ ├── file_operations.h │ │ │ ├── io_uring.h │ │ │ ├── ioctl.h │ │ │ ├── netlink_family.h │ │ │ └── unused_ioctl.h │ │ ├── io_uring.c │ │ ├── io_uring.c.info │ │ ├── io_uring.c.json │ │ ├── io_uring.c.txt │ │ ├── manual.txt │ │ ├── netlink.c │ │ ├── netlink.c.info │ │ ├── netlink.c.json │ │ ├── netlink.c.txt │ │ ├── scopes.c │ │ ├── scopes.c.info │ │ ├── scopes.c.json │ │ ├── scopes.c.txt │ │ ├── syscall.c │ │ ├── syscall.c.info │ │ ├── syscall.c.json │ │ ├── syscall.c.txt │ │ ├── types.c │ │ ├── types.c.info │ │ ├── types.c.json │ │ └── types.c.txt ├── syz-diff │ ├── benchmark │ │ ├── base.cfg │ │ ├── patched_fs.cfg │ │ ├── patched_net.cfg │ │ └── run.sh │ └── diff.go ├── syz-env ├── syz-execprog │ └── execprog.go ├── syz-expand │ └── expand.go ├── syz-fillreports │ └── fillreports.go ├── syz-fix-analyzer │ └── fix-analyzer.go ├── syz-fmt │ └── syz-fmt.go ├── syz-gemini-seed │ └── gemini-seed.go ├── syz-headerparser │ ├── headerlib │ │ ├── __init__.py │ │ ├── container.py │ │ ├── header_preprocessor.py │ │ └── struct_walker.py │ ├── headerparser.py │ └── test_headers │ │ ├── th_a.h │ │ └── th_b.h ├── syz-hubtool │ └── hubtool.go ├── syz-imagegen │ ├── combinations.go │ ├── combinations_test.go │ └── imagegen.go ├── syz-kcidb │ └── kcidb.go ├── syz-kconf │ ├── kconf.go │ ├── kconf_test.go │ └── parser.go ├── syz-linter │ ├── linter.go │ ├── linter_test.go │ └── testdata │ │ └── src │ │ ├── github.com │ │ └── google │ │ │ └── syzkaller │ │ │ └── pkg │ │ │ └── tool │ │ │ └── tool.go │ │ └── lintertest │ │ └── lintertest.go ├── syz-lore │ └── query_lkml.go ├── syz-make │ └── make.go ├── syz-minconfig │ └── minconfig.go ├── syz-mutate │ └── mutate.go ├── syz-old-env ├── syz-prog2c │ └── prog2c.go ├── syz-query-subsystems │ ├── generator.go │ └── query_subsystems.go ├── syz-reporter │ └── reporter.go ├── syz-repro │ └── repro.go ├── syz-reproducers.sh ├── syz-showprio │ └── showprio.go ├── syz-symbolize │ └── symbolize.go ├── syz-testbed │ ├── checkout.go │ ├── html.go │ ├── instance.go │ ├── stats.go │ ├── table.go │ ├── table_test.go │ ├── targets.go │ ├── templates │ │ ├── table.html │ │ └── testbed.html │ └── testbed.go ├── syz-testbuild │ └── testbuild.go ├── syz-trace2syz │ ├── parser │ │ ├── intermediate_types.go │ │ ├── lex.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── strace.go │ │ ├── strace.y │ │ └── straceLex.rl │ ├── proggen │ │ ├── call_selector.go │ │ ├── call_selector_test.go │ │ ├── fuzz.go │ │ ├── generate_unions.go │ │ ├── proggen.go │ │ ├── proggen_test.go │ │ ├── return_cache.go │ │ └── unsupported_calls.go │ └── trace2syz.go ├── syz-tty │ └── syz-tty.go ├── syz-upgrade │ └── upgrade.go └── syz-usbgen │ ├── usb_ids.patch │ └── usbgen.go └── vm ├── adb ├── adb.go └── adb_ppc64le.go ├── bhyve └── bhyve.go ├── cuttlefish └── cuttlefish.go ├── dispatcher ├── pool.go └── pool_test.go ├── gce ├── gce.go ├── tar_go1.10.go └── tar_go1.9.go ├── gvisor └── gvisor.go ├── isolated ├── isolated.go └── isolated_test.go ├── proxyapp ├── init.go ├── init_test.go ├── mocks │ ├── ProxyAppInterface.go │ └── subProcessCmd.go ├── proxyappclient.go ├── proxyappclient_mocks_test.go ├── proxyappclient_tcp_test.go ├── proxyappclient_test.go └── proxyrpc │ └── proxyrpc.go ├── qemu ├── qemu.go ├── qmp.go ├── snapshot_linux.go └── snapshot_unimpl.go ├── starnix └── starnix.go ├── virtualbox └── virtualbox.go ├── vm.go ├── vm_test.go ├── vmimpl ├── console.go ├── console_darwin.go ├── console_freebsd.go ├── console_linux_386.go ├── console_linux_amd64.go ├── console_linux_arm.go ├── console_linux_arm64.go ├── console_linux_ppc64le.go ├── console_linux_riscv64.go ├── console_linux_s390x.go ├── console_netbsd.go ├── console_openbsd.go ├── freebsd.go ├── linux.go ├── merger.go ├── merger_test.go ├── openbsd.go ├── util.go └── vmimpl.go ├── vmm └── vmm.go └── vmware └── vmware.go /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.github/workflows/run.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.mockery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/.mockery.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/api/api.go -------------------------------------------------------------------------------- /dashboard/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/api/client.go -------------------------------------------------------------------------------- /dashboard/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/README.md -------------------------------------------------------------------------------- /dashboard/app/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/access.go -------------------------------------------------------------------------------- /dashboard/app/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/admin.go -------------------------------------------------------------------------------- /dashboard/app/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/api.go -------------------------------------------------------------------------------- /dashboard/app/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/api_test.go -------------------------------------------------------------------------------- /dashboard/app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/app.yaml -------------------------------------------------------------------------------- /dashboard/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/app_test.go -------------------------------------------------------------------------------- /dashboard/app/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/cache.go -------------------------------------------------------------------------------- /dashboard/app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/config.go -------------------------------------------------------------------------------- /dashboard/app/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/coverage.go -------------------------------------------------------------------------------- /dashboard/app/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/cron.yaml -------------------------------------------------------------------------------- /dashboard/app/fix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/fix_test.go -------------------------------------------------------------------------------- /dashboard/app/graphs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/graphs.go -------------------------------------------------------------------------------- /dashboard/app/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/handler.go -------------------------------------------------------------------------------- /dashboard/app/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/index.yaml -------------------------------------------------------------------------------- /dashboard/app/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/jobs.go -------------------------------------------------------------------------------- /dashboard/app/kcidb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/kcidb.go -------------------------------------------------------------------------------- /dashboard/app/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/label.go -------------------------------------------------------------------------------- /dashboard/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/main.go -------------------------------------------------------------------------------- /dashboard/app/static/common.js: -------------------------------------------------------------------------------- 1 | ../../../pkg/html/pages/common.js -------------------------------------------------------------------------------- /dashboard/app/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /dashboard/app/static/style.css: -------------------------------------------------------------------------------- 1 | ../../../pkg/html/pages/style.css -------------------------------------------------------------------------------- /dashboard/app/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/stats.go -------------------------------------------------------------------------------- /dashboard/app/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/dashboard/app/tree.go -------------------------------------------------------------------------------- /docs/akaros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/akaros/README.md -------------------------------------------------------------------------------- /docs/bisect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/bisect.md -------------------------------------------------------------------------------- /docs/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/ci.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/coverage.md -------------------------------------------------------------------------------- /docs/coverage_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/coverage_both.png -------------------------------------------------------------------------------- /docs/coverage_covered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/coverage_covered.png -------------------------------------------------------------------------------- /docs/darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/darwin/README.md -------------------------------------------------------------------------------- /docs/darwin/found_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/darwin/found_bugs.md -------------------------------------------------------------------------------- /docs/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/db.md -------------------------------------------------------------------------------- /docs/freebsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/freebsd/README.md -------------------------------------------------------------------------------- /docs/fuchsia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/fuchsia/README.md -------------------------------------------------------------------------------- /docs/fuchsia/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/fuchsia/setup.sh -------------------------------------------------------------------------------- /docs/gvisor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/gvisor/README.md -------------------------------------------------------------------------------- /docs/hafnium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/hafnium/README.md -------------------------------------------------------------------------------- /docs/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/hub.md -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/internals.md -------------------------------------------------------------------------------- /docs/issue_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/issue_template.txt -------------------------------------------------------------------------------- /docs/kfuzztest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/kfuzztest.md -------------------------------------------------------------------------------- /docs/linux/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/linux/coverage.md -------------------------------------------------------------------------------- /docs/linux/found_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/linux/found_bugs.md -------------------------------------------------------------------------------- /docs/linux/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/linux/internals.md -------------------------------------------------------------------------------- /docs/linux/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/linux/setup.md -------------------------------------------------------------------------------- /docs/maintaining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/maintaining.md -------------------------------------------------------------------------------- /docs/netbsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/netbsd/README.md -------------------------------------------------------------------------------- /docs/netbsd/found_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/netbsd/found_bugs.md -------------------------------------------------------------------------------- /docs/openbsd/gce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/openbsd/gce.md -------------------------------------------------------------------------------- /docs/openbsd/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/openbsd/setup.md -------------------------------------------------------------------------------- /docs/program_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/program_syntax.md -------------------------------------------------------------------------------- /docs/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/prometheus.md -------------------------------------------------------------------------------- /docs/pseudo_syscalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/pseudo_syscalls.md -------------------------------------------------------------------------------- /docs/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/research.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/setup_syzbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/setup_syzbot.md -------------------------------------------------------------------------------- /docs/starnix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/starnix/README.md -------------------------------------------------------------------------------- /docs/strace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/strace.md -------------------------------------------------------------------------------- /docs/syz-kfuzztest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/syz-kfuzztest.md -------------------------------------------------------------------------------- /docs/syz_testbed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/syz_testbed.md -------------------------------------------------------------------------------- /docs/syz_verifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/syz_verifier.md -------------------------------------------------------------------------------- /docs/syzbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/syzbot.md -------------------------------------------------------------------------------- /docs/syzbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/syzbot.png -------------------------------------------------------------------------------- /docs/syzbot_assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/syzbot_assets.md -------------------------------------------------------------------------------- /docs/talks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/talks.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/trusty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/trusty/README.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/docs/windows/README.md -------------------------------------------------------------------------------- /executor/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common.h -------------------------------------------------------------------------------- /executor/common_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_bsd.h -------------------------------------------------------------------------------- /executor/common_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_ext.h -------------------------------------------------------------------------------- /executor/common_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_fuchsia.h -------------------------------------------------------------------------------- /executor/common_kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_kvm.h -------------------------------------------------------------------------------- /executor/common_kvm_386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_kvm_386.h -------------------------------------------------------------------------------- /executor/common_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_linux.h -------------------------------------------------------------------------------- /executor/common_openbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_openbsd.h -------------------------------------------------------------------------------- /executor/common_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_test.h -------------------------------------------------------------------------------- /executor/common_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_usb.h -------------------------------------------------------------------------------- /executor/common_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_windows.h -------------------------------------------------------------------------------- /executor/common_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/common_zlib.h -------------------------------------------------------------------------------- /executor/conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/conn.h -------------------------------------------------------------------------------- /executor/cover_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/cover_filter.h -------------------------------------------------------------------------------- /executor/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/embed.go -------------------------------------------------------------------------------- /executor/executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/executor.cc -------------------------------------------------------------------------------- /executor/executor_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/executor_bsd.h -------------------------------------------------------------------------------- /executor/executor_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/executor_linux.h -------------------------------------------------------------------------------- /executor/executor_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/executor_test.h -------------------------------------------------------------------------------- /executor/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/files.h -------------------------------------------------------------------------------- /executor/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/kvm.h -------------------------------------------------------------------------------- /executor/kvm_amd64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/kvm_amd64.S -------------------------------------------------------------------------------- /executor/kvm_amd64.S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/kvm_amd64.S.h -------------------------------------------------------------------------------- /executor/kvm_gen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/kvm_gen.cc -------------------------------------------------------------------------------- /executor/kvm_ppc64le.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/kvm_ppc64le.S -------------------------------------------------------------------------------- /executor/kvm_ppc64le.S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/kvm_ppc64le.S.h -------------------------------------------------------------------------------- /executor/nocover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/nocover.h -------------------------------------------------------------------------------- /executor/shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/shmem.h -------------------------------------------------------------------------------- /executor/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/snapshot.h -------------------------------------------------------------------------------- /executor/style_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/style_test.go -------------------------------------------------------------------------------- /executor/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/subprocess.h -------------------------------------------------------------------------------- /executor/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/test.h -------------------------------------------------------------------------------- /executor/test_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/executor/test_linux.h -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/asset/backend_gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/asset/backend_gcs.go -------------------------------------------------------------------------------- /pkg/asset/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/asset/config.go -------------------------------------------------------------------------------- /pkg/asset/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/asset/storage.go -------------------------------------------------------------------------------- /pkg/asset/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/asset/storage_test.go -------------------------------------------------------------------------------- /pkg/asset/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/asset/type.go -------------------------------------------------------------------------------- /pkg/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/ast.go -------------------------------------------------------------------------------- /pkg/ast/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/clone.go -------------------------------------------------------------------------------- /pkg/ast/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/filter.go -------------------------------------------------------------------------------- /pkg/ast/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/format.go -------------------------------------------------------------------------------- /pkg/ast/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/parser.go -------------------------------------------------------------------------------- /pkg/ast/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/parser_test.go -------------------------------------------------------------------------------- /pkg/ast/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/scanner.go -------------------------------------------------------------------------------- /pkg/ast/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/test_util.go -------------------------------------------------------------------------------- /pkg/ast/testdata/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/testdata/all.txt -------------------------------------------------------------------------------- /pkg/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ast/walk.go -------------------------------------------------------------------------------- /pkg/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/auth/auth.go -------------------------------------------------------------------------------- /pkg/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/auth/auth_test.go -------------------------------------------------------------------------------- /pkg/auth/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/auth/jwt.go -------------------------------------------------------------------------------- /pkg/bisect/bisect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/bisect/bisect.go -------------------------------------------------------------------------------- /pkg/bisect/bisect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/bisect/bisect_test.go -------------------------------------------------------------------------------- /pkg/build/android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/android.go -------------------------------------------------------------------------------- /pkg/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/build.go -------------------------------------------------------------------------------- /pkg/build/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/build_test.go -------------------------------------------------------------------------------- /pkg/build/cuttlefish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/cuttlefish.go -------------------------------------------------------------------------------- /pkg/build/darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/darwin.go -------------------------------------------------------------------------------- /pkg/build/freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/freebsd.go -------------------------------------------------------------------------------- /pkg/build/fuchsia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/fuchsia.go -------------------------------------------------------------------------------- /pkg/build/gvisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/gvisor.go -------------------------------------------------------------------------------- /pkg/build/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/linux.go -------------------------------------------------------------------------------- /pkg/build/linux_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/linux_gen.sh -------------------------------------------------------------------------------- /pkg/build/linux_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/linux_linux.go -------------------------------------------------------------------------------- /pkg/build/linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/linux_test.go -------------------------------------------------------------------------------- /pkg/build/netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/netbsd.go -------------------------------------------------------------------------------- /pkg/build/openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/openbsd.go -------------------------------------------------------------------------------- /pkg/build/starnix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/starnix.go -------------------------------------------------------------------------------- /pkg/build/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/build/test.go -------------------------------------------------------------------------------- /pkg/compiler/attrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/attrs.go -------------------------------------------------------------------------------- /pkg/compiler/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/check.go -------------------------------------------------------------------------------- /pkg/compiler/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/compiler.go -------------------------------------------------------------------------------- /pkg/compiler/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/consts.go -------------------------------------------------------------------------------- /pkg/compiler/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/fuzz.go -------------------------------------------------------------------------------- /pkg/compiler/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/gen.go -------------------------------------------------------------------------------- /pkg/compiler/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/meta.go -------------------------------------------------------------------------------- /pkg/compiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/compiler/types.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/config/merge.go -------------------------------------------------------------------------------- /pkg/config/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/config/merge_test.go -------------------------------------------------------------------------------- /pkg/corpus/corpus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/corpus/corpus.go -------------------------------------------------------------------------------- /pkg/corpus/corpus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/corpus/corpus_test.go -------------------------------------------------------------------------------- /pkg/corpus/minimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/corpus/minimize.go -------------------------------------------------------------------------------- /pkg/corpus/prio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/corpus/prio.go -------------------------------------------------------------------------------- /pkg/corpus/prio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/corpus/prio_test.go -------------------------------------------------------------------------------- /pkg/cover/backend/elf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/backend/elf.go -------------------------------------------------------------------------------- /pkg/cover/backend/pc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/backend/pc.go -------------------------------------------------------------------------------- /pkg/cover/cover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/cover.go -------------------------------------------------------------------------------- /pkg/cover/cover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/cover_test.go -------------------------------------------------------------------------------- /pkg/cover/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/file.go -------------------------------------------------------------------------------- /pkg/cover/heatmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/heatmap.go -------------------------------------------------------------------------------- /pkg/cover/heatmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/heatmap_test.go -------------------------------------------------------------------------------- /pkg/cover/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/html.go -------------------------------------------------------------------------------- /pkg/cover/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/report.go -------------------------------------------------------------------------------- /pkg/cover/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/cover/report_test.go -------------------------------------------------------------------------------- /pkg/coveragedb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/coveragedb/README.md -------------------------------------------------------------------------------- /pkg/coveragedb/init_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/coveragedb/init_db.sh -------------------------------------------------------------------------------- /pkg/covermerger/testdata/integration/all/test-workdir-covermerger/repos/commit2/delete_code.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/csource/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/build.go -------------------------------------------------------------------------------- /pkg/csource/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/common.go -------------------------------------------------------------------------------- /pkg/csource/csource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/csource.go -------------------------------------------------------------------------------- /pkg/csource/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/options.go -------------------------------------------------------------------------------- /pkg/csource/testdata/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/testdata/0 -------------------------------------------------------------------------------- /pkg/csource/testdata/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/testdata/1 -------------------------------------------------------------------------------- /pkg/csource/testdata/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/csource/testdata/2 -------------------------------------------------------------------------------- /pkg/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/db/db.go -------------------------------------------------------------------------------- /pkg/db/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/db/db_test.go -------------------------------------------------------------------------------- /pkg/debugtracer/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/debugtracer/debug.go -------------------------------------------------------------------------------- /pkg/declextract/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/declextract/entity.go -------------------------------------------------------------------------------- /pkg/declextract/typing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/declextract/typing.go -------------------------------------------------------------------------------- /pkg/email/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/action.go -------------------------------------------------------------------------------- /pkg/email/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/action_test.go -------------------------------------------------------------------------------- /pkg/email/lore/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/lore/parse.go -------------------------------------------------------------------------------- /pkg/email/lore/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/lore/read.go -------------------------------------------------------------------------------- /pkg/email/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/parser.go -------------------------------------------------------------------------------- /pkg/email/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/parser_test.go -------------------------------------------------------------------------------- /pkg/email/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/patch.go -------------------------------------------------------------------------------- /pkg/email/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/patch_test.go -------------------------------------------------------------------------------- /pkg/email/reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/reply.go -------------------------------------------------------------------------------- /pkg/email/reply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/email/reply_test.go -------------------------------------------------------------------------------- /pkg/flatrpc/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/flatrpc/conn.go -------------------------------------------------------------------------------- /pkg/flatrpc/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/flatrpc/conn_test.go -------------------------------------------------------------------------------- /pkg/flatrpc/flatrpc.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/flatrpc/flatrpc.fbs -------------------------------------------------------------------------------- /pkg/flatrpc/flatrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/flatrpc/flatrpc.go -------------------------------------------------------------------------------- /pkg/flatrpc/flatrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/flatrpc/flatrpc.h -------------------------------------------------------------------------------- /pkg/flatrpc/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/flatrpc/helpers.go -------------------------------------------------------------------------------- /pkg/fuzzer/cover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/cover.go -------------------------------------------------------------------------------- /pkg/fuzzer/fuzzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/fuzzer.go -------------------------------------------------------------------------------- /pkg/fuzzer/fuzzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/fuzzer_test.go -------------------------------------------------------------------------------- /pkg/fuzzer/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/job.go -------------------------------------------------------------------------------- /pkg/fuzzer/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/job_test.go -------------------------------------------------------------------------------- /pkg/fuzzer/queue/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/queue/queue.go -------------------------------------------------------------------------------- /pkg/fuzzer/queue/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/queue/retry.go -------------------------------------------------------------------------------- /pkg/fuzzer/queue/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/queue/stats.go -------------------------------------------------------------------------------- /pkg/fuzzer/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/fuzzer/stats.go -------------------------------------------------------------------------------- /pkg/gce/gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/gce/gce.go -------------------------------------------------------------------------------- /pkg/gce/gce_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/gce/gce_test.go -------------------------------------------------------------------------------- /pkg/gcpsecret/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/gcpsecret/secret.go -------------------------------------------------------------------------------- /pkg/gcs/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/gcs/gcs.go -------------------------------------------------------------------------------- /pkg/gcs/mocks/Client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/gcs/mocks/Client.go -------------------------------------------------------------------------------- /pkg/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/hash/hash.go -------------------------------------------------------------------------------- /pkg/html/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/html.go -------------------------------------------------------------------------------- /pkg/html/pages/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/pages/common.js -------------------------------------------------------------------------------- /pkg/html/pages/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/pages/pages.go -------------------------------------------------------------------------------- /pkg/html/pages/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/pages/stats.go -------------------------------------------------------------------------------- /pkg/html/pages/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/pages/stats.html -------------------------------------------------------------------------------- /pkg/html/pages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/pages/style.css -------------------------------------------------------------------------------- /pkg/html/urlutil/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/html/urlutil/urls.go -------------------------------------------------------------------------------- /pkg/ifuzz/arm64/arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/arm64/arm64.go -------------------------------------------------------------------------------- /pkg/ifuzz/arm64/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/arm64/pseudo.go -------------------------------------------------------------------------------- /pkg/ifuzz/arm64/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/arm64/util.go -------------------------------------------------------------------------------- /pkg/ifuzz/arm64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/arm64_test.go -------------------------------------------------------------------------------- /pkg/ifuzz/ifuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/ifuzz.go -------------------------------------------------------------------------------- /pkg/ifuzz/ifuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/ifuzz_test.go -------------------------------------------------------------------------------- /pkg/ifuzz/iset/iset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/iset/iset.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86/decode.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86/encode.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86/gen/gen.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86/pseudo.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86/x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86/x86.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86/xed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86/xed.go -------------------------------------------------------------------------------- /pkg/ifuzz/x86_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/ifuzz/x86_test.go -------------------------------------------------------------------------------- /pkg/image/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/image/compression.go -------------------------------------------------------------------------------- /pkg/image/fsck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/image/fsck.go -------------------------------------------------------------------------------- /pkg/image/fsck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/image/fsck_test.go -------------------------------------------------------------------------------- /pkg/instance/execprog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/instance/execprog.go -------------------------------------------------------------------------------- /pkg/instance/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/instance/instance.go -------------------------------------------------------------------------------- /pkg/kcidb/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kcidb/client.go -------------------------------------------------------------------------------- /pkg/kcidb/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kcidb/schema.go -------------------------------------------------------------------------------- /pkg/kconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/config.go -------------------------------------------------------------------------------- /pkg/kconfig/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/expr.go -------------------------------------------------------------------------------- /pkg/kconfig/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/expr_test.go -------------------------------------------------------------------------------- /pkg/kconfig/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/fuzz.go -------------------------------------------------------------------------------- /pkg/kconfig/kconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/kconfig.go -------------------------------------------------------------------------------- /pkg/kconfig/minimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/minimize.go -------------------------------------------------------------------------------- /pkg/kconfig/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kconfig/parser.go -------------------------------------------------------------------------------- /pkg/kcov/cdefs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kcov/cdefs.go -------------------------------------------------------------------------------- /pkg/kcov/kcov.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kcov/kcov.go -------------------------------------------------------------------------------- /pkg/kd/kd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kd/kd.go -------------------------------------------------------------------------------- /pkg/kd/kd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kd/kd_test.go -------------------------------------------------------------------------------- /pkg/kfuzztest/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kfuzztest/builder.go -------------------------------------------------------------------------------- /pkg/kfuzztest/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | *bin 2 | -------------------------------------------------------------------------------- /pkg/kfuzztest/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/kfuzztest/types.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/log/log_test.go -------------------------------------------------------------------------------- /pkg/manager/covfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/covfilter.go -------------------------------------------------------------------------------- /pkg/manager/crash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/crash.go -------------------------------------------------------------------------------- /pkg/manager/crash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/crash_test.go -------------------------------------------------------------------------------- /pkg/manager/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/diff.go -------------------------------------------------------------------------------- /pkg/manager/diff_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/diff_store.go -------------------------------------------------------------------------------- /pkg/manager/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/diff_test.go -------------------------------------------------------------------------------- /pkg/manager/html/vms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/html/vms.html -------------------------------------------------------------------------------- /pkg/manager/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/http.go -------------------------------------------------------------------------------- /pkg/manager/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/http_test.go -------------------------------------------------------------------------------- /pkg/manager/repro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/repro.go -------------------------------------------------------------------------------- /pkg/manager/repro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/repro_test.go -------------------------------------------------------------------------------- /pkg/manager/seeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/seeds.go -------------------------------------------------------------------------------- /pkg/manager/seeds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/manager/seeds_test.go -------------------------------------------------------------------------------- /pkg/mgrconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/mgrconfig/config.go -------------------------------------------------------------------------------- /pkg/mgrconfig/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/mgrconfig/load.go -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/disk.raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/syzkaller/bin/linux_amd64/syz-execprog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/syzkaller/bin/linux_amd64/syz-executor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/syzkaller/bin/linux_amd64/syz-fuzzer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/syzkaller/bin/windows_amd64/syz-execprog.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/syzkaller/bin/windows_amd64/syz-executor.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/syzkaller/bin/windows_amd64/syz-fuzzer.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/mgrconfig/testdata/wheezy.img: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/osutil/fileutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/fileutil.go -------------------------------------------------------------------------------- /pkg/osutil/osutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/osutil.go -------------------------------------------------------------------------------- /pkg/osutil/osutil_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/osutil_bsd.go -------------------------------------------------------------------------------- /pkg/osutil/osutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/osutil_test.go -------------------------------------------------------------------------------- /pkg/osutil/osutil_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/osutil_unix.go -------------------------------------------------------------------------------- /pkg/osutil/semaphore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/semaphore.go -------------------------------------------------------------------------------- /pkg/osutil/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/tar.go -------------------------------------------------------------------------------- /pkg/osutil/tar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/osutil/tar_test.go -------------------------------------------------------------------------------- /pkg/report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/README.md -------------------------------------------------------------------------------- /pkg/report/bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/bsd.go -------------------------------------------------------------------------------- /pkg/report/bsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/bsd_test.go -------------------------------------------------------------------------------- /pkg/report/crash/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/crash/types.go -------------------------------------------------------------------------------- /pkg/report/darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/darwin.go -------------------------------------------------------------------------------- /pkg/report/decompile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/decompile.go -------------------------------------------------------------------------------- /pkg/report/freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/freebsd.go -------------------------------------------------------------------------------- /pkg/report/fuchsia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/fuchsia.go -------------------------------------------------------------------------------- /pkg/report/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/fuzz.go -------------------------------------------------------------------------------- /pkg/report/gvisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/gvisor.go -------------------------------------------------------------------------------- /pkg/report/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/linux.go -------------------------------------------------------------------------------- /pkg/report/linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/linux_test.go -------------------------------------------------------------------------------- /pkg/report/netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/netbsd.go -------------------------------------------------------------------------------- /pkg/report/netbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/netbsd_test.go -------------------------------------------------------------------------------- /pkg/report/openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/openbsd.go -------------------------------------------------------------------------------- /pkg/report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/report.go -------------------------------------------------------------------------------- /pkg/report/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/report_test.go -------------------------------------------------------------------------------- /pkg/report/stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/stub.go -------------------------------------------------------------------------------- /pkg/report/testdata/linux/report/2: -------------------------------------------------------------------------------- 1 | 2 | [901320.960000] INFO: lockdep is turned off. 3 | -------------------------------------------------------------------------------- /pkg/report/testdata/linux/report/685: -------------------------------------------------------------------------------- 1 | 2 | VFS: some message that is not an error 3 | -------------------------------------------------------------------------------- /pkg/report/title_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/report/title_stat.go -------------------------------------------------------------------------------- /pkg/repro/repro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/repro/repro.go -------------------------------------------------------------------------------- /pkg/repro/repro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/repro/repro_test.go -------------------------------------------------------------------------------- /pkg/repro/strace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/repro/strace.go -------------------------------------------------------------------------------- /pkg/rpcserver/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/rpcserver/local.go -------------------------------------------------------------------------------- /pkg/rpcserver/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/rpcserver/runner.go -------------------------------------------------------------------------------- /pkg/rpctype/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/rpctype/rpc.go -------------------------------------------------------------------------------- /pkg/rpctype/rpctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/rpctype/rpctype.go -------------------------------------------------------------------------------- /pkg/runtest/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/runtest/run.go -------------------------------------------------------------------------------- /pkg/runtest/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/runtest/run_test.go -------------------------------------------------------------------------------- /pkg/signal/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/signal/signal.go -------------------------------------------------------------------------------- /pkg/signal/signal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/signal/signal_test.go -------------------------------------------------------------------------------- /pkg/stat/avg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/stat/avg.go -------------------------------------------------------------------------------- /pkg/stat/sample/pvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/stat/sample/pvalue.go -------------------------------------------------------------------------------- /pkg/stat/sample/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/stat/sample/sample.go -------------------------------------------------------------------------------- /pkg/stat/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/stat/set.go -------------------------------------------------------------------------------- /pkg/stat/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/stat/set_test.go -------------------------------------------------------------------------------- /pkg/subsystem/entities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/subsystem/entities.go -------------------------------------------------------------------------------- /pkg/subsystem/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/subsystem/list.go -------------------------------------------------------------------------------- /pkg/subsystem/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/subsystem/match.go -------------------------------------------------------------------------------- /pkg/subsystem/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/subsystem/service.go -------------------------------------------------------------------------------- /pkg/symbolizer/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/symbolizer/cache.go -------------------------------------------------------------------------------- /pkg/symbolizer/nm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/symbolizer/nm.go -------------------------------------------------------------------------------- /pkg/symbolizer/nm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/symbolizer/nm_test.go -------------------------------------------------------------------------------- /pkg/testutil/norace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/testutil/norace.go -------------------------------------------------------------------------------- /pkg/testutil/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/testutil/race.go -------------------------------------------------------------------------------- /pkg/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/testutil/testutil.go -------------------------------------------------------------------------------- /pkg/tool/cmdprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/tool/cmdprof.go -------------------------------------------------------------------------------- /pkg/tool/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/tool/flags.go -------------------------------------------------------------------------------- /pkg/tool/flags_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/tool/flags_fuzz.go -------------------------------------------------------------------------------- /pkg/tool/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/tool/flags_test.go -------------------------------------------------------------------------------- /pkg/tool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/tool/tool.go -------------------------------------------------------------------------------- /pkg/updater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/updater/updater.go -------------------------------------------------------------------------------- /pkg/vcs/fuchsia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/fuchsia.go -------------------------------------------------------------------------------- /pkg/vcs/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/git.go -------------------------------------------------------------------------------- /pkg/vcs/git_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/git_repo_test.go -------------------------------------------------------------------------------- /pkg/vcs/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/git_test.go -------------------------------------------------------------------------------- /pkg/vcs/git_test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/git_test_util.go -------------------------------------------------------------------------------- /pkg/vcs/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/linux.go -------------------------------------------------------------------------------- /pkg/vcs/linux_configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/linux_configs.go -------------------------------------------------------------------------------- /pkg/vcs/linux_patches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/linux_patches.go -------------------------------------------------------------------------------- /pkg/vcs/linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/linux_test.go -------------------------------------------------------------------------------- /pkg/vcs/testos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/testos.go -------------------------------------------------------------------------------- /pkg/vcs/vcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/vcs.go -------------------------------------------------------------------------------- /pkg/vcs/vcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vcs/vcs_test.go -------------------------------------------------------------------------------- /pkg/vminfo/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/features.go -------------------------------------------------------------------------------- /pkg/vminfo/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/linux.go -------------------------------------------------------------------------------- /pkg/vminfo/linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/linux_test.go -------------------------------------------------------------------------------- /pkg/vminfo/netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/netbsd.go -------------------------------------------------------------------------------- /pkg/vminfo/openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/openbsd.go -------------------------------------------------------------------------------- /pkg/vminfo/syscalls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/syscalls.go -------------------------------------------------------------------------------- /pkg/vminfo/vminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/vminfo.go -------------------------------------------------------------------------------- /pkg/vminfo/vminfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/pkg/vminfo/vminfo_test.go -------------------------------------------------------------------------------- /prog/alloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/alloc.go -------------------------------------------------------------------------------- /prog/alloc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/alloc_test.go -------------------------------------------------------------------------------- /prog/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/analysis.go -------------------------------------------------------------------------------- /prog/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/any.go -------------------------------------------------------------------------------- /prog/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/any_test.go -------------------------------------------------------------------------------- /prog/big_endian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/big_endian.go -------------------------------------------------------------------------------- /prog/checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/checksum.go -------------------------------------------------------------------------------- /prog/checksum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/checksum_test.go -------------------------------------------------------------------------------- /prog/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/clone.go -------------------------------------------------------------------------------- /prog/collide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/collide.go -------------------------------------------------------------------------------- /prog/collide_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/collide_test.go -------------------------------------------------------------------------------- /prog/decodeexec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/decodeexec.go -------------------------------------------------------------------------------- /prog/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/encoding.go -------------------------------------------------------------------------------- /prog/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/encoding_test.go -------------------------------------------------------------------------------- /prog/encodingexec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/encodingexec.go -------------------------------------------------------------------------------- /prog/encodingexec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/encodingexec_test.go -------------------------------------------------------------------------------- /prog/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/export_test.go -------------------------------------------------------------------------------- /prog/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/expr.go -------------------------------------------------------------------------------- /prog/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/expr_test.go -------------------------------------------------------------------------------- /prog/generation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/generation.go -------------------------------------------------------------------------------- /prog/heatmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/heatmap.go -------------------------------------------------------------------------------- /prog/heatmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/heatmap_test.go -------------------------------------------------------------------------------- /prog/hints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/hints.go -------------------------------------------------------------------------------- /prog/hints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/hints_test.go -------------------------------------------------------------------------------- /prog/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/images_test.go -------------------------------------------------------------------------------- /prog/kfuzztest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/kfuzztest.go -------------------------------------------------------------------------------- /prog/kfuzztest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/kfuzztest_test.go -------------------------------------------------------------------------------- /prog/little_endian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/little_endian.go -------------------------------------------------------------------------------- /prog/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/meta.go -------------------------------------------------------------------------------- /prog/minimization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/minimization.go -------------------------------------------------------------------------------- /prog/minimization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/minimization_test.go -------------------------------------------------------------------------------- /prog/mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/mutation.go -------------------------------------------------------------------------------- /prog/mutation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/mutation_test.go -------------------------------------------------------------------------------- /prog/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/parse.go -------------------------------------------------------------------------------- /prog/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/parse_test.go -------------------------------------------------------------------------------- /prog/prio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/prio.go -------------------------------------------------------------------------------- /prog/prio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/prio_test.go -------------------------------------------------------------------------------- /prog/prog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/prog.go -------------------------------------------------------------------------------- /prog/prog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/prog_test.go -------------------------------------------------------------------------------- /prog/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/rand.go -------------------------------------------------------------------------------- /prog/rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/rand_test.go -------------------------------------------------------------------------------- /prog/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/resources.go -------------------------------------------------------------------------------- /prog/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/resources_test.go -------------------------------------------------------------------------------- /prog/rotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/rotation.go -------------------------------------------------------------------------------- /prog/rotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/rotation_test.go -------------------------------------------------------------------------------- /prog/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/size.go -------------------------------------------------------------------------------- /prog/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/size_test.go -------------------------------------------------------------------------------- /prog/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/target.go -------------------------------------------------------------------------------- /prog/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/target_test.go -------------------------------------------------------------------------------- /prog/test/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/test/fuzz.go -------------------------------------------------------------------------------- /prog/test/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/test/fuzz_test.go -------------------------------------------------------------------------------- /prog/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/test_util.go -------------------------------------------------------------------------------- /prog/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/types.go -------------------------------------------------------------------------------- /prog/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/prog/validation.go -------------------------------------------------------------------------------- /sys/darwin/fh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/fh.txt -------------------------------------------------------------------------------- /sys/darwin/fh.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/fh.txt.const -------------------------------------------------------------------------------- /sys/darwin/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/init.go -------------------------------------------------------------------------------- /sys/darwin/ipc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/ipc.txt -------------------------------------------------------------------------------- /sys/darwin/ipc.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/ipc.txt.const -------------------------------------------------------------------------------- /sys/darwin/kqueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/kqueue.txt -------------------------------------------------------------------------------- /sys/darwin/pf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/pf.txt -------------------------------------------------------------------------------- /sys/darwin/pf.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/pf.txt.const -------------------------------------------------------------------------------- /sys/darwin/posix_fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/posix_fs.txt -------------------------------------------------------------------------------- /sys/darwin/posix_mm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/posix_mm.txt -------------------------------------------------------------------------------- /sys/darwin/socket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/socket.txt -------------------------------------------------------------------------------- /sys/darwin/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/sys.txt -------------------------------------------------------------------------------- /sys/darwin/sys.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/sys.txt.const -------------------------------------------------------------------------------- /sys/darwin/vnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/darwin/vnet.txt -------------------------------------------------------------------------------- /sys/darwin/vnet.txt.const: -------------------------------------------------------------------------------- 1 | # Code generated by syz-sysgen. DO NOT EDIT. 2 | arches = amd64 3 | -------------------------------------------------------------------------------- /sys/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/empty.go -------------------------------------------------------------------------------- /sys/freebsd/aio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/aio.txt -------------------------------------------------------------------------------- /sys/freebsd/aio.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/aio.txt.const -------------------------------------------------------------------------------- /sys/freebsd/amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/amd64.txt -------------------------------------------------------------------------------- /sys/freebsd/capsicum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/capsicum.txt -------------------------------------------------------------------------------- /sys/freebsd/cpuset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/cpuset.txt -------------------------------------------------------------------------------- /sys/freebsd/dev_bpf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/dev_bpf.txt -------------------------------------------------------------------------------- /sys/freebsd/dev_kbd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/dev_kbd.txt -------------------------------------------------------------------------------- /sys/freebsd/dev_md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/dev_md.txt -------------------------------------------------------------------------------- /sys/freebsd/dev_smbus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/dev_smbus.txt -------------------------------------------------------------------------------- /sys/freebsd/efidev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/efidev.txt -------------------------------------------------------------------------------- /sys/freebsd/evdev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/evdev.txt -------------------------------------------------------------------------------- /sys/freebsd/extattr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/extattr.txt -------------------------------------------------------------------------------- /sys/freebsd/fh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/fh.txt -------------------------------------------------------------------------------- /sys/freebsd/fh.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/fh.txt.const -------------------------------------------------------------------------------- /sys/freebsd/filemon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/filemon.txt -------------------------------------------------------------------------------- /sys/freebsd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/init.go -------------------------------------------------------------------------------- /sys/freebsd/inotify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/inotify.txt -------------------------------------------------------------------------------- /sys/freebsd/ipc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/ipc.txt -------------------------------------------------------------------------------- /sys/freebsd/ipc.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/ipc.txt.const -------------------------------------------------------------------------------- /sys/freebsd/kmq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/kmq.txt -------------------------------------------------------------------------------- /sys/freebsd/kmq.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/kmq.txt.const -------------------------------------------------------------------------------- /sys/freebsd/kqueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/kqueue.txt -------------------------------------------------------------------------------- /sys/freebsd/ksem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/ksem.txt -------------------------------------------------------------------------------- /sys/freebsd/ktimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/ktimer.txt -------------------------------------------------------------------------------- /sys/freebsd/ktrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/ktrace.txt -------------------------------------------------------------------------------- /sys/freebsd/pf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/pf.txt -------------------------------------------------------------------------------- /sys/freebsd/pf.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/pf.txt.const -------------------------------------------------------------------------------- /sys/freebsd/posix_fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/posix_fs.txt -------------------------------------------------------------------------------- /sys/freebsd/posix_mm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/posix_mm.txt -------------------------------------------------------------------------------- /sys/freebsd/procctl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/procctl.txt -------------------------------------------------------------------------------- /sys/freebsd/socket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/socket.txt -------------------------------------------------------------------------------- /sys/freebsd/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/sys.txt -------------------------------------------------------------------------------- /sys/freebsd/sys.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/sys.txt.const -------------------------------------------------------------------------------- /sys/freebsd/vnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/freebsd/vnet.txt -------------------------------------------------------------------------------- /sys/fuchsia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/README.md -------------------------------------------------------------------------------- /sys/fuchsia/bti.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/bti.txt -------------------------------------------------------------------------------- /sys/fuchsia/cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/cache.txt -------------------------------------------------------------------------------- /sys/fuchsia/channel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/channel.txt -------------------------------------------------------------------------------- /sys/fuchsia/clock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/clock.txt -------------------------------------------------------------------------------- /sys/fuchsia/cprng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/cprng.txt -------------------------------------------------------------------------------- /sys/fuchsia/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/debug.txt -------------------------------------------------------------------------------- /sys/fuchsia/debuglog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/debuglog.txt -------------------------------------------------------------------------------- /sys/fuchsia/event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/event.txt -------------------------------------------------------------------------------- /sys/fuchsia/eventpair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/eventpair.txt -------------------------------------------------------------------------------- /sys/fuchsia/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/exception.txt -------------------------------------------------------------------------------- /sys/fuchsia/fidl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/fidl.txt -------------------------------------------------------------------------------- /sys/fuchsia/fifo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/fifo.txt -------------------------------------------------------------------------------- /sys/fuchsia/fuchsia_ldsvc.syz_amd64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_CHANNEL_MAX_MSG_BYTES = 65536 3 | -------------------------------------------------------------------------------- /sys/fuchsia/fuchsia_ldsvc.syz_arm64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_CHANNEL_MAX_MSG_BYTES = 65536 3 | -------------------------------------------------------------------------------- /sys/fuchsia/fuchsia_scpi.syz_amd64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_CHANNEL_MAX_MSG_BYTES = 65536 3 | -------------------------------------------------------------------------------- /sys/fuchsia/fuchsia_scpi.syz_arm64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_CHANNEL_MAX_MSG_BYTES = 65536 3 | -------------------------------------------------------------------------------- /sys/fuchsia/futex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/futex.txt -------------------------------------------------------------------------------- /sys/fuchsia/guest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/guest.txt -------------------------------------------------------------------------------- /sys/fuchsia/handle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/handle.txt -------------------------------------------------------------------------------- /sys/fuchsia/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/init.go -------------------------------------------------------------------------------- /sys/fuchsia/interrupt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/interrupt.txt -------------------------------------------------------------------------------- /sys/fuchsia/iommu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/iommu.txt -------------------------------------------------------------------------------- /sys/fuchsia/ioports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/ioports.txt -------------------------------------------------------------------------------- /sys/fuchsia/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/job.txt -------------------------------------------------------------------------------- /sys/fuchsia/ktrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/ktrace.txt -------------------------------------------------------------------------------- /sys/fuchsia/log_amd64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_LOG_FLAG_READABLE = 1073741824 3 | -------------------------------------------------------------------------------- /sys/fuchsia/log_arm64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_LOG_FLAG_READABLE = 1073741824 3 | -------------------------------------------------------------------------------- /sys/fuchsia/misc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/misc.txt -------------------------------------------------------------------------------- /sys/fuchsia/msi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/msi.txt -------------------------------------------------------------------------------- /sys/fuchsia/mtrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/mtrace.txt -------------------------------------------------------------------------------- /sys/fuchsia/object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/object.txt -------------------------------------------------------------------------------- /sys/fuchsia/pager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/pager.txt -------------------------------------------------------------------------------- /sys/fuchsia/pc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/pc.txt -------------------------------------------------------------------------------- /sys/fuchsia/pmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/pmt.txt -------------------------------------------------------------------------------- /sys/fuchsia/port.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/port.txt -------------------------------------------------------------------------------- /sys/fuchsia/port_amd64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_PKT_TYPE_USER = 0 3 | -------------------------------------------------------------------------------- /sys/fuchsia/port_arm64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_PKT_TYPE_USER = 0 3 | -------------------------------------------------------------------------------- /sys/fuchsia/posix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/posix.txt -------------------------------------------------------------------------------- /sys/fuchsia/processes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/processes.txt -------------------------------------------------------------------------------- /sys/fuchsia/profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/profile.txt -------------------------------------------------------------------------------- /sys/fuchsia/resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/resource.txt -------------------------------------------------------------------------------- /sys/fuchsia/restricted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/restricted -------------------------------------------------------------------------------- /sys/fuchsia/rights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/rights.txt -------------------------------------------------------------------------------- /sys/fuchsia/smc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/smc.txt -------------------------------------------------------------------------------- /sys/fuchsia/sockets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/sockets.txt -------------------------------------------------------------------------------- /sys/fuchsia/stream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/stream.txt -------------------------------------------------------------------------------- /sys/fuchsia/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/sys.txt -------------------------------------------------------------------------------- /sys/fuchsia/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/system.txt -------------------------------------------------------------------------------- /sys/fuchsia/task.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/task.txt -------------------------------------------------------------------------------- /sys/fuchsia/tasks_amd64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_EXCEPTION_CHANNEL_DEBUGGER = 1 3 | -------------------------------------------------------------------------------- /sys/fuchsia/tasks_arm64.const: -------------------------------------------------------------------------------- 1 | # AUTOGENERATED FILE 2 | ZX_EXCEPTION_CHANNEL_DEBUGGER = 1 3 | -------------------------------------------------------------------------------- /sys/fuchsia/test/cprng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/cprng -------------------------------------------------------------------------------- /sys/fuchsia/test/event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/event -------------------------------------------------------------------------------- /sys/fuchsia/test/handle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/handle -------------------------------------------------------------------------------- /sys/fuchsia/test/job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/job -------------------------------------------------------------------------------- /sys/fuchsia/test/pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/pipe -------------------------------------------------------------------------------- /sys/fuchsia/test/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/port -------------------------------------------------------------------------------- /sys/fuchsia/test/simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/simple -------------------------------------------------------------------------------- /sys/fuchsia/test/socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/socket -------------------------------------------------------------------------------- /sys/fuchsia/test/stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/stream -------------------------------------------------------------------------------- /sys/fuchsia/test/vmar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/vmar -------------------------------------------------------------------------------- /sys/fuchsia/test/vmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/test/vmo -------------------------------------------------------------------------------- /sys/fuchsia/thread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/thread.txt -------------------------------------------------------------------------------- /sys/fuchsia/timer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/timer.txt -------------------------------------------------------------------------------- /sys/fuchsia/vcpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/vcpu.txt -------------------------------------------------------------------------------- /sys/fuchsia/vmar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/vmar.txt -------------------------------------------------------------------------------- /sys/fuchsia/vmo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/fuchsia/vmo.txt -------------------------------------------------------------------------------- /sys/linux/aio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/aio.txt -------------------------------------------------------------------------------- /sys/linux/aio.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/aio.txt.const -------------------------------------------------------------------------------- /sys/linux/auto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/auto.txt -------------------------------------------------------------------------------- /sys/linux/auto.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/auto.txt.const -------------------------------------------------------------------------------- /sys/linux/auto.txt.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/auto.txt.info -------------------------------------------------------------------------------- /sys/linux/binfmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/binfmt.txt -------------------------------------------------------------------------------- /sys/linux/binfmt.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/binfmt.txt.warn -------------------------------------------------------------------------------- /sys/linux/bpf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/bpf.txt -------------------------------------------------------------------------------- /sys/linux/bpf.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/bpf.txt.const -------------------------------------------------------------------------------- /sys/linux/bpf.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/bpf.txt.warn -------------------------------------------------------------------------------- /sys/linux/bpf_prog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/bpf_prog.txt -------------------------------------------------------------------------------- /sys/linux/bpf_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/bpf_trace.txt -------------------------------------------------------------------------------- /sys/linux/cgroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/cgroup.txt -------------------------------------------------------------------------------- /sys/linux/cgroup.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: cgroup_pressure 2 | -------------------------------------------------------------------------------- /sys/linux/damon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/damon.txt -------------------------------------------------------------------------------- /sys/linux/damon.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/damon.txt.const -------------------------------------------------------------------------------- /sys/linux/damon.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/damon.txt.warn -------------------------------------------------------------------------------- /sys/linux/dev_ashmem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_ashmem.txt -------------------------------------------------------------------------------- /sys/linux/dev_bifrost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_bifrost.txt -------------------------------------------------------------------------------- /sys/linux/dev_binder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_binder.txt -------------------------------------------------------------------------------- /sys/linux/dev_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_block.txt -------------------------------------------------------------------------------- /sys/linux/dev_bsg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_bsg.txt -------------------------------------------------------------------------------- /sys/linux/dev_bus_usb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_bus_usb.txt -------------------------------------------------------------------------------- /sys/linux/dev_camx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_camx.txt -------------------------------------------------------------------------------- /sys/linux/dev_cdrom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_cdrom.txt -------------------------------------------------------------------------------- /sys/linux/dev_cec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_cec.txt -------------------------------------------------------------------------------- /sys/linux/dev_comedi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_comedi.txt -------------------------------------------------------------------------------- /sys/linux/dev_dri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_dri.txt -------------------------------------------------------------------------------- /sys/linux/dev_dsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_dsp.txt -------------------------------------------------------------------------------- /sys/linux/dev_fb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_fb.txt -------------------------------------------------------------------------------- /sys/linux/dev_floppy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_floppy.txt -------------------------------------------------------------------------------- /sys/linux/dev_hidraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_hidraw.txt -------------------------------------------------------------------------------- /sys/linux/dev_hidraw.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: hidraw_get_report_arg 2 | -------------------------------------------------------------------------------- /sys/linux/dev_i2c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_i2c.txt -------------------------------------------------------------------------------- /sys/linux/dev_i2c.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: i2c_smbus_data 2 | -------------------------------------------------------------------------------- /sys/linux/dev_i915.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_i915.txt -------------------------------------------------------------------------------- /sys/linux/dev_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_input.txt -------------------------------------------------------------------------------- /sys/linux/dev_iommu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_iommu.txt -------------------------------------------------------------------------------- /sys/linux/dev_kvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_kvm.txt -------------------------------------------------------------------------------- /sys/linux/dev_loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_loop.txt -------------------------------------------------------------------------------- /sys/linux/dev_mali.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_mali.txt -------------------------------------------------------------------------------- /sys/linux/dev_media.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_media.txt -------------------------------------------------------------------------------- /sys/linux/dev_media.txt.warn: -------------------------------------------------------------------------------- 1 | bad-field-number: media_entity_desc: syz=1 kernel=10 2 | -------------------------------------------------------------------------------- /sys/linux/dev_msm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_msm.txt -------------------------------------------------------------------------------- /sys/linux/dev_msr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_msr.txt -------------------------------------------------------------------------------- /sys/linux/dev_nbd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_nbd.txt -------------------------------------------------------------------------------- /sys/linux/dev_net_tun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_net_tun.txt -------------------------------------------------------------------------------- /sys/linux/dev_ppp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_ppp.txt -------------------------------------------------------------------------------- /sys/linux/dev_ptmx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_ptmx.txt -------------------------------------------------------------------------------- /sys/linux/dev_ptp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_ptp.txt -------------------------------------------------------------------------------- /sys/linux/dev_random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_random.txt -------------------------------------------------------------------------------- /sys/linux/dev_rfkill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_rfkill.txt -------------------------------------------------------------------------------- /sys/linux/dev_rtc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_rtc.txt -------------------------------------------------------------------------------- /sys/linux/dev_sg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_sg.txt -------------------------------------------------------------------------------- /sys/linux/dev_sg.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_sg.txt.warn -------------------------------------------------------------------------------- /sys/linux/dev_snd_hw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_snd_hw.txt -------------------------------------------------------------------------------- /sys/linux/dev_snd_pcm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_snd_pcm.txt -------------------------------------------------------------------------------- /sys/linux/dev_snd_seq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_snd_seq.txt -------------------------------------------------------------------------------- /sys/linux/dev_sr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_sr.txt -------------------------------------------------------------------------------- /sys/linux/dev_sw_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_sw_sync.txt -------------------------------------------------------------------------------- /sys/linux/dev_trusty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_trusty.txt -------------------------------------------------------------------------------- /sys/linux/dev_udmabuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_udmabuf.txt -------------------------------------------------------------------------------- /sys/linux/dev_uhid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_uhid.txt -------------------------------------------------------------------------------- /sys/linux/dev_uhid.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: uhid_req 2 | -------------------------------------------------------------------------------- /sys/linux/dev_uinput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_uinput.txt -------------------------------------------------------------------------------- /sys/linux/dev_usbmon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_usbmon.txt -------------------------------------------------------------------------------- /sys/linux/dev_usbmon.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: mon_bin_union 2 | -------------------------------------------------------------------------------- /sys/linux/dev_userio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_userio.txt -------------------------------------------------------------------------------- /sys/linux/dev_vfio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_vfio.txt -------------------------------------------------------------------------------- /sys/linux/dev_vhci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_vhci.txt -------------------------------------------------------------------------------- /sys/linux/dev_vtpm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/dev_vtpm.txt -------------------------------------------------------------------------------- /sys/linux/dev_vtpm.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: vtpm_proxy_new_dev 2 | -------------------------------------------------------------------------------- /sys/linux/fanotify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fanotify.txt -------------------------------------------------------------------------------- /sys/linux/filesystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/filesystem.txt -------------------------------------------------------------------------------- /sys/linux/fs_9p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fs_9p.txt -------------------------------------------------------------------------------- /sys/linux/fs_9p.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fs_9p.txt.const -------------------------------------------------------------------------------- /sys/linux/fs_9p.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fs_9p.txt.warn -------------------------------------------------------------------------------- /sys/linux/fs_fuse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fs_fuse.txt -------------------------------------------------------------------------------- /sys/linux/fs_incfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fs_incfs.txt -------------------------------------------------------------------------------- /sys/linux/fs_ioctl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/fs_ioctl.txt -------------------------------------------------------------------------------- /sys/linux/futex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/futex.txt -------------------------------------------------------------------------------- /sys/linux/futex.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/futex.txt.const -------------------------------------------------------------------------------- /sys/linux/hafnium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/hafnium.txt -------------------------------------------------------------------------------- /sys/linux/hafnium.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: sockaddr_hf 2 | -------------------------------------------------------------------------------- /sys/linux/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/init.go -------------------------------------------------------------------------------- /sys/linux/init_alg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/init_alg.go -------------------------------------------------------------------------------- /sys/linux/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/init_test.go -------------------------------------------------------------------------------- /sys/linux/init_vusb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/init_vusb.go -------------------------------------------------------------------------------- /sys/linux/inotify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/inotify.txt -------------------------------------------------------------------------------- /sys/linux/io_uring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/io_uring.txt -------------------------------------------------------------------------------- /sys/linux/ipc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/ipc.txt -------------------------------------------------------------------------------- /sys/linux/ipc.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/ipc.txt.const -------------------------------------------------------------------------------- /sys/linux/ipc.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/ipc.txt.warn -------------------------------------------------------------------------------- /sys/linux/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/key.txt -------------------------------------------------------------------------------- /sys/linux/key.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/key.txt.const -------------------------------------------------------------------------------- /sys/linux/key.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/key.txt.warn -------------------------------------------------------------------------------- /sys/linux/kfuzztest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/kfuzztest.txt -------------------------------------------------------------------------------- /sys/linux/l2cap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/l2cap.txt -------------------------------------------------------------------------------- /sys/linux/l2cap.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/l2cap.txt.const -------------------------------------------------------------------------------- /sys/linux/l2cap.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/l2cap.txt.warn -------------------------------------------------------------------------------- /sys/linux/landlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/landlock.txt -------------------------------------------------------------------------------- /sys/linux/lsm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/lsm.txt -------------------------------------------------------------------------------- /sys/linux/lsm.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/lsm.txt.const -------------------------------------------------------------------------------- /sys/linux/namespaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/namespaces.txt -------------------------------------------------------------------------------- /sys/linux/net_80211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/net_80211.txt -------------------------------------------------------------------------------- /sys/linux/netfilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/netfilter.txt -------------------------------------------------------------------------------- /sys/linux/perf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/perf.txt -------------------------------------------------------------------------------- /sys/linux/perf.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/perf.txt.const -------------------------------------------------------------------------------- /sys/linux/perf.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/perf.txt.warn -------------------------------------------------------------------------------- /sys/linux/prctl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/prctl.txt -------------------------------------------------------------------------------- /sys/linux/prctl.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/prctl.txt.const -------------------------------------------------------------------------------- /sys/linux/prctl.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/prctl.txt.warn -------------------------------------------------------------------------------- /sys/linux/quotactl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/quotactl.txt -------------------------------------------------------------------------------- /sys/linux/seccomp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/seccomp.txt -------------------------------------------------------------------------------- /sys/linux/socket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket.txt -------------------------------------------------------------------------------- /sys/linux/socket.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket.txt.warn -------------------------------------------------------------------------------- /sys/linux/socket_alg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_alg.txt -------------------------------------------------------------------------------- /sys/linux/socket_ax25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_ax25.txt -------------------------------------------------------------------------------- /sys/linux/socket_bluetooth.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: bdaddr_fixed 2 | -------------------------------------------------------------------------------- /sys/linux/socket_caif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_caif.txt -------------------------------------------------------------------------------- /sys/linux/socket_can.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_can.txt -------------------------------------------------------------------------------- /sys/linux/socket_inet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_inet.txt -------------------------------------------------------------------------------- /sys/linux/socket_isdn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_isdn.txt -------------------------------------------------------------------------------- /sys/linux/socket_isdn.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: capi20_command 2 | -------------------------------------------------------------------------------- /sys/linux/socket_kcm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_kcm.txt -------------------------------------------------------------------------------- /sys/linux/socket_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_key.txt -------------------------------------------------------------------------------- /sys/linux/socket_llc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_llc.txt -------------------------------------------------------------------------------- /sys/linux/socket_llc.txt.warn: -------------------------------------------------------------------------------- 1 | bad-field-number: sockaddr_llc: syz=7 kernel=8 2 | -------------------------------------------------------------------------------- /sys/linux/socket_netlink_generic.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: genlmsghdr_t 2 | -------------------------------------------------------------------------------- /sys/linux/socket_netlink_netfilter.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: netlink_msg_netfilter_tt 2 | -------------------------------------------------------------------------------- /sys/linux/socket_netlink_xfrm.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: xfrm_filter 2 | -------------------------------------------------------------------------------- /sys/linux/socket_netrom.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: address_netrom_dev 2 | -------------------------------------------------------------------------------- /sys/linux/socket_nfc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_nfc.txt -------------------------------------------------------------------------------- /sys/linux/socket_nfc.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: nfc_llcp_send_msghdr 2 | -------------------------------------------------------------------------------- /sys/linux/socket_rds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_rds.txt -------------------------------------------------------------------------------- /sys/linux/socket_rose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_rose.txt -------------------------------------------------------------------------------- /sys/linux/socket_rxrpc.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: sockaddr_rxrpc_t 2 | -------------------------------------------------------------------------------- /sys/linux/socket_tipc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_tipc.txt -------------------------------------------------------------------------------- /sys/linux/socket_unix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_unix.txt -------------------------------------------------------------------------------- /sys/linux/socket_vnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_vnet.txt -------------------------------------------------------------------------------- /sys/linux/socket_x25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_x25.txt -------------------------------------------------------------------------------- /sys/linux/socket_x25.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: x25_address_remote 2 | -------------------------------------------------------------------------------- /sys/linux/socket_xdp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/socket_xdp.txt -------------------------------------------------------------------------------- /sys/linux/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/sys.txt -------------------------------------------------------------------------------- /sys/linux/sys.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/sys.txt.const -------------------------------------------------------------------------------- /sys/linux/sys.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/sys.txt.warn -------------------------------------------------------------------------------- /sys/linux/test/80211_ibss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/80211_ibss -------------------------------------------------------------------------------- /sys/linux/test/80211_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/80211_scan -------------------------------------------------------------------------------- /sys/linux/test/binder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/binder -------------------------------------------------------------------------------- /sys/linux/test/binfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/binfmt -------------------------------------------------------------------------------- /sys/linux/test/bpf_cgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/bpf_cgroup -------------------------------------------------------------------------------- /sys/linux/test/btf_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/btf_id -------------------------------------------------------------------------------- /sys/linux/test/can: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/can -------------------------------------------------------------------------------- /sys/linux/test/caps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/caps -------------------------------------------------------------------------------- /sys/linux/test/cgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/cgroup -------------------------------------------------------------------------------- /sys/linux/test/dev_iommu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/dev_iommu -------------------------------------------------------------------------------- /sys/linux/test/execve_elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/execve_elf -------------------------------------------------------------------------------- /sys/linux/test/exit0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/exit0 -------------------------------------------------------------------------------- /sys/linux/test/exit1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/exit1 -------------------------------------------------------------------------------- /sys/linux/test/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/file -------------------------------------------------------------------------------- /sys/linux/test/gup_fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/gup_fast -------------------------------------------------------------------------------- /sys/linux/test/io_uring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/io_uring -------------------------------------------------------------------------------- /sys/linux/test/ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/ipc -------------------------------------------------------------------------------- /sys/linux/test/mmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/mmap -------------------------------------------------------------------------------- /sys/linux/test/netrom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/netrom -------------------------------------------------------------------------------- /sys/linux/test/nfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/nfc -------------------------------------------------------------------------------- /sys/linux/test/nvme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/nvme -------------------------------------------------------------------------------- /sys/linux/test/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/ping -------------------------------------------------------------------------------- /sys/linux/test/pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/pipe -------------------------------------------------------------------------------- /sys/linux/test/pkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/pkey -------------------------------------------------------------------------------- /sys/linux/test/rfkill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/rfkill -------------------------------------------------------------------------------- /sys/linux/test/sendmmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/sendmmsg -------------------------------------------------------------------------------- /sys/linux/test/syz_clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/syz_clone -------------------------------------------------------------------------------- /sys/linux/test/syz_clone3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/syz_clone3 -------------------------------------------------------------------------------- /sys/linux/test/tipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/tipc -------------------------------------------------------------------------------- /sys/linux/test/udp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/udp -------------------------------------------------------------------------------- /sys/linux/test/udp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/udp2 -------------------------------------------------------------------------------- /sys/linux/test/vhci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/vhci -------------------------------------------------------------------------------- /sys/linux/test/vnet_tun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/vnet_tun -------------------------------------------------------------------------------- /sys/linux/test/vusb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/vusb -------------------------------------------------------------------------------- /sys/linux/test/vusb_ath9k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/vusb_ath9k -------------------------------------------------------------------------------- /sys/linux/test/vusb_hid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/vusb_hid -------------------------------------------------------------------------------- /sys/linux/test/wireguard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/test/wireguard -------------------------------------------------------------------------------- /sys/linux/uffd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/uffd.txt -------------------------------------------------------------------------------- /sys/linux/uffd.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/uffd.txt.const -------------------------------------------------------------------------------- /sys/linux/usbip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/usbip.txt -------------------------------------------------------------------------------- /sys/linux/usbip.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/usbip.txt.const -------------------------------------------------------------------------------- /sys/linux/usbip.txt.warn: -------------------------------------------------------------------------------- 1 | no-such-struct: usbip_packet_ret_unlink 2 | -------------------------------------------------------------------------------- /sys/linux/vmw_vmci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vmw_vmci.txt -------------------------------------------------------------------------------- /sys/linux/vnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vnet.txt -------------------------------------------------------------------------------- /sys/linux/vnet.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vnet.txt.const -------------------------------------------------------------------------------- /sys/linux/vnet.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vnet.txt.warn -------------------------------------------------------------------------------- /sys/linux/vnet_mptcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vnet_mptcp.txt -------------------------------------------------------------------------------- /sys/linux/vusb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vusb.txt -------------------------------------------------------------------------------- /sys/linux/vusb.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vusb.txt.const -------------------------------------------------------------------------------- /sys/linux/vusb.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/vusb.txt.warn -------------------------------------------------------------------------------- /sys/linux/watch_queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/watch_queue.txt -------------------------------------------------------------------------------- /sys/linux/xattr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/xattr.txt -------------------------------------------------------------------------------- /sys/linux/xattr.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/xattr.txt.const -------------------------------------------------------------------------------- /sys/linux/xattr.txt.warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/linux/xattr.txt.warn -------------------------------------------------------------------------------- /sys/netbsd/dev_dm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/dev_dm.txt -------------------------------------------------------------------------------- /sys/netbsd/dev_i2c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/dev_i2c.txt -------------------------------------------------------------------------------- /sys/netbsd/dev_tprof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/dev_tprof.txt -------------------------------------------------------------------------------- /sys/netbsd/dev_wscons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/dev_wscons.txt -------------------------------------------------------------------------------- /sys/netbsd/fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/fs.txt -------------------------------------------------------------------------------- /sys/netbsd/fs.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/fs.txt.const -------------------------------------------------------------------------------- /sys/netbsd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/init.go -------------------------------------------------------------------------------- /sys/netbsd/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/init_test.go -------------------------------------------------------------------------------- /sys/netbsd/ipc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/ipc.txt -------------------------------------------------------------------------------- /sys/netbsd/ipc.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/ipc.txt.const -------------------------------------------------------------------------------- /sys/netbsd/ktrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/ktrace.txt -------------------------------------------------------------------------------- /sys/netbsd/lwp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/lwp.txt -------------------------------------------------------------------------------- /sys/netbsd/lwp.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/lwp.txt.const -------------------------------------------------------------------------------- /sys/netbsd/mm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/mm.txt -------------------------------------------------------------------------------- /sys/netbsd/mm.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/mm.txt.const -------------------------------------------------------------------------------- /sys/netbsd/socket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/socket.txt -------------------------------------------------------------------------------- /sys/netbsd/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/sys.txt -------------------------------------------------------------------------------- /sys/netbsd/sys.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/sys.txt.const -------------------------------------------------------------------------------- /sys/netbsd/vnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/vnet.txt -------------------------------------------------------------------------------- /sys/netbsd/vnet.txt.const: -------------------------------------------------------------------------------- 1 | # Code generated by syz-sysgen. DO NOT EDIT. 2 | arches = amd64 3 | -------------------------------------------------------------------------------- /sys/netbsd/vusb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/vusb.txt -------------------------------------------------------------------------------- /sys/netbsd/vusb.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/netbsd/vusb.txt.const -------------------------------------------------------------------------------- /sys/openbsd/dev_bpf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/dev_bpf.txt -------------------------------------------------------------------------------- /sys/openbsd/dev_klog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/dev_klog.txt -------------------------------------------------------------------------------- /sys/openbsd/dev_pci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/dev_pci.txt -------------------------------------------------------------------------------- /sys/openbsd/dev_pf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/dev_pf.txt -------------------------------------------------------------------------------- /sys/openbsd/dev_vmm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/dev_vmm.txt -------------------------------------------------------------------------------- /sys/openbsd/dev_vnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/dev_vnd.txt -------------------------------------------------------------------------------- /sys/openbsd/fs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/fs.txt -------------------------------------------------------------------------------- /sys/openbsd/fs.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/fs.txt.const -------------------------------------------------------------------------------- /sys/openbsd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/init.go -------------------------------------------------------------------------------- /sys/openbsd/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/init_test.go -------------------------------------------------------------------------------- /sys/openbsd/ipc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/ipc.txt -------------------------------------------------------------------------------- /sys/openbsd/ipc.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/ipc.txt.const -------------------------------------------------------------------------------- /sys/openbsd/kqueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/kqueue.txt -------------------------------------------------------------------------------- /sys/openbsd/ktrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/ktrace.txt -------------------------------------------------------------------------------- /sys/openbsd/mm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/mm.txt -------------------------------------------------------------------------------- /sys/openbsd/mm.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/mm.txt.const -------------------------------------------------------------------------------- /sys/openbsd/socket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/socket.txt -------------------------------------------------------------------------------- /sys/openbsd/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/sys.txt -------------------------------------------------------------------------------- /sys/openbsd/sys.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/sys.txt.const -------------------------------------------------------------------------------- /sys/openbsd/sysctl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/sysctl.txt -------------------------------------------------------------------------------- /sys/openbsd/tty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/tty.txt -------------------------------------------------------------------------------- /sys/openbsd/tty.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/tty.txt.const -------------------------------------------------------------------------------- /sys/openbsd/vnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/vnet.txt -------------------------------------------------------------------------------- /sys/openbsd/wscons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/openbsd/wscons.txt -------------------------------------------------------------------------------- /sys/syz-extract/darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-extract/darwin.go -------------------------------------------------------------------------------- /sys/syz-extract/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-extract/fetch.go -------------------------------------------------------------------------------- /sys/syz-extract/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-extract/linux.go -------------------------------------------------------------------------------- /sys/syz-extract/netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-extract/netbsd.go -------------------------------------------------------------------------------- /sys/syz-extract/trusty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-extract/trusty.go -------------------------------------------------------------------------------- /sys/syz-sysgen/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-sysgen/check.go -------------------------------------------------------------------------------- /sys/syz-sysgen/sysgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/syz-sysgen/sysgen.go -------------------------------------------------------------------------------- /sys/targets/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/targets/common.go -------------------------------------------------------------------------------- /sys/targets/targets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/targets/targets.go -------------------------------------------------------------------------------- /sys/test/any.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/any.txt -------------------------------------------------------------------------------- /sys/test/arch_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/arch_32.txt -------------------------------------------------------------------------------- /sys/test/arch_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/arch_64.txt -------------------------------------------------------------------------------- /sys/test/csource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/csource.txt -------------------------------------------------------------------------------- /sys/test/exec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/exec.txt -------------------------------------------------------------------------------- /sys/test/expressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/expressions.txt -------------------------------------------------------------------------------- /sys/test/fmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/fmt.txt -------------------------------------------------------------------------------- /sys/test/fuzzer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/fuzzer.txt -------------------------------------------------------------------------------- /sys/test/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/init.go -------------------------------------------------------------------------------- /sys/test/related.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/related.txt -------------------------------------------------------------------------------- /sys/test/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test.txt -------------------------------------------------------------------------------- /sys/test/test.txt.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test.txt.const -------------------------------------------------------------------------------- /sys/test/test/align0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/align0 -------------------------------------------------------------------------------- /sys/test/test/align0_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/align0_be -------------------------------------------------------------------------------- /sys/test/test/align3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/align3 -------------------------------------------------------------------------------- /sys/test/test/bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/bf -------------------------------------------------------------------------------- /sys/test/test/bf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/bf2 -------------------------------------------------------------------------------- /sys/test/test/bf2_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/bf2_be -------------------------------------------------------------------------------- /sys/test/test/bf_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/bf_be -------------------------------------------------------------------------------- /sys/test/test/errno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/errno -------------------------------------------------------------------------------- /sys/test/test/exit0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/exit0 -------------------------------------------------------------------------------- /sys/test/test/exit1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/exit1 -------------------------------------------------------------------------------- /sys/test/test/expressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/expressions -------------------------------------------------------------------------------- /sys/test/test/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/fmt -------------------------------------------------------------------------------- /sys/test/test/nla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/nla -------------------------------------------------------------------------------- /sys/test/test/nonfailing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/nonfailing -------------------------------------------------------------------------------- /sys/test/test/overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/overlay -------------------------------------------------------------------------------- /sys/test/test/overlay_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/overlay_be -------------------------------------------------------------------------------- /sys/test/test/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/sleep -------------------------------------------------------------------------------- /sys/test/test/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/strings -------------------------------------------------------------------------------- /sys/test/test/test: -------------------------------------------------------------------------------- 1 | syz_mmap(0x0, 0x0) # EINVAL 2 | -------------------------------------------------------------------------------- /sys/test/test/zero_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/test/test/zero_args -------------------------------------------------------------------------------- /sys/trusty/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/trusty/init.go -------------------------------------------------------------------------------- /sys/trusty/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/trusty/sys.txt -------------------------------------------------------------------------------- /sys/trusty/sys_arm.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/trusty/sys_arm.const -------------------------------------------------------------------------------- /sys/windows/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/windows/init.go -------------------------------------------------------------------------------- /sys/windows/sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/windows/sys.txt -------------------------------------------------------------------------------- /sys/windows/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/sys/windows/windows.txt -------------------------------------------------------------------------------- /syz-ci/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/config_test.go -------------------------------------------------------------------------------- /syz-ci/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/jobs.go -------------------------------------------------------------------------------- /syz-ci/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/jobs_test.go -------------------------------------------------------------------------------- /syz-ci/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/manager.go -------------------------------------------------------------------------------- /syz-ci/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/manager_test.go -------------------------------------------------------------------------------- /syz-ci/managercmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/managercmd.go -------------------------------------------------------------------------------- /syz-ci/syz-ci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-ci/syz-ci.go -------------------------------------------------------------------------------- /syz-cluster/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-cluster/.dockerignore -------------------------------------------------------------------------------- /syz-cluster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-cluster/Makefile -------------------------------------------------------------------------------- /syz-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-cluster/README.md -------------------------------------------------------------------------------- /syz-cluster/dashboard/static/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /syz-cluster/pkg/db/migrations/3_add_tree_url.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE Builds DROP COLUMN TreeURL; 2 | -------------------------------------------------------------------------------- /syz-cluster/pkg/db/migrations/6_base_findings.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE BaseFindings; 2 | -------------------------------------------------------------------------------- /syz-cluster/run-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-cluster/run-local.sh -------------------------------------------------------------------------------- /syz-hub/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-hub/http.go -------------------------------------------------------------------------------- /syz-hub/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-hub/hub.go -------------------------------------------------------------------------------- /syz-hub/hub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-hub/hub_test.go -------------------------------------------------------------------------------- /syz-hub/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-hub/state/state.go -------------------------------------------------------------------------------- /syz-kfuzztest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-kfuzztest/main.go -------------------------------------------------------------------------------- /syz-manager/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-manager/hub.go -------------------------------------------------------------------------------- /syz-manager/hub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-manager/hub_test.go -------------------------------------------------------------------------------- /syz-manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-manager/manager.go -------------------------------------------------------------------------------- /syz-manager/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-manager/snapshot.go -------------------------------------------------------------------------------- /syz-manager/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-manager/stats.go -------------------------------------------------------------------------------- /syz-verifier/exectask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-verifier/exectask.go -------------------------------------------------------------------------------- /syz-verifier/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-verifier/main.go -------------------------------------------------------------------------------- /syz-verifier/rpcserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-verifier/rpcserver.go -------------------------------------------------------------------------------- /syz-verifier/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-verifier/stats.go -------------------------------------------------------------------------------- /syz-verifier/verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/syz-verifier/verifier.go -------------------------------------------------------------------------------- /tools/android/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/android/Makefile -------------------------------------------------------------------------------- /tools/arm64/msr_mrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/arm64/msr_mrs.txt -------------------------------------------------------------------------------- /tools/arm64/registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/arm64/registers.go -------------------------------------------------------------------------------- /tools/check-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-commits.sh -------------------------------------------------------------------------------- /tools/check-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-copyright.sh -------------------------------------------------------------------------------- /tools/check-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-html.sh -------------------------------------------------------------------------------- /tools/check-language.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-language.sh -------------------------------------------------------------------------------- /tools/check-shebang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-shebang.sh -------------------------------------------------------------------------------- /tools/check-syzos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-syzos.sh -------------------------------------------------------------------------------- /tools/check-whitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check-whitespace.sh -------------------------------------------------------------------------------- /tools/check_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/check_links.py -------------------------------------------------------------------------------- /tools/clang/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/clang/.clang-format -------------------------------------------------------------------------------- /tools/clang/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/clang/json.h -------------------------------------------------------------------------------- /tools/create-gce-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/create-gce-image.sh -------------------------------------------------------------------------------- /tools/create-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/create-image.sh -------------------------------------------------------------------------------- /tools/demo_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/demo_setup.sh -------------------------------------------------------------------------------- /tools/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/docker/README.md -------------------------------------------------------------------------------- /tools/syz-bq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-bq.sh -------------------------------------------------------------------------------- /tools/syz-build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-build/build.go -------------------------------------------------------------------------------- /tools/syz-check/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-check/check.go -------------------------------------------------------------------------------- /tools/syz-check/dwarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-check/dwarf.go -------------------------------------------------------------------------------- /tools/syz-crush/crush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-crush/crush.go -------------------------------------------------------------------------------- /tools/syz-db/syz-db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-db/syz-db.go -------------------------------------------------------------------------------- /tools/syz-declextract/testdata/arch/arm/syscalls.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/syz-declextract/testdata/arch/arm64/syscalls.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/syz-declextract/testdata/arch/mips/syscalls.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/syz-declextract/testdata/arch/powerpc/syscalls.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/syz-declextract/testdata/arch/riscv/syscalls.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/syz-declextract/testdata/arch/s390/syscalls.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/syz-diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-diff/diff.go -------------------------------------------------------------------------------- /tools/syz-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-env -------------------------------------------------------------------------------- /tools/syz-fmt/syz-fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-fmt/syz-fmt.go -------------------------------------------------------------------------------- /tools/syz-kcidb/kcidb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-kcidb/kcidb.go -------------------------------------------------------------------------------- /tools/syz-kconf/kconf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-kconf/kconf.go -------------------------------------------------------------------------------- /tools/syz-kconf/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-kconf/parser.go -------------------------------------------------------------------------------- /tools/syz-make/make.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-make/make.go -------------------------------------------------------------------------------- /tools/syz-old-env: -------------------------------------------------------------------------------- 1 | syz-env -------------------------------------------------------------------------------- /tools/syz-repro/repro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-repro/repro.go -------------------------------------------------------------------------------- /tools/syz-reproducers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-reproducers.sh -------------------------------------------------------------------------------- /tools/syz-testbed/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/tools/syz-testbed/html.go -------------------------------------------------------------------------------- /vm/adb/adb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/adb/adb.go -------------------------------------------------------------------------------- /vm/adb/adb_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/adb/adb_ppc64le.go -------------------------------------------------------------------------------- /vm/bhyve/bhyve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/bhyve/bhyve.go -------------------------------------------------------------------------------- /vm/dispatcher/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/dispatcher/pool.go -------------------------------------------------------------------------------- /vm/gce/gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/gce/gce.go -------------------------------------------------------------------------------- /vm/gce/tar_go1.10.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/gce/tar_go1.10.go -------------------------------------------------------------------------------- /vm/gce/tar_go1.9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/gce/tar_go1.9.go -------------------------------------------------------------------------------- /vm/gvisor/gvisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/gvisor/gvisor.go -------------------------------------------------------------------------------- /vm/isolated/isolated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/isolated/isolated.go -------------------------------------------------------------------------------- /vm/proxyapp/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/proxyapp/init.go -------------------------------------------------------------------------------- /vm/qemu/qemu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/qemu/qemu.go -------------------------------------------------------------------------------- /vm/qemu/qmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/qemu/qmp.go -------------------------------------------------------------------------------- /vm/starnix/starnix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/starnix/starnix.go -------------------------------------------------------------------------------- /vm/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vm.go -------------------------------------------------------------------------------- /vm/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vm_test.go -------------------------------------------------------------------------------- /vm/vmimpl/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/console.go -------------------------------------------------------------------------------- /vm/vmimpl/freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/freebsd.go -------------------------------------------------------------------------------- /vm/vmimpl/linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/linux.go -------------------------------------------------------------------------------- /vm/vmimpl/merger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/merger.go -------------------------------------------------------------------------------- /vm/vmimpl/openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/openbsd.go -------------------------------------------------------------------------------- /vm/vmimpl/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/util.go -------------------------------------------------------------------------------- /vm/vmimpl/vmimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmimpl/vmimpl.go -------------------------------------------------------------------------------- /vm/vmm/vmm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmm/vmm.go -------------------------------------------------------------------------------- /vm/vmware/vmware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/syzkaller/HEAD/vm/vmware/vmware.go --------------------------------------------------------------------------------