16
16
#include " include/proxy-wasm/wasm_vm.h"
17
17
18
18
#include " include/proxy-wasm/dyn_vm_plugin.h"
19
- #include < iostream >
19
+ #include < cstdarg >
20
20
#include < dlfcn.h>
21
- #include < thread >
21
+ #include < iostream >
22
22
#include < sstream>
23
- #include < string>
24
23
#include < stdexcept>
24
+ #include < string>
25
+ #include < thread>
25
26
#include < unistd.h>
26
- #include < cstdarg>
27
27
28
28
namespace proxy_wasm {
29
29
@@ -61,16 +61,16 @@ DynVmPluginSource::~DynVmPluginSource() {
61
61
}
62
62
63
63
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallVoid<0 > *f) {
64
- if (source->dl_handle == NULL ) {
64
+ if (source->dl_handle == nullptr ) {
65
65
*f = nullptr ;
66
66
return ;
67
67
}
68
68
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
69
- if (target == NULL ) {
69
+ if (target == nullptr ) {
70
70
*f = nullptr ;
71
71
return ;
72
72
}
73
- void (* target_func)() = reinterpret_cast <void (*)()>(target);
73
+ auto target_func = reinterpret_cast <void (*)()>(target);
74
74
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context) {
75
75
proxy_wasm::SaveRestoreContext saved_context (context);
76
76
wasm_vm_->integration ()->trace (call_format (function_name, 0 ));
@@ -79,16 +79,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
79
79
}
80
80
81
81
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallVoid<1 > *f) {
82
- if (source->dl_handle == NULL ) {
82
+ if (source->dl_handle == nullptr ) {
83
83
*f = nullptr ;
84
84
return ;
85
85
}
86
86
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
87
- if (target == NULL ) {
87
+ if (target == nullptr ) {
88
88
*f = nullptr ;
89
89
return ;
90
90
}
91
- void (* target_func)( uint64_t ) = reinterpret_cast <void (*)(uint64_t )>(target);
91
+ auto target_func = reinterpret_cast <void (*)(uint64_t )>(target);
92
92
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1) {
93
93
proxy_wasm::SaveRestoreContext saved_context (context);
94
94
wasm_vm_->integration ()->trace (call_format (function_name, 1 , w1));
@@ -97,16 +97,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
97
97
}
98
98
99
99
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallVoid<2 > *f) {
100
- if (source->dl_handle == NULL ) {
100
+ if (source->dl_handle == nullptr ) {
101
101
*f = nullptr ;
102
102
return ;
103
103
}
104
104
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
105
- if (target == NULL ) {
105
+ if (target == nullptr ) {
106
106
*f = nullptr ;
107
107
return ;
108
108
}
109
- void (* target_func)( uint64_t , uint64_t ) = reinterpret_cast <void (*)(uint64_t , uint64_t )>(target);
109
+ auto target_func = reinterpret_cast <void (*)(uint64_t , uint64_t )>(target);
110
110
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1,
111
111
proxy_wasm::Word w2) {
112
112
proxy_wasm::SaveRestoreContext saved_context (context);
@@ -116,16 +116,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
116
116
}
117
117
118
118
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallVoid<3 > *f) {
119
- if (source->dl_handle == NULL ) {
119
+ if (source->dl_handle == nullptr ) {
120
120
*f = nullptr ;
121
121
return ;
122
122
}
123
123
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
124
- if (target == NULL ) {
124
+ if (target == nullptr ) {
125
125
*f = nullptr ;
126
126
return ;
127
127
}
128
- void (* target_func)( uint64_t , uint64_t , uint64_t ) =
128
+ auto target_func =
129
129
reinterpret_cast <void (*)(uint64_t , uint64_t , uint64_t )>(target);
130
130
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1,
131
131
proxy_wasm::Word w2, proxy_wasm::Word w3) {
@@ -136,16 +136,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
136
136
}
137
137
138
138
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallVoid<5 > *f) {
139
- if (source->dl_handle == NULL ) {
139
+ if (source->dl_handle == nullptr ) {
140
140
*f = nullptr ;
141
141
return ;
142
142
}
143
143
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
144
- if (target == NULL ) {
144
+ if (target == nullptr ) {
145
145
*f = nullptr ;
146
146
return ;
147
147
}
148
- void (* target_func)( uint64_t , uint64_t , uint64_t , uint64_t , uint64_t ) =
148
+ auto target_func =
149
149
reinterpret_cast <void (*)(uint64_t , uint64_t , uint64_t , uint64_t , uint64_t )>(target);
150
150
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1,
151
151
proxy_wasm::Word w2, proxy_wasm::Word w3,
@@ -157,16 +157,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
157
157
}
158
158
159
159
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallWord<1 > *f) {
160
- if (source->dl_handle == NULL || function_name == " malloc" ) {
160
+ if (source->dl_handle == nullptr || function_name == " malloc" ) {
161
161
*f = nullptr ;
162
162
return ;
163
163
}
164
164
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
165
- if (target == NULL ) {
165
+ if (target == nullptr ) {
166
166
*f = nullptr ;
167
167
return ;
168
168
}
169
- uint64_t (* target_func)( uint64_t ) = reinterpret_cast <uint64_t (*)(uint64_t )>(target);
169
+ auto target_func = reinterpret_cast <uint64_t (*)(uint64_t )>(target);
170
170
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1) {
171
171
proxy_wasm::SaveRestoreContext saved_context (context);
172
172
wasm_vm_->integration ()->trace (call_format (function_name, 1 , w1));
@@ -175,16 +175,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
175
175
}
176
176
177
177
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallWord<2 > *f) {
178
- if (source->dl_handle == NULL ) {
178
+ if (source->dl_handle == nullptr ) {
179
179
*f = nullptr ;
180
180
return ;
181
181
}
182
182
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
183
- if (target == NULL ) {
183
+ if (target == nullptr ) {
184
184
*f = nullptr ;
185
185
return ;
186
186
}
187
- uint64_t (* target_func)( uint64_t , uint64_t ) =
187
+ auto target_func =
188
188
reinterpret_cast <uint64_t (*)(uint64_t , uint64_t )>(target);
189
189
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1,
190
190
proxy_wasm::Word w2) {
@@ -195,16 +195,16 @@ void DynVmPlugin::getFunction(std::string_view function_name, proxy_wasm::WasmCa
195
195
}
196
196
197
197
void DynVmPlugin::getFunction (std::string_view function_name, proxy_wasm::WasmCallWord<3 > *f) {
198
- if (source->dl_handle == NULL ) {
198
+ if (source->dl_handle == nullptr ) {
199
199
*f = nullptr ;
200
200
return ;
201
201
}
202
202
void *target = dlsym (source->dl_handle , std::string (function_name).c_str ());
203
- if (target == NULL ) {
203
+ if (target == nullptr ) {
204
204
*f = nullptr ;
205
205
return ;
206
206
}
207
- uint64_t (* target_func)( uint64_t , uint64_t , uint64_t ) =
207
+ auto target_func =
208
208
reinterpret_cast <uint64_t (*)(uint64_t , uint64_t , uint64_t )>(target);
209
209
*f = [this , target_func, function_name](proxy_wasm::ContextBase *context, proxy_wasm::Word w1,
210
210
proxy_wasm::Word w2, proxy_wasm::Word w3) {
0 commit comments