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
//! The client side API
//!
//! To get data, create a connection using the `dial` function or use any quinn
//! connection that was obtained in another way.
//!
//! Create a request describing the data you want to get.
//!
//! Then create a state machine using [fsm::start] and
//! drive it to completion by calling next on each state.
//!
//! For some states you have to provide additional arguments when calling next,
//! or you can choose to finish early.
use std::error::Error;
use std::fmt::{self, Debug};
use std::time::{Duration, Instant};
use crate::util::Hash;
use anyhow::{Context, Result};
use bao_tree::io::fsm::BaoContentItem;
use bao_tree::io::DecodeError;
use bao_tree::ChunkNum;
use bytes::BytesMut;
use quinn::RecvStream;
use range_collections::RangeSet2;
use tracing::{debug, error};
use crate::protocol::{write_lp, AnyGetRequest, RangeSpecSeq};
use crate::util::io::{TrackingReader, TrackingWriter};
use crate::IROH_BLOCK_SIZE;
/// Stats about the transfer.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Stats {
/// The number of bytes written
pub bytes_written: u64,
/// The number of bytes read
pub bytes_read: u64,
/// The time it took to transfer the data
pub elapsed: Duration,
}
impl Stats {
/// Transfer rate in megabits per second
pub fn mbits(&self) -> f64 {
let data_len_bit = self.bytes_read * 8;
data_len_bit as f64 / (1000. * 1000.) / self.elapsed.as_secs_f64()
}
}
/// Finite state machine for get responses
///
#[doc = include_str!("../docs/img/get_machine.drawio.svg")]
pub mod fsm {
use std::result;
use crate::protocol::{read_lp, GetRequest, NonEmptyRequestRangeSpecIter};
use super::*;
use bao_tree::io::fsm::{
ResponseDecoderReading, ResponseDecoderReadingNext, ResponseDecoderStart,
};
use derive_more::From;
use iroh_io::AsyncSliceWriter;
self_cell::self_cell! {
struct RangesIterInner {
owner: RangeSpecSeq,
#[covariant]
dependent: NonEmptyRequestRangeSpecIter,
}
}
/// The entry point of the get response machine
pub fn start(connection: quinn::Connection, request: AnyGetRequest) -> AtInitial {
AtInitial::new(connection, request)
}
/// Owned iterator for the ranges in a request
///
/// We need an owned iterator for a fsm style API, otherwise we would have
/// to drag a lifetime around every single state.
struct RangesIter(RangesIterInner);
impl fmt::Debug for RangesIter {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("RangesIter").finish()
}
}
impl RangesIter {
pub fn new(owner: RangeSpecSeq) -> Self {
Self(RangesIterInner::new(owner, |owner| owner.iter_non_empty()))
}
}
impl Iterator for RangesIter {
type Item = (u64, RangeSet2<ChunkNum>);
fn next(&mut self) -> Option<Self::Item> {
self.0.with_dependent_mut(|_owner, iter| {
iter.next()
.map(|(offset, ranges)| (offset, ranges.to_chunk_ranges()))
})
}
}
/// Initial state of the get response machine
#[derive(Debug)]
pub struct AtInitial {
connection: quinn::Connection,
request: AnyGetRequest,
}
impl AtInitial {
/// Create a new get response
///
/// `connection` is an existing connection
/// `request` is the request to be sent
pub fn new(connection: quinn::Connection, request: AnyGetRequest) -> Self {
Self {
connection,
request,
}
}
/// Initiate a new bidi stream to use for the get response
pub async fn next(self) -> Result<AtConnected, quinn::ConnectionError> {
let start = Instant::now();
let (writer, reader) = self.connection.open_bi().await?;
let reader = TrackingReader::new(reader);
let writer = TrackingWriter::new(writer);
Ok(AtConnected {
start,
reader,
writer,
request: self.request,
})
}
}
/// State of the get response machine after the handshake has been sent
#[derive(Debug)]
pub struct AtConnected {
start: Instant,
reader: TrackingReader<quinn::RecvStream>,
writer: TrackingWriter<quinn::SendStream>,
request: AnyGetRequest,
}
/// Possible next states after the handshake has been sent
#[derive(Debug, From)]
pub enum ConnectedNext {
/// First response is either a collection or a single blob
StartRoot(AtStartRoot),
/// First response is a child
StartChild(AtStartChild),
/// Request is empty
Closing(AtClosing),
}
impl AtConnected {
/// Send the request and move to the next state
///
/// The next state will be either `StartRoot` or `StartChild` depending on whether
/// the request requests part of the collection or not.
///
/// If the request is empty, this can also move directly to `Finished`.
pub async fn next(self) -> Result<ConnectedNext, GetResponseError> {
let Self {
start,
mut reader,
mut writer,
request,
} = self;
// 1. Send Request
{
debug!("sending request");
// wrap the get request in a request so we can serialize it
let request_bytes = postcard::to_stdvec(&request)?;
write_lp(&mut writer, &request_bytes).await?;
}
// 2. Finish writing before expecting a response
let (mut writer, bytes_written) = writer.into_parts();
writer.finish().await?;
// 3. Turn a possible custom request into a get request
let request = match request {
AnyGetRequest::Get(get_request) => {
// we already have a get request, just return it
get_request
}
AnyGetRequest::CustomGet(_) => {
// we sent a custom request, so we need the actual GetRequest from the response
let mut buffer = BytesMut::new();
let response = read_lp(&mut reader, &mut buffer)
.await?
.context("unexpected EOF when reading response to custom get request")?;
postcard::from_bytes::<GetRequest>(&response).context(
"unable to deserialize response to custom get request as get request",
)?
}
};
let hash = request.hash;
let ranges_iter = RangesIter::new(request.ranges);
// this is in a box so we don't have to memcpy it on every state transition
let mut misc = Box::new(Misc {
start,
bytes_written,
ranges_iter,
});
Ok(match misc.ranges_iter.next() {
Some((offset, ranges)) => {
if offset == 0 {
AtStartRoot {
reader,
ranges,
misc,
hash,
}
.into()
} else {
AtStartChild {
reader,
ranges,
misc,
child_offset: offset - 1,
}
.into()
}
}
None => AtClosing::new(misc, reader).into(),
})
}
}
/// State of the get response when we start reading a collection
#[derive(Debug)]
pub struct AtStartRoot {
ranges: RangeSet2<ChunkNum>,
reader: TrackingReader<quinn::RecvStream>,
misc: Box<Misc>,
hash: Hash,
}
/// State of the get response when we start reading a child
#[derive(Debug)]
pub struct AtStartChild {
ranges: RangeSet2<ChunkNum>,
reader: TrackingReader<quinn::RecvStream>,
misc: Box<Misc>,
child_offset: u64,
}
impl AtStartChild {
/// The offset of the child we are currently reading
///
/// This must be used to determine the hash needed to call next.
/// If this is larger than the number of children in the collection,
/// you can call finish to stop reading the response.
pub fn child_offset(&self) -> u64 {
self.child_offset
}
/// The ranges we have requested for the child
pub fn ranges(&self) -> &RangeSet2<ChunkNum> {
&self.ranges
}
/// Go into the next state, reading the header
///
/// This requires passing in the hash of the child for validation
pub fn next(self, hash: Hash) -> AtBlobHeader {
let stream = ResponseDecoderStart::<TrackingReader<RecvStream>>::new(
hash.into(),
self.ranges,
IROH_BLOCK_SIZE,
self.reader,
);
AtBlobHeader {
stream,
misc: self.misc,
}
}
/// Finish the get response without reading further
///
/// This is used if you know that there are no more children from having
/// read the collection, or when you want to stop reading the response
/// early.
pub fn finish(self) -> AtClosing {
AtClosing::new(self.misc, self.reader)
}
}
impl AtStartRoot {
/// The ranges we have requested for the child
pub fn ranges(&self) -> &RangeSet2<ChunkNum> {
&self.ranges
}
/// Go into the next state, reading the header
///
/// For the collection we already know the hash, since it was part of the request
pub fn next(self) -> AtBlobHeader {
let stream = ResponseDecoderStart::new(
self.hash.into(),
self.ranges,
IROH_BLOCK_SIZE,
self.reader,
);
AtBlobHeader {
stream,
misc: self.misc,
}
}
/// Finish the get response without reading further
pub fn finish(self) -> AtClosing {
AtClosing::new(self.misc, self.reader)
}
}
/// State before reading a size header
#[derive(Debug)]
pub struct AtBlobHeader {
stream: ResponseDecoderStart<TrackingReader<RecvStream>>,
misc: Box<Misc>,
}
impl AtBlobHeader {
/// Read the size header, returning it and going into the `Content` state.
pub async fn next(self) -> Result<(AtBlobContent, u64), std::io::Error> {
let (stream, size) = self.stream.next().await?;
Ok((
AtBlobContent {
stream,
misc: self.misc,
},
size,
))
}
/// Drain the response and throw away the result
pub async fn drain(self) -> result::Result<AtEndBlob, DecodeError> {
let (mut content, _size) = self.next().await?;
loop {
match content.next().await {
BlobContentNext::More((content1, Ok(_))) => {
content = content1;
}
BlobContentNext::More((_, Err(e))) => {
return Err(e);
}
BlobContentNext::Done(end) => {
return Ok(end);
}
}
}
}
/// Concatenate the entire response into a vec
///
/// For a request that does not request the complete blob, this will just
/// concatenate the ranges that were requested.
pub async fn concatenate_into_vec(
self,
) -> result::Result<(AtEndBlob, Vec<u8>), DecodeError> {
let (mut curr, size) = self.next().await?;
let mut res = Vec::with_capacity(size as usize);
let done = loop {
match curr.next().await {
BlobContentNext::More((next, data)) => {
if let BaoContentItem::Leaf(leaf) = data? {
res.extend_from_slice(&leaf.data);
}
curr = next;
}
BlobContentNext::Done(done) => {
// we are done with the root blob
break done;
}
}
};
Ok((done, res))
}
/// Write the entire blob to a slice writer
pub async fn write_all<D: AsyncSliceWriter>(
self,
data: D,
) -> result::Result<AtEndBlob, DecodeError> {
self.write_all_with_outboard::<D, D>(None, data).await
}
/// Write the entire blob to a slice writer, optionally also writing
/// an outboard.
pub async fn write_all_with_outboard<D, O>(
self,
mut outboard: Option<O>,
data: D,
) -> result::Result<AtEndBlob, DecodeError>
where
D: AsyncSliceWriter,
O: AsyncSliceWriter,
{
let (content, size) = self.next().await?;
if let Some(o) = outboard.as_mut() {
o.write_at(0, &size.to_le_bytes()).await?;
}
content.write_all_with_outboard(outboard, data).await
}
}
/// State while we are reading content
#[derive(Debug)]
pub struct AtBlobContent {
stream: ResponseDecoderReading<TrackingReader<RecvStream>>,
misc: Box<Misc>,
}
/// The next state after reading a content item
#[derive(Debug, From)]
pub enum BlobContentNext {
/// We expect more content
More((AtBlobContent, result::Result<BaoContentItem, DecodeError>)),
/// We are done with this blob
Done(AtEndBlob),
}
impl AtBlobContent {
/// Read the next item, either content, an error, or the end of the blob
pub async fn next(self) -> BlobContentNext {
match self.stream.next().await {
ResponseDecoderReadingNext::More((stream, res)) => {
let next = Self { stream, ..self };
(next, res).into()
}
ResponseDecoderReadingNext::Done(stream) => AtEndBlob {
stream,
misc: self.misc,
}
.into(),
}
}
/// Write the entire blob to a slice writer
pub async fn write_all<D: AsyncSliceWriter>(
self,
data: D,
) -> result::Result<AtEndBlob, DecodeError> {
self.write_all_with_outboard::<D, D>(None, data).await
}
/// Write the entire blob to a slice writer, optionally also writing
/// an outboard.
pub async fn write_all_with_outboard<D, O>(
self,
mut outboard: Option<O>,
mut data: D,
) -> result::Result<AtEndBlob, DecodeError>
where
D: AsyncSliceWriter,
O: AsyncSliceWriter,
{
let mut content = self;
loop {
match content.next().await {
BlobContentNext::More((content1, item)) => {
content = content1;
match item? {
BaoContentItem::Parent(parent) => {
if let Some(outboard) = outboard.as_mut() {
let offset = parent.node.post_order_offset() * 64 + 8;
let (l_hash, r_hash) = parent.pair;
outboard.write_at(offset, l_hash.as_bytes()).await?;
outboard.write_at(offset + 32, r_hash.as_bytes()).await?;
}
}
BaoContentItem::Leaf(leaf) => {
data.write_bytes_at(leaf.offset.0, leaf.data).await?;
}
}
}
BlobContentNext::Done(end) => {
return Ok(end);
}
}
}
}
}
/// State after we have read all the content for a blob
#[derive(Debug)]
pub struct AtEndBlob {
stream: TrackingReader<RecvStream>,
misc: Box<Misc>,
}
/// The next state after the end of a blob
#[derive(Debug, From)]
pub enum EndBlobNext {
/// Response is expected to have more children
MoreChildren(AtStartChild),
/// No more children expected
Closing(AtClosing),
}
impl AtEndBlob {
/// Read the next child, or finish
pub fn next(mut self) -> EndBlobNext {
if let Some((offset, ranges)) = self.misc.ranges_iter.next() {
AtStartChild {
reader: self.stream,
child_offset: offset - 1,
ranges,
misc: self.misc,
}
.into()
} else {
AtClosing::new(self.misc, self.stream).into()
}
}
}
/// State when finishing the get response
#[derive(Debug)]
pub struct AtClosing {
misc: Box<Misc>,
reader: TrackingReader<RecvStream>,
}
impl AtClosing {
fn new(misc: Box<Misc>, reader: TrackingReader<RecvStream>) -> Self {
Self { misc, reader }
}
/// Finish the get response, returning statistics
pub async fn next(self) -> result::Result<Stats, std::io::Error> {
// Shut down the stream
let (mut reader, bytes_read) = self.reader.into_parts();
if let Some(chunk) = reader.read_chunk(8, false).await? {
reader.stop(0u8.into()).ok();
error!("Received unexpected data from the provider: {chunk:?}");
}
Ok(Stats {
elapsed: self.misc.start.elapsed(),
bytes_written: self.misc.bytes_written,
bytes_read,
})
}
}
/// Stuff we need to hold on to while going through the machine states
#[derive(Debug)]
struct Misc {
/// start time for statistics
start: Instant,
/// bytes written for statistics
bytes_written: u64,
/// iterator over the ranges of the collection and the children
ranges_iter: RangesIter,
}
}
/// Error when processing a response
#[derive(thiserror::Error, Debug)]
pub enum GetResponseError {
/// Error when opening a stream
#[error("connection: {0}")]
Connection(#[from] quinn::ConnectionError),
/// Error when writing the handshake or request to the stream
#[error("write: {0}")]
Write(#[from] quinn::WriteError),
/// Error when reading from the stream
#[error("read: {0}")]
Read(#[from] quinn::ReadError),
/// Error when decoding, e.g. hash mismatch
#[error("decode: {0}")]
Decode(bao_tree::io::DecodeError),
/// A generic error
#[error("generic: {0}")]
Generic(anyhow::Error),
}
impl From<postcard::Error> for GetResponseError {
fn from(cause: postcard::Error) -> Self {
Self::Generic(cause.into())
}
}
impl From<bao_tree::io::DecodeError> for GetResponseError {
fn from(cause: bao_tree::io::DecodeError) -> Self {
match cause {
bao_tree::io::DecodeError::Io(cause) => {
// try to downcast to specific quinn errors
if let Some(source) = cause.source() {
if let Some(error) = source.downcast_ref::<quinn::ConnectionError>() {
return Self::Connection(error.clone());
}
if let Some(error) = source.downcast_ref::<quinn::ReadError>() {
return Self::Read(error.clone());
}
if let Some(error) = source.downcast_ref::<quinn::WriteError>() {
return Self::Write(error.clone());
}
}
Self::Generic(cause.into())
}
_ => Self::Decode(cause),
}
}
}
impl From<anyhow::Error> for GetResponseError {
fn from(cause: anyhow::Error) -> Self {
Self::Generic(cause)
}
}
impl From<GetResponseError> for std::io::Error {
fn from(cause: GetResponseError) -> Self {
Self::new(std::io::ErrorKind::Other, cause)
}
}