initterm-r0drv-nt.cpp revision 41c15aa44c4acfe6760552150eb931319835cfaf
/* $Id$ */
/** @file
* IPRT - Initialization & Termination, R0 Driver, NT.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "the-nt-kernel.h"
#include "internal/initterm.h"
#include "internal-r0drv-nt.h"
/*******************************************************************************
* Global Variables *
*******************************************************************************/
/** The Nt CPU set.
* KeQueryActiveProcssors() cannot be called at all IRQLs and therefore we'll
* have to cache it. Fortunately, Nt doesn't really support taking CPUs offline
* or online. It's first with W2K8 that support for CPU hotplugging was added.
* Once we start caring about this, we'll simply let the native MP event callback
* and update this variable as CPUs comes online. (The code is done already.)
*/
/** ExSetTimerResolution, introduced in W2K. */
/** KeFlushQueuedDpcs, introduced in XP. */
/** HalRequestIpi, introduced in ??. */
/** HalSendSoftwareInterrupt */
/** SendIpi handler based on Windows version */
/** KeIpiGenericCall - Windows Server 2003+ only */
/** Offset of the _KPRCB::QuantumEnd field. 0 if not found. */
/** Size of the _KPRCB::QuantumEnd field. 0 if not found. */
/** Offset of the _KPRCB::DpcQueueDepth field. 0 if not found. */
int rtR0InitNative(void)
{
/*
* Init the Nt cpu set.
*/
#ifdef IPRT_TARGET_NT4
#else
#endif
#ifdef IPRT_TARGET_NT4
#else
/*
* Initialize the function pointers.
*/
g_pfnrtNtHalSendSoftwareInterrupt = (PFNHALSENDSOFTWAREINTERRUPT)MmGetSystemRoutineAddress(&RoutineName);
#endif
/*
* Get some info that might come in handy below.
*/
ULONG MajorVersion = 0;
ULONG MinorVersion = 0;
ULONG BuildNumber = 0;
#ifndef IPRT_TARGET_NT4
&& MajorVersion == 6
&& MinorVersion == 0)
{
/* Vista or Windows Server 2008 */
}
else
&& MajorVersion == 6
&& MinorVersion == 1)
{
/* Windows 7 or Windows Server 2008 R2 */
}
/* Windows XP should send always send an IPI -> VERIFY */
#endif
union
{
} u;
/*
* HACK ALERT (and d�j� vu warning)!
*
* Try find _KPRCB::QuantumEnd and _KPRCB::[DpcData.]DpcQueueDepth.
* For purpose of verification we use the VendorString member (12+1 chars).
*
* The offsets was initially derived by poking around with windbg
* (dt _KPRCB, !prcb ++, and such like). Systematic harvesting is now done
* by means of dia2dump, grep and the symbol packs. Typically:
* dia2dump -type _KDPC_DATA -type _KPRCB EXE\ntkrnlmp.pdb | grep -wE "QuantumEnd|DpcData|DpcQueueDepth|VendorString"
*/
/** @todo array w/ data + script for extracting a row. (save space + readability; table will be short.) */
{
#if defined(RT_ARCH_X86)
{
g_offrtNtPbQuantumEnd = 0x88c;
g_cbrtNtPbQuantumEnd = 4;
g_offrtNtPbDpcQueueDepth = 0x870;
}
/* WindowsVista.6002.090410-1830.x86fre.Symbols.exe
WindowsVista.6002.090410-1830.x86chk.Symbols.exe
WindowsVista.6002.090130-1715.x86fre.Symbols.exe
WindowsVista.6002.090130-1715.x86chk.Symbols.exe */
else if ( BuildNumber == 6002
{
g_offrtNtPbQuantumEnd = 0x1a41;
g_cbrtNtPbQuantumEnd = 1;
}
/** @todo more */
//pbQuantumEnd = (uint8_t volatile *)pPcr->Prcb + 0x1a41;
#elif defined(RT_ARCH_AMD64)
{
g_offrtNtPbQuantumEnd = 0x1f75;
g_cbrtNtPbQuantumEnd = 1;
}
{
g_offrtNtPbQuantumEnd = 0x3375;
g_cbrtNtPbQuantumEnd = 1;
}
/* WindowsVista.6002.090410-1830.amd64fre.Symbols
WindowsVista.6002.090130-1715.amd64fre.Symbols
WindowsVista.6002.090410-1830.amd64chk.Symbols */
else if ( BuildNumber == 6002
{
g_offrtNtPbQuantumEnd = 0x3475;
g_cbrtNtPbQuantumEnd = 1;
}
#else
# error "port me"
#endif
}
__except(EXCEPTION_EXECUTE_HANDLER) /** @todo this handler doesn't seem to work... Because of Irql? */
{
g_cbrtNtPbQuantumEnd = 0;
}
#ifndef IN_GUEST /** @todo fix above for all Nt versions. */
DbgPrint("IPRT: Neither _KPRCB::QuantumEnd nor _KPRCB::DpcQueueDepth was not found! Kernel %u.%u %u %s\n",
# ifdef DEBUG
else
DbgPrint("IPRT: _KPRCB:{.QuantumEnd=%x/%d, .DpcQueueDepth=%x/%d} Kernel %ul.%ul %ul %s\n",
# endif
#endif
return VINF_SUCCESS;
}
void rtR0TermNative(void)
{
}