VirtualBox

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

Last change on this file since 3392 was 3298, checked in by vboxsync, 17 years ago

Added VERR_VMX_VMXON_FAILED

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette