2015-10-12 08:16:57 +00:00
# syzkaller - linux syscall fuzzer
2015-10-12 15:15:57 +00:00
`syzkaller` is a distributed, unsupervised, coverage-guided Linux syscall fuzzer.
It is meant to be used with [KASAN ](https://www.kernel.org/doc/Documentation/kasan.txt ) (`CONFIG_KASAN=y`),
[KTSAN ](https://github.com/google/ktsan ) (`CONFIG_KTSAN=y`),
2016-09-16 16:05:27 +00:00
or [KUBSAN ](https://www.kernel.org/doc/Documentation/ubsan.txt ).
2015-10-12 08:16:57 +00:00
2016-04-28 15:47:07 +00:00
Project mailing list: [syzkaller@googlegroups.com ](https://groups.google.com/forum/#!forum/syzkaller ), which you can subscribe to either with an
google account or by sending an email to syzkaller+subscribe@googlegroups.com.
2015-10-12 08:16:57 +00:00
2015-10-12 09:36:48 +00:00
List of [found bugs ](https://github.com/google/syzkaller/wiki/Found-Bugs ).
2015-10-12 08:16:57 +00:00
This is work-in-progress, some things may not work yet.
## Usage
2015-11-19 13:38:37 +00:00
Various components are needed to build and run syzkaller.
- C compiler with coverage support
- Linux kernel with coverage additions
- QEMU and disk image
- The syzkaller components
Setting each of these up is discussed in the following sections.
### C Compiler
Syzkaller is a coverage-guided fuzzer and so needs the kernel to be built with coverage support.
2015-12-04 18:32:35 +00:00
Therefore, a recent upstream version of GCC is needed. Coverage support is submitted to gcc in
2016-06-06 15:25:32 +00:00
revision 231296, released in gcc6.
2015-11-19 13:38:37 +00:00
### Linux Kernel
As well as adding coverage support to the C compiler, the Linux kernel itself needs to be modified
to:
2015-12-21 12:37:04 +00:00
- add support in the build system for the coverage options (under `CONFIG_KCOV` )
- add extra instrumentation on system call entry/exit (for a `CONFIG_KCOV` build)
2015-11-19 13:38:37 +00:00
- add code to track and report per-task coverage information.
2016-04-02 14:00:07 +00:00
KCOV is upstreamed in linux 4.6. For older kernels you need to backport commit [5c9a8750a6409c63a0f01d51a9024861022f6593 ](https://github.com/torvalds/linux/commit/5c9a8750a6409c63a0f01d51a9024861022f6593 ). The kernel should be configured with `CONFIG_KCOV` plus `CONFIG_KASAN` or `CONFIG_KTSAN` .
2015-11-19 13:38:37 +00:00
2016-02-18 13:26:37 +00:00
(Note that if the kernel under test does not include support for all namespaces, the `dropprivs`
configuration value should be set to `false` .)
2015-11-19 13:38:37 +00:00
### QEMU Setup
Syzkaller runs its fuzzer processes inside QEMU virtual machines, so a working QEMU system is needed
– see [QEMU docs ](http://wiki.qemu.org/Manual ) for details.
In particular:
- The fuzzing processes communicate with the outside world, so the VM image needs to include
networking support.
- The program files for the fuzzer processes are transmitted into the VM using SSH, so the VM image
needs a running SSH server.
- The VM's SSH configuration should be set up to allow root access for the identity that is
2015-12-21 12:37:04 +00:00
included in the `syz-manager` 's configuration. In other words, you should be able to do `ssh -i
2015-11-19 13:38:37 +00:00
$SSHID -p $PORT root@localhost` without being prompted for a password (where `SSHID` is the SSH
2015-12-21 12:37:04 +00:00
identification file and `PORT` is the port that are specified in the `syz-manager` configuration
2015-11-19 13:38:37 +00:00
file).
2015-12-16 09:47:38 +00:00
- The kernel exports coverage information via a debugfs entry, so the VM image needs to mount
the debugfs filesystem at `/sys/kernel/debug` .
2015-11-19 13:38:37 +00:00
2016-01-07 12:16:20 +00:00
[create-image.sh ](tools/create-image.sh ) script can be used to create a suitable Linux image.
2015-11-19 13:38:37 +00:00
TODO: Describe how to support other types of VM other than QEMU.
### Syzkaller
The syzkaller tools are written in [Go ](https://golang.org ), so a Go compiler (>= 1.4) is needed
to build them. Build with `make` , which generates compiled binaries in the `bin/` folder.
## Configuration
2015-12-21 12:37:04 +00:00
The operation of the syzkaller `syz-manager` process is governed by a configuration file, passed at
2015-11-19 13:38:37 +00:00
invocation time with the `-config` option. This configuration can be based on the
2015-12-17 15:21:46 +00:00
[syz-manager/example.cfg ](syz-manager/example.cfg ); the file is in JSON format with the
2015-11-19 13:38:37 +00:00
following keys in its top-level object:
2015-12-21 12:37:04 +00:00
- `http` : URL that will display information about the running `syz-manager` process.
- `workdir` : Location of a working directory for the `syz-manager` process. Outputs here include:
2015-12-23 18:33:12 +00:00
- `<workdir>/instance-x` : per VM instance temporary files
2015-11-19 13:38:37 +00:00
- `<workdir>/crashes/crashN-T` : crash output files
2015-12-17 15:20:12 +00:00
- `<workdir>/corpus/*` : corpus with interesting programs
2015-12-23 18:33:12 +00:00
- `syzkaller` : Location of the `syzkaller` checkout.
2015-11-19 13:38:37 +00:00
- `vmlinux` : Location of the `vmlinux` file that corresponds to the kernel being tested.
2015-12-23 18:33:12 +00:00
- `type` : Type of virtual machine to use, e.g. `qemu` or `kvm` .
2015-11-19 13:38:37 +00:00
- `count` : Number of VMs to run in parallel.
2015-12-04 18:32:35 +00:00
- `procs` : Number of parallel test processes in each VM (4 or 8 would be a reasonable number).
- `leak` : Detect memory leaks with kmemleak (very slow).
2015-12-23 18:33:12 +00:00
- `kernel` : Location of the `bzImage` file for the kernel to be tested; this is passed as the
`-kernel` option to `qemu-system-x86_64` .
- `cmdline` : Additional command line options for the booting kernel, for example `root=/dev/sda1` .
- `image` : Location of the disk image file for the QEMU instance; a copy of this file is passed as the
`-hda` option to `qemu-system-x86_64` .
- `sshkey` : Location (on the host machine) of an SSH identity to use for communicating with
the virtual machine.
- `cpu` : Number of CPUs to simulate in the VM (*not currently used*).
- `mem` : Amount of memory (in MiB) for the VM; this is passed as the `-m` option to `qemu-system-x86_64` .
2016-07-01 20:20:47 +00:00
- `sandbox` : Sandboxing mode, one of "none", "setuid", "namespace".
"none": don't do anything special (has false positives, e.g. due to killing init)
"setuid": impersonate into user nobody (65534), default
"namespace": use namespaces to drop privileges,
(requires a kernel built with `CONFIG_NAMESPACES` , `CONFIG_UTS_NS` ,
`CONFIG_USER_NS` , `CONFIG_PID_NS` and `CONFIG_NET_NS` ).
2015-11-23 16:01:47 +00:00
- `enable_syscalls` : List of syscalls to test (optional).
- `disable_syscalls` : List of system calls that should be treated as disabled (optional).
2015-12-04 18:32:35 +00:00
- `suppressions` : List of regexps for known bugs.
2015-11-19 13:38:37 +00:00
## Running syzkaller
2015-12-21 12:37:04 +00:00
Start the `syz-manager` process as:
2015-10-12 15:15:57 +00:00
```
2015-12-17 15:20:12 +00:00
./bin/syz-manager -config my.cfg
2015-10-12 15:15:57 +00:00
```
2015-10-12 08:16:57 +00:00
2015-11-19 13:38:37 +00:00
The `-config` command line option gives the location of the configuration file
2016-08-27 04:37:22 +00:00
[described above ](#configuration ).
2015-11-19 13:38:37 +00:00
2015-12-17 15:20:12 +00:00
The `syz-manager` process will wind up qemu virtual machines and start fuzzing in them.
It also reports some statistics on the HTTP address.
2015-11-19 13:38:37 +00:00
2015-10-12 08:16:57 +00:00
## Process Structure
2015-11-19 13:38:37 +00:00
The process structure for the syzkaller system is shown in the following diagram; red labels
indicate corresponding configuration options.
![Process structure for syzkaller ](structure.png?raw=true )
2015-12-17 15:20:12 +00:00
The `syz-manager` process starts, monitors and restarts several VM instances (support for
physical machines is not implemented yet), and starts a `syz-fuzzer` process inside of the VMs.
It is responsible for persistent corpus and crash storage. As opposed to `syz-fuzzer` processes,
it runs on a host with stable kernel which does not experience white-noise fuzzer load.
2015-10-12 08:16:57 +00:00
2015-12-17 15:20:12 +00:00
The `syz-fuzzer` process runs inside of presumably unstable VMs (or physical machines under test).
The `syz-fuzzer` guides fuzzing process itself (input generation, mutation, minimization, etc)
and sends inputs that trigger new coverage back to the `syz-manager` process via RPC.
It also starts transient `syz-executor` processes.
2015-10-12 08:16:57 +00:00
2015-12-17 15:20:12 +00:00
Each `syz-executor` process executes a single input (a sequence of syscalls).
It accepts the program to execute from the `syz-fuzzer` process and sends results back.
2015-10-12 08:16:57 +00:00
It is designed to be as simple as possible (to not interfere with fuzzing process),
written in C++, compiled as static binary and uses shared memory for communication.
## Syscall description
2016-08-26 05:09:25 +00:00
`syzkaller` uses declarative description of syscalls to generate, mutate, minimize,
serialize and deserialize programs (sequences of syscalls). See details about the
format and extending the descriptions in [sys/README.md ](sys/README.md ).
2015-10-12 08:16:57 +00:00
2016-02-18 13:26:37 +00:00
## Troubleshooting
Here are some things to check if there are problems running syzkaller.
- Check that QEMU can successfully boot the virtual machine. For example,
if `IMAGE` is set to the VM's disk image (as per the `image` config value)
and `KERNEL` is set to the test kernel (as per the `kernel` config value)
then something like the following command should start the VM successfully:
```qemu-system-x86_64 -hda $IMAGE -m 256 -net nic -net user,host=10.0.2.10,hostfwd=tcp::23505-:22 -enable-kvm -kernel $KERNEL -append root=/dev/sda```
- Check that inbound SSH to the running virtual machine works. For example, with
a VM running and with `SSHKEY` set to the SSH identity (as per the `sshkey` config value) the
following command should connect:
```ssh -i $SSHKEY -p 23505 root@localhost```
- Check that the `CONFIG_KCOV` option is available inside the VM:
- `ls /sys/kernel/debug # Check debugfs mounted`
- `ls /sys/kernel/debug/kcov # Check kcov enabled`
- Build the test program from `Documentation/kcov.txt` and run it inside the VM.
- Check that debug information (from the `CONFIG_DEBUG_INFO` option) is available
2016-03-06 19:10:29 +00:00
- Pass the hex output from the kcov test program to `addr2line -a -i -f -e $VMLINUX` (where
2016-02-18 13:26:37 +00:00
`VMLINUX` is the vmlinux file, as per the `vmlinux` config value), to confirm
that symbols for the kernel are available.
- Use the `-v N` command line option to increase the amount of logging output, from both
the `syz-manager` top-level program and the `syz-fuzzer` instances (which go to the
output files in the `crashes` subdirectory of the working directory). Higher values of
N give more output.
- If logging indicates problems with the executor program (e.g. `executor failure` ),
try manually running a short sequence of system calls:
- Build additional tools with `make all-tools`
- Copy `syz-executor` and `syz-execprog` into a running VM.
- In the VM run `./syz-execprog -executor ./syz-executor -debug sampleprog` where
sampleprog is a simple system call script (e.g. just containing `getpid()` ).
- For example, if this reports that `clone` has failed, this probably indicates
that the test kernel does not include support for all of the required namespaces.
In this case, running the `syz-execprog` test with the `-nobody=0` option fixes the problem,
so the main configuration needs to be updated to set `dropprivs` to `false` .
2016-03-06 19:10:29 +00:00
2016-09-04 10:31:49 +00:00
## External Articles
2016-09-04 10:32:23 +00:00
- [Coverage-guided kernel fuzzing with syzkaller ](https://lwn.net/Articles/677764/ ) (by David Drysdale)
- [ubsan, kasan, syzkaller und co ](http://www.strlen.de/talks/debug-w-syzkaller.pdf ) ([video](https://www.youtube.com/watch?v=Acp0A9X1254)) (by Florian Westphal)
2016-09-04 10:31:49 +00:00
- [Debugging a kernel crash found by syzkaller ](http://vegardno.blogspot.de/2016/08/sync-debug.html ) (by Quentin Casasnovas)
2016-09-13 08:02:52 +00:00
## Contributing
2016-09-13 08:04:37 +00:00
If you want to contribute to the project, you need to [sign Google CLA ](https://cla.developers.google.com/ ) and add yourself to [AUTHORS ](AUTHORS )/[CONTRIBUTORS](CONTRIBUTORS) files in the first pull request. Extending/improving [system call descriptions ](sys/sys.txt ) is always a good idea. If you want to work on something non-trivial, please briefly describe it on [syzkaller@googlegroups.com ](https://groups.google.com/forum/#!forum/syzkaller ) mailing list first so that there is agreement on high level approach and no duplication of work between contributors.
2016-09-13 08:02:52 +00:00
2016-02-18 13:26:37 +00:00
## Disclaimer
2015-10-12 08:16:57 +00:00
This is not an official Google product.