forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sds_dynamic_integration_test.cc
420 lines (355 loc) · 17.2 KB
/
sds_dynamic_integration_test.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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#include <memory>
#include <string>
#include "envoy/service/discovery/v2/sds.pb.h"
#include "common/config/resources.h"
#include "common/event/dispatcher_impl.h"
#include "common/network/connection_impl.h"
#include "common/network/utility.h"
#include "common/ssl/context_config_impl.h"
#include "common/ssl/context_manager_impl.h"
#include "test/common/grpc/grpc_client_integration.h"
#include "test/integration/http_integration.h"
#include "test/integration/server.h"
#include "test/integration/ssl_utility.h"
#include "test/mocks/init/mocks.h"
#include "test/mocks/runtime/mocks.h"
#include "test/mocks/secret/mocks.h"
#include "test/mocks/server/mocks.h"
#include "test/test_common/network_utility.h"
#include "test/test_common/utility.h"
#include "absl/strings/match.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "integration.h"
#include "utility.h"
using testing::NiceMock;
using testing::Return;
namespace Envoy {
namespace Ssl {
// Hack to force linking of the service: https://github.com/google/protobuf/issues/4221.
const envoy::service::discovery::v2::SdsDummy _sds_dummy;
// Sds integration base class with following support:
// * functions to create sds upstream, and send sds response
// * functions to create secret protobuf.
class SdsDynamicIntegrationBaseTest : public HttpIntegrationTest,
public Grpc::GrpcClientIntegrationParamTest {
public:
SdsDynamicIntegrationBaseTest()
: HttpIntegrationTest(Http::CodecClient::Type::HTTP1, ipVersion(), realTime()),
server_cert_("server_cert"), validation_secret_("validation_secret"),
client_cert_("client_cert") {}
protected:
void createSdsStream(FakeUpstream& upstream) {
sds_upstream_ = &upstream;
AssertionResult result1 = sds_upstream_->waitForHttpConnection(*dispatcher_, sds_connection_);
RELEASE_ASSERT(result1, result1.message());
AssertionResult result2 = sds_connection_->waitForNewStream(*dispatcher_, sds_stream_);
RELEASE_ASSERT(result2, result2.message());
sds_stream_->startGrpcStream();
}
envoy::api::v2::auth::Secret getServerSecret() {
envoy::api::v2::auth::Secret secret;
secret.set_name(server_cert_);
auto* tls_certificate = secret.mutable_tls_certificate();
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"));
return secret;
}
envoy::api::v2::auth::Secret getCvcSecret() {
envoy::api::v2::auth::Secret secret;
secret.set_name(validation_secret_);
auto* validation_context = secret.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");
return secret;
}
envoy::api::v2::auth::Secret getClientSecret() {
envoy::api::v2::auth::Secret secret;
secret.set_name(client_cert_);
auto* tls_certificate = secret.mutable_tls_certificate();
tls_certificate->mutable_certificate_chain()->set_filename(
TestEnvironment::runfilesPath("/test/config/integration/certs/clientcert.pem"));
tls_certificate->mutable_private_key()->set_filename(
TestEnvironment::runfilesPath("/test/config/integration/certs/clientkey.pem"));
return secret;
}
envoy::api::v2::auth::Secret getWrongSecret(const std::string& secret_name) {
envoy::api::v2::auth::Secret secret;
secret.set_name(secret_name);
secret.mutable_tls_certificate();
return secret;
}
void sendSdsResponse(const envoy::api::v2::auth::Secret& secret) {
envoy::api::v2::DiscoveryResponse discovery_response;
discovery_response.set_version_info("1");
discovery_response.set_type_url(Config::TypeUrl::get().Secret);
discovery_response.add_resources()->PackFrom(secret);
sds_stream_->sendGrpcMessage(discovery_response);
}
void cleanUpSdsConnection() {
ASSERT(sds_upstream_ != nullptr);
// Don't ASSERT fail if an ADS reconnect ends up unparented.
sds_upstream_->set_allow_unexpected_disconnects(true);
AssertionResult result = sds_connection_->close();
RELEASE_ASSERT(result, result.message());
result = sds_connection_->waitForDisconnect();
RELEASE_ASSERT(result, result.message());
sds_connection_.reset();
}
void PrintServerCounters() {
std::cerr << "all counters" << std::endl;
for (const auto& c : test_server_->counters()) {
std::cerr << "counter: " << c->name() << ", value: " << c->value() << std::endl;
}
}
const std::string server_cert_;
const std::string validation_secret_;
const std::string client_cert_;
Runtime::MockLoader runtime_;
Ssl::ContextManagerImpl context_manager_{runtime_};
FakeHttpConnectionPtr sds_connection_;
FakeUpstream* sds_upstream_{};
FakeStreamPtr sds_stream_;
};
// Downstream SDS integration test: static Listener with ssl cert from SDS
class SdsDynamicDownstreamIntegrationTest : public SdsDynamicIntegrationBaseTest {
public:
void initialize() override {
config_helper_.addConfigModifier([this](envoy::config::bootstrap::v2::Bootstrap& bootstrap) {
auto* common_tls_context = bootstrap.mutable_static_resources()
->mutable_listeners(0)
->mutable_filter_chains(0)
->mutable_tls_context()
->mutable_common_tls_context();
common_tls_context->add_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");
// Modify the listener ssl cert to use SDS from sds_cluster
auto* secret_config = common_tls_context->add_tls_certificate_sds_secret_configs();
secret_config->set_name("server_cert");
auto* config_source = secret_config->mutable_sds_config();
auto* api_config_source = config_source->mutable_api_config_source();
api_config_source->set_api_type(envoy::api::v2::core::ApiConfigSource::GRPC);
auto* grpc_service = api_config_source->add_grpc_services();
setGrpcService(*grpc_service, "sds_cluster", fake_upstreams_.back()->localAddress());
// Add a static sds cluster
auto* sds_cluster = bootstrap.mutable_static_resources()->add_clusters();
sds_cluster->MergeFrom(bootstrap.static_resources().clusters()[0]);
sds_cluster->set_name("sds_cluster");
sds_cluster->mutable_http2_protocol_options();
});
HttpIntegrationTest::initialize();
client_ssl_ctx_ = createClientSslTransportSocketFactory(false, false, context_manager_);
}
void createUpstreams() override {
HttpIntegrationTest::createUpstreams();
// SDS upstream
fake_upstreams_.emplace_back(new FakeUpstream(0, FakeHttpConnection::Type::HTTP2, version_,
timeSystem(), enable_half_close_));
}
void TearDown() override {
cleanUpSdsConnection();
client_ssl_ctx_.reset();
cleanupUpstreamAndDownstream();
fake_upstream_connection_.reset();
codec_client_.reset();
}
Network::ClientConnectionPtr makeSslClientConnection() {
Network::Address::InstanceConstSharedPtr address = getSslAddress(version_, lookupPort("http"));
return dispatcher_->createClientConnection(address, Network::Address::InstanceConstSharedPtr(),
client_ssl_ctx_->createTransportSocket(), nullptr);
}
protected:
Network::TransportSocketFactoryPtr client_ssl_ctx_;
};
INSTANTIATE_TEST_CASE_P(IpVersionsClientType, SdsDynamicDownstreamIntegrationTest,
GRPC_CLIENT_INTEGRATION_PARAMS);
// A test that SDS server send a good server secret for a static listener.
// The first ssl request should be OK.
TEST_P(SdsDynamicDownstreamIntegrationTest, BasicSuccess) {
pre_worker_start_test_steps_ = [this]() {
createSdsStream(*(fake_upstreams_[1]));
sendSdsResponse(getServerSecret());
};
initialize();
ConnectionCreationFunction creator = [&]() -> Network::ClientConnectionPtr {
return makeSslClientConnection();
};
testRouterHeaderOnlyRequestAndResponse(true, &creator);
}
// A test that SDS server send a bad secret for a static listener,
// The first ssl request should fail at connecting.
// then SDS send a good server secret, the second request should be OK.
TEST_P(SdsDynamicDownstreamIntegrationTest, WrongSecretFirst) {
pre_worker_start_test_steps_ = [this]() {
createSdsStream(*(fake_upstreams_[1]));
sendSdsResponse(getWrongSecret(server_cert_));
};
initialize();
codec_client_ = makeRawHttpConnection(makeSslClientConnection());
// the connection state is not connected.
EXPECT_FALSE(codec_client_->connected());
codec_client_->connection()->close(Network::ConnectionCloseType::NoFlush);
sendSdsResponse(getServerSecret());
// Wait for ssl_context_updated_by_sds counter.
if (version_ == Network::Address::IpVersion::v4) {
test_server_->waitForCounterGe(
"listener.127.0.0.1_0.server_ssl_socket_factory.ssl_context_update_by_sds", 1);
} else {
test_server_->waitForCounterGe(
"listener.[__1]_0.server_ssl_socket_factory.ssl_context_update_by_sds", 1);
}
ConnectionCreationFunction creator = [&]() -> Network::ClientConnectionPtr {
return makeSslClientConnection();
};
testRouterHeaderOnlyRequestAndResponse(true, &creator);
}
class SdsDynamicDownstreamCertValidationContextTest : public SdsDynamicDownstreamIntegrationTest {
public:
void initialize() override {
config_helper_.addConfigModifier([this](envoy::config::bootstrap::v2::Bootstrap& bootstrap) {
auto* common_tls_context = bootstrap.mutable_static_resources()
->mutable_listeners(0)
->mutable_filter_chains(0)
->mutable_tls_context()
->mutable_common_tls_context();
common_tls_context->add_alpn_protocols("http/1.1");
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"));
// Modify the listener certificate context validation to use SDS from sds_cluster
auto* secret_config = common_tls_context->mutable_validation_context_sds_secret_config();
secret_config->set_name(validation_secret_);
auto* config_source = secret_config->mutable_sds_config();
auto* api_config_source = config_source->mutable_api_config_source();
api_config_source->set_api_type(envoy::api::v2::core::ApiConfigSource::GRPC);
auto* grpc_service = api_config_source->add_grpc_services();
setGrpcService(*grpc_service, "sds_cluster", fake_upstreams_.back()->localAddress());
// Add a static sds cluster
auto* sds_cluster = bootstrap.mutable_static_resources()->add_clusters();
sds_cluster->MergeFrom(bootstrap.static_resources().clusters()[0]);
sds_cluster->set_name("sds_cluster");
sds_cluster->mutable_http2_protocol_options();
});
HttpIntegrationTest::initialize();
client_ssl_ctx_ = createClientSslTransportSocketFactory(false, false, context_manager_);
}
};
INSTANTIATE_TEST_CASE_P(IpVersionsClientType, SdsDynamicDownstreamCertValidationContextTest,
GRPC_CLIENT_INTEGRATION_PARAMS);
// A test that SDS server send a good certificate validation context for a static listener.
// The first ssl request should be OK.
TEST_P(SdsDynamicDownstreamCertValidationContextTest, BasicSuccess) {
pre_worker_start_test_steps_ = [this]() {
createSdsStream(*(fake_upstreams_[1]));
sendSdsResponse(getCvcSecret());
};
initialize();
ConnectionCreationFunction creator = [&]() -> Network::ClientConnectionPtr {
return makeSslClientConnection();
};
testRouterHeaderOnlyRequestAndResponse(true, &creator);
}
// Upstream SDS integration test: a static cluster has ssl cert from SDS.
class SdsDynamicUpstreamIntegrationTest : public SdsDynamicIntegrationBaseTest {
public:
void initialize() override {
config_helper_.addConfigModifier([this](envoy::config::bootstrap::v2::Bootstrap& bootstrap) {
// add sds cluster first.
auto* sds_cluster = bootstrap.mutable_static_resources()->add_clusters();
sds_cluster->MergeFrom(bootstrap.static_resources().clusters()[0]);
sds_cluster->set_name("sds_cluster");
sds_cluster->mutable_http2_protocol_options();
// change the first cluster with ssl and sds.
auto* secret_config = bootstrap.mutable_static_resources()
->mutable_clusters(0)
->mutable_tls_context()
->mutable_common_tls_context()
->add_tls_certificate_sds_secret_configs();
secret_config->set_name("client_cert");
auto* config_source = secret_config->mutable_sds_config();
auto* api_config_source = config_source->mutable_api_config_source();
api_config_source->set_api_type(envoy::api::v2::core::ApiConfigSource::GRPC);
auto* grpc_service = api_config_source->add_grpc_services();
setGrpcService(*grpc_service, "sds_cluster", fake_upstreams_.back()->localAddress());
});
HttpIntegrationTest::initialize();
registerTestServerPorts({"http"});
}
void TearDown() override {
cleanUpSdsConnection();
cleanupUpstreamAndDownstream();
fake_upstream_connection_.reset();
codec_client_.reset();
test_server_.reset();
fake_upstreams_.clear();
}
void createUpstreams() override {
// This is for backend with ssl
fake_upstreams_.emplace_back(new FakeUpstream(createUpstreamSslContext(context_manager_), 0,
FakeHttpConnection::Type::HTTP1, version_,
timeSystem()));
// This is sds.
fake_upstreams_.emplace_back(new FakeUpstream(0, FakeHttpConnection::Type::HTTP2, version_,
timeSystem(), enable_half_close_));
}
};
INSTANTIATE_TEST_CASE_P(IpVersions, SdsDynamicUpstreamIntegrationTest,
GRPC_CLIENT_INTEGRATION_PARAMS);
// To test a static cluster with sds. SDS send a good client secret first.
// The first request should work.
TEST_P(SdsDynamicUpstreamIntegrationTest, BasicSuccess) {
pre_worker_start_test_steps_ = [this]() {
createSdsStream(*(fake_upstreams_[1]));
sendSdsResponse(getClientSecret());
};
initialize();
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
// There is a race condition here; there are two static clusters:
// backend cluster_0 with sds and sds_cluser. cluster_0 is created first, its init_manager
// is called so it issues a sds call, but fail since sds_cluster is not added yet.
// so cluster_0 is initialized with an empty secret. initialize() will not wait and will return.
// the testing request will be called, even though in the pre_workder_function, a good sds is
// send, the cluster will be updated with good secret, the testing request may fail if it is
// before context is updated. Hence, need to wait for context_update counter.
test_server_->waitForCounterGe(
"cluster.cluster_0.client_ssl_socket_factory.ssl_context_update_by_sds", 1);
testRouterHeaderOnlyRequestAndResponse(true);
}
// To test a static cluster with sds. SDS send a bad client secret first.
// The first request should fail with 503, then SDS sends a good client secret,
// the second request should work.
TEST_P(SdsDynamicUpstreamIntegrationTest, WrongSecretFirst) {
pre_worker_start_test_steps_ = [this]() {
createSdsStream(*(fake_upstreams_[1]));
sendSdsResponse(getWrongSecret(client_cert_));
};
initialize();
fake_upstreams_[0]->set_allow_unexpected_disconnects(true);
// Make a simple request, should get 503
BufferingStreamDecoderPtr response = IntegrationUtil::makeSingleRequest(
lookupPort("http"), "GET", "/test/long/url", "", downstream_protocol_, version_);
ASSERT_TRUE(response->complete());
EXPECT_STREQ("503", response->headers().Status()->value().c_str());
// To flush out the reset connection from the first request in upstream.
FakeRawConnectionPtr fake_upstream_connection;
ASSERT_TRUE(fake_upstreams_[0]->waitForRawConnection(fake_upstream_connection));
ASSERT_TRUE(fake_upstream_connection->waitForDisconnect());
sendSdsResponse(getClientSecret());
test_server_->waitForCounterGe(
"cluster.cluster_0.client_ssl_socket_factory.ssl_context_update_by_sds", 1);
testRouterHeaderOnlyRequestAndResponse(true);
}
} // namespace Ssl
} // namespace Envoy