VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/GVMMR0Internal.h@ 92626

Last change on this file since 92626 was 92200, checked in by vboxsync, 3 years ago

VMM/GVMM,VMM: Make it possible for known worker thread to enter critical sections in ring-0. Added a couple of helpers for safely signalling event semaphores. bugref:10093 bugref:6695

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 4.4 KB
Line 
1/* $Id: GVMMR0Internal.h 92200 2021-11-03 21:46:36Z vboxsync $ */
2/** @file
3 * GVMM - The Global VM Manager, Internal header.
4 */
5
6/*
7 * Copyright (C) 2007-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h
19#define VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <iprt/mem.h>
25
26/**
27 * The GVMM per VM data.
28 */
29typedef struct GVMMPERVCPU
30{
31 /** The time the halted EMT thread expires.
32 * 0 if the EMT thread is blocked here. */
33 uint64_t volatile u64HaltExpire;
34 /** The event semaphore the EMT thread is blocking on. */
35 RTSEMEVENTMULTI HaltEventMulti;
36 /** The ring-3 mapping of the VMCPU structure. */
37 RTR0MEMOBJ VMCpuMapObj;
38 /** The APIC ID of the CPU that EMT was scheduled on the last time we checked.
39 * @todo Extend to 32-bit and use most suitable APIC ID function when we
40 * start using this for something sensible... */
41 uint8_t iCpuEmt;
42 uint8_t bPadding;
43 /** The EMT hash table index for this VCpu. */
44 uint16_t idxEmtHash;
45} GVMMPERVCPU;
46/** Pointer to the GVMM per VCPU data. */
47typedef GVMMPERVCPU *PGVMMPERVCPU;
48
49
50/**
51 * EMT hash table entry.
52 */
53typedef struct GVMMEMTHASHENTRY
54{
55 /** The key. */
56 RTNATIVETHREAD hNativeEmt;
57 /** The VCpu index. */
58 VMCPUID idVCpu;
59#if HC_ARCH_BITS == 64
60 uint32_t u32Padding;
61#endif
62} GVMMEMTHASHENTRY;
63AssertCompileSize(GVMMEMTHASHENTRY, sizeof(void *) * 2);
64
65/** The EMT hash table size. */
66#define GVMM_EMT_HASH_SIZE (VMM_MAX_CPU_COUNT * 4)
67/** Primary EMT hash table hash function, sans range limit.
68 * @note We assume the native ring-0 thread handle is a pointer to a pretty big
69 * structure of at least 1 KiB.
70 * - NT AMD64 6.0 ETHREAD: 0x450. See
71 * https://www.geoffchappell.com/studies/windows/km/ntoskrnl/inc/ntos/ps/ethread/index.htm
72 * for more details.
73 * - Solaris kthread_t is at least 0x370 in Solaris 10.
74 * - Linux task_struct looks pretty big too.
75 * - As does struct thread in xnu.
76 * @todo Make platform specific adjustment as needed. */
77#define GVMM_EMT_HASH_CORE(a_hNativeSelf) ( (uintptr_t)(a_hNativeSelf) >> 10 )
78/** Primary EMT hash table function. */
79#define GVMM_EMT_HASH_1(a_hNativeSelf) ( GVMM_EMT_HASH_CORE(a_hNativeSelf) % GVMM_EMT_HASH_SIZE )
80/** Secondary EMT hash table function, added to the primary one on collision.
81 * This uses the bits above the primary hash.
82 * @note It is always odd, which guarantees that we'll visit all hash table
83 * entries in case of a collision. */
84#define GVMM_EMT_HASH_2(a_hNativeSelf) ( ((GVMM_EMT_HASH_CORE(a_hNativeSelf) / GVMM_EMT_HASH_SIZE) | 1) % GVMM_EMT_HASH_SIZE )
85
86/**
87 * The GVMM per VM data.
88 */
89typedef struct GVMMPERVM
90{
91 /** The shared VM data structure allocation object (PVMR0). */
92 RTR0MEMOBJ VMMemObj;
93 /** The Ring-3 mapping of the shared VM data structure (PVMR3). */
94 RTR0MEMOBJ VMMapObj;
95 /** The allocation object for the VM pages. */
96 RTR0MEMOBJ VMPagesMemObj;
97 /** The ring-3 mapping of the VM pages. */
98 RTR0MEMOBJ VMPagesMapObj;
99
100 /** The scheduler statistics. */
101 GVMMSTATSSCHED StatsSched;
102
103 /** Whether the per-VM ring-0 initialization has been performed. */
104 bool fDoneVMMR0Init;
105 /** Whether the per-VM ring-0 termination is being or has been performed. */
106 bool fDoneVMMR0Term;
107 bool afPadding[6];
108
109 /** Worker thread registrations. */
110 struct
111 {
112 /** The native ring-0 thread handle. */
113 RTNATIVETHREAD hNativeThread;
114 /** The native ring-3 thread handle. */
115 RTNATIVETHREAD hNativeThreadR3;
116 } aWorkerThreads[GVMMWORKERTHREAD_END];
117
118 /** EMT lookup hash table. */
119 GVMMEMTHASHENTRY aEmtHash[GVMM_EMT_HASH_SIZE];
120} GVMMPERVM;
121/** Pointer to the GVMM per VM data. */
122typedef GVMMPERVM *PGVMMPERVM;
123
124
125#endif /* !VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h */
126
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