VirtualBox

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

Last change on this file since 54924 was 54903, checked in by vboxsync, 10 years ago

typo.

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