VirtualBox

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

Last change on this file since 52664 was 45152, checked in by vboxsync, 11 years ago

PDMCritSectRw: Early morphing stage - untested, ring-3 only.

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

© 2024 Oracle
ContactPrivacy/Do Not Sell My InfoTerms of Use