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("Communication failure with the Hypervisor Handler thread")]
129 HypervisorHandlerCommunicationFailure(),
130
131 #[error("Hypervisor Handler execution cancel attempt on a finished execution")]
135 HypervisorHandlerExecutionCancelAttemptOnFinishedExecution(),
136
137 #[error("Hypervisor Handler Message Receive Timedout")]
139 HypervisorHandlerMessageReceiveTimedout(),
140
141 #[error("Reading Writing or Seeking data failed {0:?}")]
143 IOError(#[from] std::io::Error),
144
145 #[error("Failed To Convert Size to usize")]
147 IntConversionFailure(#[from] TryFromIntError),
148
149 #[error("The flatbuffer is invalid")]
151 InvalidFlatBuffer(#[from] InvalidFlatbuffer),
152
153 #[error("Conversion of str data to json failed")]
155 JsonConversionFailure(#[from] serde_json::Error),
156
157 #[error("Unable to lock resource")]
159 LockAttemptFailed(String),
160
161 #[error("Memory Access Violation at address {0:#x} of type {1}, but memory is marked as {2}")]
163 MemoryAccessViolation(u64, MemoryRegionFlags, MemoryRegionFlags),
164
165 #[error("Memory Allocation Failed with OS Error {0:?}.")]
167 MemoryAllocationFailed(Option<i32>),
168
169 #[error("Memory Protection Failed with OS Error {0:?}.")]
171 MemoryProtectionFailed(Option<i32>),
172
173 #[error("Memory requested {0} exceeds maximum size allowed {1}")]
175 MemoryRequestTooBig(usize, usize),
176
177 #[error("Metric Not Found {0:?}.")]
179 MetricNotFound(&'static str),
180
181 #[error("mmap failed with os error {0:?}")]
183 MmapFailed(Option<i32>),
184
185 #[error("mprotect failed with os error {0:?}")]
187 MprotectFailed(Option<i32>),
188
189 #[error("mshv Error {0:?}")]
191 #[cfg(mshv)]
192 MSHVError(#[from] mshv_ioctls::MshvError),
193
194 #[error("No Hypervisor was found for Sandbox")]
196 NoHypervisorFound(),
197
198 #[error("Restore_state called with no valid snapshot")]
200 NoMemorySnapshot,
201
202 #[error("Failed To Convert Parameter Value {0:?} to {1:?}")]
204 ParameterValueConversionFailure(ParameterValue, &'static str),
205
206 #[error("Failure processing PE File {0:?}")]
208 PEFileProcessingFailure(#[from] goblin::error::Error),
209
210 #[error("Raw pointer ({0:?}) was less than the base address ({1})")]
212 RawPointerLessThanBaseAddress(RawPtr, u64),
213
214 #[error("RefCell borrow failed")]
216 RefCellBorrowFailed(#[from] BorrowError),
217
218 #[error("RefCell mut borrow failed")]
220 RefCellMutBorrowFailed(#[from] BorrowMutError),
221
222 #[error("Failed To Convert Return Value {0:?} to {1:?}")]
224 ReturnValueConversionFailure(ReturnValue, &'static str),
225
226 #[error("Stack overflow detected")]
228 StackOverflow(),
229
230 #[error("Backend Error with Seccomp Filter {0:?}")]
232 #[cfg(all(feature = "seccomp", target_os = "linux"))]
233 SeccompFilterBackendError(#[from] seccompiler::BackendError),
234
235 #[error("Error with Seccomp Filter {0:?}")]
237 #[cfg(all(feature = "seccomp", target_os = "linux"))]
238 SeccompFilterError(#[from] seccompiler::Error),
239
240 #[error("SystemTimeError {0:?}")]
242 SystemTimeError(#[from] SystemTimeError),
243
244 #[error("An error occurred when translating guest address: {0:?}")]
246 #[cfg(gdb)]
247 TranslateGuestAddress(u64),
248
249 #[error("TryFromSliceError {0:?}")]
251 TryFromSliceError(#[from] TryFromSliceError),
252
253 #[error("The number of arguments to the function is wrong: got {0:?} expected {1:?}")]
255 UnexpectedNoOfArguments(usize, usize),
256
257 #[error("The parameter value type is unexpected got {0:?} expected {1:?}")]
259 UnexpectedParameterValueType(ParameterValue, String),
260
261 #[error("The return value type is unexpected got {0:?} expected {1:?}")]
263 UnexpectedReturnValueType(ReturnValue, String),
264
265 #[error("String Conversion of UTF8 data to str failed")]
267 UTF8StringConversionFailure(#[from] FromUtf8Error),
268
269 #[error(
271 "The capacity of the vector is incorrect. Capacity: {0}, Length: {1}, FlatBuffer Size: {2}"
272 )]
273 VectorCapacityIncorrect(usize, usize, i32),
274
275 #[error("vmm sys Error {0:?}")]
277 #[cfg(target_os = "linux")]
278 VmmSysError(#[from] vmm_sys_util::errno::Error),
279
280 #[cfg(target_os = "windows")]
282 #[error("Windows API Error Result {0:?}")]
283 WindowsAPIError(#[from] windows_result::Error),
284}
285
286impl From<Infallible> for HyperlightError {
287 fn from(_: Infallible) -> Self {
288 "Impossible as this is an infallible error".into()
289 }
290}
291
292impl From<&str> for HyperlightError {
293 fn from(s: &str) -> Self {
294 HyperlightError::Error(s.to_string())
295 }
296}
297
298impl<T> From<PoisonError<MutexGuard<'_, T>>> for HyperlightError {
299 fn from(e: PoisonError<MutexGuard<'_, T>>) -> Self {
303 let source = match e.source() {
304 Some(s) => s.to_string(),
305 None => String::from(""),
306 };
307 HyperlightError::LockAttemptFailed(source)
308 }
309}
310
311#[macro_export]
313macro_rules! new_error {
314 ($msg:literal $(,)?) => {{
315 let __args = std::format_args!($msg);
316 let __err_msg = match __args.as_str() {
317 Some(msg) => String::from(msg),
318 None => std::format!($msg),
319 };
320 $crate::HyperlightError::Error(__err_msg)
321 }};
322 ($fmtstr:expr, $($arg:tt)*) => {{
323 let __err_msg = std::format!($fmtstr, $($arg)*);
324 $crate::error::HyperlightError::Error(__err_msg)
325 }};
326}