1#[cfg(mshv2)]
18extern crate mshv_ioctls2 as mshv_ioctls;
19
20#[cfg(mshv3)]
21extern crate mshv_ioctls3 as mshv_ioctls;
22
23use std::array::TryFromSliceError;
24use std::cell::{BorrowError, BorrowMutError};
25use std::convert::Infallible;
26use std::error::Error;
27use std::num::TryFromIntError;
28use std::string::FromUtf8Error;
29use std::sync::{MutexGuard, PoisonError};
30use std::time::SystemTimeError;
31
32#[cfg(target_os = "windows")]
33use crossbeam_channel::{RecvError, SendError};
34use flatbuffers::InvalidFlatbuffer;
35use hyperlight_common::flatbuffer_wrappers::function_types::{ParameterValue, ReturnValue};
36use hyperlight_common::flatbuffer_wrappers::guest_error::ErrorCode;
37use thiserror::Error;
38
39#[cfg(target_os = "windows")]
40use crate::hypervisor::wrappers::HandleWrapper;
41use crate::mem::memory_region::MemoryRegionFlags;
42use crate::mem::ptr::RawPtr;
43
44#[derive(Error, Debug)]
46pub enum HyperlightError {
47 #[error("Anyhow Error was returned: {0}")]
49 AnyhowError(#[from] anyhow::Error),
50 #[error("Offset: {0} out of bounds, Max is: {1}")]
52 BoundsCheckFailed(u64, usize),
53
54 #[error("Couldn't add offset to base address. Offset: {0}, Base Address: {1}")]
56 CheckedAddOverflow(u64, u64),
57
58 #[error("{0:?}")]
60 #[cfg(target_os = "windows")]
61 CrossBeamReceiveError(#[from] RecvError),
62
63 #[error("{0:?}")]
65 #[cfg(target_os = "windows")]
66 CrossBeamSendError(#[from] SendError<HandleWrapper>),
67
68 #[error("Error converting CString {0:?}")]
70 CStringConversionError(#[from] std::ffi::NulError),
71
72 #[error("Seccomp filter trapped on disallowed syscall (check STDERR for offending syscall)")]
74 #[cfg(all(feature = "seccomp", target_os = "linux"))]
75 DisallowedSyscall,
76
77 #[error("{0}")]
79 Error(String),
80
81 #[error("Non-executable address {0:#x} tried to be executed")]
83 ExecutionAccessViolation(u64),
84
85 #[error("Execution was cancelled by the host.")]
87 ExecutionCanceledByHost(),
88
89 #[error("Failed to get a value from flat buffer parameter")]
91 FailedToGetValueFromParameter(),
92
93 #[error("Field Name {0} not found in decoded GuestLogData")]
95 FieldIsMissingInGuestLogData(String),
96
97 #[error("Guest aborted: {0} {1}")]
99 GuestAborted(u8, String),
100
101 #[error("Guest error occurred {0:?}: {1}")]
103 GuestError(ErrorCode, String),
104
105 #[error("Guest execution hung on the execution of a host function call")]
107 GuestExecutionHungOnHostFunctionCall(),
108
109 #[error("Guest call is already in progress")]
111 GuestFunctionCallAlreadyInProgress(),
112
113 #[error("Unsupported type: {0}")]
115 GuestInterfaceUnsupportedType(String),
116
117 #[error("The guest offset {0} is invalid.")]
119 GuestOffsetIsInvalid(usize),
120
121 #[error("HostFunction {0} was not found")]
123 HostFunctionNotFound(String),
124
125 #[error("Reading Writing or Seeking data failed {0:?}")]
127 IOError(#[from] std::io::Error),
128
129 #[error("Failed To Convert Size to usize")]
131 IntConversionFailure(#[from] TryFromIntError),
132
133 #[error("The flatbuffer is invalid")]
135 InvalidFlatBuffer(#[from] InvalidFlatbuffer),
136
137 #[error("Conversion of str data to json failed")]
139 JsonConversionFailure(#[from] serde_json::Error),
140
141 #[error("KVM Error {0:?}")]
143 #[cfg(kvm)]
144 KVMError(#[from] kvm_ioctls::Error),
145
146 #[error("Unable to lock resource")]
148 LockAttemptFailed(String),
149
150 #[error("Memory Access Violation at address {0:#x} of type {1}, but memory is marked as {2}")]
152 MemoryAccessViolation(u64, MemoryRegionFlags, MemoryRegionFlags),
153
154 #[error("Memory Allocation Failed with OS Error {0:?}.")]
156 MemoryAllocationFailed(Option<i32>),
157
158 #[error("Memory Protection Failed with OS Error {0:?}.")]
160 MemoryProtectionFailed(Option<i32>),
161
162 #[error("Memory requested {0} exceeds maximum size allowed {1}")]
164 MemoryRequestTooBig(usize, usize),
165
166 #[error("Metric Not Found {0:?}.")]
168 MetricNotFound(&'static str),
169
170 #[error("mmap failed with os error {0:?}")]
172 MmapFailed(Option<i32>),
173
174 #[error("mprotect failed with os error {0:?}")]
176 MprotectFailed(Option<i32>),
177
178 #[error("mshv Error {0:?}")]
180 #[cfg(mshv)]
181 MSHVError(#[from] mshv_ioctls::MshvError),
182
183 #[error("No Hypervisor was found for Sandbox")]
185 NoHypervisorFound(),
186
187 #[error("Restore_state called with no valid snapshot")]
189 NoMemorySnapshot,
190
191 #[error("Failed To Convert Parameter Value {0:?} to {1:?}")]
193 ParameterValueConversionFailure(ParameterValue, &'static str),
194
195 #[error("Failure processing PE File {0:?}")]
197 PEFileProcessingFailure(#[from] goblin::error::Error),
198
199 #[error("Raw pointer ({0:?}) was less than the base address ({1})")]
201 RawPointerLessThanBaseAddress(RawPtr, u64),
202
203 #[error("RefCell borrow failed")]
205 RefCellBorrowFailed(#[from] BorrowError),
206
207 #[error("RefCell mut borrow failed")]
209 RefCellMutBorrowFailed(#[from] BorrowMutError),
210
211 #[error("Failed To Convert Return Value {0:?} to {1:?}")]
213 ReturnValueConversionFailure(ReturnValue, &'static str),
214
215 #[error("Stack overflow detected")]
217 StackOverflow(),
218
219 #[error("Backend Error with Seccomp Filter {0:?}")]
221 #[cfg(all(feature = "seccomp", target_os = "linux"))]
222 SeccompFilterBackendError(#[from] seccompiler::BackendError),
223
224 #[error("Error with Seccomp Filter {0:?}")]
226 #[cfg(all(feature = "seccomp", target_os = "linux"))]
227 SeccompFilterError(#[from] seccompiler::Error),
228
229 #[error("Snapshot was taken from a different sandbox")]
231 SnapshotSandboxMismatch,
232
233 #[error("SystemTimeError {0:?}")]
235 SystemTimeError(#[from] SystemTimeError),
236
237 #[error("An error occurred when translating guest address: {0:?}")]
239 #[cfg(gdb)]
240 TranslateGuestAddress(u64),
241
242 #[error("TryFromSliceError {0:?}")]
244 TryFromSliceError(#[from] TryFromSliceError),
245
246 #[error("The number of arguments to the function is wrong: got {0:?} expected {1:?}")]
248 UnexpectedNoOfArguments(usize, usize),
249
250 #[error("The parameter value type is unexpected got {0:?} expected {1:?}")]
252 UnexpectedParameterValueType(ParameterValue, String),
253
254 #[error("The return value type is unexpected got {0:?} expected {1:?}")]
256 UnexpectedReturnValueType(ReturnValue, String),
257
258 #[error("String Conversion of UTF8 data to str failed")]
260 UTF8StringConversionFailure(#[from] FromUtf8Error),
261
262 #[error(
264 "The capacity of the vector is incorrect. Capacity: {0}, Length: {1}, FlatBuffer Size: {2}"
265 )]
266 VectorCapacityIncorrect(usize, usize, i32),
267
268 #[error("vmm sys Error {0:?}")]
270 #[cfg(target_os = "linux")]
271 VmmSysError(vmm_sys_util::errno::Error),
272
273 #[cfg(target_os = "windows")]
275 #[error("Windows API Error Result {0:?}")]
276 WindowsAPIError(#[from] windows_result::Error),
277}
278
279impl From<Infallible> for HyperlightError {
280 fn from(_: Infallible) -> Self {
281 "Impossible as this is an infallible error".into()
282 }
283}
284
285impl From<&str> for HyperlightError {
286 fn from(s: &str) -> Self {
287 HyperlightError::Error(s.to_string())
288 }
289}
290
291impl<T> From<PoisonError<MutexGuard<'_, T>>> for HyperlightError {
292 fn from(e: PoisonError<MutexGuard<'_, T>>) -> Self {
296 let source = match e.source() {
297 Some(s) => s.to_string(),
298 None => String::from(""),
299 };
300 HyperlightError::LockAttemptFailed(source)
301 }
302}
303
304#[macro_export]
306macro_rules! new_error {
307 ($msg:literal $(,)?) => {{
308 let __args = std::format_args!($msg);
309 let __err_msg = match __args.as_str() {
310 Some(msg) => String::from(msg),
311 None => std::format!($msg),
312 };
313 $crate::HyperlightError::Error(__err_msg)
314 }};
315 ($fmtstr:expr, $($arg:tt)*) => {{
316 let __err_msg = std::format!($fmtstr, $($arg)*);
317 $crate::error::HyperlightError::Error(__err_msg)
318 }};
319}