Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

read: be generic over the type of fd #27

Merged
merged 4 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tokio-epoll-uring/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ pub use system::lifecycle::System;
pub use system::submission::op_fut::Error as SystemError;

pub use uring_common::buf::{IoBuf, IoBufMut};
pub use uring_common::io_fd::IoFd;

pub(crate) mod util;

Expand Down
30 changes: 22 additions & 8 deletions tokio-epoll-uring/src/ops/read.rs
Original file line number Diff line number Diff line change
@@ -1,31 +1,45 @@
use std::os::fd::{AsRawFd, OwnedFd};
use std::os::fd::AsRawFd;

use uring_common::{buf::IoBufMut, io_uring};
use uring_common::{buf::IoBufMut, io_fd::IoFd, io_uring};

use crate::system::submission::op_fut::Op;

pub struct ReadOp<B>
pub struct ReadOp<F, B>
where
F: IoFd + Send,
B: IoBufMut + Send,
{
pub(crate) file: OwnedFd,
pub(crate) file: F,
pub(crate) offset: u64,
pub(crate) buf: B,
}

impl<B> crate::sealed::Sealed for ReadOp<B> where B: IoBufMut + Send {}
impl<F, B> crate::sealed::Sealed for ReadOp<F, B>
where
F: IoFd + Send,
B: IoBufMut + Send,
{
}

impl<B> Op for ReadOp<B>
impl<F, B> Op for ReadOp<F, B>
where
F: IoFd + Send,
B: IoBufMut + Send,
{
type Resources = (OwnedFd, B);
type Resources = (F, B);
type Success = usize;
type Error = std::io::Error;

fn make_sqe(&mut self) -> io_uring::squeue::Entry {
io_uring::opcode::Read::new(
io_uring::types::Fd(self.file.as_raw_fd()),
io_uring::types::Fd(
// SAFETY: we hold `AsFd` in self, and if `self` is dropped, hand the fd to the
// `System` to keep it live until the operation completes.
#[allow(unused_unsafe)]
unsafe {
self.file.as_fd().as_raw_fd()
},
),
self.buf.stable_mut_ptr(),
self.buf.bytes_total() as _,
)
Expand Down
8 changes: 4 additions & 4 deletions tokio-epoll-uring/src/system/lifecycle/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use futures::FutureExt;
use std::{os::fd::OwnedFd, path::Path, task::ready};
use uring_common::buf::IoBufMut;
use uring_common::{buf::IoBufMut, io_fd::IoFd};

use crate::{
ops::{open_at::OpenAtOp, read::ReadOp},
Expand Down Expand Up @@ -104,14 +104,14 @@ impl crate::SystemHandle {
let inner = self.inner.as_ref().unwrap();
execute_op(op, inner.submit_side.weak(), None)
}
pub fn read<B: IoBufMut + Send>(
pub fn read<F: IoFd + Send, B: IoBufMut + Send>(
&self,
file: OwnedFd,
file: F,
offset: u64,
buf: B,
) -> impl std::future::Future<
Output = (
(OwnedFd, B),
(F, B),
Result<usize, crate::system::submission::op_fut::Error<std::io::Error>>,
),
> {
Expand Down
62 changes: 62 additions & 0 deletions uring-common/src/io_fd.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
use std::os::fd::{AsRawFd, OwnedFd, RawFd};

/// An `io-uring` compatible file file-descriptor-wrapping struct.
problame marked this conversation as resolved.
Show resolved Hide resolved
///
/// This trait is implemented by structs that hold ownership of a file descriptor.
///
/// Think of this as [`crate::buf::IoBuf`], but for file descriptors.
pub trait IoFd: Unpin + 'static {
/// # Safety
///
/// The implementation must ensure that, while the runtime
/// owns the value, the fd returned by this method
/// 1. remains valid (i.e., is not closed),
/// 2. points to the same kernel resource.
unsafe fn as_fd(&self) -> RawFd;
}

impl IoFd for OwnedFd {
unsafe fn as_fd(&self) -> RawFd {
// SAFETY: `OwnedFd` is the definition of the requirements in the trait method.
self.as_raw_fd()
}
}

impl IoFd for std::fs::File {
unsafe fn as_fd(&self) -> RawFd {
// SAFETY: `File` is the definition of the requirements in the trait method.
self.as_raw_fd()
}
}

pub trait IoFdMut: IoFd {
/// # Safety
///
/// In addition to the requirements in [`IoFd::as_fd`],
/// the implementation must ensure that the state of the kernel resource
/// referenced by the file descriptor does not change.
///
/// The reason for this requirement is that the runtime may be
/// using the file descriptor in an operation the modifies the kernel resource,
/// and the higher-level APIs of the runtime may use `&mut`-ness to prevent race conditions.
///
/// For example, the higher-level API may require `&mut self` for `seek` because `seek`
/// modifies the cursor position of the underlying file kernel resource.
/// This ensures through the type system that it's not possible to `seek` and `read`
/// concurrently.
unsafe fn as_fd_mut(&mut self) -> RawFd;
}

impl IoFdMut for OwnedFd {
unsafe fn as_fd_mut(&mut self) -> RawFd {
// Safety: If we have a `&mut` ref to an `OwnedFd`, Rust type system guarantees this is the only reference.
self.as_raw_fd()
}
}

impl IoFdMut for std::fs::File {
unsafe fn as_fd_mut(&mut self) -> RawFd {
// Safety: If we have a `&mut` ref to an `std::fs::File`, Rust type system guarantees this is the only reference.
self.as_raw_fd()
}
}
2 changes: 2 additions & 0 deletions uring-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ pub mod buf;
pub mod open_options;
pub mod open_options_io_uring_ext;

pub mod io_fd;

pub use io_uring;
Loading