VirtualBox

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

Last change on this file since 40356 was 40280, checked in by vboxsync, 13 years ago

Corrected a bunch of HC and GC uses in status codes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 95.2 KB
Line 
1/** @file
2 * VirtualBox Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006-2010 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_err_h
27#define ___VBox_err_h
28
29#include <VBox/cdefs.h>
30#include <iprt/err.h>
31
32
33/** @defgroup grp_err Error Codes
34 * @{
35 */
36
37/* SED-START */
38
39/** @name Misc. Status Codes
40 * @{
41 */
42/** Failed to allocate VM memory. */
43#define VERR_NO_VM_MEMORY (-1000)
44/** RC is toasted and the VMM should be terminated at once, but no need to
45 * panic about it :-) */
46#define VERR_DONT_PANIC (-1001)
47/** Unsupported CPU. */
48#define VERR_UNSUPPORTED_CPU (-1002)
49/** Unsupported CPU mode. */
50#define VERR_UNSUPPORTED_CPU_MODE (-1003)
51/** Page not present. */
52#define VERR_PAGE_NOT_PRESENT (-1004)
53/** Invalid/Corrupted configuration file. */
54#define VERR_CFG_INVALID_FORMAT (-1005)
55/** No configuration value exists. */
56#define VERR_CFG_NO_VALUE (-1006)
57/** Selector not present. */
58#define VERR_SELECTOR_NOT_PRESENT (-1007)
59/** Not code selector. */
60#define VERR_NOT_CODE_SELECTOR (-1008)
61/** Not data selector. */
62#define VERR_NOT_DATA_SELECTOR (-1009)
63/** Out of selector bounds. */
64#define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
65/** Invalid selector. Usually beyond table limits. */
66#define VERR_INVALID_SELECTOR (-1011)
67/** Invalid requested privilegde level. */
68#define VERR_INVALID_RPL (-1012)
69/** PML4 entry not present. */
70#define VERR_PAGE_MAP_LEVEL4_NOT_PRESENT (-1013)
71/** Page directory pointer not present. */
72#define VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT (-1014)
73/** Raw mode doesn't support SMP. */
74#define VERR_RAW_MODE_INVALID_SMP (-1015)
75/** Invalid VM handle. */
76#define VERR_INVALID_VM_HANDLE (-1016)
77/** Invalid VM handle. */
78#define VERR_INVALID_VMCPU_HANDLE (-1017)
79/** Invalid Virtual CPU ID. */
80#define VERR_INVALID_CPU_ID (-1018)
81/** Too many VCPUs. */
82#define VERR_TOO_MANY_CPUS (-1019)
83/** The service was disabled on the host.
84 * Returned by pfnInit in VBoxService to indicated a non-fatal error that
85 * should results in the particular service being disabled. */
86#define VERR_SERVICE_DISABLED (-1020)
87/** @} */
88
89
90/** @name Execution Monitor/Manager (EM) Status Codes
91 *
92 * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
93 * are of vital importance. The lower the number the higher importance
94 * as a scheduling instruction.
95 * @{
96 */
97/** First scheduling related status code. */
98#define VINF_EM_FIRST 1100
99/** Indicating that the VM is being terminated and that the the execution
100 * shall stop. */
101#define VINF_EM_TERMINATE 1100
102/** Hypervisor code was stepped.
103 * EM will first send this to the debugger, and if the issue isn't
104 * resolved there it will enter guru meditation. */
105#define VINF_EM_DBG_HYPER_STEPPED 1101
106/** Hit a breakpoint in the hypervisor code,
107 * EM will first send this to the debugger, and if the issue isn't
108 * resolved there it will enter guru meditation. */
109#define VINF_EM_DBG_HYPER_BREAKPOINT 1102
110/** Hit a possible assertion in the hypervisor code,
111 * EM will first send this to the debugger, and if the issue isn't
112 * resolved there it will enter guru meditation. */
113#define VINF_EM_DBG_HYPER_ASSERTION 1103
114/** Indicating that the VM should be suspended for debugging because
115 * the developer wants to inspect the VM state. */
116#define VINF_EM_DBG_STOP 1105
117/** Indicating success single stepping and that EM should report that
118 * event to the debugger. */
119#define VINF_EM_DBG_STEPPED 1106
120/** Indicating that a breakpoint was hit and that EM should notify the debugger
121 * and in the event there is no debugger fail fatally. */
122#define VINF_EM_DBG_BREAKPOINT 1107
123/** Indicating that EM should single step an instruction.
124 * The instruction is stepped in the current execution mode (RAW/REM). */
125#define VINF_EM_DBG_STEP 1108
126/** Indicating that the VM is being turned off and that the EM should
127 * exit to the VM awaiting the destruction request. */
128#define VINF_EM_OFF 1109
129/** Indicating that the VM has been suspended and that the the thread
130 * should wait for request telling it what to do next. */
131#define VINF_EM_SUSPEND 1110
132/** Indicating that the VM has been reset and that scheduling goes
133 * back to startup defaults. */
134#define VINF_EM_RESET 1111
135/** Indicating that the VM has executed a halt instruction and that
136 * the emulation thread should wait for an interrupt before resuming
137 * execution. */
138#define VINF_EM_HALT 1112
139/** Indicating that the VM has been resumed and that the thread should
140 * start executing. */
141#define VINF_EM_RESUME 1113
142/** Indicating that we've got an out-of-memory condition and that we need
143 * to take the appropriate actions to deal with this.
144 * @remarks It might seem odd at first that this has lower priority than VINF_EM_HALT,
145 * VINF_EM_SUSPEND, and VINF_EM_RESUME. The reason is that these events are
146 * vital to correctly operating the VM. Also, they can't normally occur together
147 * with an out-of-memory condition, and even if that should happen the condition
148 * will be rediscovered before executing any more code. */
149#define VINF_EM_NO_MEMORY 1114
150/** The fatal variant of VINF_EM_NO_MEMORY. */
151#define VERR_EM_NO_MEMORY (-1114)
152/** Indicating that a rescheduling to recompiled execution.
153 * Typically caused by raw-mode executing code which is difficult/slow
154 * to virtualize rawly.
155 * @remarks Important to have a higher priority (lower number) than the other rescheduling status codes. */
156#define VINF_EM_RESCHEDULE_REM 1115
157/** Indicating that a rescheduling to vmx-mode execution.
158 * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible. */
159#define VINF_EM_RESCHEDULE_HWACC 1116
160/** Indicating that a rescheduling to raw-mode execution.
161 * Typically caused by REM detecting that raw-mode execution is possible.
162 * @remarks Important to have a higher priority (lower number) than VINF_EM_RESCHEDULE. */
163#define VINF_EM_RESCHEDULE_RAW 1117
164/** Indicating that a rescheduling now is required. Typically caused by
165 * interrupts having changed the EIP. */
166#define VINF_EM_RESCHEDULE 1118
167/** PARAV call */
168#define VINF_EM_RESCHEDULE_PARAV 1119
169/** Go back into wait for SIPI mode */
170#define VINF_EM_WAIT_SIPI 1120
171/** Last scheduling related status code. (inclusive) */
172#define VINF_EM_LAST 1120
173
174/** Reason for leaving RC: Guest trap which couldn't be handled in RC.
175 * The trap is generally forwarded to the REM and executed there. */
176#define VINF_EM_RAW_GUEST_TRAP 1121
177/** Reason for leaving RC: Interrupted by external interrupt.
178 * The interrupt needed to be handled by the host OS. */
179#define VINF_EM_RAW_INTERRUPT 1122
180/** Reason for leaving RC: Interrupted by external interrupt while in hypervisor
181 * code. The interrupt needed to be handled by the host OS and hypervisor
182 * execution must be resumed. VM state is not complete at this point. */
183#define VINF_EM_RAW_INTERRUPT_HYPER 1123
184/** Reason for leaving RC: A Ring switch was attempted.
185 * Normal cause of action is to execute this in REM. */
186#define VINF_EM_RAW_RING_SWITCH 1124
187/** Reason for leaving RC: A Ring switch was attempted using software interrupt.
188 * Normal cause of action is to execute this in REM. */
189#define VINF_EM_RAW_RING_SWITCH_INT 1125
190/** Reason for leaving RC: A privileged instruction was attempted executed.
191 * Normal cause of action is to execute this in REM. */
192#define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1126
193
194/** Reason for leaving RZ: Emulate instruction. */
195#define VINF_EM_RAW_EMULATE_INSTR 1127
196/** Reason for leaving RC: Unhandled TSS write.
197 * Recompiler gets control. */
198#define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1128
199/** Reason for leaving RC: Unhandled LDT write.
200 * Recompiler gets control. */
201#define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1129
202/** Reason for leaving RC: Unhandled IDT write.
203 * Recompiler gets control. */
204#define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1130
205/** Reason for leaving RC: Unhandled GDT write.
206 * Recompiler gets control. */
207#define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1131
208/** Reason for leaving RC: Unhandled Page Directory write.
209 * Recompiler gets control. */
210#define VINF_EM_RAW_EMULATE_INSTR_PD_FAULT 1132
211/** Reason for leaving RC: jump inside generated patch jump.
212 * Fatal error. */
213#define VERR_EM_RAW_PATCH_CONFLICT (-1133)
214/** Reason for leaving RC: Hlt instruction.
215 * Recompiler gets control. */
216#define VINF_EM_RAW_EMULATE_INSTR_HLT 1134
217/** Reason for leaving RZ: Ring-3 operation pending. */
218#define VINF_EM_RAW_TO_R3 1135
219/** Reason for leaving RZ: Timer pending. */
220#define VINF_EM_RAW_TIMER_PENDING 1136
221/** Reason for leaving RC: Interrupt pending (guest). */
222#define VINF_EM_RAW_INTERRUPT_PENDING 1137
223/** Reason for leaving RC: Encountered a stale selector. */
224#define VINF_EM_RAW_STALE_SELECTOR 1138
225/** Reason for leaving RC: The IRET resuming guest code trapped. */
226#define VINF_EM_RAW_IRET_TRAP 1139
227/** Reason for leaving RC: Emulate (MM)IO intensive code in the recompiler. */
228#define VINF_EM_RAW_EMULATE_IO_BLOCK 1140
229/** The interpreter was unable to deal with the instruction at hand. */
230#define VERR_EM_INTERPRETER (-1148)
231/** Internal EM error caused by an unknown warning or informational status code. */
232#define VERR_EM_INTERNAL_ERROR (-1149)
233/** Pending VM request packet. */
234#define VINF_EM_PENDING_REQUEST 1150
235/** Start instruction stepping (debug only). */
236#define VINF_EM_RAW_EMULATE_DBG_STEP 1151
237/** Patch TPR access instruction. */
238#define VINF_EM_HWACCM_PATCH_TPR_INSTR 1152
239/** The EMInterpretDisasOne / EMInterpretDisasOneEx methods failed to
240 * disassemble the instruction. */
241#define VERR_EM_INTERNAL_DISAS_ERROR (-1153)
242/** Unexpected guest mapping conflict detected. */
243#define VERR_EM_UNEXPECTED_MAPPING_CONFLICT (-1154)
244/** @} */
245
246
247/** @name Debugging Facility (DBGF) DBGF Status Codes
248 * @{
249 */
250/** The function called requires the caller to be attached as a
251 * debugger to the VM. */
252#define VERR_DBGF_NOT_ATTACHED (-1200)
253/** Someone (including the caller) was already attached as
254 * debugger to the VM. */
255#define VERR_DBGF_ALREADY_ATTACHED (-1201)
256/** Tried to hald a debugger which was already halted.
257 * (This is a warning and not an error.) */
258#define VWRN_DBGF_ALREADY_HALTED 1202
259/** The DBGF has no more free breakpoint slots. */
260#define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
261/** The DBGF couldn't find the specified breakpoint. */
262#define VERR_DBGF_BP_NOT_FOUND (-1204)
263/** Attempted to enabled a breakpoint which was already enabled. */
264#define VINF_DBGF_BP_ALREADY_ENABLED 1205
265/** Attempted to disabled a breakpoint which was already disabled. */
266#define VINF_DBGF_BP_ALREADY_DISABLED 1206
267/** The breakpoint already exists. */
268#define VINF_DBGF_BP_ALREADY_EXIST 1207
269/** The byte string was not found. */
270#define VERR_DBGF_MEM_NOT_FOUND (-1208)
271/** The OS was not detected. */
272#define VERR_DBGF_OS_NOT_DETCTED (-1209)
273/** The OS was not detected. */
274#define VINF_DBGF_OS_NOT_DETCTED 1209
275/** The specified register was not found. */
276#define VERR_DBGF_REGISTER_NOT_FOUND (-1210)
277/** The value was truncated to fit.
278 * For queries this means that the register is wider than the queried value.
279 * For setters this means that the value is wider than the register. */
280#define VINF_DBGF_TRUNCATED_REGISTER 1211
281/** The value was zero extended to fit.
282 * For queries this means that the register is narrower than the queried value.
283 * For setters this means that the value is narrower than the register. */
284#define VINF_DBGF_ZERO_EXTENDED_REGISTER 1212
285/** The requested type conversion was not supported. */
286#define VERR_DBGF_UNSUPPORTED_CAST (-1213)
287/** The register is read-only and cannot be modified. */
288#define VERR_DBGF_READ_ONLY_REGISTER (-1214)
289/** Internal processing error \#1 in the DBGF register code. */
290#define VERR_DBGF_REG_IPE_1 (-1215)
291/** Internal processing error \#2 in the DBGF register code. */
292#define VERR_DBGF_REG_IPE_2 (-1216)
293/** Unhandled \#DB in hypervisor code. */
294#define VERR_DBGF_HYPER_DB_XCPT (-1217)
295/** Internal processing error \#1 in the DBGF stack code. */
296#define VERR_DBGF_STACK_IPE_1 (-1218)
297/** Internal processing error \#2 in the DBGF stack code. */
298#define VERR_DBGF_STACK_IPE_2 (-1218)
299/** @} */
300
301
302/** @name Patch Manager (PATM) Status Codes
303 * @{
304 */
305/** Non fatal Patch Manager analysis phase warning */
306#define VWRN_CONTINUE_ANALYSIS 1400
307/** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
308#define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
309/** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
310#define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
311/** Patch installation refused (patch too complex or unsupported instructions ) */
312#define VERR_PATCHING_REFUSED (-1401)
313/** Unable to find patch */
314#define VERR_PATCH_NOT_FOUND (-1402)
315/** Patch disabled */
316#define VERR_PATCH_DISABLED (-1403)
317/** Patch enabled */
318#define VWRN_PATCH_ENABLED 1404
319/** Patch was already disabled */
320#define VERR_PATCH_ALREADY_DISABLED (-1405)
321/** Patch was already enabled */
322#define VERR_PATCH_ALREADY_ENABLED (-1406)
323/** Patch was removed. */
324#define VWRN_PATCH_REMOVED 1407
325
326/** Reason for leaving RC: \#GP with EIP pointing to patch code. */
327#define VINF_PATM_PATCH_TRAP_GP 1408
328/** First leave RC code. */
329#define VINF_PATM_LEAVE_RC_FIRST VINF_PATM_PATCH_TRAP_GP
330/** Reason for leaving RC: \#PF with EIP pointing to patch code. */
331#define VINF_PATM_PATCH_TRAP_PF 1409
332/** Reason for leaving RC: int3 with EIP pointing to patch code. */
333#define VINF_PATM_PATCH_INT3 1410
334/** Reason for leaving RC: \#PF for monitored patch page. */
335#define VINF_PATM_CHECK_PATCH_PAGE 1411
336/** Reason for leaving RC: duplicate instruction called at current eip. */
337#define VINF_PATM_DUPLICATE_FUNCTION 1412
338/** Execute one instruction with the recompiler */
339#define VINF_PATCH_EMULATE_INSTR 1413
340/** Reason for leaving RC: attempt to patch MMIO write. */
341#define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
342/** Reason for leaving RC: attempt to patch MMIO read. */
343#define VINF_PATM_HC_MMIO_PATCH_READ 1415
344/** Reason for leaving RC: pending irq after iret that sets IF. */
345#define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
346/** Last leave RC code. */
347#define VINF_PATM_LEAVE_RC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
348
349/** No conflicts to resolve */
350#define VERR_PATCH_NO_CONFLICT (-1425)
351/** Detected unsafe code for patching */
352#define VERR_PATM_UNSAFE_CODE (-1426)
353/** Terminate search branch */
354#define VWRN_PATCH_END_BRANCH 1427
355/** Already patched */
356#define VERR_PATM_ALREADY_PATCHED (-1428)
357/** Spinlock detection failed. */
358#define VINF_PATM_SPINLOCK_FAILED (1429)
359/** Continue execution after patch trap. */
360#define VINF_PATCH_CONTINUE (1430)
361
362/** @} */
363
364
365/** @name Code Scanning and Analysis Manager (CSAM) Status Codes
366 * @{
367 */
368/** Trap not handled */
369#define VWRN_CSAM_TRAP_NOT_HANDLED 1500
370/** Patch installed */
371#define VWRN_CSAM_INSTRUCTION_PATCHED 1501
372/** Page record not found */
373#define VWRN_CSAM_PAGE_NOT_FOUND 1502
374/** Reason for leaving RC: CSAM wants perform a task in ring-3. */
375#define VINF_CSAM_PENDING_ACTION 1503
376/** @} */
377
378
379/** @name Page Monitor/Manager (PGM) Status Codes
380 * @{
381 */
382/** Attempt to create a GC mapping which conflicts with an existing mapping. */
383#define VERR_PGM_MAPPING_CONFLICT (-1600)
384/** The physical handler range has no corresponding RAM range.
385 * If this is MMIO, see todo above the return. If not MMIO, then it's
386 * someone else's fault... */
387#define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
388/** Attempt to register an access handler for a virtual range of which a part
389 * was already handled. */
390#define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
391/** Attempt to register an access handler for a physical range of which a part
392 * was already handled. */
393#define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
394/** Invalid page directory specified to PGM. */
395#define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
396/** Invalid GC physical address. */
397#define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
398/** Invalid GC physical range. Usually used when a specified range crosses
399 * a RAM region boundary. */
400#define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
401/** Specified access handler was not found. */
402#define VERR_PGM_HANDLER_NOT_FOUND (-1607)
403/** Attempt to register a RAM range of which parts are already
404 * covered by existing RAM ranges. */
405#define VERR_PGM_RAM_CONFLICT (-1608)
406/** Failed to add new mappings because the current mappings are fixed
407 * in guest os memory. */
408#define VERR_PGM_MAPPINGS_FIXED (-1609)
409/** Failed to fix mappings because of a conflict with the intermediate code. */
410#define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
411/** Failed to fix mappings because a mapping rejected the address. */
412#define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
413/** Failed to fix mappings because the proposed memory area was to small. */
414#define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
415/** Reason for leaving RZ: The urge to syncing CR3. */
416#define VINF_PGM_SYNC_CR3 1613
417/** Page not marked for dirty bit tracking */
418#define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
419/** Page fault caused by dirty bit tracking; corrected */
420#define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
421/** Go ahead with the default Read/Write operation.
422 * This is returned by a R3 physical or virtual handler when it wants the
423 * PGMPhys[Read|Write] routine do the reading/writing. */
424#define VINF_PGM_HANDLER_DO_DEFAULT 1616
425/** The paging mode of the host is not supported yet. */
426#define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
427/** The physical guest page is a reserved/MMIO page and does not have any HC
428 * address. */
429#define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
430/** No page directory available for the hypervisor. */
431#define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
432/** The shadow page pool was flushed.
433 * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
434 * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
435#define VERR_PGM_POOL_FLUSHED (-1620)
436/** The shadow page pool was cleared.
437 * This is a error code internal to the shadow page pool, it will be
438 * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
439#define VERR_PGM_POOL_CLEARED (-1621)
440/** The returned shadow page is cached. */
441#define VINF_PGM_CACHED_PAGE 1622
442/** Returned by handler registration, modification and deregistration
443 * when the shadow PTs could be updated because the guest page
444 * aliased or/and mapped by multiple PTs. */
445#define VINF_PGM_GCPHYS_ALIASED 1623
446/** Reason for leaving RC: Paging mode changed.
447 * PGMChangeMode() uses this to force a switch to R3 so it can safely deal with
448 * a mode switch. */
449#define VINF_PGM_CHANGE_MODE 1624
450/** SyncPage modified the PDE.
451 * This is an internal status code used to communicate back to the \#PF handler
452 * that the PDE was (probably) marked not-present and it should restart the instruction. */
453#define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
454/** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
455#define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
456/** Conflict between the core memory and the intermediate paging context, try again.
457 * There are some very special conditions applying to the intermediate paging context
458 * (used during the world switches), and some times we continuously run into these
459 * when asking the host kernel for memory during VM init. Let us know if you run into
460 * this and we'll adjust the code so it tries harder to avoid it.
461 */
462#define VERR_PGM_INTERMEDIATE_PAGING_CONFLICT (-1627)
463/** The shadow paging mode is not supported yet. */
464#define VERR_PGM_UNSUPPORTED_SHADOW_PAGING_MODE (-1628)
465/** The dynamic mapping cache for physical memory failed. */
466#define VERR_PGM_DYNMAP_FAILED (-1629)
467/** The auto usage cache for the dynamic mapping set is full. */
468#define VERR_PGM_DYNMAP_FULL_SET (-1630)
469/** The initialization of the dynamic mapping cache failed. */
470#define VERR_PGM_DYNMAP_SETUP_ERROR (-1631)
471/** The expanding of the dynamic mapping cache failed. */
472#define VERR_PGM_DYNMAP_EXPAND_ERROR (-1632)
473/** The page is unassigned (akin to VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS). */
474#define VERR_PGM_PHYS_TLB_UNASSIGNED (-1633)
475/** Catch any access and route it thru PGM. */
476#define VERR_PGM_PHYS_TLB_CATCH_ALL (-1634)
477/** Catch write access and route it thru PGM. */
478#define VINF_PGM_PHYS_TLB_CATCH_WRITE 1635
479/** No CR3 root shadow page table.. */
480#define VERR_PGM_NO_CR3_SHADOW_ROOT (-1636)
481/** Trying to free a page with an invalid Page ID. */
482#define VERR_PGM_PHYS_INVALID_PAGE_ID (-1637)
483/** PGMPhysWrite/Read hit a handler in Ring-0 or raw-mode context. */
484#define VERR_PGM_PHYS_WR_HIT_HANDLER (-1638)
485/** Trying to free a page that isn't RAM. */
486#define VERR_PGM_PHYS_NOT_RAM (-1639)
487/** Not ROM page. */
488#define VERR_PGM_PHYS_NOT_ROM (-1640)
489/** Not MMIO page. */
490#define VERR_PGM_PHYS_NOT_MMIO (-1641)
491/** Not MMIO2 page. */
492#define VERR_PGM_PHYS_NOT_MMIO2 (-1642)
493/** Already aliased to a different page. */
494#define VERR_PGM_HANDLER_ALREADY_ALIASED (-1643)
495/** Already aliased to the same page. */
496#define VINF_PGM_HANDLER_ALREADY_ALIASED (1643)
497/** PGM pool flush pending - return to ring 3. */
498#define VINF_PGM_POOL_FLUSH_PENDING (1644)
499/** Unable to use the range for a large page. */
500#define VERR_PGM_INVALID_LARGE_PAGE_RANGE (-1645)
501/** Don't mess around with ballooned pages. */
502#define VERR_PGM_PHYS_PAGE_BALLOONED (-1646)
503
504
505/** pgmPhysPageMapCommon encountered PGMPAGETYPE_MMIO2_ALIAS_MMIO. */
506#define VERR_PGM_MAP_MMIO2_ALIAS_MMIO (-1651)
507/** Guest mappings are disabled. */
508#define VERR_PGM_MAPPINGS_DISABLED (-1652)
509/** No guest mappings when SMP is enabled. */
510#define VERR_PGM_MAPPINGS_SMP (-1653)
511/** Invalid saved page state. */
512#define VERR_PGM_INVALID_SAVED_PAGE_STATE (-1654)
513/** Encountered an unexpected page type in the saved state. */
514#define VERR_PGM_LOAD_UNEXPECTED_PAGE_TYPE (-1655)
515/** Encountered an unexpected page state in the saved state. */
516#define VERR_PGM_UNEXPECTED_PAGE_STATE (-1656)
517/** Couldn't find MMIO2 range from saved state. */
518#define VERR_PGM_SAVED_MMIO2_RANGE_NOT_FOUND (-1657)
519/** Couldn't find MMIO2 page from saved state. */
520#define VERR_PGM_SAVED_MMIO2_PAGE_NOT_FOUND (-1658)
521/** Couldn't find ROM range from saved state. */
522#define VERR_PGM_SAVED_ROM_RANGE_NOT_FOUND (-1659)
523/** Couldn't find ROM page from saved state. */
524#define VERR_PGM_SAVED_ROM_PAGE_NOT_FOUND (-1660)
525/** ROM page mismatch between saved state and the VM. */
526#define VERR_PGM_SAVED_ROM_PAGE_PROT (-1661)
527/** Unknown saved state record. */
528#define VERR_PGM_SAVED_REC_TYPE (-1662)
529/** Internal processing error in the PGM dynmap (r0/rc). */
530#define VERR_PGM_DYNMAP_IPE (-1663)
531/** Internal processing error in the PGM handy page allocator. */
532#define VERR_PGM_HANDY_PAGE_IPE (-1664)
533/** Failed to map the guest PML4. */
534#define VERR_PGM_PML4_MAPPING (-1665)
535/** Failed to obtain a pool page. */
536#define VERR_PGM_POOL_GET_PAGE_FAILED (-1666)
537/** A PGM function was called in a mode where it isn't supposed to be used. */
538#define VERR_PGM_NOT_USED_IN_MODE (-1667)
539/** The CR3 address specified memory we don't know about. */
540#define VERR_PGM_INVALID_CR3_ADDR (-1668)
541/** One or the PDPEs specified memory we don't know about. */
542#define VERR_PGM_INVALID_PDPE_ADDR (-1669)
543/** Internal processing error in the PGM physical handler code. */
544#define VERR_PGM_PHYS_HANDLER_IPE (-1670)
545/** Internal processing error \#1 in the PGM physial page mapping code. */
546#define VERR_PGM_PHYS_PAGE_MAP_IPE_1 (-1671)
547/** Internal processing error \#2 in the PGM physial page mapping code. */
548#define VERR_PGM_PHYS_PAGE_MAP_IPE_2 (-1672)
549/** Internal processing error \#3 in the PGM physial page mapping code. */
550#define VERR_PGM_PHYS_PAGE_MAP_IPE_3 (-1673)
551/** Internal processing error \#4 in the PGM physial page mapping code. */
552#define VERR_PGM_PHYS_PAGE_MAP_IPE_4 (-1674)
553/** Too many loops looking for a page to reuse. */
554#define VERR_PGM_POOL_TOO_MANY_LOOPS (-1675)
555/** Internal procesing error related to guest mappings. */
556#define VERR_PGM_MAPPING_IPE (-1676)
557/** An attempt was made to grow an already maxed out page pool. */
558#define VERR_PGM_POOL_MAXED_OUT_ALREADY (-1677)
559/** Internal processing error in the page pool code. */
560#define VERR_PGM_POOL_IPE (-1678)
561/** The write monitor is already engaged. */
562#define VERR_PGM_WRITE_MONITOR_ENGAGED (-1679)
563/** Failed to get a guest page which is expected to be present. */
564#define VERR_PGM_PHYS_PAGE_GET_IPE (-1680)
565/** We were given a NULL pPage parameter. */
566#define VERR_PGM_PHYS_NULL_PAGE_PARAM (-1681)
567/** PCI passthru is not supported by this build. */
568#define VERR_PGM_PCI_PASSTHRU_MISCONFIG (-1682)
569/** @} */
570
571
572/** @name Memory Monitor (MM) Status Codes
573 * @{
574 */
575/** Attempt to register a RAM range of which parts are already
576 * covered by existing RAM ranges. */
577#define VERR_MM_RAM_CONFLICT (-1700)
578/** Hypervisor memory allocation failed. */
579#define VERR_MM_HYPER_NO_MEMORY (-1701)
580/** A bad trap type ended up in mmGCRamTrap0eHandler. */
581#define VERR_MM_BAD_TRAP_TYPE_IPE (-1702)
582/** @} */
583
584
585/** @name CPU Monitor (CPUM) Status Codes
586 * @{
587 */
588/** The caller shall raise an \#GP(0) exception. */
589#define VERR_CPUM_RAISE_GP_0 (-1750)
590/** Incompatible CPUM configuration. */
591#define VERR_CPUM_INCOMPATIBLE_CONFIG (-1751)
592/** @} */
593
594
595/** @name Save State Manager (SSM) Status Codes
596 * @{
597 */
598/** The specified data unit already exist. */
599#define VERR_SSM_UNIT_EXISTS (-1800)
600/** The specified data unit wasn't found. */
601#define VERR_SSM_UNIT_NOT_FOUND (-1801)
602/** The specified data unit wasn't owned by caller. */
603#define VERR_SSM_UNIT_NOT_OWNER (-1802)
604
605/** General saved state file integrity error. */
606#define VERR_SSM_INTEGRITY (-1810)
607/** The saved state file magic was not recognized. */
608#define VERR_SSM_INTEGRITY_MAGIC (-1811)
609/** The saved state file version is not supported. */
610#define VERR_SSM_INTEGRITY_VERSION (-1812)
611/** The saved state file size didn't match the one in the header. */
612#define VERR_SSM_INTEGRITY_SIZE (-1813)
613/** The CRC of the saved state file did not match. */
614#define VERR_SSM_INTEGRITY_CRC (-1814)
615/** The machine uuid field wasn't null. */
616#define VERR_SMM_INTEGRITY_MACHINE (-1815)
617/** Saved state header integrity error. */
618#define VERR_SSM_INTEGRITY_HEADER (-1816)
619/** Unit header integrity error. */
620#define VERR_SSM_INTEGRITY_UNIT (-1817)
621/** Invalid unit magic (internal data tag). */
622#define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1818)
623/** The file contained a data unit which no-one wants. */
624#define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1819)
625/** Incorrect version numbers in the header. */
626#define VERR_SSM_INTEGRITY_VBOX_VERSION (-1820)
627/** Footer integrity error. */
628#define VERR_SSM_INTEGRITY_FOOTER (-1821)
629/** Record header integrity error. */
630#define VERR_SSM_INTEGRITY_REC_HDR (-1822)
631/** Termination record integrity error. */
632#define VERR_SSM_INTEGRITY_REC_TERM (-1823)
633/** Termination record CRC mismatch. */
634#define VERR_SSM_INTEGRITY_REC_TERM_CRC (-1824)
635/** Decompression interity error. */
636#define VERR_SSM_INTEGRITY_DECOMPRESSION (-1825)
637/** Saved state directory iintegrity error. */
638#define VERR_SSM_INTEGRITY_DIR (-1826)
639/** The saved state directory magic is wrong. */
640#define VERR_SSM_INTEGRITY_DIR_MAGIC (-1827)
641
642/** A data unit in the saved state file was defined but didn't any
643 * routine for processing it. */
644#define VERR_SSM_NO_LOAD_EXEC (-1830)
645/** A restore routine attempted to load more data then the unit contained. */
646#define VERR_SSM_LOADED_TOO_MUCH (-1831)
647/** Not in the correct state for the attempted operation. */
648#define VERR_SSM_INVALID_STATE (-1832)
649/** Not in the correct state for the attempted operation. */
650#define VERR_SSM_LOADED_TOO_LITTLE (-1833)
651
652/** Unsupported data unit version.
653 * A SSM user returns this if it doesn't know the u32Version. */
654#define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1840)
655/** The format of a data unit has changed.
656 * A SSM user returns this if it's not able to read the format for
657 * other reasons than u32Version. */
658#define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1841)
659/** The CPUID instruction returns different information when loading than when saved.
660 * Normally caused by hardware changes on the host, but could also be caused by
661 * changes in the BIOS setup. */
662#define VERR_SSM_LOAD_CPUID_MISMATCH (-1842)
663/** The RAM size differes between the saved state and the VM config. */
664#define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1843)
665/** The state doesn't match the VM configuration in one or another way.
666 * (There are certain PCI reconfiguration which the OS could potentially
667 * do which can cause this problem. Check this out when it happens.) */
668#define VERR_SSM_LOAD_CONFIG_MISMATCH (-1844)
669/** The virtual clock frequency differs too much.
670 * The clock source for the virtual time isn't reliable or the code have changed. */
671#define VERR_SSM_VIRTUAL_CLOCK_HZ (-1845)
672/** A timeout occurred while waiting for async IDE operations to finish. */
673#define VERR_SSM_IDE_ASYNC_TIMEOUT (-1846)
674/** One of the structure magics was wrong. */
675#define VERR_SSM_STRUCTURE_MAGIC (-1847)
676/** The data in the saved state doesn't conform to expectations. */
677#define VERR_SSM_UNEXPECTED_DATA (-1848)
678/** Trying to read a 64-bit guest physical address into a 32-bit variable. */
679#define VERR_SSM_GCPHYS_OVERFLOW (-1849)
680/** Trying to read a 64-bit guest virtual address into a 32-bit variable. */
681#define VERR_SSM_GCPTR_OVERFLOW (-1850)
682/** Vote for another pass. */
683#define VINF_SSM_VOTE_FOR_ANOTHER_PASS 1851
684/** Vote for done tell SSM not to call again until the final pass. */
685#define VINF_SSM_VOTE_DONE_DONT_CALL_AGAIN 1852
686/** Vote for giving up. */
687#define VERR_SSM_VOTE_FOR_GIVING_UP (-1853)
688/** Don't call again until the final pass. */
689#define VINF_SSM_DONT_CALL_AGAIN 1854
690/** Giving up a live snapshot/teleportation attempt because of too many
691 * passes. */
692#define VERR_SSM_TOO_MANY_PASSES (-1855)
693/** Giving up a live snapshot/teleportation attempt because the state grew to
694 * big. */
695#define VERR_SSM_STATE_GREW_TOO_BIG (-1856)
696/** Giving up a live snapshot attempt because we're low on disk space. */
697#define VERR_SSM_LOW_ON_DISK_SPACE (-1857)
698/** The operation was cancelled. */
699#define VERR_SSM_CANCELLED (-1858)
700/** Nothing that can be cancelled. */
701#define VERR_SSM_NO_PENDING_OPERATION (-1859)
702/** The operation has already been cancelled. */
703#define VERR_SSM_ALREADY_CANCELLED (-1860)
704/** The machine was powered off while saving. */
705#define VERR_SSM_LIVE_POWERED_OFF (-1861)
706/** The live snapshot/teleportation operation was aborted because of a guru
707 * meditation. */
708#define VERR_SSM_LIVE_GURU_MEDITATION (-1862)
709/** The live snapshot/teleportation operation was aborted because of a fatal
710 * runtime error. */
711#define VERR_SSM_LIVE_FATAL_ERROR (-1863)
712/** The VM was suspended before or while saving, don't resume execution. */
713#define VINF_SSM_LIVE_SUSPENDED 1864
714/** Complex SSM field fed to SSMR3PutStruct or SSMR3GetStruct. Use the
715 * extended API. */
716#define VERR_SSM_FIELD_COMPLEX (-1864)
717/** Invalid size of a SSM field with the specified transformation. */
718#define VERR_SSM_FIELD_INVALID_SIZE (-1865)
719/** The specified field is outside the structure. */
720#define VERR_SSM_FIELD_OUT_OF_BOUNDS (-1866)
721/** The field does not follow immediately the previous one. */
722#define VERR_SSM_FIELD_NOT_CONSECUTIVE (-1867)
723/** The field contains an invalid callback or transformation index. */
724#define VERR_SSM_FIELD_INVALID_CALLBACK (-1868)
725/** The field contains an invalid padding size. */
726#define VERR_SSM_FIELD_INVALID_PADDING_SIZE (-1869)
727/** The field contains a value that is out of range. */
728#define VERR_SSM_FIELD_INVALID_VALUE (-1870)
729/** Generic stream error. */
730#define VERR_SSM_STREAM_ERROR (-1871)
731/** SSM did a callback for a pass we didn't expect. */
732#define VERR_SSM_UNEXPECTED_PASS (-1872)
733/** Someone is trying to skip backwards in the stream... */
734#define VERR_SSM_SKIP_BACKWARDS (-1873)
735/** Someone is trying to write a memory block which is too big to encode. */
736#define VERR_SSM_MEM_TOO_BIG (-1874)
737/** Encountered an bad (/unknown) record type. */
738#define VERR_SSM_BAD_REC_TYPE (-1875)
739/** Internal processing error \#1 in SSM code. */
740#define VERR_SSM_IPE_1 (-1876)
741/** Internal processing error \#2 in SSM code. */
742#define VERR_SSM_IPE_2 (-1877)
743/** Internal processing error \#3 in SSM code. */
744#define VERR_SSM_IPE_3 (-1878)
745
746/** @} */
747
748
749/** @name Virtual Machine (VM) Status Codes
750 * @{
751 */
752/** The specified at reset handler wasn't found. */
753#define VERR_VM_ATRESET_NOT_FOUND (-1900)
754/** Invalid VM request type.
755 * For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
756 * all the other occurrences it means indicates corruption, broken logic, or stupid
757 * interface user. */
758#define VERR_VM_REQUEST_INVALID_TYPE (-1901)
759/** Invalid VM request state.
760 * The state of the request packet was not the expected and accepted one(s). Either
761 * the interface user screwed up, or we've got corruption/broken logic. */
762#define VERR_VM_REQUEST_STATE (-1902)
763/** Invalid VM request packet.
764 * One or more of the the VM controlled packet members didn't contain the correct
765 * values. Some thing's broken. */
766#define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
767/** The status field has not been updated yet as the request is still
768 * pending completion. Someone queried the iStatus field before the request
769 * has been fully processed. */
770#define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
771/** The request has been freed, don't read the status now.
772 * Someone is reading the iStatus field of a freed request packet. */
773#define VERR_VM_REQUEST_STATUS_FREED (-1905)
774/** A VM api requiring EMT was called from another thread.
775 * Use the VMR3ReqCall() apis to call it! */
776#define VERR_VM_THREAD_NOT_EMT (-1906)
777/** The VM state was invalid for the requested operation.
778 * Go check the 'VM Statechart Diagram.gif'. */
779#define VERR_VM_INVALID_VM_STATE (-1907)
780/** The support driver is not installed.
781 * On linux, open returned ENOENT. */
782#define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
783/** The support driver is not accessible.
784 * On linux, open returned EPERM. */
785#define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
786/** Was not able to load the support driver.
787 * On linux, open returned ENODEV. */
788#define VERR_VM_DRIVER_LOAD_ERROR (-1910)
789/** Was not able to open the support driver.
790 * Generic open error used when none of the other ones fit. */
791#define VERR_VM_DRIVER_OPEN_ERROR (-1911)
792/** The installed support driver doesn't match the version of the user. */
793#define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
794/** Saving the VM state is temporarily not allowed. Try again later. */
795#define VERR_VM_SAVE_STATE_NOT_ALLOWED (-1913)
796/** An EMT called an API which cannot be called on such a thread. */
797#define VERR_VM_THREAD_IS_EMT (-1914)
798/** Encountered an unexpected VM state. */
799#define VERR_VM_UNEXPECTED_VM_STATE (-1915)
800/** Unexpected unstable VM state. */
801#define VERR_VM_UNEXPECTED_UNSTABLE_STATE (-1916)
802/** Too many arguments passed to a VM request / request corruption. */
803#define VERR_VM_REQUEST_TOO_MANY_ARGS_IPE (-1017)
804/** Fatal EMT wait error. */
805#define VERR_VM_FATAL_WAIT_ERROR (-1018)
806/** The VM request was killed at VM termination. */
807#define VERR_VM_REQUEST_KILLED (-1019)
808/** @} */
809
810
811/** @name VBox Remote Desktop Protocol (VRDP) Status Codes
812 * @{
813 */
814/** Successful completion of operation (mapped to generic iprt status code). */
815#define VINF_VRDP_SUCCESS VINF_SUCCESS
816/** VRDP transport operation timed out (mapped to generic iprt status code). */
817#define VERR_VRDP_TIMEOUT VERR_TIMEOUT
818
819/** Unsupported ISO protocol feature */
820#define VERR_VRDP_ISO_UNSUPPORTED (-2000)
821/** Security (en/decryption) engine error */
822#define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
823/** VRDP protocol violation */
824#define VERR_VRDP_PROTOCOL_ERROR (-2002)
825/** Unsupported VRDP protocol feature */
826#define VERR_VRDP_NOT_SUPPORTED (-2003)
827/** VRDP protocol violation, client sends less data than expected */
828#define VERR_VRDP_INSUFFICIENT_DATA (-2004)
829/** Internal error, VRDP packet is in wrong operation mode */
830#define VERR_VRDP_INVALID_MODE (-2005)
831/** Memory allocation failed */
832#define VERR_VRDP_NO_MEMORY (-2006)
833/** Client has been rejected */
834#define VERR_VRDP_ACCESS_DENIED (-2007)
835/** VRPD receives a packet that is not supported */
836#define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
837/** VRDP script allowed the packet to be processed further */
838#define VINF_VRDP_PROCESS_PDU 2009
839/** VRDP script has completed its task */
840#define VINF_VRDP_OPERATION_COMPLETED 2010
841/** VRDP thread has started OK and will run */
842#define VINF_VRDP_THREAD_STARTED 2011
843/** Framebuffer is resized, terminate send bitmap procedure */
844#define VINF_VRDP_RESIZE_REQUESTED 2012
845/** Output can be enabled for the client. */
846#define VINF_VRDP_OUTPUT_ENABLE 2013
847/** @} */
848
849
850/** @name Configuration Manager (CFGM) Status Codes
851 * @{
852 */
853/** The integer value was too big for the requested representation. */
854#define VERR_CFGM_INTEGER_TOO_BIG (-2100)
855/** Child node was not found. */
856#define VERR_CFGM_CHILD_NOT_FOUND (-2101)
857/** Path to child node was invalid (i.e. empty). */
858#define VERR_CFGM_INVALID_CHILD_PATH (-2102)
859/** Value not found. */
860#define VERR_CFGM_VALUE_NOT_FOUND (-2103)
861/** No parent node specified. */
862#define VERR_CFGM_NO_PARENT (-2104)
863/** No node was specified. */
864#define VERR_CFGM_NO_NODE (-2105)
865/** The value is not an integer. */
866#define VERR_CFGM_NOT_INTEGER (-2106)
867/** The value is not a zero terminated character string. */
868#define VERR_CFGM_NOT_STRING (-2107)
869/** The value is not a byte string. */
870#define VERR_CFGM_NOT_BYTES (-2108)
871/** The specified string / bytes buffer was to small. Specify a larger one and retry. */
872#define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
873/** The path of a new node contained slashs or was empty. */
874#define VERR_CFGM_INVALID_NODE_PATH (-2160)
875/** A new node couldn't be inserted because one with the same name exists. */
876#define VERR_CFGM_NODE_EXISTS (-2161)
877/** A new leaf couldn't be inserted because one with the same name exists. */
878#define VERR_CFGM_LEAF_EXISTS (-2162)
879/** An unknown config value was encountered. */
880#define VERR_CFGM_CONFIG_UNKNOWN_VALUE (-2163)
881/** An unknown config node (key) was encountered. */
882#define VERR_CFGM_CONFIG_UNKNOWN_NODE (-2164)
883/** Internal processing error \#1 in CFGM. */
884#define VERR_CFGM_IPE_1 (-2165)
885/** @} */
886
887
888/** @name Time Manager (TM) Status Codes
889 * @{
890 */
891/** The loaded timer state was incorrect. */
892#define VERR_TM_LOAD_STATE (-2200)
893/** The timer was not in the correct state for the request operation. */
894#define VERR_TM_INVALID_STATE (-2201)
895/** The timer was in a unknown state. Corruption or stupid coding error. */
896#define VERR_TM_UNKNOWN_STATE (-2202)
897/** The timer was stuck in an unstable state until we grew impatient and returned. */
898#define VERR_TM_UNSTABLE_STATE (-2203)
899/** TM requires GIP. */
900#define VERR_TM_GIP_REQUIRED (-2204)
901/** TM does not support the GIP version. */
902#define VERR_TM_GIP_VERSION (-2205)
903/** The GIP update interval is too large. */
904#define VERR_TM_GIP_UPDATE_INTERVAL_TOO_BIG (-2206)
905/** The timer has a bad clock enum value, probably corruption. */
906#define VERR_TM_TIMER_BAD_CLOCK (-2207)
907/** The timer failed to reach a stable state. */
908#define VERR_TM_TIMER_UNSTABLE_STATE (-2208)
909/** Attempt to resume a running TSC. */
910#define VERR_TM_TSC_ALREADY_TICKING (-2209)
911/** Attempt to pause a paused TSC. */
912#define VERR_TM_TSC_ALREADY_PAUSED (-2210)
913/** Invalid value for cVirtualTicking. */
914#define VERR_TM_VIRTUAL_TICKING_IPE (-2211)
915/** @} */
916
917
918/** @name Recompiled Execution Manager (REM) Status Codes
919 * @{
920 */
921/** Fatal error in virtual hardware. */
922#define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
923/** Fatal error in the recompiler cpu. */
924#define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
925/** Recompiler execution was interrupted by forced action. */
926#define VINF_REM_INTERRUPED_FF 2302
927/** Too many similar traps. This is a very useful debug only
928 * check (we don't do double/triple faults in REM). */
929#define VERR_REM_TOO_MANY_TRAPS (-2304)
930/** The REM is out of breakpoint slots. */
931#define VERR_REM_NO_MORE_BP_SLOTS (-2305)
932/** The REM could not find any breakpoint on the specified address. */
933#define VERR_REM_BP_NOT_FOUND (-2306)
934/** @} */
935
936
937/** @name Trap Manager / Monitor (TRPM) Status Codes
938 * @{
939 */
940/** No active trap. Cannot query or reset a non-existing trap. */
941#define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
942/** Active trap. Cannot assert a new trap when when one is already active. */
943#define VERR_TRPM_ACTIVE_TRAP (-2401)
944/** Reason for leaving RC: Guest tried to write to our IDT - fatal.
945 * The VM will be terminated assuming the worst, i.e. that the
946 * guest has read the idtr register. */
947#define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
948/** Reason for leaving RC: Fatal trap in hypervisor. */
949#define VERR_TRPM_DONT_PANIC (-2403)
950/** Reason for leaving RC: Double Fault. */
951#define VERR_TRPM_PANIC (-2404)
952/** The exception was dispatched for raw-mode execution. */
953#define VINF_TRPM_XCPT_DISPATCHED 2405
954/** Bad TRPM_TRAP_IN_OP. */
955#define VERR_TRPM_BAD_TRAP_IN_OP (-2406)
956/** Internal processing error \#1 in TRPM. */
957#define VERR_TRPM_IPE_1 (-2507)
958/** Internal processing error \#2 in TRPM. */
959#define VERR_TRPM_IPE_2 (-2508)
960/** Internal processing error \#3 in TRPM. */
961#define VERR_TRPM_IPE_3 (-2509)
962/** @} */
963
964
965/** @name Selector Manager / Monitor (SELM) Status Code
966 * @{
967 */
968/** Reason for leaving RC: Guest tried to write to our GDT - fatal.
969 * The VM will be terminated assuming the worst, i.e. that the
970 * guest has read the gdtr register. */
971#define VERR_SELM_SHADOW_GDT_WRITE (-2500)
972/** Reason for leaving RC: Guest tried to write to our LDT - fatal.
973 * The VM will be terminated assuming the worst, i.e. that the
974 * guest has read the ldtr register. */
975#define VERR_SELM_SHADOW_LDT_WRITE (-2501)
976/** Reason for leaving RC: Guest tried to write to our TSS - fatal.
977 * The VM will be terminated assuming the worst, i.e. that the
978 * guest has read the ltr register. */
979#define VERR_SELM_SHADOW_TSS_WRITE (-2502)
980/** Reason for leaving RC: Sync the GDT table to solve a conflict. */
981#define VINF_SELM_SYNC_GDT 2503
982/** No valid TSS present. */
983#define VERR_SELM_NO_TSS (-2504)
984/** Invalid guest LDT selector. */
985#define VERR_SELM_INVALID_LDT (-2505)
986/** The guest LDT selector is out of bounds. */
987#define VERR_SELM_LDT_OUT_OF_BOUNDS (-2506)
988/** @} */
989
990
991/** @name I/O Manager / Monitor (IOM) Status Code
992 * @{
993 */
994/** The specified I/O port range was invalid.
995 * It was either empty or it was out of bounds. */
996#define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
997/** The specified R0 or RC I/O port range didn't have a corresponding R3 range.
998 * IOMR3IOPortRegisterR3() must be called first. */
999#define VERR_IOM_NO_R3_IOPORT_RANGE (-2601)
1000/** The specified I/O port range intruded on an existing range. There is
1001 * a I/O port conflict between two device, or a device tried to register
1002 * the same range twice. */
1003#define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
1004/** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
1005#define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
1006/** The specified I/O port range was owned by some other device(s). Both registration
1007 * and deregistration, but in the first case only RC and R0 ranges. */
1008#define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
1009
1010/** The specified MMIO range was invalid.
1011 * It was either empty or it was out of bounds. */
1012#define VERR_IOM_INVALID_MMIO_RANGE (-2605)
1013/** The specified R0 or RC MMIO range didn't have a corresponding R3 range.
1014 * IOMR3MMIORegisterR3() must be called first. */
1015#define VERR_IOM_NO_R3_MMIO_RANGE (-2606)
1016/** The specified MMIO range was owned by some other device(s). Both registration
1017 * and deregistration, but in the first case only RC and R0 ranges. */
1018#define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
1019/** The specified MMIO range intruded on an existing range. There is
1020 * a MMIO conflict between two device, or a device tried to register
1021 * the same range twice. */
1022#define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
1023/** The MMIO range specified for removal was not found. */
1024#define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
1025/** The MMIO range specified for removal was invalid. The range didn't match
1026 * quite match a set of existing ranges. It's not possible to remove parts of
1027 * a MMIO range, only one or more full ranges. */
1028#define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
1029/** An invalid I/O port size was specified for a read or write operation. */
1030#define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
1031/** The MMIO handler was called for a bogus address! Internal error! */
1032#define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
1033/** The MMIO handler experienced a problem with the disassembler. */
1034#define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
1035/** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
1036#define VERR_IOM_IOPORT_UNUSED (-2614)
1037/** Unused MMIO register read, fill with 00. */
1038#define VINF_IOM_MMIO_UNUSED_00 2615
1039/** Unused MMIO register read, fill with FF. */
1040#define VINF_IOM_MMIO_UNUSED_FF 2616
1041
1042/** Reason for leaving RZ: I/O port read. */
1043#define VINF_IOM_R3_IOPORT_READ 2620
1044/** Reason for leaving RZ: I/O port write. */
1045#define VINF_IOM_R3_IOPORT_WRITE 2621
1046/** Reason for leaving RZ: MMIO write. */
1047#define VINF_IOM_R3_MMIO_READ 2623
1048/** Reason for leaving RZ: MMIO read. */
1049#define VINF_IOM_R3_MMIO_WRITE 2624
1050/** Reason for leaving RZ: MMIO read/write. */
1051#define VINF_IOM_R3_MMIO_READ_WRITE 2625
1052
1053/** IOMGCIOPortHandler was given an unexpected opcode. */
1054#define VERR_IOM_IOPORT_UNKNOWN_OPCODE (-2630)
1055/** Internal processing error \#1 in the I/O port code. */
1056#define VERR_IOM_IOPORT_IPE_1 (-2631)
1057/** Internal processing error \#2 in the I/O port code. */
1058#define VERR_IOM_IOPORT_IPE_2 (-2632)
1059/** Internal processing error \#3 in the I/O port code. */
1060#define VERR_IOM_IOPORT_IPE_3 (-2633)
1061/** Internal processing error \#1 in the MMIO code. */
1062#define VERR_IOM_MMIO_IPE_1 (-2634)
1063/** Internal processing error \#2 in the MMIO code. */
1064#define VERR_IOM_MMIO_IPE_2 (-2635)
1065/** Internal processing error \#3 in the MMIO code. */
1066#define VERR_IOM_MMIO_IPE_3 (-2636)
1067/** @} */
1068
1069
1070/** @name Virtual Machine Monitor (VMM) Status Codes
1071 * @{
1072 */
1073/** Reason for leaving RZ: Calling host function. */
1074#define VINF_VMM_CALL_HOST 2700
1075/** Reason for leaving R0: Hit a ring-0 assertion on EMT. */
1076#define VERR_VMM_RING0_ASSERTION (-2701)
1077/** The hyper CR3 differs between PGM and CPUM. */
1078#define VERR_VMM_HYPER_CR3_MISMATCH (-2702)
1079/** Reason for leaving RZ: Illegal call to ring-3. */
1080#define VERR_VMM_RING3_CALL_DISABLED (-2703)
1081/** The VMMR0.r0 module version does not match VBoxVMM.dll/so/dylib.
1082 * If you just upgraded VirtualBox, please terminate all VMs and make sure
1083 * VBoxNetDHCP is not running. Then try again. If this error persists, try
1084 * re-installing VirtualBox. */
1085#define VERR_VMM_R0_VERSION_MISMATCH (-2704)
1086/** The VMMRC.rc module version does not match VBoxVMM.dll/so/dylib.
1087 * Re-install if you are a user. Developers should make sure the build is
1088 * complete or try with a clean build. */
1089#define VERR_VMM_RC_VERSION_MISMATCH (-2705)
1090/** VMM set jump error. */
1091#define VERR_VMM_SET_JMP_ERROR (-2706)
1092/** VMM set jump stack overflow error. */
1093#define VERR_VMM_SET_JMP_STACK_OVERFLOW (-2707)
1094/** VMM set jump resume error. */
1095#define VERR_VMM_SET_JMP_ABORTED_RESUME (-2708)
1096/** VMM long jump error. */
1097#define VERR_VMM_LONG_JMP_ERROR (-2709)
1098/** Unknown ring-3 call attempted. */
1099#define VERR_VMM_UNKNOWN_RING3_CALL (-2710)
1100/** The ring-3 call didn't set an RC. */
1101#define VERR_VMM_RING3_CALL_NO_RC (-2711)
1102/** @} */
1103
1104
1105/** @name Pluggable Device and Driver Manager (PDM) Status Codes
1106 * @{
1107 */
1108/** An invalid LUN specification was given. */
1109#define VERR_PDM_NO_SUCH_LUN (-2800)
1110/** A device encountered an unknown configuration value.
1111 * This means that the device is potentially misconfigured and the device
1112 * construction or unit attachment failed because of this. */
1113#define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
1114/** The above driver doesn't export a interface required by a driver being
1115 * attached to it. Typical misconfiguration problem. */
1116#define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
1117/** The below driver doesn't export a interface required by the drive
1118 * having attached it. Typical misconfiguration problem. */
1119#define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
1120/** A device didn't find a required interface with an attached driver.
1121 * Typical misconfiguration problem. */
1122#define VERR_PDM_MISSING_INTERFACE (-2804)
1123/** A driver encountered an unknown configuration value.
1124 * This means that the driver is potentially misconfigured and the driver
1125 * construction failed because of this. */
1126#define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
1127/** The PCI bus assigned to a device didn't have room for it.
1128 * Either too many devices are configured on the same PCI bus, or there are
1129 * some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
1130#define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
1131/** A queue is out of free items, the queueing operation failed. */
1132#define VERR_PDM_NO_QUEUE_ITEMS (-2807)
1133/** Not possible to attach further drivers to the driver.
1134 * A driver which doesn't support attachments (below of course) will
1135 * return this status code if it found that further drivers were configured
1136 * to be attached to it. */
1137#define VERR_PDM_DRVINS_NO_ATTACH (-2808)
1138/** Not possible to attach drivers to the device.
1139 * A device which doesn't support attachments (below of course) will
1140 * return this status code if it found that drivers were configured
1141 * to be attached to it. */
1142#define VERR_PDM_DEVINS_NO_ATTACH (-2809)
1143/** No attached driver.
1144 * The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
1145 * this error when no driver was configured to be attached. */
1146#define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
1147/** The media geometry hasn't been set yet, so it cannot be obtained.
1148 * The caller should then calculate the geometry from the media size. */
1149#define VERR_PDM_GEOMETRY_NOT_SET (-2811)
1150/** The media translation hasn't been set yet, so it cannot be obtained.
1151 * The caller should then guess the translation. */
1152#define VERR_PDM_TRANSLATION_NOT_SET (-2812)
1153/** The media is not mounted, operation requires a mounted media. */
1154#define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
1155/** Mount failed because a media was already mounted. Unmount the media
1156 * and retry the mount. */
1157#define VERR_PDM_MEDIA_MOUNTED (-2814)
1158/** The media is locked and cannot be unmounted. */
1159#define VERR_PDM_MEDIA_LOCKED (-2815)
1160/** No 'Type' attribute in the DrvBlock configuration.
1161 * Misconfiguration. */
1162#define VERR_PDM_BLOCK_NO_TYPE (-2816)
1163/** The 'Type' attribute in the DrvBlock configuration had an unknown value.
1164 * Misconfiguration. */
1165#define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
1166/** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
1167 * Misconfiguration. */
1168#define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
1169/** The block driver type wasn't supported.
1170 * Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
1171#define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
1172/** A attach or prepare mount call failed because the driver already
1173 * had a driver attached. */
1174#define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
1175/** An attempt on deattaching a driver without anyone actually being attached, or
1176 * performing any other operation on an attached driver. */
1177#define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
1178/** The attached driver configuration is missing the 'Driver' attribute. */
1179#define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
1180/** The configured driver wasn't found.
1181 * Either the necessary driver modules wasn't loaded, the name was
1182 * misspelled, or it was a misconfiguration. */
1183#define VERR_PDM_DRIVER_NOT_FOUND (-2823)
1184/** The Ring-3 module was already loaded. */
1185#define VINF_PDM_ALREADY_LOADED (2824)
1186/** The name of the module clashed with an existing module. */
1187#define VERR_PDM_MODULE_NAME_CLASH (-2825)
1188/** Couldn't find any export for registration of drivers/devices. */
1189#define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
1190/** A module name is too long. */
1191#define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
1192/** Driver name clash. Another driver with the same name as the
1193 * one begin registred exists. */
1194#define VERR_PDM_DRIVER_NAME_CLASH (-2828)
1195/** The version of the driver registration structure is unknown
1196 * to this VBox version. Either mixing incompatible versions or
1197 * the structure isn't correctly initialized. */
1198#define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
1199/** Invalid entry in the driver registration structure. */
1200#define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
1201/** Invalid host bit mask. */
1202#define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
1203/** Not possible to detach a driver because the above driver/device
1204 * doesn't support it. The above entity doesn't implement the pfnDetach call. */
1205#define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
1206/** No PCI Bus is available to register the device with. This is usually a
1207 * misconfiguration or in rare cases a buggy pci device. */
1208#define VERR_PDM_NO_PCI_BUS (-2833)
1209/** The device is not a registered PCI device and thus cannot
1210 * perform any PCI operations. The device forgot to register it self. */
1211#define VERR_PDM_NOT_PCI_DEVICE (-2834)
1212
1213/** The version of the device registration structure is unknown
1214 * to this VBox version. Either mixing incompatible versions or
1215 * the structure isn't correctly initialized. */
1216#define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
1217/** Invalid entry in the device registration structure. */
1218#define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
1219/** Invalid host bit mask. */
1220#define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
1221/** The guest bit mask didn't match the guest being loaded. */
1222#define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
1223/** Device name clash. Another device with the same name as the
1224 * one begin registred exists. */
1225#define VERR_PDM_DEVICE_NAME_CLASH (-2839)
1226/** The device wasn't found. There was no registered device
1227 * by that name. */
1228#define VERR_PDM_DEVICE_NOT_FOUND (-2840)
1229/** The device instance was not found. */
1230#define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
1231/** The device instance have no base interface. */
1232#define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
1233/** The device instance have no such logical unit. */
1234#define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
1235/** The driver instance could not be found. */
1236#define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
1237/** Logical Unit was not found. */
1238#define VERR_PDM_LUN_NOT_FOUND (-2845)
1239/** The Logical Unit was found, but it had no driver attached to it. */
1240#define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
1241/** The Logical Unit was found, but it had no driver attached to it. */
1242#define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
1243/** No PIC device instance is registered with the current VM and thus
1244 * the PIC operation cannot be performed. */
1245#define VERR_PDM_NO_PIC_INSTANCE (-2847)
1246/** No APIC device instance is registered with the current VM and thus
1247 * the APIC operation cannot be performed. */
1248#define VERR_PDM_NO_APIC_INSTANCE (-2848)
1249/** No DMAC device instance is registered with the current VM and thus
1250 * the DMA operation cannot be performed. */
1251#define VERR_PDM_NO_DMAC_INSTANCE (-2849)
1252/** No RTC device instance is registered with the current VM and thus
1253 * the RTC or CMOS operation cannot be performed. */
1254#define VERR_PDM_NO_RTC_INSTANCE (-2850)
1255/** Unable to open the host interface due to a sharing violation . */
1256#define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
1257/** Unable to open the host interface. */
1258#define VERR_PDM_HIF_OPEN_FAILED (-2852)
1259/** The device doesn't support runtime driver attaching.
1260 * The PDMDEVREG::pfnAttach callback function is NULL. */
1261#define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
1262/** The driver doesn't support runtime driver attaching.
1263 * The PDMDRVREG::pfnAttach callback function is NULL. */
1264#define VERR_PDM_DRIVER_NO_RT_ATTACH (-2854)
1265/** Invalid host interface version. */
1266#define VERR_PDM_HIF_INVALID_VERSION (-2855)
1267
1268/** The version of the USB device registration structure is unknown
1269 * to this VBox version. Either mixing incompatible versions or
1270 * the structure isn't correctly initialized. */
1271#define VERR_PDM_UNKNOWN_USBREG_VERSION (-2856)
1272/** Invalid entry in the device registration structure. */
1273#define VERR_PDM_INVALID_USB_REGISTRATION (-2857)
1274/** Driver name clash. Another driver with the same name as the
1275 * one begin registred exists. */
1276#define VERR_PDM_USB_NAME_CLASH (-2858)
1277/** The USB hub is already registered. */
1278#define VERR_PDM_USB_HUB_EXISTS (-2859)
1279/** Couldn't find any USB hubs to attach the device to. */
1280#define VERR_PDM_NO_USB_HUBS (-2860)
1281/** Couldn't find any free USB ports to attach the device to. */
1282#define VERR_PDM_NO_USB_PORTS (-2861)
1283/** Couldn't find the USB Proxy device. Using OSE? */
1284#define VERR_PDM_NO_USBPROXY (-2862)
1285/** The async completion template is still used. */
1286#define VERR_PDM_ASYNC_TEMPLATE_BUSY (-2863)
1287/** The async completion task is already suspended. */
1288#define VERR_PDM_ASYNC_COMPLETION_ALREADY_SUSPENDED (-2864)
1289/** The async completion task is not suspended. */
1290#define VERR_PDM_ASYNC_COMPLETION_NOT_SUSPENDED (-2865)
1291/** The driver properties were invalid, and as a consequence construction
1292 * failed. Caused my unusable media or similar problems. */
1293#define VERR_PDM_DRIVER_INVALID_PROPERTIES (-2866)
1294/** Too many instances of a device. */
1295#define VERR_PDM_TOO_MANY_DEVICE_INSTANCES (-2867)
1296/** Too many instances of a driver. */
1297#define VERR_PDM_TOO_MANY_DRIVER_INSTANCES (-2868)
1298/** Too many instances of a usb device. */
1299#define VERR_PDM_TOO_MANY_USB_DEVICE_INSTANCES (-2869)
1300/** Too many instances of a usb device. */
1301#define VERR_PDM_TOO_MANY_USB_DEVICE_INSTANCES (-2869)
1302/** The device instance structure version has changed.
1303 *
1304 * If you have upgraded VirtualBox recently, please make sure you have
1305 * terminated all VMs and upgraded any extension packs. If this error
1306 * persists, try re-installing VirtualBox. */
1307#define VERR_PDM_DEVINS_VERSION_MISMATCH (-2870)
1308/** The device helper structure version has changed.
1309 *
1310 * If you have upgraded VirtualBox recently, please make sure you have
1311 * terminated all VMs and upgraded any extension packs. If this error
1312 * persists, try re-installing VirtualBox. */
1313#define VERR_PDM_DEVHLPR3_VERSION_MISMATCH (-2871)
1314/** The USB device instance structure version has changed.
1315 *
1316 * If you have upgraded VirtualBox recently, please make sure you have
1317 * terminated all VMs and upgraded any extension packs. If this error
1318 * persists, try re-installing VirtualBox. */
1319#define VERR_PDM_USBINS_VERSION_MISMATCH (-2872)
1320/** The USB device helper structure version has changed.
1321 *
1322 * If you have upgraded VirtualBox recently, please make sure you have
1323 * terminated all VMs and upgraded any extension packs. If this error
1324 * persists, try re-installing VirtualBox. */
1325#define VERR_PDM_USBHLPR3_VERSION_MISMATCH (-2873)
1326/** The driver instance structure version has changed.
1327 *
1328 * If you have upgraded VirtualBox recently, please make sure you have
1329 * terminated all VMs and upgraded any extension packs. If this error
1330 * persists, try re-installing VirtualBox. */
1331#define VERR_PDM_DRVINS_VERSION_MISMATCH (-2874)
1332/** The driver helper structure version has changed.
1333 *
1334 * If you have upgraded VirtualBox recently, please make sure you have
1335 * terminated all VMs and upgraded any extension packs. If this error
1336 * persists, try re-installing VirtualBox. */
1337#define VERR_PDM_DRVHLPR3_VERSION_MISMATCH (-2875)
1338/** Generic device structure version mismatch.
1339 *
1340 * If you have upgraded VirtualBox recently, please make sure you have
1341 * terminated all VMs and upgraded any extension packs. If this error
1342 * persists, try re-installing VirtualBox. */
1343#define VERR_PDM_DEVICE_VERSION_MISMATCH (-2876)
1344/** Generic USB device structure version mismatch.
1345 *
1346 * If you have upgraded VirtualBox recently, please make sure you have
1347 * terminated all VMs and upgraded any extension packs. If this error
1348 * persists, try re-installing VirtualBox. */
1349#define VERR_PDM_USBDEV_VERSION_MISMATCH (-2877)
1350/** Generic driver structure version mismatch.
1351 *
1352 * If you have upgraded VirtualBox recently, please make sure you have
1353 * terminated all VMs and upgraded any extension packs. If this error
1354 * persists, try re-installing VirtualBox. */
1355#define VERR_PDM_DRIVER_VERSION_MISMATCH (-2878)
1356/** PDMVMMDevHeapR3ToGCPhys failure. */
1357#define VERR_PDM_DEV_HEAP_R3_TO_GCPHYS (-2879)
1358/** A legacy device isn't implementing the HPET notification interface. */
1359#define VERR_PDM_HPET_LEGACY_NOTIFY_MISSING (-2880)
1360/** Internal processing error in the critical section code. */
1361#define VERR_PDM_CRITSECT_IPE (-2881)
1362/** The critical section being deleted was not found. */
1363#define VERR_PDM_CRITSECT_NOT_FOUND (-2882)
1364/** A PDMThread API was called by the wrong thread. */
1365#define VERR_PDM_THREAD_INVALID_CALLER (-2883)
1366/** Internal processing error \#1 in the PDM Thread code. */
1367#define VERR_PDM_THREAD_IPE_1 (-2884)
1368/** Internal processing error \#2 in the PDM Thread code. */
1369#define VERR_PDM_THREAD_IPE_2 (-2885)
1370/** Only one PCI function is supported per PDM device. */
1371#define VERR_PDM_ONE_PCI_FUNCTION_PER_DEVICE (-2886)
1372/** Bad PCI configuration. */
1373#define VERR_PDM_BAD_PCI_CONFIG (-2887)
1374/** Internal processing error # in the PDM device code. */
1375#define VERR_PDM_DEV_IPE_1 (-2888)
1376/** Misconfigured driver chain transformation. */
1377#define VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION (-2889)
1378/** The driver is already removed, not more transformations possible (at
1379 * present). */
1380#define VERR_PDM_CANNOT_TRANSFORM_REMOVED_DRIVER (-2890)
1381/** @} */
1382
1383
1384/** @name Host-Guest Communication Manager (HGCM) Status Codes
1385 * @{
1386 */
1387/** Requested service does not exist. */
1388#define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
1389/** Service rejected client connection */
1390#define VINF_HGCM_CLIENT_REJECTED 2901
1391/** Command address is invalid. */
1392#define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
1393/** Service will execute the command in background. */
1394#define VINF_HGCM_ASYNC_EXECUTE 2903
1395/** HGCM could not perform requested operation because of an internal error. */
1396#define VERR_HGCM_INTERNAL (-2904)
1397/** Invalid HGCM client id. */
1398#define VERR_HGCM_INVALID_CLIENT_ID (-2905)
1399/** The HGCM is saving state. */
1400#define VINF_HGCM_SAVE_STATE (2906)
1401/** Requested service already exists. */
1402#define VERR_HGCM_SERVICE_EXISTS (-2907)
1403
1404/** @} */
1405
1406
1407/** @name Network Address Translation Driver (DrvNAT) Status Codes
1408 * @{
1409 */
1410/** Failed to find the DNS configured for this machine. */
1411#define VINF_NAT_DNS 3000
1412/** Failed to convert the specified Guest IP to a binary IP address.
1413 * Malformed input. */
1414#define VERR_NAT_REDIR_GUEST_IP (-3001)
1415/** Failed while setting up a redirector rule.
1416 * There probably is a conflict between the rule and some existing
1417 * service on the computer. */
1418#define VERR_NAT_REDIR_SETUP (-3002)
1419/** @} */
1420
1421
1422/** @name HostIF Driver (DrvTUN) Status Codes
1423 * @{
1424 */
1425/** The Host Interface Networking init program failed. */
1426#define VERR_HOSTIF_INIT_FAILED (-3100)
1427/** The Host Interface Networking device name is too long. */
1428#define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
1429/** The Host Interface Networking name config IOCTL call failed. */
1430#define VERR_HOSTIF_IOCTL (-3102)
1431/** Failed to make the Host Interface Networking handle non-blocking. */
1432#define VERR_HOSTIF_BLOCKING (-3103)
1433/** If a Host Interface Networking filehandle was specified it's not allowed to
1434 * have any init or term programs. */
1435#define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
1436/** The Host Interface Networking terminate program failed. */
1437#define VERR_HOSTIF_TERM_FAILED (-3105)
1438/** @} */
1439
1440
1441/** @name VBox HDD Container (VD) Status Codes
1442 * @{
1443 */
1444/** Invalid image type. */
1445#define VERR_VD_INVALID_TYPE (-3200)
1446/** Operation can't be done in current HDD container state. */
1447#define VERR_VD_INVALID_STATE (-3201)
1448/** Configuration value not found. */
1449#define VERR_VD_VALUE_NOT_FOUND (-3202)
1450/** Virtual HDD is not opened. */
1451#define VERR_VD_NOT_OPENED (-3203)
1452/** Requested image is not opened. */
1453#define VERR_VD_IMAGE_NOT_FOUND (-3204)
1454/** Image is read-only. */
1455#define VERR_VD_IMAGE_READ_ONLY (-3205)
1456/** Geometry hasn't been set. */
1457#define VERR_VD_GEOMETRY_NOT_SET (-3206)
1458/** No data for this block in image. */
1459#define VERR_VD_BLOCK_FREE (-3207)
1460/** Differencing and parent images can't be used together due to UUID. */
1461#define VERR_VD_UUID_MISMATCH (-3208)
1462/** Asynchronous I/O request finished. */
1463#define VINF_VD_ASYNC_IO_FINISHED 3209
1464/** Asynchronous I/O is not finished yet. */
1465#define VERR_VD_ASYNC_IO_IN_PROGRESS (-3210)
1466/** The image is too small or too large for this format. */
1467#define VERR_VD_INVALID_SIZE (-3211)
1468/** Generic: Invalid image file header. Use this for plugins. */
1469#define VERR_VD_GEN_INVALID_HEADER (-3220)
1470/** VDI: Invalid image file header. */
1471#define VERR_VD_VDI_INVALID_HEADER (-3230)
1472/** VDI: Invalid image file header: invalid signature. */
1473#define VERR_VD_VDI_INVALID_SIGNATURE (-3231)
1474/** VDI: Invalid image file header: invalid version. */
1475#define VERR_VD_VDI_UNSUPPORTED_VERSION (-3232)
1476/** Comment string is too long. */
1477#define VERR_VD_VDI_COMMENT_TOO_LONG (-3233)
1478/** VMDK: Invalid image file header. */
1479#define VERR_VD_VMDK_INVALID_HEADER (-3240)
1480/** VMDK: Invalid image file header: invalid version. */
1481#define VERR_VD_VMDK_UNSUPPORTED_VERSION (-3241)
1482/** VMDK: Image property not found. */
1483#define VERR_VD_VMDK_VALUE_NOT_FOUND (-3242)
1484/** VMDK: Operation can't be done in current image state. */
1485#define VERR_VD_VMDK_INVALID_STATE (-3243)
1486/** VMDK: Format is invalid/inconsistent. */
1487#define VERR_VD_VMDK_INVALID_FORMAT (-3244)
1488/** VMDK: Invalid write position. */
1489#define VERR_VD_VMDK_INVALID_WRITE (-3245)
1490/** iSCSI: Invalid header, i.e. dummy for validity check. */
1491#define VERR_VD_ISCSI_INVALID_HEADER (-3250)
1492/** iSCSI: Configuration value is unknown. This indicates misconfiguration. */
1493#define VERR_VD_ISCSI_UNKNOWN_CFG_VALUES (-3251)
1494/** iSCSI: Interface is unknown. This indicates misconfiguration. */
1495#define VERR_VD_ISCSI_UNKNOWN_INTERFACE (-3252)
1496/** iSCSI: Operation can't be done in current image state. */
1497#define VERR_VD_ISCSI_INVALID_STATE (-3253)
1498/** iSCSI: Invalid device type (not a disk). */
1499#define VERR_VD_ISCSI_INVALID_TYPE (-3254)
1500/** VHD: Invalid image file header. */
1501#define VERR_VD_VHD_INVALID_HEADER (-3260)
1502/** Parallels HDD: Invalid image file header. */
1503#define VERR_VD_PARALLELS_INVALID_HEADER (-3265)
1504/** DMG: Invalid image file header. */
1505#define VERR_VD_DMG_INVALID_HEADER (-3267)
1506/** Raw: Invalid image file header. */
1507#define VERR_VD_RAW_INVALID_HEADER (-3270)
1508/** Raw: Invalid image file type. */
1509#define VERR_VD_RAW_INVALID_TYPE (-3271)
1510/** The backend needs more metadata before it can continue. */
1511#define VERR_VD_NOT_ENOUGH_METADATA (-3272)
1512/** Halt the current I/O context until further notification from the backend. */
1513#define VERR_VD_IOCTX_HALT (-3273)
1514/** The disk has a cache attached already. */
1515#define VERR_VD_CACHE_ALREADY_EXISTS (-3274)
1516/** There is no cache attached to the disk. */
1517#define VERR_VD_CACHE_NOT_FOUND (-3275)
1518/** The cache is not up to date with the image. */
1519#define VERR_VD_CACHE_NOT_UP_TO_DATE (-3276)
1520/** The given range does not meet the required alignment. */
1521#define VERR_VD_DISCARD_ALIGNMENT_NOT_MET (-3277)
1522/** The discard operation is not supported for this image. */
1523#define VERR_VD_DISCARD_NOT_SUPPORTED (-3278)
1524/** The image is the correct format but is corrupted. */
1525#define VERR_VD_IMAGE_CORRUPTED (-3279)
1526/** Repairing the image is not supported. */
1527#define VERR_VD_IMAGE_REPAIR_NOT_SUPPORTED (-3280)
1528/** Repairing the image is not possible because the corruption is to severe. */
1529#define VERR_VD_IMAGE_REPAIR_IMPOSSIBLE (-3281)
1530/** @} */
1531
1532
1533/** @name VBox Guest Library (VBGL) Status Codes
1534 * @{
1535 */
1536/** Library was not initialized. */
1537#define VERR_VBGL_NOT_INITIALIZED (-3300)
1538/** Virtual address was not allocated by the library. */
1539#define VERR_VBGL_INVALID_ADDR (-3301)
1540/** IOCtl to VBoxGuest driver failed. */
1541#define VERR_VBGL_IOCTL_FAILED (-3302)
1542/** @} */
1543
1544
1545/** @name VBox USB (VUSB) Status Codes
1546 * @{
1547 */
1548/** No available ports on the hub.
1549 * This error is returned when a device is attempted created and/or attached
1550 * to a hub which is out of ports. */
1551#define VERR_VUSB_NO_PORTS (-3400)
1552/** The requested operation cannot be performed on a detached USB device. */
1553#define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
1554/** Failed to allocate memory for a URB. */
1555#define VERR_VUSB_NO_URB_MEMORY (-3402)
1556/** General failure during URB queuing.
1557 * This will go away when the queueing gets proper status code handling. */
1558#define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
1559/** Device creation failed because the USB device name was not found. */
1560#define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
1561/** Not permitted to open the USB device.
1562 * The user doesn't have access to the device in the usbfs, check the mount options. */
1563#define VERR_VUSB_USBFS_PERMISSION (-3405)
1564/** The requested operation cannot be performed because the device
1565 * is currently being reset. */
1566#define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
1567/** The requested operation cannot be performed because the device
1568 * is currently suspended. */
1569#define VERR_VUSB_DEVICE_IS_SUSPENDED (-3407)
1570/** Not permitted to open the USB device.
1571 * The user doesn't have access to the device node, check group memberships. */
1572#define VERR_VUSB_USB_DEVICE_PERMISSION (-3408)
1573/** @} */
1574
1575
1576/** @name VBox VGA Status Codes
1577 * @{
1578 */
1579/** One of the custom modes was incorrect.
1580 * The format or bit count of the custom mode value is invalid. */
1581#define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
1582/** The display connector is resizing. */
1583#define VINF_VGA_RESIZE_IN_PROGRESS (3501)
1584/** @} */
1585
1586
1587/** @name Internal Networking Status Codes
1588 * @{
1589 */
1590/** The networking interface to filter was not found. */
1591#define VERR_INTNET_FLT_IF_NOT_FOUND (-3600)
1592/** The networking interface to filter was busy (used by someone). */
1593#define VERR_INTNET_FLT_IF_BUSY (-3601)
1594/** Failed to create or connect to a networking interface filter. */
1595#define VERR_INTNET_FLT_IF_FAILED (-3602)
1596/** The network already exists with a different trunk configuration. */
1597#define VERR_INTNET_INCOMPATIBLE_TRUNK (-3603)
1598/** The network already exists with a different security profile (restricted / public). */
1599#define VERR_INTNET_INCOMPATIBLE_FLAGS (-3604)
1600/** Failed to create a virtual network interface instance. */
1601#define VERR_INTNET_FLT_VNIC_CREATE_FAILED (-3605)
1602/** @} */
1603
1604
1605/** @name Support Driver Status Codes
1606 * @{
1607 */
1608/** The component factory was not found. */
1609#define VERR_SUPDRV_COMPONENT_NOT_FOUND (-3700)
1610/** The component factories do not support the requested interface. */
1611#define VERR_SUPDRV_INTERFACE_NOT_SUPPORTED (-3701)
1612/** The service module was not found. */
1613#define VERR_SUPDRV_SERVICE_NOT_FOUND (-3702)
1614/** The host kernel is too old. */
1615#define VERR_SUPDRV_KERNEL_TOO_OLD_FOR_VTX (-3703)
1616/** @} */
1617
1618
1619/** @name Support Library Status Codes
1620 * @{
1621 */
1622/** The specified path was not absolute (hardening). */
1623#define VERR_SUPLIB_PATH_NOT_ABSOLUTE (-3750)
1624/** The specified path was not clean (hardening). */
1625#define VERR_SUPLIB_PATH_NOT_CLEAN (-3751)
1626/** The specified path is too long (hardening). */
1627#define VERR_SUPLIB_PATH_TOO_LONG (-3752)
1628/** The specified path is too short (hardening). */
1629#define VERR_SUPLIB_PATH_TOO_SHORT (-3753)
1630/** The specified path has too many components (hardening). */
1631#define VERR_SUPLIB_PATH_TOO_MANY_COMPONENTS (-3754)
1632/** The specified path is a root path (hardening). */
1633#define VERR_SUPLIB_PATH_IS_ROOT (-3755)
1634/** Failed to enumerate directory (hardening). */
1635#define VERR_SUPLIB_DIR_ENUM_FAILED (-3756)
1636/** Failed to stat a file/dir during enumeration (hardening). */
1637#define VERR_SUPLIB_STAT_ENUM_FAILED (-3757)
1638/** Failed to stat a file/dir (hardening). */
1639#define VERR_SUPLIB_STAT_FAILED (-3758)
1640/** Failed to fstat a native handle (hardening). */
1641#define VERR_SUPLIB_FSTAT_FAILED (-3759)
1642/** Found an illegal symbolic link (hardening). */
1643#define VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED (-3760)
1644/** Found something which isn't a file nor a directory (hardening). */
1645#define VERR_SUPLIB_NOT_DIR_NOT_FILE (-3761)
1646/** The specified path is a directory and not a file (hardening). */
1647#define VERR_SUPLIB_IS_DIRECTORY (-3762)
1648/** The specified path is a file and not a directory (hardening). */
1649#define VERR_SUPLIB_IS_FILE (-3763)
1650/** The path is not the same object as the native handle (hardening). */
1651#define VERR_SUPLIB_NOT_SAME_OBJECT (-3764)
1652/** The owner is not root (hardening). */
1653#define VERR_SUPLIB_OWNER_NOT_ROOT (-3765)
1654/** The group is a non-system group and it has write access (hardening). */
1655#define VERR_SUPLIB_WRITE_NON_SYS_GROUP (-3766)
1656/** The file or directory is world writable (hardening). */
1657#define VERR_SUPLIB_WORLD_WRITABLE (-3767)
1658/** The argv[0] of an internal application does not match the executable image
1659 * path (hardening). */
1660#define VERR_SUPLIB_INVALID_ARGV0_INTERNAL (-3768)
1661/** The internal application does not reside in the correct place (hardening). */
1662#define VERR_SUPLIB_INVALID_INTERNAL_APP_DIR (-3769)
1663/** @} */
1664
1665
1666/** @name VBox GMM Status Codes
1667 * @{
1668 */
1669/** The GMM is out of pages and needs to be give another chunk of user memory that
1670 * it can lock down and borrow pages from. */
1671#define VERR_GMM_SEED_ME (-3800)
1672/** Unable to allocate more pages from the host system. */
1673#define VERR_GMM_OUT_OF_MEMORY (-3801)
1674/** Hit the global allocation limit.
1675 * If you know there is still sufficient memory available, try raising the limit. */
1676#define VERR_GMM_HIT_GLOBAL_LIMIT (-3802)
1677/** Hit the a VM account limit. */
1678#define VERR_GMM_HIT_VM_ACCOUNT_LIMIT (-3803)
1679/** Attempt to free more memory than what was previously allocated. */
1680#define VERR_GMM_ATTEMPT_TO_FREE_TOO_MUCH (-3804)
1681/** Attempted to report too many pages as deflated. */
1682#define VERR_GMM_ATTEMPT_TO_DEFLATE_TOO_MUCH (-3805)
1683/** The page to be freed or updated was not found. */
1684#define VERR_GMM_PAGE_NOT_FOUND (-3806)
1685/** The specified shared page was not actually private. */
1686#define VERR_GMM_PAGE_NOT_PRIVATE (-3807)
1687/** The specified shared page was not actually shared. */
1688#define VERR_GMM_PAGE_NOT_SHARED (-3808)
1689/** The page to be freed was already freed. */
1690#define VERR_GMM_PAGE_ALREADY_FREE (-3809)
1691/** The page to be updated or freed was noted owned by the caller. */
1692#define VERR_GMM_NOT_PAGE_OWNER (-3810)
1693/** The specified chunk was not found. */
1694#define VERR_GMM_CHUNK_NOT_FOUND (-3811)
1695/** The chunk has already been mapped into the process. */
1696#define VERR_GMM_CHUNK_ALREADY_MAPPED (-3812)
1697/** The chunk to be unmapped isn't actually mapped into the process. */
1698#define VERR_GMM_CHUNK_NOT_MAPPED (-3813)
1699/** The chunk has been mapped too many times already (impossible). */
1700#define VERR_GMM_TOO_MANY_CHUNK_MAPPINGS (-3814)
1701/** The reservation or reservation update was declined - too many VMs, too
1702 * little memory, and/or too low GMM configuration. */
1703#define VERR_GMM_MEMORY_RESERVATION_DECLINED (-3815)
1704/** A GMM sanity check failed. */
1705#define VERR_GMM_IS_NOT_SANE (-3816)
1706/** Inserting a new chunk failed. */
1707#define VERR_GMM_CHUNK_INSERT (-3817)
1708/** Failed to obtain the GMM instance. */
1709#define VERR_GMM_INSTANCE (-3818)
1710/** Bad mutex semaphore flags. */
1711#define VERR_GMM_MTX_FLAGS (-3819)
1712/** Internal processing error in the page allocator. */
1713#define VERR_GMM_ALLOC_PAGES_IPE (-3820)
1714/** Invalid page count given to GMMR3FreePagesPerform. */
1715#define VERR_GMM_ACTUAL_PAGES_IPE (-3821)
1716/** The shared module name is too long. */
1717#define VERR_GMM_MODULE_NAME_TOO_LONG (-3822)
1718/** The shared module version string is too long. */
1719#define VERR_GMM_MODULE_VERSION_TOO_LONG (-3823)
1720/** The shared module has too many regions. */
1721#define VERR_GMM_TOO_MANY_REGIONS (-3824)
1722/** The guest has reported too many modules. */
1723#define VERR_GMM_TOO_MANY_PER_VM_MODULES (-3825)
1724/** The guest has reported too many modules. */
1725#define VERR_GMM_TOO_MANY_GLOBAL_MODULES (-3826)
1726/** The shared module is already registered. */
1727#define VINF_GMM_SHARED_MODULE_ALREADY_REGISTERED (3827)
1728/** The shared module clashed address wise with a previously registered
1729 * module. */
1730#define VERR_GMM_SHARED_MODULE_ADDRESS_CLASH (-3828)
1731/** The shared module was not found. */
1732#define VERR_GMM_SHARED_MODULE_NOT_FOUND (-3829)
1733/** The size of the shared module was out of range. */
1734#define VERR_GMM_BAD_SHARED_MODULE_SIZE (-3830)
1735/** The size of the one or more regions in the shared module was out of
1736 * range. */
1737#define VERR_GMM_SHARED_MODULE_BAD_REGIONS_SIZE (-3831)
1738/** @} */
1739
1740
1741/** @name VBox GVM Status Codes
1742 * @{
1743 */
1744/** The GVM is out of VM handle space. */
1745#define VERR_GVM_TOO_MANY_VMS (-3900)
1746/** The EMT was not blocked at the time of the call. */
1747#define VINF_GVM_NOT_BLOCKED 3901
1748/** The EMT was not busy running guest code at the time of the call. */
1749#define VINF_GVM_NOT_BUSY_IN_GC 3902
1750/** RTThreadYield was called during a GVMMR0SchedPoll call. */
1751#define VINF_GVM_YIELDED 3903
1752/** @} */
1753
1754
1755/** @name VBox VMX Status Codes
1756 * @{
1757 */
1758/** Invalid VMCS index or write to read-only element. */
1759#define VERR_VMX_INVALID_VMCS_FIELD (-4000)
1760/** Invalid VMCS pointer. */
1761#define VERR_VMX_INVALID_VMCS_PTR (-4001)
1762/** Invalid VMXON pointer. */
1763#define VERR_VMX_INVALID_VMXON_PTR (-4002)
1764/** Generic VMX failure. */
1765#define VERR_VMX_GENERIC (-4003)
1766/** Invalid CPU mode for VMX execution. */
1767#define VERR_VMX_UNSUPPORTED_MODE (-4004)
1768/** Unable to start VM execution. */
1769#define VERR_VMX_UNABLE_TO_START_VM (-4005)
1770/** Unable to resume VM execution. */
1771#define VERR_VMX_UNABLE_TO_RESUME_VM (-4006)
1772/** Unable to switch due to invalid host state. */
1773#define VERR_VMX_INVALID_HOST_STATE (-4007)
1774/** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */
1775#define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4008)
1776/** VMX CPU extension not available */
1777#define VERR_VMX_NO_VMX (-4009)
1778/** VMXON failed; possibly because it was already run before */
1779#define VERR_VMX_VMXON_FAILED (-4010)
1780/** CPU was incorrectly left in VMX root mode; incompatible with VirtualBox */
1781#define VERR_VMX_IN_VMX_ROOT_MODE (-4011)
1782/** Somebody cleared X86_CR4_VMXE in the CR4 register. */
1783#define VERR_VMX_X86_CR4_VMXE_CLEARED (-4012)
1784/** VT-x features locked or unavailable in MSR. */
1785#define VERR_VMX_MSR_LOCKED_OR_DISABLED (-4013)
1786/** Unable to switch due to invalid guest state. */
1787#define VERR_VMX_INVALID_GUEST_STATE (-4014)
1788/** Unexpected VM exit code. */
1789#define VERR_VMX_UNEXPECTED_EXIT_CODE (-4015)
1790/** Unexpected VM exception code. */
1791#define VERR_VMX_UNEXPECTED_EXCEPTION (-4016)
1792/** Unexpected interruption exit code. */
1793#define VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_CODE (-4017)
1794/** CPU is not in VMX root mode; unexpected when leaving VMX root mode */
1795#define VERR_VMX_NOT_IN_VMX_ROOT_MODE (-4018)
1796/** @} */
1797
1798
1799/** @name VBox SVM Status Codes
1800 * @{
1801 */
1802/** Unable to start VM execution. */
1803#define VERR_SVM_UNABLE_TO_START_VM (-4050)
1804/** AMD-V bit not set in K6_EFER MSR */
1805#define VERR_SVM_ILLEGAL_EFER_MSR (-4051)
1806/** AMD-V CPU extension not available. */
1807#define VERR_SVM_NO_SVM (-4052)
1808/** AMD-V CPU extension disabled (by BIOS). */
1809#define VERR_SVM_DISABLED (-4053)
1810/** AMD-V CPU extension in-use. */
1811#define VERR_SVM_IN_USE (-4054)
1812/** @} */
1813
1814
1815/** @name VBox HWACCM Status Codes
1816 * @{
1817 */
1818/** Unable to start VM execution. */
1819#define VERR_HWACCM_UNKNOWN_CPU (-4100)
1820/** No CPUID support. */
1821#define VERR_HWACCM_NO_CPUID (-4101)
1822/** Host is about to go into suspend mode. */
1823#define VERR_HWACCM_SUSPEND_PENDING (-4102)
1824/** Conflicting CFGM values. */
1825#define VERR_HWACCM_CONFIG_MISMATCH (-4103)
1826/** Internal processing error in the HM init code. */
1827#define VERR_HM_ALREADY_ENABLED_IPE (-4104)
1828/** Unexpected MSR in the load / restore list. */
1829#define VERR_HM_UNEXPECTED_LD_ST_MSR (-4105)
1830/** No 32-bit to 64-bit switcher in place. */
1831#define VERR_HM_NO_32_TO_64_SWITCHER (-4106)
1832/** Invalid pVMCB. */
1833#define VERR_HMSVM_INVALID_PVMCB (-4107)
1834/** Unexpected SVM exit. */
1835#define VERR_HMSVM_UNEXPECTED_EXIT (-4108)
1836/** Unexpected SVM exception exit. */
1837#define VERR_HMSVM_UNEXPECTED_XCPT_EXIT (-4109)
1838/** Unexpected SVM patch type. */
1839#define VERR_HMSVM_UNEXPECTED_PATCH_TYPE (-4110)
1840/** HWACCMR0Leave was called on the wrong CPU. */
1841#define VERR_HM_WRONG_CPU_1 (-4111)
1842/** Internal processing error \#1 in the HM code. */
1843#define VERR_HM_IPE_1 (-4112)
1844/** Internal processing error \#2 in the HM code. */
1845#define VERR_HM_IPE_2 (-4113)
1846/** Wrong 32/64-bit switcher. */
1847#define VERR_HM_WRONG_SWITCHER (-4114)
1848/** Unknown I/O instruction. */
1849#define VERR_HM_UNKNOWN_IO_INSTRUCTION (-4115)
1850/** @} */
1851
1852
1853/** @name VBox Disassembler Status Codes
1854 * @{
1855 */
1856/** Invalid opcode byte(s) */
1857#define VERR_DIS_INVALID_OPCODE (-4200)
1858/** Generic failure during disassembly. */
1859#define VERR_DIS_GEN_FAILURE (-4201)
1860/** @} */
1861
1862
1863/** @name VBox Webservice Status Codes
1864 * @{
1865 */
1866/** Authentication failed (ISessionManager::logon()) */
1867#define VERR_WEB_NOT_AUTHENTICATED (-4300)
1868/** Invalid format of managed object reference */
1869#define VERR_WEB_INVALID_MANAGED_OBJECT_REFERENCE (-4301)
1870/** Invalid session ID in managed object reference */
1871#define VERR_WEB_INVALID_SESSION_ID (-4302)
1872/** Invalid object ID in managed object reference */
1873#define VERR_WEB_INVALID_OBJECT_ID (-4303)
1874/** Unsupported interface for managed object reference */
1875#define VERR_WEB_UNSUPPORTED_INTERFACE (-4304)
1876/** @} */
1877
1878
1879/** @name VBox PARAV Status Codes
1880 * @{
1881 */
1882/** Switch back to host */
1883#define VINF_PARAV_SWITCH_TO_HOST 4400
1884
1885/** @} */
1886
1887/** @name VBox Video HW Acceleration command status
1888 * @{
1889 */
1890/** command processing is pending, a completion handler will be called */
1891#define VINF_VHWA_CMD_PENDING 4500
1892
1893/** @} */
1894
1895
1896/** @name VBox COM error codes
1897 *
1898 * @remarks Global::vboxStatusCodeToCOM and Global::vboxStatusCodeFromCOM uses
1899 * these for conversion that is lossless with respect to important COM
1900 * status codes. These methods should be moved to the glue library.
1901 * @{ */
1902/** Unexpected turn of events. */
1903#define VERR_COM_UNEXPECTED (-4600)
1904/** The base of the VirtualBox COM status codes (the lower value)
1905 * corresponding 1:1 to VBOX_E_XXX. This is the lowest value. */
1906#define VERR_COM_VBOX_LOWEST (-4699)
1907/** Object corresponding to the supplied arguments does not exist. */
1908#define VERR_COM_OBJECT_NOT_FOUND (VERR_COM_VBOX_LOWEST + 1)
1909/** Current virtual machine state prevents the operation. */
1910#define VERR_COM_INVALID_VM_STATE (VERR_COM_VBOX_LOWEST + 2)
1911/** Virtual machine error occurred attempting the operation. */
1912#define VERR_COM_VM_ERROR (VERR_COM_VBOX_LOWEST + 3)
1913/** File not accessible or erroneous file contents. */
1914#define VERR_COM_FILE_ERROR (VERR_COM_VBOX_LOWEST + 4)
1915/** IPRT error. */
1916#define VERR_COM_IPRT_ERROR (VERR_COM_VBOX_LOWEST + 5)
1917/** Pluggable Device Manager error. */
1918#define VERR_COM_PDM_ERROR (VERR_COM_VBOX_LOWEST + 6)
1919/** Current object state prohibits operation. */
1920#define VERR_COM_INVALID_OBJECT_STATE (VERR_COM_VBOX_LOWEST + 7)
1921/** Host operating system related error. */
1922#define VERR_COM_HOST_ERROR (VERR_COM_VBOX_LOWEST + 8)
1923/** Requested operation is not supported. */
1924#define VERR_COM_NOT_SUPPORTED (VERR_COM_VBOX_LOWEST + 9)
1925/** Invalid XML found. */
1926#define VERR_COM_XML_ERROR (VERR_COM_VBOX_LOWEST + 10)
1927/** Current session state prohibits operation. */
1928#define VERR_COM_INVALID_SESSION_STATE (VERR_COM_VBOX_LOWEST + 11)
1929/** Object being in use prohibits operation. */
1930#define VERR_COM_OBJECT_IN_USE (VERR_COM_VBOX_LOWEST + 12)
1931/** Returned by callback methods which does not need to be called
1932 * again because the client does not actually make use of them. */
1933#define VERR_COM_DONT_CALL_AGAIN (VERR_COM_VBOX_LOWEST + 13)
1934/** @} */
1935
1936/** @name VBox CPU hotplug Status codes
1937 * @{
1938 */
1939/** CPU hotplug events from VMMDev are not monitored by the guest. */
1940#define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST (-4700)
1941/** @} */
1942
1943/** @name VBox async I/O manager Status Codes
1944 * @{
1945 */
1946/** Async I/O task is pending, a completion handler will be called. */
1947#define VINF_AIO_TASK_PENDING 4800
1948/** @} */
1949
1950/** @name VBox Virtual SCSI Status Codes
1951 * @{
1952 */
1953/** LUN type is not supported. */
1954#define VERR_VSCSI_LUN_TYPE_NOT_SUPPORTED (-4900)
1955/** LUN is already/still attached to a device. */
1956#define VERR_VSCSI_LUN_ATTACHED_TO_DEVICE (-4901)
1957/** The specified LUN is invalid. */
1958#define VERR_VSCSI_LUN_INVALID (-4902)
1959/** The LUN is not attached to the device. */
1960#define VERR_VSCSI_LUN_NOT_ATTACHED (-4903)
1961/** The LUN is still busy. */
1962#define VERR_VSCSI_LUN_BUSY (-4904)
1963/** @} */
1964
1965/** @name VBox FAM Status Codes
1966 * @{
1967 */
1968/** FAM failed to open a connection. */
1969#define VERR_FAM_OPEN_FAILED (-5000)
1970/** FAM failed to add a file to the list to be monitored. */
1971#define VERR_FAM_MONITOR_FILE_FAILED (-5001)
1972/** FAM failed to add a directory to the list to be monitored. */
1973#define VERR_FAM_MONITOR_DIRECTORY_FAILED (-5002)
1974/** The connection to the FAM daemon was lost. */
1975#define VERR_FAM_CONNECTION_LOST (-5003)
1976/** @} */
1977
1978
1979/** @name PCI Passtrhough Status Codes
1980 * @{
1981 */
1982/** RamPreAlloc not set.
1983 * RAM pre-allocation is currently a requirement for PCI passthrough. */
1984#define VERR_PCI_PASSTHROUGH_NO_RAM_PREALLOC (-5100)
1985/** VT-x/AMD-V not active.
1986 * PCI passthrough currently works only if VT-x/AMD-V is active. */
1987#define VERR_PCI_PASSTHROUGH_NO_HWACCM (-5101)
1988/** Nested paging not active.
1989 * PCI passthrough currently works only if nested paging is active. */
1990#define VERR_PCI_PASSTHROUGH_NO_NESTED_PAGING (-5102)
1991/** @} */
1992
1993
1994/** @name GVMM Status Codes
1995 * @{
1996 */
1997/** Internal error obtaining the GVMM instance. */
1998#define VERR_GVMM_INSTANCE (-5200)
1999/** GVMM does not support the range of CPUs present/possible on the host. */
2000#define VERR_GVMM_HOST_CPU_RANGE (-5201)
2001/** GVMM ran into some broken IPRT code. */
2002#define VERR_GVMM_BROKEN_IPRT (-5202)
2003/** Internal processing error \#1 in the GVMM code. */
2004#define VERR_GVMM_IPE_1 (-5203)
2005/** Internal processing error \#2 in the GVMM code. */
2006#define VERR_GVMM_IPE_2 (-5204)
2007/** @} */
2008
2009
2010/** @name IEM Status Codes
2011 * @{ */
2012/** The instruction is not yet implemented by IEM. */
2013#define VERR_IEM_INSTR_NOT_IMPLEMENTED (-5300)
2014/** This particular aspect of the instruction is not yet implemented by IEM. */
2015#define VERR_IEM_ASPECT_NOT_IMPLEMENTED (-5391)
2016/** Internal processing error \#1 in the IEM code.. */
2017#define VERR_IEM_IPE_1 (-5392)
2018/** Internal processing error \#2 in the IEM code.. */
2019#define VERR_IEM_IPE_2 (-5393)
2020/** @} */
2021
2022
2023/** @name VBox Extension Pack Status Codes
2024 * @{
2025 */
2026/** The host is not supported. Uninstall the extension pack.
2027 * Returned by the VBOXEXTPACKREG::pfnInstalled. */
2028#define VERR_EXTPACK_UNSUPPORTED_HOST_UNINSTALL (-6000)
2029/** The VirtualBox version is not supported by one of the extension packs.
2030 *
2031 * You have probably upgraded VirtualBox recently. Please upgrade the
2032 * extension packs to versions compatible with this VirtualBox release.
2033 */
2034#define VERR_EXTPACK_VBOX_VERSION_MISMATCH (-6001)
2035/** @} */
2036
2037
2038/* SED-END */
2039
2040/** @} */
2041
2042
2043#endif
2044
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette