File: multimemory.c

package info (click to toggle)
rust-wasmtime 26.0.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 48,504 kB
  • sloc: ansic: 4,003; sh: 561; javascript: 542; cpp: 254; asm: 175; ml: 96; makefile: 55
file content (344 lines) | stat: -rw-r--r-- 11,952 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/*
An example of how to interact with multiple memories.

You can compile and run this example on Linux with:

   cargo build --release -p wasmtime-c-api
   cc examples/multimemory.c \
       -I crates/c-api/include \
       target/release/libwasmtime.a \
       -lpthread -ldl -lm \
       -o multimemory
   ./multimemory

Note that on Windows and macOS the command will be similar, but you'll need
to tweak the `-lpthread` and such annotations.

You can also build using cmake:

mkdir build && cd build && cmake .. && \
  cmake --build . --target wasmtime-multimemory
*/

#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wasm.h>
#include <wasmtime.h>

static void exit_with_error(const char *message, wasmtime_error_t *error,
                            wasm_trap_t *trap);

void check(bool success) {
  if (!success) {
    printf("> Error, expected success\n");
    exit(1);
  }
}

void check_call(wasmtime_context_t *store, wasmtime_func_t *func,
                const wasmtime_val_t *args, size_t nargs, int32_t expected) {
  wasmtime_val_t results[1];
  wasm_trap_t *trap = NULL;
  wasmtime_error_t *error =
      wasmtime_func_call(store, func, args, nargs, results, 1, &trap);
  if (error != NULL || trap != NULL)
    exit_with_error("failed to call function", error, trap);
  if (results[0].of.i32 != expected) {
    printf("> Error on result\n");
    exit(1);
  }
}

void check_call0(wasmtime_context_t *store, wasmtime_func_t *func,
                 int32_t expected) {
  check_call(store, func, NULL, 0, expected);
}

void check_call1(wasmtime_context_t *store, wasmtime_func_t *func, int32_t arg,
                 int32_t expected) {
  wasmtime_val_t args[1];
  args[0].kind = WASMTIME_I32;
  args[0].of.i32 = arg;
  check_call(store, func, args, 1, expected);
}

void check_call2(wasmtime_context_t *store, wasmtime_func_t *func, int32_t arg1,
                 int32_t arg2, int32_t expected) {
  wasmtime_val_t args[2];
  args[0].kind = WASMTIME_I32;
  args[0].of.i32 = arg1;
  args[1].kind = WASMTIME_I32;
  args[1].of.i32 = arg2;
  check_call(store, func, args, 2, expected);
}

void check_ok(wasmtime_context_t *store, wasmtime_func_t *func,
              const wasmtime_val_t *args, size_t nargs) {
  wasm_trap_t *trap = NULL;
  wasmtime_error_t *error =
      wasmtime_func_call(store, func, args, nargs, NULL, 0, &trap);
  if (error != NULL || trap != NULL)
    exit_with_error("failed to call function", error, trap);
}

void check_ok2(wasmtime_context_t *store, wasmtime_func_t *func, int32_t arg1,
               int32_t arg2) {
  wasmtime_val_t args[2];
  args[0].kind = WASMTIME_I32;
  args[0].of.i32 = arg1;
  args[1].kind = WASMTIME_I32;
  args[1].of.i32 = arg2;
  check_ok(store, func, args, 2);
}

void check_trap(wasmtime_context_t *store, wasmtime_func_t *func,
                const wasmtime_val_t *args, size_t nargs, size_t num_results) {
  assert(num_results <= 1);
  wasmtime_val_t results[1];
  wasm_trap_t *trap = NULL;
  wasmtime_error_t *error =
      wasmtime_func_call(store, func, args, nargs, results, num_results, &trap);
  if (error != NULL)
    exit_with_error("failed to call function", error, NULL);
  if (trap == NULL) {
    printf("> Error on result, expected trap\n");
    exit(1);
  }
  wasm_trap_delete(trap);
}

void check_trap1(wasmtime_context_t *store, wasmtime_func_t *func,
                 int32_t arg) {
  wasmtime_val_t args[1];
  args[0].kind = WASMTIME_I32;
  args[0].of.i32 = arg;
  check_trap(store, func, args, 1, 1);
}

void check_trap2(wasmtime_context_t *store, wasmtime_func_t *func, int32_t arg1,
                 int32_t arg2) {
  wasmtime_val_t args[2];
  args[0].kind = WASMTIME_I32;
  args[0].of.i32 = arg1;
  args[1].kind = WASMTIME_I32;
  args[1].of.i32 = arg2;
  check_trap(store, func, args, 2, 0);
}

int main(int argc, const char *argv[]) {
  // Initialize.
  printf("Initializing...\n");

  wasm_config_t *config = wasm_config_new();
  assert(config != NULL);
  wasmtime_config_wasm_multi_memory_set(config, true);

  wasm_engine_t *engine = wasm_engine_new_with_config(config);
  assert(engine != NULL);

  wasmtime_store_t *store = wasmtime_store_new(engine, NULL, NULL);
  wasmtime_context_t *context = wasmtime_store_context(store);

  // Load our input file to parse it next
  FILE *file = fopen("examples/multimemory.wat", "r");
  if (!file) {
    printf("> Error loading file!\n");
    return 1;
  }
  fseek(file, 0L, SEEK_END);
  size_t file_size = ftell(file);
  fseek(file, 0L, SEEK_SET);
  wasm_byte_vec_t wat;
  wasm_byte_vec_new_uninitialized(&wat, file_size);
  if (fread(wat.data, file_size, 1, file) != 1) {
    printf("> Error loading module!\n");
    return 1;
  }
  fclose(file);

  // Parse the wat into the binary wasm format
  wasm_byte_vec_t binary;
  wasmtime_error_t *error = wasmtime_wat2wasm(wat.data, wat.size, &binary);
  if (error != NULL)
    exit_with_error("failed to parse wat", error, NULL);
  wasm_byte_vec_delete(&wat);

  // Compile.
  printf("Compiling module...\n");
  wasmtime_module_t *module = NULL;
  error =
      wasmtime_module_new(engine, (uint8_t *)binary.data, binary.size, &module);
  if (error)
    exit_with_error("failed to compile module", error, NULL);
  wasm_byte_vec_delete(&binary);

  // Instantiate.
  printf("Instantiating module...\n");
  wasmtime_instance_t instance;
  wasm_trap_t *trap = NULL;
  error = wasmtime_instance_new(context, module, NULL, 0, &instance, &trap);
  if (error != NULL || trap != NULL)
    exit_with_error("failed to instantiate", error, trap);
  wasmtime_module_delete(module);

  // Extract export.
  printf("Extracting exports...\n");
  wasmtime_memory_t memory0, memory1;
  wasmtime_func_t size0, load0, store0, size1, load1, store1;
  wasmtime_extern_t item;
  bool ok;
  ok = wasmtime_instance_export_get(context, &instance, "memory0",
                                    strlen("memory0"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_MEMORY);
  memory0 = item.of.memory;
  ok = wasmtime_instance_export_get(context, &instance, "size0",
                                    strlen("size0"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_FUNC);
  size0 = item.of.func;
  ok = wasmtime_instance_export_get(context, &instance, "load0",
                                    strlen("load0"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_FUNC);
  load0 = item.of.func;
  ok = wasmtime_instance_export_get(context, &instance, "store0",
                                    strlen("store0"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_FUNC);
  store0 = item.of.func;
  ok = wasmtime_instance_export_get(context, &instance, "memory1",
                                    strlen("memory1"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_MEMORY);
  memory1 = item.of.memory;
  ok = wasmtime_instance_export_get(context, &instance, "size1",
                                    strlen("size1"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_FUNC);
  size1 = item.of.func;
  ok = wasmtime_instance_export_get(context, &instance, "load1",
                                    strlen("load1"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_FUNC);
  load1 = item.of.func;
  ok = wasmtime_instance_export_get(context, &instance, "store1",
                                    strlen("store1"), &item);
  assert(ok && item.kind == WASMTIME_EXTERN_FUNC);
  store1 = item.of.func;

  // Check initial memory.
  printf("Checking memory...\n");
  check(wasmtime_memory_size(context, &memory0) == 2);
  check(wasmtime_memory_data_size(context, &memory0) == 0x20000);
  check(wasmtime_memory_data(context, &memory0)[0] == 0);
  check(wasmtime_memory_data(context, &memory0)[0x1000] == 1);
  check(wasmtime_memory_data(context, &memory0)[0x1001] == 2);
  check(wasmtime_memory_data(context, &memory0)[0x1002] == 3);
  check(wasmtime_memory_data(context, &memory0)[0x1003] == 4);

  check_call0(context, &size0, 2);
  check_call1(context, &load0, 0, 0);
  check_call1(context, &load0, 0x1000, 1);
  check_call1(context, &load0, 0x1001, 2);
  check_call1(context, &load0, 0x1002, 3);
  check_call1(context, &load0, 0x1003, 4);
  check_call1(context, &load0, 0x1ffff, 0);
  check_trap1(context, &load0, 0x20000);

  check(wasmtime_memory_size(context, &memory1) == 2);
  check(wasmtime_memory_data_size(context, &memory1) == 0x20000);
  check(wasmtime_memory_data(context, &memory1)[0] == 0);
  check(wasmtime_memory_data(context, &memory1)[0x1000] == 4);
  check(wasmtime_memory_data(context, &memory1)[0x1001] == 3);
  check(wasmtime_memory_data(context, &memory1)[0x1002] == 2);
  check(wasmtime_memory_data(context, &memory1)[0x1003] == 1);

  check_call0(context, &size1, 2);
  check_call1(context, &load1, 0, 0);
  check_call1(context, &load1, 0x1000, 4);
  check_call1(context, &load1, 0x1001, 3);
  check_call1(context, &load1, 0x1002, 2);
  check_call1(context, &load1, 0x1003, 1);
  check_call1(context, &load1, 0x1ffff, 0);
  check_trap1(context, &load1, 0x20000);

  // Mutate memory.
  printf("Mutating memory...\n");
  wasmtime_memory_data(context, &memory0)[0x1003] = 5;
  check_ok2(context, &store0, 0x1002, 6);
  check_trap2(context, &store0, 0x20000, 0);

  check(wasmtime_memory_data(context, &memory0)[0x1002] == 6);
  check(wasmtime_memory_data(context, &memory0)[0x1003] == 5);
  check_call1(context, &load0, 0x1002, 6);
  check_call1(context, &load0, 0x1003, 5);

  wasmtime_memory_data(context, &memory1)[0x1003] = 7;
  check_ok2(context, &store1, 0x1002, 8);
  check_trap2(context, &store1, 0x20000, 0);

  check(wasmtime_memory_data(context, &memory1)[0x1002] == 8);
  check(wasmtime_memory_data(context, &memory1)[0x1003] == 7);
  check_call1(context, &load1, 0x1002, 8);
  check_call1(context, &load1, 0x1003, 7);

  // Grow memory.
  printf("Growing memory...\n");
  uint64_t old_size;
  error = wasmtime_memory_grow(context, &memory0, 1, &old_size);
  if (error != NULL)
    exit_with_error("failed to grow memory", error, trap);
  check(wasmtime_memory_size(context, &memory0) == 3);
  check(wasmtime_memory_data_size(context, &memory0) == 0x30000);

  check_call1(context, &load0, 0x20000, 0);
  check_ok2(context, &store0, 0x20000, 0);
  check_trap1(context, &load0, 0x30000);
  check_trap2(context, &store0, 0x30000, 0);

  error = wasmtime_memory_grow(context, &memory0, 1, &old_size);
  assert(error != NULL);
  wasmtime_error_delete(error);
  error = wasmtime_memory_grow(context, &memory0, 0, &old_size);
  if (error != NULL)
    exit_with_error("failed to grow memory", error, trap);

  error = wasmtime_memory_grow(context, &memory1, 2, &old_size);
  if (error != NULL)
    exit_with_error("failed to grow memory", error, trap);
  check(wasmtime_memory_size(context, &memory1) == 4);
  check(wasmtime_memory_data_size(context, &memory1) == 0x40000);

  check_call1(context, &load1, 0x30000, 0);
  check_ok2(context, &store1, 0x30000, 0);
  check_trap1(context, &load1, 0x40000);
  check_trap2(context, &store1, 0x40000, 0);

  error = wasmtime_memory_grow(context, &memory1, 1, &old_size);
  assert(error != NULL);
  wasmtime_error_delete(error);
  error = wasmtime_memory_grow(context, &memory1, 0, &old_size);
  if (error != NULL)
    exit_with_error("failed to grow memory", error, trap);

  // Shut down.
  printf("Shutting down...\n");
  wasmtime_store_delete(store);
  wasm_engine_delete(engine);

  // All done.
  printf("Done.\n");
  return 0;
}

static void exit_with_error(const char *message, wasmtime_error_t *error,
                            wasm_trap_t *trap) {
  fprintf(stderr, "error: %s\n", message);
  wasm_byte_vec_t error_message;
  if (error != NULL) {
    wasmtime_error_message(error, &error_message);
    wasmtime_error_delete(error);
  } else {
    wasm_trap_message(trap, &error_message);
    wasm_trap_delete(trap);
  }
  fprintf(stderr, "%.*s\n", (int)error_message.size, error_message.data);
  wasm_byte_vec_delete(&error_message);
  exit(1);
}