2021-04-26 08:18:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/File.h>
|
|
|
|
#include <LibCore/FileStream.h>
|
2021-04-30 20:38:51 +00:00
|
|
|
#include <LibWasm/AbstractMachine/AbstractMachine.h>
|
2021-04-27 17:43:01 +00:00
|
|
|
#include <LibWasm/Printer/Printer.h>
|
2021-04-26 08:18:13 +00:00
|
|
|
#include <LibWasm/Types.h>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
const char* filename = nullptr;
|
2021-04-27 17:43:01 +00:00
|
|
|
bool print = false;
|
2021-04-30 20:38:51 +00:00
|
|
|
bool attempt_instantiate = false;
|
2021-04-30 22:49:01 +00:00
|
|
|
String exported_function_to_execute;
|
|
|
|
Vector<u64> values_to_push;
|
2021-04-26 08:18:13 +00:00
|
|
|
|
|
|
|
Core::ArgsParser parser;
|
|
|
|
parser.add_positional_argument(filename, "File name to parse", "file");
|
2021-04-27 17:43:01 +00:00
|
|
|
parser.add_option(print, "Print the parsed module", "print", 'p');
|
2021-04-30 20:38:51 +00:00
|
|
|
parser.add_option(attempt_instantiate, "Attempt to instantiate the module", "instantiate", 'i');
|
2021-04-30 22:49:01 +00:00
|
|
|
parser.add_option(exported_function_to_execute, "Attempt to execute the named exported function from the module (implies -i)", "execute", 'e', "name");
|
|
|
|
parser.add_option(Core::ArgsParser::Option {
|
|
|
|
.requires_argument = true,
|
|
|
|
.help_string = "Supply arguments to the function (default=0) (expects u64, casts to required type)",
|
|
|
|
.long_name = "arg",
|
|
|
|
.short_name = 0,
|
|
|
|
.value_name = "u64",
|
|
|
|
.accept_value = [&](const char* str) -> bool {
|
|
|
|
if (auto v = StringView { str }.to_uint<u64>(); v.has_value()) {
|
|
|
|
values_to_push.append(v.value());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
});
|
2021-04-26 08:18:13 +00:00
|
|
|
parser.parse(argc, argv);
|
|
|
|
|
2021-04-30 22:49:01 +00:00
|
|
|
if (!exported_function_to_execute.is_empty())
|
2021-04-30 20:38:51 +00:00
|
|
|
attempt_instantiate = true;
|
|
|
|
|
2021-05-12 09:26:43 +00:00
|
|
|
auto result = Core::File::open(filename, Core::OpenMode::ReadOnly);
|
2021-04-26 08:18:13 +00:00
|
|
|
if (result.is_error()) {
|
|
|
|
warnln("Failed to open {}: {}", filename, result.error());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto stream = Core::InputFileStream(result.release_value());
|
|
|
|
auto parse_result = Wasm::Module::parse(stream);
|
|
|
|
if (parse_result.is_error()) {
|
|
|
|
warnln("Something went wrong, either the file is invalid, or there's a bug with LibWasm!");
|
2021-04-27 11:53:36 +00:00
|
|
|
warnln("The parse error was {}", Wasm::parse_error_to_string(parse_result.error()));
|
2021-04-26 08:18:13 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2021-04-30 20:38:51 +00:00
|
|
|
if (print && !attempt_instantiate) {
|
2021-04-27 17:43:01 +00:00
|
|
|
auto out_stream = Core::OutputFileStream::standard_output();
|
|
|
|
Wasm::Printer printer(out_stream);
|
|
|
|
printer.print(parse_result.value());
|
|
|
|
}
|
|
|
|
|
2021-04-30 20:38:51 +00:00
|
|
|
if (attempt_instantiate) {
|
|
|
|
Wasm::AbstractMachine machine;
|
|
|
|
auto result = machine.instantiate(parse_result.value(), {});
|
|
|
|
if (result.is_error()) {
|
|
|
|
warnln("Module instantiation failed: {}", result.error().error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto stream = Core::OutputFileStream::standard_output();
|
|
|
|
auto print_func = [&](const auto& address) {
|
|
|
|
Wasm::FunctionInstance* fn = machine.store().get(address);
|
|
|
|
stream.write(String::formatted("- Function with address {}, ptr = {}\n", address.value(), fn).bytes());
|
|
|
|
if (fn) {
|
|
|
|
stream.write(String::formatted(" wasm function? {}\n", fn->has<Wasm::WasmFunction>()).bytes());
|
|
|
|
fn->visit(
|
|
|
|
[&](const Wasm::WasmFunction& func) {
|
|
|
|
Wasm::Printer printer { stream, 3 };
|
|
|
|
stream.write(" type:\n"sv.bytes());
|
|
|
|
printer.print(func.type());
|
|
|
|
stream.write(" code:\n"sv.bytes());
|
|
|
|
printer.print(func.code());
|
|
|
|
},
|
|
|
|
[](const Wasm::HostFunction&) {});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (print) {
|
|
|
|
// Now, let's dump the functions!
|
|
|
|
for (auto& address : machine.module_instance().functions()) {
|
|
|
|
print_func(address);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-30 22:49:01 +00:00
|
|
|
if (!exported_function_to_execute.is_empty()) {
|
2021-04-30 20:38:51 +00:00
|
|
|
Optional<Wasm::FunctionAddress> run_address;
|
|
|
|
Vector<Wasm::Value> values;
|
2021-04-30 22:49:01 +00:00
|
|
|
for (auto& entry : machine.module_instance().exports()) {
|
|
|
|
if (entry.name() == exported_function_to_execute) {
|
|
|
|
if (auto addr = entry.value().get_pointer<Wasm::FunctionAddress>())
|
|
|
|
run_address = *addr;
|
2021-04-30 20:38:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!run_address.has_value()) {
|
2021-04-30 22:49:01 +00:00
|
|
|
warnln("No such exported function, sorry :(");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto instance = machine.store().get(*run_address);
|
|
|
|
VERIFY(instance);
|
|
|
|
|
|
|
|
if (instance->has<Wasm::HostFunction>()) {
|
|
|
|
warnln("Exported function is a host function, cannot run that yet");
|
2021-04-30 20:38:51 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2021-04-30 22:49:01 +00:00
|
|
|
|
|
|
|
for (auto& param : instance->get<Wasm::WasmFunction>().type().parameters()) {
|
|
|
|
if (values_to_push.is_empty())
|
|
|
|
values.append(Wasm::Value { param, 0ull });
|
|
|
|
else
|
|
|
|
values.append(Wasm::Value { param, values_to_push.take_last() });
|
|
|
|
}
|
|
|
|
|
|
|
|
if (print) {
|
|
|
|
outln("Executing ");
|
|
|
|
print_func(*run_address);
|
|
|
|
outln();
|
|
|
|
}
|
2021-04-30 20:38:51 +00:00
|
|
|
|
|
|
|
auto result = machine.invoke(run_address.value(), move(values));
|
2021-05-14 18:04:35 +00:00
|
|
|
if (result.is_trap())
|
|
|
|
warnln("Execution trapped!");
|
2021-04-30 20:38:51 +00:00
|
|
|
if (!result.values().is_empty())
|
|
|
|
warnln("Returned:");
|
|
|
|
for (auto& value : result.values()) {
|
|
|
|
value.value().visit(
|
|
|
|
[&](const auto& value) {
|
|
|
|
if constexpr (requires { value.value(); })
|
|
|
|
out(" -> addr{} ", value.value());
|
|
|
|
else
|
|
|
|
out(" -> {} ", value);
|
|
|
|
});
|
|
|
|
Wasm::Printer printer { stream };
|
|
|
|
printer.print(value.type());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-26 08:18:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|