From: Dietmar Maurer <dietmar@proxmox.com>
To: pbs-devel@lists.proxmox.com
Subject: [pbs-devel] [PATH proxmox-backup] http proxy: add necessary brackets for IPv6 proxy
Date: Wed, 5 May 2021 11:58:59 +0200 [thread overview]
Message-ID: <20210505095859.27699-1-dietmar@proxmox.com> (raw)
---
src/tools/http.rs | 28 ++++++++++++++++++++++------
1 file changed, 22 insertions(+), 6 deletions(-)
diff --git a/src/tools/http.rs b/src/tools/http.rs
index 8656e685..cfdd9b16 100644
--- a/src/tools/http.rs
+++ b/src/tools/http.rs
@@ -5,9 +5,9 @@ use std::collections::HashMap;
use std::pin::Pin;
use std::sync::Arc;
-use hyper::{Uri, Body};
+use hyper::Body;
use hyper::client::{Client, HttpConnector};
-use http::{Request, Response, HeaderValue};
+use http::{Uri, uri::Authority, Request, Response, HeaderValue};
use openssl::ssl::{SslConnector, SslMethod};
use futures::*;
use tokio::{
@@ -28,6 +28,18 @@ use crate::tools::{
},
};
+// Build a http::uri::Authority ("host:port"), use '[..]' around IPv6 addresses
+fn build_authority(host: &str, port: u16) -> Result<Authority, Error> {
+ let bytes = host.as_bytes();
+ let len = bytes.len();
+ let authority = if len > 3 && bytes.contains(&b':') && bytes[0] != b'[' && bytes[len-1] != b']' {
+ format!("[{}]:{}", host, port).parse()?
+ } else {
+ format!("{}:{}", host, port).parse()?
+ };
+ Ok(authority)
+}
+
/// HTTP Proxy Configuration
#[derive(Clone)]
pub struct ProxyConfig {
@@ -329,10 +341,14 @@ impl hyper::service::Service<Uri> for HttpsConnector {
let use_connect = is_https || proxy.force_connect;
- let proxy_url = format!("{}:{}", proxy.host, proxy.port);
+ let proxy_authority = match build_authority(&proxy.host, proxy.port) {
+ Ok(authority) => authority,
+ Err(err) => return futures::future::err(err).boxed(),
+ };
+
let proxy_uri = match Uri::builder()
.scheme("http")
- .authority(proxy_url.as_str())
+ .authority(proxy_authority.as_str())
.path_and_query("/")
.build()
{
@@ -348,7 +364,7 @@ impl hyper::service::Service<Uri> for HttpsConnector {
let mut tcp_stream = connector
.call(proxy_uri)
.await
- .map_err(|err| format_err!("error connecting to {} - {}", proxy_url, err))?;
+ .map_err(|err| format_err!("error connecting to {} - {}", proxy_authority, err))?;
let _ = set_tcp_keepalive(tcp_stream.as_raw_fd(), PROXMOX_BACKUP_TCP_KEEPALIVE_TIME);
@@ -374,7 +390,7 @@ impl hyper::service::Service<Uri> for HttpsConnector {
let tcp_stream = connector
.call(proxy_uri)
.await
- .map_err(|err| format_err!("error connecting to {} - {}", proxy_url, err))?;
+ .map_err(|err| format_err!("error connecting to {} - {}", proxy_authority, err))?;
let _ = set_tcp_keepalive(tcp_stream.as_raw_fd(), PROXMOX_BACKUP_TCP_KEEPALIVE_TIME);
--
2.20.1
reply other threads:[~2021-05-05 9:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210505095859.27699-1-dietmar@proxmox.com \
--to=dietmar@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.