VirtualBox

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

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

Added VINF_EM_RAW_EMULATE_IO_BLOCK

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