VirtualBox

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

Last change on this file since 45105 was 45105, checked in by vboxsync, 12 years ago

VMM/VMMR0: HM bits, fix WinXP booting with unrestricted.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 105.8 KB
Line 
1/** @file
2 * VirtualBox Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006-2013 Oracle Corporation
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
26#ifndef ___VBox_err_h
27#define ___VBox_err_h
28
29#include <VBox/cdefs.h>
30#include <iprt/err.h>
31
32
33/** @defgroup grp_err Error Codes
34 * @{
35 */
36
37/* SED-START */
38
39/** @name Misc. Status Codes
40 * @{
41 */
42/** Failed to allocate VM memory. */
43#define VERR_NO_VM_MEMORY (-1000)
44/** RC is toasted and the VMM should be terminated at once, but no need to
45 * panic about it :-) */
46#define VERR_DONT_PANIC (-1001)
47/** Unsupported CPU. */
48#define VERR_UNSUPPORTED_CPU (-1002)
49/** Unsupported CPU mode. */
50#define VERR_UNSUPPORTED_CPU_MODE (-1003)
51/** Page not present. */
52#define VERR_PAGE_NOT_PRESENT (-1004)
53/** Invalid/Corrupted configuration file. */
54#define VERR_CFG_INVALID_FORMAT (-1005)
55/** No configuration value exists. */
56#define VERR_CFG_NO_VALUE (-1006)
57/** Selector not present. */
58#define VERR_SELECTOR_NOT_PRESENT (-1007)
59/** Not code selector. */
60#define VERR_NOT_CODE_SELECTOR (-1008)
61/** Not data selector. */
62#define VERR_NOT_DATA_SELECTOR (-1009)
63/** Out of selector bounds. */
64#define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
65/** Invalid selector. Usually beyond table limits. */
66#define VERR_INVALID_SELECTOR (-1011)
67/** Invalid requested privilegde level. */
68#define VERR_INVALID_RPL (-1012)
69/** PML4 entry not present. */
70#define VERR_PAGE_MAP_LEVEL4_NOT_PRESENT (-1013)
71/** Page directory pointer not present. */
72#define VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT (-1014)
73/** Raw mode doesn't support SMP. */
74#define VERR_RAW_MODE_INVALID_SMP (-1015)
75/** Invalid VM handle. */
76#define VERR_INVALID_VM_HANDLE (-1016)
77/** Invalid VM handle. */
78#define VERR_INVALID_VMCPU_HANDLE (-1017)
79/** Invalid Virtual CPU ID. */
80#define VERR_INVALID_CPU_ID (-1018)
81/** Too many VCPUs. */
82#define VERR_TOO_MANY_CPUS (-1019)
83/** The service was disabled on the host.
84 * Returned by pfnInit in VBoxService to indicated a non-fatal error that
85 * should results in the particular service being disabled. */
86#define VERR_SERVICE_DISABLED (-1020)
87/** The requested feature is not supported in raw-mode. */
88#define VERR_NOT_SUP_IN_RAW_MODE (-1021)
89/** @} */
90
91
92/** @name Execution Monitor/Manager (EM) Status Codes
93 *
94 * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
95 * are of vital importance. The lower the number the higher importance
96 * as a scheduling instruction.
97 * @{
98 */
99/** First scheduling related status code. */
100#define VINF_EM_FIRST 1100
101/** Indicating that the VM is being terminated and that the the execution
102 * shall stop. */
103#define VINF_EM_TERMINATE 1100
104/** Hypervisor code was stepped.
105 * EM will first send this to the debugger, and if the issue isn't
106 * resolved there it will enter guru meditation. */
107#define VINF_EM_DBG_HYPER_STEPPED 1101
108/** Hit a breakpoint in the hypervisor code,
109 * EM will first send this to the debugger, and if the issue isn't
110 * resolved there it will enter guru meditation. */
111#define VINF_EM_DBG_HYPER_BREAKPOINT 1102
112/** Hit a possible assertion in the hypervisor code,
113 * EM will first send this to the debugger, and if the issue isn't
114 * resolved there it will enter guru meditation. */
115#define VINF_EM_DBG_HYPER_ASSERTION 1103
116/** Indicating that the VM should be suspended for debugging because
117 * the developer wants to inspect the VM state. */
118#define VINF_EM_DBG_STOP 1105
119/** Indicating success single stepping and that EM should report that
120 * event to the debugger. */
121#define VINF_EM_DBG_STEPPED 1106
122/** Indicating that a breakpoint was hit and that EM should notify the debugger
123 * and in the event there is no debugger fail fatally. */
124#define VINF_EM_DBG_BREAKPOINT 1107
125/** Indicating that EM should single step an instruction.
126 * The instruction is stepped in the current execution mode (RAW/REM). */
127#define VINF_EM_DBG_STEP 1108
128/** Indicating that the VM is being turned off and that the EM should
129 * exit to the VM awaiting the destruction request. */
130#define VINF_EM_OFF 1109
131/** Indicating that the VM has been suspended and that the the thread
132 * should wait for request telling it what to do next. */
133#define VINF_EM_SUSPEND 1110
134/** Indicating that the VM has been reset and that scheduling goes
135 * back to startup defaults. */
136#define VINF_EM_RESET 1111
137/** Indicating that the VM has executed a halt instruction and that
138 * the emulation thread should wait for an interrupt before resuming
139 * execution. */
140#define VINF_EM_HALT 1112
141/** Indicating that the VM has been resumed and that the thread should
142 * start executing. */
143#define VINF_EM_RESUME 1113
144/** Indicating that we've got an out-of-memory condition and that we need
145 * to take the appropriate actions to deal with this.
146 * @remarks It might seem odd at first that this has lower priority than VINF_EM_HALT,
147 * VINF_EM_SUSPEND, and VINF_EM_RESUME. The reason is that these events are
148 * vital to correctly operating the VM. Also, they can't normally occur together
149 * with an out-of-memory condition, and even if that should happen the condition
150 * will be rediscovered before executing any more code. */
151#define VINF_EM_NO_MEMORY 1114
152/** The fatal variant of VINF_EM_NO_MEMORY. */
153#define VERR_EM_NO_MEMORY (-1114)
154/** Indicating that a rescheduling to recompiled execution.
155 * Typically caused by raw-mode executing code which is difficult/slow
156 * to virtualize rawly.
157 * @remarks Important to have a higher priority (lower number) than the other rescheduling status codes. */
158#define VINF_EM_RESCHEDULE_REM 1115
159/** Indicating that a rescheduling to vmx-mode execution.
160 * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible. */
161#define VINF_EM_RESCHEDULE_HM 1116
162/** Indicating that a rescheduling to raw-mode execution.
163 * Typically caused by REM detecting that raw-mode execution is possible.
164 * @remarks Important to have a higher priority (lower number) than VINF_EM_RESCHEDULE. */
165#define VINF_EM_RESCHEDULE_RAW 1117
166/** Indicating that a rescheduling now is required. Typically caused by
167 * interrupts having changed the EIP. */
168#define VINF_EM_RESCHEDULE 1118
169/** PARAV call */
170#define VINF_EM_RESCHEDULE_PARAV 1119
171/** Go back into wait for SIPI mode */
172#define VINF_EM_WAIT_SIPI 1120
173/** Last scheduling related status code. (inclusive) */
174#define VINF_EM_LAST 1120
175
176/** Reason for leaving RC: Guest trap which couldn't be handled in RC.
177 * The trap is generally forwarded to the REM and executed there. */
178#define VINF_EM_RAW_GUEST_TRAP 1121
179/** Reason for leaving RC: Interrupted by external interrupt.
180 * The interrupt needed to be handled by the host OS. */
181#define VINF_EM_RAW_INTERRUPT 1122
182/** Reason for leaving RC: Interrupted by external interrupt while in hypervisor
183 * code. The interrupt needed to be handled by the host OS and hypervisor
184 * execution must be resumed. VM state is not complete at this point. */
185#define VINF_EM_RAW_INTERRUPT_HYPER 1123
186/** Reason for leaving RC: A Ring switch was attempted.
187 * Normal cause of action is to execute this in REM. */
188#define VINF_EM_RAW_RING_SWITCH 1124
189/** Reason for leaving RC: A Ring switch was attempted using software interrupt.
190 * Normal cause of action is to execute this in REM. */
191#define VINF_EM_RAW_RING_SWITCH_INT 1125
192/** Reason for leaving RC: A privileged instruction was attempted executed.
193 * Normal cause of action is to execute this in REM. */
194#define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1126
195
196/** Reason for leaving RZ: Emulate instruction. */
197#define VINF_EM_RAW_EMULATE_INSTR 1127
198/** Reason for leaving RC: Unhandled TSS write.
199 * Recompiler gets control. */
200#define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1128
201/** Reason for leaving RC: Unhandled LDT write.
202 * Recompiler gets control. */
203#define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1129
204/** Reason for leaving RC: Unhandled IDT write.
205 * Recompiler gets control. */
206#define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1130
207/** Reason for leaving RC: Unhandled GDT write.
208 * Recompiler gets control. */
209#define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1131
210/** Reason for leaving RC: Unhandled Page Directory write.
211 * Recompiler gets control. */
212#define VINF_EM_RAW_EMULATE_INSTR_PD_FAULT 1132
213/** Reason for leaving RC: jump inside generated patch jump.
214 * Fatal error. */
215#define VERR_EM_RAW_PATCH_CONFLICT (-1133)
216/** Reason for leaving RC: Hlt instruction.
217 * Recompiler gets control. */
218#define VINF_EM_RAW_EMULATE_INSTR_HLT 1134
219/** Reason for leaving RZ: Ring-3 operation pending. */
220#define VINF_EM_RAW_TO_R3 1135
221/** Reason for leaving RZ: Timer pending. */
222#define VINF_EM_RAW_TIMER_PENDING 1136
223/** Reason for leaving RC: Interrupt pending (guest). */
224#define VINF_EM_RAW_INTERRUPT_PENDING 1137
225/** Reason for leaving RC: Encountered a stale selector. */
226#define VINF_EM_RAW_STALE_SELECTOR 1138
227/** Reason for leaving RC: The IRET resuming guest code trapped. */
228#define VINF_EM_RAW_IRET_TRAP 1139
229/** Reason for leaving RC: Emulate (MM)IO intensive code in the recompiler. */
230#define VINF_EM_RAW_EMULATE_IO_BLOCK 1140
231/** The interpreter was unable to deal with the instruction at hand. */
232#define VERR_EM_INTERPRETER (-1148)
233/** Internal EM error caused by an unknown warning or informational status code. */
234#define VERR_EM_INTERNAL_ERROR (-1149)
235/** Pending VM request packet. */
236#define VINF_EM_PENDING_REQUEST 1150
237/** Start instruction stepping (debug only). */
238#define VINF_EM_RAW_EMULATE_DBG_STEP 1151
239/** Patch TPR access instruction. */
240#define VINF_EM_HM_PATCH_TPR_INSTR 1152
241/** The EMInterpretDisasOne / EMInterpretDisasOneEx methods failed to
242 * disassemble the instruction. */
243#define VERR_EM_INTERNAL_DISAS_ERROR (-1153)
244/** Unexpected guest mapping conflict detected. */
245#define VERR_EM_UNEXPECTED_MAPPING_CONFLICT (-1154)
246/** @} */
247
248
249/** @name Debugging Facility (DBGF) DBGF Status Codes
250 * @{
251 */
252/** The function called requires the caller to be attached as a
253 * debugger to the VM. */
254#define VERR_DBGF_NOT_ATTACHED (-1200)
255/** Someone (including the caller) was already attached as
256 * debugger to the VM. */
257#define VERR_DBGF_ALREADY_ATTACHED (-1201)
258/** Tried to hald a debugger which was already halted.
259 * (This is a warning and not an error.) */
260#define VWRN_DBGF_ALREADY_HALTED 1202
261/** The DBGF has no more free breakpoint slots. */
262#define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
263/** The DBGF couldn't find the specified breakpoint. */
264#define VERR_DBGF_BP_NOT_FOUND (-1204)
265/** Attempted to enabled a breakpoint which was already enabled. */
266#define VINF_DBGF_BP_ALREADY_ENABLED 1205
267/** Attempted to disabled a breakpoint which was already disabled. */
268#define VINF_DBGF_BP_ALREADY_DISABLED 1206
269/** The breakpoint already exists. */
270#define VINF_DBGF_BP_ALREADY_EXIST 1207
271/** The byte string was not found. */
272#define VERR_DBGF_MEM_NOT_FOUND (-1208)
273/** The OS was not detected. */
274#define VERR_DBGF_OS_NOT_DETCTED (-1209)
275/** The OS was not detected. */
276#define VINF_DBGF_OS_NOT_DETCTED 1209
277/** The specified register was not found. */
278#define VERR_DBGF_REGISTER_NOT_FOUND (-1210)
279/** The value was truncated to fit.
280 * For queries this means that the register is wider than the queried value.
281 * For setters this means that the value is wider than the register. */
282#define VINF_DBGF_TRUNCATED_REGISTER 1211
283/** The value was zero extended to fit.
284 * For queries this means that the register is narrower than the queried value.
285 * For setters this means that the value is narrower than the register. */
286#define VINF_DBGF_ZERO_EXTENDED_REGISTER 1212
287/** The requested type conversion was not supported. */
288#define VERR_DBGF_UNSUPPORTED_CAST (-1213)
289/** The register is read-only and cannot be modified. */
290#define VERR_DBGF_READ_ONLY_REGISTER (-1214)
291/** Internal processing error \#1 in the DBGF register code. */
292#define VERR_DBGF_REG_IPE_1 (-1215)
293/** Internal processing error \#2 in the DBGF register code. */
294#define VERR_DBGF_REG_IPE_2 (-1216)
295/** Unhandled \#DB in hypervisor code. */
296#define VERR_DBGF_HYPER_DB_XCPT (-1217)
297/** Internal processing error \#1 in the DBGF stack code. */
298#define VERR_DBGF_STACK_IPE_1 (-1218)
299/** Internal processing error \#2 in the DBGF stack code. */
300#define VERR_DBGF_STACK_IPE_2 (-1219)
301/** No trace buffer available, please change the VM config. */
302#define VERR_DBGF_NO_TRACE_BUFFER (-1220)
303/** @} */
304
305
306/** @name Patch Manager (PATM) Status Codes
307 * @{
308 */
309/** Non fatal Patch Manager analysis phase warning */
310#define VWRN_CONTINUE_ANALYSIS 1400
311/** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
312#define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
313/** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
314#define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
315/** Patch installation refused (patch too complex or unsupported instructions ) */
316#define VERR_PATCHING_REFUSED (-1401)
317/** Unable to find patch */
318#define VERR_PATCH_NOT_FOUND (-1402)
319/** Patch disabled */
320#define VERR_PATCH_DISABLED (-1403)
321/** Patch enabled */
322#define VWRN_PATCH_ENABLED 1404
323/** Patch was already disabled */
324#define VERR_PATCH_ALREADY_DISABLED (-1405)
325/** Patch was already enabled */
326#define VERR_PATCH_ALREADY_ENABLED (-1406)
327/** Patch was removed. */
328#define VWRN_PATCH_REMOVED 1407
329
330/** Reason for leaving RC: \#GP with EIP pointing to patch code. */
331#define VINF_PATM_PATCH_TRAP_GP 1408
332/** First leave RC code. */
333#define VINF_PATM_LEAVE_RC_FIRST VINF_PATM_PATCH_TRAP_GP
334/** Reason for leaving RC: \#PF with EIP pointing to patch code. */
335#define VINF_PATM_PATCH_TRAP_PF 1409
336/** Reason for leaving RC: int3 with EIP pointing to patch code. */
337#define VINF_PATM_PATCH_INT3 1410
338/** Reason for leaving RC: \#PF for monitored patch page. */
339#define VINF_PATM_CHECK_PATCH_PAGE 1411
340/** Reason for leaving RC: duplicate instruction called at current eip. */
341#define VINF_PATM_DUPLICATE_FUNCTION 1412
342/** Execute one instruction with the recompiler */
343#define VINF_PATCH_EMULATE_INSTR 1413
344/** Reason for leaving RC: attempt to patch MMIO write. */
345#define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
346/** Reason for leaving RC: attempt to patch MMIO read. */
347#define VINF_PATM_HC_MMIO_PATCH_READ 1415
348/** Reason for leaving RC: pending irq after iret that sets IF. */
349#define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
350/** Last leave RC code. */
351#define VINF_PATM_LEAVE_RC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
352
353/** No conflicts to resolve */
354#define VERR_PATCH_NO_CONFLICT (-1425)
355/** Detected unsafe code for patching */
356#define VERR_PATM_UNSAFE_CODE (-1426)
357/** Terminate search branch */
358#define VWRN_PATCH_END_BRANCH 1427
359/** Already patched */
360#define VERR_PATM_ALREADY_PATCHED (-1428)
361/** Spinlock detection failed. */
362#define VINF_PATM_SPINLOCK_FAILED (1429)
363/** Continue execution after patch trap. */
364#define VINF_PATCH_CONTINUE (1430)
365
366/** @} */
367
368
369/** @name Code Scanning and Analysis Manager (CSAM) Status Codes
370 * @{
371 */
372/** Trap not handled */
373#define VWRN_CSAM_TRAP_NOT_HANDLED 1500
374/** Patch installed */
375#define VWRN_CSAM_INSTRUCTION_PATCHED 1501
376/** Page record not found */
377#define VWRN_CSAM_PAGE_NOT_FOUND 1502
378/** Reason for leaving RC: CSAM wants perform a task in ring-3. */
379#define VINF_CSAM_PENDING_ACTION 1503
380/** @} */
381
382
383/** @name Page Monitor/Manager (PGM) Status Codes
384 * @{
385 */
386/** Attempt to create a GC mapping which conflicts with an existing mapping. */
387#define VERR_PGM_MAPPING_CONFLICT (-1600)
388/** The physical handler range has no corresponding RAM range.
389 * If this is MMIO, see todo above the return. If not MMIO, then it's
390 * someone else's fault... */
391#define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
392/** Attempt to register an access handler for a virtual range of which a part
393 * was already handled. */
394#define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
395/** Attempt to register an access handler for a physical range of which a part
396 * was already handled. */
397#define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
398/** Invalid page directory specified to PGM. */
399#define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
400/** Invalid GC physical address. */
401#define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
402/** Invalid GC physical range. Usually used when a specified range crosses
403 * a RAM region boundary. */
404#define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
405/** Specified access handler was not found. */
406#define VERR_PGM_HANDLER_NOT_FOUND (-1607)
407/** Attempt to register a RAM range of which parts are already
408 * covered by existing RAM ranges. */
409#define VERR_PGM_RAM_CONFLICT (-1608)
410/** Failed to add new mappings because the current mappings are fixed
411 * in guest os memory. */
412#define VERR_PGM_MAPPINGS_FIXED (-1609)
413/** Failed to fix mappings because of a conflict with the intermediate code. */
414#define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
415/** Failed to fix mappings because a mapping rejected the address. */
416#define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
417/** Failed to fix mappings because the proposed memory area was to small. */
418#define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
419/** Reason for leaving RZ: The urge to syncing CR3. */
420#define VINF_PGM_SYNC_CR3 1613
421/** Page not marked for dirty bit tracking */
422#define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
423/** Page fault caused by dirty bit tracking; corrected */
424#define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
425/** Go ahead with the default Read/Write operation.
426 * This is returned by a R3 physical or virtual handler when it wants the
427 * PGMPhys[Read|Write] routine do the reading/writing. */
428#define VINF_PGM_HANDLER_DO_DEFAULT 1616
429/** The paging mode of the host is not supported yet. */
430#define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
431/** The physical guest page is a reserved/MMIO page and does not have any HC
432 * address. */
433#define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
434/** No page directory available for the hypervisor. */
435#define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
436/** The shadow page pool was flushed.
437 * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
438 * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
439#define VERR_PGM_POOL_FLUSHED (-1620)
440/** The shadow page pool was cleared.
441 * This is a error code internal to the shadow page pool, it will be
442 * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
443#define VERR_PGM_POOL_CLEARED (-1621)
444/** The returned shadow page is cached. */
445#define VINF_PGM_CACHED_PAGE 1622
446/** Returned by handler registration, modification and deregistration
447 * when the shadow PTs could be updated because the guest page
448 * aliased or/and mapped by multiple PTs. */
449#define VINF_PGM_GCPHYS_ALIASED 1623
450/** Reason for leaving RC: Paging mode changed.
451 * PGMChangeMode() uses this to force a switch to R3 so it can safely deal with
452 * a mode switch. */
453#define VINF_PGM_CHANGE_MODE 1624
454/** SyncPage modified the PDE.
455 * This is an internal status code used to communicate back to the \#PF handler
456 * that the PDE was (probably) marked not-present and it should restart the instruction. */
457#define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
458/** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
459#define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
460/** Conflict between the core memory and the intermediate paging context, try again.
461 * There are some very special conditions applying to the intermediate paging context
462 * (used during the world switches), and some times we continuously run into these
463 * when asking the host kernel for memory during VM init. Let us know if you run into
464 * this and we'll adjust the code so it tries harder to avoid it.
465 */
466#define VERR_PGM_INTERMEDIATE_PAGING_CONFLICT (-1627)
467/** The shadow paging mode is not supported yet. */
468#define VERR_PGM_UNSUPPORTED_SHADOW_PAGING_MODE (-1628)
469/** The dynamic mapping cache for physical memory failed. */
470#define VERR_PGM_DYNMAP_FAILED (-1629)
471/** The auto usage cache for the dynamic mapping set is full. */
472#define VERR_PGM_DYNMAP_FULL_SET (-1630)
473/** The initialization of the dynamic mapping cache failed. */
474#define VERR_PGM_DYNMAP_SETUP_ERROR (-1631)
475/** The expanding of the dynamic mapping cache failed. */
476#define VERR_PGM_DYNMAP_EXPAND_ERROR (-1632)
477/** The page is unassigned (akin to VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS). */
478#define VERR_PGM_PHYS_TLB_UNASSIGNED (-1633)
479/** Catch any access and route it thru PGM. */
480#define VERR_PGM_PHYS_TLB_CATCH_ALL (-1634)
481/** Catch write access and route it thru PGM. */
482#define VINF_PGM_PHYS_TLB_CATCH_WRITE 1635
483/** Catch write access and route it thru PGM. */
484#define VERR_PGM_PHYS_TLB_CATCH_WRITE (-1635)
485/** No CR3 root shadow page table.. */
486#define VERR_PGM_NO_CR3_SHADOW_ROOT (-1636)
487/** Trying to free a page with an invalid Page ID. */
488#define VERR_PGM_PHYS_INVALID_PAGE_ID (-1637)
489/** PGMPhysWrite/Read hit a handler in Ring-0 or raw-mode context. */
490#define VERR_PGM_PHYS_WR_HIT_HANDLER (-1638)
491/** Trying to free a page that isn't RAM. */
492#define VERR_PGM_PHYS_NOT_RAM (-1639)
493/** Not ROM page. */
494#define VERR_PGM_PHYS_NOT_ROM (-1640)
495/** Not MMIO page. */
496#define VERR_PGM_PHYS_NOT_MMIO (-1641)
497/** Not MMIO2 page. */
498#define VERR_PGM_PHYS_NOT_MMIO2 (-1642)
499/** Already aliased to a different page. */
500#define VERR_PGM_HANDLER_ALREADY_ALIASED (-1643)
501/** Already aliased to the same page. */
502#define VINF_PGM_HANDLER_ALREADY_ALIASED (1643)
503/** PGM pool flush pending - return to ring 3. */
504#define VINF_PGM_POOL_FLUSH_PENDING (1644)
505/** Unable to use the range for a large page. */
506#define VERR_PGM_INVALID_LARGE_PAGE_RANGE (-1645)
507/** Don't mess around with ballooned pages. */
508#define VERR_PGM_PHYS_PAGE_BALLOONED (-1646)
509
510
511/** pgmPhysPageMapCommon encountered PGMPAGETYPE_MMIO2_ALIAS_MMIO. */
512#define VERR_PGM_MAP_MMIO2_ALIAS_MMIO (-1651)
513/** Guest mappings are disabled. */
514#define VERR_PGM_MAPPINGS_DISABLED (-1652)
515/** No guest mappings when SMP is enabled. */
516#define VERR_PGM_MAPPINGS_SMP (-1653)
517/** Invalid saved page state. */
518#define VERR_PGM_INVALID_SAVED_PAGE_STATE (-1654)
519/** Encountered an unexpected page type in the saved state. */
520#define VERR_PGM_LOAD_UNEXPECTED_PAGE_TYPE (-1655)
521/** Encountered an unexpected page state in the saved state. */
522#define VERR_PGM_UNEXPECTED_PAGE_STATE (-1656)
523/** Couldn't find MMIO2 range from saved state. */
524#define VERR_PGM_SAVED_MMIO2_RANGE_NOT_FOUND (-1657)
525/** Couldn't find MMIO2 page from saved state. */
526#define VERR_PGM_SAVED_MMIO2_PAGE_NOT_FOUND (-1658)
527/** Couldn't find ROM range from saved state. */
528#define VERR_PGM_SAVED_ROM_RANGE_NOT_FOUND (-1659)
529/** Couldn't find ROM page from saved state. */
530#define VERR_PGM_SAVED_ROM_PAGE_NOT_FOUND (-1660)
531/** ROM page mismatch between saved state and the VM. */
532#define VERR_PGM_SAVED_ROM_PAGE_PROT (-1661)
533/** Unknown saved state record. */
534#define VERR_PGM_SAVED_REC_TYPE (-1662)
535/** Internal processing error in the PGM dynmap (r0/rc). */
536#define VERR_PGM_DYNMAP_IPE (-1663)
537/** Internal processing error in the PGM handy page allocator. */
538#define VERR_PGM_HANDY_PAGE_IPE (-1664)
539/** Failed to map the guest PML4. */
540#define VERR_PGM_PML4_MAPPING (-1665)
541/** Failed to obtain a pool page. */
542#define VERR_PGM_POOL_GET_PAGE_FAILED (-1666)
543/** A PGM function was called in a mode where it isn't supposed to be used. */
544#define VERR_PGM_NOT_USED_IN_MODE (-1667)
545/** The CR3 address specified memory we don't know about. */
546#define VERR_PGM_INVALID_CR3_ADDR (-1668)
547/** One or the PDPEs specified memory we don't know about. */
548#define VERR_PGM_INVALID_PDPE_ADDR (-1669)
549/** Internal processing error in the PGM physical handler code. */
550#define VERR_PGM_PHYS_HANDLER_IPE (-1670)
551/** Internal processing error \#1 in the PGM physial page mapping code. */
552#define VERR_PGM_PHYS_PAGE_MAP_IPE_1 (-1671)
553/** Internal processing error \#2 in the PGM physial page mapping code. */
554#define VERR_PGM_PHYS_PAGE_MAP_IPE_2 (-1672)
555/** Internal processing error \#3 in the PGM physial page mapping code. */
556#define VERR_PGM_PHYS_PAGE_MAP_IPE_3 (-1673)
557/** Internal processing error \#4 in the PGM physial page mapping code. */
558#define VERR_PGM_PHYS_PAGE_MAP_IPE_4 (-1674)
559/** Too many loops looking for a page to reuse. */
560#define VERR_PGM_POOL_TOO_MANY_LOOPS (-1675)
561/** Internal procesing error related to guest mappings. */
562#define VERR_PGM_MAPPING_IPE (-1676)
563/** An attempt was made to grow an already maxed out page pool. */
564#define VERR_PGM_POOL_MAXED_OUT_ALREADY (-1677)
565/** Internal processing error in the page pool code. */
566#define VERR_PGM_POOL_IPE (-1678)
567/** The write monitor is already engaged. */
568#define VERR_PGM_WRITE_MONITOR_ENGAGED (-1679)
569/** Failed to get a guest page which is expected to be present. */
570#define VERR_PGM_PHYS_PAGE_GET_IPE (-1680)
571/** We were given a NULL pPage parameter. */
572#define VERR_PGM_PHYS_NULL_PAGE_PARAM (-1681)
573/** PCI passthru is not supported by this build. */
574#define VERR_PGM_PCI_PASSTHRU_MISCONFIG (-1682)
575/** @} */
576
577
578/** @name Memory Monitor (MM) Status Codes
579 * @{
580 */
581/** Attempt to register a RAM range of which parts are already
582 * covered by existing RAM ranges. */
583#define VERR_MM_RAM_CONFLICT (-1700)
584/** Hypervisor memory allocation failed. */
585#define VERR_MM_HYPER_NO_MEMORY (-1701)
586/** A bad trap type ended up in mmGCRamTrap0eHandler. */
587#define VERR_MM_BAD_TRAP_TYPE_IPE (-1702)
588/** @} */
589
590
591/** @name CPU Monitor (CPUM) Status Codes
592 * @{
593 */
594/** The caller shall raise an \#GP(0) exception. */
595#define VERR_CPUM_RAISE_GP_0 (-1750)
596/** Incompatible CPUM configuration. */
597#define VERR_CPUM_INCOMPATIBLE_CONFIG (-1751)
598/** CPUMR3DisasmInstrCPU unexpectedly failed to determin the hidden
599 * parts of the CS register. */
600#define VERR_CPUM_HIDDEN_CS_LOAD_ERROR (-1752)
601/** @} */
602
603
604/** @name Save State Manager (SSM) Status Codes
605 * @{
606 */
607/** The specified data unit already exist. */
608#define VERR_SSM_UNIT_EXISTS (-1800)
609/** The specified data unit wasn't found. */
610#define VERR_SSM_UNIT_NOT_FOUND (-1801)
611/** The specified data unit wasn't owned by caller. */
612#define VERR_SSM_UNIT_NOT_OWNER (-1802)
613
614/** General saved state file integrity error. */
615#define VERR_SSM_INTEGRITY (-1810)
616/** The saved state file magic was not recognized. */
617#define VERR_SSM_INTEGRITY_MAGIC (-1811)
618/** The saved state file version is not supported. */
619#define VERR_SSM_INTEGRITY_VERSION (-1812)
620/** The saved state file size didn't match the one in the header. */
621#define VERR_SSM_INTEGRITY_SIZE (-1813)
622/** The CRC of the saved state file did not match. */
623#define VERR_SSM_INTEGRITY_CRC (-1814)
624/** The machine uuid field wasn't null. */
625#define VERR_SMM_INTEGRITY_MACHINE (-1815)
626/** Saved state header integrity error. */
627#define VERR_SSM_INTEGRITY_HEADER (-1816)
628/** Unit header integrity error. */
629#define VERR_SSM_INTEGRITY_UNIT (-1817)
630/** Invalid unit magic (internal data tag). */
631#define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1818)
632/** The file contained a data unit which no-one wants. */
633#define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1819)
634/** Incorrect version numbers in the header. */
635#define VERR_SSM_INTEGRITY_VBOX_VERSION (-1820)
636/** Footer integrity error. */
637#define VERR_SSM_INTEGRITY_FOOTER (-1821)
638/** Record header integrity error. */
639#define VERR_SSM_INTEGRITY_REC_HDR (-1822)
640/** Termination record integrity error. */
641#define VERR_SSM_INTEGRITY_REC_TERM (-1823)
642/** Termination record CRC mismatch. */
643#define VERR_SSM_INTEGRITY_REC_TERM_CRC (-1824)
644/** Decompression interity error. */
645#define VERR_SSM_INTEGRITY_DECOMPRESSION (-1825)
646/** Saved state directory iintegrity error. */
647#define VERR_SSM_INTEGRITY_DIR (-1826)
648/** The saved state directory magic is wrong. */
649#define VERR_SSM_INTEGRITY_DIR_MAGIC (-1827)
650
651/** A data unit in the saved state file was defined but didn't any
652 * routine for processing it. */
653#define VERR_SSM_NO_LOAD_EXEC (-1830)
654/** A restore routine attempted to load more data then the unit contained. */
655#define VERR_SSM_LOADED_TOO_MUCH (-1831)
656/** Not in the correct state for the attempted operation. */
657#define VERR_SSM_INVALID_STATE (-1832)
658/** Not in the correct state for the attempted operation. */
659#define VERR_SSM_LOADED_TOO_LITTLE (-1833)
660
661/** Unsupported data unit version.
662 * A SSM user returns this if it doesn't know the u32Version. */
663#define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1840)
664/** The format of a data unit has changed.
665 * A SSM user returns this if it's not able to read the format for
666 * other reasons than u32Version. */
667#define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1841)
668/** The CPUID instruction returns different information when loading than when saved.
669 * Normally caused by hardware changes on the host, but could also be caused by
670 * changes in the BIOS setup. */
671#define VERR_SSM_LOAD_CPUID_MISMATCH (-1842)
672/** The RAM size differes between the saved state and the VM config. */
673#define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1843)
674/** The state doesn't match the VM configuration in one or another way.
675 * (There are certain PCI reconfiguration which the OS could potentially
676 * do which can cause this problem. Check this out when it happens.) */
677#define VERR_SSM_LOAD_CONFIG_MISMATCH (-1844)
678/** The virtual clock frequency differs too much.
679 * The clock source for the virtual time isn't reliable or the code have changed. */
680#define VERR_SSM_VIRTUAL_CLOCK_HZ (-1845)
681/** A timeout occurred while waiting for async IDE operations to finish. */
682#define VERR_SSM_IDE_ASYNC_TIMEOUT (-1846)
683/** One of the structure magics was wrong. */
684#define VERR_SSM_STRUCTURE_MAGIC (-1847)
685/** The data in the saved state doesn't conform to expectations. */
686#define VERR_SSM_UNEXPECTED_DATA (-1848)
687/** Trying to read a 64-bit guest physical address into a 32-bit variable. */
688#define VERR_SSM_GCPHYS_OVERFLOW (-1849)
689/** Trying to read a 64-bit guest virtual address into a 32-bit variable. */
690#define VERR_SSM_GCPTR_OVERFLOW (-1850)
691/** Vote for another pass. */
692#define VINF_SSM_VOTE_FOR_ANOTHER_PASS 1851
693/** Vote for done tell SSM not to call again until the final pass. */
694#define VINF_SSM_VOTE_DONE_DONT_CALL_AGAIN 1852
695/** Vote for giving up. */
696#define VERR_SSM_VOTE_FOR_GIVING_UP (-1853)
697/** Don't call again until the final pass. */
698#define VINF_SSM_DONT_CALL_AGAIN 1854
699/** Giving up a live snapshot/teleportation attempt because of too many
700 * passes. */
701#define VERR_SSM_TOO_MANY_PASSES (-1855)
702/** Giving up a live snapshot/teleportation attempt because the state grew to
703 * big. */
704#define VERR_SSM_STATE_GREW_TOO_BIG (-1856)
705/** Giving up a live snapshot attempt because we're low on disk space. */
706#define VERR_SSM_LOW_ON_DISK_SPACE (-1857)
707/** The operation was cancelled. */
708#define VERR_SSM_CANCELLED (-1858)
709/** Nothing that can be cancelled. */
710#define VERR_SSM_NO_PENDING_OPERATION (-1859)
711/** The operation has already been cancelled. */
712#define VERR_SSM_ALREADY_CANCELLED (-1860)
713/** The machine was powered off while saving. */
714#define VERR_SSM_LIVE_POWERED_OFF (-1861)
715/** The live snapshot/teleportation operation was aborted because of a guru
716 * meditation. */
717#define VERR_SSM_LIVE_GURU_MEDITATION (-1862)
718/** The live snapshot/teleportation operation was aborted because of a fatal
719 * runtime error. */
720#define VERR_SSM_LIVE_FATAL_ERROR (-1863)
721/** The VM was suspended before or while saving, don't resume execution. */
722#define VINF_SSM_LIVE_SUSPENDED 1864
723/** Complex SSM field fed to SSMR3PutStruct or SSMR3GetStruct. Use the
724 * extended API. */
725#define VERR_SSM_FIELD_COMPLEX (-1864)
726/** Invalid size of a SSM field with the specified transformation. */
727#define VERR_SSM_FIELD_INVALID_SIZE (-1865)
728/** The specified field is outside the structure. */
729#define VERR_SSM_FIELD_OUT_OF_BOUNDS (-1866)
730/** The field does not follow immediately the previous one. */
731#define VERR_SSM_FIELD_NOT_CONSECUTIVE (-1867)
732/** The field contains an invalid callback or transformation index. */
733#define VERR_SSM_FIELD_INVALID_CALLBACK (-1868)
734/** The field contains an invalid padding size. */
735#define VERR_SSM_FIELD_INVALID_PADDING_SIZE (-1869)
736/** The field contains a value that is out of range. */
737#define VERR_SSM_FIELD_INVALID_VALUE (-1870)
738/** Generic stream error. */
739#define VERR_SSM_STREAM_ERROR (-1871)
740/** SSM did a callback for a pass we didn't expect. */
741#define VERR_SSM_UNEXPECTED_PASS (-1872)
742/** Someone is trying to skip backwards in the stream... */
743#define VERR_SSM_SKIP_BACKWARDS (-1873)
744/** Someone is trying to write a memory block which is too big to encode. */
745#define VERR_SSM_MEM_TOO_BIG (-1874)
746/** Encountered an bad (/unknown) record type. */
747#define VERR_SSM_BAD_REC_TYPE (-1875)
748/** Internal processing error \#1 in SSM code. */
749#define VERR_SSM_IPE_1 (-1876)
750/** Internal processing error \#2 in SSM code. */
751#define VERR_SSM_IPE_2 (-1877)
752/** Internal processing error \#3 in SSM code. */
753#define VERR_SSM_IPE_3 (-1878)
754/** A field contained an transformation that should only be used when loading
755 * old states. */
756#define VERR_SSM_FIELD_LOAD_ONLY_TRANSFORMATION (-1879)
757/** @} */
758
759
760/** @name Virtual Machine (VM) Status Codes
761 * @{
762 */
763/** The specified at reset handler wasn't found. */
764#define VERR_VM_ATRESET_NOT_FOUND (-1900)
765/** Invalid VM request type.
766 * For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
767 * all the other occurrences it means indicates corruption, broken logic, or stupid
768 * interface user. */
769#define VERR_VM_REQUEST_INVALID_TYPE (-1901)
770/** Invalid VM request state.
771 * The state of the request packet was not the expected and accepted one(s). Either
772 * the interface user screwed up, or we've got corruption/broken logic. */
773#define VERR_VM_REQUEST_STATE (-1902)
774/** Invalid VM request packet.
775 * One or more of the the VM controlled packet members didn't contain the correct
776 * values. Some thing's broken. */
777#define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
778/** The status field has not been updated yet as the request is still
779 * pending completion. Someone queried the iStatus field before the request
780 * has been fully processed. */
781#define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
782/** The request has been freed, don't read the status now.
783 * Someone is reading the iStatus field of a freed request packet. */
784#define VERR_VM_REQUEST_STATUS_FREED (-1905)
785/** A VM api requiring EMT was called from another thread.
786 * Use the VMR3ReqCall() apis to call it! */
787#define VERR_VM_THREAD_NOT_EMT (-1906)
788/** The VM state was invalid for the requested operation.
789 * Go check the 'VM Statechart Diagram.gif'. */
790#define VERR_VM_INVALID_VM_STATE (-1907)
791/** The support driver is not installed.
792 * On linux, open returned ENOENT. */
793#define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
794/** The support driver is not accessible.
795 * On linux, open returned EPERM. */
796#define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
797/** Was not able to load the support driver.
798 * On linux, open returned ENODEV. */
799#define VERR_VM_DRIVER_LOAD_ERROR (-1910)
800/** Was not able to open the support driver.
801 * Generic open error used when none of the other ones fit. */
802#define VERR_VM_DRIVER_OPEN_ERROR (-1911)
803/** The installed support driver doesn't match the version of the user. */
804#define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
805/** Saving the VM state is temporarily not allowed. Try again later. */
806#define VERR_VM_SAVE_STATE_NOT_ALLOWED (-1913)
807/** An EMT called an API which cannot be called on such a thread. */
808#define VERR_VM_THREAD_IS_EMT (-1914)
809/** Encountered an unexpected VM state. */
810#define VERR_VM_UNEXPECTED_VM_STATE (-1915)
811/** Unexpected unstable VM state. */
812#define VERR_VM_UNEXPECTED_UNSTABLE_STATE (-1916)
813/** Too many arguments passed to a VM request / request corruption. */
814#define VERR_VM_REQUEST_TOO_MANY_ARGS_IPE (-1917)
815/** Fatal EMT wait error. */
816#define VERR_VM_FATAL_WAIT_ERROR (-1918)
817/** The VM request was killed at VM termination. */
818#define VERR_VM_REQUEST_KILLED (-1919)
819/** @} */
820
821
822/** @name VBox Remote Desktop Protocol (VRDP) Status Codes
823 * @{
824 */
825/** Successful completion of operation (mapped to generic iprt status code). */
826#define VINF_VRDP_SUCCESS VINF_SUCCESS
827/** VRDP transport operation timed out (mapped to generic iprt status code). */
828#define VERR_VRDP_TIMEOUT VERR_TIMEOUT
829
830/** Unsupported ISO protocol feature */
831#define VERR_VRDP_ISO_UNSUPPORTED (-2000)
832/** Security (en/decryption) engine error */
833#define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
834/** VRDP protocol violation */
835#define VERR_VRDP_PROTOCOL_ERROR (-2002)
836/** Unsupported VRDP protocol feature */
837#define VERR_VRDP_NOT_SUPPORTED (-2003)
838/** VRDP protocol violation, client sends less data than expected */
839#define VERR_VRDP_INSUFFICIENT_DATA (-2004)
840/** Internal error, VRDP packet is in wrong operation mode */
841#define VERR_VRDP_INVALID_MODE (-2005)
842/** Memory allocation failed */
843#define VERR_VRDP_NO_MEMORY (-2006)
844/** Client has been rejected */
845#define VERR_VRDP_ACCESS_DENIED (-2007)
846/** VRPD receives a packet that is not supported */
847#define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
848/** VRDP script allowed the packet to be processed further */
849#define VINF_VRDP_PROCESS_PDU 2009
850/** VRDP script has completed its task */
851#define VINF_VRDP_OPERATION_COMPLETED 2010
852/** VRDP thread has started OK and will run */
853#define VINF_VRDP_THREAD_STARTED 2011
854/** Framebuffer is resized, terminate send bitmap procedure */
855#define VINF_VRDP_RESIZE_REQUESTED 2012
856/** Output can be enabled for the client. */
857#define VINF_VRDP_OUTPUT_ENABLE 2013
858/** @} */
859
860
861/** @name Configuration Manager (CFGM) Status Codes
862 * @{
863 */
864/** The integer value was too big for the requested representation. */
865#define VERR_CFGM_INTEGER_TOO_BIG (-2100)
866/** Child node was not found. */
867#define VERR_CFGM_CHILD_NOT_FOUND (-2101)
868/** Path to child node was invalid (i.e. empty). */
869#define VERR_CFGM_INVALID_CHILD_PATH (-2102)
870/** Value not found. */
871#define VERR_CFGM_VALUE_NOT_FOUND (-2103)
872/** No parent node specified. */
873#define VERR_CFGM_NO_PARENT (-2104)
874/** No node was specified. */
875#define VERR_CFGM_NO_NODE (-2105)
876/** The value is not an integer. */
877#define VERR_CFGM_NOT_INTEGER (-2106)
878/** The value is not a zero terminated character string. */
879#define VERR_CFGM_NOT_STRING (-2107)
880/** The value is not a byte string. */
881#define VERR_CFGM_NOT_BYTES (-2108)
882/** The specified string / bytes buffer was to small. Specify a larger one and retry. */
883#define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
884/** The path of a new node contained slashs or was empty. */
885#define VERR_CFGM_INVALID_NODE_PATH (-2160)
886/** A new node couldn't be inserted because one with the same name exists. */
887#define VERR_CFGM_NODE_EXISTS (-2161)
888/** A new leaf couldn't be inserted because one with the same name exists. */
889#define VERR_CFGM_LEAF_EXISTS (-2162)
890/** An unknown config value was encountered. */
891#define VERR_CFGM_CONFIG_UNKNOWN_VALUE (-2163)
892/** An unknown config node (key) was encountered. */
893#define VERR_CFGM_CONFIG_UNKNOWN_NODE (-2164)
894/** Internal processing error \#1 in CFGM. */
895#define VERR_CFGM_IPE_1 (-2165)
896/** @} */
897
898
899/** @name Time Manager (TM) Status Codes
900 * @{
901 */
902/** The loaded timer state was incorrect. */
903#define VERR_TM_LOAD_STATE (-2200)
904/** The timer was not in the correct state for the request operation. */
905#define VERR_TM_INVALID_STATE (-2201)
906/** The timer was in a unknown state. Corruption or stupid coding error. */
907#define VERR_TM_UNKNOWN_STATE (-2202)
908/** The timer was stuck in an unstable state until we grew impatient and returned. */
909#define VERR_TM_UNSTABLE_STATE (-2203)
910/** TM requires GIP. */
911#define VERR_TM_GIP_REQUIRED (-2204)
912/** TM does not support the GIP version. */
913#define VERR_TM_GIP_VERSION (-2205)
914/** The GIP update interval is too large. */
915#define VERR_TM_GIP_UPDATE_INTERVAL_TOO_BIG (-2206)
916/** The timer has a bad clock enum value, probably corruption. */
917#define VERR_TM_TIMER_BAD_CLOCK (-2207)
918/** The timer failed to reach a stable state. */
919#define VERR_TM_TIMER_UNSTABLE_STATE (-2208)
920/** Attempt to resume a running TSC. */
921#define VERR_TM_TSC_ALREADY_TICKING (-2209)
922/** Attempt to pause a paused TSC. */
923#define VERR_TM_TSC_ALREADY_PAUSED (-2210)
924/** Invalid value for cVirtualTicking. */
925#define VERR_TM_VIRTUAL_TICKING_IPE (-2211)
926/** @} */
927
928
929/** @name Recompiled Execution Manager (REM) Status Codes
930 * @{
931 */
932/** Fatal error in virtual hardware. */
933#define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
934/** Fatal error in the recompiler cpu. */
935#define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
936/** Recompiler execution was interrupted by forced action. */
937#define VINF_REM_INTERRUPED_FF 2302
938/** Too many similar traps. This is a very useful debug only
939 * check (we don't do double/triple faults in REM). */
940#define VERR_REM_TOO_MANY_TRAPS (-2304)
941/** The REM is out of breakpoint slots. */
942#define VERR_REM_NO_MORE_BP_SLOTS (-2305)
943/** The REM could not find any breakpoint on the specified address. */
944#define VERR_REM_BP_NOT_FOUND (-2306)
945/** @} */
946
947
948/** @name Trap Manager / Monitor (TRPM) Status Codes
949 * @{
950 */
951/** No active trap. Cannot query or reset a non-existing trap. */
952#define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
953/** Active trap. Cannot assert a new trap when when one is already active. */
954#define VERR_TRPM_ACTIVE_TRAP (-2401)
955/** Reason for leaving RC: Guest tried to write to our IDT - fatal.
956 * The VM will be terminated assuming the worst, i.e. that the
957 * guest has read the idtr register. */
958#define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
959/** Reason for leaving RC: Fatal trap in hypervisor. */
960#define VERR_TRPM_DONT_PANIC (-2403)
961/** Reason for leaving RC: Double Fault. */
962#define VERR_TRPM_PANIC (-2404)
963/** The exception was dispatched for raw-mode execution. */
964#define VINF_TRPM_XCPT_DISPATCHED 2405
965/** Bad TRPM_TRAP_IN_OP. */
966#define VERR_TRPM_BAD_TRAP_IN_OP (-2406)
967/** Internal processing error \#1 in TRPM. */
968#define VERR_TRPM_IPE_1 (-2407)
969/** Internal processing error \#2 in TRPM. */
970#define VERR_TRPM_IPE_2 (-2408)
971/** Internal processing error \#3 in TRPM. */
972#define VERR_TRPM_IPE_3 (-2409)
973/** @} */
974
975
976/** @name Selector Manager / Monitor (SELM) Status Code
977 * @{
978 */
979/** Reason for leaving RC: Guest tried to write to our GDT - fatal.
980 * The VM will be terminated assuming the worst, i.e. that the
981 * guest has read the gdtr register. */
982#define VERR_SELM_SHADOW_GDT_WRITE (-2500)
983/** Reason for leaving RC: Guest tried to write to our LDT - fatal.
984 * The VM will be terminated assuming the worst, i.e. that the
985 * guest has read the ldtr register. */
986#define VERR_SELM_SHADOW_LDT_WRITE (-2501)
987/** Reason for leaving RC: Guest tried to write to our TSS - fatal.
988 * The VM will be terminated assuming the worst, i.e. that the
989 * guest has read the ltr register. */
990#define VERR_SELM_SHADOW_TSS_WRITE (-2502)
991/** Reason for leaving RC: Sync the GDT table to solve a conflict. */
992#define VINF_SELM_SYNC_GDT 2503
993/** No valid TSS present. */
994#define VERR_SELM_NO_TSS (-2504)
995/** Invalid guest LDT selector. */
996#define VERR_SELM_INVALID_LDT (-2505)
997/** The guest LDT selector is out of bounds. */
998#define VERR_SELM_LDT_OUT_OF_BOUNDS (-2506)
999/** Unknown error while reading the guest GDT during shadow table updating. */
1000#define VERR_SELM_GDT_READ_ERROR (-2507)
1001/** The guest GDT so full that we cannot find free space for our own
1002 * selectors. */
1003#define VERR_SELM_GDT_TOO_FULL (-2508)
1004/** @} */
1005
1006
1007/** @name I/O Manager / Monitor (IOM) Status Code
1008 * @{
1009 */
1010/** The specified I/O port range was invalid.
1011 * It was either empty or it was out of bounds. */
1012#define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
1013/** The specified R0 or RC I/O port range didn't have a corresponding R3 range.
1014 * IOMR3IOPortRegisterR3() must be called first. */
1015#define VERR_IOM_NO_R3_IOPORT_RANGE (-2601)
1016/** The specified I/O port range intruded on an existing range. There is
1017 * a I/O port conflict between two device, or a device tried to register
1018 * the same range twice. */
1019#define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
1020/** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
1021#define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
1022/** The specified I/O port range was owned by some other device(s). Both registration
1023 * and deregistration, but in the first case only RC and R0 ranges. */
1024#define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
1025
1026/** The specified MMIO range was invalid.
1027 * It was either empty or it was out of bounds. */
1028#define VERR_IOM_INVALID_MMIO_RANGE (-2605)
1029/** The specified R0 or RC MMIO range didn't have a corresponding R3 range.
1030 * IOMR3MMIORegisterR3() must be called first. */
1031#define VERR_IOM_NO_R3_MMIO_RANGE (-2606)
1032/** The specified MMIO range was owned by some other device(s). Both registration
1033 * and deregistration, but in the first case only RC and R0 ranges. */
1034#define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
1035/** The specified MMIO range intruded on an existing range. There is
1036 * a MMIO conflict between two device, or a device tried to register
1037 * the same range twice. */
1038#define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
1039/** The MMIO range specified for removal was not found. */
1040#define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
1041/** The MMIO range specified for removal was invalid. The range didn't match
1042 * quite match a set of existing ranges. It's not possible to remove parts of
1043 * a MMIO range, only one or more full ranges. */
1044#define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
1045/** An invalid I/O port size was specified for a read or write operation. */
1046#define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
1047/** The MMIO handler was called for a bogus address! Internal error! */
1048#define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
1049/** The MMIO handler experienced a problem with the disassembler. */
1050#define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
1051/** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
1052#define VERR_IOM_IOPORT_UNUSED (-2614)
1053/** Unused MMIO register read, fill with 00. */
1054#define VINF_IOM_MMIO_UNUSED_00 2615
1055/** Unused MMIO register read, fill with FF. */
1056#define VINF_IOM_MMIO_UNUSED_FF 2616
1057
1058/** Reason for leaving RZ: I/O port read. */
1059#define VINF_IOM_R3_IOPORT_READ 2620
1060/** Reason for leaving RZ: I/O port write. */
1061#define VINF_IOM_R3_IOPORT_WRITE 2621
1062/** Reason for leaving RZ: MMIO write. */
1063#define VINF_IOM_R3_MMIO_READ 2623
1064/** Reason for leaving RZ: MMIO read. */
1065#define VINF_IOM_R3_MMIO_WRITE 2624
1066/** Reason for leaving RZ: MMIO read/write. */
1067#define VINF_IOM_R3_MMIO_READ_WRITE 2625
1068
1069/** IOMGCIOPortHandler was given an unexpected opcode. */
1070#define VERR_IOM_IOPORT_UNKNOWN_OPCODE (-2630)
1071/** Internal processing error \#1 in the I/O port code. */
1072#define VERR_IOM_IOPORT_IPE_1 (-2631)
1073/** Internal processing error \#2 in the I/O port code. */
1074#define VERR_IOM_IOPORT_IPE_2 (-2632)
1075/** Internal processing error \#3 in the I/O port code. */
1076#define VERR_IOM_IOPORT_IPE_3 (-2633)
1077/** Internal processing error \#1 in the MMIO code. */
1078#define VERR_IOM_MMIO_IPE_1 (-2634)
1079/** Internal processing error \#2 in the MMIO code. */
1080#define VERR_IOM_MMIO_IPE_2 (-2635)
1081/** Internal processing error \#3 in the MMIO code. */
1082#define VERR_IOM_MMIO_IPE_3 (-2636)
1083/** @} */
1084
1085
1086/** @name Virtual Machine Monitor (VMM) Status Codes
1087 * @{
1088 */
1089/** Reason for leaving RZ: Calling host function. */
1090#define VINF_VMM_CALL_HOST 2700
1091/** Reason for leaving R0: Hit a ring-0 assertion on EMT. */
1092#define VERR_VMM_RING0_ASSERTION (-2701)
1093/** The hyper CR3 differs between PGM and CPUM. */
1094#define VERR_VMM_HYPER_CR3_MISMATCH (-2702)
1095/** Reason for leaving RZ: Illegal call to ring-3. */
1096#define VERR_VMM_RING3_CALL_DISABLED (-2703)
1097/** The VMMR0.r0 module version does not match VBoxVMM.dll/so/dylib.
1098 * If you just upgraded VirtualBox, please terminate all VMs and make sure
1099 * VBoxNetDHCP is not running. Then try again. If this error persists, try
1100 * re-installing VirtualBox. */
1101#define VERR_VMM_R0_VERSION_MISMATCH (-2704)
1102/** The VMMRC.rc module version does not match VBoxVMM.dll/so/dylib.
1103 * Re-install if you are a user. Developers should make sure the build is
1104 * complete or try with a clean build. */
1105#define VERR_VMM_RC_VERSION_MISMATCH (-2705)
1106/** VMM set jump error. */
1107#define VERR_VMM_SET_JMP_ERROR (-2706)
1108/** VMM set jump stack overflow error. */
1109#define VERR_VMM_SET_JMP_STACK_OVERFLOW (-2707)
1110/** VMM set jump resume error. */
1111#define VERR_VMM_SET_JMP_ABORTED_RESUME (-2708)
1112/** VMM long jump error. */
1113#define VERR_VMM_LONG_JMP_ERROR (-2709)
1114/** Unknown ring-3 call attempted. */
1115#define VERR_VMM_UNKNOWN_RING3_CALL (-2710)
1116/** The ring-3 call didn't set an RC. */
1117#define VERR_VMM_RING3_CALL_NO_RC (-2711)
1118/** Reason for leaving RC: Caller the tracer in ring-0. */
1119#define VINF_VMM_CALL_TRACER (2712)
1120/** Internal processing error \#1 in the switcher code. */
1121#define VERR_VMM_SWITCHER_IPE_1 (-2713)
1122/** Reason for leaving RZ: Unknown call to ring-3. */
1123#define VINF_VMM_UNKNOWN_RING3_CALL (2714)
1124/** @} */
1125
1126
1127/** @name Pluggable Device and Driver Manager (PDM) Status Codes
1128 * @{
1129 */
1130/** An invalid LUN specification was given. */
1131#define VERR_PDM_NO_SUCH_LUN (-2800)
1132/** A device encountered an unknown configuration value.
1133 * This means that the device is potentially misconfigured and the device
1134 * construction or unit attachment failed because of this. */
1135#define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
1136/** The above driver doesn't export a interface required by a driver being
1137 * attached to it. Typical misconfiguration problem. */
1138#define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
1139/** The below driver doesn't export a interface required by the drive
1140 * having attached it. Typical misconfiguration problem. */
1141#define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
1142/** A device didn't find a required interface with an attached driver.
1143 * Typical misconfiguration problem. */
1144#define VERR_PDM_MISSING_INTERFACE (-2804)
1145/** A driver encountered an unknown configuration value.
1146 * This means that the driver is potentially misconfigured and the driver
1147 * construction failed because of this. */
1148#define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
1149/** The PCI bus assigned to a device didn't have room for it.
1150 * Either too many devices are configured on the same PCI bus, or there are
1151 * some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
1152#define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
1153/** A queue is out of free items, the queueing operation failed. */
1154#define VERR_PDM_NO_QUEUE_ITEMS (-2807)
1155/** Not possible to attach further drivers to the driver.
1156 * A driver which doesn't support attachments (below of course) will
1157 * return this status code if it found that further drivers were configured
1158 * to be attached to it. */
1159#define VERR_PDM_DRVINS_NO_ATTACH (-2808)
1160/** Not possible to attach drivers to the device.
1161 * A device which doesn't support attachments (below of course) will
1162 * return this status code if it found that drivers were configured
1163 * to be attached to it. */
1164#define VERR_PDM_DEVINS_NO_ATTACH (-2809)
1165/** No attached driver.
1166 * The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
1167 * this error when no driver was configured to be attached. */
1168#define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
1169/** The media geometry hasn't been set yet, so it cannot be obtained.
1170 * The caller should then calculate the geometry from the media size. */
1171#define VERR_PDM_GEOMETRY_NOT_SET (-2811)
1172/** The media translation hasn't been set yet, so it cannot be obtained.
1173 * The caller should then guess the translation. */
1174#define VERR_PDM_TRANSLATION_NOT_SET (-2812)
1175/** The media is not mounted, operation requires a mounted media. */
1176#define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
1177/** Mount failed because a media was already mounted. Unmount the media
1178 * and retry the mount. */
1179#define VERR_PDM_MEDIA_MOUNTED (-2814)
1180/** The media is locked and cannot be unmounted. */
1181#define VERR_PDM_MEDIA_LOCKED (-2815)
1182/** No 'Type' attribute in the DrvBlock configuration.
1183 * Misconfiguration. */
1184#define VERR_PDM_BLOCK_NO_TYPE (-2816)
1185/** The 'Type' attribute in the DrvBlock configuration had an unknown value.
1186 * Misconfiguration. */
1187#define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
1188/** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
1189 * Misconfiguration. */
1190#define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
1191/** The block driver type wasn't supported.
1192 * Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
1193#define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
1194/** A attach or prepare mount call failed because the driver already
1195 * had a driver attached. */
1196#define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
1197/** An attempt on deattaching a driver without anyone actually being attached, or
1198 * performing any other operation on an attached driver. */
1199#define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
1200/** The attached driver configuration is missing the 'Driver' attribute. */
1201#define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
1202/** The configured driver wasn't found.
1203 * Either the necessary driver modules wasn't loaded, the name was
1204 * misspelled, or it was a misconfiguration. */
1205#define VERR_PDM_DRIVER_NOT_FOUND (-2823)
1206/** The Ring-3 module was already loaded. */
1207#define VINF_PDM_ALREADY_LOADED (2824)
1208/** The name of the module clashed with an existing module. */
1209#define VERR_PDM_MODULE_NAME_CLASH (-2825)
1210/** Couldn't find any export for registration of drivers/devices. */
1211#define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
1212/** A module name is too long. */
1213#define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
1214/** Driver name clash. Another driver with the same name as the
1215 * one begin registred exists. */
1216#define VERR_PDM_DRIVER_NAME_CLASH (-2828)
1217/** The version of the driver registration structure is unknown
1218 * to this VBox version. Either mixing incompatible versions or
1219 * the structure isn't correctly initialized. */
1220#define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
1221/** Invalid entry in the driver registration structure. */
1222#define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
1223/** Invalid host bit mask. */
1224#define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
1225/** Not possible to detach a driver because the above driver/device
1226 * doesn't support it. The above entity doesn't implement the pfnDetach call. */
1227#define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
1228/** No PCI Bus is available to register the device with. This is usually a
1229 * misconfiguration or in rare cases a buggy pci device. */
1230#define VERR_PDM_NO_PCI_BUS (-2833)
1231/** The device is not a registered PCI device and thus cannot
1232 * perform any PCI operations. The device forgot to register it self. */
1233#define VERR_PDM_NOT_PCI_DEVICE (-2834)
1234
1235/** The version of the device registration structure is unknown
1236 * to this VBox version. Either mixing incompatible versions or
1237 * the structure isn't correctly initialized. */
1238#define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
1239/** Invalid entry in the device registration structure. */
1240#define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
1241/** Invalid host bit mask. */
1242#define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
1243/** The guest bit mask didn't match the guest being loaded. */
1244#define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
1245/** Device name clash. Another device with the same name as the
1246 * one begin registred exists. */
1247#define VERR_PDM_DEVICE_NAME_CLASH (-2839)
1248/** The device wasn't found. There was no registered device
1249 * by that name. */
1250#define VERR_PDM_DEVICE_NOT_FOUND (-2840)
1251/** The device instance was not found. */
1252#define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
1253/** The device instance have no base interface. */
1254#define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
1255/** The device instance have no such logical unit. */
1256#define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
1257/** The driver instance could not be found. */
1258#define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
1259/** Logical Unit was not found. */
1260#define VERR_PDM_LUN_NOT_FOUND (-2845)
1261/** The Logical Unit was found, but it had no driver attached to it. */
1262#define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
1263/** The Logical Unit was found, but it had no driver attached to it. */
1264#define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
1265/** No PIC device instance is registered with the current VM and thus
1266 * the PIC operation cannot be performed. */
1267#define VERR_PDM_NO_PIC_INSTANCE (-2847)
1268/** No APIC device instance is registered with the current VM and thus
1269 * the APIC operation cannot be performed. */
1270#define VERR_PDM_NO_APIC_INSTANCE (-2848)
1271/** No DMAC device instance is registered with the current VM and thus
1272 * the DMA operation cannot be performed. */
1273#define VERR_PDM_NO_DMAC_INSTANCE (-2849)
1274/** No RTC device instance is registered with the current VM and thus
1275 * the RTC or CMOS operation cannot be performed. */
1276#define VERR_PDM_NO_RTC_INSTANCE (-2850)
1277/** Unable to open the host interface due to a sharing violation . */
1278#define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
1279/** Unable to open the host interface. */
1280#define VERR_PDM_HIF_OPEN_FAILED (-2852)
1281/** The device doesn't support runtime driver attaching.
1282 * The PDMDEVREG::pfnAttach callback function is NULL. */
1283#define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
1284/** The driver doesn't support runtime driver attaching.
1285 * The PDMDRVREG::pfnAttach callback function is NULL. */
1286#define VERR_PDM_DRIVER_NO_RT_ATTACH (-2854)
1287/** Invalid host interface version. */
1288#define VERR_PDM_HIF_INVALID_VERSION (-2855)
1289
1290/** The version of the USB device registration structure is unknown
1291 * to this VBox version. Either mixing incompatible versions or
1292 * the structure isn't correctly initialized. */
1293#define VERR_PDM_UNKNOWN_USBREG_VERSION (-2856)
1294/** Invalid entry in the device registration structure. */
1295#define VERR_PDM_INVALID_USB_REGISTRATION (-2857)
1296/** Driver name clash. Another driver with the same name as the
1297 * one begin registred exists. */
1298#define VERR_PDM_USB_NAME_CLASH (-2858)
1299/** The USB hub is already registered. */
1300#define VERR_PDM_USB_HUB_EXISTS (-2859)
1301/** Couldn't find any USB hubs to attach the device to. */
1302#define VERR_PDM_NO_USB_HUBS (-2860)
1303/** Couldn't find any free USB ports to attach the device to. */
1304#define VERR_PDM_NO_USB_PORTS (-2861)
1305/** Couldn't find the USB Proxy device. Using OSE? */
1306#define VERR_PDM_NO_USBPROXY (-2862)
1307/** The async completion template is still used. */
1308#define VERR_PDM_ASYNC_TEMPLATE_BUSY (-2863)
1309/** The async completion task is already suspended. */
1310#define VERR_PDM_ASYNC_COMPLETION_ALREADY_SUSPENDED (-2864)
1311/** The async completion task is not suspended. */
1312#define VERR_PDM_ASYNC_COMPLETION_NOT_SUSPENDED (-2865)
1313/** The driver properties were invalid, and as a consequence construction
1314 * failed. Caused my unusable media or similar problems. */
1315#define VERR_PDM_DRIVER_INVALID_PROPERTIES (-2866)
1316/** Too many instances of a device. */
1317#define VERR_PDM_TOO_MANY_DEVICE_INSTANCES (-2867)
1318/** Too many instances of a driver. */
1319#define VERR_PDM_TOO_MANY_DRIVER_INSTANCES (-2868)
1320/** Too many instances of a usb device. */
1321#define VERR_PDM_TOO_MANY_USB_DEVICE_INSTANCES (-2869)
1322/** The device instance structure version has changed.
1323 *
1324 * If you have upgraded VirtualBox recently, please make sure you have
1325 * terminated all VMs and upgraded any extension packs. If this error
1326 * persists, try re-installing VirtualBox. */
1327#define VERR_PDM_DEVINS_VERSION_MISMATCH (-2870)
1328/** The device helper structure version has changed.
1329 *
1330 * If you have upgraded VirtualBox recently, please make sure you have
1331 * terminated all VMs and upgraded any extension packs. If this error
1332 * persists, try re-installing VirtualBox. */
1333#define VERR_PDM_DEVHLPR3_VERSION_MISMATCH (-2871)
1334/** The USB device instance structure version has changed.
1335 *
1336 * If you have upgraded VirtualBox recently, please make sure you have
1337 * terminated all VMs and upgraded any extension packs. If this error
1338 * persists, try re-installing VirtualBox. */
1339#define VERR_PDM_USBINS_VERSION_MISMATCH (-2872)
1340/** The USB device helper structure version has changed.
1341 *
1342 * If you have upgraded VirtualBox recently, please make sure you have
1343 * terminated all VMs and upgraded any extension packs. If this error
1344 * persists, try re-installing VirtualBox. */
1345#define VERR_PDM_USBHLPR3_VERSION_MISMATCH (-2873)
1346/** The driver instance structure version has changed.
1347 *
1348 * If you have upgraded VirtualBox recently, please make sure you have
1349 * terminated all VMs and upgraded any extension packs. If this error
1350 * persists, try re-installing VirtualBox. */
1351#define VERR_PDM_DRVINS_VERSION_MISMATCH (-2874)
1352/** The driver helper structure version has changed.
1353 *
1354 * If you have upgraded VirtualBox recently, please make sure you have
1355 * terminated all VMs and upgraded any extension packs. If this error
1356 * persists, try re-installing VirtualBox. */
1357#define VERR_PDM_DRVHLPR3_VERSION_MISMATCH (-2875)
1358/** Generic device structure version mismatch.
1359 *
1360 * If you have upgraded VirtualBox recently, please make sure you have
1361 * terminated all VMs and upgraded any extension packs. If this error
1362 * persists, try re-installing VirtualBox. */
1363#define VERR_PDM_DEVICE_VERSION_MISMATCH (-2876)
1364/** Generic USB device structure version mismatch.
1365 *
1366 * If you have upgraded VirtualBox recently, please make sure you have
1367 * terminated all VMs and upgraded any extension packs. If this error
1368 * persists, try re-installing VirtualBox. */
1369#define VERR_PDM_USBDEV_VERSION_MISMATCH (-2877)
1370/** Generic driver structure version mismatch.
1371 *
1372 * If you have upgraded VirtualBox recently, please make sure you have
1373 * terminated all VMs and upgraded any extension packs. If this error
1374 * persists, try re-installing VirtualBox. */
1375#define VERR_PDM_DRIVER_VERSION_MISMATCH (-2878)
1376/** PDMVMMDevHeapR3ToGCPhys failure. */
1377#define VERR_PDM_DEV_HEAP_R3_TO_GCPHYS (-2879)
1378/** A legacy device isn't implementing the HPET notification interface. */
1379#define VERR_PDM_HPET_LEGACY_NOTIFY_MISSING (-2880)
1380/** Internal processing error in the critical section code. */
1381#define VERR_PDM_CRITSECT_IPE (-2881)
1382/** The critical section being deleted was not found. */
1383#define VERR_PDM_CRITSECT_NOT_FOUND (-2882)
1384/** A PDMThread API was called by the wrong thread. */
1385#define VERR_PDM_THREAD_INVALID_CALLER (-2883)
1386/** Internal processing error \#1 in the PDM Thread code. */
1387#define VERR_PDM_THREAD_IPE_1 (-2884)
1388/** Internal processing error \#2 in the PDM Thread code. */
1389#define VERR_PDM_THREAD_IPE_2 (-2885)
1390/** Only one PCI function is supported per PDM device. */
1391#define VERR_PDM_ONE_PCI_FUNCTION_PER_DEVICE (-2886)
1392/** Bad PCI configuration. */
1393#define VERR_PDM_BAD_PCI_CONFIG (-2887)
1394/** Internal processing error # in the PDM device code. */
1395#define VERR_PDM_DEV_IPE_1 (-2888)
1396/** Misconfigured driver chain transformation. */
1397#define VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION (-2889)
1398/** The driver is already removed, not more transformations possible (at
1399 * present). */
1400#define VERR_PDM_CANNOT_TRANSFORM_REMOVED_DRIVER (-2890)
1401/** The PCI device isn't configured as a busmaster, physical memory access
1402 * rejected. */
1403#define VERR_PDM_NOT_PCI_BUS_MASTER (-2891)
1404/** @} */
1405
1406
1407/** @name Host-Guest Communication Manager (HGCM) Status Codes
1408 * @{
1409 */
1410/** Requested service does not exist. */
1411#define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
1412/** Service rejected client connection */
1413#define VINF_HGCM_CLIENT_REJECTED 2901
1414/** Command address is invalid. */
1415#define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
1416/** Service will execute the command in background. */
1417#define VINF_HGCM_ASYNC_EXECUTE 2903
1418/** HGCM could not perform requested operation because of an internal error. */
1419#define VERR_HGCM_INTERNAL (-2904)
1420/** Invalid HGCM client id. */
1421#define VERR_HGCM_INVALID_CLIENT_ID (-2905)
1422/** The HGCM is saving state. */
1423#define VINF_HGCM_SAVE_STATE (2906)
1424/** Requested service already exists. */
1425#define VERR_HGCM_SERVICE_EXISTS (-2907)
1426
1427/** @} */
1428
1429
1430/** @name Network Address Translation Driver (DrvNAT) Status Codes
1431 * @{
1432 */
1433/** Failed to find the DNS configured for this machine. */
1434#define VINF_NAT_DNS 3000
1435/** Failed to convert the specified Guest IP to a binary IP address.
1436 * Malformed input. */
1437#define VERR_NAT_REDIR_GUEST_IP (-3001)
1438/** Failed while setting up a redirector rule.
1439 * There probably is a conflict between the rule and some existing
1440 * service on the computer. */
1441#define VERR_NAT_REDIR_SETUP (-3002)
1442/** @} */
1443
1444
1445/** @name HostIF Driver (DrvTUN) Status Codes
1446 * @{
1447 */
1448/** The Host Interface Networking init program failed. */
1449#define VERR_HOSTIF_INIT_FAILED (-3100)
1450/** The Host Interface Networking device name is too long. */
1451#define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
1452/** The Host Interface Networking name config IOCTL call failed. */
1453#define VERR_HOSTIF_IOCTL (-3102)
1454/** Failed to make the Host Interface Networking handle non-blocking. */
1455#define VERR_HOSTIF_BLOCKING (-3103)
1456/** If a Host Interface Networking filehandle was specified it's not allowed to
1457 * have any init or term programs. */
1458#define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
1459/** The Host Interface Networking terminate program failed. */
1460#define VERR_HOSTIF_TERM_FAILED (-3105)
1461/** @} */
1462
1463
1464/** @name VBox HDD Container (VD) Status Codes
1465 * @{
1466 */
1467/** Invalid image type. */
1468#define VERR_VD_INVALID_TYPE (-3200)
1469/** Operation can't be done in current HDD container state. */
1470#define VERR_VD_INVALID_STATE (-3201)
1471/** Configuration value not found. */
1472#define VERR_VD_VALUE_NOT_FOUND (-3202)
1473/** Virtual HDD is not opened. */
1474#define VERR_VD_NOT_OPENED (-3203)
1475/** Requested image is not opened. */
1476#define VERR_VD_IMAGE_NOT_FOUND (-3204)
1477/** Image is read-only. */
1478#define VERR_VD_IMAGE_READ_ONLY (-3205)
1479/** Geometry hasn't been set. */
1480#define VERR_VD_GEOMETRY_NOT_SET (-3206)
1481/** No data for this block in image. */
1482#define VERR_VD_BLOCK_FREE (-3207)
1483/** Differencing and parent images can't be used together due to UUID. */
1484#define VERR_VD_UUID_MISMATCH (-3208)
1485/** Asynchronous I/O request finished. */
1486#define VINF_VD_ASYNC_IO_FINISHED 3209
1487/** Asynchronous I/O is not finished yet. */
1488#define VERR_VD_ASYNC_IO_IN_PROGRESS (-3210)
1489/** The image is too small or too large for this format. */
1490#define VERR_VD_INVALID_SIZE (-3211)
1491/** Generic: Invalid image file header. Use this for plugins. */
1492#define VERR_VD_GEN_INVALID_HEADER (-3220)
1493/** VDI: Invalid image file header. */
1494#define VERR_VD_VDI_INVALID_HEADER (-3230)
1495/** VDI: Invalid image file header: invalid signature. */
1496#define VERR_VD_VDI_INVALID_SIGNATURE (-3231)
1497/** VDI: Invalid image file header: invalid version. */
1498#define VERR_VD_VDI_UNSUPPORTED_VERSION (-3232)
1499/** Comment string is too long. */
1500#define VERR_VD_VDI_COMMENT_TOO_LONG (-3233)
1501/** VMDK: Invalid image file header. */
1502#define VERR_VD_VMDK_INVALID_HEADER (-3240)
1503/** VMDK: Invalid image file header: invalid version. */
1504#define VERR_VD_VMDK_UNSUPPORTED_VERSION (-3241)
1505/** VMDK: Image property not found. */
1506#define VERR_VD_VMDK_VALUE_NOT_FOUND (-3242)
1507/** VMDK: Operation can't be done in current image state. */
1508#define VERR_VD_VMDK_INVALID_STATE (-3243)
1509/** VMDK: Format is invalid/inconsistent. */
1510#define VERR_VD_VMDK_INVALID_FORMAT (-3244)
1511/** VMDK: Invalid write position. */
1512#define VERR_VD_VMDK_INVALID_WRITE (-3245)
1513/** iSCSI: Invalid header, i.e. dummy for validity check. */
1514#define VERR_VD_ISCSI_INVALID_HEADER (-3250)
1515/** iSCSI: Configuration value is unknown. This indicates misconfiguration. */
1516#define VERR_VD_ISCSI_UNKNOWN_CFG_VALUES (-3251)
1517/** iSCSI: Interface is unknown. This indicates misconfiguration. */
1518#define VERR_VD_ISCSI_UNKNOWN_INTERFACE (-3252)
1519/** iSCSI: Operation can't be done in current image state. */
1520#define VERR_VD_ISCSI_INVALID_STATE (-3253)
1521/** iSCSI: Invalid device type (not a disk). */
1522#define VERR_VD_ISCSI_INVALID_TYPE (-3254)
1523/** iSCSI: Initiator secret not decrypted */
1524#define VERR_VD_ISCSI_SECRET_ENCRYPTED (-3255)
1525/** VHD: Invalid image file header. */
1526#define VERR_VD_VHD_INVALID_HEADER (-3260)
1527/** Parallels HDD: Invalid image file header. */
1528#define VERR_VD_PARALLELS_INVALID_HEADER (-3265)
1529/** DMG: Invalid image file header. */
1530#define VERR_VD_DMG_INVALID_HEADER (-3267)
1531/** Raw: Invalid image file header. */
1532#define VERR_VD_RAW_INVALID_HEADER (-3270)
1533/** Raw: Invalid image file type. */
1534#define VERR_VD_RAW_INVALID_TYPE (-3271)
1535/** The backend needs more metadata before it can continue. */
1536#define VERR_VD_NOT_ENOUGH_METADATA (-3272)
1537/** Halt the current I/O context until further notification from the backend. */
1538#define VERR_VD_IOCTX_HALT (-3273)
1539/** The disk has a cache attached already. */
1540#define VERR_VD_CACHE_ALREADY_EXISTS (-3274)
1541/** There is no cache attached to the disk. */
1542#define VERR_VD_CACHE_NOT_FOUND (-3275)
1543/** The cache is not up to date with the image. */
1544#define VERR_VD_CACHE_NOT_UP_TO_DATE (-3276)
1545/** The given range does not meet the required alignment. */
1546#define VERR_VD_DISCARD_ALIGNMENT_NOT_MET (-3277)
1547/** The discard operation is not supported for this image. */
1548#define VERR_VD_DISCARD_NOT_SUPPORTED (-3278)
1549/** The image is the correct format but is corrupted. */
1550#define VERR_VD_IMAGE_CORRUPTED (-3279)
1551/** Repairing the image is not supported. */
1552#define VERR_VD_IMAGE_REPAIR_NOT_SUPPORTED (-3280)
1553/** Repairing the image is not possible because the corruption is to severe. */
1554#define VERR_VD_IMAGE_REPAIR_IMPOSSIBLE (-3281)
1555/** Reading from the image was not possible because the offset is out of the image range.
1556 * This usually indicates that there is a minor corruption in the image meta data. */
1557#define VERR_VD_READ_OUT_OF_RANGE (-3282)
1558/** Block read was marked as free in the image and returned as a zero block. */
1559#define VINF_VD_NEW_ZEROED_BLOCK 3283
1560/** @} */
1561
1562
1563/** @name VBox Guest Library (VBGL) Status Codes
1564 * @{
1565 */
1566/** Library was not initialized. */
1567#define VERR_VBGL_NOT_INITIALIZED (-3300)
1568/** Virtual address was not allocated by the library. */
1569#define VERR_VBGL_INVALID_ADDR (-3301)
1570/** IOCtl to VBoxGuest driver failed. */
1571#define VERR_VBGL_IOCTL_FAILED (-3302)
1572/** @} */
1573
1574
1575/** @name VBox USB (VUSB) Status Codes
1576 * @{
1577 */
1578/** No available ports on the hub.
1579 * This error is returned when a device is attempted created and/or attached
1580 * to a hub which is out of ports. */
1581#define VERR_VUSB_NO_PORTS (-3400)
1582/** The requested operation cannot be performed on a detached USB device. */
1583#define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
1584/** Failed to allocate memory for a URB. */
1585#define VERR_VUSB_NO_URB_MEMORY (-3402)
1586/** General failure during URB queuing.
1587 * This will go away when the queueing gets proper status code handling. */
1588#define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
1589/** Device creation failed because the USB device name was not found. */
1590#define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
1591/** Not permitted to open the USB device.
1592 * The user doesn't have access to the device in the usbfs, check the mount options. */
1593#define VERR_VUSB_USBFS_PERMISSION (-3405)
1594/** The requested operation cannot be performed because the device
1595 * is currently being reset. */
1596#define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
1597/** The requested operation cannot be performed because the device
1598 * is currently suspended. */
1599#define VERR_VUSB_DEVICE_IS_SUSPENDED (-3407)
1600/** Not permitted to open the USB device.
1601 * The user doesn't have access to the device node, check group memberships. */
1602#define VERR_VUSB_USB_DEVICE_PERMISSION (-3408)
1603/** @} */
1604
1605
1606/** @name VBox VGA Status Codes
1607 * @{
1608 */
1609/** One of the custom modes was incorrect.
1610 * The format or bit count of the custom mode value is invalid. */
1611#define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
1612/** The display connector is resizing. */
1613#define VINF_VGA_RESIZE_IN_PROGRESS (3501)
1614/** @} */
1615
1616
1617/** @name Internal Networking Status Codes
1618 * @{
1619 */
1620/** The networking interface to filter was not found. */
1621#define VERR_INTNET_FLT_IF_NOT_FOUND (-3600)
1622/** The networking interface to filter was busy (used by someone). */
1623#define VERR_INTNET_FLT_IF_BUSY (-3601)
1624/** Failed to create or connect to a networking interface filter. */
1625#define VERR_INTNET_FLT_IF_FAILED (-3602)
1626/** The network already exists with a different trunk configuration. */
1627#define VERR_INTNET_INCOMPATIBLE_TRUNK (-3603)
1628/** The network already exists with a different security profile (restricted / public). */
1629#define VERR_INTNET_INCOMPATIBLE_FLAGS (-3604)
1630/** Failed to create a virtual network interface instance. */
1631#define VERR_INTNET_FLT_VNIC_CREATE_FAILED (-3605)
1632/** @} */
1633
1634
1635/** @name Support Driver Status Codes
1636 * @{
1637 */
1638/** The component factory was not found. */
1639#define VERR_SUPDRV_COMPONENT_NOT_FOUND (-3700)
1640/** The component factories do not support the requested interface. */
1641#define VERR_SUPDRV_INTERFACE_NOT_SUPPORTED (-3701)
1642/** The service module was not found. */
1643#define VERR_SUPDRV_SERVICE_NOT_FOUND (-3702)
1644/** The host kernel is too old. */
1645#define VERR_SUPDRV_KERNEL_TOO_OLD_FOR_VTX (-3703)
1646/** Bad VTG magic value. */
1647#define VERR_SUPDRV_VTG_MAGIC (-3704)
1648/** Bad VTG bit count value. */
1649#define VERR_SUPDRV_VTG_BITS (-3705)
1650/** Bad VTG header - misc. */
1651#define VERR_SUPDRV_VTG_BAD_HDR_MISC (-3706)
1652/** Bad VTG header - offset. */
1653#define VERR_SUPDRV_VTG_BAD_HDR_OFF (-3707)
1654/** Bad VTG header - offset. */
1655#define VERR_SUPDRV_VTG_BAD_HDR_PTR (-3708)
1656/** Bad VTG header - to low value. */
1657#define VERR_SUPDRV_VTG_BAD_HDR_TOO_FEW (-3709)
1658/** Bad VTG header - to high value. */
1659#define VERR_SUPDRV_VTG_BAD_HDR_TOO_MUCH (-3710)
1660/** Bad VTG header - size value is not a multiple of the structure size. */
1661#define VERR_SUPDRV_VTG_BAD_HDR_NOT_MULTIPLE (-3711)
1662/** Bad VTG string table offset. */
1663#define VERR_SUPDRV_VTG_STRTAB_OFF (-3712)
1664/** Bad VTG string. */
1665#define VERR_SUPDRV_VTG_BAD_STRING (-3713)
1666/** VTG string is too long. */
1667#define VERR_SUPDRV_VTG_STRING_TOO_LONG (-3714)
1668/** Bad VTG attribute value. */
1669#define VERR_SUPDRV_VTG_BAD_ATTR (-3715)
1670/** Bad VTG provider descriptor. */
1671#define VERR_SUPDRV_VTG_BAD_PROVIDER (-3716)
1672/** Bad VTG probe descriptor. */
1673#define VERR_SUPDRV_VTG_BAD_PROBE (-3717)
1674/** Bad VTG argument list descriptor. */
1675#define VERR_SUPDRV_VTG_BAD_ARGLIST (-3718)
1676/** Bad VTG probe enabled data. */
1677#define VERR_SUPDRV_VTG_BAD_PROBE_ENABLED (-3719)
1678/** Bad VTG probe location record. */
1679#define VERR_SUPDRV_VTG_BAD_PROBE_LOC (-3720)
1680/** The VTG object for the session or image has already been registered. */
1681#define VERR_SUPDRV_VTG_ALREADY_REGISTERED (-3721)
1682/** A driver may only register one VTG object per session. */
1683#define VERR_SUPDRV_VTG_ONLY_ONCE_PER_SESSION (-3722)
1684/** A tracer has already been registered. */
1685#define VERR_SUPDRV_TRACER_ALREADY_REGISTERED (-3723)
1686/** The session has no tracer associated with it. */
1687#define VERR_SUPDRV_TRACER_NOT_REGISTERED (-3724)
1688/** The tracer has already been opened in this sesssion. */
1689#define VERR_SUPDRV_TRACER_ALREADY_OPENED (-3725)
1690/** The tracer has not been opened. */
1691#define VERR_SUPDRV_TRACER_NOT_OPENED (-3726)
1692/** There is no tracer present. */
1693#define VERR_SUPDRV_TRACER_NOT_PRESENT (-3727)
1694/** The tracer is unloading. */
1695#define VERR_SUPDRV_TRACER_UNLOADING (-3728)
1696/** Another thread in the session is talking to the tracer. */
1697#define VERR_SUPDRV_TRACER_SESSION_BUSY (-3729)
1698/** The tracer cannot open it self in the same session. */
1699#define VERR_SUPDRV_TRACER_CANNOT_OPEN_SELF (-3730)
1700/** Bad argument flags. */
1701#define VERR_SUPDRV_TRACER_BAD_ARG_FLAGS (-3731)
1702/** The session has reached the max number of (user mode) providers. */
1703#define VERR_SUPDRV_TRACER_TOO_MANY_PROVIDERS (-3732)
1704/** The tracepoint provider object is too large. */
1705#define VERR_SUPDRV_TRACER_TOO_LARGE (-3733)
1706/** The probe location array isn't adjacent to the probe enable array. */
1707#define VERR_SUPDRV_TRACER_UMOD_NOT_ADJACENT (-3734)
1708/** The user mode tracepoint provider has too many probe locations and
1709 * probes. */
1710#define VERR_SUPDRV_TRACER_UMOD_TOO_MANY_PROBES (-3735)
1711/** The user mode tracepoint provider string table is too large. */
1712#define VERR_SUPDRV_TRACER_UMOD_STRTAB_TOO_BIG (-3736)
1713/** The user mode tracepoint provider string table offset is bad. */
1714#define VERR_SUPDRV_TRACER_UMOD_STRTAB_OFF_BAD (-3737)
1715/** @} */
1716
1717
1718/** @name Support Library Status Codes
1719 * @{
1720 */
1721/** The specified path was not absolute (hardening). */
1722#define VERR_SUPLIB_PATH_NOT_ABSOLUTE (-3750)
1723/** The specified path was not clean (hardening). */
1724#define VERR_SUPLIB_PATH_NOT_CLEAN (-3751)
1725/** The specified path is too long (hardening). */
1726#define VERR_SUPLIB_PATH_TOO_LONG (-3752)
1727/** The specified path is too short (hardening). */
1728#define VERR_SUPLIB_PATH_TOO_SHORT (-3753)
1729/** The specified path has too many components (hardening). */
1730#define VERR_SUPLIB_PATH_TOO_MANY_COMPONENTS (-3754)
1731/** The specified path is a root path (hardening). */
1732#define VERR_SUPLIB_PATH_IS_ROOT (-3755)
1733/** Failed to enumerate directory (hardening). */
1734#define VERR_SUPLIB_DIR_ENUM_FAILED (-3756)
1735/** Failed to stat a file/dir during enumeration (hardening). */
1736#define VERR_SUPLIB_STAT_ENUM_FAILED (-3757)
1737/** Failed to stat a file/dir (hardening). */
1738#define VERR_SUPLIB_STAT_FAILED (-3758)
1739/** Failed to fstat a native handle (hardening). */
1740#define VERR_SUPLIB_FSTAT_FAILED (-3759)
1741/** Found an illegal symbolic link (hardening). */
1742#define VERR_SUPLIB_SYMLINKS_ARE_NOT_PERMITTED (-3760)
1743/** Found something which isn't a file nor a directory (hardening). */
1744#define VERR_SUPLIB_NOT_DIR_NOT_FILE (-3761)
1745/** The specified path is a directory and not a file (hardening). */
1746#define VERR_SUPLIB_IS_DIRECTORY (-3762)
1747/** The specified path is a file and not a directory (hardening). */
1748#define VERR_SUPLIB_IS_FILE (-3763)
1749/** The path is not the same object as the native handle (hardening). */
1750#define VERR_SUPLIB_NOT_SAME_OBJECT (-3764)
1751/** The owner is not root (hardening). */
1752#define VERR_SUPLIB_OWNER_NOT_ROOT (-3765)
1753/** The group is a non-system group and it has write access (hardening). */
1754#define VERR_SUPLIB_WRITE_NON_SYS_GROUP (-3766)
1755/** The file or directory is world writable (hardening). */
1756#define VERR_SUPLIB_WORLD_WRITABLE (-3767)
1757/** The argv[0] of an internal application does not match the executable image
1758 * path (hardening). */
1759#define VERR_SUPLIB_INVALID_ARGV0_INTERNAL (-3768)
1760/** The internal application does not reside in the correct place (hardening). */
1761#define VERR_SUPLIB_INVALID_INTERNAL_APP_DIR (-3769)
1762/** @} */
1763
1764
1765/** @name VBox GMM Status Codes
1766 * @{
1767 */
1768/** The GMM is out of pages and needs to be give another chunk of user memory that
1769 * it can lock down and borrow pages from. */
1770#define VERR_GMM_SEED_ME (-3800)
1771/** Unable to allocate more pages from the host system. */
1772#define VERR_GMM_OUT_OF_MEMORY (-3801)
1773/** Hit the global allocation limit.
1774 * If you know there is still sufficient memory available, try raising the limit. */
1775#define VERR_GMM_HIT_GLOBAL_LIMIT (-3802)
1776/** Hit the a VM account limit. */
1777#define VERR_GMM_HIT_VM_ACCOUNT_LIMIT (-3803)
1778/** Attempt to free more memory than what was previously allocated. */
1779#define VERR_GMM_ATTEMPT_TO_FREE_TOO_MUCH (-3804)
1780/** Attempted to report too many pages as deflated. */
1781#define VERR_GMM_ATTEMPT_TO_DEFLATE_TOO_MUCH (-3805)
1782/** The page to be freed or updated was not found. */
1783#define VERR_GMM_PAGE_NOT_FOUND (-3806)
1784/** The specified shared page was not actually private. */
1785#define VERR_GMM_PAGE_NOT_PRIVATE (-3807)
1786/** The specified shared page was not actually shared. */
1787#define VERR_GMM_PAGE_NOT_SHARED (-3808)
1788/** The page to be freed was already freed. */
1789#define VERR_GMM_PAGE_ALREADY_FREE (-3809)
1790/** The page to be updated or freed was noted owned by the caller. */
1791#define VERR_GMM_NOT_PAGE_OWNER (-3810)
1792/** The specified chunk was not found. */
1793#define VERR_GMM_CHUNK_NOT_FOUND (-3811)
1794/** The chunk has already been mapped into the process. */
1795#define VERR_GMM_CHUNK_ALREADY_MAPPED (-3812)
1796/** The chunk to be unmapped isn't actually mapped into the process. */
1797#define VERR_GMM_CHUNK_NOT_MAPPED (-3813)
1798/** The chunk has been mapped too many times already (impossible). */
1799#define VERR_GMM_TOO_MANY_CHUNK_MAPPINGS (-3814)
1800/** The reservation or reservation update was declined - too many VMs, too
1801 * little memory, and/or too low GMM configuration. */
1802#define VERR_GMM_MEMORY_RESERVATION_DECLINED (-3815)
1803/** A GMM sanity check failed. */
1804#define VERR_GMM_IS_NOT_SANE (-3816)
1805/** Inserting a new chunk failed. */
1806#define VERR_GMM_CHUNK_INSERT (-3817)
1807/** Failed to obtain the GMM instance. */
1808#define VERR_GMM_INSTANCE (-3818)
1809/** Bad mutex semaphore flags. */
1810#define VERR_GMM_MTX_FLAGS (-3819)
1811/** Internal processing error in the page allocator. */
1812#define VERR_GMM_ALLOC_PAGES_IPE (-3820)
1813/** Invalid page count given to GMMR3FreePagesPerform. */
1814#define VERR_GMM_ACTUAL_PAGES_IPE (-3821)
1815/** The shared module name is too long. */
1816#define VERR_GMM_MODULE_NAME_TOO_LONG (-3822)
1817/** The shared module version string is too long. */
1818#define VERR_GMM_MODULE_VERSION_TOO_LONG (-3823)
1819/** The shared module has too many regions. */
1820#define VERR_GMM_TOO_MANY_REGIONS (-3824)
1821/** The guest has reported too many modules. */
1822#define VERR_GMM_TOO_MANY_PER_VM_MODULES (-3825)
1823/** The guest has reported too many modules. */
1824#define VERR_GMM_TOO_MANY_GLOBAL_MODULES (-3826)
1825/** The shared module is already registered. */
1826#define VINF_GMM_SHARED_MODULE_ALREADY_REGISTERED (3827)
1827/** The shared module clashed address wise with a previously registered
1828 * module. */
1829#define VERR_GMM_SHARED_MODULE_ADDRESS_CLASH (-3828)
1830/** The shared module was not found. */
1831#define VERR_GMM_SHARED_MODULE_NOT_FOUND (-3829)
1832/** The size of the shared module was out of range. */
1833#define VERR_GMM_BAD_SHARED_MODULE_SIZE (-3830)
1834/** The size of the one or more regions in the shared module was out of
1835 * range. */
1836#define VERR_GMM_SHARED_MODULE_BAD_REGIONS_SIZE (-3831)
1837/** @} */
1838
1839
1840/** @name VBox GVM Status Codes
1841 * @{
1842 */
1843/** The GVM is out of VM handle space. */
1844#define VERR_GVM_TOO_MANY_VMS (-3900)
1845/** The EMT was not blocked at the time of the call. */
1846#define VINF_GVM_NOT_BLOCKED 3901
1847/** The EMT was not busy running guest code at the time of the call. */
1848#define VINF_GVM_NOT_BUSY_IN_GC 3902
1849/** RTThreadYield was called during a GVMMR0SchedPoll call. */
1850#define VINF_GVM_YIELDED 3903
1851/** @} */
1852
1853
1854/** @name VBox VMX Status Codes
1855 * @{
1856 */
1857/** Invalid VMCS index or write to read-only element. */
1858#define VERR_VMX_INVALID_VMCS_FIELD (-4000)
1859/** Invalid VMCS pointer. */
1860#define VERR_VMX_INVALID_VMCS_PTR (-4001)
1861/** Invalid VMXON pointer. */
1862#define VERR_VMX_INVALID_VMXON_PTR (-4002)
1863/** Generic VMX failure. */
1864#define VERR_VMX_GENERIC (-4003)
1865/** Invalid CPU mode for VMX execution. */
1866#define VERR_VMX_UNSUPPORTED_MODE (-4004)
1867/** Unable to start VM execution. */
1868#define VERR_VMX_UNABLE_TO_START_VM (-4005)
1869/** Unable to resume VM execution. */
1870#define VERR_VMX_UNABLE_TO_RESUME_VM (-4006)
1871/** Unable to switch due to invalid host state. */
1872#define VERR_VMX_INVALID_HOST_STATE (-4007)
1873/** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */
1874#define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4008)
1875/** VMX CPU extension not available */
1876#define VERR_VMX_NO_VMX (-4009)
1877/** VMXON failed; possibly because it was already run before */
1878#define VERR_VMX_VMXON_FAILED (-4010)
1879/** CPU was incorrectly left in VMX root mode; incompatible with VirtualBox */
1880#define VERR_VMX_IN_VMX_ROOT_MODE (-4011)
1881/** Somebody cleared X86_CR4_VMXE in the CR4 register. */
1882#define VERR_VMX_X86_CR4_VMXE_CLEARED (-4012)
1883/** VT-x features locked or unavailable in MSR. */
1884#define VERR_VMX_MSR_LOCKED_OR_DISABLED (-4013)
1885/** Unable to switch due to invalid guest state. */
1886#define VERR_VMX_INVALID_GUEST_STATE (-4014)
1887/** Unexpected VM exit code. */
1888#define VERR_VMX_UNEXPECTED_EXIT_CODE (-4015)
1889/** Unexpected VM exception code. */
1890#define VERR_VMX_UNEXPECTED_EXCEPTION (-4016)
1891/** Unexpected interruption exit code. */
1892#define VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_CODE (-4017)
1893/** CPU is not in VMX root mode; unexpected when leaving VMX root mode. */
1894#define VERR_VMX_NOT_IN_VMX_ROOT_MODE (-4018)
1895/** Undefined VM exit code. */
1896#define VERR_VMX_UNDEFINED_EXIT_CODE (-4019)
1897/** @} */
1898
1899
1900/** @name VBox SVM Status Codes
1901 * @{
1902 */
1903/** Unable to start VM execution. */
1904#define VERR_SVM_UNABLE_TO_START_VM (-4050)
1905/** AMD-V bit not set in K6_EFER MSR */
1906#define VERR_SVM_ILLEGAL_EFER_MSR (-4051)
1907/** AMD-V CPU extension not available. */
1908#define VERR_SVM_NO_SVM (-4052)
1909/** AMD-V CPU extension disabled (by BIOS). */
1910#define VERR_SVM_DISABLED (-4053)
1911/** AMD-V CPU extension in-use. */
1912#define VERR_SVM_IN_USE (-4054)
1913/** Invalid pVMCB. */
1914#define VERR_SVM_INVALID_PVMCB (-4055)
1915/** Unexpected SVM exit. */
1916#define VERR_SVM_UNEXPECTED_EXIT (-4056)
1917/** Unexpected SVM exception exit. */
1918#define VERR_SVM_UNEXPECTED_XCPT_EXIT (-4057)
1919/** Unexpected SVM patch type. */
1920#define VERR_SVM_UNEXPECTED_PATCH_TYPE (-4058)
1921/** @} */
1922
1923
1924/** @name VBox HM Status Codes
1925 * @{
1926 */
1927/** Unable to start VM execution. */
1928#define VERR_HM_UNKNOWN_CPU (-4100)
1929/** No CPUID support. */
1930#define VERR_HM_NO_CPUID (-4101)
1931/** Host is about to go into suspend mode. */
1932#define VERR_HM_SUSPEND_PENDING (-4102)
1933/** Conflicting CFGM values. */
1934#define VERR_HM_CONFIG_MISMATCH (-4103)
1935/** Internal processing error in the HM init code. */
1936#define VERR_HM_ALREADY_ENABLED_IPE (-4104)
1937/** Unexpected MSR in the load / restore list. */
1938#define VERR_HM_UNEXPECTED_LD_ST_MSR (-4105)
1939/** No 32-bit to 64-bit switcher in place. */
1940#define VERR_HM_NO_32_TO_64_SWITCHER (-4106)
1941/** HMR0Leave was called on the wrong CPU. */
1942#define VERR_HM_WRONG_CPU_1 (-4107)
1943/** Internal processing error \#1 in the HM code. */
1944#define VERR_HM_IPE_1 (-4108)
1945/** Internal processing error \#2 in the HM code. */
1946#define VERR_HM_IPE_2 (-4109)
1947/** Wrong 32/64-bit switcher. */
1948#define VERR_HM_WRONG_SWITCHER (-4110)
1949/** Unknown I/O instruction. */
1950#define VERR_HM_UNKNOWN_IO_INSTRUCTION (-4111)
1951/** Unsupported CPU feature combination. */
1952#define VERR_HM_UNSUPPORTED_CPU_FEATURE_COMBO (-4112)
1953/** @} */
1954
1955
1956/** @name VBox Disassembler Status Codes
1957 * @{
1958 */
1959/** Invalid opcode byte(s) */
1960#define VERR_DIS_INVALID_OPCODE (-4200)
1961/** Generic failure during disassembly. */
1962#define VERR_DIS_GEN_FAILURE (-4201)
1963/** No read callback. */
1964#define VERR_DIS_NO_READ_CALLBACK (-4202)
1965/** Invalid Mod/RM. */
1966#define VERR_DIS_INVALID_MODRM (-4203)
1967/** Invalid parameter index. */
1968#define VERR_DIS_INVALID_PARAMETER (-4204)
1969/** Reading opcode bytes failed. */
1970#define VERR_DIS_MEM_READ (-4205)
1971/** The instruction is too long. */
1972#define VERR_DIS_TOO_LONG_INSTR (-4206)
1973/** @} */
1974
1975
1976/** @name VBox Webservice Status Codes
1977 * @{
1978 */
1979/** Authentication failed (ISessionManager::logon()) */
1980#define VERR_WEB_NOT_AUTHENTICATED (-4300)
1981/** Invalid format of managed object reference */
1982#define VERR_WEB_INVALID_MANAGED_OBJECT_REFERENCE (-4301)
1983/** Invalid session ID in managed object reference */
1984#define VERR_WEB_INVALID_SESSION_ID (-4302)
1985/** Invalid object ID in managed object reference */
1986#define VERR_WEB_INVALID_OBJECT_ID (-4303)
1987/** Unsupported interface for managed object reference */
1988#define VERR_WEB_UNSUPPORTED_INTERFACE (-4304)
1989/** @} */
1990
1991
1992/** @name VBox PARAV Status Codes
1993 * @{
1994 */
1995/** Switch back to host */
1996#define VINF_PARAV_SWITCH_TO_HOST 4400
1997
1998/** @} */
1999
2000/** @name VBox Video HW Acceleration command status
2001 * @{
2002 */
2003/** command processing is pending, a completion handler will be called */
2004#define VINF_VHWA_CMD_PENDING 4500
2005
2006/** @} */
2007
2008
2009/** @name VBox COM error codes
2010 *
2011 * @remarks Global::vboxStatusCodeToCOM and Global::vboxStatusCodeFromCOM uses
2012 * these for conversion that is lossless with respect to important COM
2013 * status codes. These methods should be moved to the glue library.
2014 * @{ */
2015/** Unexpected turn of events. */
2016#define VERR_COM_UNEXPECTED (-4600)
2017/** The base of the VirtualBox COM status codes (the lower value)
2018 * corresponding 1:1 to VBOX_E_XXX. This is the lowest value. */
2019#define VERR_COM_VBOX_LOWEST (-4699)
2020/** Object corresponding to the supplied arguments does not exist. */
2021#define VERR_COM_OBJECT_NOT_FOUND (VERR_COM_VBOX_LOWEST + 1)
2022/** Current virtual machine state prevents the operation. */
2023#define VERR_COM_INVALID_VM_STATE (VERR_COM_VBOX_LOWEST + 2)
2024/** Virtual machine error occurred attempting the operation. */
2025#define VERR_COM_VM_ERROR (VERR_COM_VBOX_LOWEST + 3)
2026/** File not accessible or erroneous file contents. */
2027#define VERR_COM_FILE_ERROR (VERR_COM_VBOX_LOWEST + 4)
2028/** IPRT error. */
2029#define VERR_COM_IPRT_ERROR (VERR_COM_VBOX_LOWEST + 5)
2030/** Pluggable Device Manager error. */
2031#define VERR_COM_PDM_ERROR (VERR_COM_VBOX_LOWEST + 6)
2032/** Current object state prohibits operation. */
2033#define VERR_COM_INVALID_OBJECT_STATE (VERR_COM_VBOX_LOWEST + 7)
2034/** Host operating system related error. */
2035#define VERR_COM_HOST_ERROR (VERR_COM_VBOX_LOWEST + 8)
2036/** Requested operation is not supported. */
2037#define VERR_COM_NOT_SUPPORTED (VERR_COM_VBOX_LOWEST + 9)
2038/** Invalid XML found. */
2039#define VERR_COM_XML_ERROR (VERR_COM_VBOX_LOWEST + 10)
2040/** Current session state prohibits operation. */
2041#define VERR_COM_INVALID_SESSION_STATE (VERR_COM_VBOX_LOWEST + 11)
2042/** Object being in use prohibits operation. */
2043#define VERR_COM_OBJECT_IN_USE (VERR_COM_VBOX_LOWEST + 12)
2044/** Returned by callback methods which does not need to be called
2045 * again because the client does not actually make use of them. */
2046#define VERR_COM_DONT_CALL_AGAIN (VERR_COM_VBOX_LOWEST + 13)
2047/** @} */
2048
2049/** @name VBox CPU hotplug Status codes
2050 * @{
2051 */
2052/** CPU hotplug events from VMMDev are not monitored by the guest. */
2053#define VERR_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST (-4700)
2054/** @} */
2055
2056/** @name VBox async I/O manager Status Codes
2057 * @{
2058 */
2059/** Async I/O task is pending, a completion handler will be called. */
2060#define VINF_AIO_TASK_PENDING 4800
2061/** @} */
2062
2063/** @name VBox Virtual SCSI Status Codes
2064 * @{
2065 */
2066/** LUN type is not supported. */
2067#define VERR_VSCSI_LUN_TYPE_NOT_SUPPORTED (-4900)
2068/** LUN is already/still attached to a device. */
2069#define VERR_VSCSI_LUN_ATTACHED_TO_DEVICE (-4901)
2070/** The specified LUN is invalid. */
2071#define VERR_VSCSI_LUN_INVALID (-4902)
2072/** The LUN is not attached to the device. */
2073#define VERR_VSCSI_LUN_NOT_ATTACHED (-4903)
2074/** The LUN is still busy. */
2075#define VERR_VSCSI_LUN_BUSY (-4904)
2076/** @} */
2077
2078/** @name VBox FAM Status Codes
2079 * @{
2080 */
2081/** FAM failed to open a connection. */
2082#define VERR_FAM_OPEN_FAILED (-5000)
2083/** FAM failed to add a file to the list to be monitored. */
2084#define VERR_FAM_MONITOR_FILE_FAILED (-5001)
2085/** FAM failed to add a directory to the list to be monitored. */
2086#define VERR_FAM_MONITOR_DIRECTORY_FAILED (-5002)
2087/** The connection to the FAM daemon was lost. */
2088#define VERR_FAM_CONNECTION_LOST (-5003)
2089/** @} */
2090
2091
2092/** @name PCI Passtrhough Status Codes
2093 * @{
2094 */
2095/** RamPreAlloc not set.
2096 * RAM pre-allocation is currently a requirement for PCI passthrough. */
2097#define VERR_PCI_PASSTHROUGH_NO_RAM_PREALLOC (-5100)
2098/** VT-x/AMD-V not active.
2099 * PCI passthrough currently works only if VT-x/AMD-V is active. */
2100#define VERR_PCI_PASSTHROUGH_NO_HM (-5101)
2101/** Nested paging not active.
2102 * PCI passthrough currently works only if nested paging is active. */
2103#define VERR_PCI_PASSTHROUGH_NO_NESTED_PAGING (-5102)
2104/** @} */
2105
2106
2107/** @name GVMM Status Codes
2108 * @{
2109 */
2110/** Internal error obtaining the GVMM instance. */
2111#define VERR_GVMM_INSTANCE (-5200)
2112/** GVMM does not support the range of CPUs present/possible on the host. */
2113#define VERR_GVMM_HOST_CPU_RANGE (-5201)
2114/** GVMM ran into some broken IPRT code. */
2115#define VERR_GVMM_BROKEN_IPRT (-5202)
2116/** Internal processing error \#1 in the GVMM code. */
2117#define VERR_GVMM_IPE_1 (-5203)
2118/** Internal processing error \#2 in the GVMM code. */
2119#define VERR_GVMM_IPE_2 (-5204)
2120/** @} */
2121
2122
2123/** @name IEM Status Codes
2124 * @{ */
2125/** The instruction is not yet implemented by IEM. */
2126#define VERR_IEM_INSTR_NOT_IMPLEMENTED (-5300)
2127/** This particular aspect of the instruction is not yet implemented by IEM. */
2128#define VERR_IEM_ASPECT_NOT_IMPLEMENTED (-5391)
2129/** Internal processing error \#1 in the IEM code.. */
2130#define VERR_IEM_IPE_1 (-5392)
2131/** Internal processing error \#2 in the IEM code.. */
2132#define VERR_IEM_IPE_2 (-5393)
2133/** Internal processing error \#3 in the IEM code.. */
2134#define VERR_IEM_IPE_3 (-5394)
2135/** Restart the current instruction. For testing only. */
2136#define VERR_IEM_RESTART_INSTRUCTION (-5395)
2137/** @} */
2138
2139
2140/** @name DBGC Status Codes
2141 * @{ */
2142/** Status that causes DBGC to quit. */
2143#define VERR_DBGC_QUIT (-5400)
2144/** Async command pending. */
2145#define VWRN_DBGC_CMD_PENDING 5401
2146/** The command has already been registered. */
2147#define VWRN_DBGC_ALREADY_REGISTERED 5402
2148/** The command cannot be deregistered because has not been registered. */
2149#define VERR_DBGC_COMMANDS_NOT_REGISTERED (-5403)
2150/** Unknown breakpoint. */
2151#define VERR_DBGC_BP_NOT_FOUND (-5404)
2152/** The breakpoint already exists. */
2153#define VERR_DBGC_BP_EXISTS (-5405)
2154/** The breakpoint has no command. */
2155#define VINF_DBGC_BP_NO_COMMAND 5406
2156/** Generic debugger command failure. */
2157#define VERR_DBGC_COMMAND_FAILED (-5407)
2158/** Logic bug in the DBGC code.. */
2159#define VERR_DBGC_IPE (-5408)
2160
2161/** The lowest parse status code. */
2162#define VERR_DBGC_PARSE_LOWEST (-5499)
2163/** Syntax error - too few arguments. */
2164#define VERR_DBGC_PARSE_TOO_FEW_ARGUMENTS (VERR_DBGC_PARSE_LOWEST + 0)
2165/** Syntax error - too many arguments. */
2166#define VERR_DBGC_PARSE_TOO_MANY_ARGUMENTS (VERR_DBGC_PARSE_LOWEST + 1)
2167/** Syntax error - too many arguments for static storage. */
2168#define VERR_DBGC_PARSE_ARGUMENT_OVERFLOW (VERR_DBGC_PARSE_LOWEST + 2)
2169/** Syntax error - expected binary operator. */
2170#define VERR_DBGC_PARSE_EXPECTED_BINARY_OP (VERR_DBGC_PARSE_LOWEST + 3)
2171
2172/** Syntax error - the argument does not allow a range to be specified. */
2173#define VERR_DBGC_PARSE_NO_RANGE_ALLOWED (VERR_DBGC_PARSE_LOWEST + 5)
2174/** Syntax error - unbalanced quotes. */
2175#define VERR_DBGC_PARSE_UNBALANCED_QUOTE (VERR_DBGC_PARSE_LOWEST + 6)
2176/** Syntax error - unbalanced parenthesis. */
2177#define VERR_DBGC_PARSE_UNBALANCED_PARENTHESIS (VERR_DBGC_PARSE_LOWEST + 7)
2178/** Syntax error - an argument or subargument contains nothing useful. */
2179#define VERR_DBGC_PARSE_EMPTY_ARGUMENT (VERR_DBGC_PARSE_LOWEST + 8)
2180/** Syntax error - invalid operator usage. */
2181#define VERR_DBGC_PARSE_UNEXPECTED_OPERATOR (VERR_DBGC_PARSE_LOWEST + 9)
2182/** Syntax error - invalid numeric value. */
2183#define VERR_DBGC_PARSE_INVALID_NUMBER (VERR_DBGC_PARSE_LOWEST + 10)
2184/** Syntax error - numeric overflow. */
2185#define VERR_DBGC_PARSE_NUMBER_TOO_BIG (VERR_DBGC_PARSE_LOWEST + 11)
2186/** Syntax error - invalid operation attempted. */
2187#define VERR_DBGC_PARSE_INVALID_OPERATION (VERR_DBGC_PARSE_LOWEST + 12)
2188/** Syntax error - function not found. */
2189#define VERR_DBGC_PARSE_FUNCTION_NOT_FOUND (VERR_DBGC_PARSE_LOWEST + 13)
2190/** Syntax error - the specified function is not a function. */
2191#define VERR_DBGC_PARSE_NOT_A_FUNCTION (VERR_DBGC_PARSE_LOWEST + 14)
2192/** Syntax error - out of scratch memory. */
2193#define VERR_DBGC_PARSE_NO_SCRATCH (VERR_DBGC_PARSE_LOWEST + 15)
2194/** Syntax error - out of regular heap memory. */
2195#define VERR_DBGC_PARSE_NO_MEMORY (VERR_DBGC_PARSE_LOWEST + 16)
2196/** Syntax error - incorrect argument type. */
2197#define VERR_DBGC_PARSE_INCORRECT_ARG_TYPE (VERR_DBGC_PARSE_LOWEST + 17)
2198/** Syntax error - an undefined variable was referenced. */
2199#define VERR_DBGC_PARSE_VARIABLE_NOT_FOUND (VERR_DBGC_PARSE_LOWEST + 18)
2200/** Syntax error - a type conversion failed. */
2201#define VERR_DBGC_PARSE_CONVERSION_FAILED (VERR_DBGC_PARSE_LOWEST + 19)
2202/** Syntax error - you hit a debugger feature which isn't implemented yet.
2203 * (Feel free to help implement it.) */
2204#define VERR_DBGC_PARSE_NOT_IMPLEMENTED (VERR_DBGC_PARSE_LOWEST + 20)
2205/** Syntax error - Couldn't staisfy a request for a sepcific result type. */
2206#define VERR_DBGC_PARSE_BAD_RESULT_TYPE (VERR_DBGC_PARSE_LOWEST + 21)
2207/** Syntax error - Cannot read symbol value, it is a set-only symbol. */
2208#define VERR_DBGC_PARSE_WRITEONLY_SYMBOL (VERR_DBGC_PARSE_LOWEST + 22)
2209/** Syntax error - Invalid command name. */
2210#define VERR_DBGC_PARSE_INVALD_COMMAND_NAME (VERR_DBGC_PARSE_LOWEST + 23)
2211/** Syntax error - Command not found. */
2212#define VERR_DBGC_PARSE_COMMAND_NOT_FOUND (VERR_DBGC_PARSE_LOWEST + 24)
2213/** Syntax error - buggy parser. */
2214#define VERR_DBGC_PARSE_BUG (VERR_DBGC_PARSE_LOWEST + 25)
2215
2216
2217/** @} */
2218
2219/** @name VBox Extension Pack Status Codes
2220 * @{
2221 */
2222/** The host is not supported. Uninstall the extension pack.
2223 * Returned by the VBOXEXTPACKREG::pfnInstalled. */
2224#define VERR_EXTPACK_UNSUPPORTED_HOST_UNINSTALL (-6000)
2225/** The VirtualBox version is not supported by one of the extension packs.
2226 *
2227 * You have probably upgraded VirtualBox recently. Please upgrade the
2228 * extension packs to versions compatible with this VirtualBox release.
2229 */
2230#define VERR_EXTPACK_VBOX_VERSION_MISMATCH (-6001)
2231/** @} */
2232
2233
2234/** @} */
2235
2236/** @name VBox Guest Control Status Codes
2237 * @{
2238 */
2239/** Guest side reported an error. */
2240#define VERR_GSTCTL_GUEST_ERROR (-6200)
2241/** @} */
2242
2243
2244/* SED-END */
2245
2246/** @} */
2247
2248
2249#endif
2250
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