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
use std::sync::Arc;
use atomic_refcell::AtomicRefCell;
use linux_api::errno::Errno;
use linux_api::ioctls::IoctlRequest;
use linux_api::stat::SFlag;
use shadow_shim_helper_rs::syscall_types::ForeignPtr;
use crate::cshadow as c;
use crate::host::descriptor::listener::{StateEventSource, StateListenHandle, StateListenerFilter};
use crate::host::descriptor::shared_buf::{
BufferHandle, BufferSignals, BufferState, ReaderHandle, SharedBuf, WriterHandle,
};
use crate::host::descriptor::{FileMode, FileSignals, FileState, FileStatus};
use crate::host::memory_manager::MemoryManager;
use crate::host::syscall::io::{IoVec, IoVecReader, IoVecWriter};
use crate::host::syscall::types::{SyscallError, SyscallResult};
use crate::utility::callback_queue::CallbackQueue;
use crate::utility::HostTreePointer;
pub struct Pipe {
buffer: Option<Arc<AtomicRefCell<SharedBuf>>>,
event_source: StateEventSource,
state: FileState,
mode: FileMode,
status: FileStatus,
write_mode: WriteMode,
buffer_event_handle: Option<BufferHandle>,
reader_handle: Option<ReaderHandle>,
writer_handle: Option<WriterHandle>,
// should only be used by `OpenFile` to make sure there is only ever one `OpenFile` instance for
// this file
has_open_file: bool,
}
impl Pipe {
/// Create a new [`Pipe`]. The new pipe must be initialized using [`Pipe::connect_to_buffer`]
/// before any of its methods are called.
pub fn new(mode: FileMode, status: FileStatus) -> Self {
Self {
buffer: None,
event_source: StateEventSource::new(),
state: FileState::ACTIVE,
mode,
status,
write_mode: WriteMode::Stream,
buffer_event_handle: None,
reader_handle: None,
writer_handle: None,
has_open_file: false,
}
}
pub fn status(&self) -> FileStatus {
self.status
}
pub fn set_status(&mut self, status: FileStatus) {
self.status = status;
}
pub fn mode(&self) -> FileMode {
self.mode
}
pub fn has_open_file(&self) -> bool {
self.has_open_file
}
pub fn supports_sa_restart(&self) -> bool {
true
}
pub fn set_has_open_file(&mut self, val: bool) {
self.has_open_file = val;
}
pub fn max_size(&self) -> usize {
self.buffer.as_ref().unwrap().borrow().max_len()
}
pub fn close(&mut self, cb_queue: &mut CallbackQueue) -> Result<(), SyscallError> {
if self.state.contains(FileState::CLOSED) {
log::warn!("Attempting to close an already-closed pipe");
}
// drop the event listener handle so that we stop receiving new events
if let Some(h) = self.buffer_event_handle.take() {
h.stop_listening()
}
// if acting as a writer, inform the buffer that there is one fewer writers
if let Some(writer_handle) = self.writer_handle.take() {
self.buffer
.as_ref()
.unwrap()
.borrow_mut()
.remove_writer(writer_handle, cb_queue);
}
// if acting as a reader, inform the buffer that there is one fewer readers
if let Some(reader_handle) = self.reader_handle.take() {
self.buffer
.as_ref()
.unwrap()
.borrow_mut()
.remove_reader(reader_handle, cb_queue);
}
// no need to hold on to the buffer anymore
self.buffer = None;
// set the closed flag and remove the active, readable, and writable flags
self.update_state(
FileState::CLOSED | FileState::ACTIVE | FileState::READABLE | FileState::WRITABLE,
FileState::CLOSED,
FileSignals::empty(),
cb_queue,
);
Ok(())
}
pub fn readv(
&mut self,
iovs: &[IoVec],
offset: Option<libc::off_t>,
_flags: libc::c_int,
mem: &mut MemoryManager,
cb_queue: &mut CallbackQueue,
) -> Result<libc::ssize_t, SyscallError> {
// pipes don't support seeking
if offset.is_some() {
return Err(linux_api::errno::Errno::ESPIPE.into());
}
// if the file is not open for reading, return EBADF
if !self.mode.contains(FileMode::READ) {
return Err(linux_api::errno::Errno::EBADF.into());
}
let num_bytes_to_read: libc::size_t = iovs.iter().map(|x| x.len).sum();
let mut writer = IoVecWriter::new(iovs, mem);
let (num_copied, _num_removed_from_buf) = self
.buffer
.as_ref()
.unwrap()
.borrow_mut()
.read(&mut writer, cb_queue)?;
// the read would block if all:
// 1. we could not read any bytes
// 2. we were asked to read >0 bytes
// 3. there are open descriptors that refer to the write end of the pipe
if num_copied == 0
&& num_bytes_to_read != 0
&& self.buffer.as_ref().unwrap().borrow().num_writers() > 0
{
Err(Errno::EWOULDBLOCK.into())
} else {
Ok(num_copied.try_into().unwrap())
}
}
pub fn writev(
&mut self,
iovs: &[IoVec],
offset: Option<libc::off_t>,
_flags: libc::c_int,
mem: &mut MemoryManager,
cb_queue: &mut CallbackQueue,
) -> Result<libc::ssize_t, SyscallError> {
// pipes don't support seeking
if offset.is_some() {
return Err(linux_api::errno::Errno::ESPIPE.into());
}
// if the file is not open for writing, return EBADF
if !self.mode.contains(FileMode::WRITE) {
return Err(linux_api::errno::Errno::EBADF.into());
}
let mut buffer = self.buffer.as_ref().unwrap().borrow_mut();
if buffer.num_readers() == 0 {
return Err(linux_api::errno::Errno::EPIPE.into());
}
if self.write_mode == WriteMode::Packet && !self.status.contains(FileStatus::DIRECT) {
// switch to stream mode immediately, regardless of whether the buffer is empty or not
self.write_mode = WriteMode::Stream;
} else if self.write_mode == WriteMode::Stream && self.status.contains(FileStatus::DIRECT) {
// in linux, it seems that pipes only switch to packet mode when a new page is added to
// the buffer, so we simulate that behaviour for when the first page is added (when the
// buffer is empty)
if !buffer.has_data() {
self.write_mode = WriteMode::Packet;
}
}
let len: libc::size_t = iovs.iter().map(|x| x.len).sum();
let mut reader = IoVecReader::new(iovs, mem);
let num_copied = match self.write_mode {
WriteMode::Stream => buffer.write_stream(&mut reader, len, cb_queue)?,
WriteMode::Packet => {
let mut num_written = 0;
loop {
// the number of remaining bytes to write
let bytes_remaining = len - num_written;
// if there are no more bytes to write (pipes don't support 0-length packets)
if bytes_remaining == 0 {
break num_written;
}
// split the packet up into PIPE_BUF-sized packets
let bytes_to_write = std::cmp::min(bytes_remaining, libc::PIPE_BUF);
if let Err(e) = buffer.write_packet(&mut reader, bytes_to_write, cb_queue) {
// if we've already written bytes, return those instead of an error
if num_written > 0 {
break num_written;
}
return Err(e.into());
}
num_written += bytes_to_write;
}
}
};
Ok(num_copied.try_into().unwrap())
}
pub fn ioctl(
&mut self,
request: IoctlRequest,
_arg_ptr: ForeignPtr<()>,
_memory_manager: &mut MemoryManager,
) -> SyscallResult {
log::warn!("We do not yet handle ioctl request {request:?} on pipes");
Err(Errno::EINVAL.into())
}
pub fn stat(&self) -> Result<linux_api::stat::stat, SyscallError> {
warn_once_then_debug!("Not all fields of 'struct stat' are implemented for pipes");
Ok(linux_api::stat::stat {
// the device and inode are non-zero on linux, but shadow can't really give meaningful
// values here
st_dev: 0,
st_ino: 0,
// this may need to be >1 if shadow ever supports named pipes
st_nlink: 1,
// linux seems to use a mode of readable+writable for both ends of a pipe, but as a
// reminder this st_mode field is the mode of the pipe in the pipefs filesystem, not the
// mode of the pipe file (linux struct file) itself
st_mode: (SFlag::S_IFIFO | SFlag::S_IRUSR | SFlag::S_IWUSR).bits(),
// shadow pretends to run as root, although this gets messy since file-related syscalls
// that are passed through to linux have the uid/gid of the user running the simulation
st_uid: 0,
st_gid: 0,
l__pad0: 0,
st_rdev: 0,
// apparently the behaviour of this field depends on what unix you're running, but on
// linux it seems to always be 0
st_size: 0,
// TODO
st_blksize: 0,
st_blocks: 0,
st_atime: 0,
st_atime_nsec: 0,
st_mtime: 0,
st_mtime_nsec: 0,
st_ctime: 0,
st_ctime_nsec: 0,
l__unused: [0; 3],
})
}
pub fn connect_to_buffer(
arc: &Arc<AtomicRefCell<Self>>,
buffer: Arc<AtomicRefCell<SharedBuf>>,
cb_queue: &mut CallbackQueue,
) {
let weak = Arc::downgrade(arc);
let pipe = &mut *arc.borrow_mut();
pipe.buffer = Some(buffer);
if pipe.mode.contains(FileMode::WRITE) {
pipe.writer_handle = Some(
pipe.buffer
.as_ref()
.unwrap()
.borrow_mut()
.add_writer(cb_queue),
);
}
if pipe.mode.contains(FileMode::READ) {
pipe.reader_handle = Some(
pipe.buffer
.as_ref()
.unwrap()
.borrow_mut()
.add_reader(cb_queue),
);
}
// buffer state changes that we want to receive events for
let mut monitoring_state = BufferState::empty();
// if the file is open for reading, watch for the buffer to become readable or have no
// writers
if pipe.mode.contains(FileMode::READ) {
monitoring_state.insert(BufferState::READABLE);
monitoring_state.insert(BufferState::NO_WRITERS);
}
// if the file is open for writing, watch for the buffer to become writable or have no
// readers
if pipe.mode.contains(FileMode::WRITE) {
monitoring_state.insert(BufferState::WRITABLE);
monitoring_state.insert(BufferState::NO_READERS);
}
// TODO: We have to monitor all of the buffer's signals that we might want to pass to the
// pipe file's listeners, but this adds extra overhead when the file doesn't have any
// listeners that are listening for some of these signals. For example if there's a noisy
// signal `BufferSignals::FOO` that we want to forward to file listeners as
// `FileSignals::FOO`, we must always subscribe to `BufferSignals::FOO` signals even if the
// pipe doesn't have any file listeners subscribed to `FileSignals::FOO`. We don't know if
// there are currently file listeners subscribed to this file signal, so we must always emit
// them. This means we might receive a lot of notifications for `BufferSignals::Foo` that we
// ultimitely throw away since no file listener wants them. It would be great if there was a
// nice way to optimize this somehow so that we only listen for `BufferSignals::FOO` if we
// have a listener for `FileSignals::FOO`.
let monitoring_signals = BufferSignals::BUFFER_GREW;
let handle = pipe.buffer.as_ref().unwrap().borrow_mut().add_listener(
monitoring_state,
monitoring_signals,
move |buffer_state, buffer_signals, cb_queue| {
// if the file hasn't been dropped
if let Some(pipe) = weak.upgrade() {
let mut pipe = pipe.borrow_mut();
// update the pipe file's state to align with the buffer's current state
pipe.align_state_to_buffer(buffer_state, buffer_signals, cb_queue);
}
},
);
pipe.buffer_event_handle = Some(handle);
// update the pipe file's initial state to align with the buffer's current state
let buffer_state = pipe.buffer.as_ref().unwrap().borrow().state();
pipe.align_state_to_buffer(buffer_state, BufferSignals::empty(), cb_queue);
}
pub fn add_listener(
&mut self,
monitoring_state: FileState,
monitoring_signals: FileSignals,
filter: StateListenerFilter,
notify_fn: impl Fn(FileState, FileState, FileSignals, &mut CallbackQueue)
+ Send
+ Sync
+ 'static,
) -> StateListenHandle {
self.event_source
.add_listener(monitoring_state, monitoring_signals, filter, notify_fn)
}
pub fn add_legacy_listener(&mut self, ptr: HostTreePointer<c::StatusListener>) {
self.event_source.add_legacy_listener(ptr);
}
pub fn remove_legacy_listener(&mut self, ptr: *mut c::StatusListener) {
self.event_source.remove_legacy_listener(ptr);
}
pub fn state(&self) -> FileState {
self.state
}
/// Align the pipe's state to the buffer state. For example if the buffer is both `READABLE` and
/// `WRITABLE`, and the pipe is only open in `READ` mode, the pipe's `READABLE` state will be
/// set and the `WRITABLE` state will be unchanged. This method may also pass through signals
/// from the buffer to any of the file's listeners.
fn align_state_to_buffer(
&mut self,
buffer_state: BufferState,
buffer_signals: BufferSignals,
cb_queue: &mut CallbackQueue,
) {
let mut mask = FileState::empty();
let mut file_state = FileState::empty();
let mut file_signals = FileSignals::empty();
// if the pipe is already closed, do nothing
if self.state.contains(FileState::CLOSED) {
return;
}
// only update the readable state if the file is open for reading
if self.mode.contains(FileMode::READ) {
mask.insert(FileState::READABLE);
// file is readable if the buffer is readable or there are no writers
if buffer_state.intersects(BufferState::READABLE | BufferState::NO_WRITERS) {
file_state.insert(FileState::READABLE);
}
if buffer_signals.intersects(BufferSignals::BUFFER_GREW) {
file_signals.insert(FileSignals::READ_BUFFER_GREW);
}
}
// only update the writable state if the file is open for writing
if self.mode.contains(FileMode::WRITE) {
mask.insert(FileState::WRITABLE);
// file is writable if the buffer is writable or there are no readers
if buffer_state.intersects(BufferState::WRITABLE | BufferState::NO_READERS) {
file_state.insert(FileState::WRITABLE);
}
}
// update the file's state
self.update_state(mask, file_state, file_signals, cb_queue);
}
fn update_state(
&mut self,
mask: FileState,
state: FileState,
signals: FileSignals,
cb_queue: &mut CallbackQueue,
) {
let old_state = self.state;
// remove the masked flags, then copy the masked flags
self.state.remove(mask);
self.state.insert(state & mask);
self.handle_state_change(old_state, signals, cb_queue);
}
fn handle_state_change(
&mut self,
old_state: FileState,
signals: FileSignals,
cb_queue: &mut CallbackQueue,
) {
let states_changed = self.state ^ old_state;
// if nothing changed
if states_changed.is_empty() && signals.is_empty() {
return;
}
self.event_source
.notify_listeners(self.state, states_changed, signals, cb_queue);
}
}
#[derive(Debug, PartialEq, Eq)]
enum WriteMode {
Stream,
Packet,
}