]> git.proxmox.com Git - proxmox-backup.git/blame - src/client/http_client.rs
src/api2/admin/datastore.rs: add api to upload backup client log file
[proxmox-backup.git] / src / client / http_client.rs
CommitLineData
597641fd
DM
1use failure::*;
2
3use http::Uri;
4use hyper::Body;
5use hyper::client::Client;
ba3a60b2 6use xdg::BaseDirectories;
fa5d6977 7use chrono::{DateTime, Utc};
553610b4
DM
8use std::collections::HashSet;
9use std::sync::{Arc, Mutex};
c2b94534 10use std::io::Write;
597641fd 11
b57cb264 12use http::{Request, Response};
5a2df000
DM
13use http::header::HeaderValue;
14
82ab7230 15use futures::*;
1fdb4c6f 16use futures::stream::Stream;
82ab7230
DM
17use std::sync::atomic::{AtomicUsize, Ordering};
18use tokio::sync::mpsc;
6d1f61b2 19use openssl::ssl::{SslConnector, SslMethod};
1fdb4c6f 20
ba3a60b2 21use serde_json::{json, Value};
0dffe3f9 22use url::percent_encoding::{percent_encode, DEFAULT_ENCODE_SET};
1fdb4c6f 23
5a2df000 24use crate::tools::{self, BroadcastFuture, tty};
cb4426b3 25use crate::tools::futures::{cancellable, Canceller};
e3dbd41b 26use super::pipe_to_stream::*;
aa1b2e04
DM
27use super::merge_known_chunks::*;
28
986bef16
DM
29use crate::backup::*;
30
5a2df000
DM
31#[derive(Clone)]
32struct AuthInfo {
33 username: String,
34 ticket: String,
35 token: String,
36}
56458d97 37
151c6ce2 38/// HTTP(S) API client
597641fd 39pub struct HttpClient {
6d1f61b2 40 client: Client<hyper_openssl::HttpsConnector<hyper::client::HttpConnector>>,
597641fd 41 server: String,
5a2df000 42 auth: BroadcastFuture<AuthInfo>,
597641fd
DM
43}
44
ba3a60b2
DM
45fn store_ticket_info(server: &str, username: &str, ticket: &str, token: &str) -> Result<(), Error> {
46
47 let base = BaseDirectories::with_prefix("proxmox-backup")?;
48
49 // usually /run/user/<uid>/...
50 let path = base.place_runtime_file("tickets")?;
51
52 let mode = nix::sys::stat::Mode::from_bits_truncate(0o0600);
53
49cf9f3d 54 let mut data = tools::file_get_json(&path, Some(json!({})))?;
ba3a60b2
DM
55
56 let now = Utc::now().timestamp();
57
58 data[server][username] = json!({ "timestamp": now, "ticket": ticket, "token": token});
59
60 let mut new_data = json!({});
61
62 let ticket_lifetime = tools::ticket::TICKET_LIFETIME - 60;
63
64 let empty = serde_json::map::Map::new();
65 for (server, info) in data.as_object().unwrap_or(&empty) {
66 for (_user, uinfo) in info.as_object().unwrap_or(&empty) {
67 if let Some(timestamp) = uinfo["timestamp"].as_i64() {
68 let age = now - timestamp;
69 if age < ticket_lifetime {
70 new_data[server][username] = uinfo.clone();
71 }
72 }
73 }
74 }
75
76 tools::file_set_contents(path, new_data.to_string().as_bytes(), Some(mode))?;
77
78 Ok(())
79}
80
81fn load_ticket_info(server: &str, username: &str) -> Option<(String, String)> {
82 let base = match BaseDirectories::with_prefix("proxmox-backup") {
83 Ok(b) => b,
84 _ => return None,
85 };
86
87 // usually /run/user/<uid>/...
88 let path = match base.place_runtime_file("tickets") {
89 Ok(p) => p,
90 _ => return None,
91 };
92
49cf9f3d
DM
93 let data = match tools::file_get_json(&path, None) {
94 Ok(v) => v,
95 _ => return None,
96 };
ba3a60b2
DM
97
98 let now = Utc::now().timestamp();
99
100 let ticket_lifetime = tools::ticket::TICKET_LIFETIME - 60;
101
102 if let Some(uinfo) = data[server][username].as_object() {
103 if let Some(timestamp) = uinfo["timestamp"].as_i64() {
104 let age = now - timestamp;
105 if age < ticket_lifetime {
106 let ticket = match uinfo["ticket"].as_str() {
107 Some(t) => t,
108 None => return None,
109 };
110 let token = match uinfo["token"].as_str() {
111 Some(t) => t,
112 None => return None,
21ea0158 113 };
ba3a60b2
DM
114 return Some((ticket.to_owned(), token.to_owned()));
115 }
116 }
117 }
118
119 None
120}
121
597641fd
DM
122impl HttpClient {
123
45cdce06 124 pub fn new(server: &str, username: &str) -> Result<Self, Error> {
5a2df000 125 let client = Self::build_client();
5a2df000 126
45cdce06
DM
127 let password = if let Some((ticket, _token)) = load_ticket_info(server, username) {
128 ticket
129 } else {
130 Self::get_password(&username)?
131 };
132
133 let login = Self::credentials(client.clone(), server.to_owned(), username.to_owned(), password);
134
135 Ok(Self {
5a2df000 136 client,
597641fd 137 server: String::from(server),
5a2df000 138 auth: BroadcastFuture::new(login),
45cdce06 139 })
597641fd
DM
140 }
141
5a2df000 142 fn get_password(_username: &str) -> Result<String, Error> {
56458d97
WB
143 use std::env::VarError::*;
144 match std::env::var("PBS_PASSWORD") {
145 Ok(p) => return Ok(p),
146 Err(NotUnicode(_)) => bail!("PBS_PASSWORD contains bad characters"),
147 Err(NotPresent) => {
148 // Try another method
149 }
150 }
151
152 // If we're on a TTY, query the user for a password
153 if tty::stdin_isatty() {
154 return Ok(String::from_utf8(tty::read_password("Password: ")?)?);
155 }
156
157 bail!("no password input mechanism available");
158 }
159
6d1f61b2
DM
160 fn build_client() -> Client<hyper_openssl::HttpsConnector<hyper::client::HttpConnector>> {
161
162 let mut ssl_connector_builder = SslConnector::builder(SslMethod::tls()).unwrap();
163
164 ssl_connector_builder.set_verify(openssl::ssl::SslVerifyMode::NONE); // fixme!
165
4a3f6517 166 let mut httpc = hyper::client::HttpConnector::new(1);
fcf5dea5 167 httpc.set_nodelay(true); // important for h2 download performance!
99168f43 168 httpc.set_recv_buffer_size(Some(1024*1024)); //important for h2 download performance!
4a3f6517 169 httpc.enforce_http(false); // we want https...
6d1f61b2
DM
170
171 let https = hyper_openssl::HttpsConnector::with_connector(httpc, ssl_connector_builder).unwrap();
172
adec8ea2
DM
173 Client::builder()
174 //.http2_initial_stream_window_size( (1 << 31) - 2)
175 //.http2_initial_connection_window_size( (1 << 31) - 2)
176 .build::<_, Body>(https)
a6b75513
DM
177 }
178
5a2df000 179 pub fn request(&self, mut req: Request<Body>) -> impl Future<Item=Value, Error=Error> {
597641fd 180
5a2df000 181 let login = self.auth.listen();
597641fd 182
5a2df000 183 let client = self.client.clone();
597641fd 184
5a2df000 185 login.and_then(move |auth| {
597641fd 186
5a2df000
DM
187 let enc_ticket = format!("PBSAuthCookie={}", percent_encode(auth.ticket.as_bytes(), DEFAULT_ENCODE_SET));
188 req.headers_mut().insert("Cookie", HeaderValue::from_str(&enc_ticket).unwrap());
189 req.headers_mut().insert("CSRFPreventionToken", HeaderValue::from_str(&auth.token).unwrap());
597641fd 190
5a2df000 191 let request = Self::api_request(client, req);
597641fd 192
5a2df000
DM
193 request
194 })
1fdb4c6f
DM
195 }
196
9e391bb7 197 pub fn get(&self, path: &str, data: Option<Value>) -> impl Future<Item=Value, Error=Error> {
a6b75513 198
9e391bb7 199 let req = Self::request_builder(&self.server, "GET", path, data).unwrap();
5a2df000 200 self.request(req)
a6b75513
DM
201 }
202
9e391bb7 203 pub fn delete(&mut self, path: &str, data: Option<Value>) -> impl Future<Item=Value, Error=Error> {
a6b75513 204
9e391bb7 205 let req = Self::request_builder(&self.server, "DELETE", path, data).unwrap();
5a2df000 206 self.request(req)
a6b75513
DM
207 }
208
5a2df000 209 pub fn post(&mut self, path: &str, data: Option<Value>) -> impl Future<Item=Value, Error=Error> {
024f11bb 210
5a2df000
DM
211 let req = Self::request_builder(&self.server, "POST", path, data).unwrap();
212 self.request(req)
024f11bb
DM
213 }
214
c2b94534 215 pub fn download<W: Write>(&mut self, path: &str, output: W) -> impl Future<Item=W, Error=Error> {
024f11bb 216
5a2df000 217 let mut req = Self::request_builder(&self.server, "GET", path, None).unwrap();
024f11bb 218
5a2df000 219 let login = self.auth.listen();
024f11bb 220
5a2df000 221 let client = self.client.clone();
1fdb4c6f 222
5a2df000 223 login.and_then(move |auth| {
81da38c1 224
5a2df000
DM
225 let enc_ticket = format!("PBSAuthCookie={}", percent_encode(auth.ticket.as_bytes(), DEFAULT_ENCODE_SET));
226 req.headers_mut().insert("Cookie", HeaderValue::from_str(&enc_ticket).unwrap());
6f62c924 227
5a2df000
DM
228 client.request(req)
229 .map_err(Error::from)
230 .and_then(|resp| {
81820b0d
DM
231 let status = resp.status();
232 if !status.is_success() {
233 future::Either::A(
234 HttpClient::api_response(resp)
235 .and_then(|_| { bail!("unknown error"); })
236 )
237 } else {
238 future::Either::B(
239 resp.into_body()
240 .map_err(Error::from)
c2b94534
DM
241 .fold(output, move |mut acc, chunk| {
242 acc.write_all(&chunk)?;
243 Ok::<_, Error>(acc)
81820b0d
DM
244 })
245 )
246 }
5a2df000
DM
247 })
248 })
6f62c924
DM
249 }
250
5a2df000 251 pub fn upload(&mut self, content_type: &str, body: Body, path: &str) -> impl Future<Item=Value, Error=Error> {
81da38c1
DM
252
253 let path = path.trim_matches('/');
5a2df000 254 let url: Uri = format!("https://{}:8007/{}", &self.server, path).parse().unwrap();
81da38c1 255
5a2df000 256 let req = Request::builder()
81da38c1
DM
257 .method("POST")
258 .uri(url)
259 .header("User-Agent", "proxmox-backup-client/1.0")
5a2df000
DM
260 .header("Content-Type", content_type)
261 .body(body).unwrap();
81da38c1 262
5a2df000 263 self.request(req)
1fdb4c6f
DM
264 }
265
6ab34afa
DM
266 pub fn start_backup(
267 &self,
268 datastore: &str,
269 backup_type: &str,
270 backup_id: &str,
39e60bd6 271 debug: bool,
3467cd91 272 ) -> impl Future<Item=Arc<BackupClient>, Error=Error> {
cf639a47 273
7773ccc1 274 let param = json!({"backup-type": backup_type, "backup-id": backup_id, "store": datastore, "debug": debug});
fb047083 275 let req = Self::request_builder(&self.server, "GET", "/api2/json/backup", Some(param)).unwrap();
cf639a47 276
fb047083
DM
277 self.start_h2_connection(req, String::from(PROXMOX_BACKUP_PROTOCOL_ID_V1!()))
278 .map(|(h2, canceller)| BackupClient::new(h2, canceller))
279 }
280
dd066d28
DM
281 pub fn start_backup_reader(
282 &self,
283 datastore: &str,
284 backup_type: &str,
285 backup_id: &str,
fa5d6977 286 backup_time: DateTime<Utc>,
dd066d28 287 debug: bool,
3467cd91 288 ) -> impl Future<Item=Arc<BackupReader>, Error=Error> {
dd066d28
DM
289
290 let param = json!({
291 "backup-type": backup_type,
292 "backup-id": backup_id,
293 "backup-time": backup_time.timestamp(),
294 "store": datastore,
295 "debug": debug,
296 });
297 let req = Self::request_builder(&self.server, "GET", "/api2/json/reader", Some(param)).unwrap();
298
299 self.start_h2_connection(req, String::from(PROXMOX_BACKUP_READER_PROTOCOL_ID_V1!()))
300 .map(|(h2, canceller)| BackupReader::new(h2, canceller))
301 }
302
fb047083
DM
303 pub fn start_h2_connection(
304 &self,
305 mut req: Request<Body>,
306 protocol_name: String,
307 ) -> impl Future<Item=(H2Client, Canceller), Error=Error> {
cf639a47 308
fb047083 309 let login = self.auth.listen();
cf639a47
DM
310 let client = self.client.clone();
311
312 login.and_then(move |auth| {
313
314 let enc_ticket = format!("PBSAuthCookie={}", percent_encode(auth.ticket.as_bytes(), DEFAULT_ENCODE_SET));
315 req.headers_mut().insert("Cookie", HeaderValue::from_str(&enc_ticket).unwrap());
fb047083 316 req.headers_mut().insert("UPGRADE", HeaderValue::from_str(&protocol_name).unwrap());
cf639a47
DM
317
318 client.request(req)
319 .map_err(Error::from)
320 .and_then(|resp| {
321
322 let status = resp.status();
323 if status != http::StatusCode::SWITCHING_PROTOCOLS {
9af37c8f
DM
324 future::Either::A(Self::api_response(resp).and_then(|_| { bail!("unknown error"); }))
325 } else {
326 future::Either::B(resp.into_body().on_upgrade().map_err(Error::from))
cf639a47 327 }
cf639a47 328 })
cf639a47 329 .and_then(|upgraded| {
a2b29b68 330 let max_window_size = (1 << 31) - 2;
fcf5dea5
DM
331
332 h2::client::Builder::new()
a2b29b68
DM
333 .initial_connection_window_size(max_window_size)
334 .initial_window_size(max_window_size)
fcf5dea5 335 .max_frame_size(4*1024*1024)
fcf5dea5
DM
336 .handshake(upgraded)
337 .map_err(Error::from)
cf639a47
DM
338 })
339 .and_then(|(h2, connection)| {
340 let connection = connection
341 .map_err(|_| panic!("HTTP/2.0 connection failed"));
342
cb4426b3
WB
343 let (connection, canceller) = cancellable(connection)?;
344 // A cancellable future returns an Option which is None when cancelled and
345 // Some when it finished instead, since we don't care about the return type we
346 // need to map it away:
347 let connection = connection.map(|_| ());
348
cf639a47
DM
349 // Spawn a new task to drive the connection state
350 hyper::rt::spawn(connection);
351
352 // Wait until the `SendRequest` handle has available capacity.
cb4426b3 353 Ok(h2.ready()
fb047083
DM
354 .map(move |c| (H2Client::new(c), canceller))
355 .map_err(Error::from))
cf639a47 356 })
cb4426b3 357 .flatten()
cf639a47
DM
358 })
359 }
360
5a2df000 361 fn credentials(
6d1f61b2 362 client: Client<hyper_openssl::HttpsConnector<hyper::client::HttpConnector>>,
45cdce06
DM
363 server: String,
364 username: String,
365 password: String,
dd5495d6 366 ) -> Box<dyn Future<Item=AuthInfo, Error=Error> + Send> {
0ffbccce 367
45cdce06 368 let server2 = server.clone();
0ffbccce 369
5a2df000 370 let create_request = futures::future::lazy(move || {
45cdce06 371 let data = json!({ "username": username, "password": password });
5a2df000 372 let req = Self::request_builder(&server, "POST", "/api2/json/access/ticket", Some(data)).unwrap();
45cdce06 373 Self::api_request(client, req)
5a2df000 374 });
0dffe3f9 375
5a2df000
DM
376 let login_future = create_request
377 .and_then(move |cred| {
378 let auth = AuthInfo {
379 username: cred["data"]["username"].as_str().unwrap().to_owned(),
380 ticket: cred["data"]["ticket"].as_str().unwrap().to_owned(),
381 token: cred["data"]["CSRFPreventionToken"].as_str().unwrap().to_owned(),
382 };
0dffe3f9 383
5a2df000 384 let _ = store_ticket_info(&server2, &auth.username, &auth.ticket, &auth.token);
0dffe3f9 385
5a2df000
DM
386 Ok(auth)
387 });
0dffe3f9 388
5a2df000 389 Box::new(login_future)
ba3a60b2
DM
390 }
391
d2c48afc
DM
392 fn api_response(response: Response<Body>) -> impl Future<Item=Value, Error=Error> {
393
394 let status = response.status();
395
396 response
397 .into_body()
398 .concat2()
399 .map_err(Error::from)
400 .and_then(move |data| {
401
402 let text = String::from_utf8(data.to_vec()).unwrap();
403 if status.is_success() {
404 if text.len() > 0 {
405 let value: Value = serde_json::from_str(&text)?;
406 Ok(value)
407 } else {
408 Ok(Value::Null)
409 }
410 } else {
411 bail!("HTTP Error {}: {}", status, text);
412 }
413 })
414 }
415
5a2df000 416 fn api_request(
6d1f61b2 417 client: Client<hyper_openssl::HttpsConnector<hyper::client::HttpConnector>>,
5a2df000
DM
418 req: Request<Body>
419 ) -> impl Future<Item=Value, Error=Error> {
ba3a60b2 420
5a2df000
DM
421 client.request(req)
422 .map_err(Error::from)
d2c48afc 423 .and_then(Self::api_response)
0dffe3f9
DM
424 }
425
5a2df000 426 pub fn request_builder(server: &str, method: &str, path: &str, data: Option<Value>) -> Result<Request<Body>, Error> {
591f570b 427 let path = path.trim_matches('/');
5a2df000
DM
428 let url: Uri = format!("https://{}:8007/{}", server, path).parse()?;
429
430 if let Some(data) = data {
431 if method == "POST" {
432 let request = Request::builder()
433 .method(method)
434 .uri(url)
435 .header("User-Agent", "proxmox-backup-client/1.0")
436 .header(hyper::header::CONTENT_TYPE, "application/json")
437 .body(Body::from(data.to_string()))?;
438 return Ok(request);
439 } else {
9e391bb7
DM
440 let query = tools::json_object_to_query(data)?;
441 let url: Uri = format!("https://{}:8007/{}?{}", server, path, query).parse()?;
442 let request = Request::builder()
443 .method(method)
444 .uri(url)
445 .header("User-Agent", "proxmox-backup-client/1.0")
446 .header(hyper::header::CONTENT_TYPE, "application/x-www-form-urlencoded")
447 .body(Body::empty())?;
448 return Ok(request);
5a2df000 449 }
5a2df000 450 }
0dffe3f9 451
1fdb4c6f 452 let request = Request::builder()
5a2df000 453 .method(method)
1fdb4c6f
DM
454 .uri(url)
455 .header("User-Agent", "proxmox-backup-client/1.0")
5a2df000
DM
456 .header(hyper::header::CONTENT_TYPE, "application/x-www-form-urlencoded")
457 .body(Body::empty())?;
1fdb4c6f 458
5a2df000 459 Ok(request)
597641fd
DM
460 }
461}
b57cb264 462
dd066d28
DM
463
464pub struct BackupReader {
465 h2: H2Client,
3467cd91 466 canceller: Canceller,
dd066d28
DM
467}
468
469impl Drop for BackupReader {
470
471 fn drop(&mut self) {
3467cd91 472 self.canceller.cancel();
dd066d28
DM
473 }
474}
475
476impl BackupReader {
477
3467cd91
DM
478 pub fn new(h2: H2Client, canceller: Canceller) -> Arc<Self> {
479 Arc::new(Self { h2, canceller: canceller })
dd066d28
DM
480 }
481
482 pub fn get(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
483 self.h2.get(path, param)
484 }
485
486 pub fn put(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
487 self.h2.put(path, param)
488 }
489
490 pub fn post(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
491 self.h2.post(path, param)
492 }
493
494 pub fn download<W: Write>(
495 &self,
496 file_name: &str,
497 output: W,
498 ) -> impl Future<Item=W, Error=Error> {
499 let path = "download";
500 let param = json!({ "file-name": file_name });
501 self.h2.download(path, Some(param), output)
502 }
503
17243003
DM
504 pub fn speedtest<W: Write>(
505 &self,
506 output: W,
507 ) -> impl Future<Item=W, Error=Error> {
508 self.h2.download("speedtest", None, output)
509 }
510
fcf5dea5
DM
511 pub fn download_chunk<W: Write>(
512 &self,
513 digest: &[u8; 32],
514 output: W,
515 ) -> impl Future<Item=W, Error=Error> {
516 let path = "chunk";
517 let param = json!({ "digest": proxmox::tools::digest_to_hex(digest) });
518 self.h2.download(path, Some(param), output)
519 }
520
4f6aaf54 521 pub fn force_close(self) {
3467cd91 522 self.canceller.cancel();
dd066d28
DM
523 }
524}
525
6ab34afa 526pub struct BackupClient {
9af37c8f 527 h2: H2Client,
3467cd91 528 canceller: Canceller,
b57cb264
DM
529}
530
dd066d28
DM
531impl Drop for BackupClient {
532
533 fn drop(&mut self) {
3467cd91 534 self.canceller.cancel();
dd066d28
DM
535 }
536}
91320f08 537
6ab34afa 538impl BackupClient {
b57cb264 539
3467cd91
DM
540 pub fn new(h2: H2Client, canceller: Canceller) -> Arc<Self> {
541 Arc::new(Self { h2, canceller })
cb4426b3
WB
542 }
543
b57cb264 544 pub fn get(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
9af37c8f 545 self.h2.get(path, param)
b57cb264
DM
546 }
547
82ab7230 548 pub fn put(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
9af37c8f 549 self.h2.put(path, param)
82ab7230
DM
550 }
551
b57cb264 552 pub fn post(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
9af37c8f 553 self.h2.post(path, param)
97f22ce5
DM
554 }
555
3467cd91 556 pub fn finish(self: Arc<Self>) -> impl Future<Item=(), Error=Error> {
9cc88a7c
DM
557 self.h2.clone()
558 .post("finish", None)
559 .map(move |_| {
560 self.canceller.cancel();
561 })
4247fccb
DM
562 }
563
3467cd91
DM
564 pub fn force_close(self) {
565 self.canceller.cancel();
d6f204ed
DM
566 }
567
9f46c7de
DM
568 pub fn upload_blob_from_data(
569 &self,
570 data: Vec<u8>,
571 file_name: &str,
572 crypt_config: Option<Arc<CryptConfig>>,
573 compress: bool,
574 ) -> impl Future<Item=(), Error=Error> {
575
576 let h2 = self.h2.clone();
577 let file_name = file_name.to_owned();
578
579 futures::future::ok(())
580 .and_then(move |_| {
581 let blob = if let Some(ref crypt_config) = crypt_config {
582 DataBlob::encode(&data, Some(crypt_config), compress)?
583 } else {
584 DataBlob::encode(&data, None, compress)?
585 };
586
587 let raw_data = blob.into_inner();
588 Ok(raw_data)
589 })
590 .and_then(move |raw_data| {
591 let param = json!({"encoded-size": raw_data.len(), "file-name": file_name });
592 h2.upload("blob", Some(param), raw_data)
593 .map(|_| {})
594 })
595 }
596
597 pub fn upload_blob_from_file<P: AsRef<std::path::Path>>(
39d6846e 598 &self,
ec8a9bb9 599 src_path: P,
39d6846e 600 file_name: &str,
cb08ac3e
DM
601 crypt_config: Option<Arc<CryptConfig>>,
602 compress: bool,
ec8a9bb9 603 ) -> impl Future<Item=(), Error=Error> {
39d6846e
DM
604
605 let h2 = self.h2.clone();
606 let file_name = file_name.to_owned();
ec8a9bb9 607 let src_path = src_path.as_ref().to_owned();
39d6846e 608
ef39bf95
DM
609 let task = tokio::fs::File::open(src_path.clone())
610 .map_err(move |err| format_err!("unable to open file {:?} - {}", src_path, err))
cb08ac3e 611 .and_then(move |file| {
39d6846e
DM
612 let contents = vec![];
613 tokio::io::read_to_end(file, contents)
614 .map_err(Error::from)
615 .and_then(move |(_, contents)| {
cb08ac3e
DM
616 let blob = if let Some(ref crypt_config) = crypt_config {
617 DataBlob::encode(&contents, Some(crypt_config), compress)?
618 } else {
619 DataBlob::encode(&contents, None, compress)?
620 };
621 let raw_data = blob.into_inner();
622 Ok(raw_data)
623 })
624 .and_then(move |raw_data| {
625 let param = json!({"encoded-size": raw_data.len(), "file-name": file_name });
626 h2.upload("blob", Some(param), raw_data)
39d6846e
DM
627 .map(|_| {})
628 })
629 });
630
631 task
632 }
633
a42fa400 634 pub fn upload_stream(
d6f204ed
DM
635 &self,
636 archive_name: &str,
637 stream: impl Stream<Item=bytes::BytesMut, Error=Error>,
a42fa400
DM
638 prefix: &str,
639 fixed_size: Option<u64>,
f98ac774 640 crypt_config: Option<Arc<CryptConfig>>,
d6f204ed
DM
641 ) -> impl Future<Item=(), Error=Error> {
642
643 let known_chunks = Arc::new(Mutex::new(HashSet::new()));
644
645 let h2 = self.h2.clone();
646 let h2_2 = self.h2.clone();
647 let h2_3 = self.h2.clone();
648 let h2_4 = self.h2.clone();
649
a42fa400
DM
650 let mut param = json!({ "archive-name": archive_name });
651 if let Some(size) = fixed_size {
652 param["size"] = size.into();
653 }
654
655 let index_path = format!("{}_index", prefix);
a42fa400 656 let close_path = format!("{}_close", prefix);
d6f204ed 657
642322b4
DM
658 let prefix = prefix.to_owned();
659
a42fa400 660 Self::download_chunk_list(h2, &index_path, archive_name, known_chunks.clone())
d6f204ed 661 .and_then(move |_| {
a42fa400 662 h2_2.post(&index_path, Some(param))
d6f204ed
DM
663 })
664 .and_then(move |res| {
665 let wid = res.as_u64().unwrap();
f98ac774 666 Self::upload_chunk_info_stream(h2_3, wid, stream, &prefix, known_chunks.clone(), crypt_config)
417cb073 667 .and_then(move |(chunk_count, size, _speed)| {
8bea85b4
DM
668 let param = json!({
669 "wid": wid ,
670 "chunk-count": chunk_count,
671 "size": size,
672 });
a42fa400
DM
673 h2_4.post(&close_path, Some(param))
674 })
d6f204ed
DM
675 .map(|_| ())
676 })
677 }
678
6ab34afa 679 fn response_queue() -> (
82ab7230
DM
680 mpsc::Sender<h2::client::ResponseFuture>,
681 sync::oneshot::Receiver<Result<(), Error>>
682 ) {
683 let (verify_queue_tx, verify_queue_rx) = mpsc::channel(100);
684 let (verify_result_tx, verify_result_rx) = sync::oneshot::channel();
adec8ea2 685
82ab7230
DM
686 hyper::rt::spawn(
687 verify_queue_rx
688 .map_err(Error::from)
689 .for_each(|response: h2::client::ResponseFuture| {
690 response
691 .map_err(Error::from)
9af37c8f 692 .and_then(H2Client::h2api_response)
82ab7230
DM
693 .and_then(|result| {
694 println!("RESPONSE: {:?}", result);
695 Ok(())
696 })
697 .map_err(|err| format_err!("pipelined request failed: {}", err))
698 })
699 .then(|result|
700 verify_result_tx.send(result)
701 )
702 .map_err(|_| { /* ignore closed channel */ })
703 );
adec8ea2 704
82ab7230
DM
705 (verify_queue_tx, verify_result_rx)
706 }
707
642322b4 708 fn append_chunk_queue(h2: H2Client, wid: u64, path: String) -> (
174ad378 709 mpsc::Sender<(MergedChunkInfo, Option<h2::client::ResponseFuture>)>,
05cba08c
DM
710 sync::oneshot::Receiver<Result<(), Error>>
711 ) {
771953f9 712 let (verify_queue_tx, verify_queue_rx) = mpsc::channel(64);
05cba08c
DM
713 let (verify_result_tx, verify_result_rx) = sync::oneshot::channel();
714
715 let h2_2 = h2.clone();
716
717 hyper::rt::spawn(
718 verify_queue_rx
719 .map_err(Error::from)
174ad378
DM
720 .and_then(move |(merged_chunk_info, response): (MergedChunkInfo, Option<h2::client::ResponseFuture>)| {
721 match (response, merged_chunk_info) {
722 (Some(response), MergedChunkInfo::Known(list)) => {
05cba08c 723 future::Either::A(
174ad378
DM
724 response
725 .map_err(Error::from)
726 .and_then(H2Client::h2api_response)
771953f9 727 .and_then(move |_result| {
174ad378 728 Ok(MergedChunkInfo::Known(list))
05cba08c 729 })
05cba08c
DM
730 )
731 }
174ad378 732 (None, MergedChunkInfo::Known(list)) => {
05cba08c
DM
733 future::Either::B(future::ok(MergedChunkInfo::Known(list)))
734 }
174ad378 735 _ => unreachable!(),
05cba08c
DM
736 }
737 })
62436222 738 .merge_known_chunks()
05cba08c
DM
739 .and_then(move |merged_chunk_info| {
740 match merged_chunk_info {
741 MergedChunkInfo::Known(chunk_list) => {
742 let mut digest_list = vec![];
743 let mut offset_list = vec![];
744 for (offset, digest) in chunk_list {
bffd40d6
DM
745 //println!("append chunk {} (offset {})", proxmox::tools::digest_to_hex(&digest), offset);
746 digest_list.push(proxmox::tools::digest_to_hex(&digest));
05cba08c
DM
747 offset_list.push(offset);
748 }
749 println!("append chunks list len ({})", digest_list.len());
750 let param = json!({ "wid": wid, "digest-list": digest_list, "offset-list": offset_list });
a42fa400 751 let mut request = H2Client::request_builder("localhost", "PUT", &path, None).unwrap();
05cba08c
DM
752 request.headers_mut().insert(hyper::header::CONTENT_TYPE, HeaderValue::from_static("application/json"));
753 let param_data = bytes::Bytes::from(param.to_string().as_bytes());
754 let upload_data = Some(param_data);
755 h2_2.send_request(request, upload_data)
756 .and_then(move |response| {
757 response
758 .map_err(Error::from)
759 .and_then(H2Client::h2api_response)
760 .and_then(|_| Ok(()))
761 })
762 .map_err(|err| format_err!("pipelined request failed: {}", err))
763 }
764 _ => unreachable!(),
765 }
766 })
767 .for_each(|_| Ok(()))
768 .then(|result|
769 verify_result_tx.send(result)
770 )
771 .map_err(|_| { /* ignore closed channel */ })
772 );
773
774 (verify_queue_tx, verify_result_rx)
775 }
776
6ab34afa 777 fn download_chunk_list(
9af37c8f 778 h2: H2Client,
553610b4
DM
779 path: &str,
780 archive_name: &str,
781 known_chunks: Arc<Mutex<HashSet<[u8;32]>>>,
782 ) -> impl Future<Item=(), Error=Error> {
783
784 let param = json!({ "archive-name": archive_name });
9af37c8f 785 let request = H2Client::request_builder("localhost", "GET", path, Some(param)).unwrap();
553610b4 786
9af37c8f 787 h2.send_request(request, None)
553610b4
DM
788 .and_then(move |response| {
789 response
790 .map_err(Error::from)
791 .and_then(move |resp| {
792 let status = resp.status();
7dd1bcac 793
553610b4 794 if !status.is_success() {
7dd1bcac
DM
795 future::Either::A(H2Client::h2api_response(resp).and_then(|_| { bail!("unknown error"); }))
796 } else {
797 future::Either::B(future::ok(resp.into_body()))
553610b4 798 }
553610b4
DM
799 })
800 .and_then(move |mut body| {
801
802 let mut release_capacity = body.release_capacity().clone();
803
986bef16 804 DigestListDecoder::new(body.map_err(Error::from))
553610b4
DM
805 .for_each(move |chunk| {
806 let _ = release_capacity.release_capacity(chunk.len());
bffd40d6 807 println!("GOT DOWNLOAD {}", proxmox::tools::digest_to_hex(&chunk));
553610b4
DM
808 known_chunks.lock().unwrap().insert(chunk);
809 Ok(())
810 })
811 })
812 })
813 }
814
a42fa400 815 fn upload_chunk_info_stream(
9af37c8f 816 h2: H2Client,
82ab7230 817 wid: u64,
f98ac774 818 stream: impl Stream<Item=bytes::BytesMut, Error=Error>,
642322b4 819 prefix: &str,
553610b4 820 known_chunks: Arc<Mutex<HashSet<[u8;32]>>>,
f98ac774 821 crypt_config: Option<Arc<CryptConfig>>,
8bea85b4 822 ) -> impl Future<Item=(usize, usize, usize), Error=Error> {
adec8ea2 823
82ab7230
DM
824 let repeat = std::sync::Arc::new(AtomicUsize::new(0));
825 let repeat2 = repeat.clone();
adec8ea2 826
82ab7230
DM
827 let stream_len = std::sync::Arc::new(AtomicUsize::new(0));
828 let stream_len2 = stream_len.clone();
9c9ad941 829
642322b4
DM
830 let append_chunk_path = format!("{}_index", prefix);
831 let upload_chunk_path = format!("{}_chunk", prefix);
832
833 let (upload_queue, upload_result) = Self::append_chunk_queue(h2.clone(), wid, append_chunk_path.to_owned());
9c9ad941 834
82ab7230 835 let start_time = std::time::Instant::now();
9c9ad941 836
82ab7230 837 stream
f98ac774
DM
838 .and_then(move |data| {
839
840 let chunk_len = data.len();
841
82ab7230 842 repeat.fetch_add(1, Ordering::SeqCst);
f98ac774
DM
843 let offset = stream_len.fetch_add(chunk_len, Ordering::SeqCst) as u64;
844
845 let mut chunk_builder = DataChunkBuilder::new(data.as_ref())
846 .compress(true);
847
848 if let Some(ref crypt_config) = crypt_config {
849 chunk_builder = chunk_builder.crypt_config(crypt_config);
850 }
62436222
DM
851
852 let mut known_chunks = known_chunks.lock().unwrap();
f98ac774
DM
853 let digest = chunk_builder.digest();
854 let chunk_is_known = known_chunks.contains(digest);
62436222 855 if chunk_is_known {
f98ac774 856 Ok(MergedChunkInfo::Known(vec![(offset, *digest)]))
62436222 857 } else {
f98ac774
DM
858 known_chunks.insert(*digest);
859 let chunk = chunk_builder.build()?;
860 Ok(MergedChunkInfo::New(ChunkInfo { chunk, chunk_len: chunk_len as u64, offset }))
62436222 861 }
aa1b2e04 862 })
62436222 863 .merge_known_chunks()
aa1b2e04 864 .for_each(move |merged_chunk_info| {
174ad378
DM
865
866 if let MergedChunkInfo::New(chunk_info) = merged_chunk_info {
867 let offset = chunk_info.offset;
f98ac774 868 let digest = *chunk_info.chunk.digest();
bffd40d6 869 let digest_str = proxmox::tools::digest_to_hex(&digest);
174ad378
DM
870 let upload_queue = upload_queue.clone();
871
f98ac774
DM
872 println!("upload new chunk {} ({} bytes, offset {})", digest_str,
873 chunk_info.chunk_len, offset);
874
875 let chunk_data = chunk_info.chunk.raw_data();
876 let param = json!({
877 "wid": wid,
878 "digest": digest_str,
879 "size": chunk_info.chunk_len,
880 "encoded-size": chunk_data.len(),
881 });
174ad378 882
642322b4 883 let request = H2Client::request_builder("localhost", "POST", &upload_chunk_path, Some(param)).unwrap();
f98ac774 884 let upload_data = Some(bytes::Bytes::from(chunk_data));
174ad378 885
8de20e5c 886 let new_info = MergedChunkInfo::Known(vec![(offset, digest)]);
174ad378
DM
887
888 future::Either::A(
889 h2.send_request(request, upload_data)
890 .and_then(move |response| {
891 upload_queue.clone().send((new_info, Some(response)))
892 .map(|_| ()).map_err(Error::from)
893 })
894 )
895 } else {
896
897 future::Either::B(
898 upload_queue.clone().send((merged_chunk_info, None))
899 .map(|_| ()).map_err(Error::from)
900 )
901 }
82ab7230
DM
902 })
903 .then(move |result| {
684233aa 904 //println!("RESULT {:?}", result);
82ab7230
DM
905 upload_result.map_err(Error::from).and_then(|upload1_result| {
906 Ok(upload1_result.and(result))
907 })
908 })
909 .flatten()
910 .and_then(move |_| {
911 let repeat = repeat2.load(Ordering::SeqCst);
912 let stream_len = stream_len2.load(Ordering::SeqCst);
913 let speed = ((stream_len*1000000)/(1024*1024))/(start_time.elapsed().as_micros() as usize);
914 println!("Uploaded {} chunks in {} seconds ({} MB/s).", repeat, start_time.elapsed().as_secs(), speed);
915 if repeat > 0 {
916 println!("Average chunk size was {} bytes.", stream_len/repeat);
917 println!("Time per request: {} microseconds.", (start_time.elapsed().as_micros())/(repeat as u128));
918 }
8bea85b4 919 Ok((repeat, stream_len, speed))
82ab7230
DM
920 })
921 }
922
923 pub fn upload_speedtest(&self) -> impl Future<Item=usize, Error=Error> {
924
925 let mut data = vec![];
926 // generate pseudo random byte sequence
927 for i in 0..1024*1024 {
928 for j in 0..4 {
929 let byte = ((i >> (j<<3))&0xff) as u8;
930 data.push(byte);
931 }
932 }
933
934 let item_len = data.len();
935
936 let repeat = std::sync::Arc::new(AtomicUsize::new(0));
937 let repeat2 = repeat.clone();
938
6ab34afa 939 let (upload_queue, upload_result) = Self::response_queue();
82ab7230
DM
940
941 let start_time = std::time::Instant::now();
942
6ab34afa 943 let h2 = self.h2.clone();
82ab7230
DM
944
945 futures::stream::repeat(data)
946 .take_while(move |_| {
947 repeat.fetch_add(1, Ordering::SeqCst);
948 Ok(start_time.elapsed().as_secs() < 5)
949 })
950 .for_each(move |data| {
6ab34afa 951 let h2 = h2.clone();
82ab7230
DM
952
953 let upload_queue = upload_queue.clone();
954
955 println!("send test data ({} bytes)", data.len());
9af37c8f
DM
956 let request = H2Client::request_builder("localhost", "POST", "speedtest", None).unwrap();
957 h2.send_request(request, Some(bytes::Bytes::from(data)))
82ab7230
DM
958 .and_then(move |response| {
959 upload_queue.send(response)
960 .map(|_| ()).map_err(Error::from)
adec8ea2
DM
961 })
962 })
82ab7230
DM
963 .then(move |result| {
964 println!("RESULT {:?}", result);
965 upload_result.map_err(Error::from).and_then(|upload1_result| {
966 Ok(upload1_result.and(result))
967 })
968 })
969 .flatten()
970 .and_then(move |_| {
971 let repeat = repeat2.load(Ordering::SeqCst);
972 println!("Uploaded {} chunks in {} seconds.", repeat, start_time.elapsed().as_secs());
973 let speed = ((item_len*1000000*(repeat as usize))/(1024*1024))/(start_time.elapsed().as_micros() as usize);
974 if repeat > 0 {
975 println!("Time per request: {} microseconds.", (start_time.elapsed().as_micros())/(repeat as u128));
976 }
977 Ok(speed)
978 })
adec8ea2 979 }
9af37c8f
DM
980}
981
982#[derive(Clone)]
983pub struct H2Client {
984 h2: h2::client::SendRequest<bytes::Bytes>,
985}
986
987impl H2Client {
988
989 pub fn new(h2: h2::client::SendRequest<bytes::Bytes>) -> Self {
990 Self { h2 }
991 }
992
993 pub fn get(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
994 let req = Self::request_builder("localhost", "GET", path, param).unwrap();
995 self.request(req)
996 }
997
998 pub fn put(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
999 let req = Self::request_builder("localhost", "PUT", path, param).unwrap();
1000 self.request(req)
1001 }
1002
1003 pub fn post(&self, path: &str, param: Option<Value>) -> impl Future<Item=Value, Error=Error> {
1004 let req = Self::request_builder("localhost", "POST", path, param).unwrap();
1005 self.request(req)
1006 }
1007
dd066d28
DM
1008 pub fn download<W: Write>(&self, path: &str, param: Option<Value>, output: W) -> impl Future<Item=W, Error=Error> {
1009 let request = Self::request_builder("localhost", "GET", path, param).unwrap();
1010
1011 self.send_request(request, None)
1012 .and_then(move |response| {
1013 response
1014 .map_err(Error::from)
1015 .and_then(move |resp| {
1016 let status = resp.status();
1017 if !status.is_success() {
1018 future::Either::A(
1019 H2Client::h2api_response(resp)
1020 .and_then(|_| { bail!("unknown error"); })
1021 )
1022 } else {
984a7c35
DM
1023 let mut body = resp.into_body();
1024 let mut release_capacity = body.release_capacity().clone();
1025
dd066d28 1026 future::Either::B(
984a7c35 1027 body
dd066d28
DM
1028 .map_err(Error::from)
1029 .fold(output, move |mut acc, chunk| {
984a7c35 1030 let _ = release_capacity.release_capacity(chunk.len());
dd066d28
DM
1031 acc.write_all(&chunk)?;
1032 Ok::<_, Error>(acc)
1033 })
1034 )
1035 }
1036 })
1037 })
1038 }
1039
9af37c8f
DM
1040 pub fn upload(&self, path: &str, param: Option<Value>, data: Vec<u8>) -> impl Future<Item=Value, Error=Error> {
1041 let request = Self::request_builder("localhost", "POST", path, param).unwrap();
1042
9af37c8f
DM
1043 self.h2.clone()
1044 .ready()
1045 .map_err(Error::from)
1046 .and_then(move |mut send_request| {
1047 let (response, stream) = send_request.send_request(request, false).unwrap();
1048 PipeToSendStream::new(bytes::Bytes::from(data), stream)
1049 .and_then(|_| {
1050 response
1051 .map_err(Error::from)
1052 .and_then(Self::h2api_response)
1053 })
1054 })
1055 }
adec8ea2 1056
b57cb264 1057 fn request(
9af37c8f 1058 &self,
b57cb264
DM
1059 request: Request<()>,
1060 ) -> impl Future<Item=Value, Error=Error> {
1061
9af37c8f 1062 self.send_request(request, None)
82ab7230
DM
1063 .and_then(move |response| {
1064 response
1065 .map_err(Error::from)
1066 .and_then(Self::h2api_response)
1067 })
1068 }
1069
1070 fn send_request(
9af37c8f 1071 &self,
82ab7230
DM
1072 request: Request<()>,
1073 data: Option<bytes::Bytes>,
1074 ) -> impl Future<Item=h2::client::ResponseFuture, Error=Error> {
1075
9af37c8f 1076 self.h2.clone()
10130cf4
DM
1077 .ready()
1078 .map_err(Error::from)
1079 .and_then(move |mut send_request| {
82ab7230
DM
1080 if let Some(data) = data {
1081 let (response, stream) = send_request.send_request(request, false).unwrap();
f98ac774 1082 future::Either::A(PipeToSendStream::new(data, stream)
82ab7230
DM
1083 .and_then(move |_| {
1084 future::ok(response)
1085 }))
1086 } else {
1087 let (response, _stream) = send_request.send_request(request, true).unwrap();
1088 future::Either::B(future::ok(response))
1089 }
b57cb264
DM
1090 })
1091 }
1092
1093 fn h2api_response(response: Response<h2::RecvStream>) -> impl Future<Item=Value, Error=Error> {
1094
1095 let status = response.status();
1096
1097 let (_head, mut body) = response.into_parts();
1098
1099 // The `release_capacity` handle allows the caller to manage
1100 // flow control.
1101 //
1102 // Whenever data is received, the caller is responsible for
1103 // releasing capacity back to the server once it has freed
1104 // the data from memory.
1105 let mut release_capacity = body.release_capacity().clone();
1106
1107 body
1108 .map(move |chunk| {
b57cb264
DM
1109 // Let the server send more data.
1110 let _ = release_capacity.release_capacity(chunk.len());
1111 chunk
1112 })
1113 .concat2()
1114 .map_err(Error::from)
1115 .and_then(move |data| {
b57cb264
DM
1116 let text = String::from_utf8(data.to_vec()).unwrap();
1117 if status.is_success() {
1118 if text.len() > 0 {
1119 let mut value: Value = serde_json::from_str(&text)?;
1120 if let Some(map) = value.as_object_mut() {
1121 if let Some(data) = map.remove("data") {
1122 return Ok(data);
1123 }
1124 }
1125 bail!("got result without data property");
1126 } else {
1127 Ok(Value::Null)
1128 }
1129 } else {
1130 bail!("HTTP Error {}: {}", status, text);
1131 }
1132 })
1133 }
1134
eb2bdd1b 1135 // Note: We always encode parameters with the url
b57cb264
DM
1136 pub fn request_builder(server: &str, method: &str, path: &str, data: Option<Value>) -> Result<Request<()>, Error> {
1137 let path = path.trim_matches('/');
b57cb264
DM
1138
1139 if let Some(data) = data {
1140 let query = tools::json_object_to_query(data)?;
eb2bdd1b
DM
1141 // We detected problem with hyper around 6000 characters - seo we try to keep on the safe side
1142 if query.len() > 4096 { bail!("h2 query data too large ({} bytes) - please encode data inside body", query.len()); }
b57cb264 1143 let url: Uri = format!("https://{}:8007/{}?{}", server, path, query).parse()?;
eb2bdd1b 1144 let request = Request::builder()
b57cb264
DM
1145 .method(method)
1146 .uri(url)
1147 .header("User-Agent", "proxmox-backup-client/1.0")
1148 .header(hyper::header::CONTENT_TYPE, "application/x-www-form-urlencoded")
1149 .body(())?;
1150 return Ok(request);
eb2bdd1b
DM
1151 } else {
1152 let url: Uri = format!("https://{}:8007/{}", server, path).parse()?;
1153 let request = Request::builder()
1154 .method(method)
1155 .uri(url)
1156 .header("User-Agent", "proxmox-backup-client/1.0")
1157 .header(hyper::header::CONTENT_TYPE, "application/x-www-form-urlencoded")
1158 .body(())?;
b57cb264 1159
eb2bdd1b
DM
1160 Ok(request)
1161 }
b57cb264
DM
1162 }
1163}