This repository has been archived by the owner on Dec 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
listener_impl.cc
759 lines (700 loc) · 35.8 KB
/
listener_impl.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
#include "server/listener_impl.h"
#include "envoy/config/core/v3/base.pb.h"
#include "envoy/config/listener/v3/listener.pb.h"
#include "envoy/config/listener/v3/listener_components.pb.h"
#include "envoy/extensions/filters/listener/proxy_protocol/v3/proxy_protocol.pb.h"
#include "envoy/network/exception.h"
#include "envoy/network/udp_packet_writer_config.h"
#include "envoy/registry/registry.h"
#include "envoy/server/active_udp_listener_config.h"
#include "envoy/server/transport_socket_config.h"
#include "envoy/stats/scope.h"
#include "common/access_log/access_log_impl.h"
#include "common/api/os_sys_calls_impl.h"
#include "common/common/assert.h"
#include "common/config/utility.h"
#include "common/network/connection_balancer_impl.h"
#include "common/network/resolver_impl.h"
#include "common/network/socket_option_factory.h"
#include "common/network/socket_option_impl.h"
#include "common/network/udp_listener_impl.h"
#include "common/network/utility.h"
#include "common/protobuf/utility.h"
#include "common/runtime/runtime_features.h"
#include "server/configuration_impl.h"
#include "server/drain_manager_impl.h"
#include "server/filter_chain_manager_impl.h"
#include "server/listener_manager_impl.h"
#include "server/transport_socket_config_impl.h"
#include "server/well_known_names.h"
#include "extensions/filters/listener/well_known_names.h"
#include "extensions/transport_sockets/well_known_names.h"
namespace Envoy {
namespace Server {
namespace {
bool needTlsInspector(const envoy::config::listener::v3::Listener& config) {
return std::any_of(config.filter_chains().begin(), config.filter_chains().end(),
[](const auto& filter_chain) {
const auto& matcher = filter_chain.filter_chain_match();
return matcher.transport_protocol() == "tls" ||
(matcher.transport_protocol().empty() &&
(!matcher.server_names().empty() ||
!matcher.application_protocols().empty()));
}) &&
!std::any_of(
config.listener_filters().begin(), config.listener_filters().end(),
[](const auto& filter) {
return filter.name() ==
Extensions::ListenerFilters::ListenerFilterNames::get().TlsInspector ||
filter.name() == "envoy.listener.tls_inspector";
});
}
} // namespace
ListenSocketFactoryImpl::ListenSocketFactoryImpl(ListenerComponentFactory& factory,
Network::Address::InstanceConstSharedPtr address,
Network::Socket::Type socket_type,
const Network::Socket::OptionsSharedPtr& options,
bool bind_to_port,
const std::string& listener_name, bool reuse_port)
: factory_(factory), local_address_(address), socket_type_(socket_type), options_(options),
bind_to_port_(bind_to_port), listener_name_(listener_name), reuse_port_(reuse_port) {
bool create_socket = false;
if (local_address_->type() == Network::Address::Type::Ip) {
if (socket_type_ == Network::Socket::Type::Datagram) {
ASSERT(reuse_port_ == true);
}
if (reuse_port_ == false) {
// create a socket which will be used by all worker threads
create_socket = true;
} else if (local_address_->ip()->port() == 0) {
// port is 0, need to create a socket here for reserving a real port number,
// then all worker threads should use same port.
create_socket = true;
}
} else {
ASSERT(local_address_->type() == Network::Address::Type::Pipe);
// Listeners with Unix domain socket always use shared socket.
create_socket = true;
}
if (create_socket) {
socket_ = createListenSocketAndApplyOptions();
}
if (socket_ && local_address_->ip() && local_address_->ip()->port() == 0) {
local_address_ = socket_->localAddress();
}
ENVOY_LOG(debug, "Set listener {} socket factory local address to {}", listener_name_,
local_address_->asString());
}
Network::SocketSharedPtr ListenSocketFactoryImpl::createListenSocketAndApplyOptions() {
// socket might be nullptr depending on factory_ implementation.
Network::SocketSharedPtr socket = factory_.createListenSocket(
local_address_, socket_type_, options_, {bind_to_port_, !reuse_port_});
// Binding is done by now.
ENVOY_LOG(debug, "Create listen socket for listener {} on address {}", listener_name_,
local_address_->asString());
if (socket != nullptr && options_ != nullptr) {
const bool ok = Network::Socket::applyOptions(
options_, *socket, envoy::config::core::v3::SocketOption::STATE_BOUND);
const std::string message =
fmt::format("{}: Setting socket options {}", listener_name_, ok ? "succeeded" : "failed");
if (!ok) {
ENVOY_LOG(warn, "{}", message);
throw Network::CreateListenerException(message);
} else {
ENVOY_LOG(debug, "{}", message);
}
// Add the options to the socket_ so that STATE_LISTENING options can be
// set in the worker after listen()/evconnlistener_new() is called.
socket->addOptions(options_);
}
return socket;
}
Network::SocketSharedPtr ListenSocketFactoryImpl::getListenSocket() {
if (!reuse_port_) {
return socket_;
}
Network::SocketSharedPtr socket;
absl::call_once(steal_once_, [this, &socket]() {
if (socket_) {
// If a listener's port is set to 0, socket_ should be created for reserving a port
// number, it is handed over to the first worker thread came here.
// There are several reasons for doing this:
// - for UDP, once a socket being bound, it begins to receive packets, it can't be
// left unused, and closing it will lost packets received by it.
// - port number should be reserved before adding listener to active_listeners_ list,
// otherwise admin API /listeners might return 0 as listener's port.
socket = std::move(socket_);
}
});
if (socket) {
return socket;
}
return createListenSocketAndApplyOptions();
}
ListenerFactoryContextBaseImpl::ListenerFactoryContextBaseImpl(
Envoy::Server::Instance& server, ProtobufMessage::ValidationVisitor& validation_visitor,
const envoy::config::listener::v3::Listener& config, DrainManagerPtr drain_manager)
: server_(server), metadata_(config.metadata()), direction_(config.traffic_direction()),
global_scope_(server.stats().createScope("")),
listener_scope_(server_.stats().createScope(fmt::format(
"listener.{}.", Network::Address::resolveProtoAddress(config.address())->asString()))),
validation_visitor_(validation_visitor), drain_manager_(std::move(drain_manager)) {}
AccessLog::AccessLogManager& ListenerFactoryContextBaseImpl::accessLogManager() {
return server_.accessLogManager();
}
Upstream::ClusterManager& ListenerFactoryContextBaseImpl::clusterManager() {
return server_.clusterManager();
}
Event::Dispatcher& ListenerFactoryContextBaseImpl::dispatcher() { return server_.dispatcher(); }
Grpc::Context& ListenerFactoryContextBaseImpl::grpcContext() { return server_.grpcContext(); }
bool ListenerFactoryContextBaseImpl::healthCheckFailed() { return server_.healthCheckFailed(); }
Http::Context& ListenerFactoryContextBaseImpl::httpContext() { return server_.httpContext(); }
const LocalInfo::LocalInfo& ListenerFactoryContextBaseImpl::localInfo() const {
return server_.localInfo();
}
Envoy::Runtime::Loader& ListenerFactoryContextBaseImpl::runtime() { return server_.runtime(); }
Stats::Scope& ListenerFactoryContextBaseImpl::scope() { return *global_scope_; }
Singleton::Manager& ListenerFactoryContextBaseImpl::singletonManager() {
return server_.singletonManager();
}
OverloadManager& ListenerFactoryContextBaseImpl::overloadManager() {
return server_.overloadManager();
}
ThreadLocal::Instance& ListenerFactoryContextBaseImpl::threadLocal() {
return server_.threadLocal();
}
Admin& ListenerFactoryContextBaseImpl::admin() { return server_.admin(); }
const envoy::config::core::v3::Metadata& ListenerFactoryContextBaseImpl::listenerMetadata() const {
return metadata_;
};
envoy::config::core::v3::TrafficDirection ListenerFactoryContextBaseImpl::direction() const {
return direction_;
};
TimeSource& ListenerFactoryContextBaseImpl::timeSource() { return api().timeSource(); }
ProtobufMessage::ValidationContext& ListenerFactoryContextBaseImpl::messageValidationContext() {
return server_.messageValidationContext();
}
ProtobufMessage::ValidationVisitor& ListenerFactoryContextBaseImpl::messageValidationVisitor() {
return validation_visitor_;
}
Api::Api& ListenerFactoryContextBaseImpl::api() { return server_.api(); }
ServerLifecycleNotifier& ListenerFactoryContextBaseImpl::lifecycleNotifier() {
return server_.lifecycleNotifier();
}
ProcessContextOptRef ListenerFactoryContextBaseImpl::processContext() {
return server_.processContext();
}
Configuration::ServerFactoryContext&
ListenerFactoryContextBaseImpl::getServerFactoryContext() const {
return server_.serverFactoryContext();
}
Configuration::TransportSocketFactoryContext&
ListenerFactoryContextBaseImpl::getTransportSocketFactoryContext() const {
return server_.transportSocketFactoryContext();
}
Stats::Scope& ListenerFactoryContextBaseImpl::listenerScope() { return *listener_scope_; }
Network::DrainDecision& ListenerFactoryContextBaseImpl::drainDecision() { return *this; }
Server::DrainManager& ListenerFactoryContextBaseImpl::drainManager() { return *drain_manager_; }
// Must be overridden
Init::Manager& ListenerFactoryContextBaseImpl::initManager() { NOT_IMPLEMENTED_GCOVR_EXCL_LINE; }
ListenerImpl::ListenerImpl(const envoy::config::listener::v3::Listener& config,
const std::string& version_info, ListenerManagerImpl& parent,
const std::string& name, bool added_via_api, bool workers_started,
uint64_t hash, uint32_t concurrency)
: parent_(parent), address_(Network::Address::resolveProtoAddress(config.address())),
bind_to_port_(PROTOBUF_GET_WRAPPED_OR_DEFAULT(config.deprecated_v1(), bind_to_port, true)),
hand_off_restored_destination_connections_(
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config, hidden_envoy_deprecated_use_original_dst, false)),
per_connection_buffer_limit_bytes_(
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config, per_connection_buffer_limit_bytes, 1024 * 1024)),
listener_tag_(parent_.factory_.nextListenerTag()), name_(name), added_via_api_(added_via_api),
workers_started_(workers_started), hash_(hash),
tcp_backlog_size_(
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config, tcp_backlog_size, ENVOY_TCP_BACKLOG_SIZE)),
validation_visitor_(
added_via_api_ ? parent_.server_.messageValidationContext().dynamicValidationVisitor()
: parent_.server_.messageValidationContext().staticValidationVisitor()),
listener_init_target_(fmt::format("Listener-init-target {}", name),
[this]() { dynamic_init_manager_->initialize(local_init_watcher_); }),
dynamic_init_manager_(std::make_unique<Init::ManagerImpl>(
fmt::format("Listener-local-init-manager {} {}", name, hash))),
config_(config), version_info_(version_info),
listener_filters_timeout_(
PROTOBUF_GET_MS_OR_DEFAULT(config, listener_filters_timeout, 15000)),
continue_on_listener_filters_timeout_(config.continue_on_listener_filters_timeout()),
listener_factory_context_(std::make_shared<PerListenerFactoryContextImpl>(
parent.server_, validation_visitor_, config, this, *this,
parent.factory_.createDrainManager(config.drain_type()))),
filter_chain_manager_(address_, listener_factory_context_->parentFactoryContext(),
initManager()),
cx_limit_runtime_key_("envoy.resource_limits.listener." + config_.name() +
".connection_limit"),
open_connections_(std::make_shared<BasicResourceLimitImpl>(
std::numeric_limits<uint64_t>::max(), listener_factory_context_->runtime(),
cx_limit_runtime_key_)),
local_init_watcher_(fmt::format("Listener-local-init-watcher {}", name), [this] {
if (workers_started_) {
parent_.onListenerWarmed(*this);
} else {
// Notify Server that this listener is
// ready.
listener_init_target_.ready();
}
}) {
const absl::optional<std::string> runtime_val =
listener_factory_context_->runtime().snapshot().get(cx_limit_runtime_key_);
if (runtime_val && runtime_val->empty()) {
ENVOY_LOG(warn,
"Listener connection limit runtime key {} is empty. There are currently no "
"limitations on the number of accepted connections for listener {}.",
cx_limit_runtime_key_, config_.name());
}
buildAccessLog();
auto socket_type = Network::Utility::protobufAddressSocketType(config.address());
buildListenSocketOptions(socket_type);
buildUdpListenerFactory(socket_type, concurrency);
buildUdpWriterFactory(socket_type);
createListenerFilterFactories(socket_type);
validateFilterChains(socket_type);
buildFilterChains();
if (socket_type == Network::Socket::Type::Datagram) {
return;
}
buildSocketOptions();
buildOriginalDstListenerFilter();
buildProxyProtocolListenerFilter();
buildTlsInspectorListenerFilter();
if (!workers_started_) {
// Initialize dynamic_init_manager_ from Server's init manager if it's not initialized.
// NOTE: listener_init_target_ should be added to parent's initManager at the end of the
// listener constructor so that this listener's children entities could register their targets
// with their parent's initManager.
parent_.server_.initManager().add(listener_init_target_);
}
}
ListenerImpl::ListenerImpl(ListenerImpl& origin,
const envoy::config::listener::v3::Listener& config,
const std::string& version_info, ListenerManagerImpl& parent,
const std::string& name, bool added_via_api, bool workers_started,
uint64_t hash, uint32_t concurrency)
: parent_(parent), address_(origin.address_),
bind_to_port_(PROTOBUF_GET_WRAPPED_OR_DEFAULT(config.deprecated_v1(), bind_to_port, true)),
hand_off_restored_destination_connections_(
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config, hidden_envoy_deprecated_use_original_dst, false)),
per_connection_buffer_limit_bytes_(
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config, per_connection_buffer_limit_bytes, 1024 * 1024)),
listener_tag_(origin.listener_tag_), name_(name), added_via_api_(added_via_api),
workers_started_(workers_started), hash_(hash),
tcp_backlog_size_(
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config, tcp_backlog_size, ENVOY_TCP_BACKLOG_SIZE)),
validation_visitor_(
added_via_api_ ? parent_.server_.messageValidationContext().dynamicValidationVisitor()
: parent_.server_.messageValidationContext().staticValidationVisitor()),
// listener_init_target_ is not used during in place update because we expect server started.
listener_init_target_("", nullptr),
dynamic_init_manager_(std::make_unique<Init::ManagerImpl>(
fmt::format("Listener-local-init-manager {} {}", name, hash))),
config_(config), version_info_(version_info),
listener_filters_timeout_(
PROTOBUF_GET_MS_OR_DEFAULT(config, listener_filters_timeout, 15000)),
continue_on_listener_filters_timeout_(config.continue_on_listener_filters_timeout()),
connection_balancer_(origin.connection_balancer_),
listener_factory_context_(std::make_shared<PerListenerFactoryContextImpl>(
origin.listener_factory_context_->listener_factory_context_base_, this, *this)),
filter_chain_manager_(address_, origin.listener_factory_context_->parentFactoryContext(),
initManager(), origin.filter_chain_manager_),
local_init_watcher_(fmt::format("Listener-local-init-watcher {}", name), [this] {
ASSERT(workers_started_);
parent_.inPlaceFilterChainUpdate(*this);
}) {
buildAccessLog();
auto socket_type = Network::Utility::protobufAddressSocketType(config.address());
buildListenSocketOptions(socket_type);
buildUdpListenerFactory(socket_type, concurrency);
buildUdpWriterFactory(socket_type);
createListenerFilterFactories(socket_type);
validateFilterChains(socket_type);
buildFilterChains();
// In place update is tcp only so it's safe to apply below tcp only initialization.
buildSocketOptions();
buildOriginalDstListenerFilter();
buildProxyProtocolListenerFilter();
buildTlsInspectorListenerFilter();
open_connections_ = origin.open_connections_;
}
void ListenerImpl::buildAccessLog() {
for (const auto& access_log : config_.access_log()) {
AccessLog::InstanceSharedPtr current_access_log =
AccessLog::AccessLogFactory::fromProto(access_log, *listener_factory_context_);
access_logs_.push_back(current_access_log);
}
}
void ListenerImpl::buildUdpListenerFactory(Network::Socket::Type socket_type,
uint32_t concurrency) {
if (socket_type == Network::Socket::Type::Datagram) {
if (!config_.reuse_port() && concurrency > 1) {
throw EnvoyException("Listening on UDP when concurrency is > 1 without the SO_REUSEPORT "
"socket option results in "
"unstable packet proxying. Configure the reuse_port listener option or "
"set concurrency = 1.");
}
auto udp_config = config_.udp_listener_config();
if (udp_config.udp_listener_name().empty()) {
udp_config.set_udp_listener_name(UdpListenerNames::get().RawUdp);
}
auto& config_factory =
Config::Utility::getAndCheckFactoryByName<ActiveUdpListenerConfigFactory>(
udp_config.udp_listener_name());
ProtobufTypes::MessagePtr message =
Config::Utility::translateToFactoryConfig(udp_config, validation_visitor_, config_factory);
udp_listener_factory_ = config_factory.createActiveUdpListenerFactory(*message, concurrency);
udp_listener_worker_router_ =
std::make_unique<Network::UdpListenerWorkerRouterImpl>(concurrency);
}
}
void ListenerImpl::buildUdpWriterFactory(Network::Socket::Type socket_type) {
if (socket_type == Network::Socket::Type::Datagram) {
auto udp_writer_config = config_.udp_writer_config();
if (!Api::OsSysCallsSingleton::get().supportsUdpGso() ||
udp_writer_config.typed_config().type_url().empty()) {
const std::string default_type_url =
"type.googleapis.com/envoy.config.listener.v3.UdpDefaultWriterOptions";
udp_writer_config.mutable_typed_config()->set_type_url(default_type_url);
}
auto& config_factory =
Config::Utility::getAndCheckFactory<Network::UdpPacketWriterConfigFactory>(
udp_writer_config);
ProtobufTypes::MessagePtr message = Config::Utility::translateAnyToFactoryConfig(
udp_writer_config.typed_config(), validation_visitor_, config_factory);
udp_writer_factory_ = config_factory.createUdpPacketWriterFactory(*message);
}
}
void ListenerImpl::buildListenSocketOptions(Network::Socket::Type socket_type) {
// The process-wide `signal()` handling may fail to handle SIGPIPE if overridden
// in the process (i.e., on a mobile client). Some OSes support handling it at the socket layer:
if (ENVOY_SOCKET_SO_NOSIGPIPE.hasValue()) {
addListenSocketOptions(Network::SocketOptionFactory::buildSocketNoSigpipeOptions());
}
if (PROTOBUF_GET_WRAPPED_OR_DEFAULT(config_, transparent, false)) {
addListenSocketOptions(Network::SocketOptionFactory::buildIpTransparentOptions());
}
if (PROTOBUF_GET_WRAPPED_OR_DEFAULT(config_, freebind, false)) {
addListenSocketOptions(Network::SocketOptionFactory::buildIpFreebindOptions());
}
if (config_.reuse_port()) {
addListenSocketOptions(Network::SocketOptionFactory::buildReusePortOptions());
}
if (!config_.socket_options().empty()) {
addListenSocketOptions(
Network::SocketOptionFactory::buildLiteralOptions(config_.socket_options()));
}
if (socket_type == Network::Socket::Type::Datagram) {
// Needed for recvmsg to return destination address in IP header.
addListenSocketOptions(Network::SocketOptionFactory::buildIpPacketInfoOptions());
// Needed to return receive buffer overflown indicator.
addListenSocketOptions(Network::SocketOptionFactory::buildRxQueueOverFlowOptions());
// TODO(yugant) : Add a config option for UDP_GRO
if (Api::OsSysCallsSingleton::get().supportsUdpGro()) {
// Needed to receive gso_size option
addListenSocketOptions(Network::SocketOptionFactory::buildUdpGroOptions());
}
}
}
void ListenerImpl::createListenerFilterFactories(Network::Socket::Type socket_type) {
if (!config_.listener_filters().empty()) {
switch (socket_type) {
case Network::Socket::Type::Datagram:
if (config_.listener_filters().size() > 1) {
// Currently supports only 1 UDP listener filter.
throw EnvoyException(fmt::format(
"error adding listener '{}': Only 1 UDP listener filter per listener supported",
address_->asString()));
}
udp_listener_filter_factories_ = parent_.factory_.createUdpListenerFilterFactoryList(
config_.listener_filters(), *listener_factory_context_);
break;
case Network::Socket::Type::Stream:
listener_filter_factories_ = parent_.factory_.createListenerFilterFactoryList(
config_.listener_filters(), *listener_factory_context_);
break;
default:
NOT_REACHED_GCOVR_EXCL_LINE;
}
}
}
void ListenerImpl::validateFilterChains(Network::Socket::Type socket_type) {
if (config_.filter_chains().empty() && (socket_type == Network::Socket::Type::Stream ||
!udp_listener_factory_->isTransportConnectionless())) {
// If we got here, this is a tcp listener or connection-oriented udp listener, so ensure there
// is a filter chain specified
throw EnvoyException(fmt::format("error adding listener '{}': no filter chains specified",
address_->asString()));
} else if (udp_listener_factory_ != nullptr &&
!udp_listener_factory_->isTransportConnectionless()) {
for (auto& filter_chain : config_.filter_chains()) {
// Early fail if any filter chain doesn't have transport socket configured.
if (!filter_chain.has_transport_socket()) {
throw EnvoyException(fmt::format("error adding listener '{}': no transport socket "
"specified for connection oriented UDP listener",
address_->asString()));
}
}
}
}
void ListenerImpl::buildFilterChains() {
Server::Configuration::TransportSocketFactoryContextImpl transport_factory_context(
parent_.server_.admin(), parent_.server_.sslContextManager(), listenerScope(),
parent_.server_.clusterManager(), parent_.server_.localInfo(), parent_.server_.dispatcher(),
parent_.server_.stats(), parent_.server_.singletonManager(), parent_.server_.threadLocal(),
validation_visitor_, parent_.server_.api());
transport_factory_context.setInitManager(*dynamic_init_manager_);
// The init manager is a little messy. Will refactor when filter chain manager could accept
// network filter chain update.
// TODO(lambdai): create builder from filter_chain_manager to obtain the init manager
ListenerFilterChainFactoryBuilder builder(*this, transport_factory_context);
filter_chain_manager_.addFilterChain(config_.filter_chains(), builder, filter_chain_manager_);
}
void ListenerImpl::buildSocketOptions() {
// TCP specific setup.
if (connection_balancer_ == nullptr) {
// Not in place listener update.
if (config_.has_connection_balance_config()) {
// Currently exact balance is the only supported type and there are no options.
ASSERT(config_.connection_balance_config().has_exact_balance());
connection_balancer_ = std::make_shared<Network::ExactConnectionBalancerImpl>();
} else {
connection_balancer_ = std::make_shared<Network::NopConnectionBalancerImpl>();
}
}
if (config_.has_tcp_fast_open_queue_length()) {
addListenSocketOptions(Network::SocketOptionFactory::buildTcpFastOpenOptions(
config_.tcp_fast_open_queue_length().value()));
}
}
void ListenerImpl::buildOriginalDstListenerFilter() {
// Add original dst listener filter if 'use_original_dst' flag is set.
if (PROTOBUF_GET_WRAPPED_OR_DEFAULT(config_, hidden_envoy_deprecated_use_original_dst, false)) {
auto& factory =
Config::Utility::getAndCheckFactoryByName<Configuration::NamedListenerFilterConfigFactory>(
Extensions::ListenerFilters::ListenerFilterNames::get().OriginalDst);
listener_filter_factories_.push_back(factory.createListenerFilterFactoryFromProto(
Envoy::ProtobufWkt::Empty(),
/*listener_filter_matcher=*/nullptr, *listener_factory_context_));
}
}
void ListenerImpl::buildProxyProtocolListenerFilter() {
// Add proxy protocol listener filter if 'use_proxy_proto' flag is set.
// TODO(jrajahalme): This is the last listener filter on purpose. When filter chain matching
// is implemented, this needs to be run after the filter chain has been
// selected.
if (PROTOBUF_GET_WRAPPED_OR_DEFAULT(config_.filter_chains()[0], use_proxy_proto, false)) {
auto& factory =
Config::Utility::getAndCheckFactoryByName<Configuration::NamedListenerFilterConfigFactory>(
Extensions::ListenerFilters::ListenerFilterNames::get().ProxyProtocol);
listener_filter_factories_.push_back(factory.createListenerFilterFactoryFromProto(
envoy::extensions::filters::listener::proxy_protocol::v3::ProxyProtocol(),
/*listener_filter_matcher=*/nullptr, *listener_factory_context_));
}
}
void ListenerImpl::buildTlsInspectorListenerFilter() {
// TODO(zuercher) remove the deprecated TLS inspector name when the deprecated names are removed.
const bool need_tls_inspector = needTlsInspector(config_);
// Automatically inject TLS Inspector if it wasn't configured explicitly and it's needed.
if (need_tls_inspector) {
const std::string message =
fmt::format("adding listener '{}': filter chain match rules require TLS Inspector "
"listener filter, but it isn't configured, trying to inject it "
"(this might fail if Envoy is compiled without it)",
address_->asString());
ENVOY_LOG(warn, "{}", message);
auto& factory =
Config::Utility::getAndCheckFactoryByName<Configuration::NamedListenerFilterConfigFactory>(
Extensions::ListenerFilters::ListenerFilterNames::get().TlsInspector);
listener_filter_factories_.push_back(factory.createListenerFilterFactoryFromProto(
Envoy::ProtobufWkt::Empty(),
/*listener_filter_matcher=*/nullptr, *listener_factory_context_));
}
}
AccessLog::AccessLogManager& PerListenerFactoryContextImpl::accessLogManager() {
return listener_factory_context_base_->accessLogManager();
}
Upstream::ClusterManager& PerListenerFactoryContextImpl::clusterManager() {
return listener_factory_context_base_->clusterManager();
}
Event::Dispatcher& PerListenerFactoryContextImpl::dispatcher() {
return listener_factory_context_base_->dispatcher();
}
Network::DrainDecision& PerListenerFactoryContextImpl::drainDecision() {
NOT_IMPLEMENTED_GCOVR_EXCL_LINE;
}
Grpc::Context& PerListenerFactoryContextImpl::grpcContext() {
return listener_factory_context_base_->grpcContext();
}
bool PerListenerFactoryContextImpl::healthCheckFailed() {
return listener_factory_context_base_->healthCheckFailed();
}
Http::Context& PerListenerFactoryContextImpl::httpContext() {
return listener_factory_context_base_->httpContext();
}
const LocalInfo::LocalInfo& PerListenerFactoryContextImpl::localInfo() const {
return listener_factory_context_base_->localInfo();
}
Envoy::Runtime::Loader& PerListenerFactoryContextImpl::runtime() {
return listener_factory_context_base_->runtime();
}
Stats::Scope& PerListenerFactoryContextImpl::scope() {
return listener_factory_context_base_->scope();
}
Singleton::Manager& PerListenerFactoryContextImpl::singletonManager() {
return listener_factory_context_base_->singletonManager();
}
OverloadManager& PerListenerFactoryContextImpl::overloadManager() {
return listener_factory_context_base_->overloadManager();
}
ThreadLocal::Instance& PerListenerFactoryContextImpl::threadLocal() {
return listener_factory_context_base_->threadLocal();
}
Admin& PerListenerFactoryContextImpl::admin() { return listener_factory_context_base_->admin(); }
const envoy::config::core::v3::Metadata& PerListenerFactoryContextImpl::listenerMetadata() const {
return listener_factory_context_base_->listenerMetadata();
};
envoy::config::core::v3::TrafficDirection PerListenerFactoryContextImpl::direction() const {
return listener_factory_context_base_->direction();
};
TimeSource& PerListenerFactoryContextImpl::timeSource() { return api().timeSource(); }
const Network::ListenerConfig& PerListenerFactoryContextImpl::listenerConfig() const {
return *listener_config_;
}
ProtobufMessage::ValidationContext& PerListenerFactoryContextImpl::messageValidationContext() {
return getServerFactoryContext().messageValidationContext();
}
ProtobufMessage::ValidationVisitor& PerListenerFactoryContextImpl::messageValidationVisitor() {
return listener_factory_context_base_->messageValidationVisitor();
}
Api::Api& PerListenerFactoryContextImpl::api() { return listener_factory_context_base_->api(); }
ServerLifecycleNotifier& PerListenerFactoryContextImpl::lifecycleNotifier() {
return listener_factory_context_base_->lifecycleNotifier();
}
ProcessContextOptRef PerListenerFactoryContextImpl::processContext() {
return listener_factory_context_base_->processContext();
}
Configuration::ServerFactoryContext&
PerListenerFactoryContextImpl::getServerFactoryContext() const {
return listener_factory_context_base_->getServerFactoryContext();
}
Configuration::TransportSocketFactoryContext&
PerListenerFactoryContextImpl::getTransportSocketFactoryContext() const {
return listener_factory_context_base_->getTransportSocketFactoryContext();
}
Stats::Scope& PerListenerFactoryContextImpl::listenerScope() {
return listener_factory_context_base_->listenerScope();
}
Init::Manager& PerListenerFactoryContextImpl::initManager() { return listener_impl_.initManager(); }
bool ListenerImpl::createNetworkFilterChain(
Network::Connection& connection,
const std::vector<Network::FilterFactoryCb>& filter_factories) {
return Configuration::FilterChainUtility::buildFilterChain(connection, filter_factories);
}
bool ListenerImpl::createListenerFilterChain(Network::ListenerFilterManager& manager) {
return Configuration::FilterChainUtility::buildFilterChain(manager, listener_filter_factories_);
}
void ListenerImpl::createUdpListenerFilterChain(Network::UdpListenerFilterManager& manager,
Network::UdpReadFilterCallbacks& callbacks) {
Configuration::FilterChainUtility::buildUdpFilterChain(manager, callbacks,
udp_listener_filter_factories_);
}
void ListenerImpl::debugLog(const std::string& message) {
UNREFERENCED_PARAMETER(message);
ENVOY_LOG(debug, "{}: name={}, hash={}, address={}", message, name_, hash_, address_->asString());
}
void ListenerImpl::initialize() {
last_updated_ = listener_factory_context_->timeSource().systemTime();
// If workers have already started, we shift from using the global init manager to using a local
// per listener init manager. See ~ListenerImpl() for why we gate the onListenerWarmed() call
// by resetting the watcher.
if (workers_started_) {
ENVOY_LOG_MISC(debug, "Initialize listener {} local-init-manager.", name_);
// If workers_started_ is true, dynamic_init_manager_ should be initialized by listener
// manager directly.
dynamic_init_manager_->initialize(local_init_watcher_);
}
}
ListenerImpl::~ListenerImpl() {
if (!workers_started_) {
// We need to remove the listener_init_target_ handle from parent's initManager(), to unblock
// parent's initManager to get ready().
listener_init_target_.ready();
}
}
Init::Manager& ListenerImpl::initManager() { return *dynamic_init_manager_; }
void ListenerImpl::setSocketFactory(const Network::ListenSocketFactorySharedPtr& socket_factory) {
ASSERT(!socket_factory_);
socket_factory_ = socket_factory;
}
bool ListenerImpl::supportUpdateFilterChain(const envoy::config::listener::v3::Listener& config,
bool worker_started) {
if (!Runtime::runtimeFeatureEnabled(
"envoy.reloadable_features.listener_in_place_filterchain_update")) {
return false;
}
// The in place update needs the active listener in worker thread. worker_started guarantees the
// existence of that active listener.
if (!worker_started) {
return false;
}
// Currently we only support TCP filter chain update.
if (Network::Utility::protobufAddressSocketType(config_.address()) !=
Network::Socket::Type::Stream ||
Network::Utility::protobufAddressSocketType(config.address()) !=
Network::Socket::Type::Stream) {
return false;
}
// Full listener update currently rejects tcp listener having 0 filter chain.
// In place filter chain update could survive under zero filter chain but we should keep the same
// behavior for now. This also guards the below filter chain access.
if (config.filter_chains_size() == 0) {
return false;
}
// See buildProxyProtocolListenerFilter(). Full listener update guarantees at least 1 filter chain
// at tcp listener.
if (PROTOBUF_GET_WRAPPED_OR_DEFAULT(config_.filter_chains()[0], use_proxy_proto, false) ^
PROTOBUF_GET_WRAPPED_OR_DEFAULT(config.filter_chains()[0], use_proxy_proto, false)) {
return false;
}
// See buildTlsInspectorListenerFilter().
if (needTlsInspector(config_) ^ needTlsInspector(config)) {
return false;
}
return ListenerMessageUtil::filterChainOnlyChange(config_, config);
}
ListenerImplPtr
ListenerImpl::newListenerWithFilterChain(const envoy::config::listener::v3::Listener& config,
bool workers_started, uint64_t hash) {
// Use WrapUnique since the constructor is private.
return absl::WrapUnique(
new ListenerImpl(*this, config, version_info_, parent_, name_, added_via_api_,
/* new new workers started state */ workers_started,
/* use new hash */ hash, parent_.server_.options().concurrency()));
}
void ListenerImpl::diffFilterChain(const ListenerImpl& another_listener,
std::function<void(Network::DrainableFilterChain&)> callback) {
for (const auto& message_and_filter_chain : filter_chain_manager_.filterChainsByMessage()) {
if (another_listener.filter_chain_manager_.filterChainsByMessage().find(
message_and_filter_chain.first) ==
another_listener.filter_chain_manager_.filterChainsByMessage().end()) {
// The filter chain exists in `this` listener but not in the listener passed in.
callback(*message_and_filter_chain.second);
}
}
}
bool ListenerMessageUtil::filterChainOnlyChange(const envoy::config::listener::v3::Listener& lhs,
const envoy::config::listener::v3::Listener& rhs) {
Protobuf::util::MessageDifferencer differencer;
differencer.set_message_field_comparison(Protobuf::util::MessageDifferencer::EQUIVALENT);
differencer.set_repeated_field_comparison(Protobuf::util::MessageDifferencer::AS_SET);
differencer.IgnoreField(
envoy::config::listener::v3::Listener::GetDescriptor()->FindFieldByName("filter_chains"));
return differencer.Compare(lhs, rhs);
}
} // namespace Server
} // namespace Envoy