VirtualBox

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

Last change on this file since 26685 was 26625, checked in by vboxsync, 15 years ago

Large page code cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 69.2 KB
Line 
1/** @file
2 * VirtualBox Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef ___VBox_err_h
31#define ___VBox_err_h
32
33#include <VBox/cdefs.h>
34#include <iprt/err.h>
35
36
37/** @defgroup grp_err Error Codes
38 * @{
39 */
40
41/* SED-START */
42
43/** @name Misc. Status Codes
44 * @{
45 */
46/** Failed to allocate VM memory. */
47#define VERR_NO_VM_MEMORY (-1000)
48/** GC is toasted and the VMM should be terminated at once, but no need to panic about it :-) */
49#define VERR_DONT_PANIC (-1001)
50/** Unsupported CPU. */
51#define VERR_UNSUPPORTED_CPU (-1002)
52/** Unsupported CPU mode. */
53#define VERR_UNSUPPORTED_CPU_MODE (-1003)
54/** Page not present. */
55#define VERR_PAGE_NOT_PRESENT (-1004)
56/** Invalid/Corrupted configuration file. */
57#define VERR_CFG_INVALID_FORMAT (-1005)
58/** No configuration value exists. */
59#define VERR_CFG_NO_VALUE (-1006)
60/** Not selector not present. */
61#define VERR_SELECTOR_NOT_PRESENT (-1007)
62/** Not code selector. */
63#define VERR_NOT_CODE_SELECTOR (-1008)
64/** Not data selector. */
65#define VERR_NOT_DATA_SELECTOR (-1009)
66/** Out of selector bounds. */
67#define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
68/** Invalid selector. Usually beyond table limits. */
69#define VERR_INVALID_SELECTOR (-1011)
70/** Invalid requested privilegde level. */
71#define VERR_INVALID_RPL (-1012)
72/** PML4 entry not present. */
73#define VERR_PAGE_MAP_LEVEL4_NOT_PRESENT (-1013)
74/** Page directory pointer not present. */
75#define VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT (-1014)
76/** Raw mode doesn't support SMP. */
77#define VERR_RAW_MODE_INVALID_SMP (-1015)
78/** Invalid VM handle. */
79#define VERR_INVALID_VM_HANDLE (-1016)
80/** Invalid VM handle. */
81#define VERR_INVALID_VMCPU_HANDLE (-1017)
82/** Invalid Virtual CPU ID. */
83#define VERR_INVALID_CPU_ID (-1018)
84/** Too many VCPUs. */
85#define VERR_TOO_MANY_CPUS (-1019)
86/** @} */
87
88
89/** @name Execution Monitor/Manager (EM) Status Codes
90 *
91 * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
92 * are of vital importance. The lower the number the higher importance
93 * as a scheduling instruction.
94 * @{
95 */
96/** First scheduling related status code. */
97#define VINF_EM_FIRST 1100
98/** Indicating that the VM is being terminated and that the the execution
99 * shall stop. */
100#define VINF_EM_TERMINATE 1100
101/** Hypervisor code was stepped.
102 * EM will first send this to the debugger, and if the issue isn't
103 * resolved there it will enter guru meditation. */
104#define VINF_EM_DBG_HYPER_STEPPED 1101
105/** Hit a breakpoint in the hypervisor code,
106 * EM will first send this to the debugger, and if the issue isn't
107 * resolved there it will enter guru meditation. */
108#define VINF_EM_DBG_HYPER_BREAKPOINT 1102
109/** Hit a possible assertion in the hypervisor code,
110 * EM will first send this to the debugger, and if the issue isn't
111 * resolved there it will enter guru meditation. */
112#define VINF_EM_DBG_HYPER_ASSERTION 1103
113/** Indicating that the VM should be suspended for debugging because
114 * the developer wants to inspect the VM state. */
115#define VINF_EM_DBG_STOP 1105
116/** Indicating success single stepping and that EM should report that
117 * event to the debugger. */
118#define VINF_EM_DBG_STEPPED 1106
119/** Indicating that a breakpoint was hit and that EM should notify the debugger
120 * and in the event there is no debugger fail fatally. */
121#define VINF_EM_DBG_BREAKPOINT 1107
122/** Indicating that EM should single step an instruction.
123 * The instruction is stepped in the current execution mode (RAW/REM). */
124#define VINF_EM_DBG_STEP 1108
125/** Indicating that the VM is being turned off and that the EM should
126 * exit to the VM awaiting the destruction request. */
127#define VINF_EM_OFF 1109
128/** Indicating that the VM has been suspended and that the the thread
129 * should wait for request telling it what to do next. */
130#define VINF_EM_SUSPEND 1110
131/** Indicating that the VM has been reset and that scheduling goes
132 * back to startup defaults. */
133#define VINF_EM_RESET 1111
134/** Indicating that the VM has executed a halt instruction and that
135 * the emulation thread should wait for an interrupt before resuming
136 * execution. */
137#define VINF_EM_HALT 1112
138/** Indicating that the VM has been resumed and that the thread should
139 * start executing. */
140#define VINF_EM_RESUME 1113
141/** Indicating that we've got an out-of-memory condition and that we need
142 * to take the appropriate actions to deal with this.
143 * @remarks It might seem odd at first that this has lower priority than VINF_EM_HALT,
144 * VINF_EM_SUSPEND, and VINF_EM_RESUME. The reason is that these events are
145 * vital to correctly operating the VM. Also, they can't normally occur together
146 * with an out-of-memory condition, and even if that should happen the condition
147 * will be rediscovered before executing any more code. */
148#define VINF_EM_NO_MEMORY 1114
149/** The fatal variant of VINF_EM_NO_MEMORY. */
150#define VERR_EM_NO_MEMORY (-1114)
151/** Indicating that a rescheduling to recompiled execution.
152 * Typically caused by raw-mode executing code which is difficult/slow
153 * to virtualize rawly.
154 * @remarks Important to have a higher priority (lower number) than the other rescheduling status codes. */
155#define VINF_EM_RESCHEDULE_REM 1115
156/** Indicating that a rescheduling to vmx-mode execution.
157 * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible. */
158#define VINF_EM_RESCHEDULE_HWACC 1116
159/** Indicating that a rescheduling to raw-mode execution.
160 * Typically caused by REM detecting that raw-mode execution is possible.
161 * @remarks Important to have a higher priority (lower number) than VINF_EM_RESCHEDULE. */
162#define VINF_EM_RESCHEDULE_RAW 1117
163/** Indicating that a rescheduling now is required. Typically caused by
164 * interrupts having changed the EIP. */
165#define VINF_EM_RESCHEDULE 1118
166/** PARAV call */
167#define VINF_EM_RESCHEDULE_PARAV 1119
168/** Go back into wait for SIPI mode */
169#define VINF_EM_WAIT_SIPI 1120
170/** Last scheduling related status code. (inclusive) */
171#define VINF_EM_LAST 1120
172
173/** Reason for leaving GC: Guest trap which couldn't be handled in GC.
174 * The trap is generally forwared to the REM and executed there. */
175#define VINF_EM_RAW_GUEST_TRAP 1121
176/** Reason for leaving GC: Interrupted by external interrupt.
177 * The interrupt needed to be handled by the host OS. */
178#define VINF_EM_RAW_INTERRUPT 1122
179/** Reason for leaving GC: Interrupted by external interrupt while in hypervisor code.
180 * The interrupt needed to be handled by the host OS and hypervisor execution must be
181 * resumed. VM state is not complete at this point. */
182#define VINF_EM_RAW_INTERRUPT_HYPER 1123
183/** Reason for leaving GC: A Ring switch was attempted.
184 * Normal cause of action is to execute this in REM. */
185#define VINF_EM_RAW_RING_SWITCH 1124
186/** Reason for leaving GC: A Ring switch was attempted using software interrupt.
187 * Normal cause of action is to execute this in REM. */
188#define VINF_EM_RAW_RING_SWITCH_INT 1125
189/** Reason for leaving GC: A privileged instruction was attempted executed.
190 * Normal cause of action is to execute this in REM. */
191#define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1126
192
193/** Reason for leaving GC: Emulate instruction. */
194#define VINF_EM_RAW_EMULATE_INSTR 1127
195/** Reason for leaving GC: Unhandled TSS write.
196 * Recompiler gets control. */
197#define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1128
198/** Reason for leaving GC: Unhandled LDT write.
199 * Recompiler gets control. */
200#define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1129
201/** Reason for leaving GC: Unhandled IDT write.
202 * Recompiler gets control. */
203#define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1130
204/** Reason for leaving GC: Unhandled GDT write.
205 * Recompiler gets control. */
206#define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1131
207/** Reason for leaving GC: Unhandled Page Directory write.
208 * Recompiler gets control. */
209#define VINF_EM_RAW_EMULATE_INSTR_PD_FAULT 1132
210/** Reason for leaving GC: jump inside generated patch jump.
211 * Fatal error. */
212#define VERR_EM_RAW_PATCH_CONFLICT (-1133)
213/** Reason for leaving GC: Hlt instruction.
214 * Recompiler gets control. */
215#define VINF_EM_RAW_EMULATE_INSTR_HLT 1134
216/** Reason for leaving GC: Ring-3 operation pending. */
217#define VINF_EM_RAW_TO_R3 1135
218/** Reason for leaving GC: Timer pending. */
219#define VINF_EM_RAW_TIMER_PENDING 1136
220/** Reason for leaving GC: Interrupt pending (guest). */
221#define VINF_EM_RAW_INTERRUPT_PENDING 1137
222/** Reason for leaving GC: Encountered a stale selector. */
223#define VINF_EM_RAW_STALE_SELECTOR 1138
224/** Reason for leaving GC: The IRET resuming guest code trapped. */
225#define VINF_EM_RAW_IRET_TRAP 1139
226/** Reason for leaving GC: Emulate (MM)IO intensive code in the recompiler. */
227#define VINF_EM_RAW_EMULATE_IO_BLOCK 1140
228/** The interpreter was unable to deal with the instruction at hand. */
229#define VERR_EM_INTERPRETER (-1148)
230/** Internal EM error caused by an unknown warning or informational status code. */
231#define VERR_EM_INTERNAL_ERROR (-1149)
232/** Pending VM request packet. */
233#define VINF_EM_PENDING_REQUEST 1150
234/** Start instruction stepping (debug only). */
235#define VINF_EM_RAW_EMULATE_DBG_STEP 1151
236/** Patch TPR access instruction. */
237#define VINF_EM_HWACCM_PATCH_TPR_INSTR 1152
238/** @} */
239
240
241/** @name Debugging Facility (DBGF) DBGF Status Codes
242 * @{
243 */
244/** The function called requires the caller to be attached as a
245 * debugger to the VM. */
246#define VERR_DBGF_NOT_ATTACHED (-1200)
247/** Someone (including the caller) was already attached as
248 * debugger to the VM. */
249#define VERR_DBGF_ALREADY_ATTACHED (-1201)
250/** Tried to hald a debugger which was already halted.
251 * (This is a warning and not an error.) */
252#define VWRN_DBGF_ALREADY_HALTED 1202
253/** The DBGF has no more free breakpoint slots. */
254#define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
255/** The DBGF couldn't find the specified breakpoint. */
256#define VERR_DBGF_BP_NOT_FOUND (-1204)
257/** Attempted to enabled a breakpoint which was already enabled. */
258#define VINF_DBGF_BP_ALREADY_ENABLED 1205
259/** Attempted to disabled a breakpoint which was already disabled. */
260#define VINF_DBGF_BP_ALREADY_DISABLED 1206
261/** The breakpoint already exists. */
262#define VINF_DBGF_BP_ALREADY_EXIST 1207
263/** The byte string was not found. */
264#define VERR_DBGF_MEM_NOT_FOUND (-1208)
265/** The OS was not detected. */
266#define VERR_DBGF_OS_NOT_DETCTED (-1209)
267/** The OS was not detected. */
268#define VINF_DBGF_OS_NOT_DETCTED 1209
269/** @} */
270
271
272/** @name Patch Manager (PATM) Status Codes
273 * @{
274 */
275/** Non fatal Patch Manager analysis phase warning */
276#define VWRN_CONTINUE_ANALYSIS 1400
277/** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
278#define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
279/** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
280#define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
281/** Patch installation refused (patch too complex or unsupported instructions ) */
282#define VERR_PATCHING_REFUSED (-1401)
283/** Unable to find patch */
284#define VERR_PATCH_NOT_FOUND (-1402)
285/** Patch disabled */
286#define VERR_PATCH_DISABLED (-1403)
287/** Patch enabled */
288#define VWRN_PATCH_ENABLED 1404
289/** Patch was already disabled */
290#define VERR_PATCH_ALREADY_DISABLED (-1405)
291/** Patch was already enabled */
292#define VERR_PATCH_ALREADY_ENABLED (-1406)
293/** Patch was removed. */
294#define VWRN_PATCH_REMOVED 1407
295
296/** Reason for leaving GC: \#GP with EIP pointing to patch code. */
297#define VINF_PATM_PATCH_TRAP_GP 1408
298/** First leave GC code. */
299#define VINF_PATM_LEAVEGC_FIRST VINF_PATM_PATCH_TRAP_GP
300/** Reason for leaving GC: \#PF with EIP pointing to patch code. */
301#define VINF_PATM_PATCH_TRAP_PF 1409
302/** Reason for leaving GC: int3 with EIP pointing to patch code. */
303#define VINF_PATM_PATCH_INT3 1410
304/** Reason for leaving GC: \#PF for monitored patch page. */
305#define VINF_PATM_CHECK_PATCH_PAGE 1411
306/** Reason for leaving GC: duplicate instruction called at current eip. */
307#define VINF_PATM_DUPLICATE_FUNCTION 1412
308/** Execute one instruction with the recompiler */
309#define VINF_PATCH_EMULATE_INSTR 1413
310/** Reason for leaving GC: attempt to patch MMIO write. */
311#define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
312/** Reason for leaving GC: attempt to patch MMIO read. */
313#define VINF_PATM_HC_MMIO_PATCH_READ 1415
314/** Reason for leaving GC: pending irq after iret that sets IF. */
315#define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
316/** Last leave GC code. */
317#define VINF_PATM_LEAVEGC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
318
319/** No conflicts to resolve */
320#define VERR_PATCH_NO_CONFLICT (-1425)
321/** Detected unsafe code for patching */
322#define VERR_PATM_UNSAFE_CODE (-1426)
323/** Terminate search branch */
324#define VWRN_PATCH_END_BRANCH 1427
325/** Already patched */
326#define VERR_PATM_ALREADY_PATCHED (-1428)
327/** Spinlock detection failed. */
328#define VINF_PATM_SPINLOCK_FAILED (1429)
329/** Continue execution after patch trap. */
330#define VINF_PATCH_CONTINUE (1430)
331
332/** @} */
333
334
335/** @name Code Scanning and Analysis Manager (CSAM) Status Codes
336 * @{
337 */
338/** Trap not handled */
339#define VWRN_CSAM_TRAP_NOT_HANDLED 1500
340/** Patch installed */
341#define VWRN_CSAM_INSTRUCTION_PATCHED 1501
342/** Page record not found */
343#define VWRN_CSAM_PAGE_NOT_FOUND 1502
344/** Reason for leaving GC: CSAM wants perform a task in ring-3. */
345#define VINF_CSAM_PENDING_ACTION 1503
346/** @} */
347
348
349/** @name Page Monitor/Manager (PGM) Status Codes
350 * @{
351 */
352/** Attempt to create a GC mapping which conflicts with an existing mapping. */
353#define VERR_PGM_MAPPING_CONFLICT (-1600)
354/** The physical handler range has no corresponding RAM range.
355 * If this is MMIO, see todo above the return. If not MMIO, then it's
356 * someone else's fault... */
357#define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
358/** Attempt to register an access handler for a virtual range of which a part
359 * was already handled. */
360#define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
361/** Attempt to register an access handler for a physical range of which a part
362 * was already handled. */
363#define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
364/** Invalid page directory specified to PGM. */
365#define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
366/** Invalid GC physical address. */
367#define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
368/** Invalid GC physical range. Usually used when a specified range crosses
369 * a RAM region boundrary. */
370#define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
371/** Specified access handler was not found. */
372#define VERR_PGM_HANDLER_NOT_FOUND (-1607)
373/** Attempt to register a RAM range of which parts are already
374 * covered by existing RAM ranges. */
375#define VERR_PGM_RAM_CONFLICT (-1608)
376/** Failed to add new mappings because the current mappings are fixed
377 * in guest os memory. */
378#define VERR_PGM_MAPPINGS_FIXED (-1609)
379/** Failed to fix mappings because of a conflict with the intermediate code. */
380#define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
381/** Failed to fix mappings because a mapping rejected the address. */
382#define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
383/** Failed to fix mappings because the proposed memory area was to small. */
384#define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
385/** Reason for leaving GC: The urge to syncing CR3. */
386#define VINF_PGM_SYNC_CR3 1613
387/** Page not marked for dirty bit tracking */
388#define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
389/** Page fault caused by dirty bit tracking; corrected */
390#define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
391/** Go ahead with the default Read/Write operation.
392 * This is returned by a HC physical or virtual handler when it wants the PGMPhys[Read|Write]
393 * routine do the reading/writing. */
394#define VINF_PGM_HANDLER_DO_DEFAULT 1616
395/** The paging mode of the host is not supported yet. */
396#define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
397/** The physical guest page is a reserved/mmio page and does not have any HC address. */
398#define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
399/** No page directory available for the hypervisor. */
400#define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
401/** The shadow page pool was flushed.
402 * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
403 * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
404#define VERR_PGM_POOL_FLUSHED (-1620)
405/** The shadow page pool was cleared.
406 * This is a error code internal to the shadow page pool, it will be
407 * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
408#define VERR_PGM_POOL_CLEARED (-1621)
409/** The returned shadow page is cached. */
410#define VINF_PGM_CACHED_PAGE 1622
411/** Returned by handler registration, modification and deregistration
412 * when the shadow PTs could be updated because the guest page
413 * aliased or/and mapped by multiple PTs. */
414#define VINF_PGM_GCPHYS_ALIASED 1623
415/** Reason for leaving GC: Paging mode changed.
416 * PGMChangeMode() uses this to force a switch to HC so it can safely
417 * deal with a mode switch.
418 */
419#define VINF_PGM_CHANGE_MODE 1624
420/** SyncPage modified the PDE.
421 * This is an internal status code used to communicate back to the \#PF handler
422 * that the PDE was (probably) marked not-present and it should restart the instruction. */
423#define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
424/** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
425#define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
426/** Conflict between the core memory and the intermediate paging context, try again.
427 * There are some very special conditions applying to the intermediate paging context
428 * (used during the world switches), and some times we continuously run into these
429 * when asking the host kernel for memory during VM init. Let us know if you run into
430 * this and we'll adjust the code so it tries harder to avoid it.
431 */
432#define VERR_PGM_INTERMEDIATE_PAGING_CONFLICT (-1627)
433/** The shadow paging mode is not supported yet. */
434#define VERR_PGM_UNSUPPORTED_SHADOW_PAGING_MODE (-1628)
435/** The dynamic mapping cache for physical memory failed. */
436#define VERR_PGM_DYNMAP_FAILED (-1629)
437/** The auto usage cache for the dynamic mapping set is full. */
438#define VERR_PGM_DYNMAP_FULL_SET (-1630)
439/** The initialization of the dynamic mapping cache failed. */
440#define VERR_PGM_DYNMAP_SETUP_ERROR (-1631)
441/** The expanding of the dynamic mapping cache failed. */
442#define VERR_PGM_DYNMAP_EXPAND_ERROR (-1632)
443/** The page is unassigned (akin to VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS). */
444#define VERR_PGM_PHYS_TLB_UNASSIGNED (-1633)
445/** Catch any access and route it thru PGM. */
446#define VERR_PGM_PHYS_TLB_CATCH_ALL (-1634)
447/** Catch write access and route it thru PGM. */
448#define VINF_PGM_PHYS_TLB_CATCH_WRITE 1635
449/** No CR3 root shadow page table.. */
450#define VERR_PGM_NO_CR3_SHADOW_ROOT (-1636)
451/** Trying to free a page with an invalid Page ID. */
452#define VERR_PGM_PHYS_INVALID_PAGE_ID (-1637)
453/** PGMPhysWrite/Read hit a handler in Ring-0 or raw-mode context. */
454#define VERR_PGM_PHYS_WR_HIT_HANDLER (-1638)
455/** Trying to free a page that isn't RAM. */
456#define VERR_PGM_PHYS_NOT_RAM (-1639)
457/** Not ROM page. */
458#define VERR_PGM_PHYS_NOT_ROM (-1640)
459/** Not MMIO page. */
460#define VERR_PGM_PHYS_NOT_MMIO (-1641)
461/** Not MMIO2 page. */
462#define VERR_PGM_PHYS_NOT_MMIO2 (-1642)
463/** Already aliased to a different page. */
464#define VERR_PGM_HANDLER_ALREADY_ALIASED (-1643)
465/** Already aliased to the same page. */
466#define VINF_PGM_HANDLER_ALREADY_ALIASED (1643)
467/** PGM pool flush pending - return to ring 3. */
468#define VINF_PGM_POOL_FLUSH_PENDING (1644)
469/** Unable to use the range for a large page. */
470#define VERR_PGM_INVALID_LARGE_PAGE_RANGE (-1645)
471/** @} */
472
473
474/** @name Memory Monitor (MM) Status Codes
475 * @{
476 */
477/** Attempt to register a RAM range of which parts are already
478 * covered by existing RAM ranges. */
479#define VERR_MM_RAM_CONFLICT (-1700)
480/** Hypervisor memory allocation failed. */
481#define VERR_MM_HYPER_NO_MEMORY (-1701)
482
483/** @} */
484
485
486/** @name Save State Manager (SSM) Status Codes
487 * @{
488 */
489/** The specified data unit already exist. */
490#define VERR_SSM_UNIT_EXISTS (-1800)
491/** The specified data unit wasn't found. */
492#define VERR_SSM_UNIT_NOT_FOUND (-1801)
493/** The specified data unit wasn't owned by caller. */
494#define VERR_SSM_UNIT_NOT_OWNER (-1802)
495
496/** General saved state file integrity error. */
497#define VERR_SSM_INTEGRITY (-1810)
498/** The saved state file magic was not recognized. */
499#define VERR_SSM_INTEGRITY_MAGIC (-1811)
500/** The saved state file version is not supported. */
501#define VERR_SSM_INTEGRITY_VERSION (-1812)
502/** The saved state file size didn't match the one in the header. */
503#define VERR_SSM_INTEGRITY_SIZE (-1813)
504/** The CRC of the saved state file did not match. */
505#define VERR_SSM_INTEGRITY_CRC (-1814)
506/** The machine uuid field wasn't null. */
507#define VERR_SMM_INTEGRITY_MACHINE (-1815)
508/** Saved state header integrity error. */
509#define VERR_SSM_INTEGRITY_HEADER (-1816)
510/** Unit header integrity error. */
511#define VERR_SSM_INTEGRITY_UNIT (-1817)
512/** Invalid unit magic (internal data tag). */
513#define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1818)
514/** The file contained a data unit which no-one wants. */
515#define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1819)
516/** Incorrect version numbers in the header. */
517#define VERR_SSM_INTEGRITY_VBOX_VERSION (-1820)
518/** Footer integrity error. */
519#define VERR_SSM_INTEGRITY_FOOTER (-1821)
520/** Record header integrity error. */
521#define VERR_SSM_INTEGRITY_REC_HDR (-1822)
522/** Termination record integrity error. */
523#define VERR_SSM_INTEGRITY_REC_TERM (-1823)
524/** Termination record CRC mismatch. */
525#define VERR_SSM_INTEGRITY_REC_TERM_CRC (-1824)
526/** Decompression interity error. */
527#define VERR_SSM_INTEGRITY_DECOMPRESSION (-1825)
528/** Saved state directory iintegrity error. */
529#define VERR_SSM_INTEGRITY_DIR (-1826)
530/** The saved state directory magic is wrong. */
531#define VERR_SSM_INTEGRITY_DIR_MAGIC (-1827)
532
533/** A data unit in the saved state file was defined but didn't any
534 * routine for processing it. */
535#define VERR_SSM_NO_LOAD_EXEC (-1830)
536/** A restore routine attempted to load more data then the unit contained. */
537#define VERR_SSM_LOADED_TOO_MUCH (-1831)
538/** Not in the correct state for the attempted operation. */
539#define VERR_SSM_INVALID_STATE (-1832)
540/** Not in the correct state for the attempted operation. */
541#define VERR_SSM_LOADED_TOO_LITTLE (-1833)
542
543/** Unsupported data unit version.
544 * A SSM user returns this if it doesn't know the u32Version. */
545#define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1840)
546/** The format of a data unit has changed.
547 * A SSM user returns this if it's not able to read the format for
548 * other reasons than u32Version. */
549#define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1841)
550/** The CPUID instruction returns different information when loading than when saved.
551 * Normally caused by hardware changes on the host, but could also be caused by
552 * changes in the BIOS setup. */
553#define VERR_SSM_LOAD_CPUID_MISMATCH (-1842)
554/** The RAM size differes between the saved state and the VM config. */
555#define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1843)
556/** The state doesn't match the VM configuration in one or another way.
557 * (There are certain PCI reconfiguration which the OS could potentially
558 * do which can cause this problem. Check this out when it happens.) */
559#define VERR_SSM_LOAD_CONFIG_MISMATCH (-1844)
560/** The virtual clock freqency differs too much.
561 * The clock source for the virtual time isn't reliable or the code have changed. */
562#define VERR_SSM_VIRTUAL_CLOCK_HZ (-1845)
563/** A timeout occured while waiting for async IDE operations to finish. */
564#define VERR_SSM_IDE_ASYNC_TIMEOUT (-1846)
565/** One of the structure magics was wrong. */
566#define VERR_SSM_STRUCTURE_MAGIC (-1847)
567/** The data in the saved state doesn't conform to expectations. */
568#define VERR_SSM_UNEXPECTED_DATA (-1848)
569/** Trying to read a 64-bit guest physical address into a 32-bit variable. */
570#define VERR_SSM_GCPHYS_OVERFLOW (-1849)
571/** Trying to read a 64-bit guest virtual address into a 32-bit variable. */
572#define VERR_SSM_GCPTR_OVERFLOW (-1850)
573/** Vote for another pass. */
574#define VINF_SSM_VOTE_FOR_ANOTHER_PASS 1851
575/** Vote for done tell SSM not to call again until the final pass. */
576#define VINF_SSM_VOTE_DONE_DONT_CALL_AGAIN 1852
577/** Vote for giving up. */
578#define VERR_SSM_VOTE_FOR_GIVING_UP (-1853)
579/** Don't call again until the final pass. */
580#define VINF_SSM_DONT_CALL_AGAIN 1854
581/** Giving up a live snapshot/teleportation attempt because of too many
582 * passes. */
583#define VERR_SSM_TOO_MANY_PASSES (-1855)
584/** Giving up a live snapshot/teleportation attempt because the state grew to
585 * big. */
586#define VERR_SSM_STATE_GREW_TOO_BIG (-1856)
587/** Giving up a live snapshot attempt because we're low on disk space. */
588#define VERR_SSM_LOW_ON_DISK_SPACE (-1857)
589/** The operation was cancelled. */
590#define VERR_SSM_CANCELLED (-1858)
591/** Nothing that can be cancelled. */
592#define VERR_SSM_NO_PENDING_OPERATION (-1859)
593/** The operation has already been cancelled. */
594#define VERR_SSM_ALREADY_CANCELLED (-1860)
595/** The machine was powered off while saving. */
596#define VERR_SSM_LIVE_POWERED_OFF (-1861)
597/** The live snapshot/teleportation operation was aborted because of a guru
598 * meditation. */
599#define VERR_SSM_LIVE_GURU_MEDITATION (-1862)
600/** The live snapshot/teleportation operation was aborted because of a fatal
601 * runtime error. */
602#define VERR_SSM_LIVE_FATAL_ERROR (-1863)
603/** The VM was suspended before or while saving, don't resume execution. */
604#define VINF_SSM_LIVE_SUSPENDED 1864
605/** Complex SSM field fed to SSMR3PutStruct or SSMR3GetStruct. Use the
606 * extended API. */
607#define VERR_SSM_FIELD_COMPLEX (-1864)
608/** Invalid size of a SSM field with the specified transformation. */
609#define VERR_SSM_FIELD_INVALID_SIZE (-1865)
610/** The specified field is outside the structure. */
611#define VERR_SSM_FIELD_OUT_OF_BOUNDS (-1866)
612/** The field does not follow immediately the previous one. */
613#define VERR_SSM_FIELD_NOT_CONSECUTIVE (-1867)
614/** The field contains an invalid callback or transformation index. */
615#define VERR_SSM_FIELD_INVALID_CALLBACK (-1868)
616/** The field contains an invalid padding size. */
617#define VERR_SSM_FIELD_INVALID_PADDING_SIZE (-1869)
618/** The field contains a value that is out of range. */
619#define VERR_SSM_FIELD_INVALID_VALUE (-1870)
620/** @} */
621
622
623/** @name Virtual Machine (VM) Status Codes
624 * @{
625 */
626/** The specified at reset handler wasn't found. */
627#define VERR_VM_ATRESET_NOT_FOUND (-1900)
628/** Invalid VM request type.
629 * For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
630 * all the other occurences it means indicates corruption, broken logic, or stupid
631 * interface user. */
632#define VERR_VM_REQUEST_INVALID_TYPE (-1901)
633/** Invalid VM request state.
634 * The state of the request packet was not the expected and accepted one(s). Either
635 * the interface user screwed up, or we've got corruption/broken logic. */
636#define VERR_VM_REQUEST_STATE (-1902)
637/** Invalid VM request packet.
638 * One or more of the the VM controlled packet members didn't contain the correct
639 * values. Some thing's broken. */
640#define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
641/** The status field has not been updated yet as the request is still
642 * pending completion. Someone queried the iStatus field before the request
643 * has been fully processed. */
644#define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
645/** The request has been freed, don't read the status now.
646 * Someone is reading the iStatus field of a freed request packet. */
647#define VERR_VM_REQUEST_STATUS_FREED (-1905)
648/** A VM api requiring EMT was called from another thread.
649 * Use the VMR3ReqCall() apis to call it! */
650#define VERR_VM_THREAD_NOT_EMT (-1906)
651/** The VM state was invalid for the requested operation.
652 * Go check the 'VM Statechart Diagram.gif'. */
653#define VERR_VM_INVALID_VM_STATE (-1907)
654/** The support driver is not installed.
655 * On linux, open returned ENOENT. */
656#define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
657/** The support driver is not accessible.
658 * On linux, open returned EPERM. */
659#define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
660/** Was not able to load the support driver.
661 * On linux, open returned ENODEV. */
662#define VERR_VM_DRIVER_LOAD_ERROR (-1910)
663/** Was not able to open the support driver.
664 * Generic open error used when none of the other ones fit. */
665#define VERR_VM_DRIVER_OPEN_ERROR (-1911)
666/** The installed support driver doesn't match the version of the user. */
667#define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
668/** Saving the VM state is temporarily not allowed. Try again later. */
669#define VERR_VM_SAVE_STATE_NOT_ALLOWED (-1913)
670/** @} */
671
672
673/** @name VBox Remote Desktop Protocol (VRDP) Status Codes
674 * @{
675 */
676/** Successful completion of operation (mapped to generic iprt status code). */
677#define VINF_VRDP_SUCCESS VINF_SUCCESS
678/** VRDP transport operation timed out (mapped to generic iprt status code). */
679#define VERR_VRDP_TIMEOUT VERR_TIMEOUT
680
681/** Unsupported ISO protocol feature */
682#define VERR_VRDP_ISO_UNSUPPORTED (-2000)
683/** Security (en/decryption) engine error */
684#define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
685/** VRDP protocol violation */
686#define VERR_VRDP_PROTOCOL_ERROR (-2002)
687/** Unsupported VRDP protocol feature */
688#define VERR_VRDP_NOT_SUPPORTED (-2003)
689/** VRDP protocol violation, client sends less data than expected */
690#define VERR_VRDP_INSUFFICIENT_DATA (-2004)
691/** Internal error, VRDP packet is in wrong operation mode */
692#define VERR_VRDP_INVALID_MODE (-2005)
693/** Memory allocation failed */
694#define VERR_VRDP_NO_MEMORY (-2006)
695/** Client has been rejected */
696#define VERR_VRDP_ACCESS_DENIED (-2007)
697/** VRPD receives a packet that is not supported */
698#define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
699/** VRDP script allowed the packet to be processed further */
700#define VINF_VRDP_PROCESS_PDU 2009
701/** VRDP script has completed its task */
702#define VINF_VRDP_OPERATION_COMPLETED 2010
703/** VRDP thread has started OK and will run */
704#define VINF_VRDP_THREAD_STARTED 2011
705/** Framebuffer is resized, terminate send bitmap procedure */
706#define VINF_VRDP_RESIZE_REQUESTED 2012
707/** Output can be enabled for the client. */
708#define VINF_VRDP_OUTPUT_ENABLE 2013
709/** @} */
710
711
712/** @name Configuration Manager (CFGM) Status Codes
713 * @{
714 */
715/** The integer value was too big for the requested representation. */
716#define VERR_CFGM_INTEGER_TOO_BIG (-2100)
717/** Child node was not found. */
718#define VERR_CFGM_CHILD_NOT_FOUND (-2101)
719/** Path to child node was invalid (i.e. empty). */
720#define VERR_CFGM_INVALID_CHILD_PATH (-2102)
721/** Value not found. */
722#define VERR_CFGM_VALUE_NOT_FOUND (-2103)
723/** No parent node specified. */
724#define VERR_CFGM_NO_PARENT (-2104)
725/** No node was specified. */
726#define VERR_CFGM_NO_NODE (-2105)
727/** The value is not an integer. */
728#define VERR_CFGM_NOT_INTEGER (-2106)
729/** The value is not a zero terminated character string. */
730#define VERR_CFGM_NOT_STRING (-2107)
731/** The value is not a byte string. */
732#define VERR_CFGM_NOT_BYTES (-2108)
733/** The specified string / bytes buffer was to small. Specify a larger one and retry. */
734#define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
735/** The path of a new node contained slashs or was empty. */
736#define VERR_CFGM_INVALID_NODE_PATH (-2160)
737/** A new node couldn't be inserted because one with the same name exists. */
738#define VERR_CFGM_NODE_EXISTS (-2161)
739/** A new leaf couldn't be inserted because one with the same name exists. */
740#define VERR_CFGM_LEAF_EXISTS (-2162)
741/** An unknown config value was encountered. */
742#define VERR_CFGM_CONFIG_UNKNOWN_VALUE (-2163)
743/** An unknown config node (key) was encountered. */
744#define VERR_CFGM_CONFIG_UNKNOWN_NODE (-2164)
745/** @} */
746
747
748/** @name Time Manager (TM) Status Codes
749 * @{
750 */
751/** The loaded timer state was incorrect. */
752#define VERR_TM_LOAD_STATE (-2200)
753/** The timer was not in the correct state for the request operation. */
754#define VERR_TM_INVALID_STATE (-2201)
755/** The timer was in a unknown state. Corruption or stupid coding error. */
756#define VERR_TM_UNKNOWN_STATE (-2202)
757/** The timer was stuck in an unstable state until we grew impatient and returned. */
758#define VERR_TM_UNSTABLE_STATE (-2203)
759/** @} */
760
761
762/** @name Recompiled Execution Manager (REM) Status Codes
763 * @{
764 */
765/** Fatal error in virtual hardware. */
766#define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
767/** Fatal error in the recompiler cpu. */
768#define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
769/** Recompiler execution was interrupted by forced action. */
770#define VINF_REM_INTERRUPED_FF 2302
771/** Too many similar traps. This is a very useful debug only
772 * check (we don't do double/tripple faults in REM). */
773#define VERR_REM_TOO_MANY_TRAPS (-2304)
774/** The REM is out of breakpoint slots. */
775#define VERR_REM_NO_MORE_BP_SLOTS (-2305)
776/** The REM could not find any breakpoint on the specified address. */
777#define VERR_REM_BP_NOT_FOUND (-2306)
778/** @} */
779
780
781/** @name Trap Manager / Monitor (TRPM) Status Codes
782 * @{
783 */
784/** No active trap. Cannot query or reset a non-existing trap. */
785#define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
786/** Active trap. Cannot assert a new trap when when one is already active. */
787#define VERR_TRPM_ACTIVE_TRAP (-2401)
788/** Reason for leaving GC: Guest tried to write to our IDT - fatal.
789 * The VM will be terminated assuming the worst, i.e. that the
790 * guest has read the idtr register. */
791#define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
792/** Reason for leaving GC: Fatal trap in hypervisor. */
793#define VERR_TRPM_DONT_PANIC (-2403)
794/** Reason for leaving GC: Double Fault. */
795#define VERR_TRPM_PANIC (-2404)
796/** The exception was dispatched for raw-mode execution. */
797#define VINF_TRPM_XCPT_DISPATCHED 2405
798/** @} */
799
800
801/** @name Selector Manager / Monitor (SELM) Status Code
802 * @{
803 */
804/** Reason for leaving GC: Guest tried to write to our GDT - fatal.
805 * The VM will be terminated assuming the worst, i.e. that the
806 * guest has read the gdtr register. */
807#define VERR_SELM_SHADOW_GDT_WRITE (-2500)
808/** Reason for leaving GC: Guest tried to write to our LDT - fatal.
809 * The VM will be terminated assuming the worst, i.e. that the
810 * guest has read the ldtr register. */
811#define VERR_SELM_SHADOW_LDT_WRITE (-2501)
812/** Reason for leaving GC: Guest tried to write to our TSS - fatal.
813 * The VM will be terminated assuming the worst, i.e. that the
814 * guest has read the ltr register. */
815#define VERR_SELM_SHADOW_TSS_WRITE (-2502)
816/** Reason for leaving GC: Sync the GDT table to solve a conflict. */
817#define VINF_SELM_SYNC_GDT 2503
818/** No valid TSS present. */
819#define VERR_SELM_NO_TSS (-2504)
820/** @} */
821
822
823/** @name I/O Manager / Monitor (IOM) Status Code
824 * @{
825 */
826/** The specified I/O port range was invalid.
827 * It was either empty or it was out of bounds. */
828#define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
829/** The specified GC I/O port range didn't have a corresponding HC range.
830 * IOMIOPortRegisterHC() must be called before IOMIOPortRegisterGC(). */
831#define VERR_IOM_NO_HC_IOPORT_RANGE (-2601)
832/** The specified I/O port range intruded on an existing range. There is
833 * a I/O port conflict between two device, or a device tried to register
834 * the same range twice. */
835#define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
836/** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
837#define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
838/** The specified I/O port range was owned by some other device(s). Both registration
839 * and deregistration, but in the first case only GC ranges. */
840#define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
841
842/** The specified MMIO range was invalid.
843 * It was either empty or it was out of bounds. */
844#define VERR_IOM_INVALID_MMIO_RANGE (-2605)
845/** The specified GC MMIO range didn't have a corresponding HC range.
846 * IOMMMIORegisterHC() must be called before IOMMMIORegisterGC(). */
847#define VERR_IOM_NO_HC_MMIO_RANGE (-2606)
848/** The specified MMIO range was owned by some other device(s). Both registration
849 * and deregistration, but in the first case only GC ranges. */
850#define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
851/** The specified MMIO range intruded on an existing range. There is
852 * a MMIO conflict between two device, or a device tried to register
853 * the same range twice. */
854#define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
855/** The MMIO range specified for removal was not found. */
856#define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
857/** The MMIO range specified for removal was invalid. The range didn't match
858 * quite match a set of existing ranges. It's not possible to remove parts of
859 * a MMIO range, only one or more full ranges. */
860#define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
861/** An invalid I/O port size was specified for a read or write operation. */
862#define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
863/** The MMIO handler was called for a bogus address! Internal error! */
864#define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
865/** The MMIO handler experienced a problem with the disassembler. */
866#define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
867/** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
868#define VERR_IOM_IOPORT_UNUSED (-2614)
869/** Unused MMIO register read, fill with 00. */
870#define VINF_IOM_MMIO_UNUSED_00 2615
871/** Unused MMIO register read, fill with FF. */
872#define VINF_IOM_MMIO_UNUSED_FF 2616
873
874/** Reason for leaving GC: I/O port read. */
875#define VINF_IOM_HC_IOPORT_READ 2620
876/** Reason for leaving GC: I/O port write. */
877#define VINF_IOM_HC_IOPORT_WRITE 2621
878/** Reason for leaving GC: MMIO write. */
879#define VINF_IOM_HC_MMIO_READ 2623
880/** Reason for leaving GC: MMIO read. */
881#define VINF_IOM_HC_MMIO_WRITE 2624
882/** Reason for leaving GC: MMIO read/write. */
883#define VINF_IOM_HC_MMIO_READ_WRITE 2625
884/** @} */
885
886
887/** @name Virtual Machine Monitor (VMM) Status Codes
888 * @{
889 */
890/** Reason for leaving RZ: Calling host function. */
891#define VINF_VMM_CALL_HOST 2700
892/** Reason for leaving R0: Hit a ring-0 assertion on EMT. */
893#define VERR_VMM_RING0_ASSERTION (-2701)
894/** The hyper CR3 differs between PGM and CPUM. */
895#define VERR_VMM_HYPER_CR3_MISMATCH (-2702)
896/** Reason for leaving RZ: Illegal call to ring-3. */
897#define VERR_VMM_RING3_CALL_DISABLED (-2703)
898/** @} */
899
900
901/** @name Pluggable Device and Driver Manager (PDM) Status Codes
902 * @{
903 */
904/** An invalid LUN specification was given. */
905#define VERR_PDM_NO_SUCH_LUN (-2800)
906/** A device encountered an unknown configuration value.
907 * This means that the device is potentially misconfigured and the device
908 * construction or unit attachment failed because of this. */
909#define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
910/** The above driver doesn't export a interface required by a driver being
911 * attached to it. Typical misconfiguration problem. */
912#define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
913/** The below driver doesn't export a interface required by the drive
914 * having attached it. Typical misconfiguration problem. */
915#define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
916/** A device didn't find a required interface with an attached driver.
917 * Typical misconfiguration problem. */
918#define VERR_PDM_MISSING_INTERFACE (-2804)
919/** A driver encountered an unknown configuration value.
920 * This means that the driver is potentially misconfigured and the driver
921 * construction failed because of this. */
922#define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
923/** The PCI bus assigned to a device didn't have room for it.
924 * Either too many devices are configured on the same PCI bus, or there are
925 * some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
926#define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
927/** A queue is out of free items, the queueing operation failed. */
928#define VERR_PDM_NO_QUEUE_ITEMS (-2807)
929/** Not possible to attach further drivers to the driver.
930 * A driver which doesn't support attachments (below of course) will
931 * return this status code if it found that further drivers were configured
932 * to be attached to it. */
933#define VERR_PDM_DRVINS_NO_ATTACH (-2808)
934/** Not possible to attach drivers to the device.
935 * A device which doesn't support attachments (below of course) will
936 * return this status code if it found that drivers were configured
937 * to be attached to it. */
938#define VERR_PDM_DEVINS_NO_ATTACH (-2809)
939/** No attached driver.
940 * The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
941 * this error when no driver was configured to be attached. */
942#define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
943/** The media geometry hasn't been set yet, so it cannot be obtained.
944 * The caller should then calculate the geometry from the media size. */
945#define VERR_PDM_GEOMETRY_NOT_SET (-2811)
946/** The media translation hasn't been set yet, so it cannot be obtained.
947 * The caller should then guess the translation. */
948#define VERR_PDM_TRANSLATION_NOT_SET (-2812)
949/** The media is not mounted, operation requires a mounted media. */
950#define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
951/** Mount failed because a media was already mounted. Unmount the media
952 * and retry the mount. */
953#define VERR_PDM_MEDIA_MOUNTED (-2814)
954/** The media is locked and cannot be unmounted. */
955#define VERR_PDM_MEDIA_LOCKED (-2815)
956/** No 'Type' attribute in the DrvBlock configuration.
957 * Misconfiguration. */
958#define VERR_PDM_BLOCK_NO_TYPE (-2816)
959/** The 'Type' attribute in the DrvBlock configuration had an unknown value.
960 * Misconfiguration. */
961#define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
962/** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
963 * Misconfiguration. */
964#define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
965/** The block driver type wasn't supported.
966 * Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
967#define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
968/** A attach or prepare mount call failed because the driver already
969 * had a driver attached. */
970#define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
971/** An attempt on deattaching a driver without anyone actually being attached, or
972 * performing any other operation on an attached driver. */
973#define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
974/** The attached driver configuration is missing the 'Driver' attribute. */
975#define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
976/** The configured driver wasn't found.
977 * Either the necessary driver modules wasn't loaded, the name was
978 * misspelled, or it was a misconfiguration. */
979#define VERR_PDM_DRIVER_NOT_FOUND (-2823)
980/** The Ring-3 module was already loaded. */
981#define VINF_PDM_ALREADY_LOADED (2824)
982/** The name of the module clashed with an existing module. */
983#define VERR_PDM_MODULE_NAME_CLASH (-2825)
984/** Couldn't find any export for registration of drivers/devices. */
985#define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
986/** A module name is too long. */
987#define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
988/** Driver name clash. Another driver with the same name as the
989 * one begin registred exists. */
990#define VERR_PDM_DRIVER_NAME_CLASH (-2828)
991/** The version of the driver registration structure is unknown
992 * to this VBox version. Either mixing incompatible versions or
993 * the structure isn't correctly initialized. */
994#define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
995/** Invalid entry in the driver registration structure. */
996#define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
997/** Invalid host bit mask. */
998#define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
999/** Not possible to detach a driver because the above driver/device
1000 * doesn't support it. The above entity doesn't implement the pfnDetach call. */
1001#define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
1002/** No PCI Bus is available to register the device with. This is usually a
1003 * misconfiguration or in rare cases a buggy pci device. */
1004#define VERR_PDM_NO_PCI_BUS (-2833)
1005/** The device is not a registered PCI device and thus cannot
1006 * perform any PCI operations. The device forgot to register it self. */
1007#define VERR_PDM_NOT_PCI_DEVICE (-2834)
1008
1009/** The version of the device registration structure is unknown
1010 * to this VBox version. Either mixing incompatible versions or
1011 * the structure isn't correctly initialized. */
1012#define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
1013/** Invalid entry in the device registration structure. */
1014#define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
1015/** Invalid host bit mask. */
1016#define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
1017/** The guest bit mask didn't match the guest being loaded. */
1018#define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
1019/** Device name clash. Another device with the same name as the
1020 * one begin registred exists. */
1021#define VERR_PDM_DEVICE_NAME_CLASH (-2839)
1022/** The device wasn't found. There was no registered device
1023 * by that name. */
1024#define VERR_PDM_DEVICE_NOT_FOUND (-2840)
1025/** The device instance was not found. */
1026#define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
1027/** The device instance have no base interface. */
1028#define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
1029/** The device instance have no such logical unit. */
1030#define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
1031/** The driver instance could not be found. */
1032#define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
1033/** Logical Unit was not found. */
1034#define VERR_PDM_LUN_NOT_FOUND (-2845)
1035/** The Logical Unit was found, but it had no driver attached to it. */
1036#define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
1037/** The Logical Unit was found, but it had no driver attached to it. */
1038#define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
1039/** No PIC device instance is registered with the current VM and thus
1040 * the PIC operation cannot be performed. */
1041#define VERR_PDM_NO_PIC_INSTANCE (-2847)
1042/** No APIC device instance is registered with the current VM and thus
1043 * the APIC operation cannot be performed. */
1044#define VERR_PDM_NO_APIC_INSTANCE (-2848)
1045/** No DMAC device instance is registered with the current VM and thus
1046 * the DMA operation cannot be performed. */
1047#define VERR_PDM_NO_DMAC_INSTANCE (-2849)
1048/** No RTC device instance is registered with the current VM and thus
1049 * the RTC or CMOS operation cannot be performed. */
1050#define VERR_PDM_NO_RTC_INSTANCE (-2850)
1051/** Unable to open the host interface due to a sharing violation . */
1052#define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
1053/** Unable to open the host interface. */
1054#define VERR_PDM_HIF_OPEN_FAILED (-2852)
1055/** The device doesn't support runtime driver attaching.
1056 * The PDMDEVREG::pfnAttach callback function is NULL. */
1057#define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
1058/** The driver doesn't support runtime driver attaching.
1059 * The PDMDRVREG::pfnAttach callback function is NULL. */
1060#define VERR_PDM_DRIVER_NO_RT_ATTACH (-2854)
1061/** Invalid host interface version. */
1062#define VERR_PDM_HIF_INVALID_VERSION (-2855)
1063
1064/** The version of the USB device registration structure is unknown
1065 * to this VBox version. Either mixing incompatible versions or
1066 * the structure isn't correctly initialized. */
1067#define VERR_PDM_UNKNOWN_USBREG_VERSION (-2856)
1068/** Invalid entry in the device registration structure. */
1069#define VERR_PDM_INVALID_USB_REGISTRATION (-2857)
1070/** Driver name clash. Another driver with the same name as the
1071 * one begin registred exists. */
1072#define VERR_PDM_USB_NAME_CLASH (-2858)
1073/** The USB hub is already registered. */
1074#define VERR_PDM_USB_HUB_EXISTS (-2859)
1075/** Couldn't find any USB hubs to attach the device to. */
1076#define VERR_PDM_NO_USB_HUBS (-2860)
1077/** Couldn't find any free USB ports to attach the device to. */
1078#define VERR_PDM_NO_USB_PORTS (-2861)
1079/** Couldn't find the USB Proxy device. Using OSE? */
1080#define VERR_PDM_NO_USBPROXY (-2862)
1081/** The async completion template is still used. */
1082#define VERR_PDM_ASYNC_TEMPLATE_BUSY (-2863)
1083/** The async completion task is already suspended. */
1084#define VERR_PDM_ASYNC_COMPLETION_ALREADY_SUSPENDED (-2864)
1085/** The async completion task is not suspended. */
1086#define VERR_PDM_ASYNC_COMPLETION_NOT_SUSPENDED (-2865)
1087/** The driver properties were invalid, and as a consequence construction
1088 * failed. Caused my unusable media or similar problems. */
1089#define VERR_PDM_DRIVER_INVALID_PROPERTIES (-2866)
1090/** Too many instances of a device. */
1091#define VERR_PDM_TOO_MANY_DEVICE_INSTANCES (-2867)
1092/** Too many instances of a driver. */
1093#define VERR_PDM_TOO_MANY_DRIVER_INSTANCES (-2868)
1094/** Too many instances of a usb device. */
1095#define VERR_PDM_TOO_MANY_USB_DEVICE_INSTANCES (-2869)
1096/** @} */
1097
1098
1099/** @name Host-Guest Communication Manager (HGCM) Status Codes
1100 * @{
1101 */
1102/** Requested service does not exist. */
1103#define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
1104/** Service rejected client connection */
1105#define VINF_HGCM_CLIENT_REJECTED 2901
1106/** Command address is invalid. */
1107#define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
1108/** Service will execute the command in background. */
1109#define VINF_HGCM_ASYNC_EXECUTE 2903
1110/** HGCM could not perform requested operation because of an internal error. */
1111#define VERR_HGCM_INTERNAL (-2904)
1112/** Invalid HGCM client id. */
1113#define VERR_HGCM_INVALID_CLIENT_ID (-2905)
1114/** The HGCM is saving state. */
1115#define VINF_HGCM_SAVE_STATE (2906)
1116/** Requested service already exists. */
1117#define VERR_HGCM_SERVICE_EXISTS (-2907)
1118
1119/** @} */
1120
1121
1122/** @name Network Address Translation Driver (DrvNAT) Status Codes
1123 * @{
1124 */
1125/** Failed to find the DNS configured for this machine. */
1126#define VINF_NAT_DNS 3000
1127/** Failed to convert the specified Guest IP to a binary IP address.
1128 * Malformed input. */
1129#define VERR_NAT_REDIR_GUEST_IP (-3001)
1130/** Failed while setting up a redirector rule.
1131 * There probably is a conflict between the rule and some existing
1132 * service on the computer. */
1133#define VERR_NAT_REDIR_SETUP (-3002)
1134/** @} */
1135
1136
1137/** @name HostIF Driver (DrvTUN) Status Codes
1138 * @{
1139 */
1140/** The Host Interface Networking init program failed. */
1141#define VERR_HOSTIF_INIT_FAILED (-3100)
1142/** The Host Interface Networking device name is too long. */
1143#define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
1144/** The Host Interface Networking name config IOCTL call failed. */
1145#define VERR_HOSTIF_IOCTL (-3102)
1146/** Failed to make the Host Interface Networking handle non-blocking. */
1147#define VERR_HOSTIF_BLOCKING (-3103)
1148/** If a Host Interface Networking filehandle was specified it's not allowed to
1149 * have any init or term programs. */
1150#define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
1151/** The Host Interface Networking terminate program failed. */
1152#define VERR_HOSTIF_TERM_FAILED (-3105)
1153/** @} */
1154
1155
1156/** @name VBox HDD Container (VD) Status Codes
1157 * @{
1158 */
1159/** Invalid image type. */
1160#define VERR_VD_INVALID_TYPE (-3200)
1161/** Operation can't be done in current HDD container state. */
1162#define VERR_VD_INVALID_STATE (-3201)
1163/** Configuration value not found. */
1164#define VERR_VD_VALUE_NOT_FOUND (-3202)
1165/** Virtual HDD is not opened. */
1166#define VERR_VD_NOT_OPENED (-3203)
1167/** Requested image is not opened. */
1168#define VERR_VD_IMAGE_NOT_FOUND (-3204)
1169/** Image is read-only. */
1170#define VERR_VD_IMAGE_READ_ONLY (-3205)
1171/** Geometry hasn't been set. */
1172#define VERR_VD_GEOMETRY_NOT_SET (-3206)
1173/** No data for this block in image. */
1174#define VERR_VD_BLOCK_FREE (-3207)
1175/** Differencing and parent images can't be used together due to UUID. */
1176#define VERR_VD_UUID_MISMATCH (-3208)
1177/** Asynchronous I/O request finished. */
1178#define VINF_VD_ASYNC_IO_FINISHED 3209
1179/** Asynchronous I/O is not finished yet. */
1180#define VERR_VD_ASYNC_IO_IN_PROGRESS (-3210)
1181/** The image is too small or too large for this format. */
1182#define VERR_VD_INVALID_SIZE (-3211)
1183/** Generic: Invalid image file header. Use this for plugins. */
1184#define VERR_VD_GEN_INVALID_HEADER (-3220)
1185/** VDI: Invalid image file header. */
1186#define VERR_VD_VDI_INVALID_HEADER (-3230)
1187/** VDI: Invalid image file header: invalid signature. */
1188#define VERR_VD_VDI_INVALID_SIGNATURE (-3231)
1189/** VDI: Invalid image file header: invalid version. */
1190#define VERR_VD_VDI_UNSUPPORTED_VERSION (-3232)
1191/** Comment string is too long. */
1192#define VERR_VD_VDI_COMMENT_TOO_LONG (-3233)
1193/** VMDK: Invalid image file header. */
1194#define VERR_VD_VMDK_INVALID_HEADER (-3240)
1195/** VMDK: Invalid image file header: invalid version. */
1196#define VERR_VD_VMDK_UNSUPPORTED_VERSION (-3241)
1197/** VMDK: Image property not found. */
1198#define VERR_VD_VMDK_VALUE_NOT_FOUND (-3242)
1199/** VMDK: Operation can't be done in current image state. */
1200#define VERR_VD_VMDK_INVALID_STATE (-3243)
1201/** VMDK: Format is invalid/inconsistent. */
1202#define VERR_VD_VMDK_INVALID_FORMAT (-3244)
1203/** VMDK: Invalid write position. */
1204#define VERR_VD_VMDK_INVALID_WRITE (-3245)
1205/** iSCSI: Invalid header, i.e. dummy for validity check. */
1206#define VERR_VD_ISCSI_INVALID_HEADER (-3250)
1207/** iSCSI: Configuration value is unknown. This indicates misconfiguration. */
1208#define VERR_VD_ISCSI_UNKNOWN_CFG_VALUES (-3251)
1209/** iSCSI: Interface is unknown. This indicates misconfiguration. */
1210#define VERR_VD_ISCSI_UNKNOWN_INTERFACE (-3252)
1211/** iSCSI: Operation can't be done in current image state. */
1212#define VERR_VD_ISCSI_INVALID_STATE (-3253)
1213/** iSCSI: Invalid device type (not a disk). */
1214#define VERR_VD_ISCSI_INVALID_TYPE (-3254)
1215/** VHD: Invalid image file header. */
1216#define VERR_VD_VHD_INVALID_HEADER (-3260)
1217/** Raw: Invalid image file header. */
1218#define VERR_VD_RAW_INVALID_HEADER (-3270)
1219/** Raw: Invalid image file type. */
1220#define VERR_VD_RAW_INVALID_TYPE (-3271)
1221/** The backend needs more metadata before it can continue. */
1222#define VERR_VD_NOT_ENOUGH_METADATA (-3272)
1223/** @} */
1224
1225
1226/** @name VBox Guest Library (VBGL) Status Codes
1227 * @{
1228 */
1229/** Library was not initialized. */
1230#define VERR_VBGL_NOT_INITIALIZED (-3300)
1231/** Virtual address was not allocated by the library. */
1232#define VERR_VBGL_INVALID_ADDR (-3301)
1233/** IOCtl to VBoxGuest driver failed. */
1234#define VERR_VBGL_IOCTL_FAILED (-3302)
1235/** @} */
1236
1237
1238/** @name VBox USB (VUSB) Status Codes
1239 * @{
1240 */
1241/** No available ports on the hub.
1242 * This error is returned when a device is attempted created and/or attached
1243 * to a hub which is out of ports. */
1244#define VERR_VUSB_NO_PORTS (-3400)
1245/** The requested operation cannot be performed on a detached USB device. */
1246#define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
1247/** Failed to allocate memory for a URB. */
1248#define VERR_VUSB_NO_URB_MEMORY (-3402)
1249/** General failure during URB queuing.
1250 * This will go away when the queueing gets proper status code handling. */
1251#define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
1252/** Device creation failed because the USB device name was not found. */
1253#define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
1254/** Not permitted to open the USB device.
1255 * The user doesn't have access to the device in the usbfs, check the mount options. */
1256#define VERR_VUSB_USBFS_PERMISSION (-3405)
1257/** The requested operation cannot be performed because the device
1258 * is currently being reset. */
1259#define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
1260/** The requested operation cannot be performed because the device
1261 * is currently suspended. */
1262#define VERR_VUSB_DEVICE_IS_SUSPENDED (-3407)
1263/** @} */
1264
1265
1266/** @name VBox VGA Status Codes
1267 * @{
1268 */
1269/** One of the custom modes was incorrect.
1270 * The format or bit count of the custom mode value is invalid. */
1271#define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
1272/** The display connector is resizing. */
1273#define VINF_VGA_RESIZE_IN_PROGRESS (3501)
1274/** @} */
1275
1276
1277/** @name Internal Networking Status Codes
1278 * @{
1279 */
1280/** The networking interface to filter was not found. */
1281#define VERR_INTNET_FLT_IF_NOT_FOUND (-3600)
1282/** The networking interface to filter was busy (used by someone). */
1283#define VERR_INTNET_FLT_IF_BUSY (-3601)
1284/** Failed to create or connect to a networking interface filter. */
1285#define VERR_INTNET_FLT_IF_FAILED (-3602)
1286/** The network already exists with a different trunk configuration. */
1287#define VERR_INTNET_INCOMPATIBLE_TRUNK (-3603)
1288/** The network already exists with a different security profile (restricted / public). */
1289#define VERR_INTNET_INCOMPATIBLE_FLAGS (-3604)
1290/** @} */
1291
1292
1293/** @name Support Driver Status Codes
1294 * @{
1295 */
1296/** The component factory was not found. */
1297#define VERR_SUPDRV_COMPONENT_NOT_FOUND (-3700)
1298/** The component factories do not support the requested interface. */
1299#define VERR_SUPDRV_INTERFACE_NOT_SUPPORTED (-3701)
1300/** The service module was not found. */
1301#define VERR_SUPDRV_SERVICE_NOT_FOUND (-3702)
1302/** The host kernel is too old. */
1303#define VERR_SUPDRV_KERNEL_TOO_OLD_FOR_VTX (-3703)
1304/** @} */
1305
1306
1307/** @name VBox GMM Status Codes
1308 * @{
1309 */
1310/** The GMM is out of pages and needs to be give another chunk of user memory that
1311 * it can lock down and borrow pages from. */
1312#define VERR_GMM_SEED_ME (-3800)
1313/** Unable to allocate more pages from the host system. */
1314#define VERR_GMM_OUT_OF_MEMORY (-3801)
1315/** Hit the global allocation limit.
1316 * If you know there is still sufficient memory available, try raise the limit. */
1317#define VERR_GMM_HIT_GLOBAL_LIMIT (-3802)
1318/** Hit the a VM account limit. */
1319#define VERR_GMM_HIT_VM_ACCOUNT_LIMIT (-3803)
1320/** Attempt to free more memory than what was previously allocated. */
1321#define VERR_GMM_ATTEMPT_TO_FREE_TOO_MUCH (-3804)
1322/** Attempted to report too many pages as deflated. */
1323#define VERR_GMM_ATTEMPT_TO_DEFLATE_TOO_MUCH (-3805)
1324/** The page to be freed or updated was not found. */
1325#define VERR_GMM_PAGE_NOT_FOUND (-3806)
1326/** The specified shared page was not actually private. */
1327#define VERR_GMM_PAGE_NOT_PRIVATE (-3807)
1328/** The specified shared page was not actually shared. */
1329#define VERR_GMM_PAGE_NOT_SHARED (-3808)
1330/** The page to be freed was already freed. */
1331#define VERR_GMM_PAGE_ALREADY_FREE (-3809)
1332/** The page to be updated or freed was noted owned by the caller. */
1333#define VERR_GMM_NOT_PAGE_OWNER (-3810)
1334/** The specified chunk was not found. */
1335#define VERR_GMM_CHUNK_NOT_FOUND (-3811)
1336/** The chunk has already been mapped into the process. */
1337#define VERR_GMM_CHUNK_ALREADY_MAPPED (-3812)
1338/** The chunk to be unmapped isn't actually mapped into the process. */
1339#define VERR_GMM_CHUNK_NOT_MAPPED (-3813)
1340/** The reservation or reservation update was declined - too many VMs, too
1341 * little memory, and/or too low GMM configuration. */
1342#define VERR_GMM_MEMORY_RESERVATION_DECLINED (-3814)
1343/** @} */
1344
1345
1346/** @name VBox GVM Status Codes
1347 * @{
1348 */
1349/** The GVM is out of VM handle space. */
1350#define VERR_GVM_TOO_MANY_VMS (-3900)
1351/** The EMT was not blocked at the time of the call. */
1352#define VINF_GVM_NOT_BLOCKED 3901
1353/** The EMT was not busy running guest code at the time of the call. */
1354#define VINF_GVM_NOT_BUSY_IN_GC 3902
1355/** RTThreadYield was called during a GVMMR0SchedPoll call. */
1356#define VINF_GVM_YIELDED 3903
1357/** @} */
1358
1359
1360/** @name VBox VMX Status Codes
1361 * @{
1362 */
1363/** Invalid VMCS index or write to read-only element. */
1364#define VERR_VMX_INVALID_VMCS_FIELD (-4000)
1365/** Invalid VMCS pointer. */
1366#define VERR_VMX_INVALID_VMCS_PTR (-4001)
1367/** Invalid VMXON pointer. */
1368#define VERR_VMX_INVALID_VMXON_PTR (-4002)
1369/** Generic VMX failure. */
1370#define VERR_VMX_GENERIC (-4003)
1371/** Invalid CPU mode for VMX execution. */
1372#define VERR_VMX_UNSUPPORTED_MODE (-4004)
1373/** Unable to start VM execution. */
1374#define VERR_VMX_UNABLE_TO_START_VM (-4005)
1375/** Unable to resume VM execution. */
1376#define VERR_VMX_UNABLE_TO_RESUME_VM (-4006)
1377/** Unable to switch due to invalid host state. */
1378#define VERR_VMX_INVALID_HOST_STATE (-4007)
1379/** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */
1380#define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4008)
1381/** VMX CPU extension not available */
1382#define VERR_VMX_NO_VMX (-4009)
1383/** VMXON failed; possibly because it was already run before */
1384#define VERR_VMX_VMXON_FAILED (-4010)
1385/** CPU was incorrectly left in VMX root mode; incompatible with VirtualBox */
1386#define VERR_VMX_IN_VMX_ROOT_MODE (-4011)
1387/** Somebody cleared X86_CR4_VMXE in the CR4 register. */
1388#define VERR_VMX_X86_CR4_VMXE_CLEARED (-4012)
1389/** VT-x features locked or unavailable in MSR. */
1390#define VERR_VMX_MSR_LOCKED_OR_DISABLED (-4013)
1391/** Unable to switch due to invalid guest state. */
1392#define VERR_VMX_INVALID_GUEST_STATE (-4014)
1393/** Unexpected VM exit code. */
1394#define VERR_VMX_UNEXPECTED_EXIT_CODE (-4015)
1395/** Unexpected VM exception code. */
1396#define VERR_VMX_UNEXPECTED_EXCEPTION (-4016)
1397/** Unexpected interruption exit code. */
1398#define VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_CODE (-4017)
1399/** @} */
1400
1401
1402/** @name VBox SVM Status Codes
1403 * @{
1404 */
1405/** Unable to start VM execution. */
1406#define VERR_SVM_UNABLE_TO_START_VM (-4050)
1407/** AMD-V bit not set in K6_EFER MSR */
1408#define VERR_SVM_ILLEGAL_EFER_MSR (-4051)
1409/** AMD-V CPU extension not available. */
1410#define VERR_SVM_NO_SVM (-4052)
1411/** AMD-V CPU extension disabled (by BIOS). */
1412#define VERR_SVM_DISABLED (-4053)
1413/** AMD-V CPU extension in-use. */
1414#define VERR_SVM_IN_USE (-4054)
1415/** @} */
1416
1417
1418/** @name VBox HWACCM Status Codes
1419 * @{
1420 */
1421/** Unable to start VM execution. */
1422#define VERR_HWACCM_UNKNOWN_CPU (-4100)
1423/** No CPUID support. */
1424#define VERR_HWACCM_NO_CPUID (-4101)
1425/** Host is about to go into suspend mode. */
1426#define VERR_HWACCM_SUSPEND_PENDING (-4102)
1427/** Conflicting CFGM values. */
1428#define VERR_HWACCM_CONFIG_MISMATCH (-4103)
1429/** @} */
1430
1431
1432/** @name VBox Disassembler Status Codes
1433 * @{
1434 */
1435/** Invalid opcode byte(s) */
1436#define VERR_DIS_INVALID_OPCODE (-4200)
1437/** Generic failure during disassembly. */
1438#define VERR_DIS_GEN_FAILURE (-4201)
1439/** @} */
1440
1441
1442/** @name VBox Webservice Status Codes
1443 * @{
1444 */
1445/** Authentication failed (ISessionManager::logon()) */
1446#define VERR_WEB_NOT_AUTHENTICATED (-4300)
1447/** Invalid format of managed object reference */
1448#define VERR_WEB_INVALID_MANAGED_OBJECT_REFERENCE (-4301)
1449/** Invalid session ID in managed object reference */
1450#define VERR_WEB_INVALID_SESSION_ID (-4302)
1451/** Invalid object ID in managed object reference */
1452#define VERR_WEB_INVALID_OBJECT_ID (-4303)
1453/** Unsupported interface for managed object reference */
1454#define VERR_WEB_UNSUPPORTED_INTERFACE (-4304)
1455/** @} */
1456
1457
1458/** @name VBox PARAV Status Codes
1459 * @{
1460 */
1461/** Switch back to host */
1462#define VINF_PARAV_SWITCH_TO_HOST 4400
1463
1464/** @} */
1465
1466/** @name VBox Video HW Acceleration command status
1467 * @{
1468 */
1469/** command processing is pending, a completion handler will be called */
1470#define VINF_VHWA_CMD_PENDING 4500
1471
1472/** @} */
1473
1474
1475/** @name VBox Webservice Status Codes
1476 * @{
1477 */
1478/** Object not found. */
1479#define VERR_COM_OBJECT_NOT_FOUND (-4601)
1480/** Invalid machine state. */
1481#define VERR_COM_INVALID_VM_STATE (-4602)
1482/** VM error. */
1483#define VERR_COM_VM_ERROR (-4603)
1484/** File error. */
1485#define VERR_COM_FILE_ERROR (-4604)
1486/** IPRT error. */
1487#define VERR_COM_IPRT_ERROR (-4605)
1488/** PDM error. */
1489#define VERR_COM_PDM_ERROR (-4606)
1490/** Invalid object state. */
1491#define VERR_COM_INVALID_OBJECT_STATE (-4607)
1492/** Host error. */
1493#define VERR_COM_HOST_ERROR (-4608)
1494/** Not supported. */
1495#define VERR_COM_NOT_SUPPORTED (-4609)
1496/** XML error. */
1497#define VERR_COM_XML_ERROR (-4610)
1498/** Invalid session state. */
1499#define VERR_COM_INVALID_SESSION_STATE (-4611)
1500/** Invalid session state. */
1501#define VERR_COM_OBJECT_IN_USE (-4612)
1502/** @} */
1503
1504/** @name VBox CPU hotplug Status codes
1505 * @{
1506 */
1507/** CPU hotplug events from VMMDev are not monitored by the guest */
1508#define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST (-4700)
1509/** @} */
1510
1511/** @name VBox async I/O manager Status Codes
1512 * @{
1513 */
1514/** Async I/O task is pending, a completion handler will be called. */
1515#define VINF_AIO_TASK_PENDING 4800
1516/** @} */
1517
1518/* SED-END */
1519
1520/** @} */
1521
1522
1523#endif
1524
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