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
//! The server side API
use std::{fmt::Debug, sync::Arc, time::Duration};
use anyhow::{Context, Result};
use bao_tree::io::{
fsm::{encode_ranges_validated, Outboard},
EncodeError,
};
use futures_lite::future::Boxed as BoxFuture;
use iroh_base::rpc::RpcError;
use iroh_io::{
stats::{SliceReaderStats, StreamWriterStats, TrackingSliceReader, TrackingStreamWriter},
AsyncSliceReader, AsyncStreamWriter, TokioStreamWriter,
};
use iroh_net::endpoint::{self, RecvStream, SendStream};
use serde::{Deserialize, Serialize};
use tracing::{debug, debug_span, info, trace, warn};
use tracing_futures::Instrument;
use crate::{
hashseq::parse_hash_seq,
protocol::{GetRequest, RangeSpec, Request},
store::*,
util::{local_pool::LocalPoolHandle, Tag},
BlobFormat, Hash,
};
/// Events emitted by the provider informing about the current status.
#[derive(Debug, Clone)]
pub enum Event {
/// A new collection or tagged blob has been added
TaggedBlobAdded {
/// The hash of the added data
hash: Hash,
/// The format of the added data
format: BlobFormat,
/// The tag of the added data
tag: Tag,
},
/// A new client connected to the node.
ClientConnected {
/// An unique connection id.
connection_id: u64,
},
/// A request was received from a client.
GetRequestReceived {
/// An unique connection id.
connection_id: u64,
/// An identifier uniquely identifying this transfer request.
request_id: u64,
/// The hash for which the client wants to receive data.
hash: Hash,
},
/// A sequence of hashes has been found and is being transferred.
TransferHashSeqStarted {
/// An unique connection id.
connection_id: u64,
/// An identifier uniquely identifying this transfer request.
request_id: u64,
/// The number of blobs in the sequence.
num_blobs: u64,
},
/// A chunk of a blob was transferred.
///
/// These events will be sent with try_send, so you can not assume that you
/// will receive all of them.
TransferProgress {
/// An unique connection id.
connection_id: u64,
/// An identifier uniquely identifying this transfer request.
request_id: u64,
/// The hash for which we are transferring data.
hash: Hash,
/// Offset up to which we have transferred data.
end_offset: u64,
},
/// A blob in a sequence was transferred.
TransferBlobCompleted {
/// An unique connection id.
connection_id: u64,
/// An identifier uniquely identifying this transfer request.
request_id: u64,
/// The hash of the blob
hash: Hash,
/// The index of the blob in the sequence.
index: u64,
/// The size of the blob transferred.
size: u64,
},
/// A request was completed and the data was sent to the client.
TransferCompleted {
/// An unique connection id.
connection_id: u64,
/// An identifier uniquely identifying this transfer request.
request_id: u64,
/// statistics about the transfer
stats: Box<TransferStats>,
},
/// A request was aborted because the client disconnected.
TransferAborted {
/// The quic connection id.
connection_id: u64,
/// An identifier uniquely identifying this request.
request_id: u64,
/// statistics about the transfer. This is None if the transfer
/// was aborted before any data was sent.
stats: Option<Box<TransferStats>>,
},
}
/// The stats for a transfer of a collection or blob.
#[derive(Debug, Clone, Copy, Default)]
pub struct TransferStats {
/// Stats for sending to the client.
pub send: StreamWriterStats,
/// Stats for reading from disk.
pub read: SliceReaderStats,
/// The total duration of the transfer.
pub duration: Duration,
}
/// Progress updates for the add operation.
#[derive(Debug, Serialize, Deserialize)]
pub enum AddProgress {
/// An item was found with name `name`, from now on referred to via `id`
Found {
/// A new unique id for this entry.
id: u64,
/// The name of the entry.
name: String,
/// The size of the entry in bytes.
size: u64,
},
/// We got progress ingesting item `id`.
Progress {
/// The unique id of the entry.
id: u64,
/// The offset of the progress, in bytes.
offset: u64,
},
/// We are done with `id`, and the hash is `hash`.
Done {
/// The unique id of the entry.
id: u64,
/// The hash of the entry.
hash: Hash,
},
/// We are done with the whole operation.
AllDone {
/// The hash of the created data.
hash: Hash,
/// The format of the added data.
format: BlobFormat,
/// The tag of the added data.
tag: Tag,
},
/// We got an error and need to abort.
///
/// This will be the last message in the stream.
Abort(RpcError),
}
/// Progress updates for the batch add operation.
#[derive(Debug, Serialize, Deserialize)]
pub enum BatchAddPathProgress {
/// An item was found with the given size
Found {
/// The size of the entry in bytes.
size: u64,
},
/// We got progress ingesting the item.
Progress {
/// The offset of the progress, in bytes.
offset: u64,
},
/// We are done, and the hash is `hash`.
Done {
/// The hash of the entry.
hash: Hash,
},
/// We got an error and need to abort.
///
/// This will be the last message in the stream.
Abort(RpcError),
}
/// Read the request from the getter.
///
/// Will fail if there is an error while reading, if the reader
/// contains more data than the Request, or if no valid request is sent.
///
/// When successful, the buffer is empty after this function call.
pub async fn read_request(mut reader: RecvStream) -> Result<Request> {
let payload = reader
.read_to_end(crate::protocol::MAX_MESSAGE_SIZE)
.await?;
let request: Request = postcard::from_bytes(&payload)?;
Ok(request)
}
/// Transfers a blob or hash sequence to the client.
///
/// The difference to [`handle_get`] is that we already have a reader for the
/// root blob and outboard.
///
/// First, it transfers the root blob. Then, if needed, it sequentially
/// transfers each individual blob data.
///
/// The transfer fail if there is an error writing to the writer or reading from
/// the database.
///
/// If a blob from the hash sequence cannot be found in the database, the
/// transfer will return with [`SentStatus::NotFound`]. If the transfer completes
/// successfully, it will return with [`SentStatus::Sent`].
pub(crate) async fn transfer_hash_seq<D: Map>(
request: GetRequest,
// Store from which to fetch blobs.
db: &D,
// Response writer, containing the quinn stream.
writer: &mut ResponseWriter,
// the collection to transfer
mut outboard: impl Outboard,
mut data: impl AsyncSliceReader,
stats: &mut TransferStats,
) -> Result<SentStatus> {
let hash = request.hash;
let events = writer.events.clone();
let request_id = writer.request_id();
let connection_id = writer.connection_id();
// if the request is just for the root, we don't need to deserialize the collection
let just_root = matches!(request.ranges.as_single(), Some((0, _)));
let mut c = if !just_root {
// parse the hash seq
let (stream, num_blobs) = parse_hash_seq(&mut data).await?;
writer
.events
.send(|| Event::TransferHashSeqStarted {
connection_id: writer.connection_id(),
request_id: writer.request_id(),
num_blobs,
})
.await;
Some(stream)
} else {
None
};
let mk_progress = |end_offset| Event::TransferProgress {
connection_id,
request_id,
hash,
end_offset,
};
let mut prev = 0;
for (offset, ranges) in request.ranges.iter_non_empty() {
// create a tracking writer so we can get some stats for writing
let mut tw = writer.tracking_writer();
if offset == 0 {
debug!("writing ranges '{:?}' of sequence {}", ranges, hash);
// wrap the data reader in a tracking reader so we can get some stats for reading
let mut tracking_reader = TrackingSliceReader::new(&mut data);
let mut sending_reader =
SendingSliceReader::new(&mut tracking_reader, &events, mk_progress);
// send the root
tw.write(outboard.tree().size().to_le_bytes().as_slice())
.await?;
encode_ranges_validated(
&mut sending_reader,
&mut outboard,
&ranges.to_chunk_ranges(),
&mut tw,
)
.await?;
stats.read += tracking_reader.stats();
stats.send += tw.stats();
debug!(
"finished writing ranges '{:?}' of collection {}",
ranges, hash
);
} else {
let c = c.as_mut().context("collection parser not available")?;
debug!("wrtiting ranges '{:?}' of child {}", ranges, offset);
// skip to the next blob if there is a gap
if prev < offset - 1 {
c.skip(offset - prev - 1).await?;
}
if let Some(hash) = c.next().await? {
tokio::task::yield_now().await;
let (status, size, blob_read_stats) =
send_blob(db, hash, ranges, &mut tw, events.clone(), mk_progress).await?;
stats.send += tw.stats();
stats.read += blob_read_stats;
if SentStatus::NotFound == status {
writer.inner.finish()?;
return Ok(status);
}
writer
.events
.send(|| Event::TransferBlobCompleted {
connection_id: writer.connection_id(),
request_id: writer.request_id(),
hash,
index: offset - 1,
size,
})
.await;
} else {
// nothing more we can send
break;
}
prev = offset;
}
}
debug!("done writing");
Ok(SentStatus::Sent)
}
struct SendingSliceReader<'a, R, F> {
inner: R,
sender: &'a EventSender,
make_event: F,
}
impl<'a, R: AsyncSliceReader, F: Fn(u64) -> Event> SendingSliceReader<'a, R, F> {
fn new(inner: R, sender: &'a EventSender, make_event: F) -> Self {
Self {
inner,
sender,
make_event,
}
}
}
impl<'a, R: AsyncSliceReader, F: Fn(u64) -> Event> AsyncSliceReader
for SendingSliceReader<'a, R, F>
{
async fn read_at(&mut self, offset: u64, len: usize) -> std::io::Result<bytes::Bytes> {
let res = self.inner.read_at(offset, len).await;
if let Ok(res) = res.as_ref() {
let end_offset = offset + res.len() as u64;
self.sender.try_send(|| (self.make_event)(end_offset));
}
res
}
async fn size(&mut self) -> std::io::Result<u64> {
self.inner.size().await
}
}
/// Trait for sending blob events.
pub trait CustomEventSender: std::fmt::Debug + Sync + Send + 'static {
/// Send an event and wait for it to be sent.
fn send(&self, event: Event) -> BoxFuture<()>;
/// Try to send an event.
fn try_send(&self, event: Event);
}
/// A sender for events related to blob transfers.
///
/// The sender is disabled by default.
#[derive(Debug, Clone, Default)]
pub struct EventSender {
inner: Option<Arc<dyn CustomEventSender>>,
}
impl<T: CustomEventSender> From<T> for EventSender {
fn from(inner: T) -> Self {
Self {
inner: Some(Arc::new(inner)),
}
}
}
impl EventSender {
/// Create a new event sender.
pub fn new(inner: Option<Arc<dyn CustomEventSender>>) -> Self {
Self { inner }
}
/// Send an event.
///
/// If the inner sender is not set, the function to produce the event will
/// not be called. So any cost associated with gathering information for the
/// event will not be incurred.
pub async fn send(&self, event: impl FnOnce() -> Event) {
if let Some(inner) = &self.inner {
let event = event();
inner.as_ref().send(event).await;
}
}
/// Try to send an event.
///
/// This will just drop the event if it can not be sent immediately. So it
/// is only appropriate for events that are not critical, such as
/// self-contained progress updates.
pub fn try_send(&self, event: impl FnOnce() -> Event) {
if let Some(inner) = &self.inner {
let event = event();
inner.as_ref().try_send(event);
}
}
}
/// Handle a single connection.
pub async fn handle_connection<D: Map>(
connection: endpoint::Connection,
db: D,
events: EventSender,
rt: LocalPoolHandle,
) {
let remote_addr = connection.remote_address();
let connection_id = connection.stable_id() as u64;
let span = debug_span!("connection", connection_id, %remote_addr);
async move {
while let Ok((writer, reader)) = connection.accept_bi().await {
// The stream ID index is used to identify this request. Requests only arrive in
// bi-directional RecvStreams initiated by the client, so this uniquely identifies them.
let request_id = reader.id().index();
let span = debug_span!("stream", stream_id = %request_id);
let writer = ResponseWriter {
connection_id,
events: events.clone(),
inner: writer,
};
events
.send(|| Event::ClientConnected { connection_id })
.await;
let db = db.clone();
rt.spawn_detached(|| {
async move {
if let Err(err) = handle_stream(db, reader, writer).await {
warn!("error: {err:#?}",);
}
}
.instrument(span)
});
}
}
.instrument(span)
.await
}
async fn handle_stream<D: Map>(db: D, reader: RecvStream, writer: ResponseWriter) -> Result<()> {
// 1. Decode the request.
debug!("reading request");
let request = match read_request(reader).await {
Ok(r) => r,
Err(e) => {
writer.notify_transfer_aborted(None).await;
return Err(e);
}
};
match request {
Request::Get(request) => handle_get(db, request, writer).await,
}
}
/// Handle a single get request.
///
/// Requires the request, a database, and a writer.
pub async fn handle_get<D: Map>(
db: D,
request: GetRequest,
mut writer: ResponseWriter,
) -> Result<()> {
let hash = request.hash;
debug!(%hash, "received request");
writer
.events
.send(|| Event::GetRequestReceived {
hash,
connection_id: writer.connection_id(),
request_id: writer.request_id(),
})
.await;
// 4. Attempt to find hash
match db.get(&hash).await? {
// Collection or blob request
Some(entry) => {
let mut stats = Box::<TransferStats>::default();
let t0 = std::time::Instant::now();
// 5. Transfer data!
let res = transfer_hash_seq(
request,
&db,
&mut writer,
entry.outboard().await?,
entry.data_reader().await?,
&mut stats,
)
.await;
stats.duration = t0.elapsed();
match res {
Ok(SentStatus::Sent) => {
writer.notify_transfer_completed(&hash, stats).await;
}
Ok(SentStatus::NotFound) => {
writer.notify_transfer_aborted(Some(stats)).await;
}
Err(e) => {
writer.notify_transfer_aborted(Some(stats)).await;
return Err(e);
}
}
debug!("finished response");
}
None => {
debug!("not found {}", hash);
writer.notify_transfer_aborted(None).await;
writer.inner.finish()?;
}
};
Ok(())
}
/// A helper struct that combines a quinn::SendStream with auxiliary information
#[derive(Debug)]
pub struct ResponseWriter {
inner: SendStream,
events: EventSender,
connection_id: u64,
}
impl ResponseWriter {
fn tracking_writer(&mut self) -> TrackingStreamWriter<TokioStreamWriter<&mut SendStream>> {
TrackingStreamWriter::new(TokioStreamWriter(&mut self.inner))
}
fn connection_id(&self) -> u64 {
self.connection_id
}
fn request_id(&self) -> u64 {
self.inner.id().index()
}
fn print_stats(stats: &TransferStats) {
let send = stats.send.total();
let read = stats.read.total();
let total_sent_bytes = send.size;
let send_duration = send.stats.duration;
let read_duration = read.stats.duration;
let total_duration = stats.duration;
let other_duration = total_duration
.saturating_sub(send_duration)
.saturating_sub(read_duration);
let avg_send_size = total_sent_bytes.checked_div(send.stats.count).unwrap_or(0);
info!(
"sent {} bytes in {}s",
total_sent_bytes,
total_duration.as_secs_f64()
);
debug!(
"{}s sending, {}s reading, {}s other",
send_duration.as_secs_f64(),
read_duration.as_secs_f64(),
other_duration.as_secs_f64()
);
trace!(
"send_count: {} avg_send_size {}",
send.stats.count,
avg_send_size,
)
}
async fn notify_transfer_completed(&self, hash: &Hash, stats: Box<TransferStats>) {
info!("transfer completed for {}", hash);
Self::print_stats(&stats);
self.events
.send(move || Event::TransferCompleted {
connection_id: self.connection_id(),
request_id: self.request_id(),
stats,
})
.await;
}
async fn notify_transfer_aborted(&self, stats: Option<Box<TransferStats>>) {
if let Some(stats) = &stats {
Self::print_stats(stats);
};
self.events
.send(move || Event::TransferAborted {
connection_id: self.connection_id(),
request_id: self.request_id(),
stats,
})
.await;
}
}
/// Status of a send operation
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum SentStatus {
/// The requested data was sent
Sent,
/// The requested data was not found
NotFound,
}
/// Send a blob to the client.
pub async fn send_blob<D: Map, W: AsyncStreamWriter>(
db: &D,
hash: Hash,
ranges: &RangeSpec,
mut writer: W,
events: EventSender,
mk_progress: impl Fn(u64) -> Event,
) -> Result<(SentStatus, u64, SliceReaderStats)> {
match db.get(&hash).await? {
Some(entry) => {
let outboard = entry.outboard().await?;
let size = outboard.tree().size();
let mut file_reader = TrackingSliceReader::new(entry.data_reader().await?);
let mut sending_reader =
SendingSliceReader::new(&mut file_reader, &events, mk_progress);
writer.write(size.to_le_bytes().as_slice()).await?;
encode_ranges_validated(
&mut sending_reader,
outboard,
&ranges.to_chunk_ranges(),
writer,
)
.await
.map_err(|e| encode_error_to_anyhow(e, &hash))?;
Ok((SentStatus::Sent, size, file_reader.stats()))
}
_ => {
debug!("blob not found {}", hash.to_hex());
Ok((SentStatus::NotFound, 0, SliceReaderStats::default()))
}
}
}
fn encode_error_to_anyhow(err: EncodeError, hash: &Hash) -> anyhow::Error {
match err {
EncodeError::LeafHashMismatch(x) => anyhow::Error::from(EncodeError::LeafHashMismatch(x))
.context(format!("hash {} offset {}", hash.to_hex(), x.to_bytes())),
EncodeError::ParentHashMismatch(n) => {
let r = n.chunk_range();
anyhow::Error::from(EncodeError::ParentHashMismatch(n)).context(format!(
"hash {} range {}..{}",
hash.to_hex(),
r.start.to_bytes(),
r.end.to_bytes()
))
}
e => anyhow::Error::from(e).context(format!("hash {}", hash.to_hex())),
}
}