VirtualBox

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

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

VMM++: new EM status code VINF_EM_DBG_RING0_ASSERTION for distinguishing ring-0 and hyper assertions. Resynched the .mac files, hacking the x86.h sed transformations in the process.

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