1 | /** @file
|
---|
2 | * VirtualBox Status Codes.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2015 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_err_h
|
---|
27 | #define ___VBox_err_h
|
---|
28 |
|
---|
29 | #include <VBox/cdefs.h>
|
---|
30 | #include <iprt/err.h>
|
---|
31 |
|
---|
32 |
|
---|
33 | /** @defgroup grp_err VBox Error Codes
|
---|
34 | * @{
|
---|
35 | */
|
---|
36 |
|
---|
37 | /* SED-START */
|
---|
38 |
|
---|
39 | /** @name Misc. Status Codes
|
---|
40 | * @{
|
---|
41 | */
|
---|
42 | /** Failed to allocate VM memory. */
|
---|
43 | #define VERR_NO_VM_MEMORY (-1000)
|
---|
44 | /** RC is toasted and the VMM should be terminated at once, but no need to
|
---|
45 | * panic about it :-) */
|
---|
46 | #define VERR_DONT_PANIC (-1001)
|
---|
47 | /** Unsupported CPU. */
|
---|
48 | #define VERR_UNSUPPORTED_CPU (-1002)
|
---|
49 | /** Unsupported CPU mode. */
|
---|
50 | #define VERR_UNSUPPORTED_CPU_MODE (-1003)
|
---|
51 | /** Page not present. */
|
---|
52 | #define VERR_PAGE_NOT_PRESENT (-1004)
|
---|
53 | /** Invalid/Corrupted configuration file. */
|
---|
54 | #define VERR_CFG_INVALID_FORMAT (-1005)
|
---|
55 | /** No configuration value exists. */
|
---|
56 | #define VERR_CFG_NO_VALUE (-1006)
|
---|
57 | /** Selector not present. */
|
---|
58 | #define VERR_SELECTOR_NOT_PRESENT (-1007)
|
---|
59 | /** Not code selector. */
|
---|
60 | #define VERR_NOT_CODE_SELECTOR (-1008)
|
---|
61 | /** Not data selector. */
|
---|
62 | #define VERR_NOT_DATA_SELECTOR (-1009)
|
---|
63 | /** Out of selector bounds. */
|
---|
64 | #define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
|
---|
65 | /** Invalid selector. Usually beyond table limits. */
|
---|
66 | #define VERR_INVALID_SELECTOR (-1011)
|
---|
67 | /** Invalid requested privilege level. */
|
---|
68 | #define VERR_INVALID_RPL (-1012)
|
---|
69 | /** PML4 entry not present. */
|
---|
70 | #define VERR_PAGE_MAP_LEVEL4_NOT_PRESENT (-1013)
|
---|
71 | /** Page directory pointer not present. */
|
---|
72 | #define VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT (-1014)
|
---|
73 | /** Raw mode doesn't support SMP. */
|
---|
74 | #define VERR_RAW_MODE_INVALID_SMP (-1015)
|
---|
75 | /** Invalid VM handle. */
|
---|
76 | #define VERR_INVALID_VM_HANDLE (-1016)
|
---|
77 | /** Invalid VM handle. */
|
---|
78 | #define VERR_INVALID_VMCPU_HANDLE (-1017)
|
---|
79 | /** Invalid Virtual CPU ID. */
|
---|
80 | #define VERR_INVALID_CPU_ID (-1018)
|
---|
81 | /** Too many VCPUs. */
|
---|
82 | #define VERR_TOO_MANY_CPUS (-1019)
|
---|
83 | /** The service was disabled on the host.
|
---|
84 | * Returned by pfnInit in VBoxService to indicated a non-fatal error that
|
---|
85 | * should results in the particular service being disabled. */
|
---|
86 | #define VERR_SERVICE_DISABLED (-1020)
|
---|
87 | /** The requested feature is not supported in raw-mode. */
|
---|
88 | #define VERR_NOT_SUP_IN_RAW_MODE (-1021)
|
---|
89 | /** Invalid CPU index. */
|
---|
90 | #define VERR_INVALID_CPU_INDEX (-1022)
|
---|
91 | /** This VirtualBox build does not support raw-mode. */
|
---|
92 | #define VERR_RAW_MODE_NOT_SUPPORTED (-1023)
|
---|
93 | /** @} */
|
---|
94 |
|
---|
95 |
|
---|
96 | /** @name Execution Monitor/Manager (EM) Status Codes
|
---|
97 | *
|
---|
98 | * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
|
---|
99 | * are of vital importance. The lower the number the higher importance
|
---|
100 | * as a scheduling instruction.
|
---|
101 | * @{
|
---|
102 | */
|
---|
103 | /** First scheduling related status code. */
|
---|
104 | #define VINF_EM_FIRST 1100
|
---|
105 | /** Indicating that the VM is being terminated and that the execution
|
---|
106 | * shall stop. */
|
---|
107 | #define VINF_EM_TERMINATE 1100
|
---|
108 | /** Hypervisor code was stepped.
|
---|
109 | * EM will first send this to the debugger, and if the issue isn't
|
---|
110 | * resolved there it will enter guru meditation. */
|
---|
111 | #define VINF_EM_DBG_HYPER_STEPPED 1101
|
---|
112 | /** Hit a breakpoint in the hypervisor code,
|
---|
113 | * EM will first send this to the debugger, and if the issue isn't
|
---|
114 | * resolved there it will enter guru meditation. */
|
---|
115 | #define VINF_EM_DBG_HYPER_BREAKPOINT 1102
|
---|
116 | /** Hit a possible assertion in the hypervisor code,
|
---|
117 | * EM will first send this to the debugger, and if the issue isn't
|
---|
118 | * resolved there it will enter guru meditation. */
|
---|
119 | #define VINF_EM_DBG_HYPER_ASSERTION 1103
|
---|
120 | /** Indicating that the VM should be suspended for debugging because
|
---|
121 | * the developer wants to inspect the VM state. */
|
---|
122 | #define VINF_EM_DBG_STOP 1105
|
---|
123 | /** Indicating success single stepping and that EM should report that
|
---|
124 | * event to the debugger. */
|
---|
125 | #define VINF_EM_DBG_STEPPED 1106
|
---|
126 | /** Indicating that a breakpoint was hit and that EM should notify the debugger
|
---|
127 | * and in the event there is no debugger fail fatally. */
|
---|
128 | #define VINF_EM_DBG_BREAKPOINT 1107
|
---|
129 | /** Indicating that EM should single step an instruction.
|
---|
130 | * The instruction is stepped in the current execution mode (RAW/REM). */
|
---|
131 | #define VINF_EM_DBG_STEP 1108
|
---|
132 | /** Indicating that the VM is being turned off and that the EM should
|
---|
133 | * exit to the VM awaiting the destruction request. */
|
---|
134 | #define VINF_EM_OFF 1109
|
---|
135 | /** Indicating that the VM has been suspended and that the thread
|
---|
136 | * should wait for request telling it what to do next. */
|
---|
137 | #define VINF_EM_SUSPEND 1110
|
---|
138 | /** Indicating that the VM has been reset and that scheduling goes
|
---|
139 | * back to startup defaults. */
|
---|
140 | #define VINF_EM_RESET 1111
|
---|
141 | /** Indicating that the VM has executed a halt instruction and that
|
---|
142 | * the emulation thread should wait for an interrupt before resuming
|
---|
143 | * execution. */
|
---|
144 | #define VINF_EM_HALT 1112
|
---|
145 | /** Indicating that the VM has been resumed and that the thread should
|
---|
146 | * start executing. */
|
---|
147 | #define VINF_EM_RESUME 1113
|
---|
148 | /** Indicating that we've got an out-of-memory condition and that we need
|
---|
149 | * to take the appropriate actions to deal with this.
|
---|
150 | * @remarks It might seem odd at first that this has lower priority than VINF_EM_HALT,
|
---|
151 | * VINF_EM_SUSPEND, and VINF_EM_RESUME. The reason is that these events are
|
---|
152 | * vital to correctly operating the VM. Also, they can't normally occur together
|
---|
153 | * with an out-of-memory condition, and even if that should happen the condition
|
---|
154 | * will be rediscovered before executing any more code. */
|
---|
155 | #define VINF_EM_NO_MEMORY 1114
|
---|
156 | /** The fatal variant of VINF_EM_NO_MEMORY. */
|
---|
157 | #define VERR_EM_NO_MEMORY (-1114)
|
---|
158 | /** Indicating that a rescheduling to recompiled execution.
|
---|
159 | * Typically caused by raw-mode executing code which is difficult/slow
|
---|
160 | * to virtualize rawly.
|
---|
161 | * @remarks Important to have a higher priority (lower number) than the other rescheduling status codes. */
|
---|
162 | #define VINF_EM_RESCHEDULE_REM 1115
|
---|
163 | /** Indicating that a rescheduling to vmx-mode execution.
|
---|
164 | * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible. */
|
---|
165 | #define VINF_EM_RESCHEDULE_HM 1116
|
---|
166 | /** Indicating that a rescheduling to raw-mode execution.
|
---|
167 | * Typically caused by REM detecting that raw-mode execution is possible.
|
---|
168 | * @remarks Important to have a higher priority (lower number) than VINF_EM_RESCHEDULE. */
|
---|
169 | #define VINF_EM_RESCHEDULE_RAW 1117
|
---|
170 | /** Indicating that a rescheduling now is required. Typically caused by
|
---|
171 | * interrupts having changed the EIP. */
|
---|
172 | #define VINF_EM_RESCHEDULE 1118
|
---|
173 | /** PARAV call */
|
---|
174 | #define VINF_EM_RESCHEDULE_PARAV 1119
|
---|
175 | /** Go back into wait for SIPI mode */
|
---|
176 | #define VINF_EM_WAIT_SIPI 1120
|
---|
177 | /** Last scheduling related status code. (inclusive) */
|
---|
178 | #define VINF_EM_LAST 1120
|
---|
179 |
|
---|
180 | /** Reason for leaving RC: Guest trap which couldn't be handled in RC.
|
---|
181 | * The trap is generally forwarded to the REM and executed there. */
|
---|
182 | #define VINF_EM_RAW_GUEST_TRAP 1121
|
---|
183 | /** Reason for leaving RC: Interrupted by external interrupt.
|
---|
184 | * The interrupt needed to be handled by the host OS. */
|
---|
185 | #define VINF_EM_RAW_INTERRUPT 1122
|
---|
186 | /** Reason for leaving RC: Interrupted by external interrupt while in hypervisor
|
---|
187 | * code. The interrupt needed to be handled by the host OS and hypervisor
|
---|
188 | * execution must be resumed. VM state is not complete at this point. */
|
---|
189 | #define VINF_EM_RAW_INTERRUPT_HYPER 1123
|
---|
190 | /** Reason for leaving RC: A Ring switch was attempted.
|
---|
191 | * Normal cause of action is to execute this in REM. */
|
---|
192 | #define VINF_EM_RAW_RING_SWITCH 1124
|
---|
193 | /** Reason for leaving RC: A Ring switch was attempted using software interrupt.
|
---|
194 | * Normal cause of action is to execute this in REM. */
|
---|
195 | #define VINF_EM_RAW_RING_SWITCH_INT 1125
|
---|
196 | /** Reason for leaving RC: A privileged instruction was attempted executed.
|
---|
197 | * Normal cause of action is to execute this in REM. */
|
---|
198 | #define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1126
|
---|
199 |
|
---|
200 | /** Reason for leaving RZ: Emulate instruction. */
|
---|
201 | #define VINF_EM_RAW_EMULATE_INSTR 1127
|
---|
202 | /** Reason for leaving RC: Unhandled TSS write.
|
---|
203 | * Recompiler gets control. */
|
---|
204 | #define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1128
|
---|
205 | /** Reason for leaving RC: Unhandled LDT write.
|
---|
206 | * Recompiler gets control. */
|
---|
207 | #define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1129
|
---|
208 | /** Reason for leaving RC: Unhandled IDT write.
|
---|
209 | * Recompiler gets control. */
|
---|
210 | #define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1130
|
---|
211 | /** Reason for leaving RC: Partly handled GDT write.
|
---|
212 | * Recompiler gets control. */
|
---|
213 | #define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1131
|
---|
214 | /** Reason for leaving RC: jump inside generated patch jump.
|
---|
215 | * Fatal error. */
|
---|
216 | #define VERR_EM_RAW_PATCH_CONFLICT (-1133)
|
---|
217 | /** Reason for leaving RZ: Ring-3 operation pending. */
|
---|
218 | #define VINF_EM_RAW_TO_R3 1135
|
---|
219 | /** Reason for leaving RZ: Timer pending. */
|
---|
220 | #define VINF_EM_RAW_TIMER_PENDING 1136
|
---|
221 | /** Reason for leaving RC: Interrupt pending (guest). */
|
---|
222 | #define VINF_EM_RAW_INTERRUPT_PENDING 1137
|
---|
223 | /** Reason for leaving RC: Encountered a stale selector. */
|
---|
224 | #define VINF_EM_RAW_STALE_SELECTOR 1138
|
---|
225 | /** Reason for leaving RC: The IRET resuming guest code trapped. */
|
---|
226 | #define VINF_EM_RAW_IRET_TRAP 1139
|
---|
227 | /** Reason for leaving RC: Emulate (MM)IO intensive code in the recompiler. */
|
---|
228 | #define VINF_EM_RAW_EMULATE_IO_BLOCK 1140
|
---|
229 | /** The interpreter was unable to deal with the instruction at hand. */
|
---|
230 | #define VERR_EM_INTERPRETER (-1148)
|
---|
231 | /** Internal EM error caused by an unknown warning or informational status code. */
|
---|
232 | #define VERR_EM_INTERNAL_ERROR (-1149)
|
---|
233 | /** Pending VM request packet. */
|
---|
234 | #define VINF_EM_PENDING_REQUEST 1150
|
---|
235 | /** Start instruction stepping (debug only). */
|
---|
236 | #define VINF_EM_RAW_EMULATE_DBG_STEP 1151
|
---|
237 | /** Patch TPR access instruction. */
|
---|
238 | #define VINF_EM_HM_PATCH_TPR_INSTR 1152
|
---|
239 | /** Unexpected guest mapping conflict detected. */
|
---|
240 | #define VERR_EM_UNEXPECTED_MAPPING_CONFLICT (-1154)
|
---|
241 | /** Reason for leaving RC: A triple-fault condition. Currently, causes
|
---|
242 | * a guru meditation. */
|
---|
243 | #define VINF_EM_TRIPLE_FAULT 1155
|
---|
244 | /** The specified execution engine cannot execute guest code in the current
|
---|
245 | * state. */
|
---|
246 | #define VERR_EM_CANNOT_EXEC_GUEST (-1156)
|
---|
247 | /** Reason for leaving RC: Inject a TRPM event. */
|
---|
248 | #define VINF_EM_RAW_INJECT_TRPM_EVENT 1157
|
---|
249 | /** @} */
|
---|
250 |
|
---|
251 |
|
---|
252 | /** @name Debugging Facility (DBGF) DBGF Status Codes
|
---|
253 | * @{
|
---|
254 | */
|
---|
255 | /** The function called requires the caller to be attached as a
|
---|
256 | * debugger to the VM. */
|
---|
257 | #define VERR_DBGF_NOT_ATTACHED (-1200)
|
---|
258 | /** Someone (including the caller) was already attached as
|
---|
259 | * debugger to the VM. */
|
---|
260 | #define VERR_DBGF_ALREADY_ATTACHED (-1201)
|
---|
261 | /** Tried to halt a debugger which was already halted.
|
---|
262 | * (This is a warning and not an error.) */
|
---|
263 | #define VWRN_DBGF_ALREADY_HALTED 1202
|
---|
264 | /** The DBGF has no more free breakpoint slots. */
|
---|
265 | #define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
|
---|
266 | /** The DBGF couldn't find the specified breakpoint. */
|
---|
267 | #define VERR_DBGF_BP_NOT_FOUND (-1204)
|
---|
268 | /** Attempted to enabled a breakpoint which was already enabled. */
|
---|
269 | #define VINF_DBGF_BP_ALREADY_ENABLED 1205
|
---|
270 | /** Attempted to disabled a breakpoint which was already disabled. */
|
---|
271 | #define VINF_DBGF_BP_ALREADY_DISABLED 1206
|
---|
272 | /** The breakpoint already exists. */
|
---|
273 | #define VINF_DBGF_BP_ALREADY_EXIST 1207
|
---|
274 | /** The byte string was not found. */
|
---|
275 | #define VERR_DBGF_MEM_NOT_FOUND (-1208)
|
---|
276 | /** The OS was not detected. */
|
---|
277 | #define VERR_DBGF_OS_NOT_DETCTED (-1209)
|
---|
278 | /** The OS was not detected. */
|
---|
279 | #define VINF_DBGF_OS_NOT_DETCTED 1209
|
---|
280 | /** The specified register was not found. */
|
---|
281 | #define VERR_DBGF_REGISTER_NOT_FOUND (-1210)
|
---|
282 | /** The value was truncated to fit.
|
---|
283 | * For queries this means that the register is wider than the queried value.
|
---|
284 | * For setters this means that the value is wider than the register. */
|
---|
285 | #define VINF_DBGF_TRUNCATED_REGISTER 1211
|
---|
286 | /** The value was zero extended to fit.
|
---|
287 | * For queries this means that the register is narrower than the queried value.
|
---|
288 | * For setters this means that the value is narrower than the register. */
|
---|
289 | #define VINF_DBGF_ZERO_EXTENDED_REGISTER 1212
|
---|
290 | /** The requested type conversion was not supported. */
|
---|
291 | #define VERR_DBGF_UNSUPPORTED_CAST (-1213)
|
---|
292 | /** The register is read-only and cannot be modified. */
|
---|
293 | #define VERR_DBGF_READ_ONLY_REGISTER (-1214)
|
---|
294 | /** Internal processing error \#1 in the DBGF register code. */
|
---|
295 | #define VERR_DBGF_REG_IPE_1 (-1215)
|
---|
296 | /** Internal processing error \#2 in the DBGF register code. */
|
---|
297 | #define VERR_DBGF_REG_IPE_2 (-1216)
|
---|
298 | /** Unhandled \#DB in hypervisor code. */
|
---|
299 | #define VERR_DBGF_HYPER_DB_XCPT (-1217)
|
---|
300 | /** Internal processing error \#1 in the DBGF stack code. */
|
---|
301 | #define VERR_DBGF_STACK_IPE_1 (-1218)
|
---|
302 | /** Internal processing error \#2 in the DBGF stack code. */
|
---|
303 | #define VERR_DBGF_STACK_IPE_2 (-1219)
|
---|
304 | /** No trace buffer available, please change the VM config. */
|
---|
305 | #define VERR_DBGF_NO_TRACE_BUFFER (-1220)
|
---|
306 | /** @} */
|
---|
307 |
|
---|
308 |
|
---|
309 | /** @name Patch Manager (PATM) Status Codes
|
---|
310 | * @{
|
---|
311 | */
|
---|
312 | /** Non fatal Patch Manager analysis phase warning */
|
---|
313 | #define VWRN_CONTINUE_ANALYSIS 1400
|
---|
314 | /** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
|
---|
315 | #define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
|
---|
316 | /** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
|
---|
317 | #define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
|
---|
318 | /** Patch installation refused (patch too complex or unsupported instructions ) */
|
---|
319 | #define VERR_PATCHING_REFUSED (-1401)
|
---|
320 | /** Unable to find patch */
|
---|
321 | #define VERR_PATCH_NOT_FOUND (-1402)
|
---|
322 | /** Patch disabled */
|
---|
323 | #define VERR_PATCH_DISABLED (-1403)
|
---|
324 | /** Patch enabled */
|
---|
325 | #define VWRN_PATCH_ENABLED 1404
|
---|
326 | /** Patch was already disabled */
|
---|
327 | #define VERR_PATCH_ALREADY_DISABLED (-1405)
|
---|
328 | /** Patch was already enabled */
|
---|
329 | #define VERR_PATCH_ALREADY_ENABLED (-1406)
|
---|
330 | /** Patch was removed. */
|
---|
331 | #define VWRN_PATCH_REMOVED 1407
|
---|
332 |
|
---|
333 | /** Reason for leaving RC: \#GP with EIP pointing to patch code. */
|
---|
334 | #define VINF_PATM_PATCH_TRAP_GP 1408
|
---|
335 | /** First leave RC code. */
|
---|
336 | #define VINF_PATM_LEAVE_RC_FIRST VINF_PATM_PATCH_TRAP_GP
|
---|
337 | /** Reason for leaving RC: \#PF with EIP pointing to patch code. */
|
---|
338 | #define VINF_PATM_PATCH_TRAP_PF 1409
|
---|
339 | /** Reason for leaving RC: int3 with EIP pointing to patch code. */
|
---|
340 | #define VINF_PATM_PATCH_INT3 1410
|
---|
341 | /** Reason for leaving RC: \#PF for monitored patch page. */
|
---|
342 | #define VINF_PATM_CHECK_PATCH_PAGE 1411
|
---|
343 | /** Reason for leaving RC: duplicate instruction called at current eip. */
|
---|
344 | #define VINF_PATM_DUPLICATE_FUNCTION 1412
|
---|
345 | /** Execute one instruction with the recompiler */
|
---|
346 | #define VINF_PATCH_EMULATE_INSTR 1413
|
---|
347 | /** Reason for leaving RC: attempt to patch MMIO write. */
|
---|
348 | #define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
|
---|
349 | /** Reason for leaving RC: attempt to patch MMIO read. */
|
---|
350 | #define VINF_PATM_HC_MMIO_PATCH_READ 1415
|
---|
351 | /** Reason for leaving RC: pending irq after iret that sets IF. */
|
---|
352 | #define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
|
---|
353 | /** Last leave RC code. */
|
---|
354 | #define VINF_PATM_LEAVE_RC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
|
---|
355 |
|
---|
356 | /** No conflicts to resolve */
|
---|
357 | #define VERR_PATCH_NO_CONFLICT (-1425)
|
---|
358 | /** Detected unsafe code for patching */
|
---|
359 | #define VERR_PATM_UNSAFE_CODE (-1426)
|
---|
360 | /** Terminate search branch */
|
---|
361 | #define VWRN_PATCH_END_BRANCH 1427
|
---|
362 | /** Already patched */
|
---|
363 | #define VERR_PATM_ALREADY_PATCHED (-1428)
|
---|
364 | /** Spinlock detection failed. */
|
---|
365 | #define VINF_PATM_SPINLOCK_FAILED (1429)
|
---|
366 | /** Continue execution after patch trap. */
|
---|
367 | #define VINF_PATCH_CONTINUE (1430)
|
---|
368 | /** The patch manager is not used because we're using HM and VT-x/AMD-V. */
|
---|
369 | #define VERR_PATM_HM_IPE (-1431)
|
---|
370 | /** Unexpected trap in patch code. */
|
---|
371 | #define VERR_PATM_IPE_TRAP_IN_PATCH_CODE (-1432)
|
---|
372 |
|
---|
373 | /** @} */
|
---|
374 |
|
---|
375 |
|
---|
376 | /** @name Code Scanning and Analysis Manager (CSAM) Status Codes
|
---|
377 | * @{
|
---|
378 | */
|
---|
379 | /** Trap not handled */
|
---|
380 | #define VWRN_CSAM_TRAP_NOT_HANDLED 1500
|
---|
381 | /** Patch installed */
|
---|
382 | #define VWRN_CSAM_INSTRUCTION_PATCHED 1501
|
---|
383 | /** Page record not found */
|
---|
384 | #define VWRN_CSAM_PAGE_NOT_FOUND 1502
|
---|
385 | /** Reason for leaving RC: CSAM wants perform a task in ring-3. */
|
---|
386 | #define VINF_CSAM_PENDING_ACTION 1503
|
---|
387 | /** The CSAM is not used because we're using HM and VT-x/AMD-V. */
|
---|
388 | #define VERR_CSAM_HM_IPE (-1504)
|
---|
389 | /** @} */
|
---|
390 |
|
---|
391 |
|
---|
392 | /** @name Page Monitor/Manager (PGM) Status Codes
|
---|
393 | * @{
|
---|
394 | */
|
---|
395 | /** Attempt to create a GC mapping which conflicts with an existing mapping. */
|
---|
396 | #define VERR_PGM_MAPPING_CONFLICT (-1600)
|
---|
397 | /** The physical handler range has no corresponding RAM range.
|
---|
398 | * If this is MMIO, see todo above the return. If not MMIO, then it's
|
---|
399 | * someone else's fault... */
|
---|
400 | #define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
|
---|
401 | /** Attempt to register an access handler for a virtual range of which a part
|
---|
402 | * was already handled. */
|
---|
403 | #define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
|
---|
404 | /** Attempt to register an access handler for a physical range of which a part
|
---|
405 | * was already handled. */
|
---|
406 | #define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
|
---|
407 | /** Invalid page directory specified to PGM. */
|
---|
408 | #define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
|
---|
409 | /** Invalid GC physical address. */
|
---|
410 | #define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
|
---|
411 | /** Invalid GC physical range. Usually used when a specified range crosses
|
---|
412 | * a RAM region boundary. */
|
---|
413 | #define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
|
---|
414 | /** Specified access handler was not found. */
|
---|
415 | #define VERR_PGM_HANDLER_NOT_FOUND (-1607)
|
---|
416 | /** Attempt to register a RAM range of which parts are already
|
---|
417 | * covered by existing RAM ranges. */
|
---|
418 | #define VERR_PGM_RAM_CONFLICT (-1608)
|
---|
419 | /** Failed to add new mappings because the current mappings are fixed
|
---|
420 | * in guest os memory. */
|
---|
421 | #define VERR_PGM_MAPPINGS_FIXED (-1609)
|
---|
422 | /** Failed to fix mappings because of a conflict with the intermediate code. */
|
---|
423 | #define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
|
---|
424 | /** Failed to fix mappings because a mapping rejected the address. */
|
---|
425 | #define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
|
---|
426 | /** Failed to fix mappings because the proposed memory area was to small. */
|
---|
427 | #define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
|
---|
428 | /** Reason for leaving RZ: The urge to syncing CR3. */
|
---|
429 | #define VINF_PGM_SYNC_CR3 1613
|
---|
430 | /** Page not marked for dirty bit tracking */
|
---|
431 | #define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
|
---|
432 | /** Page fault caused by dirty bit tracking; corrected */
|
---|
433 | #define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
|
---|
434 | /** Go ahead with the default Read/Write operation.
|
---|
435 | * This is returned by a R3 physical or virtual handler when it wants the
|
---|
436 | * PGMPhys[Read|Write] routine do the reading/writing. */
|
---|
437 | #define VINF_PGM_HANDLER_DO_DEFAULT 1616
|
---|
438 | /** The paging mode of the host is not supported yet. */
|
---|
439 | #define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
|
---|
440 | /** The physical guest page is a reserved/MMIO page and does not have any HC
|
---|
441 | * address. */
|
---|
442 | #define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
|
---|
443 | /** No page directory available for the hypervisor. */
|
---|
444 | #define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
|
---|
445 | /** The shadow page pool was flushed.
|
---|
446 | * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
|
---|
447 | * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
|
---|
448 | #define VERR_PGM_POOL_FLUSHED (-1620)
|
---|
449 | /** The shadow page pool was cleared.
|
---|
450 | * This is a error code internal to the shadow page pool, it will be
|
---|
451 | * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
|
---|
452 | #define VERR_PGM_POOL_CLEARED (-1621)
|
---|
453 | /** The returned shadow page is cached. */
|
---|
454 | #define VINF_PGM_CACHED_PAGE 1622
|
---|
455 | /** Returned by handler registration, modification and deregistration
|
---|
456 | * when the shadow PTs could be updated because the guest page
|
---|
457 | * aliased or/and mapped by multiple PTs. */
|
---|
458 | #define VINF_PGM_GCPHYS_ALIASED 1623
|
---|
459 | /** Reason for leaving RC: Paging mode changed.
|
---|
460 | * PGMChangeMode() uses this to force a switch to R3 so it can safely deal with
|
---|
461 | * a mode switch. */
|
---|
462 | #define VINF_PGM_CHANGE_MODE 1624
|
---|
463 | /** SyncPage modified the PDE.
|
---|
464 | * This is an internal status code used to communicate back to the \#PF handler
|
---|
465 | * that the PDE was (probably) marked not-present and it should restart the instruction. */
|
---|
466 | #define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
|
---|
467 | /** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
|
---|
468 | #define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
|
---|
469 | /** Conflict between the core memory and the intermediate paging context, try again.
|
---|
470 | * There are some very special conditions applying to the intermediate paging context
|
---|
471 | * (used during the world switches), and some times we continuously run into these
|
---|
472 | * when asking the host kernel for memory during VM init. Let us know if you run into
|
---|
473 | * this and we'll adjust the code so it tries harder to avoid it.
|
---|
474 | */
|
---|
475 | #define VERR_PGM_INTERMEDIATE_PAGING_CONFLICT (-1627)
|
---|
476 | /** The shadow paging mode is not supported yet. */
|
---|
477 | #define VERR_PGM_UNSUPPORTED_SHADOW_PAGING_MODE (-1628)
|
---|
478 | /** The dynamic mapping cache for physical memory failed. */
|
---|
479 | #define VERR_PGM_DYNMAP_FAILED (-1629)
|
---|
480 | /** The auto usage cache for the dynamic mapping set is full. */
|
---|
481 | #define VERR_PGM_DYNMAP_FULL_SET (-1630)
|
---|
482 | /** The initialization of the dynamic mapping cache failed. */
|
---|
483 | #define VERR_PGM_DYNMAP_SETUP_ERROR (-1631)
|
---|
484 | /** The expanding of the dynamic mapping cache failed. */
|
---|
485 | #define VERR_PGM_DYNMAP_EXPAND_ERROR (-1632)
|
---|
486 | /** The page is unassigned (akin to VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS). */
|
---|
487 | #define VERR_PGM_PHYS_TLB_UNASSIGNED (-1633)
|
---|
488 | /** Catch any access and route it thru PGM. */
|
---|
489 | #define VERR_PGM_PHYS_TLB_CATCH_ALL (-1634)
|
---|
490 | /** Catch write access and route it thru PGM. */
|
---|
491 | #define VINF_PGM_PHYS_TLB_CATCH_WRITE 1635
|
---|
492 | /** Catch write access and route it thru PGM. */
|
---|
493 | #define VERR_PGM_PHYS_TLB_CATCH_WRITE (-1635)
|
---|
494 | /** No CR3 root shadow page table. */
|
---|
495 | #define VERR_PGM_NO_CR3_SHADOW_ROOT (-1636)
|
---|
496 | /** Trying to free a page with an invalid Page ID. */
|
---|
497 | #define VERR_PGM_PHYS_INVALID_PAGE_ID (-1637)
|
---|
498 | /** PGMPhysWrite/Read hit a handler in Ring-0 or raw-mode context. */
|
---|
499 | #define VERR_PGM_PHYS_WR_HIT_HANDLER (-1638)
|
---|
500 | /** Trying to free a page that isn't RAM. */
|
---|
501 | #define VERR_PGM_PHYS_NOT_RAM (-1639)
|
---|
502 | /** Not ROM page. */
|
---|
503 | #define VERR_PGM_PHYS_NOT_ROM (-1640)
|
---|
504 | /** Not MMIO page. */
|
---|
505 | #define VERR_PGM_PHYS_NOT_MMIO (-1641)
|
---|
506 | /** Not MMIO2 page. */
|
---|
507 | #define VERR_PGM_PHYS_NOT_MMIO2 (-1642)
|
---|
508 | /** Already aliased to a different page. */
|
---|
509 | #define VERR_PGM_HANDLER_ALREADY_ALIASED (-1643)
|
---|
510 | /** Already aliased to the same page. */
|
---|
511 | #define VINF_PGM_HANDLER_ALREADY_ALIASED (1643)
|
---|
512 | /** PGM pool flush pending - return to ring 3. */
|
---|
513 | #define VINF_PGM_POOL_FLUSH_PENDING (1644)
|
---|
514 | /** Unable to use the range for a large page. */
|
---|
515 | #define VERR_PGM_INVALID_LARGE_PAGE_RANGE (-1645)
|
---|
516 | /** Don't mess around with ballooned pages. */
|
---|
517 | #define VERR_PGM_PHYS_PAGE_BALLOONED (-1646)
|
---|
518 |
|
---|
519 |
|
---|
520 | /** pgmPhysPageMapCommon encountered PGMPAGETYPE_MMIO2_ALIAS_MMIO. */
|
---|
521 | #define VERR_PGM_MAP_MMIO2_ALIAS_MMIO (-1651)
|
---|
522 | /** Guest mappings are disabled. */
|
---|
523 | #define VERR_PGM_MAPPINGS_DISABLED (-1652)
|
---|
524 | /** No guest mappings when SMP is enabled. */
|
---|
525 | #define VERR_PGM_MAPPINGS_SMP (-1653)
|
---|
526 | /** Invalid saved page state. */
|
---|
527 | #define VERR_PGM_INVALID_SAVED_PAGE_STATE (-1654)
|
---|
528 | /** Encountered an unexpected page type in the saved state. */
|
---|
529 | #define VERR_PGM_LOAD_UNEXPECTED_PAGE_TYPE (-1655)
|
---|
530 | /** Encountered an unexpected page state in the saved state. */
|
---|
531 | #define VERR_PGM_UNEXPECTED_PAGE_STATE (-1656)
|
---|
532 | /** Couldn't find MMIO2 range from saved state. */
|
---|
533 | #define VERR_PGM_SAVED_MMIO2_RANGE_NOT_FOUND (-1657)
|
---|
534 | /** Couldn't find MMIO2 page from saved state. */
|
---|
535 | #define VERR_PGM_SAVED_MMIO2_PAGE_NOT_FOUND (-1658)
|
---|
536 | /** Couldn't find ROM range from saved state. */
|
---|
537 | #define VERR_PGM_SAVED_ROM_RANGE_NOT_FOUND (-1659)
|
---|
538 | /** Couldn't find ROM page from saved state. */
|
---|
539 | #define VERR_PGM_SAVED_ROM_PAGE_NOT_FOUND (-1660)
|
---|
540 | /** ROM page mismatch between saved state and the VM. */
|
---|
541 | #define VERR_PGM_SAVED_ROM_PAGE_PROT (-1661)
|
---|
542 | /** Unknown saved state record. */
|
---|
543 | #define VERR_PGM_SAVED_REC_TYPE (-1662)
|
---|
544 | /** Internal processing error in the PGM dynmap (r0/rc). */
|
---|
545 | #define VERR_PGM_DYNMAP_IPE (-1663)
|
---|
546 | /** Internal processing error in the PGM handy page allocator. */
|
---|
547 | #define VERR_PGM_HANDY_PAGE_IPE (-1664)
|
---|
548 | /** Failed to map the guest PML4. */
|
---|
549 | #define VERR_PGM_PML4_MAPPING (-1665)
|
---|
550 | /** Failed to obtain a pool page. */
|
---|
551 | #define VERR_PGM_POOL_GET_PAGE_FAILED (-1666)
|
---|
552 | /** A PGM function was called in a mode where it isn't supposed to be used. */
|
---|
553 | #define VERR_PGM_NOT_USED_IN_MODE (-1667)
|
---|
554 | /** The CR3 address specified memory we don't know about. */
|
---|
555 | #define VERR_PGM_INVALID_CR3_ADDR (-1668)
|
---|
556 | /** One or the PDPEs specified memory we don't know about. */
|
---|
557 | #define VERR_PGM_INVALID_PDPE_ADDR (-1669)
|
---|
558 | /** Internal processing error in the PGM physical handler code. */
|
---|
559 | #define VERR_PGM_PHYS_HANDLER_IPE (-1670)
|
---|
560 | /** Internal processing error \#1 in the PGM physial page mapping code. */
|
---|
561 | #define VERR_PGM_PHYS_PAGE_MAP_IPE_1 (-1671)
|
---|
562 | /** Internal processing error \#2 in the PGM physial page mapping code. */
|
---|
563 | #define VERR_PGM_PHYS_PAGE_MAP_IPE_2 (-1672)
|
---|
564 | /** Internal processing error \#3 in the PGM physial page mapping code. */
|
---|
565 | #define VERR_PGM_PHYS_PAGE_MAP_IPE_3 (-1673)
|
---|
566 | /** Internal processing error \#4 in the PGM physial page mapping code. */
|
---|
567 | #define VERR_PGM_PHYS_PAGE_MAP_IPE_4 (-1674)
|
---|
568 | /** Too many loops looking for a page to reuse. */
|
---|
569 | #define VERR_PGM_POOL_TOO_MANY_LOOPS (-1675)
|
---|
570 | /** Internal processing error related to guest mappings. */
|
---|
571 | #define VERR_PGM_MAPPING_IPE (-1676)
|
---|
572 | /** An attempt was made to grow an already maxed out page pool. */
|
---|
573 | #define VERR_PGM_POOL_MAXED_OUT_ALREADY (-1677)
|
---|
574 | /** Internal processing error in the page pool code. */
|
---|
575 | #define VERR_PGM_POOL_IPE (-1678)
|
---|
576 | /** The write monitor is already engaged. */
|
---|
577 | #define VERR_PGM_WRITE_MONITOR_ENGAGED (-1679)
|
---|
578 | /** Failed to get a guest page which is expected to be present. */
|
---|
579 | #define VERR_PGM_PHYS_PAGE_GET_IPE (-1680)
|
---|
580 | /** We were given a NULL pPage parameter. */
|
---|
581 | #define VERR_PGM_PHYS_NULL_PAGE_PARAM (-1681)
|
---|
582 | /** PCI passthru is not supported by this build. */
|
---|
583 | #define VERR_PGM_PCI_PASSTHRU_MISCONFIG (-1682)
|
---|
584 | /** Too many MMIO2 ranges. */
|
---|
585 | #define VERR_PGM_TOO_MANY_MMIO2_RANGES (-1683)
|
---|
586 | /** Internal processing error in the PGM physial page mapping code dealing
|
---|
587 | * with MMIO2 pages. */
|
---|
588 | #define VERR_PGM_PHYS_PAGE_MAP_MMIO2_IPE (-1684)
|
---|
589 | /** @} */
|
---|
590 |
|
---|
591 |
|
---|
592 | /** @name Memory Monitor (MM) Status Codes
|
---|
593 | * @{
|
---|
594 | */
|
---|
595 | /** Attempt to register a RAM range of which parts are already
|
---|
596 | * covered by existing RAM ranges. */
|
---|
597 | #define VERR_MM_RAM_CONFLICT (-1700)
|
---|
598 | /** Hypervisor memory allocation failed. */
|
---|
599 | #define VERR_MM_HYPER_NO_MEMORY (-1701)
|
---|
600 | /** A bad trap type ended up in mmGCRamTrap0eHandler. */
|
---|
601 | #define VERR_MM_BAD_TRAP_TYPE_IPE (-1702)
|
---|
602 | /** @} */
|
---|
603 |
|
---|
604 |
|
---|
605 | /** @name CPU Monitor (CPUM) Status Codes
|
---|
606 | * @{
|
---|
607 | */
|
---|
608 | /** The caller shall raise an \#GP(0) exception. */
|
---|
609 | #define VERR_CPUM_RAISE_GP_0 (-1750)
|
---|
610 | /** Incompatible CPUM configuration. */
|
---|
611 | #define VERR_CPUM_INCOMPATIBLE_CONFIG (-1751)
|
---|
612 | /** CPUMR3DisasmInstrCPU unexpectedly failed to determine the hidden
|
---|
613 | * parts of the CS register. */
|
---|
614 | #define VERR_CPUM_HIDDEN_CS_LOAD_ERROR (-1752)
|
---|
615 | /** Couldn't find the end of CPUID sub-leaves. */
|
---|
616 | #define VERR_CPUM_TOO_MANY_CPUID_SUBLEAVES (-1753)
|
---|
617 | /** CPUM internal processing error \#1. */
|
---|
618 | #define VERR_CPUM_IPE_1 (-1754)
|
---|
619 | /** CPUM internal processing error \#2. */
|
---|
620 | #define VERR_CPUM_IPE_2 (-1755)
|
---|
621 | /** The specified CPU cannot be found in the CPU database. */
|
---|
622 | #define VERR_CPUM_DB_CPU_NOT_FOUND (-1756)
|
---|
623 | /** Invalid CPUMCPU offset in MSR range. */
|
---|
624 | #define VERR_CPUM_MSR_BAD_CPUMCPU_OFFSET (-1757)
|
---|
625 | /** Return to ring-3 to read the MSR there. */
|
---|
626 | #define VINF_CPUM_R3_MSR_READ (1758)
|
---|
627 | /** Return to ring-3 to write the MSR there. */
|
---|
628 | #define VINF_CPUM_R3_MSR_WRITE (1759)
|
---|
629 | /** Too many CPUID leaves. */
|
---|
630 | #define VERR_TOO_MANY_CPUID_LEAVES (-1760)
|
---|
631 | /** Invalid config value. */
|
---|
632 | #define VERR_CPUM_INVALID_CONFIG_VALUE (-1761)
|
---|
633 | /** The loaded XSAVE component mask is not compatible with the host CPU
|
---|
634 | * or/and VM config. */
|
---|
635 | #define VERR_CPUM_INCOMPATIBLE_XSAVE_COMP_MASK (-1762)
|
---|
636 | /** The loaded XSAVE component mask is not valid. */
|
---|
637 | #define VERR_CPUM_INVALID_XSAVE_COMP_MASK (-1763)
|
---|
638 | /** The loaded XSAVE header is not valid. */
|
---|
639 | #define VERR_CPUM_INVALID_XSAVE_HDR (-1764)
|
---|
640 | /** The loaded XCR0 register value is not valid. */
|
---|
641 | #define VERR_CPUM_INVALID_XCR0 (-1765)
|
---|
642 | /** @} */
|
---|
643 |
|
---|
644 |
|
---|
645 | /** @name Save State Manager (SSM) Status Codes
|
---|
646 | * @{
|
---|
647 | */
|
---|
648 | /** The specified data unit already exist. */
|
---|
649 | #define VERR_SSM_UNIT_EXISTS (-1800)
|
---|
650 | /** The specified data unit wasn't found. */
|
---|
651 | #define VERR_SSM_UNIT_NOT_FOUND (-1801)
|
---|
652 | /** The specified data unit wasn't owned by caller. */
|
---|
653 | #define VERR_SSM_UNIT_NOT_OWNER (-1802)
|
---|
654 |
|
---|
655 | /** General saved state file integrity error. */
|
---|
656 | #define VERR_SSM_INTEGRITY (-1810)
|
---|
657 | /** The saved state file magic was not recognized. */
|
---|
658 | #define VERR_SSM_INTEGRITY_MAGIC (-1811)
|
---|
659 | /** The saved state file version is not supported. */
|
---|
660 | #define VERR_SSM_INTEGRITY_VERSION (-1812)
|
---|
661 | /** The saved state file size didn't match the one in the header. */
|
---|
662 | #define VERR_SSM_INTEGRITY_SIZE (-1813)
|
---|
663 | /** The CRC of the saved state file did not match. */
|
---|
664 | #define VERR_SSM_INTEGRITY_CRC (-1814)
|
---|
665 | /** The machine uuid field wasn't null. */
|
---|
666 | #define VERR_SMM_INTEGRITY_MACHINE (-1815)
|
---|
667 | /** Saved state header integrity error. */
|
---|
668 | #define VERR_SSM_INTEGRITY_HEADER (-1816)
|
---|
669 | /** Unit header integrity error. */
|
---|
670 | #define VERR_SSM_INTEGRITY_UNIT (-1817)
|
---|
671 | /** Invalid unit magic (internal data tag). */
|
---|
672 | #define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1818)
|
---|
673 | /** The file contained a data unit which no-one wants. */
|
---|
674 | #define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1819)
|
---|
675 | /** Incorrect version numbers in the header. */
|
---|
676 | #define VERR_SSM_INTEGRITY_VBOX_VERSION (-1820)
|
---|
677 | /** Footer integrity error. */
|
---|
678 | #define VERR_SSM_INTEGRITY_FOOTER (-1821)
|
---|
679 | /** Record header integrity error. */
|
---|
680 | #define VERR_SSM_INTEGRITY_REC_HDR (-1822)
|
---|
681 | /** Termination record integrity error. */
|
---|
682 | #define VERR_SSM_INTEGRITY_REC_TERM (-1823)
|
---|
683 | /** Termination record CRC mismatch. */
|
---|
684 | #define VERR_SSM_INTEGRITY_REC_TERM_CRC (-1824)
|
---|
685 | /** Decompression integrity error. */
|
---|
686 | #define VERR_SSM_INTEGRITY_DECOMPRESSION (-1825)
|
---|
687 | /** Saved state directory wintertides error. */
|
---|
688 | #define VERR_SSM_INTEGRITY_DIR (-1826)
|
---|
689 | /** The saved state directory magic is wrong. */
|
---|
690 | #define VERR_SSM_INTEGRITY_DIR_MAGIC (-1827)
|
---|
691 |
|
---|
692 | /** A data unit in the saved state file was defined but didn't any
|
---|
693 | * routine for processing it. */
|
---|
694 | #define VERR_SSM_NO_LOAD_EXEC (-1830)
|
---|
695 | /** A restore routine attempted to load more data then the unit contained. */
|
---|
696 | #define VERR_SSM_LOADED_TOO_MUCH (-1831)
|
---|
697 | /** Not in the correct state for the attempted operation. */
|
---|
698 | #define VERR_SSM_INVALID_STATE (-1832)
|
---|
699 | /** Not in the correct state for the attempted operation. */
|
---|
700 | #define VERR_SSM_LOADED_TOO_LITTLE (-1833)
|
---|
701 |
|
---|
702 | /** Unsupported data unit version.
|
---|
703 | * A SSM user returns this if it doesn't know the u32Version. */
|
---|
704 | #define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1840)
|
---|
705 | /** The format of a data unit has changed.
|
---|
706 | * A SSM user returns this if it's not able to read the format for
|
---|
707 | * other reasons than u32Version. */
|
---|
708 | #define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1841)
|
---|
709 | /** The CPUID instruction returns different information when loading than when saved.
|
---|
710 | * Normally caused by hardware changes on the host, but could also be caused by
|
---|
711 | * changes in the BIOS setup. */
|
---|
712 | #define VERR_SSM_LOAD_CPUID_MISMATCH (-1842)
|
---|
713 | /** The RAM size differs between the saved state and the VM config. */
|
---|
714 | #define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1843)
|
---|
715 | /** The state doesn't match the VM configuration in one or another way.
|
---|
716 | * (There are certain PCI reconfiguration which the OS could potentially
|
---|
717 | * do which can cause this problem. Check this out when it happens.) */
|
---|
718 | #define VERR_SSM_LOAD_CONFIG_MISMATCH (-1844)
|
---|
719 | /** The virtual clock frequency differs too much.
|
---|
720 | * The clock source for the virtual time isn't reliable or the code have changed. */
|
---|
721 | #define VERR_SSM_VIRTUAL_CLOCK_HZ (-1845)
|
---|
722 | /** A timeout occurred while waiting for async IDE operations to finish. */
|
---|
723 | #define VERR_SSM_IDE_ASYNC_TIMEOUT (-1846)
|
---|
724 | /** One of the structure magics was wrong. */
|
---|
725 | #define VERR_SSM_STRUCTURE_MAGIC (-1847)
|
---|
726 | /** The data in the saved state doesn't conform to expectations. */
|
---|
727 | #define VERR_SSM_UNEXPECTED_DATA (-1848)
|
---|
728 | /** Trying to read a 64-bit guest physical address into a 32-bit variable. */
|
---|
729 | #define VERR_SSM_GCPHYS_OVERFLOW (-1849)
|
---|
730 | /** Trying to read a 64-bit guest virtual address into a 32-bit variable. */
|
---|
731 | #define VERR_SSM_GCPTR_OVERFLOW (-1850)
|
---|
732 | /** Vote for another pass. */
|
---|
733 | #define VINF_SSM_VOTE_FOR_ANOTHER_PASS 1851
|
---|
734 | /** Vote for done tell SSM not to call again until the final pass. */
|
---|
735 | #define VINF_SSM_VOTE_DONE_DONT_CALL_AGAIN 1852
|
---|
736 | /** Vote for giving up. */
|
---|
737 | #define VERR_SSM_VOTE_FOR_GIVING_UP (-1853)
|
---|
738 | /** Don't call again until the final pass. */
|
---|
739 | #define VINF_SSM_DONT_CALL_AGAIN 1854
|
---|
740 | /** Giving up a live snapshot/teleportation attempt because of too many
|
---|
741 | * passes. */
|
---|
742 | #define VERR_SSM_TOO_MANY_PASSES (-1855)
|
---|
743 | /** Giving up a live snapshot/teleportation attempt because the state grew to
|
---|
744 | * big. */
|
---|
745 | #define VERR_SSM_STATE_GREW_TOO_BIG (-1856)
|
---|
746 | /** Giving up a live snapshot attempt because we're low on disk space. */
|
---|
747 | #define VERR_SSM_LOW_ON_DISK_SPACE (-1857)
|
---|
748 | /** The operation was cancelled. */
|
---|
749 | #define VERR_SSM_CANCELLED (-1858)
|
---|
750 | /** Nothing that can be cancelled. */
|
---|
751 | #define VERR_SSM_NO_PENDING_OPERATION (-1859)
|
---|
752 | /** The operation has already been cancelled. */
|
---|
753 | #define VERR_SSM_ALREADY_CANCELLED (-1860)
|
---|
754 | /** The machine was powered off while saving. */
|
---|
755 | #define VERR_SSM_LIVE_POWERED_OFF (-1861)
|
---|
756 | /** The live snapshot/teleportation operation was aborted because of a guru
|
---|
757 | * meditation. */
|
---|
758 | #define VERR_SSM_LIVE_GURU_MEDITATION (-1862)
|
---|
759 | /** The live snapshot/teleportation operation was aborted because of a fatal
|
---|
760 | * runtime error. */
|
---|
761 | #define VERR_SSM_LIVE_FATAL_ERROR (-1863)
|
---|
762 | /** The VM was suspended before or while saving, don't resume execution. */
|
---|
763 | #define VINF_SSM_LIVE_SUSPENDED 1864
|
---|
764 | /** Complex SSM field fed to SSMR3PutStruct or SSMR3GetStruct. Use the
|
---|
765 | * extended API. */
|
---|
766 | #define VERR_SSM_FIELD_COMPLEX (-1864)
|
---|
767 | /** Invalid size of a SSM field with the specified transformation. */
|
---|
768 | #define VERR_SSM_FIELD_INVALID_SIZE (-1865)
|
---|
769 | /** The specified field is outside the structure. */
|
---|
770 | #define VERR_SSM_FIELD_OUT_OF_BOUNDS (-1866)
|
---|
771 | /** The field does not follow immediately the previous one. */
|
---|
772 | #define VERR_SSM_FIELD_NOT_CONSECUTIVE (-1867)
|
---|
773 | /** The field contains an invalid callback or transformation index. */
|
---|
774 | #define VERR_SSM_FIELD_INVALID_CALLBACK (-1868)
|
---|
775 | /** The field contains an invalid padding size. */
|
---|
776 | #define VERR_SSM_FIELD_INVALID_PADDING_SIZE (-1869)
|
---|
777 | /** The field contains a value that is out of range. */
|
---|
778 | #define VERR_SSM_FIELD_INVALID_VALUE (-1870)
|
---|
779 | /** Generic stream error. */
|
---|
780 | #define VERR_SSM_STREAM_ERROR (-1871)
|
---|
781 | /** SSM did a callback for a pass we didn't expect. */
|
---|
782 | #define VERR_SSM_UNEXPECTED_PASS (-1872)
|
---|
783 | /** Someone is trying to skip backwards in the stream... */
|
---|
784 | #define VERR_SSM_SKIP_BACKWARDS (-1873)
|
---|
785 | /** Someone is trying to write a memory block which is too big to encode. */
|
---|
786 | #define VERR_SSM_MEM_TOO_BIG (-1874)
|
---|
787 | /** Encountered an bad (/unknown) record type. */
|
---|
788 | #define VERR_SSM_BAD_REC_TYPE (-1875)
|
---|
789 | /** Internal processing error \#1 in SSM code. */
|
---|
790 | #define VERR_SSM_IPE_1 (-1876)
|
---|
791 | /** Internal processing error \#2 in SSM code. */
|
---|
792 | #define VERR_SSM_IPE_2 (-1877)
|
---|
793 | /** Internal processing error \#3 in SSM code. */
|
---|
794 | #define VERR_SSM_IPE_3 (-1878)
|
---|
795 | /** A field contained an transformation that should only be used when loading
|
---|
796 | * old states. */
|
---|
797 | #define VERR_SSM_FIELD_LOAD_ONLY_TRANSFORMATION (-1879)
|
---|
798 | /** @} */
|
---|
799 |
|
---|
800 |
|
---|
801 | /** @name Virtual Machine (VM) Status Codes
|
---|
802 | * @{
|
---|
803 | */
|
---|
804 | /** The specified at reset handler wasn't found. */
|
---|
805 | #define VERR_VM_ATRESET_NOT_FOUND (-1900)
|
---|
806 | /** Invalid VM request type.
|
---|
807 | * For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
|
---|
808 | * all the other occurrences it means indicates corruption, broken logic, or stupid
|
---|
809 | * interface user. */
|
---|
810 | #define VERR_VM_REQUEST_INVALID_TYPE (-1901)
|
---|
811 | /** Invalid VM request state.
|
---|
812 | * The state of the request packet was not the expected and accepted one(s). Either
|
---|
813 | * the interface user screwed up, or we've got corruption/broken logic. */
|
---|
814 | #define VERR_VM_REQUEST_STATE (-1902)
|
---|
815 | /** Invalid VM request packet.
|
---|
816 | * One or more of the VM controlled packet members didn't contain the correct
|
---|
817 | * values. Some thing's broken. */
|
---|
818 | #define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
|
---|
819 | /** The status field has not been updated yet as the request is still
|
---|
820 | * pending completion. Someone queried the iStatus field before the request
|
---|
821 | * has been fully processed. */
|
---|
822 | #define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
|
---|
823 | /** The request has been freed, don't read the status now.
|
---|
824 | * Someone is reading the iStatus field of a freed request packet. */
|
---|
825 | #define VERR_VM_REQUEST_STATUS_FREED (-1905)
|
---|
826 | /** A VM api requiring EMT was called from another thread.
|
---|
827 | * Use the VMR3ReqCall() apis to call it! */
|
---|
828 | #define VERR_VM_THREAD_NOT_EMT (-1906)
|
---|
829 | /** The VM state was invalid for the requested operation.
|
---|
830 | * Go check the 'VM Statechart Diagram.gif'. */
|
---|
831 | #define VERR_VM_INVALID_VM_STATE (-1907)
|
---|
832 | /** The support driver is not installed.
|
---|
833 | * On linux, open returned ENOENT. */
|
---|
834 | #define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
|
---|
835 | /** The support driver is not accessible.
|
---|
836 | * On linux, open returned EPERM. */
|
---|
837 | #define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
|
---|
838 | /** Was not able to load the support driver.
|
---|
839 | * On linux, open returned ENODEV. */
|
---|
840 | #define VERR_VM_DRIVER_LOAD_ERROR (-1910)
|
---|
841 | /** Was not able to open the support driver.
|
---|
842 | * Generic open error used when none of the other ones fit. */
|
---|
843 | #define VERR_VM_DRIVER_OPEN_ERROR (-1911)
|
---|
844 | /** The installed support driver doesn't match the version of the user. */
|
---|
845 | #define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
|
---|
846 | /** Saving the VM state is temporarily not allowed. Try again later. */
|
---|
847 | #define VERR_VM_SAVE_STATE_NOT_ALLOWED (-1913)
|
---|
848 | /** An EMT called an API which cannot be called on such a thread. */
|
---|
849 | #define VERR_VM_THREAD_IS_EMT (-1914)
|
---|
850 | /** Encountered an unexpected VM state. */
|
---|
851 | #define VERR_VM_UNEXPECTED_VM_STATE (-1915)
|
---|
852 | /** Unexpected unstable VM state. */
|
---|
853 | #define VERR_VM_UNEXPECTED_UNSTABLE_STATE (-1916)
|
---|
854 | /** Too many arguments passed to a VM request / request corruption. */
|
---|
855 | #define VERR_VM_REQUEST_TOO_MANY_ARGS_IPE (-1917)
|
---|
856 | /** Fatal EMT wait error. */
|
---|
857 | #define VERR_VM_FATAL_WAIT_ERROR (-1918)
|
---|
858 | /** The VM request was killed at VM termination. */
|
---|
859 | #define VERR_VM_REQUEST_KILLED (-1919)
|
---|
860 | /** @} */
|
---|
861 |
|
---|
862 |
|
---|
863 | /** @name VBox Remote Desktop Protocol (VRDP) Status Codes
|
---|
864 | * @{
|
---|
865 | */
|
---|
866 | /** Successful completion of operation (mapped to generic iprt status code). */
|
---|
867 | #define VINF_VRDP_SUCCESS VINF_SUCCESS
|
---|
868 | /** VRDP transport operation timed out (mapped to generic iprt status code). */
|
---|
869 | #define VERR_VRDP_TIMEOUT VERR_TIMEOUT
|
---|
870 |
|
---|
871 | /** Unsupported ISO protocol feature */
|
---|
872 | #define VERR_VRDP_ISO_UNSUPPORTED (-2000)
|
---|
873 | /** Security (en/decryption) engine error */
|
---|
874 | #define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
|
---|
875 | /** VRDP protocol violation */
|
---|
876 | #define VERR_VRDP_PROTOCOL_ERROR (-2002)
|
---|
877 | /** Unsupported VRDP protocol feature */
|
---|
878 | #define VERR_VRDP_NOT_SUPPORTED (-2003)
|
---|
879 | /** VRDP protocol violation, client sends less data than expected */
|
---|
880 | #define VERR_VRDP_INSUFFICIENT_DATA (-2004)
|
---|
881 | /** Internal error, VRDP packet is in wrong operation mode */
|
---|
882 | #define VERR_VRDP_INVALID_MODE (-2005)
|
---|
883 | /** Memory allocation failed */
|
---|
884 | #define VERR_VRDP_NO_MEMORY (-2006)
|
---|
885 | /** Client has been rejected */
|
---|
886 | #define VERR_VRDP_ACCESS_DENIED (-2007)
|
---|
887 | /** VRPD receives a packet that is not supported */
|
---|
888 | #define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
|
---|
889 | /** VRDP script allowed the packet to be processed further */
|
---|
890 | #define VINF_VRDP_PROCESS_PDU 2009
|
---|
891 | /** VRDP script has completed its task */
|
---|
892 | #define VINF_VRDP_OPERATION_COMPLETED 2010
|
---|
893 | /** VRDP thread has started OK and will run */
|
---|
894 | #define VINF_VRDP_THREAD_STARTED 2011
|
---|
895 | /** Framebuffer is resized, terminate send bitmap procedure */
|
---|
896 | #define VINF_VRDP_RESIZE_REQUESTED 2012
|
---|
897 | /** Output can be enabled for the client. */
|
---|
898 | #define VINF_VRDP_OUTPUT_ENABLE 2013
|
---|
899 | /** @} */
|
---|
900 |
|
---|
901 |
|
---|
902 | /** @name Configuration Manager (CFGM) Status Codes
|
---|
903 | * @{
|
---|
904 | */
|
---|
905 | /** The integer value was too big for the requested representation. */
|
---|
906 | #define VERR_CFGM_INTEGER_TOO_BIG (-2100)
|
---|
907 | /** Child node was not found. */
|
---|
908 | #define VERR_CFGM_CHILD_NOT_FOUND (-2101)
|
---|
909 | /** Path to child node was invalid (i.e. empty). */
|
---|
910 | #define VERR_CFGM_INVALID_CHILD_PATH (-2102)
|
---|
911 | /** Value not found. */
|
---|
912 | #define VERR_CFGM_VALUE_NOT_FOUND (-2103)
|
---|
913 | /** No parent node specified. */
|
---|
914 | #define VERR_CFGM_NO_PARENT (-2104)
|
---|
915 | /** No node was specified. */
|
---|
916 | #define VERR_CFGM_NO_NODE (-2105)
|
---|
917 | /** The value is not an integer. */
|
---|
918 | #define VERR_CFGM_NOT_INTEGER (-2106)
|
---|
919 | /** The value is not a zero terminated character string. */
|
---|
920 | #define VERR_CFGM_NOT_STRING (-2107)
|
---|
921 | /** The value is not a byte string. */
|
---|
922 | #define VERR_CFGM_NOT_BYTES (-2108)
|
---|
923 | /** The specified string / bytes buffer was to small. Specify a larger one and retry. */
|
---|
924 | #define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
|
---|
925 | /** The path of a new node contained slashes or was empty. */
|
---|
926 | #define VERR_CFGM_INVALID_NODE_PATH (-2160)
|
---|
927 | /** A new node couldn't be inserted because one with the same name exists. */
|
---|
928 | #define VERR_CFGM_NODE_EXISTS (-2161)
|
---|
929 | /** A new leaf couldn't be inserted because one with the same name exists. */
|
---|
930 | #define VERR_CFGM_LEAF_EXISTS (-2162)
|
---|
931 | /** An unknown config value was encountered. */
|
---|
932 | #define VERR_CFGM_CONFIG_UNKNOWN_VALUE (-2163)
|
---|
933 | /** An unknown config node (key) was encountered. */
|
---|
934 | #define VERR_CFGM_CONFIG_UNKNOWN_NODE (-2164)
|
---|
935 | /** Internal processing error \#1 in CFGM. */
|
---|
936 | #define VERR_CFGM_IPE_1 (-2165)
|
---|
937 | /** @} */
|
---|
938 |
|
---|
939 |
|
---|
940 | /** @name Time Manager (TM) Status Codes
|
---|
941 | * @{
|
---|
942 | */
|
---|
943 | /** The loaded timer state was incorrect. */
|
---|
944 | #define VERR_TM_LOAD_STATE (-2200)
|
---|
945 | /** The timer was not in the correct state for the request operation. */
|
---|
946 | #define VERR_TM_INVALID_STATE (-2201)
|
---|
947 | /** The timer was in a unknown state. Corruption or stupid coding error. */
|
---|
948 | #define VERR_TM_UNKNOWN_STATE (-2202)
|
---|
949 | /** The timer was stuck in an unstable state until we grew impatient and returned. */
|
---|
950 | #define VERR_TM_UNSTABLE_STATE (-2203)
|
---|
951 | /** TM requires GIP. */
|
---|
952 | #define VERR_TM_GIP_REQUIRED (-2204)
|
---|
953 | /** TM does not support the GIP version. */
|
---|
954 | #define VERR_TM_GIP_VERSION (-2205)
|
---|
955 | /** The GIP update interval is too large. */
|
---|
956 | #define VERR_TM_GIP_UPDATE_INTERVAL_TOO_BIG (-2206)
|
---|
957 | /** The timer has a bad clock enum value, probably corruption. */
|
---|
958 | #define VERR_TM_TIMER_BAD_CLOCK (-2207)
|
---|
959 | /** The timer failed to reach a stable state. */
|
---|
960 | #define VERR_TM_TIMER_UNSTABLE_STATE (-2208)
|
---|
961 | /** Attempt to resume a running TSC. */
|
---|
962 | #define VERR_TM_TSC_ALREADY_TICKING (-2209)
|
---|
963 | /** Attempt to pause a paused TSC. */
|
---|
964 | #define VERR_TM_TSC_ALREADY_PAUSED (-2210)
|
---|
965 | /** Invalid value for cVirtualTicking. */
|
---|
966 | #define VERR_TM_VIRTUAL_TICKING_IPE (-2211)
|
---|
967 | /** @} */
|
---|
968 |
|
---|
969 |
|
---|
970 | /** @name Recompiled Execution Manager (REM) Status Codes
|
---|
971 | * @{
|
---|
972 | */
|
---|
973 | /** Fatal error in virtual hardware. */
|
---|
974 | #define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
|
---|
975 | /** Fatal error in the recompiler cpu. */
|
---|
976 | #define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
|
---|
977 | /** Recompiler execution was interrupted by forced action. */
|
---|
978 | #define VINF_REM_INTERRUPED_FF 2302
|
---|
979 | /** Too many similar traps. This is a very useful debug only
|
---|
980 | * check (we don't do double/triple faults in REM). */
|
---|
981 | #define VERR_REM_TOO_MANY_TRAPS (-2304)
|
---|
982 | /** The REM is out of breakpoint slots. */
|
---|
983 | #define VERR_REM_NO_MORE_BP_SLOTS (-2305)
|
---|
984 | /** The REM could not find any breakpoint on the specified address. */
|
---|
985 | #define VERR_REM_BP_NOT_FOUND (-2306)
|
---|
986 | /** @} */
|
---|
987 |
|
---|
988 |
|
---|
989 | /** @name Trap Manager / Monitor (TRPM) Status Codes
|
---|
990 | * @{
|
---|
991 | */
|
---|
992 | /** No active trap. Cannot query or reset a non-existing trap. */
|
---|
993 | #define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
|
---|
994 | /** Active trap. Cannot assert a new trap when one is already active. */
|
---|
995 | #define VERR_TRPM_ACTIVE_TRAP (-2401)
|
---|
996 | /** Reason for leaving RC: Guest tried to write to our IDT - fatal.
|
---|
997 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
998 | * guest has read the idtr register. */
|
---|
999 | #define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
|
---|
1000 | /** Reason for leaving RC: Fatal trap in hypervisor. */
|
---|
1001 | #define VERR_TRPM_DONT_PANIC (-2403)
|
---|
1002 | /** Reason for leaving RC: Double Fault. */
|
---|
1003 | #define VERR_TRPM_PANIC (-2404)
|
---|
1004 | /** The exception was dispatched for raw-mode execution. */
|
---|
1005 | #define VINF_TRPM_XCPT_DISPATCHED 2405
|
---|
1006 | /** Bad TRPM_TRAP_IN_OP. */
|
---|
1007 | #define VERR_TRPM_BAD_TRAP_IN_OP (-2406)
|
---|
1008 | /** Internal processing error \#1 in TRPM. */
|
---|
1009 | #define VERR_TRPM_IPE_1 (-2407)
|
---|
1010 | /** Internal processing error \#2 in TRPM. */
|
---|
1011 | #define VERR_TRPM_IPE_2 (-2408)
|
---|
1012 | /** Internal processing error \#3 in TRPM. */
|
---|
1013 | #define VERR_TRPM_IPE_3 (-2409)
|
---|
1014 | /** Got into a part of TRPM that is not used when HM (VT-x/AMD-V) is enabled. */
|
---|
1015 | #define VERR_TRPM_HM_IPE (-2410)
|
---|
1016 | /** @} */
|
---|
1017 |
|
---|
1018 |
|
---|
1019 | /** @name Selector Manager / Monitor (SELM) Status Code
|
---|
1020 | * @{
|
---|
1021 | */
|
---|
1022 | /** Reason for leaving RC: Guest tried to write to our GDT - fatal.
|
---|
1023 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
1024 | * guest has read the gdtr register. */
|
---|
1025 | #define VERR_SELM_SHADOW_GDT_WRITE (-2500)
|
---|
1026 | /** Reason for leaving RC: Guest tried to write to our LDT - fatal.
|
---|
1027 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
1028 | * guest has read the ldtr register. */
|
---|
1029 | #define VERR_SELM_SHADOW_LDT_WRITE (-2501)
|
---|
1030 | /** Reason for leaving RC: Guest tried to write to our TSS - fatal.
|
---|
1031 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
1032 | * guest has read the ltr register. */
|
---|
1033 | #define VERR_SELM_SHADOW_TSS_WRITE (-2502)
|
---|
1034 | /** Reason for leaving RC: Sync the GDT table to solve a conflict. */
|
---|
1035 | #define VINF_SELM_SYNC_GDT 2503
|
---|
1036 | /** No valid TSS present. */
|
---|
1037 | #define VERR_SELM_NO_TSS (-2504)
|
---|
1038 | /** Invalid guest LDT selector. */
|
---|
1039 | #define VERR_SELM_INVALID_LDT (-2505)
|
---|
1040 | /** The guest LDT selector is out of bounds. */
|
---|
1041 | #define VERR_SELM_LDT_OUT_OF_BOUNDS (-2506)
|
---|
1042 | /** Unknown error while reading the guest GDT during shadow table updating. */
|
---|
1043 | #define VERR_SELM_GDT_READ_ERROR (-2507)
|
---|
1044 | /** The guest GDT so full that we cannot find free space for our own
|
---|
1045 | * selectors. */
|
---|
1046 | #define VERR_SELM_GDT_TOO_FULL (-2508)
|
---|
1047 | /** Got into a part of SELM that is not used when HM (VT-x/AMD-V) is enabled. */
|
---|
1048 | #define VERR_SELM_HM_IPE (-2509)
|
---|
1049 | /** @} */
|
---|
1050 |
|
---|
1051 |
|
---|
1052 | /** @name I/O Manager / Monitor (IOM) Status Code
|
---|
1053 | * @{
|
---|
1054 | */
|
---|
1055 | /** The specified I/O port range was invalid.
|
---|
1056 | * It was either empty or it was out of bounds. */
|
---|
1057 | #define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
|
---|
1058 | /** The specified R0 or RC I/O port range didn't have a corresponding R3 range.
|
---|
1059 | * IOMR3IOPortRegisterR3() must be called first. */
|
---|
1060 | #define VERR_IOM_NO_R3_IOPORT_RANGE (-2601)
|
---|
1061 | /** The specified I/O port range intruded on an existing range. There is
|
---|
1062 | * a I/O port conflict between two device, or a device tried to register
|
---|
1063 | * the same range twice. */
|
---|
1064 | #define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
|
---|
1065 | /** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
|
---|
1066 | #define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
|
---|
1067 | /** The specified I/O port range was owned by some other device(s). Both registration
|
---|
1068 | * and deregistration, but in the first case only RC and R0 ranges. */
|
---|
1069 | #define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
|
---|
1070 |
|
---|
1071 | /** The specified MMIO range was invalid.
|
---|
1072 | * It was either empty or it was out of bounds. */
|
---|
1073 | #define VERR_IOM_INVALID_MMIO_RANGE (-2605)
|
---|
1074 | /** The specified R0 or RC MMIO range didn't have a corresponding R3 range.
|
---|
1075 | * IOMR3MMIORegisterR3() must be called first. */
|
---|
1076 | #define VERR_IOM_NO_R3_MMIO_RANGE (-2606)
|
---|
1077 | /** The specified MMIO range was owned by some other device(s). Both registration
|
---|
1078 | * and deregistration, but in the first case only RC and R0 ranges. */
|
---|
1079 | #define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
|
---|
1080 | /** The specified MMIO range intruded on an existing range. There is
|
---|
1081 | * a MMIO conflict between two device, or a device tried to register
|
---|
1082 | * the same range twice. */
|
---|
1083 | #define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
|
---|
1084 | /** The MMIO range specified for removal was not found. */
|
---|
1085 | #define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
|
---|
1086 | /** The MMIO range specified for removal was invalid. The range didn't match
|
---|
1087 | * quite match a set of existing ranges. It's not possible to remove parts of
|
---|
1088 | * a MMIO range, only one or more full ranges. */
|
---|
1089 | #define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
|
---|
1090 | /** An invalid I/O port size was specified for a read or write operation. */
|
---|
1091 | #define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
|
---|
1092 | /** The MMIO handler was called for a bogus address! Internal error! */
|
---|
1093 | #define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
|
---|
1094 | /** The MMIO handler experienced a problem with the disassembler. */
|
---|
1095 | #define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
|
---|
1096 | /** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
|
---|
1097 | #define VERR_IOM_IOPORT_UNUSED (-2614)
|
---|
1098 | /** Unused MMIO register read, fill with 00. */
|
---|
1099 | #define VINF_IOM_MMIO_UNUSED_00 2615
|
---|
1100 | /** Unused MMIO register read, fill with FF. */
|
---|
1101 | #define VINF_IOM_MMIO_UNUSED_FF 2616
|
---|
1102 |
|
---|
1103 | /** Reason for leaving RZ: I/O port read. */
|
---|
1104 | #define VINF_IOM_R3_IOPORT_READ 2620
|
---|
1105 | /** Reason for leaving RZ: I/O port write. */
|
---|
1106 | #define VINF_IOM_R3_IOPORT_WRITE 2621
|
---|
1107 | /** Reason for leaving RZ: MMIO read. */
|
---|
1108 | #define VINF_IOM_R3_MMIO_READ 2623
|
---|
1109 | /** Reason for leaving RZ: MMIO write. */
|
---|
1110 | #define VINF_IOM_R3_MMIO_WRITE 2624
|
---|
1111 | /** Reason for leaving RZ: MMIO read/write. */
|
---|
1112 | #define VINF_IOM_R3_MMIO_READ_WRITE 2625
|
---|
1113 |
|
---|
1114 | /** IOMGCIOPortHandler was given an unexpected opcode. */
|
---|
1115 | #define VERR_IOM_IOPORT_UNKNOWN_OPCODE (-2630)
|
---|
1116 | /** Internal processing error \#1 in the I/O port code. */
|
---|
1117 | #define VERR_IOM_IOPORT_IPE_1 (-2631)
|
---|
1118 | /** Internal processing error \#2 in the I/O port code. */
|
---|
1119 | #define VERR_IOM_IOPORT_IPE_2 (-2632)
|
---|
1120 | /** Internal processing error \#3 in the I/O port code. */
|
---|
1121 | #define VERR_IOM_IOPORT_IPE_3 (-2633)
|
---|
1122 | /** Internal processing error \#1 in the MMIO code. */
|
---|
1123 | #define VERR_IOM_MMIO_IPE_1 (-2634)
|
---|
1124 | /** Internal processing error \#2 in the MMIO code. */
|
---|
1125 | #define VERR_IOM_MMIO_IPE_2 (-2635)
|
---|
1126 | /** Internal processing error \#3 in the MMIO code. */
|
---|
1127 | #define VERR_IOM_MMIO_IPE_3 (-2636)
|
---|
1128 | /** Got into a part of IOM that is not used when HM (VT-x/AMD-V) is enabled. */
|
---|
1129 | #define VERR_IOM_HM_IPE (-2637)
|
---|
1130 | /** @} */
|
---|
1131 |
|
---|
1132 |
|
---|
1133 | /** @name Virtual Machine Monitor (VMM) Status Codes
|
---|
1134 | * @{
|
---|
1135 | */
|
---|
1136 | /** Reason for leaving RZ: Calling host function. */
|
---|
1137 | #define VINF_VMM_CALL_HOST 2700
|
---|
1138 | /** Reason for leaving R0: Hit a ring-0 assertion on EMT. */
|
---|
1139 | #define VERR_VMM_RING0_ASSERTION (-2701)
|
---|
1140 | /** The hyper CR3 differs between PGM and CPUM. */
|
---|
1141 | #define VERR_VMM_HYPER_CR3_MISMATCH (-2702)
|
---|
1142 | /** Reason for leaving RZ: Illegal call to ring-3. */
|
---|
1143 | #define VERR_VMM_RING3_CALL_DISABLED (-2703)
|
---|
1144 | /** The VMMR0.r0 module version does not match VBoxVMM.dll/so/dylib.
|
---|
1145 | * If you just upgraded VirtualBox, please terminate all VMs and make sure
|
---|
1146 | * VBoxNetDHCP is not running. Then try again. If this error persists, try
|
---|
1147 | * re-installing VirtualBox. */
|
---|
1148 | #define VERR_VMM_R0_VERSION_MISMATCH (-2704)
|
---|
1149 | /** The VMMRC.rc module version does not match VBoxVMM.dll/so/dylib.
|
---|
1150 | * Re-install if you are a user. Developers should make sure the build is
|
---|
1151 | * complete or try with a clean build. */
|
---|
1152 | #define VERR_VMM_RC_VERSION_MISMATCH (-2705)
|
---|
1153 | /** VMM set jump error. */
|
---|
1154 | #define VERR_VMM_SET_JMP_ERROR (-2706)
|
---|
1155 | /** VMM set jump stack overflow error. */
|
---|
1156 | #define VERR_VMM_SET_JMP_STACK_OVERFLOW (-2707)
|
---|
1157 | /** VMM set jump resume error. */
|
---|
1158 | #define VERR_VMM_SET_JMP_ABORTED_RESUME (-2708)
|
---|
1159 | /** VMM long jump error. */
|
---|
1160 | #define VERR_VMM_LONG_JMP_ERROR (-2709)
|
---|
1161 | /** Unknown ring-3 call attempted. */
|
---|
1162 | #define VERR_VMM_UNKNOWN_RING3_CALL (-2710)
|
---|
1163 | /** The ring-3 call didn't set an RC. */
|
---|
1164 | #define VERR_VMM_RING3_CALL_NO_RC (-2711)
|
---|
1165 | /** Reason for leaving RC: Caller the tracer in ring-0. */
|
---|
1166 | #define VINF_VMM_CALL_TRACER (2712)
|
---|
1167 | /** Internal processing error \#1 in the switcher code. */
|
---|
1168 | #define VERR_VMM_SWITCHER_IPE_1 (-2713)
|
---|
1169 | /** Reason for leaving RZ: Unknown call to ring-3. */
|
---|
1170 | #define VINF_VMM_UNKNOWN_RING3_CALL (2714)
|
---|
1171 | /** Attempted to use stub switcher. */
|
---|
1172 | #define VERR_VMM_SWITCHER_STUB (-2715)
|
---|
1173 | /** HM returned in the wrong state. */
|
---|
1174 | #define VERR_VMM_WRONG_HM_VMCPU_STATE (-2716)
|
---|
1175 | /** SMAP enabled, but the AC flag was found to be clear - check the kernel
|
---|
1176 | * log for details. */
|
---|
1177 | #define VERR_VMM_SMAP_BUT_AC_CLEAR (-2717)
|
---|
1178 | /** @} */
|
---|
1179 |
|
---|
1180 |
|
---|
1181 | /** @name Pluggable Device and Driver Manager (PDM) Status Codes
|
---|
1182 | * @{
|
---|
1183 | */
|
---|
1184 | /** An invalid LUN specification was given. */
|
---|
1185 | #define VERR_PDM_NO_SUCH_LUN (-2800)
|
---|
1186 | /** A device encountered an unknown configuration value.
|
---|
1187 | * This means that the device is potentially misconfigured and the device
|
---|
1188 | * construction or unit attachment failed because of this. */
|
---|
1189 | #define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
|
---|
1190 | /** The above driver doesn't export a interface required by a driver being
|
---|
1191 | * attached to it. Typical misconfiguration problem. */
|
---|
1192 | #define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
|
---|
1193 | /** The below driver doesn't export a interface required by the drive
|
---|
1194 | * having attached it. Typical misconfiguration problem. */
|
---|
1195 | #define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
|
---|
1196 | /** A device didn't find a required interface with an attached driver.
|
---|
1197 | * Typical misconfiguration problem. */
|
---|
1198 | #define VERR_PDM_MISSING_INTERFACE (-2804)
|
---|
1199 | /** A driver encountered an unknown configuration value.
|
---|
1200 | * This means that the driver is potentially misconfigured and the driver
|
---|
1201 | * construction failed because of this. */
|
---|
1202 | #define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
|
---|
1203 | /** The PCI bus assigned to a device didn't have room for it.
|
---|
1204 | * Either too many devices are configured on the same PCI bus, or there are
|
---|
1205 | * some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
|
---|
1206 | #define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
|
---|
1207 | /** A queue is out of free items, the queueing operation failed. */
|
---|
1208 | #define VERR_PDM_NO_QUEUE_ITEMS (-2807)
|
---|
1209 | /** Not possible to attach further drivers to the driver.
|
---|
1210 | * A driver which doesn't support attachments (below of course) will
|
---|
1211 | * return this status code if it found that further drivers were configured
|
---|
1212 | * to be attached to it. */
|
---|
1213 | #define VERR_PDM_DRVINS_NO_ATTACH (-2808)
|
---|
1214 | /** Not possible to attach drivers to the device.
|
---|
1215 | * A device which doesn't support attachments (below of course) will
|
---|
1216 | * return this status code if it found that drivers were configured
|
---|
1217 | * to be attached to it. */
|
---|
1218 | #define VERR_PDM_DEVINS_NO_ATTACH (-2809)
|
---|
1219 | /** No attached driver.
|
---|
1220 | * The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
|
---|
1221 | * this error when no driver was configured to be attached. */
|
---|
1222 | #define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
|
---|
1223 | /** The media geometry hasn't been set yet, so it cannot be obtained.
|
---|
1224 | * The caller should then calculate the geometry from the media size. */
|
---|
1225 | #define VERR_PDM_GEOMETRY_NOT_SET (-2811)
|
---|
1226 | /** The media translation hasn't been set yet, so it cannot be obtained.
|
---|
1227 | * The caller should then guess the translation. */
|
---|
1228 | #define VERR_PDM_TRANSLATION_NOT_SET (-2812)
|
---|
1229 | /** The media is not mounted, operation requires a mounted media. */
|
---|
1230 | #define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
|
---|
1231 | /** Mount failed because a media was already mounted. Unmount the media
|
---|
1232 | * and retry the mount. */
|
---|
1233 | #define VERR_PDM_MEDIA_MOUNTED (-2814)
|
---|
1234 | /** The media is locked and cannot be unmounted. */
|
---|
1235 | #define VERR_PDM_MEDIA_LOCKED (-2815)
|
---|
1236 | /** No 'Type' attribute in the DrvBlock configuration.
|
---|
1237 | * Misconfiguration. */
|
---|
1238 | #define VERR_PDM_BLOCK_NO_TYPE (-2816)
|
---|
1239 | /** The 'Type' attribute in the DrvBlock configuration had an unknown value.
|
---|
1240 | * Misconfiguration. */
|
---|
1241 | #define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
|
---|
1242 | /** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
|
---|
1243 | * Misconfiguration. */
|
---|
1244 | #define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
|
---|
1245 | /** The block driver type wasn't supported.
|
---|
1246 | * Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
|
---|
1247 | #define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
|
---|
1248 | /** A attach or prepare mount call failed because the driver already
|
---|
1249 | * had a driver attached. */
|
---|
1250 | #define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
|
---|
1251 | /** An attempt on detaching a driver without anyone actually being attached, or
|
---|
1252 | * performing any other operation on an attached driver. */
|
---|
1253 | #define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
|
---|
1254 | /** The attached driver configuration is missing the 'Driver' attribute. */
|
---|
1255 | #define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
|
---|
1256 | /** The configured driver wasn't found.
|
---|
1257 | * Either the necessary driver modules wasn't loaded, the name was
|
---|
1258 | * misspelled, or it was a misconfiguration. */
|
---|
1259 | #define VERR_PDM_DRIVER_NOT_FOUND (-2823)
|
---|
1260 | /** The Ring-3 module was already loaded. */
|
---|
1261 | #define VINF_PDM_ALREADY_LOADED (2824)
|
---|
1262 | /** The name of the module clashed with an existing module. */
|
---|
1263 | #define VERR_PDM_MODULE_NAME_CLASH (-2825)
|
---|
1264 | /** Couldn't find any export for registration of drivers/devices. */
|
---|
1265 | #define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
|
---|
1266 | /** A module name is too long. */
|
---|
1267 | #define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
|
---|
1268 | /** Driver name clash. Another driver with the same name as the
|
---|
1269 | * one being registered exists. */
|
---|
1270 | #define VERR_PDM_DRIVER_NAME_CLASH (-2828)
|
---|
1271 | /** The version of the driver registration structure is unknown
|
---|
1272 | * to this VBox version. Either mixing incompatible versions or
|
---|
1273 | * the structure isn't correctly initialized. */
|
---|
1274 | #define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
|
---|
1275 | /** Invalid entry in the driver registration structure. */
|
---|
1276 | #define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
|
---|
1277 | /** Invalid host bit mask. */
|
---|
1278 | #define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
|
---|
1279 | /** Not possible to detach a driver because the above driver/device
|
---|
1280 | * doesn't support it. The above entity doesn't implement the pfnDetach call. */
|
---|
1281 | #define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
|
---|
1282 | /** No PCI Bus is available to register the device with. This is usually a
|
---|
1283 | * misconfiguration or in rare cases a buggy pci device. */
|
---|
1284 | #define VERR_PDM_NO_PCI_BUS (-2833)
|
---|
1285 | /** The device is not a registered PCI device and thus cannot
|
---|
1286 | * perform any PCI operations. The device forgot to register it self. */
|
---|
1287 | #define VERR_PDM_NOT_PCI_DEVICE (-2834)
|
---|
1288 |
|
---|
1289 | /** The version of the device registration structure is unknown
|
---|
1290 | * to this VBox version. Either mixing incompatible versions or
|
---|
1291 | * the structure isn't correctly initialized. */
|
---|
1292 | #define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
|
---|
1293 | /** Invalid entry in the device registration structure. */
|
---|
1294 | #define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
|
---|
1295 | /** Invalid host bit mask. */
|
---|
1296 | #define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
|
---|
1297 | /** The guest bit mask didn't match the guest being loaded. */
|
---|
1298 | #define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
|
---|
1299 | /** Device name clash. Another device with the same name as the
|
---|
1300 | * one being registered exists. */
|
---|
1301 | #define VERR_PDM_DEVICE_NAME_CLASH (-2839)
|
---|
1302 | /** The device wasn't found. There was no registered device
|
---|
1303 | * by that name. */
|
---|
1304 | #define VERR_PDM_DEVICE_NOT_FOUND (-2840)
|
---|
1305 | /** The device instance was not found. */
|
---|
1306 | #define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
|
---|
1307 | /** The device instance have no base interface. */
|
---|
1308 | #define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
|
---|
1309 | /** The device instance have no such logical unit. */
|
---|
1310 | #define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
|
---|
1311 | /** The driver instance could not be found. */
|
---|
1312 | #define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
|
---|
1313 | /** Logical Unit was not found. */
|
---|
1314 | #define VERR_PDM_LUN_NOT_FOUND (-2845)
|
---|
1315 | /** The Logical Unit was found, but it had no driver attached to it. */
|
---|
1316 | #define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
|
---|
1317 | /** The Logical Unit was found, but it had no driver attached to it. */
|
---|
1318 | #define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
|
---|
1319 | /** No PIC device instance is registered with the current VM and thus
|
---|
1320 | * the PIC operation cannot be performed. */
|
---|
1321 | #define VERR_PDM_NO_PIC_INSTANCE (-2847)
|
---|
1322 | /** No APIC device instance is registered with the current VM and thus
|
---|
1323 | * the APIC operation cannot be performed. */
|
---|
1324 | #define VERR_PDM_NO_APIC_INSTANCE (-2848)
|
---|
1325 | /** No DMAC device instance is registered with the current VM and thus
|
---|
1326 | * the DMA operation cannot be performed. */
|
---|
1327 | #define VERR_PDM_NO_DMAC_INSTANCE (-2849)
|
---|
1328 | /** No RTC device instance is registered with the current VM and thus
|
---|
1329 | * the RTC or CMOS operation cannot be performed. */
|
---|
1330 | #define VERR_PDM_NO_RTC_INSTANCE (-2850)
|
---|
1331 | /** Unable to open the host interface due to a sharing violation . */
|
---|
1332 | #define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
|
---|
1333 | /** Unable to open the host interface. */
|
---|
1334 | #define VERR_PDM_HIF_OPEN_FAILED (-2852)
|
---|
1335 | /** The device doesn't support runtime driver attaching.
|
---|
1336 | * The PDMDEVREG::pfnAttach callback function is NULL. */
|
---|
1337 | #define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
|
---|
1338 | /** The driver doesn't support runtime driver attaching.
|
---|
1339 | * The PDMDRVREG::pfnAttach callback function is NULL. */
|
---|
1340 | #define VERR_PDM_DRIVER_NO_RT_ATTACH (-2854)
|
---|
1341 | /** Invalid host interface version. */
|
---|
1342 | #define VERR_PDM_HIF_INVALID_VERSION (-2855)
|
---|
1343 |
|
---|
1344 | /** The version of the USB device registration structure is unknown
|
---|
1345 | * to this VBox version. Either mixing incompatible versions or
|
---|
1346 | * the structure isn't correctly initialized. */
|
---|
1347 | #define VERR_PDM_UNKNOWN_USBREG_VERSION (-2856)
|
---|
1348 | /** Invalid entry in the device registration structure. */
|
---|
1349 | #define VERR_PDM_INVALID_USB_REGISTRATION (-2857)
|
---|
1350 | /** Driver name clash. Another driver with the same name as the
|
---|
1351 | * one being registered exists. */
|
---|
1352 | #define VERR_PDM_USB_NAME_CLASH (-2858)
|
---|
1353 | /** The USB hub is already registered. */
|
---|
1354 | #define VERR_PDM_USB_HUB_EXISTS (-2859)
|
---|
1355 | /** Couldn't find any USB hubs to attach the device to. */
|
---|
1356 | #define VERR_PDM_NO_USB_HUBS (-2860)
|
---|
1357 | /** Couldn't find any free USB ports to attach the device to. */
|
---|
1358 | #define VERR_PDM_NO_USB_PORTS (-2861)
|
---|
1359 | /** Couldn't find the USB Proxy device. Using OSE? */
|
---|
1360 | #define VERR_PDM_NO_USBPROXY (-2862)
|
---|
1361 | /** The async completion template is still used. */
|
---|
1362 | #define VERR_PDM_ASYNC_TEMPLATE_BUSY (-2863)
|
---|
1363 | /** The async completion task is already suspended. */
|
---|
1364 | #define VERR_PDM_ASYNC_COMPLETION_ALREADY_SUSPENDED (-2864)
|
---|
1365 | /** The async completion task is not suspended. */
|
---|
1366 | #define VERR_PDM_ASYNC_COMPLETION_NOT_SUSPENDED (-2865)
|
---|
1367 | /** The driver properties were invalid, and as a consequence construction
|
---|
1368 | * failed. Caused my unusable media or similar problems. */
|
---|
1369 | #define VERR_PDM_DRIVER_INVALID_PROPERTIES (-2866)
|
---|
1370 | /** Too many instances of a device. */
|
---|
1371 | #define VERR_PDM_TOO_MANY_DEVICE_INSTANCES (-2867)
|
---|
1372 | /** Too many instances of a driver. */
|
---|
1373 | #define VERR_PDM_TOO_MANY_DRIVER_INSTANCES (-2868)
|
---|
1374 | /** Too many instances of a usb device. */
|
---|
1375 | #define VERR_PDM_TOO_MANY_USB_DEVICE_INSTANCES (-2869)
|
---|
1376 | /** The device instance structure version has changed.
|
---|
1377 | *
|
---|
1378 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1379 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1380 | * persists, try re-installing VirtualBox. */
|
---|
1381 | #define VERR_PDM_DEVINS_VERSION_MISMATCH (-2870)
|
---|
1382 | /** The device helper structure version has changed.
|
---|
1383 | *
|
---|
1384 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1385 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1386 | * persists, try re-installing VirtualBox. */
|
---|
1387 | #define VERR_PDM_DEVHLPR3_VERSION_MISMATCH (-2871)
|
---|
1388 | /** The USB device instance structure version has changed.
|
---|
1389 | *
|
---|
1390 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1391 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1392 | * persists, try re-installing VirtualBox. */
|
---|
1393 | #define VERR_PDM_USBINS_VERSION_MISMATCH (-2872)
|
---|
1394 | /** The USB device helper structure version has changed.
|
---|
1395 | *
|
---|
1396 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1397 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1398 | * persists, try re-installing VirtualBox. */
|
---|
1399 | #define VERR_PDM_USBHLPR3_VERSION_MISMATCH (-2873)
|
---|
1400 | /** The driver instance structure version has changed.
|
---|
1401 | *
|
---|
1402 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1403 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1404 | * persists, try re-installing VirtualBox. */
|
---|
1405 | #define VERR_PDM_DRVINS_VERSION_MISMATCH (-2874)
|
---|
1406 | /** The driver helper structure version has changed.
|
---|
1407 | *
|
---|
1408 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1409 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1410 | * persists, try re-installing VirtualBox. */
|
---|
1411 | #define VERR_PDM_DRVHLPR3_VERSION_MISMATCH (-2875)
|
---|
1412 | /** Generic device structure version mismatch.
|
---|
1413 | *
|
---|
1414 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1415 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1416 | * persists, try re-installing VirtualBox. */
|
---|
1417 | #define VERR_PDM_DEVICE_VERSION_MISMATCH (-2876)
|
---|
1418 | /** Generic USB device structure version mismatch.
|
---|
1419 | *
|
---|
1420 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1421 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1422 | * persists, try re-installing VirtualBox. */
|
---|
1423 | #define VERR_PDM_USBDEV_VERSION_MISMATCH (-2877)
|
---|
1424 | /** Generic driver structure version mismatch.
|
---|
1425 | *
|
---|
1426 | * If you have upgraded VirtualBox recently, please make sure you have
|
---|
1427 | * terminated all VMs and upgraded any extension packs. If this error
|
---|
1428 | * persists, try re-installing VirtualBox. */
|
---|
1429 | #define VERR_PDM_DRIVER_VERSION_MISMATCH (-2878)
|
---|
1430 | /** PDMVMMDevHeapR3ToGCPhys failure. */
|
---|
1431 | #define VERR_PDM_DEV_HEAP_R3_TO_GCPHYS (-2879)
|
---|
1432 | /** A legacy device isn't implementing the HPET notification interface. */
|
---|
1433 | #define VERR_PDM_HPET_LEGACY_NOTIFY_MISSING (-2880)
|
---|
1434 | /** Internal processing error in the critical section code. */
|
---|
1435 | #define VERR_PDM_CRITSECT_IPE (-2881)
|
---|
1436 | /** The critical section being deleted was not found. */
|
---|
1437 | #define VERR_PDM_CRITSECT_NOT_FOUND (-2882)
|
---|
1438 | /** A PDMThread API was called by the wrong thread. */
|
---|
1439 | #define VERR_PDM_THREAD_INVALID_CALLER (-2883)
|
---|
1440 | /** Internal processing error \#1 in the PDM Thread code. */
|
---|
1441 | #define VERR_PDM_THREAD_IPE_1 (-2884)
|
---|
1442 | /** Internal processing error \#2 in the PDM Thread code. */
|
---|
1443 | #define VERR_PDM_THREAD_IPE_2 (-2885)
|
---|
1444 | /** Only one PCI function is supported per PDM device. */
|
---|
1445 | #define VERR_PDM_ONE_PCI_FUNCTION_PER_DEVICE (-2886)
|
---|
1446 | /** Bad PCI configuration. */
|
---|
1447 | #define VERR_PDM_BAD_PCI_CONFIG (-2887)
|
---|
1448 | /** Internal processing error # in the PDM device code. */
|
---|
1449 | #define VERR_PDM_DEV_IPE_1 (-2888)
|
---|
1450 | /** Misconfigured driver chain transformation. */
|
---|
1451 | #define VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION (-2889)
|
---|
1452 | /** The driver is already removed, not more transformations possible (at
|
---|
1453 | * present). */
|
---|
1454 | #define VERR_PDM_CANNOT_TRANSFORM_REMOVED_DRIVER (-2890)
|
---|
1455 | /** The PCI device isn't configured as a busmaster, physical memory access
|
---|
1456 | * rejected. */
|
---|
1457 | #define VERR_PDM_NOT_PCI_BUS_MASTER (-2891)
|
---|
1458 | /** Got into a part of PDM that is not used when HM (VT-x/AMD-V) is enabled. */
|
---|
1459 | #define VERR_PDM_HM_IPE (-2892)
|
---|
1460 | /** @} */
|
---|
1461 |
|
---|
1462 |
|
---|
1463 | /** @name Host-Guest Communication Manager (HGCM) Status Codes
|
---|
1464 | * @{
|
---|
1465 | */
|
---|
1466 | /** Requested service does not exist. */
|
---|
1467 | #define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
|
---|
1468 | /** Service rejected client connection */
|
---|
1469 | #define VINF_HGCM_CLIENT_REJECTED 2901
|
---|
1470 | /** Command address is invalid. */
|
---|
1471 | #define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
|
---|
1472 | /** Service will execute the command in background. */
|
---|
1473 | #define VINF_HGCM_ASYNC_EXECUTE 2903
|
---|
1474 | /** HGCM could not perform requested operation because of an internal error. */
|
---|
1475 | #define VERR_HGCM_INTERNAL (-2904)
|
---|
1476 | /** Invalid HGCM client id. */
|
---|
1477 | #define VERR_HGCM_INVALID_CLIENT_ID (-2905)
|
---|
1478 | /** The HGCM is saving state. */
|
---|
1479 | #define VINF_HGCM_SAVE_STATE (2906)
|
---|
1480 | /** Requested service already exists. */
|
---|
1481 | #define VERR_HGCM_SERVICE_EXISTS (-2907)
|
---|
1482 |
|
---|
1483 | /** @} */
|
---|
1484 |
|
---|
1485 |
|
---|
1486 | /** @name Network Address Translation Driver (DrvNAT) Status Codes
|
---|
1487 | * @{
|
---|
1488 | */
|
---|
1489 | /** Failed to find the DNS configured for this machine. */
|
---|
1490 | #define VINF_NAT_DNS 3000
|
---|
1491 | /** Failed to convert the specified Guest IP to a binary IP address.
|
---|
1492 | * Malformed input. */
|
---|
1493 | #define VERR_NAT_REDIR_GUEST_IP (-3001)
|
---|
1494 | /** Failed while setting up a redirector rule.
|
---|
1495 | * There probably is a conflict between the rule and some existing
|
---|
1496 | * service on the computer. */
|
---|
1497 | #define VERR_NAT_REDIR_SETUP (-3002)
|
---|
1498 | /** @} */
|
---|
1499 |
|
---|
1500 |
|
---|
1501 | /** @name HostIF Driver (DrvTUN) Status Codes
|
---|
1502 | * @{
|
---|
1503 | */
|
---|
1504 | /** The Host Interface Networking init program failed. */
|
---|
1505 | #define VERR_HOSTIF_INIT_FAILED (-3100)
|
---|
1506 | /** The Host Interface Networking device name is too long. */
|
---|
1507 | #define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
|
---|
1508 | /** The Host Interface Networking name config IOCTL call failed. */
|
---|
1509 | #define VERR_HOSTIF_IOCTL (-3102)
|
---|
1510 | /** Failed to make the Host Interface Networking handle non-blocking. */
|
---|
1511 | #define VERR_HOSTIF_BLOCKING (-3103)
|
---|
1512 | /** If a Host Interface Networking filehandle was specified it's not allowed to
|
---|
1513 | * have any init or term programs. */
|
---|
1514 | #define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
|
---|
1515 | /** The Host Interface Networking terminate program failed. */
|
---|
1516 | #define VERR_HOSTIF_TERM_FAILED (-3105)
|
---|
1517 | /** @} */
|
---|
1518 |
|
---|
1519 |
|
---|
1520 | /** @name VBox HDD Container (VD) Status Codes
|
---|
1521 | * @{
|
---|
1522 | */
|
---|
1523 | /** Invalid image type. */
|
---|
1524 | #define VERR_VD_INVALID_TYPE (-3200)
|
---|
1525 | /** Operation can't be done in current HDD container state. */
|
---|
1526 | #define VERR_VD_INVALID_STATE (-3201)
|
---|
1527 | /** Configuration value not found. */
|
---|
1528 | #define VERR_VD_VALUE_NOT_FOUND (-3202)
|
---|
1529 | /** Virtual HDD is not opened. */
|
---|
1530 | #define VERR_VD_NOT_OPENED (-3203)
|
---|
1531 | /** Requested image is not opened. */
|
---|
1532 | #define VERR_VD_IMAGE_NOT_FOUND (-3204)
|
---|
1533 | /** Image is read-only. */
|
---|
1534 | #define VERR_VD_IMAGE_READ_ONLY (-3205)
|
---|
1535 | /** Geometry hasn't been set. */
|
---|
1536 | #define VERR_VD_GEOMETRY_NOT_SET (-3206)
|
---|
1537 | /** No data for this block in image. */
|
---|
1538 | #define VERR_VD_BLOCK_FREE (-3207)
|
---|
1539 | /** Differencing and parent images can't be used together due to UUID. */
|
---|
1540 | #define VERR_VD_UUID_MISMATCH (-3208)
|
---|
1541 | /** Asynchronous I/O request finished. */
|
---|
1542 | #define VINF_VD_ASYNC_IO_FINISHED 3209
|
---|
1543 | /** Asynchronous I/O is not finished yet. */
|
---|
1544 | #define VERR_VD_ASYNC_IO_IN_PROGRESS (-3210)
|
---|
1545 | /** The image is too small or too large for this format. */
|
---|
1546 | #define VERR_VD_INVALID_SIZE (-3211)
|
---|
1547 | /** Configuration value is unknown. This indicates misconfiguration. */
|
---|
1548 | #define VERR_VD_UNKNOWN_CFG_VALUES (-3212)
|
---|
1549 | /** Interface is unknown. This indicates misconfiguration. */
|
---|
1550 | #define VERR_VD_UNKNOWN_INTERFACE (-3213)
|
---|
1551 | /** The DEK for disk encryption is missing. */
|
---|
1552 | #define VERR_VD_DEK_MISSING (-3214)
|
---|
1553 | /** The provided password to decrypt the DEK was incorrect. */
|
---|
1554 | #define VERR_VD_PASSWORD_INCORRECT (-3215)
|
---|
1555 | /** Generic: Invalid image file header. Use this for plugins. */
|
---|
1556 | #define VERR_VD_GEN_INVALID_HEADER (-3220)
|
---|
1557 | /** VDI: Invalid image file header. */
|
---|
1558 | #define VERR_VD_VDI_INVALID_HEADER (-3230)
|
---|
1559 | /** VDI: Invalid image file header: invalid signature. */
|
---|
1560 | #define VERR_VD_VDI_INVALID_SIGNATURE (-3231)
|
---|
1561 | /** VDI: Invalid image file header: invalid version. */
|
---|
1562 | #define VERR_VD_VDI_UNSUPPORTED_VERSION (-3232)
|
---|
1563 | /** Comment string is too long. */
|
---|
1564 | #define VERR_VD_VDI_COMMENT_TOO_LONG (-3233)
|
---|
1565 | /** VMDK: Invalid image file header. */
|
---|
1566 | #define VERR_VD_VMDK_INVALID_HEADER (-3240)
|
---|
1567 | /** VMDK: Invalid image file header: invalid version. */
|
---|
1568 | #define VERR_VD_VMDK_UNSUPPORTED_VERSION (-3241)
|
---|
1569 | /** VMDK: Image property not found. */
|
---|
1570 | #define VERR_VD_VMDK_VALUE_NOT_FOUND (-3242)
|
---|
1571 | /** VMDK: Operation can't be done in current image state. */
|
---|
1572 | #define VERR_VD_VMDK_INVALID_STATE (-3243)
|
---|
1573 | /** VMDK: Format is invalid/inconsistent. */
|
---|
1574 | #define VERR_VD_VMDK_INVALID_FORMAT (-3244)
|
---|
1575 | /** VMDK: Invalid write position. */
|
---|
1576 | #define VERR_VD_VMDK_INVALID_WRITE (-3245)
|
---|
1577 | /** iSCSI: Invalid header, i.e. dummy for validity check. */
|
---|
1578 | #define VERR_VD_ISCSI_INVALID_HEADER (-3250)
|
---|
1579 | /** iSCSI: Operation can't be done in current image state. */
|
---|
1580 | #define VERR_VD_ISCSI_INVALID_STATE (-3251)
|
---|
1581 | /** iSCSI: Invalid device type (not a disk). */
|
---|
1582 | #define VERR_VD_ISCSI_INVALID_TYPE (-3252)
|
---|
1583 | /** iSCSI: Initiator secret not decrypted */
|
---|
1584 | #define VERR_VD_ISCSI_SECRET_ENCRYPTED (-3253)
|
---|
1585 | /** VHD: Invalid image file header. */
|
---|
1586 | #define VERR_VD_VHD_INVALID_HEADER (-3260)
|
---|
1587 | /** Parallels HDD: Invalid image file header. */
|
---|
1588 | #define VERR_VD_PARALLELS_INVALID_HEADER (-3265)
|
---|
1589 | /** DMG: Invalid image file header. */
|
---|
1590 | #define VERR_VD_DMG_INVALID_HEADER (-3267)
|
---|
1591 | /** Raw: Invalid image file header. */
|
---|
1592 | #define VERR_VD_RAW_INVALID_HEADER (-3270)
|
---|
1593 | /** Raw: Invalid image file type. */
|
---|
1594 | #define VERR_VD_RAW_INVALID_TYPE (-3271)
|
---|
1595 | /** The backend needs more metadata before it can continue. */
|
---|
1596 | #define VERR_VD_NOT_ENOUGH_METADATA (-3272)
|
---|
1597 | /** Halt the current I/O context until further notification from the backend. */
|
---|
1598 | #define VERR_VD_IOCTX_HALT (-3273)
|
---|
1599 | /** The disk has a cache attached already. */
|
---|
1600 | #define VERR_VD_CACHE_ALREADY_EXISTS (-3274)
|
---|
1601 | /** There is no cache attached to the disk. */
|
---|
1602 | #define VERR_VD_CACHE_NOT_FOUND (-3275)
|
---|
1603 | /** The cache is not up to date with the image. */
|
---|
1604 | #define VERR_VD_CACHE_NOT_UP_TO_DATE (-3276)
|
---|
1605 | /** The given range does not meet the required alignment. */
|
---|
1606 | #define VERR_VD_DISCARD_ALIGNMENT_NOT_MET (-3277)
|
---|
1607 | /** The discard operation is not supported for this image. */
|
---|
1608 | #define VERR_VD_DISCARD_NOT_SUPPORTED (-3278)
|
---|
1609 | /** The image is the correct format but is corrupted. */
|
---|
1610 | #define VERR_VD_IMAGE_CORRUPTED (-3279)
|
---|
1611 | /** Repairing the image is not supported. */
|
---|
1612 | #define VERR_VD_IMAGE_REPAIR_NOT_SUPPORTED (-3280)
|
---|
1613 | /** Repairing the image is not possible because the corruption is to severe. */
|
---|
1614 | #define VERR_VD_IMAGE_REPAIR_IMPOSSIBLE (-3281)
|
---|
1615 | /** Reading from the image was not possible because the offset is out of the image range.
|
---|
1616 | * This usually indicates that there is a minor corruption in the image meta data. */
|
---|
1617 | #define VERR_VD_READ_OUT_OF_RANGE (-3282)
|
---|
1618 | /** Block read was marked as free in the image and returned as a zero block. */
|
---|
1619 | #define VINF_VD_NEW_ZEROED_BLOCK 3283
|
---|
1620 | /** Unable to parse the XML in DMG file. */
|
---|
1621 | #define VERR_VD_DMG_XML_PARSE_ERROR (-3284)
|
---|
1622 | /** Unable to locate a usable DMG file within the XAR archive. */
|
---|
1623 | #define VERR_VD_DMG_NOT_FOUND_INSIDE_XAR (-3285)
|
---|
1624 | /** The size of the raw image is not dividable by 512 */
|
---|
1625 | #define VERR_VD_RAW_SIZE_MODULO_512 (-3286)
|
---|
1626 | /** The size of the raw image is not dividable by 2048 */
|
---|
1627 | #define VERR_VD_RAW_SIZE_MODULO_2048 (-3287)
|
---|
1628 | /** The size of the raw optical image is too small (<= 32K) */
|
---|
1629 | #define VERR_VD_RAW_SIZE_OPTICAL_TOO_SMALL (-3288)
|
---|
1630 | /** The size of the raw floppy image is too big (>2.88MB) */
|
---|
1631 | #define VERR_VD_RAW_SIZE_FLOPPY_TOO_BIG (-3289)
|
---|
1632 |
|
---|
1633 | /** @} */
|
---|
1634 |
|
---|
1635 |
|
---|
1636 | /** @name VBox Guest Library (VBGL) Status Codes
|
---|
1637 | * @{
|
---|
1638 | */
|
---|
1639 | /** Library was not initialized. */
|
---|
1640 | #define VERR_VBGL_NOT_INITIALIZED (-3300)
|
---|
1641 | /** Virtual address was not allocated by the library. */
|
---|
1642 | #define VERR_VBGL_INVALID_ADDR (-3301)
|
---|
1643 | /** IOCtl to VBoxGuest driver failed. */
|
---|
1644 | #define VERR_VBGL_IOCTL_FAILED (-3302)
|
---|
1645 | /** @} */
|
---|
1646 |
|
---|
1647 |
|
---|
1648 | /** @name VBox USB (VUSB) Status Codes
|
---|
1649 | * @{
|
---|
1650 | */
|
---|
1651 | /** No available ports on the hub.
|
---|
1652 | * This error is returned when a device is attempted created and/or attached
|
---|
1653 | * to a hub which is out of ports. */
|
---|
1654 | #define VERR_VUSB_NO_PORTS (-3400)
|
---|
1655 | /** The requested operation cannot be performed on a detached USB device. */
|
---|
1656 | #define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
|
---|
1657 | /** Failed to allocate memory for a URB. */
|
---|
1658 | #define VERR_VUSB_NO_URB_MEMORY (-3402)
|
---|
1659 | /** General failure during URB queuing.
|
---|
1660 | * This will go away when the queueing gets proper status code handling. */
|
---|
1661 | #define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
|
---|
1662 | /** Device creation failed because the USB device name was not found. */
|
---|
1663 | #define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
|
---|
1664 | /** Not permitted to open the USB device.
|
---|
1665 | * The user doesn't have access to the device in the usbfs, check the mount options. */
|
---|
1666 | #define VERR_VUSB_USBFS_PERMISSION (-3405)
|
---|
1667 | /** The requested operation cannot be performed because the device
|
---|
1668 | * is currently being reset. */
|
---|
1669 | #define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
|
---|
1670 | /** The requested operation cannot be performed because the device
|
---|
1671 | * is currently suspended. */
|
---|
1672 | #define VERR_VUSB_DEVICE_IS_SUSPENDED (-3407)
|
---|
1673 | /** Not permitted to open the USB device.
|
---|
1674 | * The user doesn't have access to the device node, check group memberships. */
|
---|
1675 | #define VERR_VUSB_USB_DEVICE_PERMISSION (-3408)
|
---|
1676 | /** @} */
|
---|
1677 |
|
---|
1678 |
|
---|
1679 | /** @name VBox VGA Status Codes
|
---|
1680 | * @{
|
---|
1681 | */
|
---|
1682 | /** One of the custom modes was incorrect.
|
---|
1683 | * The format or bit count of the custom mode value is invalid. */
|
---|
1684 | #define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
|
---|
1685 | /** The display connector is resizing. */
|
---|
1686 | #define VINF_VGA_RESIZE_IN_PROGRESS (3501)
|
---|
1687 | /** @} */
|
---|
1688 |
|
---|
1689 |
|
---|
1690 | /** @name Internal Networking Status Codes
|
---|
1691 | * @{
|
---|
1692 | */
|
---|
1693 | /** The networking interface to filter was not found. */
|
---|
1694 | #define VERR_INTNET_FLT_IF_NOT_FOUND (-3600)
|
---|
1695 | /** The networking interface to filter was busy (used by someone). */
|
---|
1696 | #define VERR_INTNET_FLT_IF_BUSY (-3601)
|
---|
1697 | /** Failed to create or connect to a networking interface filter. */
|
---|
1698 | #define VERR_INTNET_FLT_IF_FAILED (-3602)
|
---|
1699 | /** The network already exists with a different trunk configuration. */
|
---|
1700 | #define VERR_INTNET_INCOMPATIBLE_TRUNK (-3603)
|
---|
1701 | /** The network already exists with a different security profile (restricted / public). */
|
---|
1702 | #define VERR_INTNET_INCOMPATIBLE_FLAGS (-3604)
|
---|
1703 | /** Failed to create a virtual network interface instance. */
|
---|
1704 | #define VERR_INTNET_FLT_VNIC_CREATE_FAILED (-3605)
|
---|
1705 | /** Failed to retrieve a virtual network interface link ID. */
|
---|
1706 | #define VERR_INTNET_FLT_VNIC_LINK_ID_NOT_FOUND (-3606)
|
---|
1707 | /** Failed to initialize a virtual network interface instance. */
|
---|
1708 | #define VERR_INTNET_FLT_VNIC_INIT_FAILED (-3607)
|
---|
1709 | /** Failed to open a virtual network interface instance. */
|
---|
1710 | #define VERR_INTNET_FLT_VNIC_OPEN_FAILED (-3608)
|
---|
1711 | /** Failed to retrieve underlying (lower mac) link. */
|
---|
1712 | #define VERR_INTNET_FLT_LOWER_LINK_INFO_NOT_FOUND (-3609)
|
---|
1713 | /** Failed to open underlying link instance. */
|
---|
1714 | #define VERR_INTNET_FLT_LOWER_LINK_OPEN_FAILED (-3610)
|
---|
1715 | /** Failed to get underlying link ID. */
|
---|
1716 | #define VERR_INTNET_FLT_LOWER_LINK_ID_NOT_FOUND (-3611)
|
---|
1717 | /** @} */
|
---|
1718 |
|
---|
1719 |
|
---|
1720 | /** @name Support Driver Status Codes
|
---|
1721 | * @{
|
---|
1722 | */
|
---|
1723 | /** The component factory was not found. */
|
---|
1724 | #define VERR_SUPDRV_COMPONENT_NOT_FOUND (-3700)
|
---|
1725 | /** The component factories do not support the requested interface. */
|
---|
1726 | #define VERR_SUPDRV_INTERFACE_NOT_SUPPORTED (-3701)
|
---|
1727 | /** The service module was not found. */
|
---|
1728 | #define VERR_SUPDRV_SERVICE_NOT_FOUND (-3702)
|
---|
1729 | /** The host kernel is too old. */
|
---|
1730 | #define VERR_SUPDRV_KERNEL_TOO_OLD_FOR_VTX (-3703)
|
---|
1731 | /** Bad VTG magic value. */
|
---|
1732 | #define VERR_SUPDRV_VTG_MAGIC (-3704)
|
---|
1733 | /** Bad VTG bit count value. */
|
---|
1734 | #define VERR_SUPDRV_VTG_BITS (-3705)
|
---|
1735 | /** Bad VTG header - misc. */
|
---|
1736 | #define VERR_SUPDRV_VTG_BAD_HDR_MISC (-3706)
|
---|
1737 | /** Bad VTG header - offset. */
|
---|
1738 | #define VERR_SUPDRV_VTG_BAD_HDR_OFF (-3707)
|
---|
1739 | /** Bad VTG header - offset. */
|
---|
1740 | #define VERR_SUPDRV_VTG_BAD_HDR_PTR (-3708)
|
---|
1741 | /** Bad VTG header - to low value. */
|
---|
1742 | #define VERR_SUPDRV_VTG_BAD_HDR_TOO_FEW (-3709)
|
---|
1743 | /** Bad VTG header - to high value. */
|
---|
1744 | #define VERR_SUPDRV_VTG_BAD_HDR_TOO_MUCH (-3710)
|
---|
1745 | /** Bad VTG header - size value is not a multiple of the structure size. */
|
---|
1746 | #define VERR_SUPDRV_VTG_BAD_HDR_NOT_MULTIPLE (-3711)
|
---|
1747 | /** Bad VTG string table offset. */
|
---|
1748 | #define VERR_SUPDRV_VTG_STRTAB_OFF (-3712)
|
---|
1749 | /** Bad VTG string. */
|
---|
1750 | #define VERR_SUPDRV_VTG_BAD_STRING (-3713)
|
---|
1751 | /** VTG string is too long. */
|
---|
1752 | #define VERR_SUPDRV_VTG_STRING_TOO_LONG (-3714)
|
---|
1753 | /** Bad VTG attribute value. */
|
---|
1754 | #define VERR_SUPDRV_VTG_BAD_ATTR (-3715)
|
---|
1755 | /** Bad VTG provider descriptor. */
|
---|
1756 | #define VERR_SUPDRV_VTG_BAD_PROVIDER (-3716)
|
---|
1757 | /** Bad VTG probe descriptor. */
|
---|
1758 | #define VERR_SUPDRV_VTG_BAD_PROBE (-3717)
|
---|
1759 | /** Bad VTG argument list descriptor. */
|
---|
1760 | #define VERR_SUPDRV_VTG_BAD_ARGLIST (-3718)
|
---|
1761 | /** Bad VTG probe enabled data. */
|
---|
1762 | #define VERR_SUPDRV_VTG_BAD_PROBE_ENABLED (-3719)
|
---|
1763 | /** Bad VTG probe location record. */
|
---|
1764 | #define VERR_SUPDRV_VTG_BAD_PROBE_LOC (-3720)
|
---|
1765 | /** The VTG object for the session or image has already been registered. */
|
---|
1766 | #define VERR_SUPDRV_VTG_ALREADY_REGISTERED (-3721)
|
---|
1767 | /** A driver may only register one VTG object per session. */
|
---|
1768 | #define VERR_SUPDRV_VTG_ONLY_ONCE_PER_SESSION (-3722)
|
---|
1769 | /** A tracer has already been registered. */
|
---|
1770 | #define VERR_SUPDRV_TRACER_ALREADY_REGISTERED (-3723)
|
---|
1771 | /** The session has no tracer associated with it. */
|
---|
1772 | #define VERR_SUPDRV_TRACER_NOT_REGISTERED (-3724)
|
---|
1773 | /** The tracer has already been opened in this sesssion. */
|
---|
1774 | #define VERR_SUPDRV_TRACER_ALREADY_OPENED (-3725)
|
---|
1775 | /** The tracer has not been opened. */
|
---|
1776 | #define VERR_SUPDRV_TRACER_NOT_OPENED (-3726)
|
---|
1777 | /** There is no tracer present. */
|
---|
1778 | #define VERR_SUPDRV_TRACER_NOT_PRESENT (-3727)
|
---|
1779 | /** The tracer is unloading. */
|
---|
1780 | #define VERR_SUPDRV_TRACER_UNLOADING (-3728)
|
---|
1781 | /** Another thread in the session is talking to the tracer. */
|
---|
1782 | #define VERR_SUPDRV_TRACER_SESSION_BUSY (-3729)
|
---|
1783 | /** The tracer cannot open it self in the same session. */
|
---|
1784 | #define VERR_SUPDRV_TRACER_CANNOT_OPEN_SELF (-3730)
|
---|
1785 | /** Bad argument flags. */
|
---|
1786 | #define VERR_SUPDRV_TRACER_BAD_ARG_FLAGS (-3731)
|
---|
1787 | /** The session has reached the max number of (user mode) providers. */
|
---|
1788 | #define VERR_SUPDRV_TRACER_TOO_MANY_PROVIDERS (-3732)
|
---|
1789 | /** The tracepoint provider object is too large. */
|
---|
1790 | #define VERR_SUPDRV_TRACER_TOO_LARGE (-3733)
|
---|
1791 | /** The probe location array isn't adjacent to the probe enable array. */
|
---|
1792 | #define VERR_SUPDRV_TRACER_UMOD_NOT_ADJACENT (-3734)
|
---|
1793 | /** The user mode tracepoint provider has too many probe locations and
|
---|
1794 | * probes. */
|
---|
1795 | #define VERR_SUPDRV_TRACER_UMOD_TOO_MANY_PROBES (-3735)
|
---|
1796 | /** The user mode tracepoint provider string table is too large. */
|
---|
1797 | #define VERR_SUPDRV_TRACER_UMOD_STRTAB_TOO_BIG (-3736)
|
---|
1798 | /** The user mode tracepoint provider string table offset is bad. */
|
---|
1799 | #define VERR_SUPDRV_TRACER_UMOD_STRTAB_OFF_BAD (-3737)
|
---|
1800 | /** The VM process was denied access to vboxdrv because someone have managed to
|
---|
1801 | * open the process or its main thread with too broad access rights. */
|
---|
1802 | #define VERR_SUPDRV_HARDENING_EVIL_HANDLE (-3738)
|
---|
1803 | /** Error opening the ApiPort LPC object. */
|
---|
1804 | #define VERR_SUPDRV_APIPORT_OPEN_ERROR (-3739)
|
---|
1805 | /** Error enumerating all processes in the session. */
|
---|
1806 | #define VERR_SUPDRV_SESSION_PROCESS_ENUM_ERROR (-3740)
|
---|
1807 | /** The CSRSS instance associated with the client process could not be
|
---|
1808 | * located. */
|
---|
1809 | #define VERR_SUPDRV_CSRSS_NOT_FOUND (-3741)
|
---|
1810 | /** Type error opening the ApiPort LPC object. */
|
---|
1811 | #define VERR_SUPDRV_APIPORT_OPEN_ERROR_TYPE (-3742)
|
---|
1812 | /** Failed to measure the TSC delta between two CPUs. */
|
---|
1813 | #define VERR_SUPDRV_TSC_DELTA_MEASUREMENT_FAILED (-3743)
|
---|
1814 | /** Failed to calculate the TSC frequency. */
|
---|
1815 | #define VERR_SUPDRV_TSC_FREQ_MEASUREMENT_FAILED (-3744)
|
---|
1816 | /** Failed to get the delta-adjusted TSC value. */
|
---|
1817 | #define VERR_SUPDRV_TSC_READ_FAILED (-3745)
|
---|
1818 | /** Failed to measure the TSC delta between two CPUs, continue without any
|
---|
1819 | * TSC-delta. */
|
---|
1820 | #define VWRN_SUPDRV_TSC_DELTA_MEASUREMENT_FAILED 3746
|
---|
1821 | /** A TSC-delta measurement request is currently being serviced. */
|
---|
1822 | #define VERR_SUPDRV_TSC_DELTA_MEASUREMENT_BUSY (-3747)
|
---|
1823 | /** The process trying to open VBoxDrv is not a budding VM process (1). */
|
---|
1824 | #define VERR_SUPDRV_NOT_BUDDING_VM_PROCESS_1 (-3748)
|
---|
1825 | /** The process trying to open VBoxDrv is not a budding VM process (2). */
|
---|
1826 | #define VERR_SUPDRV_NOT_BUDDING_VM_PROCESS_2 (-3749)
|
---|
1827 | /** @} */
|
---|
1828 |
|
---|
1829 |
|
---|
1830 | /** @name Support Library Status Codes
|
---|
1831 | * @{
|
---|
1832 | */
|
---|
1833 | /** The specified path was not absolute (hardening). */
|
---|
1834 | #define VERR_SUPLIB_PATH_NOT_ABSOLUTE (-3750)
|
---|
1835 | /** The specified path was not clean (hardening). */
|
---|
1836 | #define VERR_SUPLIB_PATH_NOT_CLEAN (-3751)
|
---|
1837 | /** The specified path is too long (hardening). */
|
---|
1838 | #define VERR_SUPLIB_PATH_TOO_LONG (-3752)
|
---|
1839 | /** The specified path is too short (hardening). */
|
---|
1840 | #define VERR_SUPLIB_PATH_TOO_SHORT (-3753)
|
---|
1841 | /** The specified path has too many components (hardening). */
|
---|
1842 | #define VERR_SUPLIB_PATH_TOO_MANY_COMPONENTS (-3754)
|
---|
1843 | /** The specified path is a root path (hardening). */
|
---|
1844 | #define VERR_SUPLIB_PATH_IS_ROOT (-3755)
|
---|
1845 | /** Failed to enumerate directory (hardening). */
|
---|
1846 | #define VERR_SUPLIB_DIR_ENUM_FAILED (-3756)
|
---|
1847 | /** Failed to stat a file/dir during enumeration (hardening). */
|
---|
1848 | #define VERR_SUPLIB_STAT_ENUM_FAILED (-3757)
|
---|
1849 | /** Failed to stat a file/dir (hardening). */
|
---|
1850 | #define VERR_SUPLIB_STAT_FAILED (-3758)
|
---|
1851 | /** Failed to fstat a native handle (hardening). */
|
---|
1852 | #define VERR_SUPLIB_FSTAT_FAILED (-3759)
|
---|
1853 | /** Found an illegal symbolic link (hardening). */
|
---|
1854 | #define VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED (-3760)
|
---|
1855 | /** Found something which isn't a file nor a directory (hardening). */
|
---|
1856 | #define VERR_SUPLIB_NOT_DIR_NOT_FILE (-3761)
|
---|
1857 | /** The specified path is a directory and not a file (hardening). */
|
---|
1858 | #define VERR_SUPLIB_IS_DIRECTORY (-3762)
|
---|
1859 | /** The specified path is a file and not a directory (hardening). */
|
---|
1860 | #define VERR_SUPLIB_IS_FILE (-3763)
|
---|
1861 | /** The path is not the same object as the native handle (hardening). */
|
---|
1862 | #define VERR_SUPLIB_NOT_SAME_OBJECT (-3764)
|
---|
1863 | /** The owner is not root (hardening). */
|
---|
1864 | #define VERR_SUPLIB_OWNER_NOT_ROOT (-3765)
|
---|
1865 | /** The group is a non-system group and it has write access (hardening). */
|
---|
1866 | #define VERR_SUPLIB_WRITE_NON_SYS_GROUP (-3766)
|
---|
1867 | /** The file or directory is world writable (hardening). */
|
---|
1868 | #define VERR_SUPLIB_WORLD_WRITABLE (-3767)
|
---|
1869 | /** The argv[0] of an internal application does not match the executable image
|
---|
1870 | * path (hardening). */
|
---|
1871 | #define VERR_SUPLIB_INVALID_ARGV0_INTERNAL (-3768)
|
---|
1872 | /** The internal application does not reside in the correct place (hardening). */
|
---|
1873 | #define VERR_SUPLIB_INVALID_INTERNAL_APP_DIR (-3769)
|
---|
1874 | /** Unable to establish trusted of VM process (0). */
|
---|
1875 | #define VERR_SUPLIB_NT_PROCESS_UNTRUSTED_0 (-3770)
|
---|
1876 | /** Unable to establish trusted of VM process (1). */
|
---|
1877 | #define VERR_SUPLIB_NT_PROCESS_UNTRUSTED_1 (-3771)
|
---|
1878 | /** Unable to establish trusted of VM process (2). */
|
---|
1879 | #define VERR_SUPLIB_NT_PROCESS_UNTRUSTED_2 (-3772)
|
---|
1880 | /** Unable to establish trusted of VM process (3). */
|
---|
1881 | #define VERR_SUPLIB_NT_PROCESS_UNTRUSTED_3 (-3773)
|
---|
1882 | /** Unable to establish trusted of VM process (4). */
|
---|
1883 | #define VERR_SUPLIB_NT_PROCESS_UNTRUSTED_4 (-3774)
|
---|
1884 | /** Unable to establish trusted of VM process (5). */
|
---|
1885 | #define VERR_SUPLIB_NT_PROCESS_UNTRUSTED_5 (-3775)
|
---|
1886 | /** @} */
|
---|
1887 |
|
---|
1888 |
|
---|
1889 | /** @name VBox GMM Status Codes
|
---|
1890 | * @{
|
---|
1891 | */
|
---|
1892 | /** The GMM is out of pages and needs to be give another chunk of user memory that
|
---|
1893 | * it can lock down and borrow pages from. */
|
---|
1894 | #define VERR_GMM_SEED_ME (-3800)
|
---|
1895 | /** Unable to allocate more pages from the host system. */
|
---|
1896 | #define VERR_GMM_OUT_OF_MEMORY (-3801)
|
---|
1897 | /** Hit the global allocation limit.
|
---|
1898 | * If you know there is still sufficient memory available, try raising the limit. */
|
---|
1899 | #define VERR_GMM_HIT_GLOBAL_LIMIT (-3802)
|
---|
1900 | /** Hit the a VM account limit. */
|
---|
1901 | #define VERR_GMM_HIT_VM_ACCOUNT_LIMIT (-3803)
|
---|
1902 | /** Attempt to free more memory than what was previously allocated. */
|
---|
1903 | #define VERR_GMM_ATTEMPT_TO_FREE_TOO_MUCH (-3804)
|
---|
1904 | /** Attempted to report too many pages as deflated. */
|
---|
1905 | #define VERR_GMM_ATTEMPT_TO_DEFLATE_TOO_MUCH (-3805)
|
---|
1906 | /** The page to be freed or updated was not found. */
|
---|
1907 | #define VERR_GMM_PAGE_NOT_FOUND (-3806)
|
---|
1908 | /** The specified shared page was not actually private. */
|
---|
1909 | #define VERR_GMM_PAGE_NOT_PRIVATE (-3807)
|
---|
1910 | /** The specified shared page was not actually shared. */
|
---|
1911 | #define VERR_GMM_PAGE_NOT_SHARED (-3808)
|
---|
1912 | /** The page to be freed was already freed. */
|
---|
1913 | #define VERR_GMM_PAGE_ALREADY_FREE (-3809)
|
---|
1914 | /** The page to be updated or freed was noted owned by the caller. */
|
---|
1915 | #define VERR_GMM_NOT_PAGE_OWNER (-3810)
|
---|
1916 | /** The specified chunk was not found. */
|
---|
1917 | #define VERR_GMM_CHUNK_NOT_FOUND (-3811)
|
---|
1918 | /** The chunk has already been mapped into the process. */
|
---|
1919 | #define VERR_GMM_CHUNK_ALREADY_MAPPED (-3812)
|
---|
1920 | /** The chunk to be unmapped isn't actually mapped into the process. */
|
---|
1921 | #define VERR_GMM_CHUNK_NOT_MAPPED (-3813)
|
---|
1922 | /** The chunk has been mapped too many times already (impossible). */
|
---|
1923 | #define VERR_GMM_TOO_MANY_CHUNK_MAPPINGS (-3814)
|
---|
1924 | /** The reservation or reservation update was declined - too many VMs, too
|
---|
1925 | * little memory, and/or too low GMM configuration. */
|
---|
1926 | #define VERR_GMM_MEMORY_RESERVATION_DECLINED (-3815)
|
---|
1927 | /** A GMM sanity check failed. */
|
---|
1928 | #define VERR_GMM_IS_NOT_SANE (-3816)
|
---|
1929 | /** Inserting a new chunk failed. */
|
---|
1930 | #define VERR_GMM_CHUNK_INSERT (-3817)
|
---|
1931 | /** Failed to obtain the GMM instance. */
|
---|
1932 | #define VERR_GMM_INSTANCE (-3818)
|
---|
1933 | /** Bad mutex semaphore flags. */
|
---|
1934 | #define VERR_GMM_MTX_FLAGS (-3819)
|
---|
1935 | /** Internal processing error in the page allocator. */
|
---|
1936 | #define VERR_GMM_ALLOC_PAGES_IPE (-3820)
|
---|
1937 | /** Invalid page count given to GMMR3FreePagesPerform. */
|
---|
1938 | #define VERR_GMM_ACTUAL_PAGES_IPE (-3821)
|
---|
1939 | /** The shared module name is too long. */
|
---|
1940 | #define VERR_GMM_MODULE_NAME_TOO_LONG (-3822)
|
---|
1941 | /** The shared module version string is too long. */
|
---|
1942 | #define VERR_GMM_MODULE_VERSION_TOO_LONG (-3823)
|
---|
1943 | /** The shared module has too many regions. */
|
---|
1944 | #define VERR_GMM_TOO_MANY_REGIONS (-3824)
|
---|
1945 | /** The guest has reported too many modules. */
|
---|
1946 | #define VERR_GMM_TOO_MANY_PER_VM_MODULES (-3825)
|
---|
1947 | /** The guest has reported too many modules. */
|
---|
1948 | #define VERR_GMM_TOO_MANY_GLOBAL_MODULES (-3826)
|
---|
1949 | /** The shared module is already registered. */
|
---|
1950 | #define VINF_GMM_SHARED_MODULE_ALREADY_REGISTERED (3827)
|
---|
1951 | /** The shared module clashed address wise with a previously registered
|
---|
1952 | * module. */
|
---|
1953 | #define VERR_GMM_SHARED_MODULE_ADDRESS_CLASH (-3828)
|
---|
1954 | /** The shared module was not found. */
|
---|
1955 | #define VERR_GMM_SHARED_MODULE_NOT_FOUND (-3829)
|
---|
1956 | /** The size of the shared module was out of range. */
|
---|
1957 | #define VERR_GMM_BAD_SHARED_MODULE_SIZE (-3830)
|
---|
1958 | /** The size of the one or more regions in the shared module was out of
|
---|
1959 | * range. */
|
---|
1960 | #define VERR_GMM_SHARED_MODULE_BAD_REGIONS_SIZE (-3831)
|
---|
1961 | /** @} */
|
---|
1962 |
|
---|
1963 |
|
---|
1964 | /** @name VBox GVM Status Codes
|
---|
1965 | * @{
|
---|
1966 | */
|
---|
1967 | /** The GVM is out of VM handle space. */
|
---|
1968 | #define VERR_GVM_TOO_MANY_VMS (-3900)
|
---|
1969 | /** The EMT was not blocked at the time of the call. */
|
---|
1970 | #define VINF_GVM_NOT_BLOCKED 3901
|
---|
1971 | /** The EMT was not busy running guest code at the time of the call. */
|
---|
1972 | #define VINF_GVM_NOT_BUSY_IN_GC 3902
|
---|
1973 | /** RTThreadYield was called during a GVMMR0SchedPoll call. */
|
---|
1974 | #define VINF_GVM_YIELDED 3903
|
---|
1975 | /** @} */
|
---|
1976 |
|
---|
1977 |
|
---|
1978 | /** @name VBox VMX Status Codes
|
---|
1979 | * @{
|
---|
1980 | */
|
---|
1981 | /** VMXON failed; possibly because it was already run before. */
|
---|
1982 | #define VERR_VMX_VMXON_FAILED (-4000)
|
---|
1983 | /** Invalid VMCS pointer.
|
---|
1984 | * (Can be OR'ed with VERR_VMX_INVALID_VMCS_FIELD.) */
|
---|
1985 | #define VERR_VMX_INVALID_VMCS_PTR (-4001)
|
---|
1986 | /** Invalid VMCS index or write to read-only element. */
|
---|
1987 | #define VERR_VMX_INVALID_VMCS_FIELD (-4002)
|
---|
1988 | /** Reserved for future status code that we wish to OR with
|
---|
1989 | * VERR_VMX_INVALID_VMCS_PTR and VERR_VMX_INVALID_VMCS_FIELD. */
|
---|
1990 | #define VERR_VMX_RESERVED (-4003)
|
---|
1991 | /** Invalid VMXON pointer. */
|
---|
1992 | #define VERR_VMX_INVALID_VMXON_PTR (-4004)
|
---|
1993 | /** Unable to start VM execution. */
|
---|
1994 | #define VERR_VMX_UNABLE_TO_START_VM (-4005)
|
---|
1995 | /** Unable to switch due to invalid host state. */
|
---|
1996 | #define VERR_VMX_INVALID_HOST_STATE (-4006)
|
---|
1997 | /** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */
|
---|
1998 | #define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4007)
|
---|
1999 | /** Invalid CPU mode for VMX execution. */
|
---|
2000 | #define VERR_VMX_UNSUPPORTED_MODE (-4008)
|
---|
2001 | /** VMX CPU extension not available */
|
---|
2002 | #define VERR_VMX_NO_VMX (-4009)
|
---|
2003 | /** CPU was incorrectly left in VMX root mode; incompatible with VirtualBox */
|
---|
2004 | #define VERR_VMX_IN_VMX_ROOT_MODE (-4011)
|
---|
2005 | /** Somebody cleared X86_CR4_VMXE in the CR4 register. */
|
---|
2006 | #define VERR_VMX_X86_CR4_VMXE_CLEARED (-4012)
|
---|
2007 | /** Failed to enable and lock VT-x features. */
|
---|
2008 | #define VERR_VMX_MSR_LOCKING_FAILED (-4013)
|
---|
2009 | /** Unable to switch due to invalid guest state. */
|
---|
2010 | #define VERR_VMX_INVALID_GUEST_STATE (-4014)
|
---|
2011 | /** Unexpected VM exit. */
|
---|
2012 | #define VERR_VMX_UNEXPECTED_EXIT (-4015)
|
---|
2013 | /** Unexpected VM exception. */
|
---|
2014 | #define VERR_VMX_UNEXPECTED_EXCEPTION (-4016)
|
---|
2015 | /** Unexpected interruption exit type. */
|
---|
2016 | #define VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_TYPE (-4017)
|
---|
2017 | /** CPU is not in VMX root mode; unexpected when leaving VMX root mode. */
|
---|
2018 | #define VERR_VMX_NOT_IN_VMX_ROOT_MODE (-4018)
|
---|
2019 | /** Undefined VM exit code. */
|
---|
2020 | #define VERR_VMX_UNDEFINED_EXIT_CODE (-4019)
|
---|
2021 | /** VMPTRLD failed; possibly because of invalid VMCS launch-state. */
|
---|
2022 | #define VERR_VMX_VMPTRLD_FAILED (-4021)
|
---|
2023 | /** Invalid VMCS pointer passed to VMLAUNCH/VMRESUME. */
|
---|
2024 | #define VERR_VMX_INVALID_VMCS_PTR_TO_START_VM (-4022)
|
---|
2025 | /** Internal VMX processing error no 1. */
|
---|
2026 | #define VERR_VMX_IPE_1 (-4023)
|
---|
2027 | /** Internal VMX processing error no 2. */
|
---|
2028 | #define VERR_VMX_IPE_2 (-4024)
|
---|
2029 | /** Internal VMX processing error no 3. */
|
---|
2030 | #define VERR_VMX_IPE_3 (-4025)
|
---|
2031 | /** Internal VMX processing error no 4. */
|
---|
2032 | #define VERR_VMX_IPE_4 (-4026)
|
---|
2033 | /** Internal VMX processing error no 5. */
|
---|
2034 | #define VERR_VMX_IPE_5 (-4027)
|
---|
2035 | /** VT-x features for all modes (SMX and non-SMX) disabled by the BIOS. */
|
---|
2036 | #define VERR_VMX_MSR_ALL_VMX_DISABLED (-4028)
|
---|
2037 | /** VT-x features disabled by the BIOS. */
|
---|
2038 | #define VERR_VMX_MSR_VMX_DISABLED (-4029)
|
---|
2039 | /** VM-Entry Controls internal cache invalid. */
|
---|
2040 | #define VERR_VMX_ENTRY_CTLS_CACHE_INVALID (-4030)
|
---|
2041 | /** VM-Exit Controls internal cache invalid. */
|
---|
2042 | #define VERR_VMX_EXIT_CTLS_CACHE_INVALID (-4031)
|
---|
2043 | /** VM-Execution Pin-based Controls internal cache invalid. */
|
---|
2044 | #define VERR_VMX_PIN_EXEC_CTLS_CACHE_INVALID (-4032)
|
---|
2045 | /** VM-Execution Primary Processor-based Controls internal cache
|
---|
2046 | * invalid. */
|
---|
2047 | #define VERR_VMX_PROC_EXEC_CTLS_CACHE_INVALID (-4033)
|
---|
2048 | /** VM-Execution Secondary Processor-based Controls internal
|
---|
2049 | * cache invalid. */
|
---|
2050 | #define VERR_VMX_PROC_EXEC2_CTLS_CACHE_INVALID (-4034)
|
---|
2051 | /** Failed to set VMXON enable bit while enabling VT-x through the MSR. */
|
---|
2052 | #define VERR_VMX_MSR_VMX_ENABLE_FAILED (-4035)
|
---|
2053 | /** Failed to enable VMXON-in-SMX bit while enabling VT-x through the MSR. */
|
---|
2054 | #define VERR_VMX_MSR_SMX_VMX_ENABLE_FAILED (-4036)
|
---|
2055 | /** @} */
|
---|
2056 |
|
---|
2057 |
|
---|
2058 | /** @name VBox SVM Status Codes
|
---|
2059 | * @{
|
---|
2060 | */
|
---|
2061 | /** Unable to start VM execution. */
|
---|
2062 | #define VERR_SVM_UNABLE_TO_START_VM (-4050)
|
---|
2063 | /** AMD-V bit not set in K6_EFER MSR */
|
---|
2064 | #define VERR_SVM_ILLEGAL_EFER_MSR (-4051)
|
---|
2065 | /** AMD-V CPU extension not available. */
|
---|
2066 | #define VERR_SVM_NO_SVM (-4052)
|
---|
2067 | /** AMD-V CPU extension disabled (by BIOS). */
|
---|
2068 | #define VERR_SVM_DISABLED (-4053)
|
---|
2069 | /** AMD-V CPU extension in-use. */
|
---|
2070 | #define VERR_SVM_IN_USE (-4054)
|
---|
2071 | /** Invalid pVMCB. */
|
---|
2072 | #define VERR_SVM_INVALID_PVMCB (-4055)
|
---|
2073 | /** Unexpected SVM exit. */
|
---|
2074 | #define VERR_SVM_UNEXPECTED_EXIT (-4056)
|
---|
2075 | /** Unexpected SVM exception exit. */
|
---|
2076 | #define VERR_SVM_UNEXPECTED_XCPT_EXIT (-4057)
|
---|
2077 | /** Unexpected SVM patch type. */
|
---|
2078 | #define VERR_SVM_UNEXPECTED_PATCH_TYPE (-4058)
|
---|
2079 | /** Unable to start VM execution due to an invalid guest state. */
|
---|
2080 | #define VERR_SVM_INVALID_GUEST_STATE (-4059)
|
---|
2081 | /** Unknown or unrecognized SVM exit. */
|
---|
2082 | #define VERR_SVM_UNKNOWN_EXIT (-4060)
|
---|
2083 | /** Internal SVM processing error no 1. */
|
---|
2084 | #define VERR_SVM_IPE_1 (-4061)
|
---|
2085 | /** Internal SVM processing error no 2. */
|
---|
2086 | #define VERR_SVM_IPE_2 (-4062)
|
---|
2087 | /** Internal SVM processing error no 3. */
|
---|
2088 | #define VERR_SVM_IPE_3 (-4063)
|
---|
2089 | /** Internal SVM processing error no 4. */
|
---|
2090 | #define VERR_SVM_IPE_4 (-4064)
|
---|
2091 | /** Internal SVM processing error no 5. */
|
---|
2092 | #define VERR_SVM_IPE_5 (-4065)
|
---|
2093 | /** @} */
|
---|
2094 |
|
---|
2095 |
|
---|
2096 | /** @name VBox HM Status Codes
|
---|
2097 | * @{
|
---|
2098 | */
|
---|
2099 | /** Unable to start VM execution. */
|
---|
2100 | #define VERR_HM_UNKNOWN_CPU (-4100)
|
---|
2101 | /** No CPUID support. */
|
---|
2102 | #define VERR_HM_NO_CPUID (-4101)
|
---|
2103 | /** Host is about to go into suspend mode. */
|
---|
2104 | #define VERR_HM_SUSPEND_PENDING (-4102)
|
---|
2105 | /** Conflicting CFGM values. */
|
---|
2106 | #define VERR_HM_CONFIG_MISMATCH (-4103)
|
---|
2107 | /** Internal processing error in the HM init code. */
|
---|
2108 | #define VERR_HM_ALREADY_ENABLED_IPE (-4104)
|
---|
2109 | /** Unexpected MSR in the auto-load/store area. */
|
---|
2110 | #define VERR_HM_UNEXPECTED_LD_ST_MSR (-4105)
|
---|
2111 | /** No 32-bit to 64-bit switcher in place. */
|
---|
2112 | #define VERR_HM_NO_32_TO_64_SWITCHER (-4106)
|
---|
2113 | /** HMR0Leave was called on the wrong CPU. */
|
---|
2114 | #define VERR_HM_WRONG_CPU (-4107)
|
---|
2115 | /** Internal processing error \#1 in the HM code. */
|
---|
2116 | #define VERR_HM_IPE_1 (-4108)
|
---|
2117 | /** Internal processing error \#2 in the HM code. */
|
---|
2118 | #define VERR_HM_IPE_2 (-4109)
|
---|
2119 | /** Wrong 32/64-bit switcher. */
|
---|
2120 | #define VERR_HM_WRONG_SWITCHER (-4110)
|
---|
2121 | /** Unknown I/O instruction. */
|
---|
2122 | #define VERR_HM_UNKNOWN_IO_INSTRUCTION (-4111)
|
---|
2123 | /** Unsupported CPU feature combination. */
|
---|
2124 | #define VERR_HM_UNSUPPORTED_CPU_FEATURE_COMBO (-4112)
|
---|
2125 | /** Internal processing error \#3 in the HM code. */
|
---|
2126 | #define VERR_HM_IPE_3 (-4113)
|
---|
2127 | /** Internal processing error \#4 in the HM code. */
|
---|
2128 | #define VERR_HM_IPE_4 (-4114)
|
---|
2129 | /** Internal processing error \#5 in the HM code. */
|
---|
2130 | #define VERR_HM_IPE_5 (-4115)
|
---|
2131 | /** Invalid HM64ON32OP value. */
|
---|
2132 | #define VERR_HM_INVALID_HM64ON32OP (-4116)
|
---|
2133 | /** Resume guest execution after injecting a double-fault. */
|
---|
2134 | #define VINF_HM_DOUBLE_FAULT 4117
|
---|
2135 | /** @} */
|
---|
2136 |
|
---|
2137 |
|
---|
2138 | /** @name VBox Disassembler Status Codes
|
---|
2139 | * @{
|
---|
2140 | */
|
---|
2141 | /** Invalid opcode byte(s) */
|
---|
2142 | #define VERR_DIS_INVALID_OPCODE (-4200)
|
---|
2143 | /** Generic failure during disassembly. */
|
---|
2144 | #define VERR_DIS_GEN_FAILURE (-4201)
|
---|
2145 | /** No read callback. */
|
---|
2146 | #define VERR_DIS_NO_READ_CALLBACK (-4202)
|
---|
2147 | /** Invalid Mod/RM. */
|
---|
2148 | #define VERR_DIS_INVALID_MODRM (-4203)
|
---|
2149 | /** Invalid parameter index. */
|
---|
2150 | #define VERR_DIS_INVALID_PARAMETER (-4204)
|
---|
2151 | /** The instruction is too long. */
|
---|
2152 | #define VERR_DIS_TOO_LONG_INSTR (-4206)
|
---|
2153 | /** @} */
|
---|
2154 |
|
---|
2155 |
|
---|
2156 | /** @name VBox Webservice Status Codes
|
---|
2157 | * @{
|
---|
2158 | */
|
---|
2159 | /** Authentication failed (ISessionManager::logon()) */
|
---|
2160 | #define VERR_WEB_NOT_AUTHENTICATED (-4300)
|
---|
2161 | /** Invalid format of managed object reference */
|
---|
2162 | #define VERR_WEB_INVALID_MANAGED_OBJECT_REFERENCE (-4301)
|
---|
2163 | /** Invalid session ID in managed object reference */
|
---|
2164 | #define VERR_WEB_INVALID_SESSION_ID (-4302)
|
---|
2165 | /** Invalid object ID in managed object reference */
|
---|
2166 | #define VERR_WEB_INVALID_OBJECT_ID (-4303)
|
---|
2167 | /** Unsupported interface for managed object reference */
|
---|
2168 | #define VERR_WEB_UNSUPPORTED_INTERFACE (-4304)
|
---|
2169 | /** @} */
|
---|
2170 |
|
---|
2171 |
|
---|
2172 | /** @name VBox PARAV Status Codes
|
---|
2173 | * @{
|
---|
2174 | */
|
---|
2175 | /** Switch back to host */
|
---|
2176 | #define VINF_PARAV_SWITCH_TO_HOST 4400
|
---|
2177 |
|
---|
2178 | /** @} */
|
---|
2179 |
|
---|
2180 | /** @name VBox Video HW Acceleration command status
|
---|
2181 | * @{
|
---|
2182 | */
|
---|
2183 | /** command processing is pending, a completion handler will be called */
|
---|
2184 | #define VINF_VHWA_CMD_PENDING 4500
|
---|
2185 |
|
---|
2186 | /** @} */
|
---|
2187 |
|
---|
2188 |
|
---|
2189 | /** @name VBox COM error codes
|
---|
2190 | *
|
---|
2191 | * @remarks Global::vboxStatusCodeToCOM and Global::vboxStatusCodeFromCOM uses
|
---|
2192 | * these for conversion that is lossless with respect to important COM
|
---|
2193 | * status codes. These methods should be moved to the glue library.
|
---|
2194 | * @{ */
|
---|
2195 | /** Unexpected turn of events. */
|
---|
2196 | #define VERR_COM_UNEXPECTED (-4600)
|
---|
2197 | /** The base of the VirtualBox COM status codes (the lower value)
|
---|
2198 | * corresponding 1:1 to VBOX_E_XXX. This is the lowest value. */
|
---|
2199 | #define VERR_COM_VBOX_LOWEST (-4699)
|
---|
2200 | /** Object corresponding to the supplied arguments does not exist. */
|
---|
2201 | #define VERR_COM_OBJECT_NOT_FOUND (VERR_COM_VBOX_LOWEST + 1)
|
---|
2202 | /** Current virtual machine state prevents the operation. */
|
---|
2203 | #define VERR_COM_INVALID_VM_STATE (VERR_COM_VBOX_LOWEST + 2)
|
---|
2204 | /** Virtual machine error occurred attempting the operation. */
|
---|
2205 | #define VERR_COM_VM_ERROR (VERR_COM_VBOX_LOWEST + 3)
|
---|
2206 | /** File not accessible or erroneous file contents. */
|
---|
2207 | #define VERR_COM_FILE_ERROR (VERR_COM_VBOX_LOWEST + 4)
|
---|
2208 | /** IPRT error. */
|
---|
2209 | #define VERR_COM_IPRT_ERROR (VERR_COM_VBOX_LOWEST + 5)
|
---|
2210 | /** Pluggable Device Manager error. */
|
---|
2211 | #define VERR_COM_PDM_ERROR (VERR_COM_VBOX_LOWEST + 6)
|
---|
2212 | /** Current object state prohibits operation. */
|
---|
2213 | #define VERR_COM_INVALID_OBJECT_STATE (VERR_COM_VBOX_LOWEST + 7)
|
---|
2214 | /** Host operating system related error. */
|
---|
2215 | #define VERR_COM_HOST_ERROR (VERR_COM_VBOX_LOWEST + 8)
|
---|
2216 | /** Requested operation is not supported. */
|
---|
2217 | #define VERR_COM_NOT_SUPPORTED (VERR_COM_VBOX_LOWEST + 9)
|
---|
2218 | /** Invalid XML found. */
|
---|
2219 | #define VERR_COM_XML_ERROR (VERR_COM_VBOX_LOWEST + 10)
|
---|
2220 | /** Current session state prohibits operation. */
|
---|
2221 | #define VERR_COM_INVALID_SESSION_STATE (VERR_COM_VBOX_LOWEST + 11)
|
---|
2222 | /** Object being in use prohibits operation. */
|
---|
2223 | #define VERR_COM_OBJECT_IN_USE (VERR_COM_VBOX_LOWEST + 12)
|
---|
2224 | /** Returned by callback methods which does not need to be called
|
---|
2225 | * again because the client does not actually make use of them. */
|
---|
2226 | #define VERR_COM_DONT_CALL_AGAIN (VERR_COM_VBOX_LOWEST + 13)
|
---|
2227 | /** @} */
|
---|
2228 |
|
---|
2229 | /** @name VBox VMMDev Status codes
|
---|
2230 | * @{
|
---|
2231 | */
|
---|
2232 | /** CPU hotplug events from VMMDev are not monitored by the guest. */
|
---|
2233 | #define VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST (-4700)
|
---|
2234 | /** @} */
|
---|
2235 |
|
---|
2236 | /** @name VBox async I/O manager Status Codes
|
---|
2237 | * @{
|
---|
2238 | */
|
---|
2239 | /** Async I/O task is pending, a completion handler will be called. */
|
---|
2240 | #define VINF_AIO_TASK_PENDING 4800
|
---|
2241 | /** @} */
|
---|
2242 |
|
---|
2243 | /** @name VBox Virtual SCSI Status Codes
|
---|
2244 | * @{
|
---|
2245 | */
|
---|
2246 | /** LUN type is not supported. */
|
---|
2247 | #define VERR_VSCSI_LUN_TYPE_NOT_SUPPORTED (-4900)
|
---|
2248 | /** LUN is already/still attached to a device. */
|
---|
2249 | #define VERR_VSCSI_LUN_ATTACHED_TO_DEVICE (-4901)
|
---|
2250 | /** The specified LUN is invalid. */
|
---|
2251 | #define VERR_VSCSI_LUN_INVALID (-4902)
|
---|
2252 | /** The LUN is not attached to the device. */
|
---|
2253 | #define VERR_VSCSI_LUN_NOT_ATTACHED (-4903)
|
---|
2254 | /** The LUN is still busy. */
|
---|
2255 | #define VERR_VSCSI_LUN_BUSY (-4904)
|
---|
2256 | /** @} */
|
---|
2257 |
|
---|
2258 | /** @name VBox FAM Status Codes
|
---|
2259 | * @{
|
---|
2260 | */
|
---|
2261 | /** FAM failed to open a connection. */
|
---|
2262 | #define VERR_FAM_OPEN_FAILED (-5000)
|
---|
2263 | /** FAM failed to add a file to the list to be monitored. */
|
---|
2264 | #define VERR_FAM_MONITOR_FILE_FAILED (-5001)
|
---|
2265 | /** FAM failed to add a directory to the list to be monitored. */
|
---|
2266 | #define VERR_FAM_MONITOR_DIRECTORY_FAILED (-5002)
|
---|
2267 | /** The connection to the FAM daemon was lost. */
|
---|
2268 | #define VERR_FAM_CONNECTION_LOST (-5003)
|
---|
2269 | /** @} */
|
---|
2270 |
|
---|
2271 |
|
---|
2272 | /** @name PCI Passtrhough Status Codes
|
---|
2273 | * @{
|
---|
2274 | */
|
---|
2275 | /** RamPreAlloc not set.
|
---|
2276 | * RAM pre-allocation is currently a requirement for PCI passthrough. */
|
---|
2277 | #define VERR_PCI_PASSTHROUGH_NO_RAM_PREALLOC (-5100)
|
---|
2278 | /** VT-x/AMD-V not active.
|
---|
2279 | * PCI passthrough currently works only if VT-x/AMD-V is active. */
|
---|
2280 | #define VERR_PCI_PASSTHROUGH_NO_HM (-5101)
|
---|
2281 | /** Nested paging not active.
|
---|
2282 | * PCI passthrough currently works only if nested paging is active. */
|
---|
2283 | #define VERR_PCI_PASSTHROUGH_NO_NESTED_PAGING (-5102)
|
---|
2284 | /** @} */
|
---|
2285 |
|
---|
2286 |
|
---|
2287 | /** @name GVMM Status Codes
|
---|
2288 | * @{
|
---|
2289 | */
|
---|
2290 | /** Internal error obtaining the GVMM instance. */
|
---|
2291 | #define VERR_GVMM_INSTANCE (-5200)
|
---|
2292 | /** GVMM does not support the range of CPUs present/possible on the host. */
|
---|
2293 | #define VERR_GVMM_HOST_CPU_RANGE (-5201)
|
---|
2294 | /** GVMM ran into some broken IPRT code. */
|
---|
2295 | #define VERR_GVMM_BROKEN_IPRT (-5202)
|
---|
2296 | /** Internal processing error \#1 in the GVMM code. */
|
---|
2297 | #define VERR_GVMM_IPE_1 (-5203)
|
---|
2298 | /** Internal processing error \#2 in the GVMM code. */
|
---|
2299 | #define VERR_GVMM_IPE_2 (-5204)
|
---|
2300 | /** @} */
|
---|
2301 |
|
---|
2302 |
|
---|
2303 | /** @name IEM Status Codes
|
---|
2304 | * @{ */
|
---|
2305 | /** The instruction is not yet implemented by IEM. */
|
---|
2306 | #define VERR_IEM_INSTR_NOT_IMPLEMENTED (-5300)
|
---|
2307 | /** Invalid operand size passed to an IEM function. */
|
---|
2308 | #define VERR_IEM_INVALID_OPERAND_SIZE (-5301)
|
---|
2309 | /** Invalid address mode passed to an IEM function. */
|
---|
2310 | #define VERR_IEM_INVALID_ADDRESS_MODE (-5302)
|
---|
2311 | /** Invalid effective segment register number passed to an IEM function. */
|
---|
2312 | #define VERR_IEM_INVALID_EFF_SEG (-5303)
|
---|
2313 | /** Invalid instruction length passed to an IEM function. */
|
---|
2314 | #define VERR_IEM_INVALID_INSTR_LENGTH (-5304)
|
---|
2315 | /** Internal status code for indicating that a selector isn't valid (LAR, LSL,
|
---|
2316 | * VERR, VERW). This is not used outside the instruction implementations. */
|
---|
2317 | #define VINF_IEM_SELECTOR_NOT_OK (5305)
|
---|
2318 | /** Restart the current instruction. For testing only. */
|
---|
2319 | #define VERR_IEM_RESTART_INSTRUCTION (-5389)
|
---|
2320 | /** This particular aspect of the instruction is not yet implemented by IEM. */
|
---|
2321 | #define VERR_IEM_ASPECT_NOT_IMPLEMENTED (-5390)
|
---|
2322 | /** Internal processing error \#1 in the IEM code. */
|
---|
2323 | #define VERR_IEM_IPE_1 (-5391)
|
---|
2324 | /** Internal processing error \#2 in the IEM code. */
|
---|
2325 | #define VERR_IEM_IPE_2 (-5392)
|
---|
2326 | /** Internal processing error \#3 in the IEM code. */
|
---|
2327 | #define VERR_IEM_IPE_3 (-5393)
|
---|
2328 | /** Internal processing error \#4 in the IEM code. */
|
---|
2329 | #define VERR_IEM_IPE_4 (-5394)
|
---|
2330 | /** Internal processing error \#5 in the IEM code. */
|
---|
2331 | #define VERR_IEM_IPE_5 (-5395)
|
---|
2332 | /** Internal processing error \#6 in the IEM code. */
|
---|
2333 | #define VERR_IEM_IPE_6 (-5396)
|
---|
2334 | /** Internal processing error \#7 in the IEM code. */
|
---|
2335 | #define VERR_IEM_IPE_7 (-5397)
|
---|
2336 | /** Internal processing error \#8 in the IEM code. */
|
---|
2337 | #define VERR_IEM_IPE_8 (-5398)
|
---|
2338 | /** Internal processing error \#9 in the IEM code. */
|
---|
2339 | #define VERR_IEM_IPE_9 (-5399)
|
---|
2340 | /** @} */
|
---|
2341 |
|
---|
2342 |
|
---|
2343 | /** @name DBGC Status Codes
|
---|
2344 | * @{ */
|
---|
2345 | /** Status that causes DBGC to quit. */
|
---|
2346 | #define VERR_DBGC_QUIT (-5400)
|
---|
2347 | /** Async command pending. */
|
---|
2348 | #define VWRN_DBGC_CMD_PENDING 5401
|
---|
2349 | /** The command has already been registered. */
|
---|
2350 | #define VWRN_DBGC_ALREADY_REGISTERED 5402
|
---|
2351 | /** The command cannot be deregistered because has not been registered. */
|
---|
2352 | #define VERR_DBGC_COMMANDS_NOT_REGISTERED (-5403)
|
---|
2353 | /** Unknown breakpoint. */
|
---|
2354 | #define VERR_DBGC_BP_NOT_FOUND (-5404)
|
---|
2355 | /** The breakpoint already exists. */
|
---|
2356 | #define VERR_DBGC_BP_EXISTS (-5405)
|
---|
2357 | /** The breakpoint has no command. */
|
---|
2358 | #define VINF_DBGC_BP_NO_COMMAND 5406
|
---|
2359 | /** Generic debugger command failure. */
|
---|
2360 | #define VERR_DBGC_COMMAND_FAILED (-5407)
|
---|
2361 | /** Logic bug in the DBGC code. */
|
---|
2362 | #define VERR_DBGC_IPE (-5408)
|
---|
2363 |
|
---|
2364 | /** The lowest parse status code. */
|
---|
2365 | #define VERR_DBGC_PARSE_LOWEST (-5499)
|
---|
2366 | /** Syntax error - too few arguments. */
|
---|
2367 | #define VERR_DBGC_PARSE_TOO_FEW_ARGUMENTS (VERR_DBGC_PARSE_LOWEST + 0)
|
---|
2368 | /** Syntax error - too many arguments. */
|
---|
2369 | #define VERR_DBGC_PARSE_TOO_MANY_ARGUMENTS (VERR_DBGC_PARSE_LOWEST + 1)
|
---|
2370 | /** Syntax error - too many arguments for static storage. */
|
---|
2371 | #define VERR_DBGC_PARSE_ARGUMENT_OVERFLOW (VERR_DBGC_PARSE_LOWEST + 2)
|
---|
2372 | /** Syntax error - expected binary operator. */
|
---|
2373 | #define VERR_DBGC_PARSE_EXPECTED_BINARY_OP (VERR_DBGC_PARSE_LOWEST + 3)
|
---|
2374 |
|
---|
2375 | /** Syntax error - the argument does not allow a range to be specified. */
|
---|
2376 | #define VERR_DBGC_PARSE_NO_RANGE_ALLOWED (VERR_DBGC_PARSE_LOWEST + 5)
|
---|
2377 | /** Syntax error - unbalanced quotes. */
|
---|
2378 | #define VERR_DBGC_PARSE_UNBALANCED_QUOTE (VERR_DBGC_PARSE_LOWEST + 6)
|
---|
2379 | /** Syntax error - unbalanced parenthesis. */
|
---|
2380 | #define VERR_DBGC_PARSE_UNBALANCED_PARENTHESIS (VERR_DBGC_PARSE_LOWEST + 7)
|
---|
2381 | /** Syntax error - an argument or subargument contains nothing useful. */
|
---|
2382 | #define VERR_DBGC_PARSE_EMPTY_ARGUMENT (VERR_DBGC_PARSE_LOWEST + 8)
|
---|
2383 | /** Syntax error - invalid operator usage. */
|
---|
2384 | #define VERR_DBGC_PARSE_UNEXPECTED_OPERATOR (VERR_DBGC_PARSE_LOWEST + 9)
|
---|
2385 | /** Syntax error - invalid numeric value. */
|
---|
2386 | #define VERR_DBGC_PARSE_INVALID_NUMBER (VERR_DBGC_PARSE_LOWEST + 10)
|
---|
2387 | /** Syntax error - numeric overflow. */
|
---|
2388 | #define VERR_DBGC_PARSE_NUMBER_TOO_BIG (VERR_DBGC_PARSE_LOWEST + 11)
|
---|
2389 | /** Syntax error - invalid operation attempted. */
|
---|
2390 | #define VERR_DBGC_PARSE_INVALID_OPERATION (VERR_DBGC_PARSE_LOWEST + 12)
|
---|
2391 | /** Syntax error - function not found. */
|
---|
2392 | #define VERR_DBGC_PARSE_FUNCTION_NOT_FOUND (VERR_DBGC_PARSE_LOWEST + 13)
|
---|
2393 | /** Syntax error - the specified function is not a function. */
|
---|
2394 | #define VERR_DBGC_PARSE_NOT_A_FUNCTION (VERR_DBGC_PARSE_LOWEST + 14)
|
---|
2395 | /** Syntax error - out of scratch memory. */
|
---|
2396 | #define VERR_DBGC_PARSE_NO_SCRATCH (VERR_DBGC_PARSE_LOWEST + 15)
|
---|
2397 | /** Syntax error - out of regular heap memory. */
|
---|
2398 | #define VERR_DBGC_PARSE_NO_MEMORY (VERR_DBGC_PARSE_LOWEST + 16)
|
---|
2399 | /** Syntax error - incorrect argument type. */
|
---|
2400 | #define VERR_DBGC_PARSE_INCORRECT_ARG_TYPE (VERR_DBGC_PARSE_LOWEST + 17)
|
---|
2401 | /** Syntax error - an undefined variable was referenced. */
|
---|
2402 | #define VERR_DBGC_PARSE_VARIABLE_NOT_FOUND (VERR_DBGC_PARSE_LOWEST + 18)
|
---|
2403 | /** Syntax error - a type conversion failed. */
|
---|
2404 | #define VERR_DBGC_PARSE_CONVERSION_FAILED (VERR_DBGC_PARSE_LOWEST + 19)
|
---|
2405 | /** Syntax error - you hit a debugger feature which isn't implemented yet.
|
---|
2406 | * (Feel free to help implement it.) */
|
---|
2407 | #define VERR_DBGC_PARSE_NOT_IMPLEMENTED (VERR_DBGC_PARSE_LOWEST + 20)
|
---|
2408 | /** Syntax error - Couldn't satisfy a request for a specific result type. */
|
---|
2409 | #define VERR_DBGC_PARSE_BAD_RESULT_TYPE (VERR_DBGC_PARSE_LOWEST + 21)
|
---|
2410 | /** Syntax error - Cannot read symbol value, it is a set-only symbol. */
|
---|
2411 | #define VERR_DBGC_PARSE_WRITEONLY_SYMBOL (VERR_DBGC_PARSE_LOWEST + 22)
|
---|
2412 | /** Syntax error - Invalid command name. */
|
---|
2413 | #define VERR_DBGC_PARSE_INVALD_COMMAND_NAME (VERR_DBGC_PARSE_LOWEST + 23)
|
---|
2414 | /** Syntax error - Command not found. */
|
---|
2415 | #define VERR_DBGC_PARSE_COMMAND_NOT_FOUND (VERR_DBGC_PARSE_LOWEST + 24)
|
---|
2416 | /** Syntax error - buggy parser. */
|
---|
2417 | #define VERR_DBGC_PARSE_BUG (VERR_DBGC_PARSE_LOWEST + 25)
|
---|
2418 | /** @} */
|
---|
2419 |
|
---|
2420 |
|
---|
2421 | /** @name Support driver/library shared verification status codes.
|
---|
2422 | * @{ */
|
---|
2423 | /** Process Verification Failure: The memory content does not match the image
|
---|
2424 | * file. */
|
---|
2425 | #define VERR_SUP_VP_MEMORY_VS_FILE_MISMATCH (-5600)
|
---|
2426 | /** Process Verification Failure: The memory protection of a image file section
|
---|
2427 | * does not match what the section header prescribes. */
|
---|
2428 | #define VERR_SUP_VP_SECTION_PROTECTION_MISMATCH (-5601)
|
---|
2429 | /** Process Verification Failure: One of the section in the image file is not
|
---|
2430 | * mapped into memory. */
|
---|
2431 | #define VERR_SUP_VP_SECTION_NOT_MAPPED (-5602)
|
---|
2432 | /** Process Verification Failure: One of the section in the image file is not
|
---|
2433 | * fully mapped into memory. */
|
---|
2434 | #define VERR_SUP_VP_SECTION_NOT_FULLY_MAPPED (-5603)
|
---|
2435 | /** Process Verification Failure: Bad file alignment value in image header. */
|
---|
2436 | #define VERR_SUP_VP_BAD_FILE_ALIGNMENT_VALUE (-5604)
|
---|
2437 | /** Process Verification Failure: Bad image base in header. */
|
---|
2438 | #define VERR_SUP_VP_BAD_IMAGE_BASE (-5605)
|
---|
2439 | /** Process Verification Failure: Bad image signature. */
|
---|
2440 | #define VERR_SUP_VP_BAD_IMAGE_SIGNATURE (-5606)
|
---|
2441 | /** Process Verification Failure: Bad image size. */
|
---|
2442 | #define VERR_SUP_VP_BAD_IMAGE_SIZE (-5607)
|
---|
2443 | /** Process Verification Failure: Bad new-header offset in the MZ header. */
|
---|
2444 | #define VERR_SUP_VP_BAD_MZ_OFFSET (-5608)
|
---|
2445 | /** Process Verification Failure: Bad optional header field. */
|
---|
2446 | #define VERR_SUP_VP_BAD_OPTIONAL_HEADER (-5609)
|
---|
2447 | /** Process Verification Failure: Bad section alignment value in image
|
---|
2448 | * header. */
|
---|
2449 | #define VERR_SUP_VP_BAD_SECTION_ALIGNMENT_VALUE (-5610)
|
---|
2450 | /** Process Verification Failure: Bad section raw data size. */
|
---|
2451 | #define VERR_SUP_VP_BAD_SECTION_FILE_SIZE (-5611)
|
---|
2452 | /** Process Verification Failure: Bad virtual section address. */
|
---|
2453 | #define VERR_SUP_VP_BAD_SECTION_RVA (-5612)
|
---|
2454 | /** Process Verification Failure: Bad virtual section size. */
|
---|
2455 | #define VERR_SUP_VP_BAD_SECTION_VIRTUAL_SIZE (-5613)
|
---|
2456 | /** Process Verification Failure: Bad size of image header. */
|
---|
2457 | #define VERR_SUP_VP_BAD_SIZE_OF_HEADERS (-5614)
|
---|
2458 | /** Process Verification Failure: The process is being debugged. */
|
---|
2459 | #define VERR_SUP_VP_DEBUGGED (-5615)
|
---|
2460 | /** Process Verification Failure: A DLL was found more than once. */
|
---|
2461 | #define VERR_SUP_VP_DUPLICATE_DLL_MAPPING (-5616)
|
---|
2462 | /** Process Verification Failure: Image section region is too large. */
|
---|
2463 | #define VERR_SUP_VP_EMPTY_REGION_TOO_LARGE (-5617)
|
---|
2464 | /** Process Verification Failure: Executable file name and process image name
|
---|
2465 | * does not match up. */
|
---|
2466 | #define VERR_SUP_VP_EXE_VS_PROC_NAME_MISMATCH (-5618)
|
---|
2467 | /** Process Verification Failure: Found executable memory allocated in the
|
---|
2468 | * process. There is only supposed be executable memory associated with
|
---|
2469 | * image file mappings (DLLs & EXE). */
|
---|
2470 | #define VERR_SUP_VP_FOUND_EXEC_MEMORY (-5619)
|
---|
2471 | /** Process Verification Failure: There is more than one known executable mapped
|
---|
2472 | * into the process. */
|
---|
2473 | #define VERR_SUP_VP_FOUND_MORE_THAN_ONE_EXE_MAPPING (-5620)
|
---|
2474 | /** Process Verification Failure: Error closing image file handle. */
|
---|
2475 | #define VERR_SUP_VP_IMAGE_FILE_CLOSE_ERROR (-5621)
|
---|
2476 | /** Process Verification Failure: Error opening image file. */
|
---|
2477 | #define VERR_SUP_VP_IMAGE_FILE_OPEN_ERROR (-5622)
|
---|
2478 | /** Process Verification Failure: Error reading image file header. */
|
---|
2479 | #define VERR_SUP_VP_IMAGE_HDR_READ_ERROR (-5623)
|
---|
2480 | /** Process Verification Failure: Image mapping is bogus as the first region
|
---|
2481 | * has different AllocationBase and BaseAddress values, indicating that a
|
---|
2482 | * section was unmapped or otherwise tampered with. */
|
---|
2483 | #define VERR_SUP_VP_IMAGE_MAPPING_BASE_ERROR (-5624)
|
---|
2484 | /** Process Verification Failure: Error reading process memory for comparing
|
---|
2485 | * with disk data. */
|
---|
2486 | #define VERR_SUP_VP_MEMORY_READ_ERROR (-5625)
|
---|
2487 | /** Process Verification Failure: Found no executable mapped into the process
|
---|
2488 | * address space. */
|
---|
2489 | #define VERR_SUP_VP_NO_FOUND_NO_EXE_MAPPING (-5626)
|
---|
2490 | /** Process Verification Failure: An image mapping failed to report a name. */
|
---|
2491 | #define VERR_SUP_VP_NO_IMAGE_MAPPING_NAME (-5627)
|
---|
2492 | /** Process Verification Failure: No KERNE32.DLL mapping found. This is
|
---|
2493 | * impossible. */
|
---|
2494 | #define VERR_SUP_VP_NO_KERNEL32_MAPPING (-5628)
|
---|
2495 | /** Process Verification Failure: Error allocating memory. */
|
---|
2496 | #define VERR_SUP_VP_NO_MEMORY (-5629)
|
---|
2497 | /** Process Verification Failure: Error allocating state memory or querying
|
---|
2498 | * the system32 path. */
|
---|
2499 | #define VERR_SUP_VP_NO_MEMORY_STATE (-5630)
|
---|
2500 | /** Process Verification Failure: No NTDLL.DLL mapping found. This is
|
---|
2501 | * impossible. */
|
---|
2502 | #define VERR_SUP_VP_NO_NTDLL_MAPPING (-5631)
|
---|
2503 | /** Process Verification Failure: A DLL residing outside System32 was found
|
---|
2504 | * in the process. */
|
---|
2505 | #define VERR_SUP_VP_NON_SYSTEM32_DLL (-5632)
|
---|
2506 | /** Process Verification Failure: An unknown and unwanted DLL was found loaded
|
---|
2507 | * into the process. */
|
---|
2508 | #define VERR_SUP_VP_NOT_KNOWN_DLL_OR_EXE (-5633)
|
---|
2509 | /** Process Verification Failure: The name of an image file changes between
|
---|
2510 | * mapping regions. */
|
---|
2511 | #define VERR_SUP_VP_NT_MAPPING_NAME_CHANGED (-5634)
|
---|
2512 | /** Process Verification Failure: Error querying process name. */
|
---|
2513 | #define VERR_SUP_VP_NT_QI_PROCESS_NM_ERROR (-5635)
|
---|
2514 | /** Process Verification Failure: Error querying thread information. */
|
---|
2515 | #define VERR_SUP_VP_NT_QI_THREAD_ERROR (-5636)
|
---|
2516 | /** Process Verification Failure: Error query virtual memory information. */
|
---|
2517 | #define VERR_SUP_VP_NT_QI_VIRTUAL_MEMORY_ERROR (-5637)
|
---|
2518 | /** Process Verification Failure: Error query virtual memory mapping name. */
|
---|
2519 | #define VERR_SUP_VP_NT_QI_VIRTUAL_MEMORY_NM_ERROR (-5638)
|
---|
2520 | /** Process Verification Failure: Error determining the full path of
|
---|
2521 | * System32. */
|
---|
2522 | #define VERR_SUP_VP_SYSTEM32_PATH (-5639)
|
---|
2523 | /** Process Verification Failure: The process has more than one thread. */
|
---|
2524 | #define VERR_SUP_VP_THREAD_NOT_ALONE (-5640)
|
---|
2525 | /** Process Verification Failure: The image mapping is too large (>= 2GB). */
|
---|
2526 | #define VERR_SUP_VP_TOO_HIGH_REGION_RVA (-5641)
|
---|
2527 | /** Process Verification Failure: The memory region is too large (>= 2GB). */
|
---|
2528 | #define VERR_SUP_VP_TOO_LARGE_REGION (-5642)
|
---|
2529 | /** Process Verification Failure: There are too many DLLs loaded. */
|
---|
2530 | #define VERR_SUP_VP_TOO_MANY_DLLS_LOADED (-5643)
|
---|
2531 | /** Process Verification Failure: An image has too many regions. */
|
---|
2532 | #define VERR_SUP_VP_TOO_MANY_IMAGE_REGIONS (-5644)
|
---|
2533 | /** Process Verification Failure: The process has too many virtual memory
|
---|
2534 | * regions. */
|
---|
2535 | #define VERR_SUP_VP_TOO_MANY_MEMORY_REGIONS (-5645)
|
---|
2536 | /** Process Verification Failure: An image has too many sections. */
|
---|
2537 | #define VERR_SUP_VP_TOO_MANY_SECTIONS (-5646)
|
---|
2538 | /** Process Verification Failure: An image is targeting an unexpected
|
---|
2539 | * machine/CPU. */
|
---|
2540 | #define VERR_SUP_VP_UNEXPECTED_IMAGE_MACHINE (-5647)
|
---|
2541 | /** Process Verification Failure: Unexpected section protection flag
|
---|
2542 | * combination. */
|
---|
2543 | #define VERR_SUP_VP_UNEXPECTED_SECTION_FLAGS (-5648)
|
---|
2544 | /** Process Verification Failure: Expected the process and exe to have forced
|
---|
2545 | * integrity checking enabled (verifying signatures). */
|
---|
2546 | #define VERR_SUP_VP_EXE_MISSING_FORCE_INTEGRITY (-5649)
|
---|
2547 | /** Process Verification Failure: Expected the process and exe to have dynamic
|
---|
2548 | * base enabled. */
|
---|
2549 | #define VERR_SUP_VP_EXE_MISSING_DYNAMIC_BASE (-5650)
|
---|
2550 | /** Process Verification Failure: Expected the process and exe to advertise
|
---|
2551 | * NX compatibility. */
|
---|
2552 | #define VERR_SUP_VP_EXE_MISSING_NX_COMPAT (-5651)
|
---|
2553 | /** Process Verification Failure: The DllCharacteristics of the process
|
---|
2554 | * does not match the value in the optional header in the exe file. */
|
---|
2555 | #define VERR_SUP_VP_DLL_CHARECTERISTICS_MISMATCH (-5652)
|
---|
2556 | /** Process Verification Failure: The ImageCharacteristics of the process
|
---|
2557 | * does not match the value in the file header in the exe file. */
|
---|
2558 | #define VERR_SUP_VP_IMAGE_CHARECTERISTICS_MISMATCH (-5653)
|
---|
2559 | /** Process Verification Failure: Error querying image information. */
|
---|
2560 | #define VERR_SUP_VP_NT_QI_PROCESS_IMG_INFO_ERROR (-5654)
|
---|
2561 | /** Process Verification Failure: Error querying debug port. */
|
---|
2562 | #define VERR_SUP_VP_NT_QI_PROCESS_DBG_PORT_ERROR (-5655)
|
---|
2563 | /** WinVerifyTrust failed with an unexpected status code when using the
|
---|
2564 | * catalog-file approach. */
|
---|
2565 | #define VERR_SUP_VP_WINTRUST_CAT_FAILURE (-5656)
|
---|
2566 | /** The image is required to be signed with the same certificate as the rest
|
---|
2567 | * of VirtualBox. */
|
---|
2568 | #define VERR_SUP_VP_NOT_SIGNED_WITH_BUILD_CERT (-5657)
|
---|
2569 | /** Internal processing error: Not build certificate. */
|
---|
2570 | #define VERR_SUP_VP_NOT_BUILD_CERT_IPE (-5658)
|
---|
2571 | /** The image requires to be signed using the kernel-code signing process. */
|
---|
2572 | #define VERR_SUP_VP_NOT_VALID_KERNEL_CODE_SIGNATURE (-5659)
|
---|
2573 | /** Unexpected number of valid paths. */
|
---|
2574 | #define VERR_SUP_VP_UNEXPECTED_VALID_PATH_COUNT (-5660)
|
---|
2575 | /** The image is required to force integrity checks. */
|
---|
2576 | #define VERR_SUP_VP_SIGNATURE_CHECKS_NOT_ENFORCED (-5661)
|
---|
2577 | /** Process Verification Failure: Symantec Endpoint Protection must be
|
---|
2578 | * disabled for the VirtualBox VM processes.
|
---|
2579 | * http://www.symantec.com/connect/articles/creating-application-control-exclusions-symantec-endpoint-protection-121 */
|
---|
2580 | #define VERR_SUP_VP_SYSFER_DLL (-5662)
|
---|
2581 | /** Process Purification Failure: KERNE32.DLL already mapped into the initial
|
---|
2582 | * process (suspended). */
|
---|
2583 | #define VERR_SUP_VP_KERNEL32_ALREADY_MAPPED (-5663)
|
---|
2584 | /** Process Purification Failure: NtFreeVirtualMemory failed on a chunk of
|
---|
2585 | * executable memory which shouldn't be present in the process. */
|
---|
2586 | #define VERR_SUP_VP_FREE_VIRTUAL_MEMORY_FAILED (-5664)
|
---|
2587 | /** Process Purification Failure: Both NtUnmapViewOfSetion and
|
---|
2588 | * NtProtectVirtualMemory failed to get rid of or passify an non-image
|
---|
2589 | * executable mapping. */
|
---|
2590 | #define VERR_SUP_VP_UNMAP_AND_PROTECT_FAILED (-5665)
|
---|
2591 | /** Process Purification Failure: Unknown memory type of executable memory. */
|
---|
2592 | #define VERR_SUP_VP_UNKOWN_MEM_TYPE (-5666)
|
---|
2593 | /** The image file is not owned by TrustedInstaller is it should be. */
|
---|
2594 | #define VERR_SUP_VP_NOT_OWNED_BY_TRUSTED_INSTALLER (-5667)
|
---|
2595 | /** The image is outside the expected range. */
|
---|
2596 | #define VERR_SUP_VP_IMAGE_TOO_BIG (-5668)
|
---|
2597 | /** Stub process not found so it cannot be revalidated when vboxdrv is opened
|
---|
2598 | * by the VM process. */
|
---|
2599 | #define VERR_SUP_VP_STUB_NOT_FOUND (-5669)
|
---|
2600 | /** Error opening the stub process for revalidation when vboxdrv is opened by
|
---|
2601 | * the VM process. */
|
---|
2602 | #define VERR_SUP_VP_STUB_OPEN_ERROR (-5670)
|
---|
2603 | /** Stub process thread not found during revalidation upon vboxdrv opening by
|
---|
2604 | * the VM process. */
|
---|
2605 | #define VERR_SUP_VP_STUB_THREAD_NOT_FOUND (-5671)
|
---|
2606 | /** Error opening the stub process thread for revalidation when vboxdrv is
|
---|
2607 | * opened by the VM process. */
|
---|
2608 | #define VERR_SUP_VP_STUB_THREAD_OPEN_ERROR (-5672)
|
---|
2609 | /** Process Purification Failure: NtAllocateVirtualMemory failed to get us
|
---|
2610 | * suitable replacement memory for a chunk of executable memory that
|
---|
2611 | * shouldn't be present in our process. (You will only see this message if you
|
---|
2612 | * got potentially fatally buggy anti-virus software installed.) */
|
---|
2613 | #define VERR_SUP_VP_REPLACE_VIRTUAL_MEMORY_FAILED (-5673)
|
---|
2614 | /** Error getting the file mode. */
|
---|
2615 | #define VERR_SUP_VP_FILE_MODE_ERROR (-5674)
|
---|
2616 | /** Error creating an event semaphore for used with asynchronous reads. */
|
---|
2617 | #define VERR_SUP_VP_CREATE_READ_EVT_SEM_FAILED (-5675)
|
---|
2618 |
|
---|
2619 | /** @} */
|
---|
2620 |
|
---|
2621 | /** @name VBox Extension Pack Status Codes
|
---|
2622 | * @{
|
---|
2623 | */
|
---|
2624 | /** The host is not supported. Uninstall the extension pack.
|
---|
2625 | * Returned by the VBOXEXTPACKREG::pfnInstalled. */
|
---|
2626 | #define VERR_EXTPACK_UNSUPPORTED_HOST_UNINSTALL (-6000)
|
---|
2627 | /** The VirtualBox version is not supported by one of the extension packs.
|
---|
2628 | *
|
---|
2629 | * You have probably upgraded VirtualBox recently. Please upgrade the
|
---|
2630 | * extension packs to versions compatible with this VirtualBox release.
|
---|
2631 | */
|
---|
2632 | #define VERR_EXTPACK_VBOX_VERSION_MISMATCH (-6001)
|
---|
2633 | /** @} */
|
---|
2634 |
|
---|
2635 |
|
---|
2636 | /** @name VBox Guest Control Status Codes
|
---|
2637 | * @{
|
---|
2638 | */
|
---|
2639 | /** Guest side reported an error. */
|
---|
2640 | #define VERR_GSTCTL_GUEST_ERROR (-6200)
|
---|
2641 | /** A guest control object has changed its overall status. */
|
---|
2642 | #define VWRN_GSTCTL_OBJECTSTATE_CHANGED 6220
|
---|
2643 | /** @} */
|
---|
2644 |
|
---|
2645 |
|
---|
2646 | /** @name GIM Status Codes
|
---|
2647 | * @{
|
---|
2648 | */
|
---|
2649 | /** No GIM provider is configured for this VM. */
|
---|
2650 | #define VERR_GIM_NOT_ENABLED (-6300)
|
---|
2651 | /** GIM internal processing error \#1. */
|
---|
2652 | #define VERR_GIM_IPE_1 (-6301)
|
---|
2653 | /** GIM internal processing error \#2. */
|
---|
2654 | #define VERR_GIM_IPE_2 (-6302)
|
---|
2655 | /** GIM internal processing error \#3. */
|
---|
2656 | #define VERR_GIM_IPE_3 (-6303)
|
---|
2657 | /** The GIM provider does not support any paravirtualized TSC. */
|
---|
2658 | #define VERR_GIM_PVTSC_NOT_AVAILABLE (-6304)
|
---|
2659 | /** The guest has not setup use of the paravirtualized TSC. */
|
---|
2660 | #define VERR_GIM_PVTSC_NOT_ENABLED (-6305)
|
---|
2661 | /** Unknown or invalid GIM provider. */
|
---|
2662 | #define VERR_GIM_INVALID_PROVIDER (-6306)
|
---|
2663 | /** GIM generic operation failed. */
|
---|
2664 | #define VERR_GIM_OPERATION_FAILED (-6307)
|
---|
2665 | /** The GIM provider does not support any hypercalls. */
|
---|
2666 | #define VERR_GIM_HYPERCALLS_NOT_AVAILABLE (-6308)
|
---|
2667 | /** The guest has not setup use of the hypercalls. */
|
---|
2668 | #define VERR_GIM_HYPERCALLS_NOT_ENABLED (-6309)
|
---|
2669 | /** The GIM device is not registered with GIM when it ought to be. */
|
---|
2670 | #define VERR_GIM_DEVICE_NOT_REGISTERED (-6310)
|
---|
2671 | /** Hypercall cannot be enabled/performed due to access/permissions/CPL. */
|
---|
2672 | #define VERR_GIM_HYPERCALL_ACCESS_DENIED (-6311)
|
---|
2673 | /** Failed to read to a memory region while performing a hypercall. */
|
---|
2674 | #define VERR_GIM_HYPERCALL_MEMORY_READ_FAILED (-6312)
|
---|
2675 | /** Failed to write to a memory region while performing a hypercall. */
|
---|
2676 | #define VERR_GIM_HYPERCALL_MEMORY_WRITE_FAILED (-6313)
|
---|
2677 | /** Generic hypercall operation failure. */
|
---|
2678 | #define VERR_GIM_HYPERCALL_FAILED (-6314)
|
---|
2679 | /** No debug connection configured. */
|
---|
2680 | #define VERR_GIM_NO_DEBUG_CONNECTION (-6315)
|
---|
2681 | /** Return to ring-3 to perform the hypercall there. */
|
---|
2682 | #define VINF_GIM_R3_HYPERCALL 6316
|
---|
2683 | /** @} */
|
---|
2684 |
|
---|
2685 | /** @name Main API Status Codes
|
---|
2686 | * @{
|
---|
2687 | */
|
---|
2688 | /** The configuration constructor in main failed due to a COM error. Check
|
---|
2689 | * the release log of the VM for further details. */
|
---|
2690 | #define VERR_MAIN_CONFIG_CONSTRUCTOR_COM_ERROR (-6400)
|
---|
2691 | /** The configuration constructor in main failed due to an internal consistency
|
---|
2692 | * error. Consult the release log of the VM for further details. */
|
---|
2693 | #define VERR_MAIN_CONFIG_CONSTRUCTOR_IPE (-6401)
|
---|
2694 | /** @} */
|
---|
2695 |
|
---|
2696 | /** @name VBox Drag and Drop Status Codes
|
---|
2697 | * @{
|
---|
2698 | */
|
---|
2699 | /** Guest side reported an error. */
|
---|
2700 | #define VERR_GSTDND_GUEST_ERROR (-6500)
|
---|
2701 | /** @} */
|
---|
2702 |
|
---|
2703 |
|
---|
2704 | /* SED-END */
|
---|
2705 |
|
---|
2706 | /** @} */
|
---|
2707 |
|
---|
2708 |
|
---|
2709 | #endif
|
---|
2710 |
|
---|