2019-06-26 07:17:13 +00:00
|
|
|
use std::io::Write;
|
2019-12-12 14:27:07 +00:00
|
|
|
use std::task::{Context, Poll};
|
2020-01-25 11:18:00 +00:00
|
|
|
use std::sync::{Arc, Mutex};
|
2019-01-17 10:29:38 +00:00
|
|
|
|
2019-10-12 11:53:11 +00:00
|
|
|
use chrono::Utc;
|
2019-08-22 11:46:31 +00:00
|
|
|
use failure::*;
|
2019-05-20 12:19:24 +00:00
|
|
|
use futures::*;
|
2019-08-22 11:46:31 +00:00
|
|
|
use http::Uri;
|
|
|
|
use http::header::HeaderValue;
|
|
|
|
use http::{Request, Response};
|
|
|
|
use hyper::Body;
|
2019-09-02 13:14:55 +00:00
|
|
|
use hyper::client::{Client, HttpConnector};
|
2020-01-25 11:18:00 +00:00
|
|
|
use openssl::{ssl::{SslConnector, SslMethod}, x509::X509StoreContextRef};
|
2019-03-05 11:54:44 +00:00
|
|
|
use serde_json::{json, Value};
|
2019-12-13 10:55:52 +00:00
|
|
|
use percent_encoding::percent_encode;
|
2019-08-22 11:46:31 +00:00
|
|
|
use xdg::BaseDirectories;
|
2019-01-21 17:56:48 +00:00
|
|
|
|
2020-01-31 07:16:00 +00:00
|
|
|
use proxmox::{
|
|
|
|
sys::linux::tty,
|
|
|
|
tools::{
|
|
|
|
fs::{file_get_json, replace_file, CreateOptions},
|
|
|
|
}
|
2019-08-03 11:05:38 +00:00
|
|
|
};
|
|
|
|
|
2019-08-22 11:46:31 +00:00
|
|
|
use super::pipe_to_stream::PipeToSendStream;
|
2019-09-02 13:14:55 +00:00
|
|
|
use crate::tools::async_io::EitherStream;
|
2020-01-31 07:16:00 +00:00
|
|
|
use crate::tools::{self, BroadcastFuture, DEFAULT_ENCODE_SET};
|
2019-06-05 06:41:20 +00:00
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
#[derive(Clone)]
|
2019-08-10 07:12:17 +00:00
|
|
|
pub struct AuthInfo {
|
2020-01-05 09:31:19 +00:00
|
|
|
pub username: String,
|
|
|
|
pub ticket: String,
|
|
|
|
pub token: String,
|
2019-04-28 08:55:03 +00:00
|
|
|
}
|
2019-02-20 13:18:27 +00:00
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
pub struct HttpClientOptions {
|
2020-01-27 08:34:02 +00:00
|
|
|
prefix: Option<String>,
|
2020-01-25 11:18:00 +00:00
|
|
|
password: Option<String>,
|
|
|
|
fingerprint: Option<String>,
|
|
|
|
interactive: bool,
|
|
|
|
ticket_cache: bool,
|
2020-01-25 14:37:34 +00:00
|
|
|
fingerprint_cache: bool,
|
2020-01-25 11:18:00 +00:00
|
|
|
verify_cert: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HttpClientOptions {
|
|
|
|
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
2020-01-27 08:34:02 +00:00
|
|
|
prefix: None,
|
2020-01-25 11:18:00 +00:00
|
|
|
password: None,
|
|
|
|
fingerprint: None,
|
|
|
|
interactive: false,
|
|
|
|
ticket_cache: false,
|
2020-01-25 14:37:34 +00:00
|
|
|
fingerprint_cache: false,
|
2020-01-25 11:18:00 +00:00
|
|
|
verify_cert: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
pub fn prefix(mut self, prefix: Option<String>) -> Self {
|
|
|
|
self.prefix = prefix;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
pub fn password(mut self, password: Option<String>) -> Self {
|
|
|
|
self.password = password;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fingerprint(mut self, fingerprint: Option<String>) -> Self {
|
|
|
|
self.fingerprint = fingerprint;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn interactive(mut self, interactive: bool) -> Self {
|
|
|
|
self.interactive = interactive;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ticket_cache(mut self, ticket_cache: bool) -> Self {
|
|
|
|
self.ticket_cache = ticket_cache;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-01-25 14:37:34 +00:00
|
|
|
pub fn fingerprint_cache(mut self, fingerprint_cache: bool) -> Self {
|
|
|
|
self.fingerprint_cache = fingerprint_cache;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
pub fn verify_cert(mut self, verify_cert: bool) -> Self {
|
|
|
|
self.verify_cert = verify_cert;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-14 10:11:39 +00:00
|
|
|
/// HTTP(S) API client
|
2019-01-17 10:29:38 +00:00
|
|
|
pub struct HttpClient {
|
2019-09-02 13:14:55 +00:00
|
|
|
client: Client<HttpsConnector>,
|
2019-01-17 10:29:38 +00:00
|
|
|
server: String,
|
2020-01-25 11:18:00 +00:00
|
|
|
fingerprint: Arc<Mutex<Option<String>>>,
|
2019-04-28 08:55:03 +00:00
|
|
|
auth: BroadcastFuture<AuthInfo>,
|
2020-01-25 11:18:00 +00:00
|
|
|
_options: HttpClientOptions,
|
2019-01-17 10:29:38 +00:00
|
|
|
}
|
|
|
|
|
2019-08-10 07:12:17 +00:00
|
|
|
/// Delete stored ticket data (logout)
|
2020-01-27 08:34:02 +00:00
|
|
|
pub fn delete_ticket_info(prefix: &str, server: &str, username: &str) -> Result<(), Error> {
|
2019-08-10 07:12:17 +00:00
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
let base = BaseDirectories::with_prefix(prefix)?;
|
2019-08-10 07:12:17 +00:00
|
|
|
|
|
|
|
// usually /run/user/<uid>/...
|
|
|
|
let path = base.place_runtime_file("tickets")?;
|
|
|
|
|
|
|
|
let mode = nix::sys::stat::Mode::from_bits_truncate(0o0600);
|
|
|
|
|
|
|
|
let mut data = file_get_json(&path, Some(json!({})))?;
|
|
|
|
|
|
|
|
if let Some(map) = data[server].as_object_mut() {
|
|
|
|
map.remove(username);
|
|
|
|
}
|
|
|
|
|
2019-12-18 10:05:30 +00:00
|
|
|
replace_file(path, data.to_string().as_bytes(), CreateOptions::new().perm(mode))?;
|
2019-08-10 07:12:17 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
fn store_fingerprint(prefix: &str, server: &str, fingerprint: &str) -> Result<(), Error> {
|
2020-01-25 14:37:34 +00:00
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
let base = BaseDirectories::with_prefix(prefix)?;
|
2020-01-25 14:37:34 +00:00
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
// usually ~/.config/<prefix>/fingerprints
|
2020-01-25 14:37:34 +00:00
|
|
|
let path = base.place_config_file("fingerprints")?;
|
|
|
|
|
|
|
|
let raw = match std::fs::read_to_string(&path) {
|
|
|
|
Ok(v) => v,
|
|
|
|
Err(err) => {
|
|
|
|
if err.kind() == std::io::ErrorKind::NotFound {
|
|
|
|
String::new()
|
|
|
|
} else {
|
|
|
|
bail!("unable to read fingerprints from {:?} - {}", path, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut result = String::new();
|
|
|
|
|
|
|
|
raw.split('\n').for_each(|line| {
|
|
|
|
let items: Vec<String> = line.split_whitespace().map(String::from).collect();
|
|
|
|
if items.len() == 2 {
|
|
|
|
if &items[0] == server {
|
|
|
|
// found, add later with new fingerprint
|
|
|
|
} else {
|
|
|
|
result.push_str(line);
|
|
|
|
result.push('\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
result.push_str(server);
|
|
|
|
result.push(' ');
|
|
|
|
result.push_str(fingerprint);
|
|
|
|
result.push('\n');
|
|
|
|
|
|
|
|
replace_file(path, result.as_bytes(), CreateOptions::new())?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
fn load_fingerprint(prefix: &str, server: &str) -> Option<String> {
|
2020-01-25 14:37:34 +00:00
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
let base = BaseDirectories::with_prefix(prefix).ok()?;
|
2020-01-25 14:37:34 +00:00
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
// usually ~/.config/<prefix>/fingerprints
|
2020-01-25 14:37:34 +00:00
|
|
|
let path = base.place_config_file("fingerprints").ok()?;
|
|
|
|
|
|
|
|
let raw = std::fs::read_to_string(&path).ok()?;
|
|
|
|
|
|
|
|
for line in raw.split('\n') {
|
|
|
|
let items: Vec<String> = line.split_whitespace().map(String::from).collect();
|
|
|
|
if items.len() == 2 {
|
|
|
|
if &items[0] == server {
|
|
|
|
return Some(items[1].clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
fn store_ticket_info(prefix: &str, server: &str, username: &str, ticket: &str, token: &str) -> Result<(), Error> {
|
2019-03-05 11:54:44 +00:00
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
let base = BaseDirectories::with_prefix(prefix)?;
|
2019-03-05 11:54:44 +00:00
|
|
|
|
|
|
|
// usually /run/user/<uid>/...
|
|
|
|
let path = base.place_runtime_file("tickets")?;
|
|
|
|
|
|
|
|
let mode = nix::sys::stat::Mode::from_bits_truncate(0o0600);
|
|
|
|
|
2019-08-03 11:05:38 +00:00
|
|
|
let mut data = file_get_json(&path, Some(json!({})))?;
|
2019-03-05 11:54:44 +00:00
|
|
|
|
|
|
|
let now = Utc::now().timestamp();
|
|
|
|
|
|
|
|
data[server][username] = json!({ "timestamp": now, "ticket": ticket, "token": token});
|
|
|
|
|
|
|
|
let mut new_data = json!({});
|
|
|
|
|
|
|
|
let ticket_lifetime = tools::ticket::TICKET_LIFETIME - 60;
|
|
|
|
|
|
|
|
let empty = serde_json::map::Map::new();
|
|
|
|
for (server, info) in data.as_object().unwrap_or(&empty) {
|
|
|
|
for (_user, uinfo) in info.as_object().unwrap_or(&empty) {
|
|
|
|
if let Some(timestamp) = uinfo["timestamp"].as_i64() {
|
|
|
|
let age = now - timestamp;
|
|
|
|
if age < ticket_lifetime {
|
|
|
|
new_data[server][username] = uinfo.clone();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-18 10:05:30 +00:00
|
|
|
replace_file(path, new_data.to_string().as_bytes(), CreateOptions::new().perm(mode))?;
|
2019-03-05 11:54:44 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
fn load_ticket_info(prefix: &str, server: &str, username: &str) -> Option<(String, String)> {
|
|
|
|
let base = BaseDirectories::with_prefix(prefix).ok()?;
|
2019-03-05 11:54:44 +00:00
|
|
|
|
|
|
|
// usually /run/user/<uid>/...
|
2019-08-28 14:03:48 +00:00
|
|
|
let path = base.place_runtime_file("tickets").ok()?;
|
|
|
|
let data = file_get_json(&path, None).ok()?;
|
2019-03-05 11:54:44 +00:00
|
|
|
let now = Utc::now().timestamp();
|
|
|
|
let ticket_lifetime = tools::ticket::TICKET_LIFETIME - 60;
|
2019-08-28 14:03:48 +00:00
|
|
|
let uinfo = data[server][username].as_object()?;
|
|
|
|
let timestamp = uinfo["timestamp"].as_i64()?;
|
|
|
|
let age = now - timestamp;
|
|
|
|
|
|
|
|
if age < ticket_lifetime {
|
|
|
|
let ticket = uinfo["ticket"].as_str()?;
|
|
|
|
let token = uinfo["token"].as_str()?;
|
|
|
|
Some((ticket.to_owned(), token.to_owned()))
|
|
|
|
} else {
|
|
|
|
None
|
2019-03-05 11:54:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 10:29:38 +00:00
|
|
|
impl HttpClient {
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
pub fn new(server: &str, username: &str, mut options: HttpClientOptions) -> Result<Self, Error> {
|
|
|
|
|
|
|
|
let verified_fingerprint = Arc::new(Mutex::new(None));
|
|
|
|
|
2020-01-25 14:37:34 +00:00
|
|
|
let mut fingerprint = options.fingerprint.take();
|
2020-02-11 10:54:43 +00:00
|
|
|
|
|
|
|
if fingerprint.is_some() {
|
|
|
|
// do not store fingerprints passed via options in cache
|
|
|
|
options.fingerprint_cache = false;
|
|
|
|
} else if options.fingerprint_cache && options.prefix.is_some() {
|
2020-01-27 08:34:02 +00:00
|
|
|
fingerprint = load_fingerprint(options.prefix.as_ref().unwrap(), server);
|
2020-01-25 14:37:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-27 08:34:02 +00:00
|
|
|
let mut ssl_connector_builder = SslConnector::builder(SslMethod::tls()).unwrap();
|
|
|
|
|
|
|
|
if options.verify_cert {
|
|
|
|
let server = server.to_string();
|
|
|
|
let verified_fingerprint = verified_fingerprint.clone();
|
|
|
|
let interactive = options.interactive;
|
|
|
|
let fingerprint_cache = options.fingerprint_cache;
|
|
|
|
let prefix = options.prefix.clone();
|
|
|
|
ssl_connector_builder.set_verify_callback(openssl::ssl::SslVerifyMode::PEER, move |valid, ctx| {
|
|
|
|
let (valid, fingerprint) = Self::verify_callback(valid, ctx, fingerprint.clone(), interactive);
|
|
|
|
if valid {
|
|
|
|
if let Some(fingerprint) = fingerprint {
|
|
|
|
if fingerprint_cache && prefix.is_some() {
|
|
|
|
if let Err(err) = store_fingerprint(
|
|
|
|
prefix.as_ref().unwrap(), &server, &fingerprint) {
|
|
|
|
eprintln!("{}", err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*verified_fingerprint.lock().unwrap() = Some(fingerprint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
valid
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
ssl_connector_builder.set_verify(openssl::ssl::SslVerifyMode::NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut httpc = hyper::client::HttpConnector::new();
|
|
|
|
httpc.set_nodelay(true); // important for h2 download performance!
|
|
|
|
httpc.set_recv_buffer_size(Some(1024*1024)); //important for h2 download performance!
|
|
|
|
httpc.enforce_http(false); // we want https...
|
|
|
|
|
|
|
|
let https = HttpsConnector::with_connector(httpc, ssl_connector_builder.build());
|
|
|
|
|
|
|
|
let client = Client::builder()
|
|
|
|
//.http2_initial_stream_window_size( (1 << 31) - 2)
|
|
|
|
//.http2_initial_connection_window_size( (1 << 31) - 2)
|
|
|
|
.build::<_, Body>(https);
|
2020-01-25 11:18:00 +00:00
|
|
|
|
|
|
|
let password = options.password.take();
|
2020-01-27 08:34:02 +00:00
|
|
|
let use_ticket_cache = options.ticket_cache && options.prefix.is_some();
|
2019-04-28 08:55:03 +00:00
|
|
|
|
2019-09-16 10:35:23 +00:00
|
|
|
let password = if let Some(password) = password {
|
|
|
|
password
|
2019-04-30 09:44:35 +00:00
|
|
|
} else {
|
2020-01-25 11:18:00 +00:00
|
|
|
let mut ticket_info = None;
|
2020-01-27 08:34:02 +00:00
|
|
|
if use_ticket_cache {
|
|
|
|
ticket_info = load_ticket_info(options.prefix.as_ref().unwrap(), server, username);
|
2020-01-25 11:18:00 +00:00
|
|
|
}
|
|
|
|
if let Some((ticket, _token)) = ticket_info {
|
|
|
|
ticket
|
|
|
|
} else {
|
2020-02-11 10:10:13 +00:00
|
|
|
Self::get_password(&username, options.interactive)?
|
2020-01-25 11:18:00 +00:00
|
|
|
}
|
2019-04-30 09:44:35 +00:00
|
|
|
};
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
let login_future = Self::credentials(
|
|
|
|
client.clone(),
|
|
|
|
server.to_owned(),
|
|
|
|
username.to_owned(),
|
|
|
|
password,
|
2020-01-27 08:34:02 +00:00
|
|
|
).map_ok({
|
|
|
|
let server = server.to_string();
|
|
|
|
let prefix = options.prefix.clone();
|
|
|
|
|
|
|
|
move |auth| {
|
|
|
|
if use_ticket_cache & &prefix.is_some() {
|
|
|
|
let _ = store_ticket_info(prefix.as_ref().unwrap(), &server, &auth.username, &auth.ticket, &auth.token);
|
|
|
|
}
|
|
|
|
|
|
|
|
auth
|
|
|
|
}
|
|
|
|
});
|
2019-04-30 09:44:35 +00:00
|
|
|
|
|
|
|
Ok(Self {
|
2019-04-28 08:55:03 +00:00
|
|
|
client,
|
2019-01-17 10:29:38 +00:00
|
|
|
server: String::from(server),
|
2020-01-25 11:18:00 +00:00
|
|
|
fingerprint: verified_fingerprint,
|
2019-09-04 08:01:46 +00:00
|
|
|
auth: BroadcastFuture::new(Box::new(login_future)),
|
2020-01-25 11:18:00 +00:00
|
|
|
_options: options,
|
2019-04-30 09:44:35 +00:00
|
|
|
})
|
2019-01-17 10:29:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
/// Login
|
2019-08-10 07:12:17 +00:00
|
|
|
///
|
|
|
|
/// Login is done on demand, so this is onyl required if you need
|
|
|
|
/// access to authentication data in 'AuthInfo'.
|
2019-09-04 08:01:46 +00:00
|
|
|
pub async fn login(&self) -> Result<AuthInfo, Error> {
|
|
|
|
self.auth.listen().await
|
2019-08-10 07:12:17 +00:00
|
|
|
}
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
/// Returns the optional fingerprint passed to the new() constructor.
|
|
|
|
pub fn fingerprint(&self) -> Option<String> {
|
|
|
|
(*self.fingerprint.lock().unwrap()).clone()
|
|
|
|
}
|
|
|
|
|
2020-02-11 10:10:13 +00:00
|
|
|
fn get_password(username: &str, interactive: bool) -> Result<String, Error> {
|
2019-02-20 13:18:27 +00:00
|
|
|
// If we're on a TTY, query the user for a password
|
2020-01-25 11:18:00 +00:00
|
|
|
if interactive && tty::stdin_isatty() {
|
2020-01-27 09:42:19 +00:00
|
|
|
let msg = format!("Password for \"{}\": ", username);
|
|
|
|
return Ok(String::from_utf8(tty::read_password(&msg)?)?);
|
2019-02-20 13:18:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bail!("no password input mechanism available");
|
|
|
|
}
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
fn verify_callback(
|
|
|
|
valid: bool, ctx:
|
|
|
|
&mut X509StoreContextRef,
|
|
|
|
expected_fingerprint: Option<String>,
|
|
|
|
interactive: bool,
|
2020-01-27 08:34:02 +00:00
|
|
|
) -> (bool, Option<String>) {
|
|
|
|
if valid { return (true, None); }
|
2020-01-25 11:18:00 +00:00
|
|
|
|
|
|
|
let cert = match ctx.current_cert() {
|
|
|
|
Some(cert) => cert,
|
2020-01-27 08:34:02 +00:00
|
|
|
None => return (false, None),
|
2020-01-25 11:18:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let depth = ctx.error_depth();
|
2020-01-27 08:34:02 +00:00
|
|
|
if depth != 0 { return (false, None); }
|
2020-01-25 11:18:00 +00:00
|
|
|
|
|
|
|
let fp = match cert.digest(openssl::hash::MessageDigest::sha256()) {
|
|
|
|
Ok(fp) => fp,
|
2020-01-27 08:34:02 +00:00
|
|
|
Err(_) => return (false, None), // should not happen
|
2020-01-25 11:18:00 +00:00
|
|
|
};
|
|
|
|
let fp_string = proxmox::tools::digest_to_hex(&fp);
|
|
|
|
let fp_string = fp_string.as_bytes().chunks(2).map(|v| std::str::from_utf8(v).unwrap())
|
|
|
|
.collect::<Vec<&str>>().join(":");
|
|
|
|
|
|
|
|
if let Some(expected_fingerprint) = expected_fingerprint {
|
2020-02-11 10:37:24 +00:00
|
|
|
if expected_fingerprint.to_lowercase() == fp_string {
|
2020-01-27 08:34:02 +00:00
|
|
|
return (true, Some(fp_string));
|
2020-01-25 11:18:00 +00:00
|
|
|
} else {
|
2020-01-27 08:34:02 +00:00
|
|
|
return (false, None);
|
2020-01-25 11:18:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we're on a TTY, query the user
|
|
|
|
if interactive && tty::stdin_isatty() {
|
|
|
|
println!("fingerprint: {}", fp_string);
|
|
|
|
loop {
|
|
|
|
print!("Want to trust? (y/n): ");
|
|
|
|
let _ = std::io::stdout().flush();
|
|
|
|
let mut buf = [0u8; 1];
|
|
|
|
use std::io::Read;
|
|
|
|
match std::io::stdin().read_exact(&mut buf) {
|
|
|
|
Ok(()) => {
|
|
|
|
if buf[0] == b'y' || buf[0] == b'Y' {
|
2020-01-27 08:34:02 +00:00
|
|
|
return (true, Some(fp_string));
|
2020-01-25 11:18:00 +00:00
|
|
|
} else if buf[0] == b'n' || buf[0] == b'N' {
|
2020-01-27 08:34:02 +00:00
|
|
|
return (false, None);
|
2020-01-25 11:18:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(_) => {
|
2020-01-27 08:34:02 +00:00
|
|
|
return (false, None);
|
2020-01-25 11:18:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-27 08:34:02 +00:00
|
|
|
(false, None)
|
2019-03-06 09:45:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn request(&self, mut req: Request<Body>) -> Result<Value, Error> {
|
2019-01-17 10:29:38 +00:00
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
let client = self.client.clone();
|
2019-01-17 10:29:38 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let auth = self.login().await?;
|
2019-01-17 10:29:38 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let enc_ticket = format!("PBSAuthCookie={}", percent_encode(auth.ticket.as_bytes(), DEFAULT_ENCODE_SET));
|
|
|
|
req.headers_mut().insert("Cookie", HeaderValue::from_str(&enc_ticket).unwrap());
|
|
|
|
req.headers_mut().insert("CSRFPreventionToken", HeaderValue::from_str(&auth.token).unwrap());
|
2019-01-17 10:29:38 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
Self::api_request(client, req).await
|
2019-01-21 17:56:48 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn get(
|
2019-08-23 12:33:48 +00:00
|
|
|
&self,
|
|
|
|
path: &str,
|
|
|
|
data: Option<Value>,
|
2019-09-04 10:47:01 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-05-13 07:12:03 +00:00
|
|
|
let req = Self::request_builder(&self.server, "GET", path, data).unwrap();
|
2019-09-04 10:47:01 +00:00
|
|
|
self.request(req).await
|
2019-03-06 09:45:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn delete(
|
2019-08-23 12:33:48 +00:00
|
|
|
&mut self,
|
|
|
|
path: &str,
|
|
|
|
data: Option<Value>,
|
2019-09-04 10:47:01 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-05-13 07:12:03 +00:00
|
|
|
let req = Self::request_builder(&self.server, "DELETE", path, data).unwrap();
|
2019-09-04 10:47:01 +00:00
|
|
|
self.request(req).await
|
2019-03-06 09:45:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn post(
|
2019-08-23 12:33:48 +00:00
|
|
|
&mut self,
|
|
|
|
path: &str,
|
|
|
|
data: Option<Value>,
|
2019-09-04 10:47:01 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-04-28 08:55:03 +00:00
|
|
|
let req = Self::request_builder(&self.server, "POST", path, data).unwrap();
|
2019-09-04 10:47:01 +00:00
|
|
|
self.request(req).await
|
2019-03-13 10:56:37 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn download(
|
2019-08-23 12:33:48 +00:00
|
|
|
&mut self,
|
|
|
|
path: &str,
|
2019-09-04 10:47:01 +00:00
|
|
|
output: &mut (dyn Write + Send),
|
|
|
|
) -> Result<(), Error> {
|
2019-04-28 08:55:03 +00:00
|
|
|
let mut req = Self::request_builder(&self.server, "GET", path, None).unwrap();
|
2019-03-13 10:56:37 +00:00
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
let client = self.client.clone();
|
2019-01-21 17:56:48 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let auth = self.login().await?;
|
2019-02-20 13:09:55 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let enc_ticket = format!("PBSAuthCookie={}", percent_encode(auth.ticket.as_bytes(), DEFAULT_ENCODE_SET));
|
|
|
|
req.headers_mut().insert("Cookie", HeaderValue::from_str(&enc_ticket).unwrap());
|
2019-03-03 10:29:00 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let resp = client.request(req).await?;
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_success() {
|
|
|
|
HttpClient::api_response(resp)
|
|
|
|
.map(|_| Err(format_err!("unknown error")))
|
|
|
|
.await?
|
|
|
|
} else {
|
|
|
|
resp.into_body()
|
2019-04-28 08:55:03 +00:00
|
|
|
.map_err(Error::from)
|
2019-09-04 10:47:01 +00:00
|
|
|
.try_fold(output, move |acc, chunk| async move {
|
|
|
|
acc.write_all(&chunk)?;
|
|
|
|
Ok::<_, Error>(acc)
|
2019-04-28 08:55:03 +00:00
|
|
|
})
|
2019-09-04 10:47:01 +00:00
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
Ok(())
|
2019-03-03 10:29:00 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn upload(
|
2019-07-25 10:17:35 +00:00
|
|
|
&mut self,
|
|
|
|
content_type: &str,
|
|
|
|
body: Body,
|
|
|
|
path: &str,
|
|
|
|
data: Option<Value>,
|
2019-09-04 10:47:01 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-02-20 13:09:55 +00:00
|
|
|
|
|
|
|
let path = path.trim_matches('/');
|
2019-07-25 10:17:35 +00:00
|
|
|
let mut url = format!("https://{}:8007/{}", &self.server, path);
|
|
|
|
|
|
|
|
if let Some(data) = data {
|
|
|
|
let query = tools::json_object_to_query(data).unwrap();
|
|
|
|
url.push('?');
|
|
|
|
url.push_str(&query);
|
|
|
|
}
|
|
|
|
|
|
|
|
let url: Uri = url.parse().unwrap();
|
2019-02-20 13:09:55 +00:00
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
let req = Request::builder()
|
2019-02-20 13:09:55 +00:00
|
|
|
.method("POST")
|
|
|
|
.uri(url)
|
|
|
|
.header("User-Agent", "proxmox-backup-client/1.0")
|
2019-04-28 08:55:03 +00:00
|
|
|
.header("Content-Type", content_type)
|
|
|
|
.body(body).unwrap();
|
2019-02-20 13:09:55 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
self.request(req).await
|
2019-01-21 17:56:48 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
pub async fn start_h2_connection(
|
2019-06-26 10:09:18 +00:00
|
|
|
&self,
|
|
|
|
mut req: Request<Body>,
|
|
|
|
protocol_name: String,
|
2019-12-17 09:52:07 +00:00
|
|
|
) -> Result<(H2Client, futures::future::AbortHandle), Error> {
|
2019-04-29 09:57:58 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let auth = self.login().await?;
|
2019-04-29 09:57:58 +00:00
|
|
|
let client = self.client.clone();
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let enc_ticket = format!("PBSAuthCookie={}", percent_encode(auth.ticket.as_bytes(), DEFAULT_ENCODE_SET));
|
|
|
|
req.headers_mut().insert("Cookie", HeaderValue::from_str(&enc_ticket).unwrap());
|
|
|
|
req.headers_mut().insert("UPGRADE", HeaderValue::from_str(&protocol_name).unwrap());
|
2019-04-29 09:57:58 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
let resp = client.request(req).await?;
|
|
|
|
let status = resp.status();
|
2019-04-29 09:57:58 +00:00
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
if status != http::StatusCode::SWITCHING_PROTOCOLS {
|
2019-12-27 12:41:31 +00:00
|
|
|
Self::api_response(resp).await?;
|
|
|
|
bail!("unknown error");
|
2019-09-04 10:47:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let upgraded = resp
|
|
|
|
.into_body()
|
|
|
|
.on_upgrade()
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let max_window_size = (1 << 31) - 2;
|
|
|
|
|
|
|
|
let (h2, connection) = h2::client::Builder::new()
|
|
|
|
.initial_connection_window_size(max_window_size)
|
|
|
|
.initial_window_size(max_window_size)
|
|
|
|
.max_frame_size(4*1024*1024)
|
|
|
|
.handshake(upgraded)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let connection = connection
|
|
|
|
.map_err(|_| panic!("HTTP/2.0 connection failed"));
|
|
|
|
|
2019-12-17 09:52:07 +00:00
|
|
|
let (connection, abort) = futures::future::abortable(connection);
|
2019-09-04 10:47:01 +00:00
|
|
|
// A cancellable future returns an Option which is None when cancelled and
|
|
|
|
// Some when it finished instead, since we don't care about the return type we
|
|
|
|
// need to map it away:
|
|
|
|
let connection = connection.map(|_| ());
|
|
|
|
|
|
|
|
// Spawn a new task to drive the connection state
|
2019-12-12 14:27:07 +00:00
|
|
|
tokio::spawn(connection);
|
2019-09-04 10:47:01 +00:00
|
|
|
|
|
|
|
// Wait until the `SendRequest` handle has available capacity.
|
|
|
|
let c = h2.ready().await?;
|
2019-12-17 09:52:07 +00:00
|
|
|
Ok((H2Client::new(c), abort))
|
2019-04-29 09:57:58 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:57:29 +00:00
|
|
|
async fn credentials(
|
2019-09-02 13:14:55 +00:00
|
|
|
client: Client<HttpsConnector>,
|
2019-04-30 09:44:35 +00:00
|
|
|
server: String,
|
|
|
|
username: String,
|
|
|
|
password: String,
|
2019-09-04 07:57:29 +00:00
|
|
|
) -> Result<AuthInfo, Error> {
|
|
|
|
let data = json!({ "username": username, "password": password });
|
|
|
|
let req = Self::request_builder(&server, "POST", "/api2/json/access/ticket", Some(data)).unwrap();
|
|
|
|
let cred = Self::api_request(client, req).await?;
|
|
|
|
let auth = AuthInfo {
|
|
|
|
username: cred["data"]["username"].as_str().unwrap().to_owned(),
|
|
|
|
ticket: cred["data"]["ticket"].as_str().unwrap().to_owned(),
|
|
|
|
token: cred["data"]["CSRFPreventionToken"].as_str().unwrap().to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(auth)
|
2019-03-05 11:54:44 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 12:33:48 +00:00
|
|
|
async fn api_response(response: Response<Body>) -> Result<Value, Error> {
|
2019-05-22 11:24:33 +00:00
|
|
|
let status = response.status();
|
2019-12-12 14:27:07 +00:00
|
|
|
let data = hyper::body::to_bytes(response.into_body()).await?;
|
2019-08-23 12:33:48 +00:00
|
|
|
|
|
|
|
let text = String::from_utf8(data.to_vec()).unwrap();
|
|
|
|
if status.is_success() {
|
2019-10-25 16:04:37 +00:00
|
|
|
if text.is_empty() {
|
|
|
|
Ok(Value::Null)
|
|
|
|
} else {
|
2019-08-23 12:33:48 +00:00
|
|
|
let value: Value = serde_json::from_str(&text)?;
|
|
|
|
Ok(value)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bail!("HTTP Error {}: {}", status, text);
|
|
|
|
}
|
2019-05-22 11:24:33 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:47:01 +00:00
|
|
|
async fn api_request(
|
2019-09-02 13:14:55 +00:00
|
|
|
client: Client<HttpsConnector>,
|
2019-04-28 08:55:03 +00:00
|
|
|
req: Request<Body>
|
2019-09-04 10:47:01 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-03-05 11:54:44 +00:00
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
client.request(req)
|
|
|
|
.map_err(Error::from)
|
2019-05-22 11:24:33 +00:00
|
|
|
.and_then(Self::api_response)
|
2019-09-04 10:47:01 +00:00
|
|
|
.await
|
2019-02-13 13:31:43 +00:00
|
|
|
}
|
|
|
|
|
2019-10-12 10:57:08 +00:00
|
|
|
// Read-only access to server property
|
|
|
|
pub fn server(&self) -> &str {
|
|
|
|
&self.server
|
|
|
|
}
|
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
pub fn request_builder(server: &str, method: &str, path: &str, data: Option<Value>) -> Result<Request<Body>, Error> {
|
2019-02-18 05:24:28 +00:00
|
|
|
let path = path.trim_matches('/');
|
2019-04-28 08:55:03 +00:00
|
|
|
let url: Uri = format!("https://{}:8007/{}", server, path).parse()?;
|
|
|
|
|
|
|
|
if let Some(data) = data {
|
|
|
|
if method == "POST" {
|
|
|
|
let request = Request::builder()
|
|
|
|
.method(method)
|
|
|
|
.uri(url)
|
|
|
|
.header("User-Agent", "proxmox-backup-client/1.0")
|
|
|
|
.header(hyper::header::CONTENT_TYPE, "application/json")
|
|
|
|
.body(Body::from(data.to_string()))?;
|
|
|
|
return Ok(request);
|
|
|
|
} else {
|
2019-05-13 07:12:03 +00:00
|
|
|
let query = tools::json_object_to_query(data)?;
|
|
|
|
let url: Uri = format!("https://{}:8007/{}?{}", server, path, query).parse()?;
|
|
|
|
let request = Request::builder()
|
|
|
|
.method(method)
|
|
|
|
.uri(url)
|
|
|
|
.header("User-Agent", "proxmox-backup-client/1.0")
|
|
|
|
.header(hyper::header::CONTENT_TYPE, "application/x-www-form-urlencoded")
|
|
|
|
.body(Body::empty())?;
|
|
|
|
return Ok(request);
|
2019-04-28 08:55:03 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-13 13:31:43 +00:00
|
|
|
|
2019-01-21 17:56:48 +00:00
|
|
|
let request = Request::builder()
|
2019-04-28 08:55:03 +00:00
|
|
|
.method(method)
|
2019-01-21 17:56:48 +00:00
|
|
|
.uri(url)
|
|
|
|
.header("User-Agent", "proxmox-backup-client/1.0")
|
2019-04-28 08:55:03 +00:00
|
|
|
.header(hyper::header::CONTENT_TYPE, "application/x-www-form-urlencoded")
|
|
|
|
.body(Body::empty())?;
|
2019-01-21 17:56:48 +00:00
|
|
|
|
2019-04-28 08:55:03 +00:00
|
|
|
Ok(request)
|
2019-01-17 10:29:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-13 08:27:22 +00:00
|
|
|
|
2019-05-22 15:28:25 +00:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct H2Client {
|
|
|
|
h2: h2::client::SendRequest<bytes::Bytes>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl H2Client {
|
|
|
|
|
|
|
|
pub fn new(h2: h2::client::SendRequest<bytes::Bytes>) -> Self {
|
|
|
|
Self { h2 }
|
|
|
|
}
|
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
pub async fn get(
|
|
|
|
&self,
|
|
|
|
path: &str,
|
|
|
|
param: Option<Value>
|
|
|
|
) -> Result<Value, Error> {
|
2019-09-20 10:23:06 +00:00
|
|
|
let req = Self::request_builder("localhost", "GET", path, param, None).unwrap();
|
2019-09-04 12:52:19 +00:00
|
|
|
self.request(req).await
|
2019-05-22 15:28:25 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
pub async fn put(
|
|
|
|
&self,
|
|
|
|
path: &str,
|
|
|
|
param: Option<Value>
|
|
|
|
) -> Result<Value, Error> {
|
2019-09-20 10:23:06 +00:00
|
|
|
let req = Self::request_builder("localhost", "PUT", path, param, None).unwrap();
|
2019-09-04 12:52:19 +00:00
|
|
|
self.request(req).await
|
2019-05-22 15:28:25 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
pub async fn post(
|
|
|
|
&self,
|
|
|
|
path: &str,
|
|
|
|
param: Option<Value>
|
|
|
|
) -> Result<Value, Error> {
|
2019-09-20 10:23:06 +00:00
|
|
|
let req = Self::request_builder("localhost", "POST", path, param, None).unwrap();
|
2019-09-04 12:52:19 +00:00
|
|
|
self.request(req).await
|
2019-05-22 15:28:25 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 11:57:05 +00:00
|
|
|
pub async fn download<W: Write + Send>(
|
2019-08-23 12:33:48 +00:00
|
|
|
&self,
|
|
|
|
path: &str,
|
|
|
|
param: Option<Value>,
|
2019-09-04 12:52:19 +00:00
|
|
|
mut output: W,
|
2019-09-04 11:57:05 +00:00
|
|
|
) -> Result<W, Error> {
|
2019-09-20 10:23:06 +00:00
|
|
|
let request = Self::request_builder("localhost", "GET", path, param, None).unwrap();
|
2019-06-27 07:01:41 +00:00
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
let response_future = self.send_request(request, None).await?;
|
2019-06-28 05:02:43 +00:00
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
let resp = response_future.await?;
|
|
|
|
|
|
|
|
let status = resp.status();
|
|
|
|
if !status.is_success() {
|
2019-09-05 11:25:17 +00:00
|
|
|
H2Client::h2api_response(resp).await?; // raise error
|
|
|
|
unreachable!();
|
2019-09-04 12:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut body = resp.into_body();
|
2019-12-12 14:27:07 +00:00
|
|
|
while let Some(chunk) = body.data().await {
|
|
|
|
let chunk = chunk?;
|
|
|
|
body.flow_control().release_capacity(chunk.len())?;
|
2019-09-04 12:52:19 +00:00
|
|
|
output.write_all(&chunk)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(output)
|
2019-06-27 07:01:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
pub async fn upload(
|
2019-08-23 12:33:48 +00:00
|
|
|
&self,
|
2019-09-20 10:40:23 +00:00
|
|
|
method: &str, // POST or PUT
|
2019-08-23 12:33:48 +00:00
|
|
|
path: &str,
|
|
|
|
param: Option<Value>,
|
2019-09-20 10:23:06 +00:00
|
|
|
content_type: &str,
|
2019-08-23 12:33:48 +00:00
|
|
|
data: Vec<u8>,
|
2019-09-04 12:52:19 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-09-20 10:40:23 +00:00
|
|
|
let request = Self::request_builder("localhost", method, path, param, Some(content_type)).unwrap();
|
2019-05-22 15:28:25 +00:00
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
let mut send_request = self.h2.clone().ready().await?;
|
|
|
|
|
|
|
|
let (response, stream) = send_request.send_request(request, false).unwrap();
|
2019-09-05 13:07:37 +00:00
|
|
|
|
|
|
|
PipeToSendStream::new(bytes::Bytes::from(data), stream).await?;
|
|
|
|
|
|
|
|
response
|
|
|
|
.map_err(Error::from)
|
|
|
|
.and_then(Self::h2api_response)
|
2019-09-04 12:52:19 +00:00
|
|
|
.await
|
2019-05-22 15:28:25 +00:00
|
|
|
}
|
2019-05-16 08:24:23 +00:00
|
|
|
|
2019-09-04 12:52:19 +00:00
|
|
|
async fn request(
|
2019-05-22 15:28:25 +00:00
|
|
|
&self,
|
2019-05-13 08:27:22 +00:00
|
|
|
request: Request<()>,
|
2019-09-04 12:52:19 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-05-13 08:27:22 +00:00
|
|
|
|
2019-05-22 15:28:25 +00:00
|
|
|
self.send_request(request, None)
|
2019-05-20 12:19:24 +00:00
|
|
|
.and_then(move |response| {
|
|
|
|
response
|
|
|
|
.map_err(Error::from)
|
|
|
|
.and_then(Self::h2api_response)
|
|
|
|
})
|
2019-09-04 12:52:19 +00:00
|
|
|
.await
|
2019-05-20 12:19:24 +00:00
|
|
|
}
|
|
|
|
|
2019-10-12 11:53:11 +00:00
|
|
|
pub fn send_request(
|
2019-05-22 15:28:25 +00:00
|
|
|
&self,
|
2019-05-20 12:19:24 +00:00
|
|
|
request: Request<()>,
|
|
|
|
data: Option<bytes::Bytes>,
|
2019-08-23 12:33:48 +00:00
|
|
|
) -> impl Future<Output = Result<h2::client::ResponseFuture, Error>> {
|
2019-05-20 12:19:24 +00:00
|
|
|
|
2019-05-22 15:28:25 +00:00
|
|
|
self.h2.clone()
|
2019-05-13 10:11:18 +00:00
|
|
|
.ready()
|
|
|
|
.map_err(Error::from)
|
2019-09-05 13:07:37 +00:00
|
|
|
.and_then(move |mut send_request| async move {
|
2019-05-20 12:19:24 +00:00
|
|
|
if let Some(data) = data {
|
|
|
|
let (response, stream) = send_request.send_request(request, false).unwrap();
|
2019-09-05 13:07:37 +00:00
|
|
|
PipeToSendStream::new(data, stream).await?;
|
|
|
|
Ok(response)
|
2019-05-20 12:19:24 +00:00
|
|
|
} else {
|
|
|
|
let (response, _stream) = send_request.send_request(request, true).unwrap();
|
2019-09-05 13:07:37 +00:00
|
|
|
Ok(response)
|
2019-05-20 12:19:24 +00:00
|
|
|
}
|
2019-05-13 08:27:22 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-09-28 16:22:48 +00:00
|
|
|
pub async fn h2api_response(
|
2019-08-23 12:33:48 +00:00
|
|
|
response: Response<h2::RecvStream>,
|
2019-09-05 12:56:52 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-05-13 08:27:22 +00:00
|
|
|
let status = response.status();
|
|
|
|
|
|
|
|
let (_head, mut body) = response.into_parts();
|
|
|
|
|
2019-09-05 12:56:52 +00:00
|
|
|
let mut data = Vec::new();
|
2019-12-12 14:27:07 +00:00
|
|
|
while let Some(chunk) = body.data().await {
|
|
|
|
let chunk = chunk?;
|
|
|
|
// Whenever data is received, the caller is responsible for
|
|
|
|
// releasing capacity back to the server once it has freed
|
|
|
|
// the data from memory.
|
2019-09-05 12:56:52 +00:00
|
|
|
// Let the server send more data.
|
2019-12-12 14:27:07 +00:00
|
|
|
body.flow_control().release_capacity(chunk.len())?;
|
2019-09-05 12:56:52 +00:00
|
|
|
data.extend(chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
let text = String::from_utf8(data.to_vec()).unwrap();
|
|
|
|
if status.is_success() {
|
2019-10-25 16:04:37 +00:00
|
|
|
if text.is_empty() {
|
|
|
|
Ok(Value::Null)
|
|
|
|
} else {
|
2019-09-05 12:56:52 +00:00
|
|
|
let mut value: Value = serde_json::from_str(&text)?;
|
|
|
|
if let Some(map) = value.as_object_mut() {
|
|
|
|
if let Some(data) = map.remove("data") {
|
|
|
|
return Ok(data);
|
2019-05-13 08:27:22 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-05 12:56:52 +00:00
|
|
|
bail!("got result without data property");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bail!("HTTP Error {}: {}", status, text);
|
|
|
|
}
|
2019-05-13 08:27:22 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 06:32:55 +00:00
|
|
|
// Note: We always encode parameters with the url
|
2019-09-20 10:23:06 +00:00
|
|
|
pub fn request_builder(
|
|
|
|
server: &str,
|
|
|
|
method: &str,
|
|
|
|
path: &str,
|
|
|
|
param: Option<Value>,
|
|
|
|
content_type: Option<&str>,
|
|
|
|
) -> Result<Request<()>, Error> {
|
2019-05-13 08:27:22 +00:00
|
|
|
let path = path.trim_matches('/');
|
|
|
|
|
2019-09-20 10:23:06 +00:00
|
|
|
let content_type = content_type.unwrap_or("application/x-www-form-urlencoded");
|
|
|
|
|
2019-09-20 09:57:03 +00:00
|
|
|
if let Some(param) = param {
|
|
|
|
let query = tools::json_object_to_query(param)?;
|
2019-05-24 06:32:55 +00:00
|
|
|
// We detected problem with hyper around 6000 characters - seo we try to keep on the safe side
|
|
|
|
if query.len() > 4096 { bail!("h2 query data too large ({} bytes) - please encode data inside body", query.len()); }
|
2019-05-13 08:27:22 +00:00
|
|
|
let url: Uri = format!("https://{}:8007/{}?{}", server, path, query).parse()?;
|
2019-05-24 06:32:55 +00:00
|
|
|
let request = Request::builder()
|
2019-05-13 08:27:22 +00:00
|
|
|
.method(method)
|
|
|
|
.uri(url)
|
|
|
|
.header("User-Agent", "proxmox-backup-client/1.0")
|
2019-09-20 10:23:06 +00:00
|
|
|
.header(hyper::header::CONTENT_TYPE, content_type)
|
2019-05-13 08:27:22 +00:00
|
|
|
.body(())?;
|
2019-10-26 09:36:01 +00:00
|
|
|
Ok(request)
|
2019-05-24 06:32:55 +00:00
|
|
|
} else {
|
|
|
|
let url: Uri = format!("https://{}:8007/{}", server, path).parse()?;
|
|
|
|
let request = Request::builder()
|
|
|
|
.method(method)
|
|
|
|
.uri(url)
|
|
|
|
.header("User-Agent", "proxmox-backup-client/1.0")
|
2019-09-20 10:23:06 +00:00
|
|
|
.header(hyper::header::CONTENT_TYPE, content_type)
|
2019-05-24 06:32:55 +00:00
|
|
|
.body(())?;
|
2019-05-13 08:27:22 +00:00
|
|
|
|
2019-05-24 06:32:55 +00:00
|
|
|
Ok(request)
|
|
|
|
}
|
2019-05-13 08:27:22 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-02 13:14:55 +00:00
|
|
|
|
2019-12-12 14:27:07 +00:00
|
|
|
#[derive(Clone)]
|
2019-09-02 13:14:55 +00:00
|
|
|
pub struct HttpsConnector {
|
|
|
|
http: HttpConnector,
|
2019-12-12 14:27:07 +00:00
|
|
|
ssl_connector: std::sync::Arc<SslConnector>,
|
2019-09-02 13:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl HttpsConnector {
|
|
|
|
pub fn with_connector(mut http: HttpConnector, ssl_connector: SslConnector) -> Self {
|
|
|
|
http.enforce_http(false);
|
|
|
|
|
|
|
|
Self {
|
|
|
|
http,
|
2019-12-12 14:27:07 +00:00
|
|
|
ssl_connector: std::sync::Arc::new(ssl_connector),
|
2019-09-02 13:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type MaybeTlsStream = EitherStream<
|
|
|
|
tokio::net::TcpStream,
|
|
|
|
tokio_openssl::SslStream<tokio::net::TcpStream>,
|
|
|
|
>;
|
|
|
|
|
2019-12-12 14:27:07 +00:00
|
|
|
impl hyper::service::Service<Uri> for HttpsConnector {
|
|
|
|
type Response = MaybeTlsStream;
|
2019-09-02 13:14:55 +00:00
|
|
|
type Error = Error;
|
2019-12-12 14:27:07 +00:00
|
|
|
type Future = std::pin::Pin<Box<
|
|
|
|
dyn Future<Output = Result<Self::Response, Self::Error>> + Send + 'static
|
|
|
|
>>;
|
2019-09-02 13:14:55 +00:00
|
|
|
|
2019-12-12 14:27:07 +00:00
|
|
|
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
|
|
// This connector is always ready, but others might not be.
|
|
|
|
Poll::Ready(Ok(()))
|
|
|
|
}
|
2019-09-02 13:14:55 +00:00
|
|
|
|
2019-12-12 14:27:07 +00:00
|
|
|
fn call(&mut self, dst: Uri) -> Self::Future {
|
|
|
|
let mut this = self.clone();
|
|
|
|
async move {
|
|
|
|
let is_https = dst
|
|
|
|
.scheme()
|
|
|
|
.ok_or_else(|| format_err!("missing URL scheme"))?
|
|
|
|
== "https";
|
|
|
|
let host = dst
|
|
|
|
.host()
|
|
|
|
.ok_or_else(|| format_err!("missing hostname in destination url?"))?
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let config = this.ssl_connector.configure();
|
|
|
|
let conn = this.http.call(dst).await?;
|
2019-09-02 13:14:55 +00:00
|
|
|
if is_https {
|
|
|
|
let conn = tokio_openssl::connect(config?, &host, conn).await?;
|
2019-12-12 14:27:07 +00:00
|
|
|
Ok(MaybeTlsStream::Right(conn))
|
2019-09-02 13:14:55 +00:00
|
|
|
} else {
|
2019-12-12 14:27:07 +00:00
|
|
|
Ok(MaybeTlsStream::Left(conn))
|
2019-09-02 13:14:55 +00:00
|
|
|
}
|
2019-12-12 14:27:07 +00:00
|
|
|
}.boxed()
|
2019-09-02 13:14:55 +00:00
|
|
|
}
|
|
|
|
}
|