2016-11-07 21:08:44 +00:00
|
|
|
# Fuzzer environment on ClusterFuzz
|
|
|
|
|
2016-11-26 23:59:29 +00:00
|
|
|
Your fuzzers will be run on a [Google Compute Engine](https://cloud.google.com/compute/) VM (Linux) with some security restrictions.
|
2016-11-07 21:08:44 +00:00
|
|
|
|
|
|
|
## Current working directory
|
|
|
|
|
2016-11-26 23:59:29 +00:00
|
|
|
You should not make any assumptions about the current working directory of your
|
2016-11-07 21:08:44 +00:00
|
|
|
fuzzer. If you need to load data files, please use `argv[0]` to get the
|
2016-11-26 23:59:29 +00:00
|
|
|
directory where your fuzzer executable is located.
|
2016-11-07 21:08:44 +00:00
|
|
|
|
|
|
|
## Filesystem
|
|
|
|
|
|
|
|
Everything except `/tmp` is read-only, including the directory that your fuzzer
|
|
|
|
executable lives in. Note that `/tmp` is limited in size (64MB).
|
|
|
|
|
|
|
|
## Network access
|
|
|
|
|
|
|
|
There will be no network interfaces available (not even loopback).
|