libreoffice-online/fuzzer
Miklos Vajna eb5c86a4d3 DocumentBroker::saveToStorage: guard against nullptr _storage
This can happen on a 'savetostorage' which is after a failed load.

Change-Id: Iad26bf6415c772c8646a119b0454c202873d6860
Signed-off-by: Miklos Vajna <vmiklos@collabora.com>
2020-10-26 10:57:23 +01:00
..
admin-data admin_fuzzer: fix too large param to mem stats size setter 2020-04-20 15:44:21 +02:00
data DocumentBroker::saveToStorage: guard against nullptr _storage 2020-10-26 10:57:23 +01:00
Admin.cpp Add an initial libfuzzer based fuzzer for the admin console 2020-04-02 12:11:24 +02:00
ClientSession.cpp libfuzzer: fix build 2020-06-03 16:39:45 +02:00
README libfuzzer: add initial documentation 2020-05-15 10:06:58 +02:00

These fuzzers are meant to be built and executed inside lode.git's sanitizers
environment (currently enables both asan and ubsan).

online.git can be built the usual way, just the additional `--enable-fuzzers`
flag is needed to build the fuzzers. It is useful to do this in a separate
build tree, since the fuzzers config doesn't produce a `loolwsd` binary.

Run the fuzzers like this:

- Admin:

----
./admin_fuzzer -max_len=16384 fuzzer/admin-data/
----

- ClientSession:

----
./clientsession_fuzzer -max_len=16384 fuzzer/data/
----