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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
// Copyright 2026 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use futures::StreamExt;
use pingora_core::{
protocols::http::custom::{
client::Session as CustomSession, is_informational_except_101, BodyWrite,
CustomMessageWrite, CUSTOM_MESSAGE_QUEUE_SIZE,
},
ImmutStr,
};
use proxy_cache::{range_filter::RangeBodyFilter, ServeFromCache};
use proxy_common::{DownstreamStateMachine, ResponseStateMachine};
use tokio::sync::oneshot;
use super::*;
impl<SV, C> HttpProxy<SV, C>
where
C: custom::Connector,
{
/// Proxy to a custom protocol upstream.
/// Returns (reuse_server, error)
pub(crate) async fn proxy_to_custom_upstream(
&self,
session: &mut Session,
client_session: &mut C::Session,
reused: bool,
peer: &HttpPeer,
ctx: &mut SV::CTX,
) -> (bool, Option<Box<Error>>)
where
SV: ProxyHttp + Send + Sync,
SV::CTX: Send + Sync,
{
#[cfg(windows)]
let raw = client_session.fd() as std::os::windows::io::RawSocket;
#[cfg(unix)]
let raw = client_session.fd();
if let Err(e) = self
.inner
.connected_to_upstream(session, reused, peer, raw, client_session.digest(), ctx)
.await
{
return (false, Some(e));
}
let (server_session_reuse, error) = self
.custom_proxy_down_to_up(session, client_session, peer, ctx)
.await;
// Parity with H1/H2: custom upstreams don't report payload bytes; record 0.
session.set_upstream_body_bytes_received(0);
(server_session_reuse, error)
}
/// Handle custom protocol proxying from downstream to upstream.
/// Returns (reuse_server, error)
async fn custom_proxy_down_to_up(
&self,
session: &mut Session,
client_session: &mut C::Session,
peer: &HttpPeer,
ctx: &mut SV::CTX,
) -> (bool, Option<Box<Error>>)
where
SV: ProxyHttp + Send + Sync,
SV::CTX: Send + Sync,
{
let mut req = session.req_header().clone();
if session.cache.enabled() {
pingora_cache::filters::upstream::request_filter(
&mut req,
session.cache.maybe_cache_meta(),
);
session.mark_upstream_headers_mutated_for_cache();
}
match self
.inner
.upstream_request_filter(session, &mut req, ctx)
.await
{
Ok(_) => { /* continue */ }
Err(e) => {
return (false, Some(e));
}
}
session.upstream_compression.request_filter(&req);
let body_empty = session.as_mut().is_body_empty();
debug!("Request to custom: {req:?}");
let req = Box::new(req);
if let Err(e) = client_session.write_request_header(req, body_empty).await {
return (false, Some(e.into_up()));
}
client_session.set_read_timeout(peer.options.read_timeout);
client_session.set_write_timeout(peer.options.write_timeout);
// take the body writer out of the client for easy duplex
let mut client_body = client_session
.take_request_body_writer()
.expect("already send request header");
let (tx, rx) = mpsc::channel::<HttpTask>(TASK_BUFFER_SIZE);
session.as_mut().enable_retry_buffering();
// Custom message logic
let Some(mut upstream_custom_message_reader) = client_session.take_custom_message_reader()
else {
return (
false,
Some(Error::explain(
ReadError,
"can't extract custom reader from upstream",
)),
);
};
let Some(mut upstream_custom_message_writer) = client_session.take_custom_message_writer()
else {
return (
false,
Some(Error::explain(
WriteError,
"custom upstream must have a custom message writer",
)),
);
};
// A channel to inject custom messages to upstream from server logic.
let (upstream_custom_message_inject_tx, upstream_custom_message_inject_rx) =
mpsc::channel(CUSTOM_MESSAGE_QUEUE_SIZE);
// Downstream reader
let mut downstream_custom_message_reader = match session.downstream_custom_message() {
Ok(Some(rx)) => rx,
Ok(None) => Box::new(futures::stream::empty::<Result<Bytes>>()),
Err(err) => return (false, Some(err)),
};
// Downstream writer
let (mut downstream_custom_message_writer, downstream_custom_final_hop): (
Box<dyn CustomMessageWrite>,
bool, // if this hop is final
) = if let Some(custom_session) = session.downstream_session.as_custom_mut() {
(
custom_session
.take_custom_message_writer()
.expect("custom downstream must have a custom message writer"),
false,
)
} else {
(Box::new(()), true)
};
// A channel to inject custom messages to downstream from server logic.
let (downstream_custom_message_inject_tx, downstream_custom_message_inject_rx) =
mpsc::channel(CUSTOM_MESSAGE_QUEUE_SIZE);
// Filters for ProxyHttp trait
let (upstream_custom_message_filter_tx, upstream_custom_message_filter_rx) =
mpsc::channel(CUSTOM_MESSAGE_QUEUE_SIZE);
let (downstream_custom_message_filter_tx, downstream_custom_message_filter_rx) =
mpsc::channel(CUSTOM_MESSAGE_QUEUE_SIZE);
// Cancellation channels for custom coroutines
// The transmitters act as guards: when dropped, they signal the receivers to cancel.
// `cancel_downstream_reader_tx` is held and later used to explicitly cancel.
// `_cancel_upstream_reader_tx` is unused (prefixed with _) - it will be dropped at the
// end of this scope, which automatically signals cancellation to the upstream reader.
let (cancel_downstream_reader_tx, cancel_downstream_reader_rx) = oneshot::channel();
let (_cancel_upstream_reader_tx, cancel_upstream_reader_rx) = oneshot::channel();
let upstream_custom_message_forwarder = CustomMessageForwarder {
ctx: "down_to_up".into(),
reader: &mut downstream_custom_message_reader,
writer: &mut upstream_custom_message_writer,
filter: upstream_custom_message_filter_tx,
inject: upstream_custom_message_inject_rx,
cancel: cancel_downstream_reader_rx,
};
let downstream_custom_message_forwarder = CustomMessageForwarder {
ctx: "up_to_down".into(),
reader: &mut upstream_custom_message_reader,
writer: &mut downstream_custom_message_writer,
filter: downstream_custom_message_filter_tx,
inject: downstream_custom_message_inject_rx,
cancel: cancel_upstream_reader_rx,
};
if let Err(e) = self
.inner
.custom_forwarding(
session,
ctx,
Some(upstream_custom_message_inject_tx),
downstream_custom_message_inject_tx,
)
.await
{
return (false, Some(e));
}
/* read downstream body and upstream response at the same time */
let ret = tokio::try_join!(
self.custom_bidirection_down_to_up(
session,
&mut client_body,
rx,
ctx,
upstream_custom_message_filter_rx,
downstream_custom_message_filter_rx,
downstream_custom_final_hop,
cancel_downstream_reader_tx,
),
custom_pipe_up_to_down_response(client_session, tx),
upstream_custom_message_forwarder.proxy(),
downstream_custom_message_forwarder.proxy(),
);
if let Some(custom_session) = session.downstream_session.as_custom_mut() {
custom_session
.restore_custom_message_writer(downstream_custom_message_writer)
.expect("downstream restore_custom_message_writer should be empty");
custom_session
.restore_custom_message_reader(downstream_custom_message_reader)
.expect("downstream restore_custom_message_reader should be empty");
}
match ret {
Ok((downstream_can_reuse, _upstream, _custom_up_down, _custom_down_up)) => {
(downstream_can_reuse, None)
}
Err(e) => (false, Some(e)),
}
}
// returns whether server (downstream) session can be reused
#[allow(clippy::too_many_arguments)]
async fn custom_bidirection_down_to_up(
&self,
session: &mut Session,
client_body: &mut Box<dyn BodyWrite>,
mut rx: mpsc::Receiver<HttpTask>,
ctx: &mut SV::CTX,
mut upstream_custom_message_filter_rx: mpsc::Receiver<(
Bytes,
oneshot::Sender<Option<Bytes>>,
)>,
mut downstream_custom_message_filter_rx: mpsc::Receiver<(
Bytes,
oneshot::Sender<Option<Bytes>>,
)>,
downstream_custom_final_hop: bool,
cancel_downstream_reader_tx: oneshot::Sender<()>,
) -> Result<bool>
where
SV: ProxyHttp + Send + Sync,
SV::CTX: Send + Sync,
{
let mut cancel_downstream_reader_tx = Some(cancel_downstream_reader_tx);
let mut downstream_state = DownstreamStateMachine::new(session.as_mut().is_body_done());
// retry, send buffer if it exists
if let Some(buffer) = session.as_mut().get_retry_buffer() {
self.send_body_to_custom(
session,
Some(buffer),
downstream_state.is_done(),
client_body,
ctx,
)
.await?;
}
let mut response_state = ResponseStateMachine::new();
// these two below can be wrapped into an internal ctx
// use cache when upstream revalidates (or TODO: error)
let mut serve_from_cache = ServeFromCache::new();
let mut range_body_filter = proxy_cache::range_filter::RangeBodyFilter::new();
let mut upstream_custom = true;
let mut downstream_custom = true;
/* duplex mode
* see the Same function for h1 for more comments
*/
while !downstream_state.is_done()
|| !response_state.is_done()
|| upstream_custom
|| downstream_custom
{
// partial read support, this check will also be false if cache is disabled.
let support_cache_partial_read =
session.cache.support_streaming_partial_write() == Some(true);
let upgraded = session.was_upgraded();
tokio::select! {
body = session.downstream_session.read_body_or_idle(downstream_state.is_done()), if downstream_state.can_poll() => {
let body = match body {
Ok(b) => b,
Err(e) => {
let wait_for_cache_fill = (!serve_from_cache.is_on() && support_cache_partial_read)
|| serve_from_cache.is_miss();
if wait_for_cache_fill {
// ignore downstream error so that upstream can continue to write cache
downstream_state.to_errored();
warn!(
"Downstream Error ignored during caching: {}, {}",
e,
self.inner.request_summary(session, ctx)
);
continue;
} else {
return Err(e.into_down());
}
}
};
let is_body_done = session.is_body_done();
match self.send_body_to_custom(session, body, is_body_done, client_body, ctx).await {
Ok(request_done) => {
downstream_state.maybe_finished(request_done);
},
Err(e) => {
// mark request done, attempt to drain receive
warn!("body send error: {e}");
// upstream is what actually errored but we don't want to continue
// polling the downstream body
downstream_state.to_errored();
// downstream still trying to send something, but the upstream is already stooped
// cancel the custom downstream to upstream coroutine, because the proxy will not see EOS.
let _ = cancel_downstream_reader_tx.take().expect("cancel must be set and called once").send(());
}
};
},
task = rx.recv(), if !response_state.upstream_done() => {
debug!("upstream event");
if let Some(t) = task {
debug!("upstream event custom: {:?}", t);
if serve_from_cache.should_discard_upstream() {
// just drain, do we need to do anything else?
continue;
}
// pull as many tasks as we can
let mut tasks = Vec::with_capacity(TASK_BUFFER_SIZE);
tasks.push(t);
while let Ok(task) = rx.try_recv() {
tasks.push(task);
}
/* run filters before sending to downstream */
let mut filtered_tasks = Vec::with_capacity(TASK_BUFFER_SIZE);
for mut t in tasks {
if self.revalidate_or_stale(session, &mut t, ctx).await {
serve_from_cache.enable();
response_state.enable_cached_response();
// skip downstream filtering entirely as the 304 will not be sent
break;
}
session.upstream_compression.response_filter(&mut t);
// check error and abort
// otherwise the error is surfaced via write_response_tasks()
if !serve_from_cache.should_send_to_downstream() {
if let HttpTask::Failed(e) = t {
return Err(e);
}
}
filtered_tasks.push(
self.custom_response_filter(session, t, ctx,
&mut serve_from_cache,
&mut range_body_filter, false).await?);
if serve_from_cache.is_miss_header() {
response_state.enable_cached_response();
}
}
if !serve_from_cache.should_send_to_downstream() {
// TODO: need to derive response_done from filtered_tasks in case downstream failed already
continue;
}
let upgraded = session.was_upgraded();
let response_done = session.write_response_tasks(filtered_tasks).await?;
if !upgraded && session.was_upgraded() && downstream_state.can_poll() {
// just upgraded, the downstream state should be reset to continue to
// poll body
trace!("reset downstream state on upgrade");
downstream_state.reset();
}
response_state.maybe_set_upstream_done(response_done);
} else {
debug!("empty upstream event");
response_state.maybe_set_upstream_done(true);
}
}
task = serve_from_cache.next_http_task(&mut session.cache, &mut range_body_filter, upgraded),
if !response_state.cached_done() && !downstream_state.is_errored() && serve_from_cache.is_on() => {
let task = self.custom_response_filter(session, task?, ctx,
&mut serve_from_cache,
&mut range_body_filter, true).await?;
match session.write_response_tasks(vec![task]).await {
Ok(b) => response_state.maybe_set_cache_done(b),
Err(e) => if serve_from_cache.is_miss() {
// give up writing to downstream but wait for upstream cache write to finish
downstream_state.to_errored();
response_state.maybe_set_cache_done(true);
warn!(
"Downstream Error ignored during caching: {}, {}",
e,
self.inner.request_summary(session, ctx)
);
continue;
} else {
return Err(e);
}
}
if response_state.cached_done() {
if let Err(e) = session.cache.finish_hit_handler().await {
warn!("Error during finish_hit_handler: {}", e);
}
}
}
ret = upstream_custom_message_filter_rx.recv(), if upstream_custom => {
let Some(msg) = ret else {
debug!("upstream_custom_message_filter_rx: custom downstream to upstream exited on reading");
upstream_custom = false;
continue;
};
let (data, callback) = msg;
let new_msg = self.inner
.downstream_custom_message_proxy_filter(session, data, ctx, false) // false because the upstream is custom
.await?;
if callback.send(new_msg).is_err() {
debug!("upstream_custom_message_incoming_rx: custom downstream to upstream exited on callback");
upstream_custom = false;
continue;
};
},
ret = downstream_custom_message_filter_rx.recv(), if downstream_custom => {
let Some(msg) = ret else {
debug!("downstream_custom_message_filter_rx: custom upstream to downstream exited on reading");
downstream_custom = false;
continue;
};
let (data, callback) = msg;
let new_msg = self.inner
.upstream_custom_message_proxy_filter(session, data, ctx, downstream_custom_final_hop)
.await?;
if callback.send(new_msg).is_err() {
debug!("downstream_custom_message_filter_rx: custom upstream to downstream exited on callback");
downstream_custom = false;
continue
};
},
else => {
break;
}
}
}
// Re-raise the error then the loop is finished.
if downstream_state.is_errored() {
let err = Error::e_explain(WriteError, "downstream_state is_errored");
error!("custom_bidirection_down_to_up: downstream_state.is_errored",);
return err;
}
client_body.cleanup().await?;
let mut reuse_downstream = !downstream_state.is_errored();
if reuse_downstream {
match session.as_mut().finish_body().await {
Ok(_) => {
debug!("finished sending body to downstream");
}
Err(e) => {
error!("Error finish sending body to downstream: {}", e);
reuse_downstream = false;
}
}
}
Ok(reuse_downstream)
}
async fn custom_response_filter(
&self,
session: &mut Session,
mut task: HttpTask,
ctx: &mut SV::CTX,
serve_from_cache: &mut ServeFromCache,
range_body_filter: &mut RangeBodyFilter,
from_cache: bool, // are the task from cache already
) -> Result<HttpTask>
where
SV: ProxyHttp + Send + Sync,
SV::CTX: Send + Sync,
{
if !from_cache {
self.upstream_filter(session, &mut task, ctx).await?;
// cache the original response before any downstream transformation
// requests that bypassed cache still need to run filters to see if the response has become cacheable
if session.cache.enabled() || session.cache.bypassing() {
if let Err(e) = self
.cache_http_task(session, &task, ctx, serve_from_cache)
.await
{
session.cache.disable(NoCacheReason::StorageError);
if serve_from_cache.is_miss_body() {
// if the response stream cache body during miss but write fails, it has to
// give up the entire request
return Err(e);
} else {
// otherwise, continue processing the response
warn!(
"Fail to cache response: {}, {}",
e,
self.inner.request_summary(session, ctx)
);
}
}
}
// skip the downstream filtering if these tasks are just for cache admission
if !serve_from_cache.should_send_to_downstream() {
return Ok(task);
}
} // else: cached/local response, no need to trigger upstream filters and caching
match task {
HttpTask::Header(mut header, eos) => {
/* Downstream revalidation, only needed when cache is on because otherwise origin
* will handle it */
// TODO: if cache is disabled during response phase, we should still do the filter
if session.cache.enabled() {
self.downstream_response_conditional_filter(
serve_from_cache,
session,
&mut header,
ctx,
);
if !session.ignore_downstream_range {
let range_type = self.inner.range_header_filter(session, &mut header, ctx);
range_body_filter.set(range_type);
}
}
self.inner
.response_filter(session, &mut header, ctx)
.await?;
/* Downgrade the version so that write_response_header won't panic */
header.set_version(Version::HTTP_11);
// these status codes / method cannot have body, so no need to add chunked encoding
let no_body = session.req_header().method == "HEAD"
|| matches!(header.status.as_u16(), 204 | 304);
/* Add chunked header to tell downstream to use chunked encoding
* during the absent of content-length */
if !no_body
&& !header.status.is_informational()
&& header.headers.get(http::header::CONTENT_LENGTH).is_none()
{
header.insert_header(http::header::TRANSFER_ENCODING, "chunked")?;
}
Ok(HttpTask::Header(header, eos))
}
HttpTask::Body(data, eos) => {
let mut data = range_body_filter.filter_body(data);
if let Some(duration) = self
.inner
.response_body_filter(session, &mut data, eos, ctx)?
{
trace!("delaying response for {duration:?}");
time::sleep(duration).await;
}
Ok(HttpTask::Body(data, eos))
}
HttpTask::UpgradedBody(mut data, eos) => {
// range body filter doesn't apply to upgraded body
if let Some(duration) = self
.inner
.response_body_filter(session, &mut data, eos, ctx)?
{
trace!("delaying upgraded response for {duration:?}");
time::sleep(duration).await;
}
Ok(HttpTask::UpgradedBody(data, eos))
}
HttpTask::Trailer(mut trailers) => {
let trailer_buffer = match trailers.as_mut() {
Some(trailers) => {
debug!("Parsing response trailers..");
match self
.inner
.response_trailer_filter(session, trailers, ctx)
.await
{
Ok(buf) => buf,
Err(e) => {
error!(
"Encountered error while filtering upstream trailers {:?}",
e
);
None
}
}
}
_ => None,
};
// if we have a trailer buffer write it to the downstream response body
if let Some(buffer) = trailer_buffer {
// write_body will not write additional bytes after reaching the content-length
// for gRPC H2 -> H1 this is not a problem but may be a problem for non gRPC code
// https://http2.github.io/http2-spec/#malformed
Ok(HttpTask::Body(Some(buffer), true))
} else {
Ok(HttpTask::Trailer(trailers))
}
}
HttpTask::Done => Ok(task),
HttpTask::Failed(_) => Ok(task), // Do nothing just pass the error down
}
}
async fn send_body_to_custom(
&self,
session: &mut Session,
mut data: Option<Bytes>,
end_of_body: bool,
client_body: &mut Box<dyn BodyWrite>,
ctx: &mut SV::CTX,
) -> Result<bool>
where
SV: ProxyHttp + Send + Sync,
SV::CTX: Send + Sync,
{
session
.downstream_modules_ctx
.request_body_filter(&mut data, end_of_body)
.await?;
self.inner
.request_body_filter(session, &mut data, end_of_body, ctx)
.await?;
if session.was_upgraded() {
client_body.upgrade_body_writer();
}
/* it is normal to get 0 bytes because of multi-chunk parsing or request_body_filter.
* Although there is no harm writing empty byte to custom, unlike h1, we ignore it
* for consistency */
if !end_of_body && data.as_ref().is_some_and(|d| d.is_empty()) {
return Ok(false);
}
if let Some(mut data) = data {
client_body
.write_all_buf(&mut data)
.await
.map_err(|e| e.into_up())?;
if end_of_body {
client_body.finish().await.map_err(|e| e.into_up())?;
}
} else {
debug!("Read downstream body done");
client_body
.finish()
.await
.map_err(|e| {
Error::because(WriteError, "while shutdown send data stream on no data", e)
})
.map_err(|e| e.into_up())?;
}
Ok(end_of_body)
}
}
/* Read response header, body and trailer from custom upstream and send them to tx */
async fn custom_pipe_up_to_down_response<S: CustomSession>(
client: &mut S,
tx: mpsc::Sender<HttpTask>,
) -> Result<()> {
let mut is_informational = true;
while is_informational {
client
.read_response_header()
.await
.map_err(|e| e.into_up())?;
let resp_header = Box::new(client.response_header().expect("just read").clone());
// `101 Switching Protocols` is a response to the http1 Upgrade header and it's final response.
// The WebSocket Protocol https://datatracker.ietf.org/doc/html/rfc6455
is_informational = is_informational_except_101(resp_header.status.as_u16() as u32);
match client.check_response_end_or_error(true).await {
Ok(eos) => {
tx.send(HttpTask::Header(resp_header, eos))
.await
.or_err(InternalError, "sending custom headers to pipe")?;
}
Err(e) => {
// If upstream errored, then push error to downstream and then quit
// Don't care if send fails (which means downstream already gone)
// we were still able to retrieve the headers, so try sending
let _ = tx.send(HttpTask::Header(resp_header, false)).await;
let _ = tx.send(HttpTask::Failed(e.into_up())).await;
return Ok(());
}
}
}
while let Some(chunk) = client
.read_response_body()
.await
.map_err(|e| e.into_up())
.transpose()
{
let data = match chunk {
Ok(d) => d,
Err(e) => {
// Push the error to downstream and then quit
let _ = tx.send(HttpTask::Failed(e.into_up())).await;
// Downstream should consume all remaining data and handle the error
return Ok(());
}
};
match client.check_response_end_or_error(false).await {
Ok(eos) => {
let empty = data.is_empty();
if empty && !eos {
/* it is normal to get 0 bytes because of multi-chunk
* don't write 0 bytes to downstream since it will be
* misread as the terminating chunk */
continue;
}
let body_task = if client.was_upgraded() {
HttpTask::UpgradedBody(Some(data), eos)
} else {
HttpTask::Body(Some(data), eos)
};
let sent = tx
.send(body_task)
.await
.or_err(InternalError, "sending custom body to pipe");
// If the if the response with content-length is sent to an HTTP1 downstream,
// custom_bidirection_down_to_up() could decide that the body has finished and exit without
// waiting for this function to signal the eos. In this case tx being closed is not
// an sign of error. It should happen if the only thing left for the custom to send is
// an empty data frame with eos set.
if sent.is_err() && eos && empty {
return Ok(());
}
sent?;
}
Err(e) => {
// Similar to above, push the error to downstream and then quit
let _ = tx.send(HttpTask::Failed(e.into_up())).await;
return Ok(());
}
}
}
// attempt to get trailers
let trailers = match client.read_trailers().await {
Ok(t) => t,
Err(e) => {
// Similar to above, push the error to downstream and then quit
let _ = tx.send(HttpTask::Failed(e.into_up())).await;
return Ok(());
}
};
let trailers = trailers.map(Box::new);
if trailers.is_some() {
tx.send(HttpTask::Trailer(trailers))
.await
.or_err(InternalError, "sending custom trailer to pipe")?;
}
tx.send(HttpTask::Done)
.await
.unwrap_or_else(|_| debug!("custom channel closed!"));
Ok(())
}
struct CustomMessageForwarder<'a> {
ctx: ImmutStr,
writer: &'a mut Box<dyn CustomMessageWrite>,
reader:
&'a mut Box<dyn futures::Stream<Item = Result<Bytes, Box<Error>>> + Send + Sync + Unpin>,
inject: mpsc::Receiver<Bytes>,
filter: mpsc::Sender<(Bytes, oneshot::Sender<Option<Bytes>>)>,
cancel: oneshot::Receiver<()>,
}
impl CustomMessageForwarder<'_> {
async fn proxy(mut self) -> Result<()> {
let forwarder = async {
let mut injector_status = true;
let mut reader_status = true;
debug!("{}: CustomMessageForwarder: start", self.ctx);
while injector_status || reader_status {
let (data, proxied) = tokio::select! {
ret = self.inject.recv(), if injector_status => {
let Some(data) = ret else {
injector_status = false;
continue
};
(data, false)
},
ret = self.reader.next(), if reader_status => {
let Some(data) = ret else {
reader_status = false;
continue
};
let data = match data {
Ok(data) => data,
Err(err) => {
reader_status = false;
warn!("{}: CustomMessageForwarder: reader returned err: {err:?}", self.ctx);
continue;
},
};
(data, true)
},
};
let (callback_tx, callback_rx) = oneshot::channel();
// If data received from proxy send it to filter
if proxied {
if self.filter.send((data, callback_tx)).await.is_err() {
debug!(
"{}: CustomMessageForwarder: filter receiver dropped",
self.ctx
);
return Error::e_explain(
WriteError,
"CustomMessageForwarder: main proxy thread exited on filter send",
);
};
} else {
callback_tx
.send(Some(data))
.expect("sending from the same thread");
}
match callback_rx.await {
Ok(None) => continue, // message was filtered
Ok(Some(msg)) => {
self.writer.write_custom_message(msg).await?;
}
Err(err) => {
debug!(
"{}: CustomMessageForwarder: callback_rx return error: {err}",
self.ctx
);
return Error::e_because(
WriteError,
"CustomMessageForwarder: main proxy thread exited on callback_rx await",
err,
);
}
};
}
debug!("{}: CustomMessageForwarder: exit loop", self.ctx);
let ret = self.writer.finish_custom().await;
if let Err(ref err) = ret {
debug!(
"{}: CustomMessageForwarder: finish_custom return error: {err}",
self.ctx
);
};
ret?;
debug!(
"{}: CustomMessageForwarder: exit loop successfully",
self.ctx
);
Ok(())
};
tokio::select! {
ret = &mut self.cancel => {
debug!("{}: CustomMessageForwarder: canceled while waiting for new messages: {ret:?}", self.ctx);
Ok(())
},
ret = forwarder => ret
}
}
}