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
//! Validation implementations and helper types.
pub mod util;
pub mod validators;
use core::{alloc::Layout, alloc::LayoutError, any::TypeId, ops::Range};
use bytecheck::rancor::{Error, Fallible, Strategy};
use ptr_meta::Pointee;
use rancor::ResultExt as _;
use crate::{ArchivePointee, RelPtr};
// Replace this trait with core::mem::{align_of_val_raw, size_of_val_raw} when
// they get stabilized.
// TODO: Try to remove or fold into another trait
/// Gets the layout of a type from its pointee type and metadata.
pub trait LayoutRaw
where
Self: Pointee,
{
/// Gets the layout of the type.
fn layout_raw(
metadata: <Self as Pointee>::Metadata,
) -> Result<Layout, LayoutError>;
}
impl<T> LayoutRaw for T {
#[inline]
fn layout_raw(
_: <Self as Pointee>::Metadata,
) -> Result<Layout, LayoutError> {
Ok(Layout::new::<T>())
}
}
impl<T> LayoutRaw for [T] {
#[inline]
fn layout_raw(
metadata: <Self as Pointee>::Metadata,
) -> Result<Layout, LayoutError> {
Layout::array::<T>(metadata)
}
}
impl LayoutRaw for str {
#[inline]
fn layout_raw(
metadata: <Self as Pointee>::Metadata,
) -> Result<Layout, LayoutError> {
Layout::array::<u8>(metadata)
}
}
#[cfg(feature = "std")]
impl LayoutRaw for ::std::ffi::CStr {
#[inline]
fn layout_raw(
metadata: <Self as Pointee>::Metadata,
) -> Result<Layout, LayoutError> {
Layout::array::<::std::os::raw::c_char>(metadata)
}
}
/// A context that can validate nonlocal archive memory.
///
/// # Safety
///
/// TODO
pub unsafe trait ArchiveContext<E = <Self as Fallible>::Error> {
/// Checks that the given data address and layout is located completely
/// within the subtree range.
fn check_subtree_ptr(
&mut self,
ptr: *const u8,
layout: &Layout,
) -> Result<(), E>;
/// Pushes a new subtree range onto the validator and starts validating it.
///
/// After calling `push_subtree_claim_to`, the validator will have a subtree
/// range starting at the original start and ending at `root`. After
/// popping the returned range, the validator will have a subtree range
/// starting at `end` and ending at the original end.
///
/// # Safety
///
/// `root` and `end` must be located inside the archive.
unsafe fn push_prefix_subtree_range(
&mut self,
root: *const u8,
end: *const u8,
) -> Result<Range<usize>, E>;
// TODO: try to remove suffix subtree ranges
/// Pushes a new subtree range onto the validator and starts validating it.
///
/// After calling `push_prefix_subtree_range`, the validator will have a
/// subtree range starting at `start` and ending at `root`. After
/// popping the returned range, the validator will have a subtree range
/// starting at the original start and ending at `start`.
///
/// # Safety
///
/// `start` and `root` must be located inside the archive.
unsafe fn push_suffix_subtree_range(
&mut self,
start: *const u8,
root: *const u8,
) -> Result<Range<usize>, E>;
/// Pops the given range, restoring the original state with the pushed range
/// removed.
///
/// If the range was not popped in reverse order, an error is returned.
///
/// # Safety
///
/// - `range` must be a range returned from this validator.
/// - Ranges pushed after `range` must not be popped after calling
/// `pop_prefix_range`.
unsafe fn pop_subtree_range(
&mut self,
range: Range<usize>,
) -> Result<(), E>;
}
unsafe impl<T, E> ArchiveContext<E> for Strategy<T, E>
where
T: ArchiveContext<E>,
{
fn check_subtree_ptr(
&mut self,
ptr: *const u8,
layout: &Layout,
) -> Result<(), E> {
T::check_subtree_ptr(self, ptr, layout)
}
unsafe fn push_prefix_subtree_range(
&mut self,
root: *const u8,
end: *const u8,
) -> Result<Range<usize>, E> {
T::push_prefix_subtree_range(self, root, end)
}
unsafe fn push_suffix_subtree_range(
&mut self,
start: *const u8,
root: *const u8,
) -> Result<Range<usize>, E> {
T::push_suffix_subtree_range(self, start, root)
}
unsafe fn pop_subtree_range(
&mut self,
range: Range<usize>,
) -> Result<(), E> {
T::pop_subtree_range(self, range)
}
}
/// Helper methods for `ArchiveContext`s.
pub trait ArchiveContextExt<E>: ArchiveContext<E> {
/// Checks that the given relative pointer to a subtree can be dereferenced.
///
/// # Safety
///
/// - `base` must be inside the archive this validator was created for.
/// - `metadata` must be the metadata for the pointer defined by `base` and
/// `offset`.
unsafe fn bounds_check_subtree_base_offset<
T: LayoutRaw + Pointee + ?Sized,
>(
&mut self,
base: *const u8,
offset: isize,
metadata: T::Metadata,
) -> Result<*const T, E>;
/// Checks that the given `RelPtr` to a subtree can be dereferenced.
///
/// # Safety
///
/// - `rel_ptr` must be inside the archive this validator was created for.
unsafe fn bounds_check_subtree_rel_ptr<
T: ArchivePointee + LayoutRaw + ?Sized,
>(
&mut self,
rel_ptr: &RelPtr<T>,
) -> Result<*const T, E>;
/// Pushes a new subtree range onto the validator and starts validating it.
///
/// The claimed range spans from the end of `start` to the end of the
/// current subobject range.
///
/// # Safety
///
/// `root` must be located inside the archive.
unsafe fn push_prefix_subtree<T: LayoutRaw + ?Sized>(
&mut self,
root: *const T,
) -> Result<Range<usize>, E>;
}
impl<C: ArchiveContext<E> + ?Sized, E: Error> ArchiveContextExt<E> for C {
/// Checks that the given relative pointer to a subtree can be dereferenced.
///
/// # Safety
///
/// - `base` must be inside the archive this validator was created for.
/// - `metadata` must be the metadata for the pointer defined by `base` and
/// `offset`.
#[inline]
unsafe fn bounds_check_subtree_base_offset<
T: LayoutRaw + Pointee + ?Sized,
>(
&mut self,
base: *const u8,
offset: isize,
metadata: T::Metadata,
) -> Result<*const T, E> {
let ptr = base.wrapping_offset(offset);
let layout = T::layout_raw(metadata).into_error()?;
self.check_subtree_ptr(ptr, &layout)?;
Ok(ptr_meta::from_raw_parts(ptr.cast(), metadata))
}
/// Checks that the given `RelPtr` to a subtree can be dereferenced.
///
/// # Safety
///
/// - `rel_ptr` must be inside the archive this validator was created for.
#[inline]
unsafe fn bounds_check_subtree_rel_ptr<
T: ArchivePointee + LayoutRaw + ?Sized,
>(
&mut self,
rel_ptr: &RelPtr<T>,
) -> Result<*const T, E> {
self.bounds_check_subtree_base_offset(
rel_ptr.base(),
rel_ptr.offset(),
T::pointer_metadata(rel_ptr.metadata()),
)
}
/// Pushes a new subtree range onto the validator and starts validating it.
///
/// The claimed range spans from the end of `start` to the end of the
/// current subobject range.
///
/// # Safety
///
/// `root` must be located inside the archive.
#[inline]
unsafe fn push_prefix_subtree<T: LayoutRaw + ?Sized>(
&mut self,
root: *const T,
) -> Result<Range<usize>, E> {
let layout = T::layout_raw(ptr_meta::metadata(root)).into_error()?;
self.push_prefix_subtree_range(
root as *const u8,
(root as *const u8).add(layout.size()),
)
}
}
/// A context that can validate shared archive memory.
///
/// Shared pointers require this kind of context to validate.
pub trait SharedContext<E = <Self as Fallible>::Error> {
/// Registers the given `ptr` as a shared pointer with the given type.
///
/// Returns `true` if the pointer was newly-registered and `check_bytes`
/// should be called.
fn register_shared_ptr(
&mut self,
address: usize,
type_id: TypeId,
) -> Result<bool, E>;
}
impl<T, E> SharedContext<E> for Strategy<T, E>
where
T: SharedContext<E>,
{
fn register_shared_ptr(
&mut self,
address: usize,
type_id: TypeId,
) -> Result<bool, E> {
T::register_shared_ptr(self, address, type_id)
}
}