VirtualBox

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

Last change on this file since 19288 was 18927, checked in by vboxsync, 16 years ago

Big step to separate VMM data structures for guest SMP. (pgm, em)

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