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
// SPDX-FileCopyrightText: 2022-2023 TriliTech <contact@trili.tech>
// SPDX-FileCopyrightText: 2023 Marigold <contact@marigold.dev>
//
// SPDX-License-Identifier: MIT
//! Enforcing correct encoding of [storage paths].
//!
//! A storage path can be written to, or read from by the kernel - and *may* correspond
//! to a sequence of bytes in the [runtime] storage.
//!
//! [runtime]: crate::runtime
//! [storage paths]: Path
/// The separator byte between *steps* in a path.
pub const PATH_SEPARATOR: u8 = b'/';
/// The maximum size (in bytes) of a path.
pub const PATH_MAX_SIZE: usize = 250 - DURABLE_STORAGE_PREFIX_INNER.len();
/// The implicit prefix of all durable storage, as slice.
const DURABLE_STORAGE_PREFIX_INNER: &[u8] = b"/durable";
/// The *wasm-encoded* binary blob of either the currently running kernel, or the next
/// kernel to be rebooted into.
pub const PATH_KERNEL_BOOT: RefPath = RefPath::assert_from(b"/kernel/boot.wasm");
/// Marker trait for methods on types representing *path-encodings*.
///
/// Path encoding maintains the following invariants:
/// - paths begin with `b'/'`.
/// - paths are a sequence of non-empty *steps*, separated by a single `b'/'`.
/// - steps are a sequence of either ascii-encoded alphanumeric bytes, or `b'.'` or `b'_'` or `b'-'`.
/// - the maximum length of a path is [PATH_MAX_SIZE].
/// where `b'/'` is the [PATH_SEPARATOR].
///
/// i.e. path encoding may be summarised by the regex `(\/[A-Za-z0-9._\-]+)+` up to a maximum
/// [PATH_MAX_SIZE] bytes.
///
/// # Safety
/// [`Path`] is unsafe to implement, as other code (e.g. [`Runtime`]) rely on any
/// `T: impl Path` being correctly path-encoded.
///
/// [`Runtime`]: crate::runtime::Runtime
pub unsafe trait Path {
/// Returns a read-only reference to the underlying path-encoded byte-slice.
fn as_bytes(&self) -> &[u8];
/// Returns a pointer to the beginning of the path.
fn as_ptr(&self) -> *const u8 {
self.as_bytes().as_ptr()
}
/// Returns the size of the path *in bytes*.
fn size(&self) -> usize {
let size = self.as_bytes().len();
debug_assert!(size <= PATH_MAX_SIZE);
size
}
/// Returns the length of the path, as decomposed into a sequence of *steps*.
fn len_steps(&self) -> usize {
self.as_bytes()
.iter()
.filter(|b| b == &&PATH_SEPARATOR)
.count()
}
}
/// Possible path validation errors.
#[derive(Copy, Eq, PartialEq, Clone, Debug)]
pub enum PathError {
/// Path contains no steps.
PathEmpty,
/// Path must be at most [PATH_MAX_SIZE] bytes in size.
///
/// [PATH_MAX_SIZE]: self::PATH_MAX_SIZE
PathTooLong,
/// Path must begin with [PATH_SEPARATOR].
///
/// [PATH_SEPARATOR]: self::PATH_SEPARATOR
InvalidStart,
/// Path must not contain empty steps.
InvalidEmptyStep,
/// Steps must be a sequence of bytes such that every byte is in `[A-Za-z0-9.]`
InvalidByteInStep,
/// The given path starts with `/readonly` which is
/// prohibited. Use the specific function to read from that part
/// of the storage.
ReadOnly,
}
/// Representation of a [`Path`] which borrows its underlying byte-sequence.
///
/// Useful when either:
/// - a path is known and may be statically declared at compile-time.
/// - only a *view* over a path is required: `RefPath` & `&RefPath` may be freely passed
/// around and copied, since they don't own their underlying data.
///
/// Otherwise, you can use [OwnedPath].
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct RefPath<'a> {
inner: &'a str,
}
impl<'a> RefPath<'a> {
/// Constructs a [`RefPath`] from a byte slice.
///
/// # Panics
/// `panics` if the byte slice does not represent a valid path-encoding.
/// See [`Path`]. For example, the following would
///
/// # Examples
///
/// It is possible to define a well-encoded path at compile time:
/// ```
/// # use tezos_smart_rollup_host::path::RefPath;
/// const PATH: RefPath<'static> = RefPath::assert_from("/valid/path".as_bytes());
/// ```
///
/// But the following would fail to compile:
/// ```compile_fail
/// # use tezos_smart_rollup_host::path::RefPath;
/// const PATH: RefPath<'static> = RefPath::assert_from("invalid//path".as_bytes());
/// ```
///
/// And this would panic at runtime:
/// ```should_panic
/// # use tezos_smart_rollup_host::path::RefPath;
/// let path = RefPath::assert_from("!&(*(".as_bytes());
/// ```
pub const fn assert_from(path: &[u8]) -> RefPath {
assert_ok(validate_path(path));
RefPath {
inner: unsafe { core::str::from_utf8_unchecked(path) },
}
}
/// similar to [`assert_from`] but does not verify that the path
/// is writable, i.e. not prefixed with `/readonly`. This function
/// is to be used only internally to create [`RefPath`] for the
/// `readonly` part of the storage. See `runtime.rs` for example.
pub(crate) const fn assert_from_readonly(path: &[u8]) -> RefPath {
assert_ok(validate_path_internal(path));
RefPath {
inner: unsafe { core::str::from_utf8_unchecked(path) },
}
}
}
unsafe impl Path for RefPath<'_> {
fn as_bytes(&self) -> &[u8] {
self.inner.as_bytes()
}
}
const fn is_allowed_step_byte(byte: u8) -> bool {
byte.is_ascii_alphanumeric() || byte == b'.' || byte == b'_' || byte == b'-'
}
const fn assert_ok(res: Result<(), PathError>) {
match res {
Err(PathError::PathEmpty) => panic!("Path must contain at least one empty step"),
Err(PathError::PathTooLong) => panic!("Path contained too many bytes"),
Err(PathError::InvalidStart) => panic!("Path must begin with a path separator"),
Err(PathError::InvalidEmptyStep) => panic!("Path steps must be non empty"),
Err(PathError::InvalidByteInStep) => {
panic!(
"Path step bytes must be ascii_alphanumeric or
one of the following symbols \"b'.'\" , \"b'_'\" , \"b'-'\""
)
}
Err(PathError::ReadOnly) => {
panic!(
"Path must not start by /readonly, this is a reserved
part of the storage. Uses the appropriate function to
look values in this storage."
)
}
Ok(()) => (),
}
}
/// check that the given path is well-formed. it Does not check that
/// the path is writable, see [`validate_path`] to be sure the path is
/// writable.
const fn validate_path_internal(path: &[u8]) -> Result<(), PathError> {
match path {
[] => Err(PathError::PathEmpty),
[PATH_SEPARATOR] | [.., PATH_SEPARATOR] => Err(PathError::InvalidEmptyStep),
_ if path.len() > PATH_MAX_SIZE => Err(PathError::PathTooLong),
[PATH_SEPARATOR, ..] => {
let mut i = 1;
let size = path.len();
while i < size {
match (path[i - 1], path[i]) {
(PATH_SEPARATOR, PATH_SEPARATOR) => {
return Err(PathError::InvalidEmptyStep)
}
(_, PATH_SEPARATOR) => (),
(_, c) if !is_allowed_step_byte(c) => {
return Err(PathError::InvalidByteInStep)
}
_ => (),
}
i += 1;
}
Ok(())
}
_ => Err(PathError::InvalidStart),
}
}
const fn validate_path(path: &[u8]) -> Result<(), PathError> {
match validate_path_internal(path) {
Ok(()) => match path {
[PATH_SEPARATOR, b'r', b'e', b'a', b'd', b'o', b'n', b'l', b'y']
| [PATH_SEPARATOR, b'r', b'e', b'a', b'd', b'o', b'n', b'l', b'y', PATH_SEPARATOR, ..] => {
Err(PathError::ReadOnly)
}
_ => Ok(()),
},
Err(e) => Err(e),
}
}
impl<'a> TryFrom<&'a str> for RefPath<'a> {
type Error = PathError;
fn try_from(slice: &'a str) -> Result<RefPath, Self::Error> {
Self::try_from(slice.as_bytes())
}
}
impl<'a> TryFrom<&'a [u8]> for RefPath<'a> {
type Error = PathError;
fn try_from(slice: &'a [u8]) -> Result<RefPath, PathError> {
validate_path(slice)?;
// SAFETY: we've validated that every byte is either alphanumeric or SEPARATOR
let inner = unsafe { core::str::from_utf8_unchecked(slice) };
Ok(RefPath { inner })
}
}
#[cfg(feature = "alloc")]
pub use owned::*;
#[cfg(feature = "alloc")]
mod owned {
use super::{validate_path, Path, PathError, RefPath};
use crate::path::PATH_MAX_SIZE;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
/// Representation of a [`Path`] which *owns* its underlying path-encoded byte sequence.
///
/// Useful when a new path is being constructed at runtime, which is not a sub-path of an
/// already existing path (in which case you may use [RefPath]).
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct OwnedPath {
inner: String,
}
impl OwnedPath {
/// Constructs an [`OwnedPath`] from an arbitrary sequence of bytes.
///
/// # Safety
/// Validation that `bytes` are a validly encoded path is bypassed. The bytes
/// **must** be correctly path-encoded. See [`Path`].
pub unsafe fn from_bytes_unchecked(bytes: Vec<u8>) -> Self {
Self {
inner: String::from_utf8_unchecked(bytes),
}
}
}
unsafe impl Path for OwnedPath {
fn as_bytes(&self) -> &[u8] {
self.inner.as_bytes()
}
}
impl<'a> From<RefPath<'a>> for OwnedPath {
fn from(path: RefPath<'a>) -> Self {
Self {
inner: path.inner.to_string(),
}
}
}
impl<P: Path> From<&P> for OwnedPath {
fn from(path: &P) -> Self {
let path_bytes = path.as_bytes().to_vec();
// We can assume that `path_bytes` has already been checked since
// they come from a valid path.
let inner = unsafe { String::from_utf8_unchecked(path_bytes) };
Self { inner }
}
}
impl<'a> From<&'a OwnedPath> for RefPath<'a> {
fn from(path: &'a OwnedPath) -> Self {
Self { inner: &path.inner }
}
}
impl TryFrom<String> for OwnedPath {
type Error = PathError;
fn try_from(inner: String) -> Result<Self, Self::Error> {
validate_path(inner.as_bytes())?;
// Safety: inner is now a checked `Path`
Ok(OwnedPath { inner })
}
}
impl TryFrom<Vec<u8>> for OwnedPath {
type Error = PathError;
fn try_from(bytes: Vec<u8>) -> Result<OwnedPath, PathError> {
validate_path(&bytes)?;
// SAFETY: we've validated that every byte is either alphanumeric or SEPARATOR
let inner = unsafe { String::from_utf8_unchecked(bytes) };
Ok(OwnedPath { inner })
}
}
/// Given a prefix and a suffix create a new path that concatenates the two.
///
/// Returns error in case the resulting path is too long.
pub fn concat(
prefix: &impl Path,
suffix: &impl Path,
) -> Result<OwnedPath, PathError> {
let mut bytes = Vec::with_capacity(prefix.size() + suffix.size());
bytes.extend_from_slice(prefix.as_bytes());
bytes.extend_from_slice(suffix.as_bytes());
if bytes.len() <= PATH_MAX_SIZE {
// Since both prefix and suffix are paths, we can assume they only
// contain valid characters and start with '/', ie bytes contain
// a valid path as well. Also knowing that bytes contains valid
// number of bytes, we can use the unsafe, faster call below.
Ok(unsafe { OwnedPath::from_bytes_unchecked(bytes) })
} else {
Err(PathError::PathTooLong)
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use alloc::{vec, vec::Vec};
#[test]
fn from_slice_path_cannot_be_empty() {
let empty: Vec<u8> = vec![];
let result = OwnedPath::try_from(empty);
assert_eq!(Err(PathError::PathEmpty), result);
}
#[test]
fn from_slice_path_err_on_sep_not_first_byte() {
for v in u8::MIN..=u8::MAX {
match v {
PATH_SEPARATOR => continue,
v => {
let path = vec![v, b'r', b'e', b's', b't'];
let result = OwnedPath::try_from(path);
assert_eq!(Err(PathError::InvalidStart), result);
}
}
}
}
#[test]
fn from_slice_path_err_on_sep_last_byte() {
let path: Vec<u8> = vec![PATH_SEPARATOR, b'p', b'a', b't', b'h', PATH_SEPARATOR];
let result = OwnedPath::try_from(path);
assert_eq!(Err(PathError::InvalidEmptyStep), result);
}
#[test]
fn from_slice_err_on_duplicate_separator() {
let path = "/this/path/is/completely/fine/except/for/the//in/the/middle/of/it";
let result: Result<RefPath, PathError> = path.as_bytes().try_into();
assert_eq!(Err(PathError::InvalidEmptyStep), result);
}
#[test]
fn from_slice_too_long() {
let bytes = [b'i'; PATH_MAX_SIZE - 1];
let mut path = vec![PATH_SEPARATOR];
path.extend_from_slice(&bytes);
let result: Result<RefPath, _> = path.as_slice().try_into();
assert!(result.is_ok());
path.extend_from_slice(&bytes[0..1]);
let result: Result<RefPath, _> = path.as_slice().try_into();
assert_eq!(Err(PathError::PathTooLong), result);
}
#[test]
fn store_path_readonly() {
let path = "/readonly/this/path/is/read/only";
let result: Result<RefPath, PathError> = path.as_bytes().try_into();
assert_eq!(Err(PathError::ReadOnly), result);
let path = "/readonly";
let result: Result<RefPath, PathError> = path.as_bytes().try_into();
assert_eq!(Err(PathError::ReadOnly), result);
let path = "/readonly.is/a/correct_path";
let result: Result<RefPath, PathError> = path.as_bytes().try_into();
assert!(result.is_ok());
}
#[test]
fn from_slice_ok() {
let path = "/Th1s/PATH/1s/absolut3Ly/f1ne/and/sh0u.ld/.../work";
let result = RefPath::try_from(path.as_bytes());
let expected = RefPath { inner: path };
assert_eq!(Ok(expected), result);
}
#[test]
fn store_path_get_len_steps() {
let path = "/this/path/is/absolutely/fine/and/should.must/work";
let result = RefPath::try_from(path.as_bytes()).unwrap();
assert_eq!(8, result.len_steps());
}
#[test]
fn test_concat() {
let p1 = RefPath::assert_from(b"/a/b");
let p2 = RefPath::assert_from(b"/c/d");
let p3 = concat(&p1, &p2).unwrap();
assert_eq!(b"/a/b/c/d", p3.as_bytes());
}
}