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
// vim: tw=80
use nix::libc::{c_int, off_t};
use mio::{
Interest,
Registry,
Token,
event::Source,
};
use nix::errno::Errno;
use nix::sys::aio;
use nix::sys::signal::SigevNotify;
use std::io;
use std::iter::Iterator;
use std::os::unix::io::AsRawFd;
use std::os::unix::io::RawFd;
use std::pin::Pin;
pub use nix::sys::aio::AioFsyncMode;
pub use nix::sys::aio::LioOpcode;
/// Represents the result of an individual operation from an `LioCb::submit`
/// call.
pub struct LioResult {
pub result: nix::Result<isize>
}
// LCOV_EXCL_START
#[derive(Debug)]
/// A single asynchronous I/O operation
pub struct AioCb<'a> {
// Must use Pin for the AioCb so its location in memory will be
// constant. It is an error to move a libc::aiocb after passing it to the
// kernel.
inner: Pin<Box<aio::AioCb<'a>>>,
}
// LCOV_EXCL_STOP
/// Wrapper around nix::sys::aio::AioCb.
///
/// Implements mio::Source. After creation, use mio::Source::register to
/// connect to the event loop
impl<'a> AioCb<'a> {
/// Wraps nix::sys::aio::AioCb::from_fd.
pub fn from_fd(fd: RawFd, prio: c_int) -> AioCb<'a> {
let aiocb = aio::AioCb::from_fd(fd, prio, SigevNotify::SigevNone);
AioCb { inner: aiocb }
}
/// Wraps nix::sys::aio::from_mut_slice
///
/// Not as useful as it sounds, because in typical mio use cases, the
/// compiler can't guarantee that the slice's lifetime is respected.
pub fn from_mut_slice(fd: RawFd, offs: u64, buf: &'a mut [u8],
prio: c_int, opcode: LioOpcode) -> AioCb {
let aiocb = aio::AioCb::from_mut_slice(fd, offs as off_t, buf, prio,
SigevNotify::SigevNone, opcode);
AioCb { inner: aiocb }
}
/// Wraps nix::sys::aio::from_slice
///
/// Mostly useful for writing constant slices
pub fn from_slice(fd: RawFd, offs: u64, buf: &'a [u8],
prio: c_int, opcode: LioOpcode) -> AioCb {
let aiocb = aio::AioCb::from_slice(fd, offs as off_t, buf, prio,
SigevNotify::SigevNone, opcode);
AioCb { inner: aiocb }
}
/// Read the final result of the operation
pub fn aio_return(&mut self) -> nix::Result<isize> {
self.inner.aio_return()
} // LCOV_EXCL_LINE
/// Ask the operating system to cancel the operation
///
/// Most file systems on most operating systems don't actually support
/// cancellation; they'll just return `AIO_NOTCANCELED`.
pub fn cancel(&mut self) -> nix::Result<aio::AioCancelStat> {
self.inner.cancel()
} // LCOV_EXCL_LINE
fn _deregister_raw(&mut self) {
let sigev = SigevNotify::SigevNone;
self.inner.set_sigev_notify(sigev);
}
/// Extra registration method needed by Tokio
#[cfg(feature = "tokio")]
#[cfg_attr(docsrs, doc(cfg(feature = "tokio")))]
pub fn deregister_raw(&mut self) {
self._deregister_raw()
}
/// Retrieve the status of an in-progress or complete operation.
///
/// Not usually needed, since `mio_aio` always uses kqueue for notification.
pub fn error(&mut self) -> nix::Result<()> {
self.inner.error()
} // LCOV_EXCL_LINE
/// Asynchronously fsync a file.
pub fn fsync(&mut self, mode: AioFsyncMode) -> nix::Result<()> {
self.inner.fsync(mode)
} // LCOV_EXCL_LINE
/// Asynchronously read from a file.
pub fn read(&mut self) -> nix::Result<()> {
self.inner.read()
} // LCOV_EXCL_LINE
fn _register_raw(&mut self, kq: RawFd, udata: usize) {
let sigev = SigevNotify::SigevKevent{kq, udata: udata as isize};
self.inner.set_sigev_notify(sigev);
}
/// Extra registration method needed by Tokio
#[cfg(feature = "tokio")]
#[cfg_attr(docsrs, doc(cfg(feature = "tokio")))]
pub fn register_raw(&mut self, kq: RawFd, udata: usize) {
self._register_raw(kq, udata)
}
/// Asynchronously write to a file.
pub fn write(&mut self) -> nix::Result<()> {
self.inner.write()
} // LCOV_EXCL_LINE
}
impl<'a> Source for AioCb<'a> {
fn register(
&mut self,
registry: &Registry,
token: Token,
interests: Interest,
) -> io::Result<()> {
assert!(interests.is_aio());
let udata = usize::from(token);
let kq = registry.as_raw_fd();
self._register_raw(kq, udata);
Ok(())
}
fn reregister(
&mut self,
registry: &Registry,
token: Token,
interests: Interest,
) -> io::Result<()> {
self.register(registry, token, interests)
}
fn deregister(&mut self, _registry: &Registry) -> io::Result<()> {
self._deregister_raw();
Ok(())
}
}
// LCOV_EXCL_START
#[derive(Debug)]
/// A collection of multiple asynchronous I/O operations
pub struct LioCb<'a> {
inner: aio::LioCb<'a>,
sev: SigevNotify
}
// LCOV_EXCL_STOP
impl<'a> LioCb<'a> {
fn _deregister_raw(&mut self) {
let sigev = SigevNotify::SigevNone;
self.sev = sigev;
}
/// Extra registration method needed by Tokio
#[cfg(feature = "tokio")]
#[cfg_attr(docsrs, doc(cfg(feature = "tokio")))]
pub fn deregister_raw(&mut self) {
self._deregister_raw()
}
/// Translate the operating system's somewhat unhelpful error from
/// `lio_listio` into something more useful.
fn fix_submit_error(&mut self, e: nix::Result<()>) -> Result<(), LioError> {
match e {
Err(nix::Error::EAGAIN) |
Err(nix::Error::EIO) |
Err(nix::Error::EINTR) => {
// Unfortunately, FreeBSD uses EIO to indicate almost any
// problem with lio_listio. We must examine every aiocb to
// determine which error to return
let mut n_error = 0;
let mut n_einprogress = 0;
let mut n_eagain = 0;
let mut n_ok = 0;
let errors = (0..self.inner.len())
.map(|i| {
self.inner.error(i)
}).collect::<Vec<_>>();
for (i, e) in errors.iter().enumerate() {
match e {
Ok(()) => {
n_ok += 1;
},
Err(Errno::EINPROGRESS) => {
n_einprogress += 1;
},
Err(Errno::EAGAIN) => {
n_eagain += 1;
},
Err(_) => {
// Depending on whether the operation was actually
// submitted or not, the kernel may or may not
// require us to call aio_return. But Nix requires
// that we do, so it doesn't look like a resource
// leak.
let _ = self.inner.aio_return(i);
n_error += 1;
}
}
}
if n_error > 0 {
// Collect final status for every operation
Err(LioError::EIO(errors))
} else if n_eagain > 0 && n_eagain < self.inner.len() {
Err(LioError::EINCOMPLETE)
} else if n_eagain == self.inner.len() {
Err(LioError::EAGAIN)
} else {
panic!("lio_listio returned EIO for unknown reasons. n_error={}, n_einprogress={}, n_eagain={}, and n_ok={}",
n_error, n_einprogress, n_eagain, n_ok);
}
},
Ok(()) => Ok(()),
_ => panic!("lio_listio returned unhandled error {:?}", e)
}
}
fn _register_raw(&mut self, kq: RawFd, udata: usize) {
let sigev = SigevNotify::SigevKevent{kq, udata: udata as isize};
self.sev = sigev;
}
/// Extra registration method needed by Tokio
#[cfg(feature = "tokio")]
#[cfg_attr(docsrs, doc(cfg(feature = "tokio")))]
pub fn register_raw(&mut self, kq: RawFd, udata: usize) {
self._register_raw(kq, udata)
}
/// Submit an `LioCb` to the `aio(4)` subsystem.
///
/// If the return value is [`LioError::EAGAIN`], then no operations were
/// enqueued due to system resource limitations. The application should
/// free up resources and try again. If the return value is
/// [`LioError::EINCOMPLETE`], then _some_ operations were enqueued, but
/// others were not, due to system resource limitations. The application
/// should wait for notification that the enqueued operations are complete,
/// then resubmit the others with [`resubmit`](#method.resubmit). If the
/// return value is [`LioError::EIO`], then some operations have failed to
/// enqueue, and cannot be resubmitted. The application should wait for
/// notification that the enqueued operations are complete, then examine the
/// result of each operation to determine the problem.
pub fn submit(&mut self) -> Result<(), LioError> {
let e = self.inner.listio(aio::LioMode::LIO_NOWAIT, self.sev);
self.fix_submit_error(e)
}
/// Resubmit an `LioCb` if it is incomplete.
///
/// If [`submit`](#method.submit) returns `LioError::EINCOMPLETE`, then some
/// operations may not have been submitted. This method will collect status
/// for any completed operations, then resubmit the others.
///
/// [`lio_listio`](http://pubs.opengroup.org/onlinepubs/9699919799/functions/lio_listio.html)
pub fn resubmit(&mut self) -> Result<(), LioError> {
let e = self.inner.listio_resubmit(aio::LioMode::LIO_NOWAIT, self.sev);
self.fix_submit_error(e)
}
/// Consume an `LioCb` and collect its operations' results.
///
/// An iterator over all operations' results will be supplied to the
/// callback function.
// We can't simply return an iterator using self.inner.aiocbs.into_iter(),
// because into_iter() moves elements, and aiocbs must reside at stable
// memory locations. This arrangement, though odd, avoids any large memory
// allocations and still allows the caller to use an iterator adapter with
// the results.
pub fn into_results<F, R>(self, callback: F) -> R
where F: FnOnce(Box<dyn Iterator<Item=LioResult> + 'a>) -> R {
let mut inner = self.inner;
let iter = (0..inner.len()).map(move |i| {
let result = inner.aio_return(i);
LioResult{result }
});
callback(Box::new(iter))
}
}
impl<'a> Source for LioCb<'a> {
fn register(
&mut self,
registry: &Registry,
token: Token,
interests: Interest,
) -> io::Result<()> {
assert!(interests.is_lio());
let udata = usize::from(token);
let kq = registry.as_raw_fd();
self._register_raw(kq, udata);
Ok(())
}
fn reregister(
&mut self,
registry: &Registry,
token: Token,
interests: Interest,
) -> io::Result<()> {
self.register(registry, token, interests)
}
fn deregister(&mut self, _registry: &Registry) -> io::Result<()> {
self._deregister_raw();
Ok(())
}
}
/// Used to construct [`LioCb`].
///
/// `LioCb` uses the builder pattern. An `LioCbBuilder` is the only way to
/// construct an `LioCb`.
///
/// [`LioCb`](struct.LioCb.html)
#[derive(Debug)]
pub struct LioCbBuilder<'a>(aio::LioCbBuilder<'a>);
impl<'a> LioCbBuilder<'a> {
/// Add a new operation on a mutable slice
///
/// # Arguments
///
/// `fd` - File descriptor the file to read from or write to.
/// `offset` - Offset within the file to read from or write to.
/// `buf` - Memory location for the data
/// `prio` - I/O priority. Not supported by all operating systems.
/// `opcode` - Should be either `LIO_READ` or `LIO_WRITE`.
pub fn emplace_mut_slice(self, fd: RawFd, offset: u64,
buf: &'a mut [u8], prio: i32, opcode: LioOpcode)
-> Self
{
LioCbBuilder(
self.0.emplace_mut_slice(
fd,
offset as off_t,
buf,
prio as c_int,
SigevNotify::SigevNone,
opcode
)
)
}
/// Add a new operation on an immutable mutable slice
///
/// # Arguments
///
/// `fd` - File descriptor the file to read from or write to.
/// `offset` - Offset within the file to read from or write to.
/// `buf` - Memory location for the data
/// `prio` - I/O priority. Not supported by all operating systems.
/// `opcode` - Should be either `LIO_READ` or `LIO_WRITE`.
pub fn emplace_slice(self, fd: RawFd, offset: u64,
buf: &'a [u8], prio: i32, opcode: LioOpcode)
-> Self
{
LioCbBuilder(
self.0.emplace_slice(
fd,
offset as off_t,
buf,
prio as c_int,
SigevNotify::SigevNone,
opcode
)
)
}
/// Complete the build into an [`LioCb`], ready to use.
///
/// The operating system requires a stable memory location once I/O is
/// submitted, so no new operations may be added after `finish`.
pub fn finish(self) -> LioCb<'a> {
LioCb {
inner: self.0.finish(),
sev: SigevNotify::SigevNone
}
}
/// Create a new `LioCbBuilder` with room for `capacity` operations.
pub fn with_capacity(capacity: usize) -> LioCbBuilder<'a> {
LioCbBuilder(aio::LioCbBuilder::with_capacity(capacity))
}
}
/// Error types that can be returned by
/// [`LioCb::submit`](struct.LioCb.html#method.submit)
#[derive(Clone, Debug, PartialEq)]
pub enum LioError {
/// No operations were enqueued. No notification will be forthcoming.
EAGAIN,
/// Some operations were enqueued, but not all. Notification will be
/// delievered when the enqueued operations are all complete.
EINCOMPLETE,
/// Some operations failed. The value is a vector of the status of each
/// operation.
EIO(Vec<Result<(), Errno>>)
}
impl LioError {
/// Conveniently destructure into an [`LioError::EIO`].
pub fn into_eio(self) -> Result<Vec<Result<(), Errno>>, Self> {
if let LioError::EIO(eio) = self {
Ok(eio)
} else {
Err(self)
}
}
}
#[cfg(test)]
mod t {
use super::*;
use assert_impl::assert_impl;
// It's important that `AioCb` and `LioCb` be `Sync` and `Send`. Most Tokio
// applications require it.
#[test]
fn aiocb_is_send_and_sync() {
assert_impl!(Send: AioCb);
assert_impl!(Sync: AioCb);
}
#[test]
fn liocb_is_send_and_sync() {
assert_impl!(Send: LioCb);
assert_impl!(Sync: LioCb);
}
}