blobfs/mock.rs
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
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! Mock implementation of blobfs for blobfs::Client.
use fidl::endpoints::RequestStream as _;
use fuchsia_hash::Hash;
use futures::{Future, StreamExt as _, TryStreamExt as _};
use std::cmp::min;
use std::collections::HashSet;
use std::convert::TryInto as _;
use zx::{self as zx, AsHandleRef as _, HandleBased as _, Status};
use {fidl_fuchsia_io as fio, fuchsia_async as fasync};
/// A testing server implementation of /blob.
///
/// Mock does not handle requests until instructed to do so.
pub struct Mock {
pub(super) stream: fio::DirectoryRequestStream,
}
impl Mock {
/// Consume the next directory request, verifying it is intended to read the blob identified
/// by `merkle`. Returns a `Blob` representing the open blob file.
///
/// # Panics
///
/// Panics on error or assertion violation (unexpected requests or a mismatched open call)
pub async fn expect_open_blob(&mut self, merkle: Hash) -> Blob {
match self.stream.next().await {
Some(Ok(fio::DirectoryRequest::Open {
flags,
mode: _,
path,
object,
control_handle: _,
})) => {
assert_eq!(path, merkle.to_string());
FlagSet::OPEN_FOR_READ.verify(flags);
let stream = object.into_stream().cast_stream();
Blob { stream }
}
Some(Ok(fio::DirectoryRequest::Open3 {
path,
flags,
options: _,
object,
control_handle: _,
})) => {
assert_eq!(path, merkle.to_string());
assert!(flags.contains(fio::PERM_READABLE));
assert!(!flags.intersects(fio::Flags::PERM_WRITE | fio::Flags::FLAG_MAYBE_CREATE));
let stream =
fio::NodeRequestStream::from_channel(fasync::Channel::from_channel(object))
.cast_stream();
Blob { stream }
}
other => panic!("unexpected request: {other:?}"),
}
}
/// Consume the next directory request, verifying it is intended to create the blob identified
/// by `merkle`. Returns a `Blob` representing the open blob file.
///
/// # Panics
///
/// Panics on error or assertion violation (unexpected requests or a mismatched open call)
pub async fn expect_create_blob(&mut self, merkle: Hash) -> Blob {
match self.stream.next().await {
Some(Ok(fio::DirectoryRequest::Open {
flags,
mode: _,
path,
object,
control_handle: _,
})) => {
FlagSet::OPEN_FOR_WRITE.verify(flags);
assert_eq!(path, delivery_blob::delivery_blob_path(merkle));
let stream = object.into_stream().cast_stream();
Blob { stream }
}
Some(Ok(fio::DirectoryRequest::Open3 {
path,
flags,
options: _,
object,
control_handle: _,
})) => {
assert!(flags.contains(fio::PERM_WRITABLE | fio::Flags::FLAG_MAYBE_CREATE));
assert_eq!(path, delivery_blob::delivery_blob_path(merkle));
let stream =
fio::NodeRequestStream::from_channel(fasync::Channel::from_channel(object))
.cast_stream();
Blob { stream }
}
other => panic!("unexpected request: {other:?}"),
}
}
async fn handle_rewind(&mut self) {
match self.stream.next().await {
Some(Ok(fio::DirectoryRequest::Rewind { responder })) => {
responder.send(Status::OK.into_raw()).unwrap();
}
other => panic!("unexpected request: {other:?}"),
}
}
/// Consume directory requests, verifying they are requests to read directory entries. Respond
/// with dirents constructed from the given entries.
///
/// # Panics
///
/// Panics on error or assertion violation (unexpected requests or not all entries are read)
pub async fn expect_readdir(&mut self, entries: impl Iterator<Item = Hash>) {
// fuchsia_fs::directory starts by resetting the directory channel's readdir position.
self.handle_rewind().await;
const NAME_LEN: usize = 64;
#[repr(C, packed)]
struct Dirent {
ino: u64,
size: u8,
kind: u8,
name: [u8; NAME_LEN],
}
impl Dirent {
fn as_bytes(&self) -> &'_ [u8] {
let start = self as *const Self as *const u8;
// Safe because the FIDL wire format for directory entries is
// defined to be the C packed struct representation used here.
unsafe { std::slice::from_raw_parts(start, std::mem::size_of::<Self>()) }
}
}
let mut entries_iter = entries.map(|hash| Dirent {
ino: fio::INO_UNKNOWN,
size: NAME_LEN as u8,
kind: fio::DirentType::File.into_primitive(),
name: hash.to_string().as_bytes().try_into().unwrap(),
});
loop {
match self.stream.try_next().await.unwrap() {
Some(fio::DirectoryRequest::ReadDirents { max_bytes, responder }) => {
let max_bytes = max_bytes as usize;
assert!(max_bytes >= std::mem::size_of::<Dirent>());
let mut buf = vec![];
while buf.len() + std::mem::size_of::<Dirent>() <= max_bytes {
match entries_iter.next() {
Some(need) => {
buf.extend(need.as_bytes());
}
None => break,
}
}
responder.send(Status::OK.into_raw(), &buf).unwrap();
// Finish after providing an empty chunk.
if buf.is_empty() {
break;
}
}
Some(other) => panic!("unexpected request: {other:?}"),
None => panic!("unexpected stream termination"),
}
}
}
/// Consume N directory requests, verifying they are intended to determine whether the blobs
/// specified `readable` and `missing` are readable or not, responding to the check based on
/// which collection the hash is in.
///
/// # Panics
///
/// Panics on error or assertion violation (unexpected requests, request for unspecified blob)
pub async fn expect_readable_missing_checks(&mut self, readable: &[Hash], missing: &[Hash]) {
let mut readable = readable.iter().copied().collect::<HashSet<_>>();
let mut missing = missing.iter().copied().collect::<HashSet<_>>();
while !(readable.is_empty() && missing.is_empty()) {
match self.stream.next().await {
Some(Ok(fio::DirectoryRequest::Open {
flags,
mode: _,
path,
object,
control_handle: _,
})) => {
FlagSet::OPEN_FOR_READ.verify(flags);
let path: Hash = path.parse().unwrap();
let stream = object.into_stream().cast_stream();
let blob = Blob { stream };
if readable.remove(&path) {
blob.succeed_open_with_blob_readable().await;
} else if missing.remove(&path) {
blob.fail_open_with_not_found();
} else {
panic!("Unexpected blob existance check for {path}");
}
}
Some(Ok(fio::DirectoryRequest::Open3 {
path,
flags,
options: _,
object,
control_handle: _,
})) => {
assert!(flags.contains(fio::PERM_READABLE));
assert!(
!flags.intersects(fio::Flags::PERM_WRITE | fio::Flags::FLAG_MAYBE_CREATE)
);
let path: Hash = path.parse().unwrap();
let stream =
fio::NodeRequestStream::from_channel(fasync::Channel::from_channel(object))
.cast_stream();
let blob = Blob { stream };
if readable.remove(&path) {
blob.succeed_open_with_blob_readable().await;
} else if missing.remove(&path) {
blob.fail_open_with_not_found();
} else {
panic!("Unexpected blob existance check for {path}");
}
}
other => panic!("unexpected request: {other:?}"),
}
}
}
/// Expects and handles a call to [`Client::filter_to_missing_blobs`].
/// Verifies the call intends to determine whether the blobs specified in `readable` and
/// `missing` are readable or not, responding to the check based on which collection the hash is
/// in.
///
/// # Panics
///
/// Panics on error or assertion violation (unexpected requests, request for unspecified blob)
pub async fn expect_filter_to_missing_blobs_with_readable_missing_ids(
&mut self,
readable: &[Hash],
missing: &[Hash],
) {
self.expect_readable_missing_checks(readable, missing).await;
}
/// Asserts that the request stream closes without any further requests.
///
/// # Panics
///
/// Panics on error
pub async fn expect_done(mut self) {
match self.stream.next().await {
None => {}
Some(request) => panic!("unexpected request: {request:?}"),
}
}
}
/// A testing server implementation of an open /blob/<merkle> file.
///
/// Blob does not send the OnOpen event or handle requests until instructed to do so.
pub struct Blob {
stream: fio::FileRequestStream,
}
impl Blob {
fn send_on_open_with_file_signals(&mut self, status: Status, signals: zx::Signals) {
let event = fidl::Event::create();
event.signal_handle(zx::Signals::NONE, signals).unwrap();
let info =
fio::NodeInfoDeprecated::File(fio::FileObject { event: Some(event), stream: None });
let () = self.stream.control_handle().send_on_open_(status.into_raw(), Some(info)).unwrap();
}
fn send_on_open(&mut self, status: Status) {
self.send_on_open_with_file_signals(status, zx::Signals::NONE);
}
fn send_on_open_with_readable(&mut self, status: Status) {
// Send USER_0 signal to indicate that the blob is available.
self.send_on_open_with_file_signals(status, zx::Signals::USER_0);
}
fn fail_open_with_error(mut self, status: Status) {
assert_ne!(status, Status::OK);
self.send_on_open(status);
}
/// Fail the open request with an error indicating the blob already exists.
///
/// # Panics
///
/// Panics on error
pub fn fail_open_with_already_exists(self) {
self.fail_open_with_error(Status::ACCESS_DENIED);
}
/// Fail the open request with an error indicating the blob does not exist.
///
/// # Panics
///
/// Panics on error
pub fn fail_open_with_not_found(self) {
self.fail_open_with_error(Status::NOT_FOUND);
}
/// Fail the open request with a generic IO error.
///
/// # Panics
///
/// Panics on error
pub fn fail_open_with_io_error(self) {
self.fail_open_with_error(Status::IO);
}
/// Succeeds the open request, but indicate the blob is not yet readable by not asserting the
/// USER_0 signal on the file event handle, then asserts that the connection to the blob is
/// closed.
///
/// # Panics
///
/// Panics on error
pub async fn fail_open_with_not_readable(mut self) {
self.send_on_open(Status::OK);
self.expect_done().await;
}
/// Succeeds the open request, indicating that the blob is readable, then asserts that the
/// connection to the blob is closed.
///
/// # Panics
///
/// Panics on error
pub async fn succeed_open_with_blob_readable(mut self) {
self.send_on_open_with_readable(Status::OK);
self.expect_done().await;
}
/// Succeeds the open request, then verifies the blob is immediately closed (possibly after
/// handling a single Close request).
///
/// # Panics
///
/// Panics on error
pub async fn expect_close(mut self) {
self.send_on_open_with_readable(Status::OK);
match self.stream.next().await {
None => {}
Some(Ok(fio::FileRequest::Close { responder })) => {
let _ = responder.send(Ok(()));
self.expect_done().await;
}
Some(other) => panic!("unexpected request: {other:?}"),
}
}
/// Asserts that the request stream closes without any further requests.
///
/// # Panics
///
/// Panics on error
pub async fn expect_done(mut self) {
match self.stream.next().await {
None => {}
Some(request) => panic!("unexpected request: {request:?}"),
}
}
async fn handle_read(&mut self, data: &[u8]) -> usize {
match self.stream.next().await {
Some(Ok(fio::FileRequest::Read { count, responder })) => {
let count = min(count.try_into().unwrap(), data.len());
responder.send(Ok(&data[..count])).unwrap();
count
}
other => panic!("unexpected request: {other:?}"),
}
}
/// Succeeds the open request, then handle read request with the given blob data.
///
/// # Panics
///
/// Panics on error
pub async fn expect_read(mut self, blob: &[u8]) {
self.send_on_open_with_readable(Status::OK);
let mut rest = blob;
while !rest.is_empty() {
let count = self.handle_read(rest).await;
rest = &rest[count..];
}
// Handle one extra request with empty buffer to signal EOF.
self.handle_read(rest).await;
match self.stream.next().await {
None => {}
Some(Ok(fio::FileRequest::Close { responder })) => {
let _ = responder.send(Ok(()));
}
Some(other) => panic!("unexpected request: {other:?}"),
}
}
/// Succeeds the open request. Then handles get_attr, read, read_at, and possibly a final close
/// requests with the given blob data.
///
/// # Panics
///
/// Panics on error
pub async fn serve_contents(mut self, data: &[u8]) {
self.send_on_open_with_readable(Status::OK);
let mut pos: usize = 0;
loop {
match self.stream.next().await {
Some(Ok(fio::FileRequest::Read { count, responder })) => {
let avail = data.len() - pos;
let count = min(count.try_into().unwrap(), avail);
responder.send(Ok(&data[pos..pos + count])).unwrap();
pos += count;
}
Some(Ok(fio::FileRequest::ReadAt { count, offset, responder })) => {
let pos: usize = offset.try_into().unwrap();
let avail = data.len() - pos;
let count = min(count.try_into().unwrap(), avail);
responder.send(Ok(&data[pos..pos + count])).unwrap();
}
Some(Ok(fio::FileRequest::GetAttr { responder })) => {
let mut attr = fio::NodeAttributes {
mode: 0,
id: 0,
content_size: 0,
storage_size: 0,
link_count: 0,
creation_time: 0,
modification_time: 0,
};
attr.content_size = data.len().try_into().unwrap();
responder.send(Status::OK.into_raw(), &attr).unwrap();
}
Some(Ok(fio::FileRequest::Close { responder })) => {
let _ = responder.send(Ok(()));
return;
}
Some(Ok(fio::FileRequest::GetBackingMemory { flags, responder })) => {
assert!(flags.contains(fio::VmoFlags::READ));
assert!(!flags.contains(fio::VmoFlags::WRITE));
assert!(!flags.contains(fio::VmoFlags::EXECUTE));
let vmo = zx::Vmo::create(data.len() as u64).unwrap();
vmo.write(data, 0).unwrap();
let vmo = vmo
.replace_handle(
zx::Rights::READ
| zx::Rights::BASIC
| zx::Rights::MAP
| zx::Rights::GET_PROPERTY,
)
.unwrap();
responder.send(Ok(vmo)).unwrap();
}
None => {
return;
}
other => panic!("unexpected request: {other:?}"),
}
}
}
async fn handle_truncate(&mut self, status: Status) -> u64 {
match self.stream.next().await {
Some(Ok(fio::FileRequest::Resize { length, responder })) => {
responder
.send(if status == Status::OK { Ok(()) } else { Err(status.into_raw()) })
.unwrap();
length
}
other => panic!("unexpected request: {other:?}"),
}
}
async fn expect_truncate(&mut self) -> u64 {
self.handle_truncate(Status::OK).await
}
async fn handle_write(&mut self, status: Status) -> Vec<u8> {
match self.stream.next().await {
Some(Ok(fio::FileRequest::Write { data, responder })) => {
responder
.send(if status == Status::OK {
Ok(data.len() as u64)
} else {
Err(status.into_raw())
})
.unwrap();
data
}
other => panic!("unexpected request: {other:?}"),
}
}
async fn fail_write_with_status(mut self, status: Status) {
self.send_on_open(Status::OK);
let length = self.expect_truncate().await;
// divide rounding up
let expected_write_calls = length.div_ceil(fio::MAX_BUF);
for _ in 0..(expected_write_calls - 1) {
self.handle_write(Status::OK).await;
}
self.handle_write(status).await;
}
/// Succeeds the open request, consumes the truncate request, the initial write calls, then
/// fails the final write indicating the written data was corrupt.
///
/// # Panics
///
/// Panics on error
pub async fn fail_write_with_corrupt(self) {
self.fail_write_with_status(Status::IO_DATA_INTEGRITY).await
}
/// Succeeds the open request, then returns a future that, when awaited, verifies the blob is
/// truncated, written, and closed with the given `expected` payload.
///
/// # Panics
///
/// Panics on error
pub fn expect_payload(mut self, expected: &[u8]) -> impl Future<Output = ()> + '_ {
self.send_on_open(Status::OK);
async move {
assert_eq!(self.expect_truncate().await, expected.len() as u64);
let mut rest = expected;
while !rest.is_empty() {
let expected_chunk = if rest.len() > fio::MAX_BUF as usize {
&rest[..fio::MAX_BUF as usize]
} else {
rest
};
assert_eq!(self.handle_write(Status::OK).await, expected_chunk);
rest = &rest[expected_chunk.len()..];
}
match self.stream.next().await {
Some(Ok(fio::FileRequest::Close { responder })) => {
responder.send(Ok(())).unwrap();
}
other => panic!("unexpected request: {other:?}"),
}
self.expect_done().await;
}
}
}
#[derive(Copy, Clone, Debug)]
struct FlagSet {
required: fio::OpenFlags,
anti_required: fio::OpenFlags,
}
impl FlagSet {
const OPEN_FOR_READ: FlagSet = FlagSet::new()
.require_present(fio::OpenFlags::RIGHT_READABLE)
.require_absent(fio::OpenFlags::CREATE)
.require_absent(fio::OpenFlags::RIGHT_WRITABLE);
const OPEN_FOR_WRITE: FlagSet = FlagSet::new()
.require_present(fio::OpenFlags::CREATE)
.require_present(fio::OpenFlags::RIGHT_WRITABLE);
const fn new() -> Self {
Self { required: fio::OpenFlags::empty(), anti_required: fio::OpenFlags::empty() }
}
const fn require_present(self, flags: fio::OpenFlags) -> Self {
let Self { required, anti_required } = self;
let required = required.union(flags);
Self { required, anti_required }
}
const fn require_absent(self, flags: fio::OpenFlags) -> Self {
let Self { required, anti_required } = self;
let anti_required = anti_required.union(flags);
Self { required, anti_required }
}
fn verify(self, flags: fio::OpenFlags) {
assert_eq!(flags & self.required, self.required);
assert_eq!(flags & self.anti_required, fio::OpenFlags::empty());
}
}