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