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
|
/* $Id: gvm.h $ */
/** @file
* GVM - The Global VM Data.
*/
/*
* Copyright (C) 2007-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox 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.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef VBOX_INCLUDED_vmm_gvm_h
#define VBOX_INCLUDED_vmm_gvm_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#ifndef USING_VMM_COMMON_DEFS
# error "Compile job does not include VMM_COMMON_DEFS from src/VBox/Config.kmk - make sure you really need to include this file!"
#endif
#include <VBox/types.h>
#include <VBox/vmm/vm.h>
#include <VBox/param.h>
#include <iprt/thread.h>
#include <iprt/assertcompile.h>
/** @defgroup grp_gvmcpu GVMCPU - The Global VMCPU Data
* @ingroup grp_vmm
* @{
*/
#if defined(__cplusplus) && !defined(GVM_C_STYLE_STRUCTURES)
typedef struct GVMCPU : public VMCPU
#else
typedef struct GVMCPU
#endif
{
#if !defined(__cplusplus) || defined(GVM_C_STYLE_STRUCTURES)
VMCPU s;
#endif
/** VCPU id (0 - (pVM->cCpus - 1). */
VMCPUID idCpu;
/** The VM target platform architecture.
* Same as GVM::enmTarget, VMCPU::enmTarget and VM::enmTarget. */
VMTARGET enmTarget;
/** Handle to the EMT thread. */
RTNATIVETHREAD hEMT;
/** Pointer to the global (ring-0) VM structure this CPU belongs to. */
R0PTRTYPE(PGVM) pGVM;
/** Pointer to the GVM structure, for CTX_SUFF use in VMMAll code. */
PGVM pVMR0;
/** The ring-3 address of this structure (only VMCPU part). */
PVMCPUR3 pVCpuR3;
/** Padding so the noisy stuff on a 64 byte boundrary.
* @note Keeping this working for 32-bit header syntax checking. */
uint8_t abPadding1[24];
/** Which host CPU ID is this EMT running on.
* Only valid when in RC or HMR0 with scheduling disabled. */
RTCPUID volatile idHostCpu;
/** The CPU set index corresponding to idHostCpu, UINT32_MAX if not valid.
* @remarks Best to make sure iHostCpuSet shares cache line with idHostCpu! */
uint32_t volatile iHostCpuSet;
/** Padding so gvmm starts on a 64 byte boundrary.
* @note Keeping this working for 32-bit header syntax checking. */
uint8_t abPadding2[56];
/** The GVMM per vcpu data. */
union
{
#ifdef VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h
struct GVMMPERVCPU s;
#endif
uint8_t padding[256];
} gvmm;
union
{
#if defined(VMM_INCLUDED_SRC_include_VMMInternal_h) && defined(IN_RING0)
struct VMMR0PERVCPU s;
#endif
uint8_t padding[896];
} vmmr0;
#ifndef VBOX_WITH_MINIMAL_R0
/** The HM per vcpu data. */
union
{
# if defined(VMM_INCLUDED_SRC_include_HMInternal_h) && defined(IN_RING0)
struct HMR0PERVCPU s;
# endif
uint8_t padding[1024];
} hmr0;
# ifdef VBOX_WITH_NEM_R0
/** The NEM per vcpu data. */
union
{
# if defined(VMM_INCLUDED_SRC_include_NEMInternal_h) && defined(IN_RING0)
struct NEMR0PERVCPU s;
# endif
uint8_t padding[64];
} nemr0;
# endif
union
{
# if defined(VMM_INCLUDED_SRC_include_PGMInternal_h) && defined(IN_RING0)
struct PGMR0PERVCPU s;
# endif
uint8_t padding[576];
} pgmr0;
union
{
# if defined(VMM_INCLUDED_SRC_include_IEMInternal_h) && defined(IN_RING0)
struct IEMR0PERVCPU s;
# endif
uint8_t padding[1856];
} iemr0;
#endif /* !VBOX_WITH_MINIMAL_R0 */
/** Padding the structure size to page boundrary. */
#ifdef VBOX_WITH_MINIMAL_R0
uint8_t abPadding3[16384 - 64*2 - 256 - 896];
#elif defined(VBOX_WITH_NEM_R0)
uint8_t abPadding3[16384 - 64*2 - 256 - 896 - 1024 - 64 - 576 - 1856];
#else
uint8_t abPadding3[16384 - 64*2 - 256 - 896 - 1024 - 576 - 1856];
#endif
} GVMCPU;
#ifndef IN_TSTVMSTRUCT
# if RT_CLANG_PREREQ(3, 4) && defined(__cplusplus)
# pragma clang diagnostic push
# elif RT_GNUC_PREREQ(4, 6) && defined(__cplusplus)
# pragma GCC diagnostic push
# endif
# if RT_CLANG_PREREQ(3, 4) && defined(__cplusplus)
# pragma clang diagnostic ignored "-Winvalid-offsetof"
# elif RT_GNUC_PREREQ(4, 3) && defined(__cplusplus)
# pragma GCC diagnostic ignored "-Winvalid-offsetof"
# endif
AssertCompileMemberAlignment(GVMCPU, idCpu, 16384);
AssertCompileMemberAlignment(GVMCPU, gvmm, 64);
# ifndef VBOX_WITH_MINIMAL_R0
# ifdef VBOX_WITH_NEM_R0
AssertCompileMemberAlignment(GVMCPU, nemr0, 64);
# endif
# endif
AssertCompileSizeAlignment(GVMCPU, 16384);
# if RT_CLANG_PREREQ(3, 4) && defined(__cplusplus)
# pragma clang diagnostic pop
# elif RT_GNUC_PREREQ(4, 6) && defined(__cplusplus)
# pragma GCC diagnostic pop
# endif
#endif
/** @} */
/** @defgroup grp_gvm GVM - The Global VM Data
* @ingroup grp_vmm
* @{
*/
/**
* The Global VM Data.
*
* This is a ring-0 only structure where we put items we don't need to
* share with ring-3 or GC, like for instance various RTR0MEMOBJ handles.
*
* Unlike VM, there are no special alignment restrictions here. The
* paddings are checked by compile time assertions.
*/
#if defined(__cplusplus) && !defined(GVM_C_STYLE_STRUCTURES)
typedef struct GVM : public VM
#else
typedef struct GVM
#endif
{
#if !defined(__cplusplus) || defined(GVM_C_STYLE_STRUCTURES)
VM s;
#endif
/** Magic / eye-catcher (GVM_MAGIC). */
uint32_t u32Magic;
/** The global VM handle for this VM. */
uint32_t hSelf;
/** Pointer to this structure (for validation purposes). */
PGVM pSelf;
/** The ring-3 mapping of the VM structure. */
PVMR3 pVMR3;
/** The support driver session the VM is associated with. */
PSUPDRVSESSION pSession;
/** Number of Virtual CPUs, i.e. how many entries there are in aCpus.
* Same as VM::cCpus. */
uint32_t cCpus;
/** The VM target platform architecture.
* Same as VM::enmTarget. */
VMTARGET enmTarget;
/** Padding so gvmm starts on a 64 byte boundrary. */
uint8_t abPadding[24];
/** The GVMM per vm data. */
union
{
#ifdef VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h
struct GVMMPERVM s;
#endif
uint8_t padding[4352];
} gvmm;
#ifndef VBOX_WITH_MINIMAL_R0
/** The GMM per vm data. */
union
{
# ifdef VMM_INCLUDED_SRC_VMMR0_GMMR0Internal_h
struct GMMPERVM s;
# endif
uint8_t padding[1024];
} gmm;
/** The HM per vm data. */
union
{
# if defined(VMM_INCLUDED_SRC_include_HMInternal_h) && defined(IN_RING0)
struct HMR0PERVM s;
# endif
uint8_t padding[256];
} hmr0;
# ifdef VBOX_WITH_NEM_R0
/** The NEM per vcpu data. */
union
{
# if defined(VMM_INCLUDED_SRC_include_NEMInternal_h) && defined(IN_RING0)
struct NEMR0PERVM s;
# endif
uint8_t padding[256];
} nemr0;
# endif
/** The RAWPCIVM per vm data. */
union
{
# ifdef VBOX_INCLUDED_rawpci_h
struct RAWPCIPERVM s;
# endif
uint8_t padding[64];
} rawpci;
union
{
# if defined(VMM_INCLUDED_SRC_include_PDMInternal_h) && defined(IN_RING0)
struct PDMR0PERVM s;
# endif
uint8_t padding[3264];
} pdmr0;
union
{
# if defined(VMM_INCLUDED_SRC_include_PGMInternal_h) && defined(IN_RING0)
struct PGMR0PERVM s;
# endif
uint8_t padding[90112];
} pgmr0;
union
{
# if defined(VMM_INCLUDED_SRC_include_IOMInternal_h) && defined(IN_RING0)
struct IOMR0PERVM s;
# endif
uint8_t padding[512];
} iomr0;
union
{
# if defined(VMM_INCLUDED_SRC_include_APICInternal_h) && defined(IN_RING0)
struct APICR0PERVM s;
# endif
uint8_t padding[64];
} apicr0;
union
{
# if defined(VMM_INCLUDED_SRC_include_DBGFInternal_h) && defined(IN_RING0)
struct DBGFR0PERVM s;
# endif
uint8_t padding[1024];
} dbgfr0;
union
{
# if defined(VMM_INCLUDED_SRC_include_TMInternal_h) && defined(IN_RING0)
TMR0PERVM s;
# endif
uint8_t padding[192];
} tmr0;
#endif /* !VBOX_WITH_MINIMAL_R0 */
union
{
#if defined(VMM_INCLUDED_SRC_include_VMMInternal_h) && defined(IN_RING0)
VMMR0PERVM s;
#endif
uint8_t padding[704];
} vmmr0;
/** Padding so aCpus starts on a page boundrary. */
#ifdef VBOX_WITH_MINIMAL_R0
uint8_t abPadding2[16384*1 - 64 - 4352 - 704 - sizeof(PGVMCPU) * VMM_MAX_CPU_COUNT];
#elif defined(VBOX_WITH_NEM_R0)
uint8_t abPadding2[16384*7 - 64 - 4352 - 1024 - 256 - 256 - 64 - 3264 - 90112 - 512 - 64 - 1024 - 192 - 704 - sizeof(PGVMCPU) * VMM_MAX_CPU_COUNT];
#else
uint8_t abPadding2[16384*7 - 64 - 4352 - 1024 - 256 - 64 - 3264 - 90112 - 512 - 64 - 1024 - 192 - 704 - sizeof(PGVMCPU) * VMM_MAX_CPU_COUNT];
#endif
/** For simplifying CPU enumeration in VMMAll code. */
PGVMCPU apCpusR0[VMM_MAX_CPU_COUNT];
/** GVMCPU array for the configured number of virtual CPUs. */
GVMCPU aCpus[1];
} GVM;
#if 0
#if RT_GNUC_PREREQ(4, 6) && defined(__cplusplus)
# pragma GCC diagnostic push
#endif
#if RT_GNUC_PREREQ(4, 3) && defined(__cplusplus)
# pragma GCC diagnostic ignored "-Winvalid-offsetof"
#endif
AssertCompileMemberAlignment(GVM, u32Magic, 64);
AssertCompileMemberAlignment(GVM, gvmm, 64);
AssertCompileMemberAlignment(GVM, gmm, 64);
#ifdef VBOX_WITH_NEM_R0
AssertCompileMemberAlignment(GVM, nemr0, 64);
#endif
AssertCompileMemberAlignment(GVM, rawpci, 64);
AssertCompileMemberAlignment(GVM, pdmr0, 64);
AssertCompileMemberAlignment(GVM, aCpus, 16384);
AssertCompileSizeAlignment(GVM, 16384);
#if RT_GNUC_PREREQ(4, 6) && defined(__cplusplus)
# pragma GCC diagnostic pop
#endif
#endif
/** The GVM::u32Magic value (Wayne Shorter). */
#define GVM_MAGIC 0x19330825
/** @} */
#endif /* !VBOX_INCLUDED_vmm_gvm_h */
|