VirtualBox

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

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

VERR_VMX_MSR_LOCKED_OR_DISABLED

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

© 2023 Oracle
ContactPrivacy policyTerms of Use