2021-10-30 04:25:12 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#include "src/libfuzzer/libfuzzer_macro.h"
|
|
|
|
#include "luau.pb.h"
|
|
|
|
|
|
|
|
#include "Luau/BuiltinDefinitions.h"
|
|
|
|
#include "Luau/BytecodeBuilder.h"
|
|
|
|
#include "Luau/Common.h"
|
2022-02-25 07:15:41 +08:00
|
|
|
#include "Luau/Compiler.h"
|
|
|
|
#include "Luau/Frontend.h"
|
|
|
|
#include "Luau/Linter.h"
|
|
|
|
#include "Luau/ModuleResolver.h"
|
|
|
|
#include "Luau/Parser.h"
|
2021-10-30 04:25:12 +08:00
|
|
|
#include "Luau/ToString.h"
|
2021-11-12 10:12:39 +08:00
|
|
|
#include "Luau/Transpiler.h"
|
2022-02-25 07:15:41 +08:00
|
|
|
#include "Luau/TypeInfer.h"
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
// Select components to fuzz
|
|
|
|
const bool kFuzzCompiler = true;
|
|
|
|
const bool kFuzzLinter = true;
|
|
|
|
const bool kFuzzTypeck = true;
|
|
|
|
const bool kFuzzVM = true;
|
2021-11-12 10:12:39 +08:00
|
|
|
const bool kFuzzTranspile = true;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2021-12-03 07:20:08 +08:00
|
|
|
// Should we generate type annotations?
|
|
|
|
const bool kFuzzTypes = true;
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
static_assert(!(kFuzzVM && !kFuzzCompiler), "VM requires the compiler!");
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
std::vector<std::string> protoprint(const luau::ModuleSet& stat, bool types);
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
LUAU_FASTINT(LuauTypeInferRecursionLimit)
|
|
|
|
LUAU_FASTINT(LuauTypeInferTypePackLoopLimit)
|
|
|
|
LUAU_FASTINT(LuauCheckRecursionLimit)
|
|
|
|
LUAU_FASTINT(LuauTableTypeMaximumStringifierLength)
|
|
|
|
LUAU_FASTINT(LuauTypeInferIterationLimit)
|
|
|
|
LUAU_FASTINT(LuauTarjanChildLimit)
|
2022-02-25 07:15:41 +08:00
|
|
|
LUAU_FASTFLAG(DebugLuauFreezeArena)
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
std::chrono::milliseconds kInterruptTimeout(10);
|
|
|
|
std::chrono::time_point<std::chrono::system_clock> interruptDeadline;
|
|
|
|
|
|
|
|
size_t kHeapLimit = 512 * 1024 * 1024;
|
|
|
|
size_t heapSize = 0;
|
|
|
|
|
|
|
|
void interrupt(lua_State* L, int gc)
|
|
|
|
{
|
|
|
|
if (gc >= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (std::chrono::system_clock::now() > interruptDeadline)
|
|
|
|
{
|
|
|
|
lua_checkstack(L, 1);
|
|
|
|
luaL_error(L, "execution timed out");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void* allocate(lua_State* L, void* ud, void* ptr, size_t osize, size_t nsize)
|
|
|
|
{
|
|
|
|
if (nsize == 0)
|
|
|
|
{
|
|
|
|
heapSize -= osize;
|
|
|
|
free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (heapSize - osize + nsize > kHeapLimit)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
heapSize -= osize;
|
|
|
|
heapSize += nsize;
|
|
|
|
|
|
|
|
return realloc(ptr, nsize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_State* createGlobalState()
|
|
|
|
{
|
|
|
|
lua_State* L = lua_newstate(allocate, NULL);
|
|
|
|
|
|
|
|
lua_callbacks(L)->interrupt = interrupt;
|
|
|
|
|
|
|
|
luaL_openlibs(L);
|
|
|
|
luaL_sandbox(L);
|
|
|
|
|
|
|
|
return L;
|
|
|
|
}
|
|
|
|
|
|
|
|
int registerTypes(Luau::TypeChecker& env)
|
|
|
|
{
|
|
|
|
using namespace Luau;
|
|
|
|
using std::nullopt;
|
|
|
|
|
|
|
|
Luau::registerBuiltinTypes(env);
|
|
|
|
|
|
|
|
TypeArena& arena = env.globalTypes;
|
|
|
|
|
|
|
|
// Vector3 stub
|
|
|
|
TypeId vector3MetaType = arena.addType(TableTypeVar{});
|
|
|
|
|
|
|
|
TypeId vector3InstanceType = arena.addType(ClassTypeVar{"Vector3", {}, nullopt, vector3MetaType, {}, {}});
|
|
|
|
getMutable<ClassTypeVar>(vector3InstanceType)->props = {
|
|
|
|
{"X", {env.numberType}},
|
|
|
|
{"Y", {env.numberType}},
|
|
|
|
{"Z", {env.numberType}},
|
|
|
|
};
|
|
|
|
|
|
|
|
getMutable<TableTypeVar>(vector3MetaType)->props = {
|
|
|
|
{"__add", {makeFunction(arena, nullopt, {vector3InstanceType, vector3InstanceType}, {vector3InstanceType})}},
|
|
|
|
};
|
|
|
|
|
|
|
|
env.globalScope->exportedTypeBindings["Vector3"] = TypeFun{{}, vector3InstanceType};
|
|
|
|
|
|
|
|
// Instance stub
|
|
|
|
TypeId instanceType = arena.addType(ClassTypeVar{"Instance", {}, nullopt, nullopt, {}, {}});
|
|
|
|
getMutable<ClassTypeVar>(instanceType)->props = {
|
|
|
|
{"Name", {env.stringType}},
|
|
|
|
};
|
|
|
|
|
|
|
|
env.globalScope->exportedTypeBindings["Instance"] = TypeFun{{}, instanceType};
|
|
|
|
|
|
|
|
// Part stub
|
|
|
|
TypeId partType = arena.addType(ClassTypeVar{"Part", {}, instanceType, nullopt, {}, {}});
|
|
|
|
getMutable<ClassTypeVar>(partType)->props = {
|
|
|
|
{"Position", {vector3InstanceType}},
|
|
|
|
};
|
|
|
|
|
|
|
|
env.globalScope->exportedTypeBindings["Part"] = TypeFun{{}, partType};
|
|
|
|
|
|
|
|
for (const auto& [_, fun] : env.globalScope->exportedTypeBindings)
|
|
|
|
persist(fun.type);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2022-02-25 07:15:41 +08:00
|
|
|
struct FuzzFileResolver : Luau::FileResolver
|
|
|
|
{
|
|
|
|
std::optional<Luau::SourceCode> readSource(const Luau::ModuleName& name) override
|
|
|
|
{
|
|
|
|
auto it = source.find(name);
|
|
|
|
if (it == source.end())
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
return Luau::SourceCode{it->second, Luau::SourceCode::Module};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<Luau::ModuleInfo> resolveModule(const Luau::ModuleInfo* context, Luau::AstExpr* expr) override
|
|
|
|
{
|
|
|
|
if (Luau::AstExprGlobal* g = expr->as<Luau::AstExprGlobal>())
|
|
|
|
return Luau::ModuleInfo{g->name.value};
|
|
|
|
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getHumanReadableModuleName(const Luau::ModuleName& name) const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::string> getEnvironmentForModule(const Luau::ModuleName& name) const override
|
|
|
|
{
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unordered_map<Luau::ModuleName, std::string> source;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FuzzConfigResolver : Luau::ConfigResolver
|
|
|
|
{
|
|
|
|
FuzzConfigResolver()
|
|
|
|
{
|
|
|
|
defaultConfig.mode = Luau::Mode::Nonstrict; // typecheckTwice option will cover Strict mode
|
|
|
|
defaultConfig.enabledLint.warningMask = ~0ull;
|
|
|
|
defaultConfig.parseOptions.captureComments = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const Luau::Config& getConfig(const Luau::ModuleName& name) const override
|
|
|
|
{
|
|
|
|
return defaultConfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
Luau::Config defaultConfig;
|
|
|
|
};
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
static std::vector<std::string> debugsources;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
DEFINE_PROTO_FUZZER(const luau::ModuleSet& message)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
FInt::LuauTypeInferRecursionLimit.value = 100;
|
|
|
|
FInt::LuauTypeInferTypePackLoopLimit.value = 100;
|
|
|
|
FInt::LuauCheckRecursionLimit.value = 100;
|
|
|
|
FInt::LuauTypeInferIterationLimit.value = 1000;
|
|
|
|
FInt::LuauTarjanChildLimit.value = 1000;
|
|
|
|
FInt::LuauTableTypeMaximumStringifierLength.value = 100;
|
|
|
|
|
|
|
|
for (Luau::FValue<bool>* flag = Luau::FValue<bool>::list; flag; flag = flag->next)
|
|
|
|
if (strncmp(flag->name, "Luau", 4) == 0)
|
|
|
|
flag->value = true;
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
FFlag::DebugLuauFreezeArena.value = true;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
std::vector<std::string> sources = protoprint(message, kFuzzTypes);
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
// stash source in a global for easier crash dump debugging
|
2022-02-25 07:15:41 +08:00
|
|
|
debugsources = sources;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
static bool debug = getenv("LUAU_DEBUG") != 0;
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
2022-02-25 07:15:41 +08:00
|
|
|
for (std::string& source : sources)
|
|
|
|
fprintf(stdout, "--\n%s\n", source.c_str());
|
2021-10-30 04:25:12 +08:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
// parse all sources
|
|
|
|
std::vector<std::unique_ptr<Luau::Allocator>> parseAllocators;
|
|
|
|
std::vector<std::unique_ptr<Luau::AstNameTable>> parseNameTables;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
Luau::ParseOptions parseOptions;
|
|
|
|
parseOptions.captureComments = true;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
std::vector<Luau::ParseResult> parseResults;
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
for (std::string& source : sources)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
2022-02-25 07:15:41 +08:00
|
|
|
parseAllocators.push_back(std::make_unique<Luau::Allocator>());
|
|
|
|
parseNameTables.push_back(std::make_unique<Luau::AstNameTable>(*parseAllocators.back()));
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
parseResults.push_back(Luau::Parser::parse(source.c_str(), source.size(), *parseNameTables.back(), *parseAllocators.back(), parseOptions));
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
// typecheck all sources
|
|
|
|
if (kFuzzTypeck)
|
|
|
|
{
|
|
|
|
static FuzzFileResolver fileResolver;
|
|
|
|
static Luau::NullConfigResolver configResolver;
|
|
|
|
static Luau::FrontendOptions options{true, true};
|
|
|
|
static Luau::Frontend frontend(&fileResolver, &configResolver, options);
|
|
|
|
|
|
|
|
static int once = registerTypes(frontend.typeChecker);
|
|
|
|
(void)once;
|
|
|
|
static int once2 = (Luau::freeze(frontend.typeChecker.globalTypes), 0);
|
|
|
|
(void)once2;
|
|
|
|
|
|
|
|
frontend.iceHandler.onInternalError = [](const char* error) {
|
|
|
|
printf("ICE: %s\n", error);
|
|
|
|
LUAU_ASSERT(!"ICE");
|
|
|
|
};
|
|
|
|
|
|
|
|
// restart
|
|
|
|
frontend.clear();
|
|
|
|
fileResolver.source.clear();
|
|
|
|
|
|
|
|
// load sources
|
|
|
|
for (size_t i = 0; i < sources.size(); i++)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
2022-02-25 07:15:41 +08:00
|
|
|
std::string name = "module" + std::to_string(i);
|
|
|
|
fileResolver.source[name] = sources[i];
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
// check sources
|
|
|
|
for (size_t i = 0; i < sources.size(); i++)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
2022-02-25 07:15:41 +08:00
|
|
|
std::string name = "module" + std::to_string(i);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Luau::CheckResult result = frontend.check(name, std::nullopt);
|
|
|
|
|
|
|
|
// lint (note that we need access to types so we need to do this with typeck in scope)
|
|
|
|
if (kFuzzLinter && result.errors.empty())
|
|
|
|
frontend.lint(name, std::nullopt);
|
|
|
|
}
|
|
|
|
catch (std::exception&)
|
|
|
|
{
|
|
|
|
// This catches internal errors that the type checker currently (unfortunately) throws in some cases
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
// validate sharedEnv post-typecheck; valuable for debugging some typeck crashes but slows fuzzing down
|
|
|
|
// note: it's important for typeck to be destroyed at this point!
|
|
|
|
for (auto& p : frontend.typeChecker.globalScope->bindings)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
Luau::ToStringOptions opts;
|
|
|
|
opts.exhaustive = true;
|
|
|
|
opts.maxTableLength = 0;
|
|
|
|
opts.maxTypeLength = 0;
|
|
|
|
|
|
|
|
toString(p.second.typeId, opts); // toString walks the entire type, making sure ASAN catches access to destroyed type arenas
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
if (kFuzzTranspile)
|
2021-11-12 10:12:39 +08:00
|
|
|
{
|
2022-02-25 07:15:41 +08:00
|
|
|
for (Luau::ParseResult& parseResult : parseResults)
|
|
|
|
{
|
|
|
|
if (parseResult.root)
|
|
|
|
transpileWithTypes(*parseResult.root);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string bytecode;
|
|
|
|
|
|
|
|
// compile
|
|
|
|
if (kFuzzCompiler)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < parseResults.size(); i++)
|
|
|
|
{
|
|
|
|
Luau::ParseResult& parseResult = parseResults[i];
|
|
|
|
Luau::AstNameTable& parseNameTable = *parseNameTables[i];
|
|
|
|
|
|
|
|
if (parseResult.errors.empty())
|
|
|
|
{
|
|
|
|
Luau::CompileOptions compileOptions;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Luau::BytecodeBuilder bcb;
|
|
|
|
Luau::compileOrThrow(bcb, parseResult.root, parseNameTable, compileOptions);
|
|
|
|
bytecode = bcb.getBytecode();
|
|
|
|
}
|
|
|
|
catch (const Luau::CompileError&)
|
|
|
|
{
|
|
|
|
// not all valid ASTs can be compiled due to limits on number of registers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-12 10:12:39 +08:00
|
|
|
}
|
|
|
|
|
2022-02-25 07:15:41 +08:00
|
|
|
// run resulting bytecode (from last successfully compiler module)
|
2021-10-30 04:25:12 +08:00
|
|
|
if (kFuzzVM && bytecode.size())
|
|
|
|
{
|
|
|
|
static lua_State* globalState = createGlobalState();
|
|
|
|
|
|
|
|
lua_State* L = lua_newthread(globalState);
|
|
|
|
luaL_sandboxthread(L);
|
|
|
|
|
2021-11-19 06:21:07 +08:00
|
|
|
if (luau_load(L, "=fuzz", bytecode.data(), bytecode.size(), 0) == 0)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
interruptDeadline = std::chrono::system_clock::now() + kInterruptTimeout;
|
|
|
|
|
|
|
|
lua_resume(L, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_pop(globalState, 1);
|
|
|
|
|
|
|
|
// we'd expect full GC to reclaim all memory allocated by the script
|
|
|
|
lua_gc(globalState, LUA_GCCOLLECT, 0);
|
|
|
|
LUAU_ASSERT(heapSize < 256 * 1024);
|
|
|
|
}
|
|
|
|
}
|