evmc/examples/example.c

81 lines
2.5 KiB
C
Raw Normal View History

/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2016-2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
2018-08-30 16:16:15 +00:00
#include "example_host.h"
#ifdef STATICALLY_LINKED_EXAMPLE
#include "example_vm/example_vm.h"
#endif
2018-08-20 04:24:21 +00:00
#include <evmc/helpers.h>
#include <evmc/loader.h>
#include <inttypes.h>
#include <stdio.h>
2016-06-24 09:40:06 +00:00
int main(int argc, char* argv[])
2018-05-11 11:24:33 +00:00
{
#ifdef STATICALLY_LINKED_EXAMPLE
(void)argc;
(void)argv;
2018-08-30 16:27:44 +00:00
struct evmc_instance* vm = evmc_create_example_vm();
if (!vm)
return EVMC_LOADER_INSTANCE_CREATION_FAILURE;
2018-08-20 13:46:31 +00:00
if (!evmc_is_abi_compatible(vm))
return EVMC_LOADER_ABI_VERSION_MISMATCH;
#else
const char* config_string = (argc > 1) ? argv[1] : "example-vm.so";
enum evmc_loader_error_code error_code;
struct evmc_instance* vm = evmc_load_and_configure(config_string, &error_code);
if (!vm)
{
printf("Loading error: %d\n", error_code);
// NOTE: the values are small enough for casting
return (int)error_code;
}
#endif
2018-08-30 16:27:44 +00:00
// EVM bytecode goes here. This is one of the examples.
const uint8_t code[] = "\x30\x60\x00\x52\x59\x60\x00\xf3";
const size_t code_size = sizeof(code) - 1;
2018-06-25 11:20:18 +00:00
const uint8_t input[] = "Hello World!";
2018-09-06 17:01:46 +00:00
const evmc_uint256be value = {{1, 0}};
const evmc_address addr = {{0, 1, 2}};
2018-06-25 11:20:18 +00:00
const int64_t gas = 200000;
struct evmc_tx_context tx_context;
memset(&tx_context, 0, sizeof(tx_context));
struct evmc_context* ctx = example_host_create_context(tx_context);
2018-06-25 11:20:18 +00:00
struct evmc_message msg;
msg.sender = addr;
msg.destination = addr;
msg.value = value;
msg.input_data = input;
msg.input_size = sizeof(input);
msg.gas = gas;
msg.depth = 0;
struct evmc_result result = evmc_execute(vm, ctx, EVMC_HOMESTEAD, &msg, code, code_size);
printf("Execution result:\n");
int exit_code = 0;
2018-05-11 11:24:33 +00:00
if (result.status_code != EVMC_SUCCESS)
{
printf(" EVM execution failure: %d\n", result.status_code);
exit_code = result.status_code;
2018-05-11 11:24:33 +00:00
}
else
{
printf(" Gas used: %" PRId64 "\n", gas - result.gas_left);
printf(" Gas left: %" PRId64 "\n", result.gas_left);
printf(" Output size: %zd\n", result.output_size);
printf(" Output: ");
size_t i = 0;
2018-05-11 11:24:33 +00:00
for (i = 0; i < result.output_size; i++)
printf("%02x", result.output_data[i]);
printf("\n");
}
2018-08-20 04:24:21 +00:00
evmc_release_result(&result);
example_host_destroy_context(ctx);
2018-08-20 04:24:21 +00:00
evmc_destroy(vm);
return exit_code;
2016-06-24 09:40:06 +00:00
}