VirtualBox

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

Last change on this file since 86960 was 86763, checked in by vboxsync, 4 years ago

AMD IOMMU: bugref:9654 Ensure the DTE falls within the device table segment limit and use uint32_t for offDte, uint16_t isn't enough.

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