-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
upstream_request.cc
825 lines (712 loc) · 34.8 KB
/
upstream_request.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
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
#include "source/common/router/upstream_request.h"
#include <chrono>
#include <cstdint>
#include <functional>
#include <memory>
#include <string>
#include "envoy/event/dispatcher.h"
#include "envoy/event/timer.h"
#include "envoy/grpc/status.h"
#include "envoy/http/conn_pool.h"
#include "envoy/http/header_map.h"
#include "envoy/runtime/runtime.h"
#include "envoy/upstream/cluster_manager.h"
#include "envoy/upstream/upstream.h"
#include "source/common/common/assert.h"
#include "source/common/common/dump_state_utils.h"
#include "source/common/common/empty_string.h"
#include "source/common/common/enum_to_int.h"
#include "source/common/common/scope_tracker.h"
#include "source/common/common/utility.h"
#include "source/common/grpc/common.h"
#include "source/common/http/codes.h"
#include "source/common/http/header_map_impl.h"
#include "source/common/http/headers.h"
#include "source/common/http/message_impl.h"
#include "source/common/http/utility.h"
#include "source/common/network/application_protocol.h"
#include "source/common/network/transport_socket_options_impl.h"
#include "source/common/network/upstream_server_name.h"
#include "source/common/network/upstream_subject_alt_names.h"
#include "source/common/router/config_impl.h"
#include "source/common/router/debug_config.h"
#include "source/common/router/router.h"
#include "source/common/stream_info/uint32_accessor_impl.h"
#include "source/common/tracing/http_tracer_impl.h"
#include "source/extensions/common/proxy_protocol/proxy_protocol_header.h"
namespace Envoy {
namespace Router {
// The upstream HTTP filter manager class.
class UpstreamFilterManager : public Http::FilterManager {
public:
UpstreamFilterManager(Http::FilterManagerCallbacks& filter_manager_callbacks,
Event::Dispatcher& dispatcher, OptRef<const Network::Connection> connection,
uint64_t stream_id, Buffer::BufferMemoryAccountSharedPtr account,
bool proxy_100_continue, uint32_t buffer_limit,
const Http::FilterChainFactory& filter_chain_factory,
UpstreamRequest& request)
: FilterManager(filter_manager_callbacks, dispatcher, connection, stream_id, account,
proxy_100_continue, buffer_limit, filter_chain_factory),
upstream_request_(request) {}
StreamInfo::StreamInfo& streamInfo() override {
return upstream_request_.parent_.callbacks()->streamInfo();
}
const StreamInfo::StreamInfo& streamInfo() const override {
return upstream_request_.parent_.callbacks()->streamInfo();
}
// Send local replies via the downstream HTTP filter manager.
// Local replies will not be seen by upstream HTTP filters.
void sendLocalReply(Http::Code code, absl::string_view body,
const std::function<void(Http::ResponseHeaderMap& headers)>& modify_headers,
const absl::optional<Grpc::Status::GrpcStatus> grpc_status,
absl::string_view details) override {
state().decoder_filter_chain_aborted_ = true;
state().encoder_filter_chain_aborted_ = true;
state().remote_encode_complete_ = true;
state().local_complete_ = true;
// TODO(alyssawilk) this should be done through the router to play well with hedging.
upstream_request_.parent_.callbacks()->sendLocalReply(code, body, modify_headers, grpc_status,
details);
}
void executeLocalReplyIfPrepared() override {}
UpstreamRequest& upstream_request_;
};
UpstreamRequest::UpstreamRequest(RouterFilterInterface& parent,
std::unique_ptr<GenericConnPool>&& conn_pool,
bool can_send_early_data, bool can_use_http3,
bool enable_half_close)
: parent_(parent), conn_pool_(std::move(conn_pool)),
stream_info_(parent_.callbacks()->dispatcher().timeSource(), nullptr,
StreamInfo::FilterState::LifeSpan::FilterChain),
start_time_(parent_.callbacks()->dispatcher().timeSource().monotonicTime()),
calling_encode_headers_(false), upstream_canary_(false), router_sent_end_stream_(false),
encode_trailers_(false), retried_(false), awaiting_headers_(true),
outlier_detection_timeout_recorded_(false),
create_per_try_timeout_on_request_complete_(false), paused_for_connect_(false),
reset_stream_(false),
record_timeout_budget_(parent_.cluster()->timeoutBudgetStats().has_value()),
cleaned_up_(false), had_upstream_(false),
stream_options_({can_send_early_data, can_use_http3}), grpc_rq_success_deferred_(false),
upstream_wait_for_response_headers_before_disabling_read_(Runtime::runtimeFeatureEnabled(
"envoy.reloadable_features.upstream_wait_for_response_headers_before_disabling_read")),
enable_half_close_(enable_half_close) {
if (auto tracing_config = parent_.callbacks()->tracingConfig(); tracing_config.has_value()) {
if (tracing_config->spawnUpstreamSpan() || parent_.config().start_child_span_) {
span_ = parent_.callbacks()->activeSpan().spawnChild(
tracing_config.value().get(),
absl::StrCat("router ", parent.cluster()->observabilityName(), " egress"),
parent_.callbacks()->dispatcher().timeSource().systemTime());
if (parent.attemptCount() != 1) {
// This is a retry request, add this metadata to span.
span_->setTag(Tracing::Tags::get().RetryCount, std::to_string(parent.attemptCount() - 1));
}
}
}
// The router checks that the connection pool is non-null before creating the upstream request.
auto upstream_host = conn_pool_->host();
Tracing::HttpTraceContext trace_context(*parent_.downstreamHeaders());
Tracing::UpstreamContext upstream_context(upstream_host.get(), // host_
&upstream_host->cluster(), // cluster_
Tracing::ServiceType::Unknown, // service_type_
false // async_client_span_
);
if (span_ != nullptr) {
span_->injectContext(trace_context, upstream_context);
} else {
// No independent child span for current upstream request then inject the parent span's tracing
// context into the request headers.
// The injectContext() of the parent span may be called repeatedly when the request is retried.
parent_.callbacks()->activeSpan().injectContext(trace_context, upstream_context);
}
stream_info_.setUpstreamInfo(std::make_shared<StreamInfo::UpstreamInfoImpl>());
stream_info_.route_ = parent_.callbacks()->route();
parent_.callbacks()->streamInfo().setUpstreamInfo(stream_info_.upstreamInfo());
stream_info_.healthCheck(parent_.callbacks()->streamInfo().healthCheck());
stream_info_.setIsShadow(parent_.callbacks()->streamInfo().isShadow());
absl::optional<Upstream::ClusterInfoConstSharedPtr> cluster_info =
parent_.callbacks()->streamInfo().upstreamClusterInfo();
if (cluster_info.has_value()) {
stream_info_.setUpstreamClusterInfo(*cluster_info);
}
// Set up the upstream HTTP filter manager.
filter_manager_callbacks_ = std::make_unique<UpstreamRequestFilterManagerCallbacks>(*this);
filter_manager_ = std::make_unique<UpstreamFilterManager>(
*filter_manager_callbacks_, parent_.callbacks()->dispatcher(), UpstreamRequest::connection(),
parent_.callbacks()->streamId(), parent_.callbacks()->account(), true,
parent_.callbacks()->decoderBufferLimit(), *parent_.cluster(), *this);
// Attempt to create custom cluster-specified filter chain
bool created = parent_.cluster()->createFilterChain(*filter_manager_,
/*only_create_if_configured=*/true);
if (!created) {
// Attempt to create custom router-specified filter chain.
created = parent_.config().createFilterChain(*filter_manager_);
}
if (!created) {
// Neither cluster nor router have a custom filter chain; add the default
// cluster filter chain, which only consists of the codec filter.
created = parent_.cluster()->createFilterChain(*filter_manager_, false);
}
// There will always be a codec filter present, which sets the upstream
// interface. Fast-fail any tests that don't set up mocks correctly.
ASSERT(created && upstream_interface_.has_value());
}
UpstreamRequest::~UpstreamRequest() { cleanUp(); }
void UpstreamRequest::cleanUp() {
if (cleaned_up_) {
return;
}
cleaned_up_ = true;
filter_manager_->destroyFilters();
if (span_ != nullptr) {
auto tracing_config = parent_.callbacks()->tracingConfig();
ASSERT(tracing_config.has_value());
Tracing::HttpTracerUtility::finalizeUpstreamSpan(*span_, stream_info_,
tracing_config.value().get());
}
if (per_try_timeout_ != nullptr) {
// Allows for testing.
per_try_timeout_->disableTimer();
}
if (per_try_idle_timeout_ != nullptr) {
// Allows for testing.
per_try_idle_timeout_->disableTimer();
}
if (max_stream_duration_timer_ != nullptr) {
max_stream_duration_timer_->disableTimer();
}
if (upstream_log_flush_timer_ != nullptr) {
upstream_log_flush_timer_->disableTimer();
}
clearRequestEncoder();
// If desired, fire the per-try histogram when the UpstreamRequest
// completes.
if (record_timeout_budget_) {
Event::Dispatcher& dispatcher = parent_.callbacks()->dispatcher();
const MonotonicTime end_time = dispatcher.timeSource().monotonicTime();
const std::chrono::milliseconds response_time =
std::chrono::duration_cast<std::chrono::milliseconds>(end_time - start_time_);
Upstream::ClusterTimeoutBudgetStatsOptRef tb_stats = parent_.cluster()->timeoutBudgetStats();
tb_stats->get().upstream_rq_timeout_budget_per_try_percent_used_.recordValue(
FilterUtility::percentageOfTimeout(response_time, parent_.timeout().per_try_timeout_));
}
// Ditto for request/response size histograms.
Upstream::ClusterRequestResponseSizeStatsOptRef req_resp_stats_opt =
parent_.cluster()->requestResponseSizeStats();
if (req_resp_stats_opt.has_value() && parent_.downstreamHeaders()) {
auto& req_resp_stats = req_resp_stats_opt->get();
req_resp_stats.upstream_rq_headers_size_.recordValue(parent_.downstreamHeaders()->byteSize());
req_resp_stats.upstream_rq_body_size_.recordValue(stream_info_.bytesSent());
if (response_headers_size_.has_value()) {
req_resp_stats.upstream_rs_headers_size_.recordValue(response_headers_size_.value());
req_resp_stats.upstream_rs_body_size_.recordValue(stream_info_.bytesReceived());
}
}
stream_info_.onRequestComplete();
upstreamLog(AccessLog::AccessLogType::UpstreamEnd);
while (downstream_data_disabled_ != 0) {
parent_.callbacks()->onDecoderFilterBelowWriteBufferLowWatermark();
parent_.cluster()->trafficStats()->upstream_flow_control_drained_total_.inc();
--downstream_data_disabled_;
}
// The upstream HTTP filter chain callbacks own headers/trailers while they are traversing the
// filter chain. Make sure to not delete them immediately when the stream ends, as the stream
// often ends during filter chain processing and it causes use-after-free violations.
parent_.callbacks()->dispatcher().deferredDelete(std::move(filter_manager_callbacks_));
}
void UpstreamRequest::upstreamLog(AccessLog::AccessLogType access_log_type) {
const Formatter::HttpFormatterContext log_context{parent_.downstreamHeaders(),
upstream_headers_.get(),
upstream_trailers_.get(),
{},
access_log_type};
for (const auto& upstream_log : parent_.config().upstream_logs_) {
upstream_log->log(log_context, stream_info_);
}
}
// This is called by the FilterManager when all filters have processed 1xx headers. Forward them
// on to the router.
void UpstreamRequest::decode1xxHeaders(Http::ResponseHeaderMapPtr&& headers) {
ScopeTrackerScopeState scope(&parent_.callbacks()->scope(), parent_.callbacks()->dispatcher());
ASSERT(Http::HeaderUtility::isSpecial1xx(*headers));
addResponseHeadersSize(headers->byteSize());
maybeHandleDeferredReadDisable();
parent_.onUpstream1xxHeaders(std::move(headers), *this);
}
// This is called by the FilterManager when all filters have processed headers. Forward them
// on to the router.
void UpstreamRequest::decodeHeaders(Http::ResponseHeaderMapPtr&& headers, bool end_stream) {
ASSERT(headers.get());
ENVOY_STREAM_LOG(trace, "end_stream: {}, upstream response headers:\n{}", *parent_.callbacks(),
end_stream, *headers);
ScopeTrackerScopeState scope(&parent_.callbacks()->scope(), parent_.callbacks()->dispatcher());
resetPerTryIdleTimer();
addResponseHeadersSize(headers->byteSize());
// We drop unsupported 1xx on the floor here. 101 upgrade headers need to be passed to the client
// as part of the final response. Most 1xx headers are handled in onUpstream1xxHeaders.
//
// We could in principle handle other headers here, but this might result in the double invocation
// of decodeHeaders() (once for informational, again for non-informational), which is likely an
// easy to miss corner case in the filter and HCM contract.
//
// This filtering is done early in upstream request, unlike 100 coalescing which is performed in
// the router filter, since the filtering only depends on the state of a single upstream, and we
// don't want to confuse accounting such as onFirstUpstreamRxByteReceived() with informational
// headers.
const uint64_t response_code = Http::Utility::getResponseStatus(*headers);
if (Http::CodeUtility::is1xx(response_code) &&
response_code != enumToInt(Http::Code::SwitchingProtocols)) {
return;
}
awaiting_headers_ = false;
if (span_ != nullptr) {
Tracing::HttpTracerUtility::onUpstreamResponseHeaders(*span_, headers.get());
}
if (!parent_.config().upstream_logs_.empty()) {
upstream_headers_ = Http::createHeaderMap<Http::ResponseHeaderMapImpl>(*headers);
}
stream_info_.setResponseCode(static_cast<uint32_t>(response_code));
maybeHandleDeferredReadDisable();
ASSERT(headers.get());
parent_.onUpstreamHeaders(response_code, std::move(headers), *this, end_stream);
}
void UpstreamRequest::maybeHandleDeferredReadDisable() {
for (; deferred_read_disabling_count_ > 0; --deferred_read_disabling_count_) {
// If the deferred read disabling count hasn't been cancelled out by read
// enabling count so far, stop the upstream from reading the rest response.
// Because readDisable keeps track of how many time it is called with
// "true" or "false", here it has to be called with "true" the same number
// of times as it would be called with "false" in the future.
parent_.cluster()->trafficStats()->upstream_flow_control_paused_reading_total_.inc();
upstream_->readDisable(true);
}
}
void UpstreamRequest::decodeData(Buffer::Instance& data, bool end_stream) {
ScopeTrackerScopeState scope(&parent_.callbacks()->scope(), parent_.callbacks()->dispatcher());
resetPerTryIdleTimer();
stream_info_.addBytesReceived(data.length());
parent_.onUpstreamData(data, *this, end_stream);
}
void UpstreamRequest::decodeTrailers(Http::ResponseTrailerMapPtr&& trailers) {
ENVOY_STREAM_LOG(trace, "upstream response trailers:\n{}", *parent_.callbacks(), *trailers);
ScopeTrackerScopeState scope(&parent_.callbacks()->scope(), parent_.callbacks()->dispatcher());
if (span_ != nullptr) {
Tracing::HttpTracerUtility::onUpstreamResponseTrailers(*span_, trailers.get());
}
if (!parent_.config().upstream_logs_.empty()) {
upstream_trailers_ = Http::createHeaderMap<Http::ResponseTrailerMapImpl>(*trailers);
}
parent_.onUpstreamTrailers(std::move(trailers), *this);
}
void UpstreamRequest::dumpState(std::ostream& os, int indent_level) const {
const char* spaces = spacesForLevel(indent_level);
os << spaces << "UpstreamRequest " << this << "\n";
if (connection()) {
const auto addressProvider = connection()->connectionInfoProviderSharedPtr();
DUMP_DETAILS(addressProvider);
}
const Http::RequestHeaderMap* request_headers = parent_.downstreamHeaders();
DUMP_DETAILS(request_headers);
if (filter_manager_) {
filter_manager_->dumpState(os, indent_level);
}
}
const Route& UpstreamRequest::route() const { return *parent_.callbacks()->route(); }
OptRef<const Network::Connection> UpstreamRequest::connection() const {
return parent_.callbacks()->connection();
}
void UpstreamRequest::decodeMetadata(Http::MetadataMapPtr&& metadata_map) {
parent_.onUpstreamMetadata(std::move(metadata_map));
}
void UpstreamRequest::maybeEndDecode(bool end_stream) {
if (end_stream) {
upstreamTiming().onLastUpstreamRxByteReceived(parent_.callbacks()->dispatcher().timeSource());
}
}
void UpstreamRequest::onUpstreamHostSelected(Upstream::HostDescriptionConstSharedPtr host,
bool pool_success) {
StreamInfo::UpstreamInfo& upstream_info = *streamInfo().upstreamInfo();
upstream_info.setUpstreamHost(host);
upstream_host_ = host;
parent_.onUpstreamHostSelected(host, pool_success);
}
void UpstreamRequest::acceptHeadersFromRouter(bool end_stream) {
ASSERT(!router_sent_end_stream_);
router_sent_end_stream_ = end_stream;
// Make sure that when we are forwarding CONNECT payload we do not do so until
// the upstream has accepted the CONNECT request.
// This must be done before conn_pool->newStream, as onPoolReady un-pauses for CONNECT
// termination.
auto* headers = parent_.downstreamHeaders();
if (headers->getMethodValue() == Http::Headers::get().MethodValues.Connect) {
paused_for_connect_ = true;
}
// Kick off creation of the upstream connection immediately upon receiving headers.
// In future it may be possible for upstream HTTP filters to delay this, or influence connection
// creation but for now optimize for minimal latency and fetch the connection
// as soon as possible.
conn_pool_->newStream(this);
if (parent_.config().upstream_log_flush_interval_.has_value()) {
upstream_log_flush_timer_ = parent_.callbacks()->dispatcher().createTimer([this]() -> void {
// If the request is complete, we've already done the stream-end upstream log, and shouldn't
// do the periodic log.
if (!streamInfo().requestComplete().has_value()) {
upstreamLog(AccessLog::AccessLogType::UpstreamPeriodic);
resetUpstreamLogFlushTimer();
}
// Both downstream and upstream bytes meters may not be initialized when
// the timer goes off, e.g. if it takes longer than the interval for a
// connection to be initialized; check for nullptr.
auto& downstream_bytes_meter = stream_info_.getDownstreamBytesMeter();
auto& upstream_bytes_meter = stream_info_.getUpstreamBytesMeter();
const SystemTime now = parent_.callbacks()->dispatcher().timeSource().systemTime();
if (downstream_bytes_meter) {
downstream_bytes_meter->takeUpstreamPeriodicLoggingSnapshot(now);
}
if (upstream_bytes_meter) {
upstream_bytes_meter->takeUpstreamPeriodicLoggingSnapshot(now);
}
});
resetUpstreamLogFlushTimer();
}
filter_manager_->requestHeadersInitialized();
filter_manager_->streamInfo().setRequestHeaders(*parent_.downstreamHeaders());
filter_manager_->decodeHeaders(*parent_.downstreamHeaders(), end_stream);
}
void UpstreamRequest::acceptDataFromRouter(Buffer::Instance& data, bool end_stream) {
ASSERT(!router_sent_end_stream_);
router_sent_end_stream_ = end_stream;
filter_manager_->decodeData(data, end_stream);
}
void UpstreamRequest::acceptTrailersFromRouter(Http::RequestTrailerMap& trailers) {
ASSERT(!router_sent_end_stream_);
router_sent_end_stream_ = true;
encode_trailers_ = true;
filter_manager_->decodeTrailers(trailers);
}
void UpstreamRequest::acceptMetadataFromRouter(Http::MetadataMapPtr&& metadata_map_ptr) {
filter_manager_->decodeMetadata(*metadata_map_ptr);
}
void UpstreamRequest::onResetStream(Http::StreamResetReason reason,
absl::string_view transport_failure_reason) {
ScopeTrackerScopeState scope(&parent_.callbacks()->scope(), parent_.callbacks()->dispatcher());
if (span_ != nullptr) {
// Add tags about reset.
span_->setTag(Tracing::Tags::get().Error, Tracing::Tags::get().True);
span_->setTag(Tracing::Tags::get().ErrorReason, Http::Utility::resetReasonToString(reason));
}
clearRequestEncoder();
awaiting_headers_ = false;
if (!calling_encode_headers_) {
stream_info_.setResponseFlag(Filter::streamResetReasonToResponseFlag(reason));
parent_.onUpstreamReset(reason, transport_failure_reason, *this);
} else {
deferred_reset_reason_ = reason;
}
}
void UpstreamRequest::resetStream() {
if (conn_pool_->cancelAnyPendingStream()) {
ENVOY_STREAM_LOG(debug, "canceled pool request", *parent_.callbacks());
ASSERT(!upstream_);
}
// Don't reset the stream if we're already done with it.
if (upstreamTiming().last_upstream_tx_byte_sent_.has_value() &&
upstreamTiming().last_upstream_rx_byte_received_.has_value()) {
return;
}
if (span_ != nullptr) {
// Add tags about the cancellation.
span_->setTag(Tracing::Tags::get().Canceled, Tracing::Tags::get().True);
}
if (upstream_) {
ENVOY_STREAM_LOG(debug, "resetting pool request", *parent_.callbacks());
upstream_->resetStream();
clearRequestEncoder();
}
reset_stream_ = true;
}
void UpstreamRequest::resetPerTryIdleTimer() {
if (per_try_idle_timeout_ != nullptr) {
per_try_idle_timeout_->enableTimer(parent_.timeout().per_try_idle_timeout_);
}
}
void UpstreamRequest::resetUpstreamLogFlushTimer() {
if (upstream_log_flush_timer_ != nullptr) {
upstream_log_flush_timer_->enableTimer(parent_.config().upstream_log_flush_interval_.value());
}
}
void UpstreamRequest::setupPerTryTimeout() {
ASSERT(!per_try_timeout_);
if (parent_.timeout().per_try_timeout_.count() > 0) {
per_try_timeout_ =
parent_.callbacks()->dispatcher().createTimer([this]() -> void { onPerTryTimeout(); });
per_try_timeout_->enableTimer(parent_.timeout().per_try_timeout_);
}
ASSERT(!per_try_idle_timeout_);
if (parent_.timeout().per_try_idle_timeout_.count() > 0) {
per_try_idle_timeout_ =
parent_.callbacks()->dispatcher().createTimer([this]() -> void { onPerTryIdleTimeout(); });
resetPerTryIdleTimer();
}
}
void UpstreamRequest::onPerTryIdleTimeout() {
ENVOY_STREAM_LOG(debug, "upstream per try idle timeout", *parent_.callbacks());
if (per_try_timeout_) {
// Disable the per try idle timer, so it does not trigger further retries
per_try_timeout_->disableTimer();
}
stream_info_.setResponseFlag(StreamInfo::CoreResponseFlag::StreamIdleTimeout);
parent_.onPerTryIdleTimeout(*this);
}
void UpstreamRequest::onPerTryTimeout() {
if (per_try_idle_timeout_) {
// Delete the per try idle timer, so it does not trigger further retries.
// The timer has to be deleted to prevent data flow from re-arming it.
per_try_idle_timeout_.reset();
}
// If we've sent anything downstream, ignore the per try timeout and let the response continue
// up to the global timeout
if (!parent_.downstreamResponseStarted()) {
ENVOY_STREAM_LOG(debug, "upstream per try timeout", *parent_.callbacks());
stream_info_.setResponseFlag(StreamInfo::CoreResponseFlag::UpstreamRequestTimeout);
parent_.onPerTryTimeout(*this);
} else {
ENVOY_STREAM_LOG(debug,
"ignored upstream per try timeout due to already started downstream response",
*parent_.callbacks());
}
}
void UpstreamRequest::recordConnectionPoolCallbackLatency() {
upstreamTiming().recordConnectionPoolCallbackLatency(
start_time_, parent_.callbacks()->dispatcher().timeSource());
}
void UpstreamRequest::onPoolFailure(ConnectionPool::PoolFailureReason reason,
absl::string_view transport_failure_reason,
Upstream::HostDescriptionConstSharedPtr host) {
recordConnectionPoolCallbackLatency();
Http::StreamResetReason reset_reason = [](ConnectionPool::PoolFailureReason reason) {
switch (reason) {
case ConnectionPool::PoolFailureReason::Overflow:
return Http::StreamResetReason::Overflow;
case ConnectionPool::PoolFailureReason::RemoteConnectionFailure:
return Http::StreamResetReason::RemoteConnectionFailure;
case ConnectionPool::PoolFailureReason::LocalConnectionFailure:
return Http::StreamResetReason::LocalConnectionFailure;
case ConnectionPool::PoolFailureReason::Timeout:
return Http::StreamResetReason::ConnectionTimeout;
}
PANIC_DUE_TO_CORRUPT_ENUM;
}(reason);
stream_info_.upstreamInfo()->setUpstreamTransportFailureReason(transport_failure_reason);
// Mimic an upstream reset.
onUpstreamHostSelected(host, false);
onResetStream(reset_reason, transport_failure_reason);
}
void UpstreamRequest::onPoolReady(std::unique_ptr<GenericUpstream>&& upstream,
Upstream::HostDescriptionConstSharedPtr host,
const Network::ConnectionInfoProvider& address_provider,
StreamInfo::StreamInfo& info,
absl::optional<Http::Protocol> protocol) {
// This may be called under an existing ScopeTrackerScopeState but it will unwind correctly.
ScopeTrackerScopeState scope(&parent_.callbacks()->scope(), parent_.callbacks()->dispatcher());
ENVOY_STREAM_LOG(debug, "pool ready", *parent_.callbacks());
recordConnectionPoolCallbackLatency();
upstream_ = std::move(upstream);
had_upstream_ = true;
// Have the upstream use the account of the downstream.
upstream_->setAccount(parent_.callbacks()->account());
if (enable_half_close_) {
upstream_->enableHalfClose();
}
host->outlierDetector().putResult(Upstream::Outlier::Result::LocalOriginConnectSuccess);
onUpstreamHostSelected(host, true);
if (protocol) {
stream_info_.protocol(protocol.value());
} else {
// We only pause for CONNECT for HTTP upstreams. If this is a TCP upstream, unpause.
paused_for_connect_ = false;
}
StreamInfo::UpstreamInfo& upstream_info = *stream_info_.upstreamInfo();
if (info.upstreamInfo()) {
auto& upstream_timing = info.upstreamInfo()->upstreamTiming();
upstreamTiming().upstream_connect_start_ = upstream_timing.upstream_connect_start_;
upstreamTiming().upstream_connect_complete_ = upstream_timing.upstream_connect_complete_;
upstreamTiming().upstream_handshake_complete_ = upstream_timing.upstream_handshake_complete_;
upstream_info.setUpstreamNumStreams(info.upstreamInfo()->upstreamNumStreams());
}
// Upstream HTTP filters might have already created/set a filter state.
const StreamInfo::FilterStateSharedPtr& filter_state = info.filterState();
if (!filter_state) {
upstream_info.setUpstreamFilterState(
std::make_shared<StreamInfo::FilterStateImpl>(StreamInfo::FilterState::LifeSpan::Request));
} else {
upstream_info.setUpstreamFilterState(filter_state);
}
upstream_info.setUpstreamLocalAddress(address_provider.localAddress());
upstream_info.setUpstreamRemoteAddress(address_provider.remoteAddress());
upstream_info.setUpstreamSslConnection(info.downstreamAddressProvider().sslConnection());
if (info.downstreamAddressProvider().connectionID().has_value()) {
upstream_info.setUpstreamConnectionId(info.downstreamAddressProvider().connectionID().value());
}
if (info.downstreamAddressProvider().interfaceName().has_value()) {
upstream_info.setUpstreamInterfaceName(
info.downstreamAddressProvider().interfaceName().value());
}
stream_info_.setUpstreamBytesMeter(upstream_->bytesMeter());
StreamInfo::StreamInfo::syncUpstreamAndDownstreamBytesMeter(parent_.callbacks()->streamInfo(),
stream_info_);
if (protocol) {
upstream_info.setUpstreamProtocol(protocol.value());
}
if (parent_.downstreamEndStream()) {
setupPerTryTimeout();
} else {
create_per_try_timeout_on_request_complete_ = true;
}
// Make sure the connection manager will inform the downstream watermark manager when the
// downstream buffers are overrun. This may result in immediate watermark callbacks referencing
// the encoder.
parent_.callbacks()->addDownstreamWatermarkCallbacks(downstream_watermark_manager_);
absl::optional<std::chrono::milliseconds> max_stream_duration;
if (parent_.dynamicMaxStreamDuration().has_value()) {
max_stream_duration = parent_.dynamicMaxStreamDuration().value();
} else if (upstream_host_->cluster().commonHttpProtocolOptions().has_max_stream_duration()) {
max_stream_duration = std::chrono::milliseconds(DurationUtil::durationToMilliseconds(
upstream_host_->cluster().commonHttpProtocolOptions().max_stream_duration()));
}
if (max_stream_duration.has_value() && max_stream_duration->count()) {
max_stream_duration_timer_ = parent_.callbacks()->dispatcher().createTimer(
[this]() -> void { onStreamMaxDurationReached(); });
max_stream_duration_timer_->enableTimer(*max_stream_duration);
}
const auto* route_entry = route().routeEntry();
if (route_entry->autoHostRewrite() && !host->hostname().empty()) {
Http::Utility::updateAuthority(*parent_.downstreamHeaders(), host->hostname(),
route_entry->appendXfh());
}
stream_info_.setRequestHeaders(*parent_.downstreamHeaders());
if (parent_.config().flush_upstream_log_on_upstream_stream_) {
upstreamLog(AccessLog::AccessLogType::UpstreamPoolReady);
}
if (address_provider.connectionID() && stream_info_.downstreamAddressProvider().connectionID()) {
ENVOY_LOG(debug, "Attached upstream connection [C{}] to downstream connection [C{}]",
address_provider.connectionID().value(),
stream_info_.downstreamAddressProvider().connectionID().value());
}
for (auto* callback : upstream_callbacks_) {
callback->onUpstreamConnectionEstablished();
}
}
UpstreamToDownstream& UpstreamRequest::upstreamToDownstream() { return *upstream_interface_; }
void UpstreamRequest::onStreamMaxDurationReached() {
upstream_host_->cluster().trafficStats()->upstream_rq_max_duration_reached_.inc();
// The upstream had closed then try to retry along with retry policy.
parent_.onStreamMaxDurationReached(*this);
}
void UpstreamRequest::clearRequestEncoder() {
// Before clearing the encoder, unsubscribe from callbacks.
if (upstream_) {
parent_.callbacks()->removeDownstreamWatermarkCallbacks(downstream_watermark_manager_);
}
upstream_.reset();
}
void UpstreamRequest::readDisableOrDefer(bool disable) {
if (!upstream_wait_for_response_headers_before_disabling_read_) {
if (disable) {
parent_.cluster()->trafficStats()->upstream_flow_control_paused_reading_total_.inc();
upstream_->readDisable(true);
} else {
parent_.cluster()->trafficStats()->upstream_flow_control_resumed_reading_total_.inc();
upstream_->readDisable(false);
}
return;
}
if (disable) {
// See comments on deferred_read_disabling_count_ for when we do and don't defer.
if (parent_.downstreamResponseStarted()) {
// The downstream connection is overrun. Pause reads from upstream.
// If there are multiple calls to readDisable either the codec (H2) or the
// underlying Network::Connection (H1) will handle reference counting.
parent_.cluster()->trafficStats()->upstream_flow_control_paused_reading_total_.inc();
upstream_->readDisable(disable);
} else {
++deferred_read_disabling_count_;
}
return;
}
// One source of connection blockage has buffer available.
if (deferred_read_disabling_count_ > 0) {
ASSERT(!parent_.downstreamResponseStarted());
// Cancel out an existing deferred read disabling.
--deferred_read_disabling_count_;
return;
}
ASSERT(parent_.downstreamResponseStarted());
// Pass this on to the stream, which
// will resume reads if this was the last remaining high watermark.
parent_.cluster()->trafficStats()->upstream_flow_control_resumed_reading_total_.inc();
upstream_->readDisable(disable);
}
void UpstreamRequest::DownstreamWatermarkManager::onAboveWriteBufferHighWatermark() {
ASSERT(parent_.upstream_);
parent_.readDisableOrDefer(true);
}
void UpstreamRequest::DownstreamWatermarkManager::onBelowWriteBufferLowWatermark() {
ASSERT(parent_.upstream_);
parent_.readDisableOrDefer(false);
}
void UpstreamRequest::disableDataFromDownstreamForFlowControl() {
parent_.cluster()->trafficStats()->upstream_flow_control_backed_up_total_.inc();
parent_.callbacks()->onDecoderFilterAboveWriteBufferHighWatermark();
++downstream_data_disabled_;
}
void UpstreamRequest::enableDataFromDownstreamForFlowControl() {
parent_.cluster()->trafficStats()->upstream_flow_control_drained_total_.inc();
parent_.callbacks()->onDecoderFilterBelowWriteBufferLowWatermark();
ASSERT(downstream_data_disabled_ != 0);
if (downstream_data_disabled_ > 0) {
--downstream_data_disabled_;
}
}
Http::RequestHeaderMapOptRef UpstreamRequestFilterManagerCallbacks::requestHeaders() {
return {*upstream_request_.parent_.downstreamHeaders()};
}
Http::RequestTrailerMapOptRef UpstreamRequestFilterManagerCallbacks::requestTrailers() {
if (upstream_request_.parent_.downstreamTrailers()) {
return {*upstream_request_.parent_.downstreamTrailers()};
}
if (trailers_) {
return {*trailers_};
}
return {};
}
const ScopeTrackedObject& UpstreamRequestFilterManagerCallbacks::scope() {
return upstream_request_.parent_.callbacks()->scope();
}
OptRef<const Tracing::Config> UpstreamRequestFilterManagerCallbacks::tracingConfig() const {
return upstream_request_.parent_.callbacks()->tracingConfig();
}
Tracing::Span& UpstreamRequestFilterManagerCallbacks::activeSpan() {
return upstream_request_.parent_.callbacks()->activeSpan();
}
void UpstreamRequestFilterManagerCallbacks::resetStream(
Http::StreamResetReason reset_reason, absl::string_view transport_failure_reason) {
// The filter manager needs to disambiguate between a filter-driven reset,
// which should force reset the stream, and a codec driven reset, which should
// tell the router the stream reset, and let the router make the decision to
// send a local reply, or retry the stream.
if (reset_reason == Http::StreamResetReason::LocalReset &&
transport_failure_reason != "codec_error") {
upstream_request_.parent_.callbacks()->resetStream();
return;
}
return upstream_request_.onResetStream(reset_reason, transport_failure_reason);
}
Upstream::ClusterInfoConstSharedPtr UpstreamRequestFilterManagerCallbacks::clusterInfo() {
return upstream_request_.parent_.callbacks()->clusterInfo();
}
Http::Http1StreamEncoderOptionsOptRef
UpstreamRequestFilterManagerCallbacks::http1StreamEncoderOptions() {
return upstream_request_.parent_.callbacks()->http1StreamEncoderOptions();
}
} // namespace Router
} // namespace Envoy