Skip to content

Commit 70b1002

Browse files
committed
dyn vm implementation
fix comments format and lints Signed-off-by: Protryon <[email protected]>
1 parent 9be9637 commit 70b1002

13 files changed

+1003
-17
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/bazel-*
2+
.vscode

BUILD

+28
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
load("@rules_cc//cc:defs.bzl", "cc_library")
1616
load(
1717
"@proxy_wasm_cpp_host//bazel:select.bzl",
18+
"proxy_wasm_select_engine_dyn",
1819
"proxy_wasm_select_engine_null",
1920
"proxy_wasm_select_engine_v8",
2021
"proxy_wasm_select_engine_wamr",
@@ -122,6 +123,31 @@ cc_library(
122123
],
123124
)
124125

126+
cc_library(
127+
name = "dyn_lib",
128+
srcs = [
129+
"src/dyn/dyn.cc",
130+
"src/dyn/dyn_ffi.cc",
131+
"src/dyn/dyn_vm.cc",
132+
"src/dyn/dyn_vm_plugin.cc",
133+
],
134+
hdrs = [
135+
"include/proxy-wasm/dyn_vm.h",
136+
"include/proxy-wasm/dyn_vm_plugin.h",
137+
"include/proxy-wasm/wasm_api_impl.h",
138+
],
139+
defines = [
140+
"PROXY_WASM_HAS_RUNTIME_DYN",
141+
"PROXY_WASM_HOST_ENGINE_DYN",
142+
],
143+
deps = [
144+
":headers",
145+
"@com_google_protobuf//:protobuf_lite",
146+
"@proxy_wasm_cpp_sdk//:api_lib",
147+
],
148+
alwayslink = 1,
149+
)
150+
125151
cc_library(
126152
name = "v8_lib",
127153
srcs = [
@@ -315,6 +341,8 @@ cc_library(
315341
":base_lib",
316342
] + proxy_wasm_select_engine_null(
317343
[":null_lib"],
344+
) + proxy_wasm_select_engine_dyn(
345+
[":dyn_lib"],
318346
) + proxy_wasm_select_engine_v8(
319347
[":v8_lib"],
320348
) + proxy_wasm_select_engine_wamr(

bazel/BUILD

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ config_setting(
2121
values = {"define": "engine=null"},
2222
)
2323

24+
config_setting(
25+
name = "engine_dyn",
26+
values = {"define": "engine=dyn"},
27+
)
28+
2429
config_setting(
2530
name = "engine_v8",
2631
values = {"define": "engine=v8"},

bazel/select.bzl

+7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ def proxy_wasm_select_engine_null(xs):
1919
"//conditions:default": [],
2020
})
2121

22+
def proxy_wasm_select_engine_dyn(xs):
23+
return select({
24+
"@proxy_wasm_cpp_host//bazel:engine_dyn": xs,
25+
"@proxy_wasm_cpp_host//bazel:multiengine": xs,
26+
"//conditions:default": [],
27+
})
28+
2229
def proxy_wasm_select_engine_v8(xs):
2330
return select({
2431
"@proxy_wasm_cpp_host//bazel:engine_v8": xs,

include/proxy-wasm/dyn_vm.h

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
// Copyright 2016-2019 Envoy Project Authors
2+
// Copyright 2020 Google LLC
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// Unless required by applicable law or agreed to in writing, software
11+
// distributed under the License is distributed on an "AS IS" BASIS,
12+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
// See the License for the specific language governing permissions and
14+
// limitations under the License.
15+
16+
#pragma once
17+
18+
#include <memory>
19+
#include <utility>
20+
#include <vector>
21+
22+
#include "include/proxy-wasm/dyn_vm_plugin.h"
23+
#include "include/proxy-wasm/wasm_vm.h"
24+
25+
namespace proxy_wasm {
26+
27+
class WasmVm;
28+
std::unique_ptr<WasmVm> createDynVm();
29+
30+
// The DynVm wraps a C++ Wasm plugin which has been compiled with the Wasm API
31+
// and dynamically linked into the proxy.
32+
struct DynVm : public WasmVm {
33+
DynVm() : WasmVm() {}
34+
35+
// WasmVm
36+
std::string_view getEngineName() override { return "dyn"; }
37+
Cloneable cloneable() override { return Cloneable::InstantiatedModule; };
38+
std::unique_ptr<WasmVm> clone() override;
39+
bool load(std::string_view plugin_name, std::string_view precompiled,
40+
const std::unordered_map<uint32_t, std::string> &function_names) override;
41+
bool link(std::string_view debug_name) override;
42+
uint64_t getMemorySize() override;
43+
std::optional<std::string_view> getMemory(uint64_t pointer, uint64_t size) override;
44+
bool setMemory(uint64_t pointer, uint64_t size, const void *data) override;
45+
bool setWord(uint64_t pointer, Word data) override;
46+
bool getWord(uint64_t pointer, Word *data) override;
47+
size_t getWordSize() override;
48+
std::string_view getPrecompiledSectionName() override;
49+
50+
#define _FORWARD_GET_FUNCTION(_T) \
51+
void getFunction(std::string_view function_name, _T *f) override { \
52+
plugin_->getFunction(function_name, f); \
53+
}
54+
FOR_ALL_WASM_VM_EXPORTS(_FORWARD_GET_FUNCTION)
55+
#undef _FORWARD_GET_FUNCTION
56+
57+
// These are not needed for DynVm which invokes the handlers directly.
58+
#define _REGISTER_CALLBACK(_T) \
59+
void registerCallback(std::string_view, std::string_view, _T, \
60+
typename ConvertFunctionTypeWordToUint32<_T>::type) override{};
61+
FOR_ALL_WASM_VM_IMPORTS(_REGISTER_CALLBACK)
62+
#undef _REGISTER_CALLBACK
63+
64+
void terminate() override {}
65+
bool usesWasmByteOrder() override { return false; }
66+
67+
std::unique_ptr<DynVmPlugin> plugin_;
68+
};
69+
70+
} // namespace proxy_wasm

include/proxy-wasm/dyn_vm_plugin.h

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// Copyright 2016-2019 Envoy Project Authors
2+
// Copyright 2020 Google LLC
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// Unless required by applicable law or agreed to in writing, software
11+
// distributed under the License is distributed on an "AS IS" BASIS,
12+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
// See the License for the specific language governing permissions and
14+
// limitations under the License.
15+
16+
#pragma once
17+
18+
#include "include/proxy-wasm/wasm_vm.h"
19+
20+
namespace proxy_wasm {
21+
22+
class DynVmPluginSource {
23+
public:
24+
virtual ~DynVmPluginSource();
25+
void *dl_handle = nullptr;
26+
int memfd = -1;
27+
};
28+
29+
// A wrapper for the dynamically linked DynVm plugin which implements the Wasm ABI.
30+
class DynVmPlugin {
31+
public:
32+
DynVmPlugin() = default;
33+
virtual ~DynVmPlugin() = default;
34+
35+
// NB: These are defined rather than declared PURE because gmock uses __LINE__ internally for
36+
// uniqueness, making it impossible to use FOR_ALL_WASM_VM_EXPORTS with MOCK_METHOD.
37+
#define _DEFINE_GET_FUNCTION(_T) virtual void getFunction(std::string_view, _T *f);
38+
FOR_ALL_WASM_VM_EXPORTS(_DEFINE_GET_FUNCTION)
39+
#undef _DEFINE_GET_FUNCTION
40+
41+
WasmVm *wasm_vm_ = nullptr;
42+
std::shared_ptr<DynVmPluginSource> source;
43+
};
44+
45+
} // namespace proxy_wasm

include/proxy-wasm/exports.h

+4
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ Word wasi_unstable_random_get(Word, Word);
149149
Word pthread_equal(Word left, Word right);
150150
void emscripten_notify_memory_growth(Word);
151151

152+
Word set_effective_context(Word context_id);
153+
void setLimitedEffectiveContext(ContextBase *context);
154+
ContextBase *getBaseContext();
155+
152156
// Support for embedders, not exported to Wasm.
153157

154158
#define FOR_ALL_HOST_FUNCTIONS(_f) \

src/dyn/dyn.cc

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright 2016-2019 Envoy Project Authors
2+
// Copyright 2020 Google LLC
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
//
8+
// http://www.apache.org/licenses/LICENSE-2.0
9+
//
10+
// Unless required by applicable law or agreed to in writing, software
11+
// distributed under the License is distributed on an "AS IS" BASIS,
12+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
// See the License for the specific language governing permissions and
14+
// limitations under the License.
15+
16+
#include "include/proxy-wasm/dyn_vm.h"
17+
18+
namespace proxy_wasm {
19+
20+
std::unique_ptr<WasmVm> createDynVm() { return std::make_unique<DynVm>(); }
21+
22+
} // namespace proxy_wasm

0 commit comments

Comments
 (0)