VirtualBox

source: vbox/trunk/include/VBox/types.h@ 35350

Last change on this file since 35350 was 34021, checked in by vboxsync, 14 years ago

typos

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 32.4 KB
Line 
1/** @file
2 * VirtualBox - Types.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_types_h
27#define ___VBox_types_h
28
29#include <VBox/cdefs.h>
30#include <iprt/types.h>
31
32
33/** @defgroup grp_types Basic VBox Types
34 * @{
35 */
36
37
38/** @defgroup grp_types_both Common Guest and Host Context Basic Types
39 * @ingroup grp_types
40 * @{
41 */
42
43
44/** @defgroup grp_types_hc Host Context Basic Types
45 * @ingroup grp_types_both
46 * @{
47 */
48
49/** @} */
50
51
52/** @defgroup grp_types_gc Guest Context Basic Types
53 * @ingroup grp_types_both
54 * @{
55 */
56
57/** @} */
58
59
60/** Pointer to per support driver session data.
61 * (The data is a R0 entity and private to the the R0 SUP part. All
62 * other should consider this a sort of handle.) */
63typedef R0PTRTYPE(struct SUPDRVSESSION *) PSUPDRVSESSION;
64
65/** Pointer to a VM. */
66typedef struct VM *PVM;
67/** Pointer to a VM - Ring-0 Ptr. */
68typedef R0PTRTYPE(struct VM *) PVMR0;
69/** Pointer to a VM - Ring-3 Ptr. */
70typedef R3PTRTYPE(struct VM *) PVMR3;
71/** Pointer to a VM - RC Ptr. */
72typedef RCPTRTYPE(struct VM *) PVMRC;
73
74/** Pointer to a virtual CPU structure. */
75typedef struct VMCPU * PVMCPU;
76/** Pointer to a virtual CPU structure - Ring-3 Ptr. */
77typedef R3PTRTYPE(struct VMCPU *) PVMCPUR3;
78/** Pointer to a virtual CPU structure - Ring-0 Ptr. */
79typedef R0PTRTYPE(struct VMCPU *) PVMCPUR0;
80/** Pointer to a virtual CPU structure - RC Ptr. */
81typedef RCPTRTYPE(struct VMCPU *) PVMCPURC;
82
83/** Pointer to a ring-0 (global) VM structure. */
84typedef R0PTRTYPE(struct GVM *) PGVM;
85
86/** Pointer to a ring-3 (user mode) VM structure. */
87typedef R3PTRTYPE(struct UVM *) PUVM;
88
89/** Pointer to a ring-3 (user mode) VMCPU structure. */
90typedef R3PTRTYPE(struct UVMCPU *) PUVMCPU;
91
92/** Virtual CPU ID. */
93typedef uint32_t VMCPUID;
94/** Pointer to a virtual CPU ID. */
95typedef VMCPUID *PVMCPUID;
96/** @name Special CPU ID values.
97 * Most of these are for request scheduling.
98 *
99 * @{ */
100/** All virtual CPUs. */
101#define VMCPUID_ALL UINT32_C(0xfffffff2)
102/** All virtual CPUs, descending order. */
103#define VMCPUID_ALL_REVERSE UINT32_C(0xfffffff3)
104/** Any virtual CPU.
105 * Intended for scheduling a VM request or some other task. */
106#define VMCPUID_ANY UINT32_C(0xfffffff4)
107/** Any virtual CPU; always queue for future execution.
108 * Intended for scheduling a VM request or some other task. */
109#define VMCPUID_ANY_QUEUE UINT32_C(0xfffffff5)
110/** The NIL value. */
111#define NIL_VMCPUID UINT32_C(0xfffffffd)
112/** @} */
113
114/**
115 * Virtual CPU set.
116 */
117typedef struct VMCPUSET
118{
119 /** The bitmap data. */
120 uint32_t au32Bitmap[256/32];
121} VMCPUSET;
122/** Pointer to a Virtual CPU set. */
123typedef VMCPUSET *PVMCPUSET;
124/** Pointer to a const Virtual CPU set. */
125typedef VMCPUSET const *PCVMCPUSET;
126
127/** Tests if a valid CPU ID is present in the set.. */
128#define VMCPUSET_IS_PRESENT(pSet, idCpu) ASMBitTest( &(pSet)->au32Bitmap, (idCpu))
129/** Adds a CPU to the set. */
130#define VMCPUSET_ADD(pSet, idCpu) ASMBitSet( &(pSet)->au32Bitmap, (idCpu))
131/** Deletes a CPU from the set. */
132#define VMCPUSET_DEL(pSet, idCpu) ASMBitClear(&(pSet)->au32Bitmap, (idCpu))
133/** Empties the set. */
134#define VMCPUSET_EMPTY(pSet) memset(&(pSet)->au32Bitmap[0], '\0', sizeof((pSet)->au32Bitmap))
135/** Filles the set. */
136#define VMCPUSET_FILL(pSet) memset(&(pSet)->au32Bitmap[0], 0xff, sizeof((pSet)->au32Bitmap))
137/** Filles the set. */
138#define VMCPUSET_IS_EQUAL(pSet1, pSet2) (memcmp(&(pSet1)->au32Bitmap[0], &(pSet2)->au32Bitmap[0], sizeof((pSet1)->au32Bitmap)) == 0)
139
140
141/**
142 * VM State
143 */
144typedef enum VMSTATE
145{
146 /** The VM is being created. */
147 VMSTATE_CREATING = 0,
148 /** The VM is created. */
149 VMSTATE_CREATED,
150 /** The VM state is being loaded from file. */
151 VMSTATE_LOADING,
152 /** The VM is being powered on */
153 VMSTATE_POWERING_ON,
154 /** The VM is being resumed. */
155 VMSTATE_RESUMING,
156 /** The VM is runnning. */
157 VMSTATE_RUNNING,
158 /** Live save: The VM is running and the state is being saved. */
159 VMSTATE_RUNNING_LS,
160 /** Fault Tolerance: The VM is running and the state is being synced. */
161 VMSTATE_RUNNING_FT,
162 /** The VM is being reset. */
163 VMSTATE_RESETTING,
164 /** Live save: The VM is being reset and immediately suspended. */
165 VMSTATE_RESETTING_LS,
166 /** The VM is being suspended. */
167 VMSTATE_SUSPENDING,
168 /** Live save: The VM is being suspended during a live save operation, either as
169 * part of the normal flow or VMR3Reset. */
170 VMSTATE_SUSPENDING_LS,
171 /** Live save: The VM is being suspended by VMR3Suspend during live save. */
172 VMSTATE_SUSPENDING_EXT_LS,
173 /** The VM is suspended. */
174 VMSTATE_SUSPENDED,
175 /** Live save: The VM has been suspended and is waiting for the live save
176 * operation to move on. */
177 VMSTATE_SUSPENDED_LS,
178 /** Live save: The VM has been suspended by VMR3Suspend during a live save. */
179 VMSTATE_SUSPENDED_EXT_LS,
180 /** The VM is suspended and its state is being saved by EMT(0). (See SSM) */
181 VMSTATE_SAVING,
182 /** The VM is being debugged. (See DBGF.) */
183 VMSTATE_DEBUGGING,
184 /** Live save: The VM is being debugged while the live phase is going on. */
185 VMSTATE_DEBUGGING_LS,
186 /** The VM is being powered off. */
187 VMSTATE_POWERING_OFF,
188 /** Live save: The VM is being powered off and the save cancelled. */
189 VMSTATE_POWERING_OFF_LS,
190 /** The VM is switched off, awaiting destruction. */
191 VMSTATE_OFF,
192 /** Live save: Waiting for cancellation and transition to VMSTATE_OFF. */
193 VMSTATE_OFF_LS,
194 /** The VM is powered off because of a fatal error. */
195 VMSTATE_FATAL_ERROR,
196 /** Live save: Waiting for cancellation and transition to FatalError. */
197 VMSTATE_FATAL_ERROR_LS,
198 /** The VM is in guru meditation over a fatal failure. */
199 VMSTATE_GURU_MEDITATION,
200 /** Live save: Waiting for cancellation and transition to GuruMeditation. */
201 VMSTATE_GURU_MEDITATION_LS,
202 /** The VM is screwed because of a failed state loading. */
203 VMSTATE_LOAD_FAILURE,
204 /** The VM is being destroyed. */
205 VMSTATE_DESTROYING,
206 /** Terminated. */
207 VMSTATE_TERMINATED,
208 /** hack forcing the size of the enum to 32-bits. */
209 VMSTATE_MAKE_32BIT_HACK = 0x7fffffff
210} VMSTATE;
211
212/** @def VBOXSTRICTRC_STRICT_ENABLED
213 * Indicates that VBOXSTRICTRC is in strict mode.
214 */
215#if defined(__cplusplus) \
216 && ARCH_BITS == 64 /* cdecl requires classes and structs as hidden params. */ \
217 && !defined(_MSC_VER) /* trouble similar to 32-bit gcc. */ \
218 && ( defined(RT_STRICT) \
219 || defined(VBOX_STRICT) \
220 || defined(DEBUG) \
221 || defined(DOXYGEN_RUNNING) )
222# define VBOXSTRICTRC_STRICT_ENABLED 1
223# ifdef _MSC_VER
224# pragma warning(disable:4190)
225# endif
226#endif
227
228/** We need RTERR_STRICT_RC. */
229#if defined(VBOXSTRICTRC_STRICT_ENABLED) && !defined(RTERR_STRICT_RC)
230# define RTERR_STRICT_RC 1
231#endif
232
233/**
234 * Strict VirtualBox status code.
235 *
236 * This is normally an 32-bit integer and the only purpose of the type is to
237 * highlight the special handling that is required. But in strict build it is a
238 * class that causes compilation and runtime errors for some of the incorrect
239 * handling.
240 */
241#ifdef VBOXSTRICTRC_STRICT_ENABLED
242struct VBOXSTRICTRC
243{
244protected:
245 /** The status code. */
246 int32_t m_rc;
247
248public:
249 /** Default constructor setting the status to VERR_IPE_UNINITIALIZED_STATUS. */
250 VBOXSTRICTRC()
251#ifdef VERR_IPE_UNINITIALIZED_STATUS
252 : m_rc(VERR_IPE_UNINITIALIZED_STATUS)
253#else
254 : m_rc(-233 /*VERR_IPE_UNINITIALIZED_STATUS*/)
255#endif
256 {
257 }
258
259 /** Constructor for normal integer status codes. */
260 VBOXSTRICTRC(int32_t const rc)
261 : m_rc(rc)
262 {
263 }
264
265 /** Getter that VBOXSTRICTRC_VAL can use. */
266 int32_t getValue() const { return m_rc; }
267
268 /** @name Comparison operators
269 * @{ */
270 bool operator==(int32_t rc) const { return m_rc == rc; }
271 bool operator!=(int32_t rc) const { return m_rc != rc; }
272 bool operator<=(int32_t rc) const { return m_rc <= rc; }
273 bool operator>=(int32_t rc) const { return m_rc >= rc; }
274 bool operator<(int32_t rc) const { return m_rc < rc; }
275 bool operator>(int32_t rc) const { return m_rc > rc; }
276 /** @} */
277
278 /** Special automatic cast for RT_SUCCESS_NP. */
279 operator RTErrStrictType2() const { return RTErrStrictType2(m_rc); }
280
281private:
282 /** @name Constructors that will prevent some of the bad types.
283 * @{ */
284 VBOXSTRICTRC(uint8_t rc) : m_rc(-999) { NOREF(rc); }
285 VBOXSTRICTRC(uint16_t rc) : m_rc(-999) { NOREF(rc); }
286 VBOXSTRICTRC(uint32_t rc) : m_rc(-999) { NOREF(rc); }
287 VBOXSTRICTRC(uint64_t rc) : m_rc(-999) { NOREF(rc); }
288
289 VBOXSTRICTRC(int8_t rc) : m_rc(-999) { NOREF(rc); }
290 VBOXSTRICTRC(int16_t rc) : m_rc(-999) { NOREF(rc); }
291 VBOXSTRICTRC(int64_t rc) : m_rc(-999) { NOREF(rc); }
292 /** @} */
293};
294#else
295typedef int32_t VBOXSTRICTRC;
296#endif
297
298/** @def VBOXSTRICTRC_VAL
299 * Explicit getter.
300 * @param rcStrict The strict VirtualBox status code.
301 */
302#ifdef VBOXSTRICTRC_STRICT_ENABLED
303# define VBOXSTRICTRC_VAL(rcStrict) ( (rcStrict).getValue() )
304#else
305# define VBOXSTRICTRC_VAL(rcStrict) (rcStrict)
306#endif
307
308/** @def VBOXSTRICTRC_TODO
309 * Returns that needs dealing with.
310 * @param rcStrict The strict VirtualBox status code.
311 */
312#define VBOXSTRICTRC_TODO(rcStrict) VBOXSTRICTRC_VAL(rcStrict)
313
314
315/** Pointer to a PDM Base Interface. */
316typedef struct PDMIBASE *PPDMIBASE;
317/** Pointer to a pointer to a PDM Base Interface. */
318typedef PPDMIBASE *PPPDMIBASE;
319
320/** Pointer to a PDM Device Instance. */
321typedef struct PDMDEVINS *PPDMDEVINS;
322/** Pointer to a pointer to a PDM Device Instance. */
323typedef PPDMDEVINS *PPPDMDEVINS;
324/** R3 pointer to a PDM Device Instance. */
325typedef R3PTRTYPE(PPDMDEVINS) PPDMDEVINSR3;
326/** R0 pointer to a PDM Device Instance. */
327typedef R0PTRTYPE(PPDMDEVINS) PPDMDEVINSR0;
328/** RC pointer to a PDM Device Instance. */
329typedef RCPTRTYPE(PPDMDEVINS) PPDMDEVINSRC;
330
331/** Pointer to a PDM USB Device Instance. */
332typedef struct PDMUSBINS *PPDMUSBINS;
333/** Pointer to a pointer to a PDM USB Device Instance. */
334typedef PPDMUSBINS *PPPDMUSBINS;
335
336/** Pointer to a PDM Driver Instance. */
337typedef struct PDMDRVINS *PPDMDRVINS;
338/** Pointer to a pointer to a PDM Driver Instance. */
339typedef PPDMDRVINS *PPPDMDRVINS;
340/** R3 pointer to a PDM Driver Instance. */
341typedef R3PTRTYPE(PPDMDRVINS) PPDMDRVINSR3;
342/** R0 pointer to a PDM Driver Instance. */
343typedef R0PTRTYPE(PPDMDRVINS) PPDMDRVINSR0;
344/** RC pointer to a PDM Driver Instance. */
345typedef RCPTRTYPE(PPDMDRVINS) PPDMDRVINSRC;
346
347/** Pointer to a PDM Service Instance. */
348typedef struct PDMSRVINS *PPDMSRVINS;
349/** Pointer to a pointer to a PDM Service Instance. */
350typedef PPDMSRVINS *PPPDMSRVINS;
351
352/** Pointer to a PDM critical section. */
353typedef union PDMCRITSECT *PPDMCRITSECT;
354/** Pointer to a const PDM critical section. */
355typedef const union PDMCRITSECT *PCPDMCRITSECT;
356
357/** R3 pointer to a timer. */
358typedef R3PTRTYPE(struct TMTIMER *) PTMTIMERR3;
359/** Pointer to a R3 pointer to a timer. */
360typedef PTMTIMERR3 *PPTMTIMERR3;
361
362/** R0 pointer to a timer. */
363typedef R0PTRTYPE(struct TMTIMER *) PTMTIMERR0;
364/** Pointer to a R3 pointer to a timer. */
365typedef PTMTIMERR0 *PPTMTIMERR0;
366
367/** RC pointer to a timer. */
368typedef RCPTRTYPE(struct TMTIMER *) PTMTIMERRC;
369/** Pointer to a RC pointer to a timer. */
370typedef PTMTIMERRC *PPTMTIMERRC;
371
372/** Pointer to a timer. */
373typedef CTX_SUFF(PTMTIMER) PTMTIMER;
374/** Pointer to a pointer to a timer. */
375typedef PTMTIMER *PPTMTIMER;
376
377/** SSM Operation handle. */
378typedef struct SSMHANDLE *PSSMHANDLE;
379/** Pointer to a const SSM stream method table. */
380typedef struct SSMSTRMOPS const *PCSSMSTRMOPS;
381
382/** Pointer to a CPUMCTX. */
383typedef struct CPUMCTX *PCPUMCTX;
384/** Pointer to a const CPUMCTX. */
385typedef const struct CPUMCTX *PCCPUMCTX;
386
387/** Pointer to a CPU context core. */
388typedef struct CPUMCTXCORE *PCPUMCTXCORE;
389/** Pointer to a const CPU context core. */
390typedef const struct CPUMCTXCORE *PCCPUMCTXCORE;
391
392/** Pointer to selector hidden registers. */
393typedef struct CPUMSELREGHID *PCPUMSELREGHID;
394/** Pointer to const selector hidden registers. */
395typedef const struct CPUMSELREGHID *PCCPUMSELREGHID;
396
397/** @} */
398
399
400/** @defgroup grp_types_idt Interrupt Descriptor Table Entry.
401 * @ingroup grp_types
402 * @todo This all belongs in x86.h!
403 * @{ */
404
405/** @todo VBOXIDT -> VBOXDESCIDT, skip the complex variations. We'll never use them. */
406
407/** IDT Entry, Task Gate view. */
408#pragma pack(1) /* paranoia */
409typedef struct VBOXIDTE_TASKGATE
410{
411 /** Reserved. */
412 unsigned u16Reserved1 : 16;
413 /** Task Segment Selector. */
414 unsigned u16TSS : 16;
415 /** More reserved. */
416 unsigned u8Reserved2 : 8;
417 /** Fixed value bit 0 - Set to 1. */
418 unsigned u1Fixed0 : 1;
419 /** Busy bit. */
420 unsigned u1Busy : 1;
421 /** Fixed value bit 2 - Set to 1. */
422 unsigned u1Fixed1 : 1;
423 /** Fixed value bit 3 - Set to 0. */
424 unsigned u1Fixed2 : 1;
425 /** Fixed value bit 4 - Set to 0. */
426 unsigned u1Fixed3 : 1;
427 /** Descriptor Privilege level. */
428 unsigned u2DPL : 2;
429 /** Present flag. */
430 unsigned u1Present : 1;
431 /** Reserved. */
432 unsigned u16Reserved3 : 16;
433} VBOXIDTE_TASKGATE;
434#pragma pack()
435/** Pointer to IDT Entry, Task gate view. */
436typedef VBOXIDTE_TASKGATE *PVBOXIDTE_TASKGATE;
437
438
439/** IDT Entry, Intertupt gate view. */
440#pragma pack(1) /* paranoia */
441typedef struct VBOXIDTE_INTERRUPTGATE
442{
443 /** Low offset word. */
444 unsigned u16OffsetLow : 16;
445 /** Segment Selector. */
446 unsigned u16SegSel : 16;
447 /** Reserved. */
448 unsigned u5Reserved2 : 5;
449 /** Fixed value bit 0 - Set to 0. */
450 unsigned u1Fixed0 : 1;
451 /** Fixed value bit 1 - Set to 0. */
452 unsigned u1Fixed1 : 1;
453 /** Fixed value bit 2 - Set to 0. */
454 unsigned u1Fixed2 : 1;
455 /** Fixed value bit 3 - Set to 0. */
456 unsigned u1Fixed3 : 1;
457 /** Fixed value bit 4 - Set to 1. */
458 unsigned u1Fixed4 : 1;
459 /** Fixed value bit 5 - Set to 1. */
460 unsigned u1Fixed5 : 1;
461 /** Gate size, 1 = 32 bits, 0 = 16 bits. */
462 unsigned u132BitGate : 1;
463 /** Fixed value bit 5 - Set to 0. */
464 unsigned u1Fixed6 : 1;
465 /** Descriptor Privilege level. */
466 unsigned u2DPL : 2;
467 /** Present flag. */
468 unsigned u1Present : 1;
469 /** High offset word. */
470 unsigned u16OffsetHigh : 16;
471} VBOXIDTE_INTERRUPTGATE;
472#pragma pack()
473/** Pointer to IDT Entry, Interrupt gate view. */
474typedef VBOXIDTE_INTERRUPTGATE *PVBOXIDTE_INTERRUPTGATE;
475
476/** IDT Entry, Trap Gate view. */
477#pragma pack(1) /* paranoia */
478typedef struct VBOXIDTE_TRAPGATE
479{
480 /** Low offset word. */
481 unsigned u16OffsetLow : 16;
482 /** Segment Selector. */
483 unsigned u16SegSel : 16;
484 /** Reserved. */
485 unsigned u5Reserved2 : 5;
486 /** Fixed value bit 0 - Set to 0. */
487 unsigned u1Fixed0 : 1;
488 /** Fixed value bit 1 - Set to 0. */
489 unsigned u1Fixed1 : 1;
490 /** Fixed value bit 2 - Set to 0. */
491 unsigned u1Fixed2 : 1;
492 /** Fixed value bit 3 - Set to 1. */
493 unsigned u1Fixed3 : 1;
494 /** Fixed value bit 4 - Set to 1. */
495 unsigned u1Fixed4 : 1;
496 /** Fixed value bit 5 - Set to 1. */
497 unsigned u1Fixed5 : 1;
498 /** Gate size, 1 = 32 bits, 0 = 16 bits. */
499 unsigned u132BitGate : 1;
500 /** Fixed value bit 5 - Set to 0. */
501 unsigned u1Fixed6 : 1;
502 /** Descriptor Privilege level. */
503 unsigned u2DPL : 2;
504 /** Present flag. */
505 unsigned u1Present : 1;
506 /** High offset word. */
507 unsigned u16OffsetHigh : 16;
508} VBOXIDTE_TRAPGATE;
509#pragma pack()
510/** Pointer to IDT Entry, Trap Gate view. */
511typedef VBOXIDTE_TRAPGATE *PVBOXIDTE_TRAPGATE;
512
513/** IDT Entry Generic view. */
514#pragma pack(1) /* paranoia */
515typedef struct VBOXIDTE_GENERIC
516{
517 /** Low offset word. */
518 unsigned u16OffsetLow : 16;
519 /** Segment Selector. */
520 unsigned u16SegSel : 16;
521 /** Reserved. */
522 unsigned u5Reserved : 5;
523 /** IDT Type part one (not used for task gate). */
524 unsigned u3Type1 : 3;
525 /** IDT Type part two. */
526 unsigned u5Type2 : 5;
527 /** Descriptor Privilege level. */
528 unsigned u2DPL : 2;
529 /** Present flag. */
530 unsigned u1Present : 1;
531 /** High offset word. */
532 unsigned u16OffsetHigh : 16;
533} VBOXIDTE_GENERIC;
534#pragma pack()
535/** Pointer to IDT Entry Generic view. */
536typedef VBOXIDTE_GENERIC *PVBOXIDTE_GENERIC;
537
538/** IDT Type1 value. (Reserved for task gate!) */
539#define VBOX_IDTE_TYPE1 0
540/** IDT Type2 value - Task gate. */
541#define VBOX_IDTE_TYPE2_TASK 0x5
542/** IDT Type2 value - 16 bit interrupt gate. */
543#define VBOX_IDTE_TYPE2_INT_16 0x6
544/** IDT Type2 value - 32 bit interrupt gate. */
545#define VBOX_IDTE_TYPE2_INT_32 0xe
546/** IDT Type2 value - 16 bit trap gate. */
547#define VBOX_IDTE_TYPE2_TRAP_16 0x7
548/** IDT Type2 value - 32 bit trap gate. */
549#define VBOX_IDTE_TYPE2_TRAP_32 0xf
550
551/** IDT Entry. */
552#pragma pack(1) /* paranoia */
553typedef union VBOXIDTE
554{
555 /** Task gate view. */
556 VBOXIDTE_TASKGATE Task;
557 /** Trap gate view. */
558 VBOXIDTE_TRAPGATE Trap;
559 /** Interrupt gate view. */
560 VBOXIDTE_INTERRUPTGATE Int;
561 /** Generic IDT view. */
562 VBOXIDTE_GENERIC Gen;
563
564 /** 8 bit unsigned integer view. */
565 uint8_t au8[8];
566 /** 16 bit unsigned integer view. */
567 uint16_t au16[4];
568 /** 32 bit unsigned integer view. */
569 uint32_t au32[2];
570 /** 64 bit unsigned integer view. */
571 uint64_t au64;
572} VBOXIDTE;
573#pragma pack()
574/** Pointer to IDT Entry. */
575typedef VBOXIDTE *PVBOXIDTE;
576/** Pointer to IDT Entry. */
577typedef VBOXIDTE const *PCVBOXIDTE;
578
579/** IDT Entry, 64-bit mode, Intertupt gate view. */
580#pragma pack(1) /* paranoia */
581typedef struct VBOXIDTE64_INTERRUPTGATE
582{
583 /** Low offset word. */
584 unsigned u16OffsetLow : 16;
585 /** Segment Selector. */
586 unsigned u16SegSel : 16;
587 /** Interrupt Stack Table Index. */
588 unsigned u3Ist : 3;
589 /** Fixed value bit 0 - Set to 0. */
590 unsigned u1Fixed0 : 1;
591 /** Fixed value bit 1 - Set to 0. */
592 unsigned u1Fixed1 : 1;
593 /** Fixed value bit 2 - Set to 0. */
594 unsigned u1Fixed2 : 1;
595 /** Fixed value bit 3 - Set to 0. */
596 unsigned u1Fixed3 : 1;
597 /** Fixed value bit 4 - Set to 0. */
598 unsigned u1Fixed4 : 1;
599 /** Fixed value bit 5 - Set to 0. */
600 unsigned u1Fixed5 : 1;
601 /** Fixed value bit 6 - Set to 1. */
602 unsigned u1Fixed6 : 1;
603 /** Fixed value bit 7 - Set to 1. */
604 unsigned u1Fixed7 : 1;
605 /** Gate size, 1 = 32 bits, 0 = 16 bits. */
606 unsigned u132BitGate : 1;
607 /** Fixed value bit 5 - Set to 0. */
608 unsigned u1Fixed8 : 1;
609 /** Descriptor Privilege level. */
610 unsigned u2DPL : 2;
611 /** Present flag. */
612 unsigned u1Present : 1;
613 /** High offset word. */
614 unsigned u16OffsetHigh : 16;
615 /** Offset bits 32..63. */
616 unsigned u32OffsetHigh64;
617 /** Reserved. */
618 unsigned u32Reserved;
619} VBOXIDTE64_INTERRUPTGATE;
620#pragma pack()
621/** Pointer to IDT Entry, 64-bit mode, Interrupt gate view. */
622typedef VBOXIDTE64_INTERRUPTGATE *PVBOXIDTE64_INTERRUPTGATE;
623
624/** IDT Entry, 64-bit mode, Trap gate view. */
625#pragma pack(1) /* paranoia */
626typedef struct VBOXIDTE64_TRAPGATE
627{
628 /** Low offset word. */
629 unsigned u16OffsetLow : 16;
630 /** Segment Selector. */
631 unsigned u16SegSel : 16;
632 /** Interrupt Stack Table Index. */
633 unsigned u3Ist : 3;
634 /** Fixed value bit 0 - Set to 0. */
635 unsigned u1Fixed0 : 1;
636 /** Fixed value bit 1 - Set to 0. */
637 unsigned u1Fixed1 : 1;
638 /** Fixed value bit 2 - Set to 0. */
639 unsigned u1Fixed2 : 1;
640 /** Fixed value bit 3 - Set to 0. */
641 unsigned u1Fixed3 : 1;
642 /** Fixed value bit 4 - Set to 0. */
643 unsigned u1Fixed4 : 1;
644 /** Fixed value bit 5 - Set to 1. */
645 unsigned u1Fixed5 : 1;
646 /** Fixed value bit 6 - Set to 1. */
647 unsigned u1Fixed6 : 1;
648 /** Fixed value bit 7 - Set to 1. */
649 unsigned u1Fixed7 : 1;
650 /** Gate size, 1 = 32 bits, 0 = 16 bits. */
651 unsigned u132BitGate : 1;
652 /** Fixed value bit 5 - Set to 0. */
653 unsigned u1Fixed8 : 1;
654 /** Descriptor Privilege level. */
655 unsigned u2DPL : 2;
656 /** Present flag. */
657 unsigned u1Present : 1;
658 /** High offset word. */
659 unsigned u16OffsetHigh : 16;
660 /** Offset bits 32..63. */
661 unsigned u32OffsetHigh64;
662 /** Reserved. */
663 unsigned u32Reserved;
664} VBOXIDTE64_TRAPGATE;
665#pragma pack()
666/** Pointer to IDT Entry, 64-bit mode, Trap gate view. */
667typedef VBOXIDTE64_TRAPGATE *PVBOXIDTE64_TRAPGATE;
668
669/** IDT Entry, 64-bit mode, Generic view. */
670#pragma pack(1) /* paranoia */
671typedef struct VBOXIDTE64_GENERIC
672{
673 /** Low offset word. */
674 unsigned u16OffsetLow : 16;
675 /** Segment Selector. */
676 unsigned u16SegSel : 16;
677 /** Reserved. */
678 unsigned u3Ist : 3;
679 /** Fixed value bit 0 - Set to 0. */
680 unsigned u1Fixed0 : 1;
681 /** Fixed value bit 1 - Set to 0. */
682 unsigned u1Fixed1 : 1;
683 /** IDT Type part one (not used for task gate). */
684 unsigned u3Type1 : 3;
685 /** IDT Type part two. */
686 unsigned u5Type2 : 5;
687 /** Descriptor Privilege level. */
688 unsigned u2DPL : 2;
689 /** Present flag. */
690 unsigned u1Present : 1;
691 /** High offset word. */
692 unsigned u16OffsetHigh : 16;
693 /** Offset bits 32..63. */
694 unsigned u32OffsetHigh64;
695 /** Reserved. */
696 unsigned u32Reserved;
697} VBOXIDTE64_GENERIC;
698#pragma pack()
699/** Pointer to IDT Entry, 64-bit mode, Generic view. */
700typedef VBOXIDTE64_GENERIC *PVBOXIDTE64_GENERIC;
701
702/** IDT Entry, 64-bit mode. */
703#pragma pack(1) /* paranoia */
704typedef union VBOXIDTE64
705{
706 /** Trap gate view. */
707 VBOXIDTE64_TRAPGATE Trap;
708 /** Interrupt gate view. */
709 VBOXIDTE64_INTERRUPTGATE Int;
710 /** Generic IDT view. */
711 VBOXIDTE64_GENERIC Gen;
712
713 /** 8 bit unsigned integer view. */
714 uint8_t au8[16];
715 /** 16 bit unsigned integer view. */
716 uint16_t au16[8];
717 /** 32 bit unsigned integer view. */
718 uint32_t au32[4];
719 /** 64 bit unsigned integer view. */
720 uint64_t au64[2];
721} VBOXIDTE64;
722#pragma pack()
723/** Pointer to IDT Entry. */
724typedef VBOXIDTE64 *PVBOXIDTE64;
725/** Pointer to IDT Entry. */
726typedef VBOXIDTE64 const *PCVBOXIDTE64;
727
728#pragma pack(1)
729/** IDTR */
730typedef struct VBOXIDTR
731{
732 /** Size of the IDT. */
733 uint16_t cbIdt;
734 /** Address of the IDT. */
735 uint64_t pIdt;
736} VBOXIDTR, *PVBOXIDTR;
737#pragma pack()
738
739#pragma pack(1)
740/** IDTR from version 1.6 */
741typedef struct VBOXIDTR_VER1_6
742{
743 /** Size of the IDT. */
744 uint16_t cbIdt;
745 /** Address of the IDT. */
746 uint32_t pIdt;
747} VBOXIDTR_VER1_6, *PVBOXIDTR_VER1_6;
748#pragma pack()
749
750/** @} */
751
752
753/** @def VBOXIDTE_OFFSET
754 * Return the offset of an IDT entry.
755 */
756#define VBOXIDTE_OFFSET(desc) \
757 ( ((uint32_t)((desc).Gen.u16OffsetHigh) << 16) \
758 | ( (desc).Gen.u16OffsetLow ) )
759
760/** @def VBOXIDTE64_OFFSET
761 * Return the offset of an IDT entry.
762 */
763#define VBOXIDTE64_OFFSET(desc) \
764 ( ((uint64_t)((desc).Gen.u32OffsetHigh64) << 32) \
765 | ((uint32_t)((desc).Gen.u16OffsetHigh) << 16) \
766 | ( (desc).Gen.u16OffsetLow ) )
767
768#pragma pack(1)
769/** GDTR */
770typedef struct VBOXGDTR
771{
772 /** Size of the GDT. */
773 uint16_t cbGdt;
774 /** Address of the GDT. */
775 uint64_t pGdt;
776} VBOXGDTR;
777#pragma pack()
778/** Pointer to GDTR. */
779typedef VBOXGDTR *PVBOXGDTR;
780
781#pragma pack(1)
782/** GDTR from version 1.6 */
783typedef struct VBOXGDTR_VER1_6
784{
785 /** Size of the GDT. */
786 uint16_t cbGdt;
787 /** Address of the GDT. */
788 uint32_t pGdt;
789} VBOXGDTR_VER1_6;
790#pragma pack()
791
792/** @} */
793
794
795/**
796 * 32-bit Task Segment used in raw mode.
797 * @todo Move this to SELM! Use X86TSS32 instead.
798 */
799#pragma pack(1)
800typedef struct VBOXTSS
801{
802 /** 0x00 - Back link to previous task. (static) */
803 RTSEL selPrev;
804 uint16_t padding1;
805 /** 0x04 - Ring-0 stack pointer. (static) */
806 uint32_t esp0;
807 /** 0x08 - Ring-0 stack segment. (static) */
808 RTSEL ss0;
809 uint16_t padding_ss0;
810 /** 0x0c - Ring-1 stack pointer. (static) */
811 uint32_t esp1;
812 /** 0x10 - Ring-1 stack segment. (static) */
813 RTSEL ss1;
814 uint16_t padding_ss1;
815 /** 0x14 - Ring-2 stack pointer. (static) */
816 uint32_t esp2;
817 /** 0x18 - Ring-2 stack segment. (static) */
818 RTSEL ss2;
819 uint16_t padding_ss2;
820 /** 0x1c - Page directory for the task. (static) */
821 uint32_t cr3;
822 /** 0x20 - EIP before task switch. */
823 uint32_t eip;
824 /** 0x24 - EFLAGS before task switch. */
825 uint32_t eflags;
826 /** 0x28 - EAX before task switch. */
827 uint32_t eax;
828 /** 0x2c - ECX before task switch. */
829 uint32_t ecx;
830 /** 0x30 - EDX before task switch. */
831 uint32_t edx;
832 /** 0x34 - EBX before task switch. */
833 uint32_t ebx;
834 /** 0x38 - ESP before task switch. */
835 uint32_t esp;
836 /** 0x3c - EBP before task switch. */
837 uint32_t ebp;
838 /** 0x40 - ESI before task switch. */
839 uint32_t esi;
840 /** 0x44 - EDI before task switch. */
841 uint32_t edi;
842 /** 0x48 - ES before task switch. */
843 RTSEL es;
844 uint16_t padding_es;
845 /** 0x4c - CS before task switch. */
846 RTSEL cs;
847 uint16_t padding_cs;
848 /** 0x50 - SS before task switch. */
849 RTSEL ss;
850 uint16_t padding_ss;
851 /** 0x54 - DS before task switch. */
852 RTSEL ds;
853 uint16_t padding_ds;
854 /** 0x58 - FS before task switch. */
855 RTSEL fs;
856 uint16_t padding_fs;
857 /** 0x5c - GS before task switch. */
858 RTSEL gs;
859 uint16_t padding_gs;
860 /** 0x60 - LDTR before task switch. */
861 RTSEL selLdt;
862 uint16_t padding_ldt;
863 /** 0x64 - Debug trap flag */
864 uint16_t fDebugTrap;
865 /** 0x66 - Offset relative to the TSS of the start of the I/O Bitmap
866 * and the end of the interrupt redirection bitmap. */
867 uint16_t offIoBitmap;
868 /** 0x68 - 32 bytes for the virtual interrupt redirection bitmap. (VME) */
869 uint8_t IntRedirBitmap[32];
870} VBOXTSS;
871#pragma pack()
872/** Pointer to task segment. */
873typedef VBOXTSS *PVBOXTSS;
874/** Pointer to const task segment. */
875typedef const VBOXTSS *PCVBOXTSS;
876
877
878/** Pointer to a callback method table provided by the VM API user. */
879typedef struct VMM2USERMETHODS const *PCVMM2USERMETHODS;
880
881
882/**
883 * Data transport buffer (scatter/gather)
884 */
885typedef struct PDMDATASEG
886{
887 /** Length of buffer in entry. */
888 size_t cbSeg;
889 /** Pointer to the start of the buffer. */
890 void *pvSeg;
891} PDMDATASEG;
892/** Pointer to a data transport segment. */
893typedef PDMDATASEG *PPDMDATASEG;
894/** Pointer to a const data transport segment. */
895typedef PDMDATASEG const *PCPDMDATASEG;
896
897
898/**
899 * Forms of generic segment offloading.
900 */
901typedef enum PDMNETWORKGSOTYPE
902{
903 /** Invalid zero value. */
904 PDMNETWORKGSOTYPE_INVALID = 0,
905 /** TCP/IPv4 - no CWR/ECE encoding. */
906 PDMNETWORKGSOTYPE_IPV4_TCP,
907 /** TCP/IPv6 - no CWR/ECE encoding. */
908 PDMNETWORKGSOTYPE_IPV6_TCP,
909 /** UDP/IPv4. */
910 PDMNETWORKGSOTYPE_IPV4_UDP,
911 /** UDP/IPv6. */
912 PDMNETWORKGSOTYPE_IPV6_UDP,
913 /** TCP/IPv6 over IPv4 tunneling - no CWR/ECE encoding.
914 * The header offsets and sizes relates to IPv4 and TCP, the IPv6 header is
915 * figured out as needed.
916 * @todo Needs checking against facts, this is just an outline of the idea. */
917 PDMNETWORKGSOTYPE_IPV4_IPV6_TCP,
918 /** UDP/IPv6 over IPv4 tunneling.
919 * The header offsets and sizes relates to IPv4 and UDP, the IPv6 header is
920 * figured out as needed.
921 * @todo Needs checking against facts, this is just an outline of the idea. */
922 PDMNETWORKGSOTYPE_IPV4_IPV6_UDP,
923 /** The end of valid GSO types. */
924 PDMNETWORKGSOTYPE_END
925} PDMNETWORKGSOTYPE;
926
927
928/**
929 * Generic segment offloading context.
930 *
931 * We generally follow the E1000 specs wrt to which header fields we change.
932 * However the GSO type implies where the checksum fields are and that they are
933 * always updated from scratch (no half done pseudo checksums).
934 *
935 * @remarks This is part of the internal network GSO packets. Take great care
936 * when making changes. The size is expected to be exactly 8 bytes.
937 */
938typedef struct PDMNETWORKGSO
939{
940 /** The type of segmentation offloading we're performing (PDMNETWORKGSOTYPE). */
941 uint8_t u8Type;
942 /** The total header size. */
943 uint8_t cbHdrs;
944 /** The max segment size (MSS) to apply. */
945 uint16_t cbMaxSeg;
946
947 /** Offset of the first header (IPv4 / IPv6). 0 if not not needed. */
948 uint8_t offHdr1;
949 /** Offset of the second header (TCP / UDP). 0 if not not needed. */
950 uint8_t offHdr2;
951 /** Unused. */
952 uint8_t au8Unused[2];
953} PDMNETWORKGSO;
954/** Pointer to a GSO context. */
955typedef PDMNETWORKGSO *PPDMNETWORKGSO;
956/** Pointer to a const GSO context. */
957typedef PDMNETWORKGSO const *PCPDMNETWORKGSO;
958
959
960/**
961 * The current ROM page protection.
962 *
963 * @remarks This is part of the saved state.
964 */
965typedef enum PGMROMPROT
966{
967 /** The customary invalid value. */
968 PGMROMPROT_INVALID = 0,
969 /** Read from the virgin ROM page, ignore writes.
970 * Map the virgin page, use write access handler to ignore writes. */
971 PGMROMPROT_READ_ROM_WRITE_IGNORE,
972 /** Read from the virgin ROM page, write to the shadow RAM.
973 * Map the virgin page, use write access handler change the RAM. */
974 PGMROMPROT_READ_ROM_WRITE_RAM,
975 /** Read from the shadow ROM page, ignore writes.
976 * Map the shadow page read-only, use write access handler to ignore writes. */
977 PGMROMPROT_READ_RAM_WRITE_IGNORE,
978 /** Read from the shadow ROM page, ignore writes.
979 * Map the shadow page read-write, disabled write access handler. */
980 PGMROMPROT_READ_RAM_WRITE_RAM,
981 /** The end of valid values. */
982 PGMROMPROT_END,
983 /** The usual 32-bit type size hack. */
984 PGMROMPROT_32BIT_HACK = 0x7fffffff
985} PGMROMPROT;
986
987
988/**
989 * Page mapping lock.
990 */
991typedef struct PGMPAGEMAPLOCK
992{
993#if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0)
994 /** The locked page. */
995 void *pvPage;
996 /** Pointer to the CPU that made the mapping.
997 * In ring-0 and raw-mode context we don't intend to ever allow long term
998 * locking and this is a way of making sure we're still on the same CPU. */
999 PVMCPU pVCpu;
1000#else
1001 /** Pointer to the PGMPAGE and lock type.
1002 * bit-0 abuse: set=write, clear=read. */
1003 uintptr_t uPageAndType;
1004/** Read lock type value. */
1005# define PGMPAGEMAPLOCK_TYPE_READ ((uintptr_t)0)
1006/** Write lock type value. */
1007# define PGMPAGEMAPLOCK_TYPE_WRITE ((uintptr_t)1)
1008/** Lock type mask. */
1009# define PGMPAGEMAPLOCK_TYPE_MASK ((uintptr_t)1)
1010 /** Pointer to the PGMCHUNKR3MAP. */
1011 void *pvMap;
1012#endif
1013} PGMPAGEMAPLOCK;
1014/** Pointer to a page mapping lock. */
1015typedef PGMPAGEMAPLOCK *PPGMPAGEMAPLOCK;
1016
1017
1018/** Pointer to a info helper callback structure. */
1019typedef struct DBGFINFOHLP *PDBGFINFOHLP;
1020/** Pointer to a const info helper callback structure. */
1021typedef const struct DBGFINFOHLP *PCDBGFINFOHLP;
1022
1023
1024/** Configuration manager tree node - A key. */
1025typedef struct CFGMNODE *PCFGMNODE;
1026
1027/** Configuration manager tree leaf - A value. */
1028typedef struct CFGMLEAF *PCFGMLEAF;
1029
1030
1031/**
1032 * CPU modes.
1033 */
1034typedef enum CPUMMODE
1035{
1036 /** The usual invalid zero entry. */
1037 CPUMMODE_INVALID = 0,
1038 /** Real mode. */
1039 CPUMMODE_REAL,
1040 /** Protected mode (32-bit). */
1041 CPUMMODE_PROTECTED,
1042 /** Long mode (64-bit). */
1043 CPUMMODE_LONG
1044} CPUMMODE;
1045
1046/** @} */
1047
1048#endif
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