Source code

Revision control

Copy as Markdown

Other Tools

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* Common code for the unified fuzzing interface
*/
#include <stdarg.h>
#include <stdlib.h>
#include "FuzzingInterface.h"
namespace mozilla {
#ifdef JS_STANDALONE
static bool fuzzing_verbose = !!getenv("MOZ_FUZZ_LOG");
void fuzzing_log(const char* aFmt, ...) {
if (fuzzing_verbose) {
va_list ap;
va_start(ap, aFmt);
vfprintf(stderr, aFmt, ap);
va_end(ap);
}
}
#else
LazyLogModule gFuzzingLog("nsFuzzing");
#endif
} // namespace mozilla
#ifdef AFLFUZZ
__AFL_FUZZ_INIT();
int afl_interface_raw(FuzzingTestFuncRaw testFunc) {
# ifdef __AFL_HAVE_MANUAL_CONTROL
__AFL_INIT();
# endif
uint8_t* buf = __AFL_FUZZ_TESTCASE_BUF;
while (__AFL_LOOP(1000)) {
size_t len = __AFL_FUZZ_TESTCASE_LEN;
testFunc(buf, len);
}
return 0;
}
#endif // AFLFUZZ