Spaces:
Runtime error
Runtime error
File size: 25,902 Bytes
9552aa0 | 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 | use std::collections::HashMap;
use std::error::Error;
use std::str::FromStr;
use std::sync::Arc;
use std::time::Duration;
use crate::ferron_common::{
ErrorLogger, HyperUpgraded, RequestData, ResponseData, ServerConfig, ServerModule,
ServerModuleHandlers, SocketData,
};
use crate::ferron_common::{HyperResponse, WithRuntime};
use async_trait::async_trait;
use futures_util::{SinkExt, StreamExt};
use http::uri::{PathAndQuery, Scheme};
use http_body_util::combinators::BoxBody;
use http_body_util::BodyExt;
use hyper::body::Bytes;
use hyper::client::conn::http1::SendRequest;
use hyper::{header, Request, StatusCode, Uri};
use hyper_tungstenite::HyperWebsocket;
use hyper_util::rt::TokioIo;
use rustls::pki_types::ServerName;
use rustls::RootCertStore;
use rustls_native_certs::load_native_certs;
use tokio::io::{AsyncRead, AsyncWrite};
use tokio::net::TcpStream;
use tokio::runtime::Handle;
use tokio::sync::RwLock;
use tokio_rustls::TlsConnector;
use tokio_tungstenite::Connector;
use crate::ferron_util::no_server_verifier::NoServerVerifier;
use crate::ferron_util::ttl_cache::TtlCache;
const DEFAULT_CONCURRENT_CONNECTIONS_PER_HOST: u32 = 32;
pub fn server_module_init(
config: &ServerConfig,
) -> Result<Box<dyn ServerModule + Send + Sync>, Box<dyn Error + Send + Sync>> {
let mut roots: RootCertStore = RootCertStore::empty();
let certs_result = load_native_certs();
if !certs_result.errors.is_empty() {
Err(anyhow::anyhow!(format!(
"Couldn't load the native certificate store: {}",
certs_result.errors[0]
)))?
}
let certs = certs_result.certs;
for cert in certs {
match roots.add(cert) {
Ok(_) => (),
Err(err) => Err(anyhow::anyhow!(format!(
"Couldn't add a certificate to the certificate store: {}",
err
)))?,
}
}
let mut connections_vec = Vec::new();
for _ in 0..DEFAULT_CONCURRENT_CONNECTIONS_PER_HOST {
connections_vec.push(RwLock::new(HashMap::new()));
}
Ok(Box::new(ReverseProxyModule::new(
Arc::new(roots),
Arc::new(connections_vec),
Arc::new(RwLock::new(TtlCache::new(Duration::from_millis(
config["global"]["loadBalancerHealthCheckWindow"]
.as_i64()
.unwrap_or(5000) as u64,
)))),
)))
}
#[allow(clippy::type_complexity)]
struct ReverseProxyModule {
roots: Arc<RootCertStore>,
connections: Arc<Vec<RwLock<HashMap<String, SendRequest<BoxBody<Bytes, std::io::Error>>>>>>,
failed_backends: Arc<RwLock<TtlCache<String, u64>>>,
}
impl ReverseProxyModule {
#[allow(clippy::type_complexity)]
fn new(
roots: Arc<RootCertStore>,
connections: Arc<Vec<RwLock<HashMap<String, SendRequest<BoxBody<Bytes, std::io::Error>>>>>>,
failed_backends: Arc<RwLock<TtlCache<String, u64>>>,
) -> Self {
Self {
roots,
connections,
failed_backends,
}
}
}
impl ServerModule for ReverseProxyModule {
fn get_handlers(&self, handle: Handle) -> Box<dyn ServerModuleHandlers + Send> {
Box::new(ReverseProxyModuleHandlers {
roots: self.roots.clone(),
connections: self.connections.clone(),
failed_backends: self.failed_backends.clone(),
handle,
})
}
}
#[allow(clippy::type_complexity)]
struct ReverseProxyModuleHandlers {
handle: Handle,
roots: Arc<RootCertStore>,
connections: Arc<Vec<RwLock<HashMap<String, SendRequest<BoxBody<Bytes, std::io::Error>>>>>>,
failed_backends: Arc<RwLock<TtlCache<String, u64>>>,
}
#[async_trait]
impl ServerModuleHandlers for ReverseProxyModuleHandlers {
async fn request_handler(
&mut self,
request: RequestData,
config: &ServerConfig,
socket_data: &SocketData,
error_logger: &ErrorLogger,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
WithRuntime::new(self.handle.clone(), async move {
let enable_health_check = config["enableLoadBalancerHealthCheck"]
.as_bool()
.unwrap_or(false);
let health_check_max_fails = config["loadBalancerHealthCheckMaximumFails"]
.as_i64()
.unwrap_or(3) as u64;
let disable_certificate_verification = config["disableProxyCertificateVerification"]
.as_bool()
.unwrap_or(false);
if let Some(proxy_to) = determine_proxy_to(
config,
socket_data.encrypted,
&self.failed_backends,
enable_health_check,
health_check_max_fails,
)
.await
{
let (hyper_request, _auth_user, _original_url) = request.into_parts();
let (mut hyper_request_parts, request_body) = hyper_request.into_parts();
let proxy_request_url = proxy_to.parse::<hyper::Uri>()?;
let scheme_str = proxy_request_url.scheme_str();
let mut encrypted = false;
match scheme_str {
Some("http") => {
encrypted = false;
}
Some("https") => {
encrypted = true;
}
_ => Err(anyhow::anyhow!(
"Only HTTP and HTTPS reverse proxy URLs are supported."
))?,
};
let host = match proxy_request_url.host() {
Some(host) => host,
None => Err(anyhow::anyhow!(
"The reverse proxy URL doesn't include the host"
))?,
};
let port = proxy_request_url.port_u16().unwrap_or(match scheme_str {
Some("http") => 80,
Some("https") => 443,
_ => 80,
});
let addr = format!("{}:{}", host, port);
let authority = proxy_request_url.authority().cloned();
let hyper_request_path = hyper_request_parts.uri.path();
let path = match hyper_request_path.as_bytes().first() {
Some(b'/') => {
let mut proxy_request_path = proxy_request_url.path();
while proxy_request_path.as_bytes().last().copied() == Some(b'/') {
proxy_request_path = &proxy_request_path[..(proxy_request_path.len() - 1)];
}
format!("{}{}", proxy_request_path, hyper_request_path)
}
_ => hyper_request_path.to_string(),
};
hyper_request_parts.uri = Uri::from_str(&format!(
"{}{}",
path,
match hyper_request_parts.uri.query() {
Some(query) => format!("?{}", query),
None => "".to_string(),
}
))?;
let original_host = hyper_request_parts.headers.get(header::HOST).cloned();
// Host header for host identification
match authority {
Some(authority) => {
hyper_request_parts
.headers
.insert(header::HOST, authority.to_string().parse()?);
}
None => {
hyper_request_parts.headers.remove(header::HOST);
}
}
// Connection header to enable HTTP/1.1 keep-alive
hyper_request_parts
.headers
.insert(header::CONNECTION, "keep-alive".parse()?);
// X-Forwarded-* headers to send the client's data to a server that's behind the reverse proxy
hyper_request_parts.headers.insert(
"x-forwarded-for",
socket_data
.remote_addr
.ip()
.to_canonical()
.to_string()
.parse()?,
);
if socket_data.encrypted {
hyper_request_parts
.headers
.insert("x-forwarded-proto", "https".parse()?);
} else {
hyper_request_parts
.headers
.insert("x-forwarded-proto", "http".parse()?);
}
if let Some(original_host) = original_host {
hyper_request_parts
.headers
.insert("x-forwarded-host", original_host);
}
let proxy_request = Request::from_parts(hyper_request_parts, request_body);
let connections = &self.connections[rand::random_range(..self.connections.len())];
let rwlock_read = connections.read().await;
let sender_read_option = rwlock_read.get(&addr);
if let Some(sender_read) = sender_read_option {
if !sender_read.is_closed() {
drop(rwlock_read);
let mut rwlock_write = connections.write().await;
let sender_option = rwlock_write.get_mut(&addr);
if let Some(sender) = sender_option {
if !sender.is_closed() {
let result = http_proxy_kept_alive(sender, proxy_request, error_logger).await;
drop(rwlock_write);
return result;
} else {
drop(rwlock_write);
}
} else {
drop(rwlock_write);
}
} else {
drop(rwlock_read);
}
} else {
drop(rwlock_read);
}
let stream = match TcpStream::connect(&addr).await {
Ok(stream) => stream,
Err(err) => {
if enable_health_check {
let mut failed_backends_write = self.failed_backends.write().await;
let proxy_to = proxy_to.clone();
let failed_attempts = failed_backends_write.get(&proxy_to);
failed_backends_write.insert(proxy_to, failed_attempts.map_or(1, |x| x + 1));
}
match err.kind() {
tokio::io::ErrorKind::ConnectionRefused
| tokio::io::ErrorKind::NotFound
| tokio::io::ErrorKind::HostUnreachable => {
error_logger
.log(&format!("Service unavailable: {}", err))
.await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::SERVICE_UNAVAILABLE)
.build(),
);
}
tokio::io::ErrorKind::TimedOut => {
error_logger.log(&format!("Gateway timeout: {}", err)).await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::GATEWAY_TIMEOUT)
.build(),
);
}
_ => {
error_logger.log(&format!("Bad gateway: {}", err)).await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::BAD_GATEWAY)
.build(),
);
}
};
}
};
match stream.set_nodelay(true) {
Ok(_) => (),
Err(err) => {
if enable_health_check {
let mut failed_backends_write = self.failed_backends.write().await;
let proxy_to = proxy_to.clone();
let failed_attempts = failed_backends_write.get(&proxy_to);
failed_backends_write.insert(proxy_to, failed_attempts.map_or(1, |x| x + 1));
}
error_logger.log(&format!("Bad gateway: {}", err)).await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::BAD_GATEWAY)
.build(),
);
}
};
let failed_backends_option_borrowed = if enable_health_check {
Some(&*self.failed_backends)
} else {
None
};
if !encrypted {
http_proxy(
connections,
addr,
stream,
proxy_request,
error_logger,
proxy_to,
failed_backends_option_borrowed,
)
.await
} else {
let tls_client_config = (if disable_certificate_verification {
rustls::ClientConfig::builder()
.dangerous()
.with_custom_certificate_verifier(Arc::new(NoServerVerifier::new()))
} else {
rustls::ClientConfig::builder().with_root_certificates(self.roots.clone())
})
.with_no_client_auth();
let connector = TlsConnector::from(Arc::new(tls_client_config));
let domain = ServerName::try_from(host)?.to_owned();
let tls_stream = match connector.connect(domain, stream).await {
Ok(stream) => stream,
Err(err) => {
if enable_health_check {
let mut failed_backends_write = self.failed_backends.write().await;
let proxy_to = proxy_to.clone();
let failed_attempts = failed_backends_write.get(&proxy_to);
failed_backends_write.insert(proxy_to, failed_attempts.map_or(1, |x| x + 1));
}
error_logger.log(&format!("Bad gateway: {}", err)).await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::BAD_GATEWAY)
.build(),
);
}
};
http_proxy(
connections,
addr,
tls_stream,
proxy_request,
error_logger,
proxy_to,
failed_backends_option_borrowed,
)
.await
}
} else {
Ok(ResponseData::builder(request).build())
}
})
.await
}
async fn proxy_request_handler(
&mut self,
request: RequestData,
_config: &ServerConfig,
_socket_data: &SocketData,
_error_logger: &ErrorLogger,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
Ok(ResponseData::builder(request).build())
}
async fn response_modifying_handler(
&mut self,
response: HyperResponse,
) -> Result<HyperResponse, Box<dyn Error + Send + Sync>> {
Ok(response)
}
async fn proxy_response_modifying_handler(
&mut self,
response: HyperResponse,
) -> Result<HyperResponse, Box<dyn Error + Send + Sync>> {
Ok(response)
}
async fn connect_proxy_request_handler(
&mut self,
_upgraded_request: HyperUpgraded,
_connect_address: &str,
_config: &ServerConfig,
_socket_data: &SocketData,
_error_logger: &ErrorLogger,
) -> Result<(), Box<dyn Error + Send + Sync>> {
Ok(())
}
fn does_connect_proxy_requests(&mut self) -> bool {
false
}
async fn websocket_request_handler(
&mut self,
websocket: HyperWebsocket,
uri: &hyper::Uri,
config: &ServerConfig,
socket_data: &SocketData,
error_logger: &ErrorLogger,
) -> Result<(), Box<dyn Error + Send + Sync>> {
WithRuntime::new(self.handle.clone(), async move {
let enable_health_check = config["enableLoadBalancerHealthCheck"]
.as_bool()
.unwrap_or(false);
let health_check_max_fails = config["loadBalancerHealthCheckMaximumFails"]
.as_i64()
.unwrap_or(3) as u64;
let disable_certificate_verification = config["disableProxyCertificateVerification"]
.as_bool()
.unwrap_or(false);
if let Some(proxy_to) = determine_proxy_to(
config,
socket_data.encrypted,
&self.failed_backends,
enable_health_check,
health_check_max_fails,
)
.await
{
let proxy_request_url = proxy_to.parse::<hyper::Uri>()?;
let scheme_str = proxy_request_url.scheme_str();
let mut encrypted = false;
match scheme_str {
Some("http") => {
encrypted = false;
}
Some("https") => {
encrypted = true;
}
_ => Err(anyhow::anyhow!(
"Only HTTP and HTTPS reverse proxy URLs are supported."
))?,
};
let request_path = uri.path();
let path = match request_path.as_bytes().first() {
Some(b'/') => {
let mut proxy_request_path = proxy_request_url.path();
while proxy_request_path.as_bytes().last().copied() == Some(b'/') {
proxy_request_path = &proxy_request_path[..(proxy_request_path.len() - 1)];
}
format!("{}{}", proxy_request_path, request_path)
}
_ => request_path.to_string(),
};
let mut proxy_request_url_parts = proxy_request_url.into_parts();
proxy_request_url_parts.scheme = if encrypted {
Some(Scheme::from_str("wss")?)
} else {
Some(Scheme::from_str("ws")?)
};
match proxy_request_url_parts.path_and_query {
Some(path_and_query) => {
let path_and_query_string = match path_and_query.query() {
Some(query) => {
format!("{}?{}", path, query)
}
None => path,
};
proxy_request_url_parts.path_and_query =
Some(PathAndQuery::from_str(&path_and_query_string)?);
}
None => {
proxy_request_url_parts.path_and_query = Some(PathAndQuery::from_str(&path)?);
}
};
let proxy_request_url = hyper::Uri::from_parts(proxy_request_url_parts)?;
let connector = if !encrypted {
Connector::Plain
} else {
Connector::Rustls(Arc::new(
(if disable_certificate_verification {
rustls::ClientConfig::builder()
.dangerous()
.with_custom_certificate_verifier(Arc::new(NoServerVerifier::new()))
} else {
rustls::ClientConfig::builder().with_root_certificates(self.roots.clone())
})
.with_no_client_auth(),
))
};
let client_bi_stream = websocket.await?;
let (proxy_bi_stream, _) = match tokio_tungstenite::connect_async_tls_with_config(
proxy_request_url,
None,
true,
Some(connector),
)
.await
{
Ok(data) => data,
Err(err) => {
error_logger
.log(&format!("Cannot connect to WebSocket server: {}", err))
.await;
return Ok(());
}
};
let (mut client_sink, mut client_stream) = client_bi_stream.split();
let (mut proxy_sink, mut proxy_stream) = proxy_bi_stream.split();
let client_to_proxy = async {
while let Some(Ok(value)) = client_stream.next().await {
if proxy_sink.send(value).await.is_err() {
break;
}
}
};
let proxy_to_client = async {
while let Some(Ok(value)) = proxy_stream.next().await {
if client_sink.send(value).await.is_err() {
break;
}
}
};
tokio::pin!(client_to_proxy);
tokio::pin!(proxy_to_client);
let client_to_proxy_first;
tokio::select! {
_ = &mut client_to_proxy => {
client_to_proxy_first = true;
}
_ = &mut proxy_to_client => {
client_to_proxy_first = false;
}
}
if client_to_proxy_first {
proxy_to_client.await;
} else {
client_to_proxy.await;
}
}
Ok(())
})
.await
}
fn does_websocket_requests(&mut self, config: &ServerConfig, socket_data: &SocketData) -> bool {
if socket_data.encrypted {
let secure_proxy_to = &config["secureProxyTo"];
if secure_proxy_to.as_vec().is_some() || secure_proxy_to.as_str().is_some() {
return true;
}
}
let proxy_to = &config["proxyTo"];
proxy_to.as_vec().is_some() || proxy_to.as_str().is_some()
}
}
async fn determine_proxy_to(
config: &ServerConfig,
encrypted: bool,
failed_backends: &RwLock<TtlCache<String, u64>>,
enable_health_check: bool,
health_check_max_fails: u64,
) -> Option<String> {
let mut proxy_to = None;
// When the array is supplied with non-string values, the reverse proxy may have undesirable behavior
// The "proxyTo" and "secureProxyTo" are validated though.
if encrypted {
let secure_proxy_to_yaml = &config["secureProxyTo"];
if let Some(secure_proxy_to_vector) = secure_proxy_to_yaml.as_vec() {
if enable_health_check {
let mut secure_proxy_to_vector = secure_proxy_to_vector.clone();
loop {
if !secure_proxy_to_vector.is_empty() {
let index = rand::random_range(..secure_proxy_to_vector.len());
if let Some(secure_proxy_to) = secure_proxy_to_vector[index].as_str() {
proxy_to = Some(secure_proxy_to.to_string());
let failed_backends_read = failed_backends.read().await;
let failed_backend_fails =
match failed_backends_read.get(&secure_proxy_to.to_string()) {
Some(fails) => fails,
None => break,
};
if failed_backend_fails > health_check_max_fails {
secure_proxy_to_vector.remove(index);
} else {
break;
}
}
} else {
break;
}
}
} else if !secure_proxy_to_vector.is_empty() {
if let Some(secure_proxy_to) =
secure_proxy_to_vector[rand::random_range(..secure_proxy_to_vector.len())].as_str()
{
proxy_to = Some(secure_proxy_to.to_string());
}
}
} else if let Some(secure_proxy_to) = secure_proxy_to_yaml.as_str() {
proxy_to = Some(secure_proxy_to.to_string());
}
}
if proxy_to.is_none() {
let proxy_to_yaml = &config["proxyTo"];
if let Some(proxy_to_vector) = proxy_to_yaml.as_vec() {
if enable_health_check {
let mut proxy_to_vector = proxy_to_vector.clone();
loop {
if !proxy_to_vector.is_empty() {
let index = rand::random_range(..proxy_to_vector.len());
if let Some(proxy_to_str) = proxy_to_vector[index].as_str() {
proxy_to = Some(proxy_to_str.to_string());
let failed_backends_read = failed_backends.read().await;
let failed_backend_fails = match failed_backends_read.get(&proxy_to_str.to_string()) {
Some(fails) => fails,
None => break,
};
if failed_backend_fails > health_check_max_fails {
proxy_to_vector.remove(index);
} else {
break;
}
}
} else {
break;
}
}
} else if !proxy_to_vector.is_empty() {
if let Some(proxy_to_str) =
proxy_to_vector[rand::random_range(..proxy_to_vector.len())].as_str()
{
proxy_to = Some(proxy_to_str.to_string());
}
}
} else if let Some(proxy_to_str) = proxy_to_yaml.as_str() {
proxy_to = Some(proxy_to_str.to_string());
}
}
proxy_to
}
async fn http_proxy(
connections: &RwLock<HashMap<String, SendRequest<BoxBody<Bytes, std::io::Error>>>>,
connect_addr: String,
stream: impl AsyncRead + AsyncWrite + Send + Unpin + 'static,
proxy_request: Request<BoxBody<Bytes, std::io::Error>>,
error_logger: &ErrorLogger,
proxy_to: String,
failed_backends: Option<&tokio::sync::RwLock<TtlCache<std::string::String, u64>>>,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
let io = TokioIo::new(stream);
let (mut sender, conn) = match hyper::client::conn::http1::handshake(io).await {
Ok(data) => data,
Err(err) => {
if let Some(failed_backends) = failed_backends {
let mut failed_backends_write = failed_backends.write().await;
let failed_attempts = failed_backends_write.get(&proxy_to);
failed_backends_write.insert(proxy_to, failed_attempts.map_or(1, |x| x + 1));
}
error_logger.log(&format!("Bad gateway: {}", err)).await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::BAD_GATEWAY)
.build(),
);
}
};
let send_request = sender.send_request(proxy_request);
let mut pinned_conn = Box::pin(conn);
tokio::pin!(send_request);
let response;
loop {
tokio::select! {
biased;
proxy_response = &mut send_request => {
let proxy_response = match proxy_response {
Ok(response) => response,
Err(err) => {
error_logger.log(&format!("Bad gateway: {}", err)).await;
return Ok(ResponseData::builder_without_request().status(StatusCode::BAD_GATEWAY).build());
}
};
response = ResponseData::builder_without_request()
.response(proxy_response.map(|b| {
b.map_err(|e| std::io::Error::other(e.to_string()))
.boxed()
}))
.parallel_fn(async move {
pinned_conn.await.unwrap_or_default();
})
.build();
break;
},
state = &mut pinned_conn => {
if state.is_err() {
error_logger.log("Bad gateway: incomplete response").await;
return Ok(ResponseData::builder_without_request().status(StatusCode::BAD_GATEWAY).build());
}
},
};
}
if !sender.is_closed() {
let mut rwlock_write = connections.write().await;
rwlock_write.insert(connect_addr, sender);
drop(rwlock_write);
}
Ok(response)
}
async fn http_proxy_kept_alive(
sender: &mut SendRequest<BoxBody<Bytes, std::io::Error>>,
proxy_request: Request<BoxBody<Bytes, std::io::Error>>,
error_logger: &ErrorLogger,
) -> Result<ResponseData, Box<dyn Error + Send + Sync>> {
let proxy_response = match sender.send_request(proxy_request).await {
Ok(response) => response,
Err(err) => {
error_logger.log(&format!("Bad gateway: {}", err)).await;
return Ok(
ResponseData::builder_without_request()
.status(StatusCode::BAD_GATEWAY)
.build(),
);
}
};
let response = ResponseData::builder_without_request()
.response(proxy_response.map(|b| b.map_err(|e| std::io::Error::other(e.to_string())).boxed()))
.build();
Ok(response)
}
|