VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/nt/internal-r0drv-nt.h@ 90417

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

IPRT: Implemented RTThreadQueryTerminationStatus for NT (windows). bugref:6695

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.4 KB
Line 
1/* $Id: internal-r0drv-nt.h 90417 2021-07-29 21:29:10Z vboxsync $ */
2/** @file
3 * IPRT - Internal Header for the NT Ring-0 Driver Code.
4 */
5
6/*
7 * Copyright (C) 2008-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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef IPRT_INCLUDED_SRC_r0drv_nt_internal_r0drv_nt_h
28#define IPRT_INCLUDED_SRC_r0drv_nt_internal_r0drv_nt_h
29#ifndef RT_WITHOUT_PRAGMA_ONCE
30# pragma once
31#endif
32
33#include <iprt/cpuset.h>
34#include <iprt/nt/nt.h>
35
36RT_C_DECLS_BEGIN
37
38/*******************************************************************************
39* Structures and Typedefs *
40*******************************************************************************/
41typedef ULONG (__stdcall *PFNMYEXSETTIMERRESOLUTION)(ULONG, BOOLEAN);
42typedef VOID (__stdcall *PFNMYKEFLUSHQUEUEDDPCS)(VOID);
43typedef VOID (__stdcall *PFNHALSENDSOFTWAREINTERRUPT)(ULONG ProcessorNumber, KIRQL Irql);
44typedef int (__stdcall *PFNRTSENDIPI)(RTCPUID idCpu);
45typedef ULONG_PTR (__stdcall *PFNRTKEIPIGENERICCALL)(PKIPI_BROADCAST_WORKER BroadcastFunction, ULONG_PTR Context);
46typedef ULONG (__stdcall *PFNRTRTLGETVERSION)(PRTL_OSVERSIONINFOEXW pVerInfo);
47#ifndef RT_ARCH_AMD64
48typedef ULONGLONG (__stdcall *PFNRTKEQUERYINTERRUPTTIME)(VOID);
49typedef VOID (__stdcall *PFNRTKEQUERYSYSTEMTIME)(PLARGE_INTEGER pTime);
50#endif
51typedef ULONG64 (__stdcall *PFNRTKEQUERYINTERRUPTTIMEPRECISE)(PULONG64 pQpcTS);
52typedef VOID (__stdcall *PFNRTKEQUERYSYSTEMTIMEPRECISE)(PLARGE_INTEGER pTime);
53
54
55/*******************************************************************************
56* Global Variables *
57*******************************************************************************/
58extern RTCPUSET g_rtMpNtCpuSet;
59extern uint32_t g_cRtMpNtMaxGroups;
60extern uint32_t g_cRtMpNtMaxCpus;
61extern RTCPUID g_aidRtMpNtByCpuSetIdx[RTCPUSET_MAX_CPUS];
62
63extern decltype(ExAllocatePoolWithTag) *g_pfnrtExAllocatePoolWithTag;
64extern decltype(ExFreePoolWithTag) *g_pfnrtExFreePoolWithTag;
65extern PFNMYEXSETTIMERRESOLUTION g_pfnrtNtExSetTimerResolution;
66extern PFNMYKEFLUSHQUEUEDDPCS g_pfnrtNtKeFlushQueuedDpcs;
67extern PFNHALREQUESTIPI_W7PLUS g_pfnrtHalRequestIpiW7Plus;
68extern PFNHALREQUESTIPI_PRE_W7 g_pfnrtHalRequestIpiPreW7;
69extern PFNHALSENDSOFTWAREINTERRUPT g_pfnrtNtHalSendSoftwareInterrupt;
70extern PFNRTSENDIPI g_pfnrtMpPokeCpuWorker;
71extern PFNRTKEIPIGENERICCALL g_pfnrtKeIpiGenericCall;
72extern PFNKESETTARGETPROCESSORDPCEX g_pfnrtKeSetTargetProcessorDpcEx;
73extern PFNKEINITIALIZEAFFINITYEX g_pfnrtKeInitializeAffinityEx;
74extern PFNKEADDPROCESSORAFFINITYEX g_pfnrtKeAddProcessorAffinityEx;
75extern PFNKEGETPROCESSORINDEXFROMNUMBER g_pfnrtKeGetProcessorIndexFromNumber;
76extern PFNKEGETPROCESSORNUMBERFROMINDEX g_pfnrtKeGetProcessorNumberFromIndex;
77extern PFNKEGETCURRENTPROCESSORNUMBEREX g_pfnrtKeGetCurrentProcessorNumberEx;
78extern PFNKEQUERYACTIVEPROCESSORS g_pfnrtKeQueryActiveProcessors;
79extern PFNKEQUERYMAXIMUMPROCESSORCOUNT g_pfnrtKeQueryMaximumProcessorCount;
80extern PFNKEQUERYMAXIMUMPROCESSORCOUNTEX g_pfnrtKeQueryMaximumProcessorCountEx;
81extern PFNKEQUERYMAXIMUMGROUPCOUNT g_pfnrtKeQueryMaximumGroupCount;
82extern PFNKEQUERYACTIVEPROCESSORCOUNT g_pfnrtKeQueryActiveProcessorCount;
83extern PFNKEQUERYACTIVEPROCESSORCOUNTEX g_pfnrtKeQueryActiveProcessorCountEx;
84extern PFNKEQUERYLOGICALPROCESSORRELATIONSHIP g_pfnrtKeQueryLogicalProcessorRelationship;
85extern PFNKEREGISTERPROCESSORCHANGECALLBACK g_pfnrtKeRegisterProcessorChangeCallback;
86extern PFNKEDEREGISTERPROCESSORCHANGECALLBACK g_pfnrtKeDeregisterProcessorChangeCallback;
87extern decltype(KeSetImportanceDpc) *g_pfnrtKeSetImportanceDpc;
88extern decltype(KeSetTargetProcessorDpc) *g_pfnrtKeSetTargetProcessorDpc;
89extern decltype(KeInitializeTimerEx) *g_pfnrtKeInitializeTimerEx;
90extern PFNKESHOULDYIELDPROCESSOR g_pfnrtKeShouldYieldProcessor;
91extern decltype(MmProtectMdlSystemAddress) *g_pfnrtMmProtectMdlSystemAddress;
92extern decltype(MmAllocatePagesForMdl) *g_pfnrtMmAllocatePagesForMdl;
93extern decltype(MmFreePagesFromMdl) *g_pfnrtMmFreePagesFromMdl;
94extern decltype(MmMapLockedPagesSpecifyCache) *g_pfnrtMmMapLockedPagesSpecifyCache;
95extern decltype(MmAllocateContiguousMemorySpecifyCache) *g_pfnrtMmAllocateContiguousMemorySpecifyCache;
96extern decltype(MmSecureVirtualMemory) *g_pfnrtMmSecureVirtualMemory;
97extern decltype(MmUnsecureVirtualMemory) *g_pfnrtMmUnsecureVirtualMemory;
98extern decltype(PsIsThreadTerminating) *g_pfnrtPsIsThreadTerminating;
99
100extern PFNRTRTLGETVERSION g_pfnrtRtlGetVersion;
101#ifdef RT_ARCH_X86
102extern PFNRTKEQUERYINTERRUPTTIME g_pfnrtKeQueryInterruptTime;
103#endif
104extern PFNRTKEQUERYINTERRUPTTIMEPRECISE g_pfnrtKeQueryInterruptTimePrecise;
105extern PFNRTKEQUERYSYSTEMTIMEPRECISE g_pfnrtKeQuerySystemTimePrecise;
106
107extern uint32_t g_offrtNtPbQuantumEnd;
108extern uint32_t g_cbrtNtPbQuantumEnd;
109extern uint32_t g_offrtNtPbDpcQueueDepth;
110
111/** Makes an NT version for checking against g_uRtNtVersion. */
112#define RTNT_MAKE_VERSION(uMajor, uMinor) RT_MAKE_U32(uMinor, uMajor)
113
114extern uint32_t g_uRtNtVersion;
115extern uint8_t g_uRtNtMajorVer;
116extern uint8_t g_uRtNtMinorVer;
117extern uint32_t g_uRtNtBuildNo;
118
119extern uintptr_t const *g_puRtMmHighestUserAddress;
120extern uintptr_t const *g_puRtMmSystemRangeStart;
121
122
123int __stdcall rtMpPokeCpuUsingFailureNotSupported(RTCPUID idCpu);
124int __stdcall rtMpPokeCpuUsingDpc(RTCPUID idCpu);
125int __stdcall rtMpPokeCpuUsingBroadcastIpi(RTCPUID idCpu);
126int __stdcall rtMpPokeCpuUsingHalRequestIpiW7Plus(RTCPUID idCpu);
127int __stdcall rtMpPokeCpuUsingHalRequestIpiPreW7(RTCPUID idCpu);
128
129struct RTNTSDBOSVER;
130DECLHIDDEN(int) rtR0MpNtInit(struct RTNTSDBOSVER const *pOsVerInfo);
131DECLHIDDEN(void) rtR0MpNtTerm(void);
132DECLHIDDEN(int) rtMpNtSetTargetProcessorDpc(KDPC *pDpc, RTCPUID idCpu);
133#if defined(RT_ARCH_X86) && defined(NIL_RTDBGKRNLINFO)
134DECLHIDDEN(int) rtR0Nt3InitSymbols(RTDBGKRNLINFO hKrnlInfo);
135#endif
136
137RT_C_DECLS_END
138
139#endif /* !IPRT_INCLUDED_SRC_r0drv_nt_internal_r0drv_nt_h */
140
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