vfs/file/vmo.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
// Copyright 2019 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.
//! Implementation of a file backed by a VMO buffer shared by all the file connections.
#[cfg(test)]
mod tests;
use crate::directory::entry::{DirectoryEntry, EntryInfo, GetEntryInfo, OpenRequest};
use crate::execution_scope::ExecutionScope;
use crate::file::common::vmo_flags_to_rights;
use crate::file::{File, FileLike, FileOptions, GetVmo, StreamIoConnection, SyncMode};
use crate::node::Node;
use crate::ObjectRequestRef;
use fidl_fuchsia_io as fio;
use std::sync::Arc;
use zx::{self as zx, HandleBased as _, Status, Vmo};
/// Creates a new read-only `VmoFile` with the specified `content`.
///
/// ## Panics
///
/// This function panics if a VMO could not be created, or if `content` could not be written to the
/// VMO.
///
/// ## Examples
/// ```
/// // Using static data:
/// let from_str = read_only("str");
/// let from_bytes = read_only(b"bytes");
/// // Using owned data:
/// let from_string = read_only(String::from("owned"));
/// let from_vec = read_only(vec![0u8; 2]);
/// ```
pub fn read_only(content: impl AsRef<[u8]>) -> Arc<VmoFile> {
let bytes: &[u8] = content.as_ref();
let vmo = Vmo::create(bytes.len().try_into().unwrap()).unwrap();
if bytes.len() > 0 {
vmo.write(bytes, 0).unwrap();
}
VmoFile::new(vmo, true, false, false)
}
/// Implementation of a VMO-backed file in a virtual file system.
pub struct VmoFile {
/// Specifies if the file can be opened as executable.
executable: bool,
/// Specifies the inode for this file. Can be [`fio::INO_UNKNOWN`] if not required.
inode: u64,
/// Vmo that backs the file.
vmo: Vmo,
}
unsafe impl Sync for VmoFile {}
impl VmoFile {
/// Create a new VmoFile which is backed by an existing Vmo.
///
/// # Arguments
///
/// * `vmo` - Vmo backing this file object.
/// * `readable` - Must be `true`, VmoFile needs to be readable.
/// * `writable` - Must be `false`, VmoFile no longer supports writing.
/// * `executable` - If true, allow connections with OpenFlags::RIGHT_EXECUTABLE.
pub fn new(vmo: zx::Vmo, readable: bool, writable: bool, executable: bool) -> Arc<Self> {
// TODO(https://fxbug.dev/294078001) Remove the readable and writable arguments.
assert!(readable, "VmoFile must be readable");
assert!(!writable, "VmoFile no longer supports writing");
Self::new_with_inode(vmo, readable, writable, executable, fio::INO_UNKNOWN)
}
/// Create a new VmoFile with the specified options and inode value.
///
/// # Arguments
///
/// * `vmo` - Vmo backing this file object.
/// * `readable` - Must be `true`, VmoFile needs to be readable.
/// * `writable` - Must be `false`, VmoFile no longer supports writing.
/// * `executable` - If true, allow connections with OpenFlags::RIGHT_EXECUTABLE.
/// * `inode` - Inode value to report when getting the VmoFile's attributes.
pub fn new_with_inode(
vmo: zx::Vmo,
readable: bool,
writable: bool,
executable: bool,
inode: u64,
) -> Arc<Self> {
// TODO(https://fxbug.dev/294078001) Remove the readable and writable arguments.
assert!(readable, "VmoFile must be readable");
assert!(!writable, "VmoFile no longer supports writing");
Arc::new(VmoFile { executable, inode, vmo })
}
}
impl FileLike for VmoFile {
fn open(
self: Arc<Self>,
scope: ExecutionScope,
options: FileOptions,
object_request: ObjectRequestRef<'_>,
) -> Result<(), Status> {
StreamIoConnection::spawn(scope, self, options, object_request)
}
}
impl GetEntryInfo for VmoFile {
fn entry_info(&self) -> EntryInfo {
EntryInfo::new(self.inode, fio::DirentType::File)
}
}
impl DirectoryEntry for VmoFile {
fn open_entry(self: Arc<Self>, request: OpenRequest<'_>) -> Result<(), Status> {
request.open_file(self)
}
}
impl Node for VmoFile {
async fn get_attributes(
&self,
requested_attributes: fio::NodeAttributesQuery,
) -> Result<fio::NodeAttributes2, Status> {
let content_size = if requested_attributes.intersects(
fio::NodeAttributesQuery::CONTENT_SIZE.union(fio::NodeAttributesQuery::STORAGE_SIZE),
) {
Some(self.vmo.get_content_size()?)
} else {
None
};
let mut abilities = fio::Operations::GET_ATTRIBUTES | fio::Operations::READ_BYTES;
if self.executable {
abilities |= fio::Operations::EXECUTE
}
Ok(immutable_attributes!(
requested_attributes,
Immutable {
protocols: fio::NodeProtocolKinds::FILE,
abilities: abilities,
content_size: content_size,
storage_size: content_size,
id: self.inode,
}
))
}
}
// Required by `StreamIoConnection`.
impl GetVmo for VmoFile {
fn get_vmo(&self) -> &zx::Vmo {
&self.vmo
}
}
impl File for VmoFile {
fn readable(&self) -> bool {
true
}
fn writable(&self) -> bool {
false
}
fn executable(&self) -> bool {
self.executable
}
async fn open_file(&self, _options: &FileOptions) -> Result<(), Status> {
Ok(())
}
async fn truncate(&self, _length: u64) -> Result<(), Status> {
Err(Status::NOT_SUPPORTED)
}
async fn get_backing_memory(&self, flags: fio::VmoFlags) -> Result<zx::Vmo, Status> {
// Logic here matches fuchsia.io requirements and matches what works for memfs.
// Shared requests are satisfied by duplicating an handle, and private shares are
// child VMOs.
let vmo_rights = vmo_flags_to_rights(flags)
| zx::Rights::BASIC
| zx::Rights::MAP
| zx::Rights::GET_PROPERTY;
// Unless private sharing mode is specified, we always default to shared.
if flags.contains(fio::VmoFlags::PRIVATE_CLONE) {
get_as_private(&self.vmo, vmo_rights)
} else {
self.vmo.duplicate_handle(vmo_rights)
}
}
async fn get_size(&self) -> Result<u64, Status> {
Ok(self.vmo.get_content_size()?)
}
async fn update_attributes(
&self,
_attributes: fio::MutableNodeAttributes,
) -> Result<(), Status> {
Err(Status::NOT_SUPPORTED)
}
async fn sync(&self, _mode: SyncMode) -> Result<(), Status> {
Ok(())
}
}
fn get_as_private(vmo: &zx::Vmo, mut rights: zx::Rights) -> Result<zx::Vmo, zx::Status> {
// SNAPSHOT_AT_LEAST_ON_WRITE removes ZX_RIGHT_EXECUTE even if the parent VMO has it, adding
// CHILD_NO_WRITE will ensure EXECUTE is maintained.
const CHILD_OPTIONS: zx::VmoChildOptions =
zx::VmoChildOptions::SNAPSHOT_AT_LEAST_ON_WRITE.union(zx::VmoChildOptions::NO_WRITE);
// Allow for the child VMO's content size and name to be changed.
rights |= zx::Rights::SET_PROPERTY;
let size = vmo.get_content_size()?;
let new_vmo = vmo.create_child(CHILD_OPTIONS, 0, size)?;
new_vmo.replace_handle(rights)
}