forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utility.cc
404 lines (354 loc) · 14.7 KB
/
utility.cc
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
#include "test/config/utility.h"
#include "envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.pb.h"
#include "envoy/http/codec.h"
#include "common/common/assert.h"
#include "common/config/resources.h"
#include "common/protobuf/utility.h"
#include "test/test_common/environment.h"
#include "test/test_common/network_utility.h"
namespace Envoy {
const std::string ConfigHelper::BASE_CONFIG = R"EOF(
admin:
access_log_path: /dev/null
address:
socket_address:
address: 127.0.0.1
port_value: 0
static_resources:
clusters:
name: cluster_0
hosts:
socket_address:
address: 127.0.0.1
port_value: 0
listeners:
name: listener_0
address:
socket_address:
address: 127.0.0.1
port_value: 0
)EOF";
const std::string ConfigHelper::TCP_PROXY_CONFIG = BASE_CONFIG + R"EOF(
filter_chains:
filters:
name: envoy.tcp_proxy
config:
stat_prefix: tcp_stats
cluster: cluster_0
)EOF";
const std::string ConfigHelper::HTTP_PROXY_CONFIG = BASE_CONFIG + R"EOF(
filter_chains:
filters:
name: envoy.http_connection_manager
config:
stat_prefix: config_test
http_filters:
name: envoy.router
codec_type: HTTP1
route_config:
virtual_hosts:
name: integration
routes:
route:
cluster: cluster_0
match:
prefix: "/"
domains: "*"
name: route_config_0
)EOF";
const std::string ConfigHelper::DEFAULT_BUFFER_FILTER =
R"EOF(
name: envoy.buffer
config:
max_request_bytes : 5242880
max_request_time : 120s
)EOF";
const std::string ConfigHelper::SMALL_BUFFER_FILTER =
R"EOF(
name: envoy.buffer
config:
max_request_bytes : 1024
max_request_time : 5s
)EOF";
const std::string ConfigHelper::DEFAULT_HEALTH_CHECK_FILTER =
R"EOF(
name: envoy.health_check
config:
pass_through_mode: false
endpoint: /healthcheck
)EOF";
const std::string ConfigHelper::DEFAULT_SQUASH_FILTER =
R"EOF(
name: envoy.squash
config:
cluster: squash
attachment_template:
spec:
attachment:
env: "{{ SQUASH_ENV_TEST }}"
match_request: true
attachment_timeout:
seconds: 1
nanos: 0
attachment_poll_period:
seconds: 2
nanos: 0
request_timeout:
seconds: 1
nanos: 0
)EOF";
ConfigHelper::ConfigHelper(const Network::Address::IpVersion version, const std::string& config) {
RELEASE_ASSERT(!finalized_);
std::string filename = TestEnvironment::writeStringToFileForTest("basic_config.yaml", config);
MessageUtil::loadFromFile(filename, bootstrap_);
// Fix up all the socket addresses with the correct version.
auto* admin = bootstrap_.mutable_admin();
auto* admin_socket_addr = admin->mutable_address()->mutable_socket_address();
admin_socket_addr->set_address(Network::Test::getLoopbackAddressString(version));
auto* static_resources = bootstrap_.mutable_static_resources();
for (int i = 0; i < static_resources->listeners_size(); ++i) {
auto* listener = static_resources->mutable_listeners(i);
auto* listener_socket_addr = listener->mutable_address()->mutable_socket_address();
listener_socket_addr->set_address(Network::Test::getLoopbackAddressString(version));
}
for (int i = 0; i < static_resources->clusters_size(); ++i) {
auto* cluster = static_resources->mutable_clusters(i);
if (cluster->mutable_hosts(0)->has_socket_address()) {
auto host_socket_addr = cluster->mutable_hosts(0)->mutable_socket_address();
host_socket_addr->set_address(Network::Test::getLoopbackAddressString(version));
}
}
}
void ConfigHelper::finalize(const std::vector<uint32_t>& ports) {
RELEASE_ASSERT(!finalized_);
for (auto config_modifier : config_modifiers_) {
config_modifier(bootstrap_);
}
uint32_t port_idx = 0;
bool eds_hosts = false;
auto* static_resources = bootstrap_.mutable_static_resources();
for (int i = 0; i < bootstrap_.mutable_static_resources()->clusters_size(); ++i) {
auto* cluster = static_resources->mutable_clusters(i);
if (cluster->type() == envoy::api::v2::Cluster::EDS) {
eds_hosts = true;
} else {
for (int j = 0; j < cluster->hosts_size(); ++j) {
if (cluster->mutable_hosts(j)->has_socket_address()) {
auto* host_socket_addr = cluster->mutable_hosts(j)->mutable_socket_address();
RELEASE_ASSERT(ports.size() > port_idx);
host_socket_addr->set_port_value(ports[port_idx++]);
}
}
}
}
ASSERT(port_idx == ports.size() || eds_hosts);
if (!connect_timeout_set_) {
#ifdef __APPLE__
// Set a high default connect timeout. Under heavy load (and in particular in CI), macOS
// connections can take inordinately long to complete.
setConnectTimeout(std::chrono::seconds(30));
#else
// Set a default connect timeout.
setConnectTimeout(std::chrono::seconds(5));
#endif
}
finalized_ = true;
}
void ConfigHelper::setSourceAddress(const std::string& address_string) {
RELEASE_ASSERT(!finalized_);
bootstrap_.mutable_cluster_manager()
->mutable_upstream_bind_config()
->mutable_source_address()
->set_address(address_string);
// We don't have the ability to bind to specific ports yet.
bootstrap_.mutable_cluster_manager()
->mutable_upstream_bind_config()
->mutable_source_address()
->set_port_value(0);
}
void ConfigHelper::setDefaultHostAndRoute(const std::string& domains, const std::string& prefix) {
RELEASE_ASSERT(!finalized_);
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager hcm_config;
loadHttpConnectionManager(hcm_config);
auto* virtual_host = hcm_config.mutable_route_config()->mutable_virtual_hosts(0);
virtual_host->set_domains(0, domains);
virtual_host->mutable_routes(0)->mutable_match()->set_prefix(prefix);
storeHttpConnectionManager(hcm_config);
}
void ConfigHelper::setBufferLimits(uint32_t upstream_buffer_limit,
uint32_t downstream_buffer_limit) {
RELEASE_ASSERT(!finalized_);
RELEASE_ASSERT(bootstrap_.mutable_static_resources()->listeners_size() == 1);
auto* listener = bootstrap_.mutable_static_resources()->mutable_listeners(0);
listener->mutable_per_connection_buffer_limit_bytes()->set_value(downstream_buffer_limit);
auto* static_resources = bootstrap_.mutable_static_resources();
for (int i = 0; i < bootstrap_.mutable_static_resources()->clusters_size(); ++i) {
auto* cluster = static_resources->mutable_clusters(i);
cluster->mutable_per_connection_buffer_limit_bytes()->set_value(upstream_buffer_limit);
}
auto filter = getFilterFromListener("envoy.http_connection_manager");
if (filter) {
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager hcm_config;
loadHttpConnectionManager(hcm_config);
if (hcm_config.codec_type() ==
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager::HTTP2) {
const uint32_t size =
std::max(downstream_buffer_limit, Http::Http2Settings::MIN_INITIAL_STREAM_WINDOW_SIZE);
auto* options = hcm_config.mutable_http2_protocol_options();
options->mutable_initial_stream_window_size()->set_value(size);
storeHttpConnectionManager(hcm_config);
}
}
}
void ConfigHelper::setConnectTimeout(std::chrono::milliseconds timeout) {
RELEASE_ASSERT(!finalized_);
auto* static_resources = bootstrap_.mutable_static_resources();
for (int i = 0; i < bootstrap_.mutable_static_resources()->clusters_size(); ++i) {
auto* cluster = static_resources->mutable_clusters(i);
auto* connect_timeout = cluster->mutable_connect_timeout();
auto seconds = std::chrono::duration_cast<std::chrono::seconds>(timeout);
connect_timeout->set_seconds(seconds.count());
connect_timeout->set_nanos(
std::chrono::duration_cast<std::chrono::nanoseconds>(timeout - seconds).count());
}
connect_timeout_set_ = true;
}
void ConfigHelper::addRoute(const std::string& domains, const std::string& prefix,
const std::string& cluster, bool validate_clusters,
envoy::api::v2::route::RouteAction::ClusterNotFoundResponseCode code,
envoy::api::v2::route::VirtualHost::TlsRequirementType type) {
RELEASE_ASSERT(!finalized_);
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager hcm_config;
loadHttpConnectionManager(hcm_config);
auto* route_config = hcm_config.mutable_route_config();
route_config->mutable_validate_clusters()->set_value(validate_clusters);
auto* virtual_host = route_config->add_virtual_hosts();
virtual_host->set_name(domains);
virtual_host->add_domains(domains);
virtual_host->add_routes()->mutable_match()->set_prefix(prefix);
virtual_host->mutable_routes(0)->mutable_route()->set_cluster(cluster);
virtual_host->mutable_routes(0)->mutable_route()->set_cluster_not_found_response_code(code);
virtual_host->set_require_tls(type);
storeHttpConnectionManager(hcm_config);
}
void ConfigHelper::addFilter(const std::string& config) {
RELEASE_ASSERT(!finalized_);
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager hcm_config;
loadHttpConnectionManager(hcm_config);
auto* filter_list_back = hcm_config.add_http_filters();
const std::string json = Json::Factory::loadFromYamlString(config)->asJsonString();
MessageUtil::loadFromJson(json, *filter_list_back);
// Now move it to the front.
for (int i = hcm_config.http_filters_size() - 1; i > 0; --i) {
hcm_config.mutable_http_filters()->SwapElements(i, i - 1);
}
storeHttpConnectionManager(hcm_config);
}
void ConfigHelper::setClientCodec(
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager::CodecType
type) {
RELEASE_ASSERT(!finalized_);
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager hcm_config;
if (loadHttpConnectionManager(hcm_config)) {
hcm_config.set_codec_type(type);
storeHttpConnectionManager(hcm_config);
}
}
void ConfigHelper::addSslConfig() {
RELEASE_ASSERT(!finalized_);
auto* filter_chain =
bootstrap_.mutable_static_resources()->mutable_listeners(0)->mutable_filter_chains(0);
auto* common_tls_context = filter_chain->mutable_tls_context()->mutable_common_tls_context();
common_tls_context->add_alpn_protocols("h2");
common_tls_context->add_alpn_protocols("http/1.1");
common_tls_context->mutable_deprecated_v1()->set_alt_alpn_protocols("http/1.1");
auto* validation_context = common_tls_context->mutable_validation_context();
validation_context->mutable_trusted_ca()->set_filename(
TestEnvironment::runfilesPath("test/config/integration/certs/cacert.pem"));
validation_context->add_verify_certificate_hash(
"E0:F3:C8:CE:5E:2E:A3:05:F0:70:1F:F5:12:E3:6E:2E:"
"97:92:82:84:A2:28:BC:F7:73:32:D3:39:30:A1:B6:FD");
auto* tls_certificate = common_tls_context->add_tls_certificates();
tls_certificate->mutable_certificate_chain()->set_filename(
TestEnvironment::runfilesPath("/test/config/integration/certs/servercert.pem"));
tls_certificate->mutable_private_key()->set_filename(
TestEnvironment::runfilesPath("/test/config/integration/certs/serverkey.pem"));
}
void ConfigHelper::renameListener(const std::string& name) {
auto* static_resources = bootstrap_.mutable_static_resources();
if (static_resources->listeners_size() > 0) {
static_resources->mutable_listeners(0)->set_name(name);
}
}
envoy::api::v2::listener::Filter* ConfigHelper::getFilterFromListener(const std::string& name) {
RELEASE_ASSERT(!finalized_);
if (bootstrap_.mutable_static_resources()->listeners_size() == 0) {
return nullptr;
}
auto* listener = bootstrap_.mutable_static_resources()->mutable_listeners(0);
if (listener->filter_chains_size() == 0) {
return nullptr;
}
auto* filter_chain = listener->mutable_filter_chains(0);
for (ssize_t i = 0; i < filter_chain->filters_size(); i++) {
if (filter_chain->mutable_filters(i)->name() == name) {
return filter_chain->mutable_filters(i);
}
}
return nullptr;
}
bool ConfigHelper::loadHttpConnectionManager(
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager& hcm) {
RELEASE_ASSERT(!finalized_);
auto* hcm_filter = getFilterFromListener("envoy.http_connection_manager");
if (hcm_filter) {
MessageUtil::jsonConvert(*hcm_filter->mutable_config(), hcm);
return true;
}
return false;
}
void ConfigHelper::storeHttpConnectionManager(
const envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager& hcm) {
RELEASE_ASSERT(!finalized_);
auto* hcm_config_struct =
getFilterFromListener("envoy.http_connection_manager")->mutable_config();
MessageUtil::jsonConvert(hcm, *hcm_config_struct);
}
void ConfigHelper::addConfigModifier(ConfigModifierFunction function) {
RELEASE_ASSERT(!finalized_);
config_modifiers_.push_back(std::move(function));
}
void ConfigHelper::addConfigModifier(HttpModifierFunction function) {
addConfigModifier([function, this](envoy::config::bootstrap::v2::Bootstrap&) -> void {
envoy::config::filter::network::http_connection_manager::v2::HttpConnectionManager hcm_config;
loadHttpConnectionManager(hcm_config);
function(hcm_config);
storeHttpConnectionManager(hcm_config);
});
}
EdsHelper::EdsHelper() : eds_path_(TestEnvironment::writeStringToFileForTest("eds.pb_text", "")) {
// cluster.cluster_0.update_success will be incremented on the initial
// load when Envoy comes up.
++update_successes_;
}
void EdsHelper::setEds(
const std::vector<envoy::api::v2::ClusterLoadAssignment>& cluster_load_assignments,
IntegrationTestServerStats& server_stats) {
// Write to file the DiscoveryResponse and trigger inotify watch.
envoy::api::v2::DiscoveryResponse eds_response;
eds_response.set_version_info(std::to_string(eds_version_++));
eds_response.set_type_url(Config::TypeUrl::get().ClusterLoadAssignment);
for (const auto& cluster_load_assignment : cluster_load_assignments) {
eds_response.add_resources()->PackFrom(cluster_load_assignment);
}
// Past the initial write, need move semantics to trigger inotify move event that the
// FilesystemSubscriptionImpl is subscribed to.
std::string path =
TestEnvironment::writeStringToFileForTest("eds.update.pb_text", eds_response.DebugString());
RELEASE_ASSERT(::rename(path.c_str(), eds_path_.c_str()) == 0);
// Make sure Envoy has consumed the update now that it is running.
server_stats.waitForCounterGe("cluster.cluster_0.update_success", ++update_successes_);
RELEASE_ASSERT(update_successes_ ==
server_stats.counter("cluster.cluster_0.update_success")->value());
}
} // namespace Envoy