VirtualBox

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

Last change on this file since 20363 was 20158, checked in by vboxsync, 15 years ago

Extra VCPU checks. Attempt to fix alignment issue

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