VirtualBox

source: vbox/trunk/include/VBox/err.h

Last change on this file was 105673, checked in by vboxsync, 3 weeks ago

VMM/IEM,TM: Do full-TB looping. Redid timer polling in the recompiler. Rewrote the Blt_CheckIrq code, eliminating a conditional. Fixed some TLB related assertions. Moved some IEMCPU members around in hope of better cache-locality. bugref:10656

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

© 2024 Oracle
ContactPrivacy/Do Not Sell My InfoTerms of Use