mirror of
https://github.com/LibreOffice/online.git
synced 2025-08-20 23:24:34 +00:00
fuzzer: fix OOM with an ever-growing SocketPoll::_newCallbacks
Admin::instance().dumpState(std::cerr) at the end of a run shows: Poll [0] - wakeup r: 11 w: 12 callbacks: 103 fd events rsize wsize This is more a problem in the fuzzer itself than in the code, the unprocessed callbacks reached the intentionally set 2GB limit in about 20 mins, so process them at the end of each run. Change-Id: Ic12d3e8555417371f4ca44228fc1ff515d704592 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/89632 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
This commit is contained in:
@ -34,6 +34,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
||||
std::vector<char> lineVector(line.data(), line.data() + line.size());
|
||||
session->handleMessage(fin, code, lineVector);
|
||||
}
|
||||
|
||||
// Make sure SocketPoll::_newCallbacks does not grow forever, leading to OOM.
|
||||
Admin::instance().poll(SocketPoll::DefaultPollTimeoutMs);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user