VirtualBox

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

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

The Big Sun Rebranding Header Change

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

© 2023 Oracle
ContactPrivacy policyTerms of Use