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
// 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.
//! Common utilities used by both directory and file traits.
use {
fidl::endpoints::ServerEnd,
fidl::prelude::*,
fidl_fuchsia_io as fio, fuchsia_zircon as zx,
futures::StreamExt as _,
libc,
std::{convert::TryFrom, sync::Arc},
};
pub use vfs_macros::attribute_query;
/// Set of known rights.
const FS_RIGHTS: fio::OpenFlags = fio::OPEN_RIGHTS;
/// Flags visible to GetFlags. These are flags that have meaning after the open call; all other
/// flags are only significant at open time.
pub const GET_FLAGS_VISIBLE: fio::OpenFlags = fio::OpenFlags::empty()
.union(fio::OpenFlags::RIGHT_READABLE)
.union(fio::OpenFlags::RIGHT_WRITABLE)
.union(fio::OpenFlags::RIGHT_EXECUTABLE)
.union(fio::OpenFlags::APPEND)
.union(fio::OpenFlags::NODE_REFERENCE);
/// Returns true if the rights flags in `flags` do not exceed those in `parent_flags`.
pub fn stricter_or_same_rights(parent_flags: fio::OpenFlags, flags: fio::OpenFlags) -> bool {
let parent_rights = parent_flags & FS_RIGHTS;
let rights = flags & FS_RIGHTS;
return !rights.intersects(!parent_rights);
}
/// Common logic for rights processing during cloning a node, shared by both file and directory
/// implementations.
pub fn inherit_rights_for_clone(
parent_flags: fio::OpenFlags,
mut flags: fio::OpenFlags,
) -> Result<fio::OpenFlags, zx::Status> {
if flags.intersects(fio::OpenFlags::CLONE_SAME_RIGHTS) && flags.intersects(FS_RIGHTS) {
return Err(zx::Status::INVALID_ARGS);
}
// We preserve OPEN_FLAG_APPEND as this is what is the most convenient for the POSIX emulation.
//
// OPEN_FLAG_NODE_REFERENCE is enforced, according to our current FS permissions design.
flags |= parent_flags & (fio::OpenFlags::APPEND | fio::OpenFlags::NODE_REFERENCE);
// If CLONE_FLAG_SAME_RIGHTS is requested, cloned connection will inherit the same rights
// as those from the originating connection. We have ensured that no FS_RIGHTS flags are set
// above.
if flags.intersects(fio::OpenFlags::CLONE_SAME_RIGHTS) {
flags &= !fio::OpenFlags::CLONE_SAME_RIGHTS;
flags |= parent_flags & FS_RIGHTS;
}
if !stricter_or_same_rights(parent_flags, flags) {
return Err(zx::Status::ACCESS_DENIED);
}
// Ignore the POSIX flags for clone.
flags &= !(fio::OpenFlags::POSIX_WRITABLE | fio::OpenFlags::POSIX_EXECUTABLE);
Ok(flags)
}
/// Returns the current time in UTC nanoseconds since the UNIX epoch.
pub fn current_time() -> u64 {
std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| u64::try_from(d.as_nanos()).unwrap_or(0u64))
.unwrap_or(0u64)
}
/// Creates a default-initialized NodeAttributes. Exists because NodeAttributes does not implement
/// Default.
pub fn node_attributes() -> fio::NodeAttributes {
fio::NodeAttributes {
id: 0,
mode: 0,
content_size: 0,
storage_size: 0,
link_count: 0,
modification_time: 0,
creation_time: 0,
}
}
/// A helper method to send OnOpen event on the handle owned by the `server_end` in case `flags`
/// contains `OPEN_FLAG_STATUS`.
///
/// If the send operation fails for any reason, the error is ignored. This helper is used during
/// an Open() or a Clone() FIDL methods, and these methods have no means to propagate errors to the
/// caller. OnOpen event is the only way to do that, so there is nowhere to report errors in
/// OnOpen dispatch. `server_end` will be closed, so there will be some kind of indication of the
/// issue.
///
/// # Panics
/// If `status` is `zx::Status::OK`. In this case `OnOpen` may need to contain a description of the
/// object, and server_end should not be dropped.
pub fn send_on_open_with_error(
describe: bool,
server_end: ServerEnd<fio::NodeMarker>,
status: zx::Status,
) {
if status == zx::Status::OK {
panic!("send_on_open_with_error() should not be used to respond with Status::OK");
}
if !describe {
// There is no reasonable way to report this error. Assuming the `server_end` has just
// disconnected or failed in some other way why we are trying to send OnOpen.
let _ = server_end.close_with_epitaph(status);
return;
}
match server_end.into_stream_and_control_handle() {
Ok((_, control_handle)) => {
// Same as above, ignore the error.
let _ = control_handle.send_on_open_(status.into_raw(), None);
control_handle.shutdown_with_epitaph(status);
}
Err(_) => {
// Same as above, ignore the error.
return;
}
}
}
/// Trait to be used as a supertrait when an object should allow dynamic casting to an Any.
///
/// Separate trait since [`into_any`] requires Self to be Sized, which cannot be satisfied in a
/// trait without preventing it from being object safe (thus disallowing dynamic dispatch).
/// Since we provide a generic implementation, the size of each concrete type is known.
pub trait IntoAny: std::any::Any {
/// Cast the given object into a `dyn std::any::Any`.
fn into_any(self: Arc<Self>) -> Arc<dyn std::any::Any + Send + Sync + 'static>;
}
impl<T: 'static + Send + Sync> IntoAny for T {
fn into_any(self: Arc<Self>) -> Arc<dyn std::any::Any + Send + Sync + 'static> {
self as Arc<dyn std::any::Any + Send + Sync + 'static>
}
}
/// Returns equivalent POSIX mode/permission bits based on the specified rights.
/// Note that these only set the user bits.
pub fn rights_to_posix_mode_bits(readable: bool, writable: bool, executable: bool) -> u32 {
return if readable { libc::S_IRUSR } else { 0 }
| if writable { libc::S_IWUSR } else { 0 }
| if executable { libc::S_IXUSR } else { 0 };
}
pub async fn extended_attributes_sender(
iterator: ServerEnd<fio::ExtendedAttributeIteratorMarker>,
attributes: Vec<Vec<u8>>,
) {
let mut stream = match iterator.into_stream() {
Ok(stream) => stream,
Err(error) => {
tracing::error!(
?error,
"failed to turn extended attributes iterator request into a stream!"
);
return;
}
};
let mut chunks = attributes.chunks(fio::MAX_LIST_ATTRIBUTES_CHUNK as usize).peekable();
while let Some(Ok(fio::ExtendedAttributeIteratorRequest::GetNext { responder })) =
stream.next().await
{
let (chunk, last) = match chunks.next() {
Some(chunk) => (chunk, chunks.peek().is_none()),
None => (&[][..], true),
};
responder.send(Ok((chunk, last))).unwrap_or_else(|error| {
tracing::error!(?error, "list extended attributes failed to send a chunk");
});
if last {
break;
}
}
}
pub fn encode_extended_attribute_value(
value: Vec<u8>,
) -> Result<fio::ExtendedAttributeValue, zx::Status> {
let size = value.len() as u64;
if size > fio::MAX_INLINE_ATTRIBUTE_VALUE {
let vmo = zx::Vmo::create(size)?;
vmo.write(&value, 0)?;
Ok(fio::ExtendedAttributeValue::Buffer(vmo))
} else {
Ok(fio::ExtendedAttributeValue::Bytes(value))
}
}
pub fn decode_extended_attribute_value(
value: fio::ExtendedAttributeValue,
) -> Result<Vec<u8>, zx::Status> {
match value {
fio::ExtendedAttributeValue::Bytes(val) => Ok(val),
fio::ExtendedAttributeValue::Buffer(vmo) => {
let length = vmo.get_content_size()?;
vmo.read_to_vec(0, length)
}
}
}
// TODO(https://fxbug.dev/124432): Consolidate with other implementations that do the same thing.
pub(crate) mod io2_conversions {
use super::fio;
// This code is adapted from /src/sys/lib/routing/src/rights.rs.
//
// Unlike that implementation, this is stricter: a particular io1 right is present iff all its
// constituent io2 rights are present.
pub fn io2_to_io1(rights: fio::Operations) -> fio::OpenFlags {
let mut flags = fio::OpenFlags::empty();
if rights.contains(fio::R_STAR_DIR) {
flags |= fio::OpenFlags::RIGHT_READABLE;
}
if rights.contains(fio::W_STAR_DIR) {
flags |= fio::OpenFlags::RIGHT_WRITABLE;
}
if rights.contains(fio::X_STAR_DIR) {
flags |= fio::OpenFlags::RIGHT_EXECUTABLE;
}
flags
}
pub fn io1_to_io2(flags: fio::OpenFlags) -> fio::Operations {
if flags.contains(fio::OpenFlags::NODE_REFERENCE) {
fio::Operations::GET_ATTRIBUTES
} else {
let mut operations = fio::Operations::empty();
if flags.contains(fio::OpenFlags::RIGHT_READABLE) {
operations |= fio::R_STAR_DIR;
}
if flags.contains(fio::OpenFlags::RIGHT_WRITABLE) {
operations |= fio::W_STAR_DIR;
}
if flags.contains(fio::OpenFlags::RIGHT_EXECUTABLE) {
operations |= fio::X_STAR_DIR;
}
operations
}
}
}
/// Helper for building fio::NodeAttributes2 given requested attributes. Code will only run for
/// requested attributes.
///
/// Example:
///
/// attributes!(
/// requested,
/// Mutable { creation_time: 123, modification_time, 456 },
/// Immutable { content_size: 789 }
/// );
///
#[macro_export]
macro_rules! attributes {
($requested:expr,
Mutable {$($mut_a:ident: $mut_v:expr),* $(,)?},
Immutable {$($immut_a:ident: $immut_v:expr),* $(,)?}) => (
{
use $crate::common::attribute_query;
fio::NodeAttributes2 {
mutable_attributes: fio::MutableNodeAttributes {
$($mut_a: if $requested.contains(attribute_query!($mut_a)) {
Some($mut_v)
} else {
None
}),*,
..Default::default()
},
immutable_attributes: fio::ImmutableNodeAttributes {
$($immut_a: if $requested.contains(attribute_query!($immut_a)) {
Some($immut_v)
} else {
None
}),*,
..Default::default()
}
}
}
)
}
#[cfg(test)]
mod tests {
use super::inherit_rights_for_clone;
use fidl_fuchsia_io as fio;
// TODO This should be converted into a function as soon as backtrace support is in place.
// The only reason this is a macro is to generate error messages that point to the test
// function source location in their top stack frame.
macro_rules! irfc_ok {
($parent_flags:expr, $flags:expr, $expected_new_flags:expr $(,)*) => {{
let res = inherit_rights_for_clone($parent_flags, $flags);
match res {
Ok(new_flags) => assert_eq!(
$expected_new_flags, new_flags,
"`inherit_rights_for_clone` returned unexpected set of flags.\n\
Expected: {:X}\n\
Actual: {:X}",
$expected_new_flags, new_flags
),
Err(status) => panic!("`inherit_rights_for_clone` failed. Status: {status}"),
}
}};
}
#[test]
fn node_reference_is_inherited() {
irfc_ok!(
fio::OpenFlags::NODE_REFERENCE,
fio::OpenFlags::empty(),
fio::OpenFlags::NODE_REFERENCE
);
}
}