VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp@ 15895

Last change on this file since 15895 was 15895, checked in by vboxsync, 16 years ago

RTMpIsCpuWorkPending changed; previous code wasn't useful

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.5 KB
Line 
1/* $Id: mp-r0drv-nt.cpp 15895 2009-01-12 14:18:43Z vboxsync $ */
2/** @file
3 * IPRT - Multiprocessor, Ring-0 Driver, NT.
4 */
5
6/*
7 * Copyright (C) 2008 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include "the-nt-kernel.h"
36
37#include <iprt/mp.h>
38#include <iprt/cpuset.h>
39#include <iprt/err.h>
40#include <iprt/asm.h>
41#include "r0drv/mp-r0drv.h"
42#include "internal-r0drv-nt.h"
43
44
45/*******************************************************************************
46* Structures and Typedefs *
47*******************************************************************************/
48typedef enum
49{
50 RT_NT_CPUID_SPECIFIC,
51 RT_NT_CPUID_OTHERS,
52 RT_NT_CPUID_ALL
53} RT_NT_CPUID;
54
55
56/* test a couple of assumption. */
57AssertCompile(MAXIMUM_PROCESSORS <= RTCPUSET_MAX_CPUS);
58AssertCompile(NIL_RTCPUID >= MAXIMUM_PROCESSORS);
59
60/** @todo
61 * We cannot do other than assume a 1:1 relationship between the
62 * affinity mask and the process despite the vagueness/warnings in
63 * the docs. If someone knows a better way to get this done, please
64 * let bird know.
65 */
66
67
68RTDECL(RTCPUID) RTMpCpuId(void)
69{
70 /* WDK upgrade warning: PCR->Number changed from BYTE to WORD. */
71 return KeGetCurrentProcessorNumber();
72}
73
74
75RTDECL(int) RTMpCpuIdToSetIndex(RTCPUID idCpu)
76{
77 return idCpu < MAXIMUM_PROCESSORS ? (int)idCpu : -1;
78}
79
80
81RTDECL(RTCPUID) RTMpCpuIdFromSetIndex(int iCpu)
82{
83 return (unsigned)iCpu < MAXIMUM_PROCESSORS ? iCpu : NIL_RTCPUID;
84}
85
86
87RTDECL(RTCPUID) RTMpGetMaxCpuId(void)
88{
89 /** @todo use KeQueryMaximumProcessorCount on vista+ */
90 return MAXIMUM_PROCESSORS - 1;
91}
92
93
94RTDECL(bool) RTMpIsCpuOnline(RTCPUID idCpu)
95{
96 if (idCpu >= MAXIMUM_PROCESSORS)
97 return false;
98
99#if 0 /* this isn't safe at all IRQLs (great work guys) */
100 KAFFINITY Mask = KeQueryActiveProcessors();
101 return !!(Mask & RT_BIT_64(idCpu));
102#else
103 return RTCpuSetIsMember(&g_rtMpNtCpuSet, idCpu);
104#endif
105}
106
107
108RTDECL(bool) RTMpIsCpuPossible(RTCPUID idCpu)
109{
110 /* Cannot easily distinguish between online and offline cpus. */
111 /** @todo online/present cpu stuff must be corrected for proper W2K8 support
112 * (KeQueryMaximumProcessorCount). */
113 return RTMpIsCpuOnline(idCpu);
114}
115
116
117
118RTDECL(PRTCPUSET) RTMpGetSet(PRTCPUSET pSet)
119{
120 /** @todo online/present cpu stuff must be corrected for proper W2K8 support
121 * (KeQueryMaximumProcessorCount). */
122 return RTMpGetOnlineSet(pSet);
123}
124
125
126RTDECL(RTCPUID) RTMpGetCount(void)
127{
128 /** @todo online/present cpu stuff must be corrected for proper W2K8 support
129 * (KeQueryMaximumProcessorCount). */
130 return RTMpGetOnlineCount();
131}
132
133
134RTDECL(PRTCPUSET) RTMpGetOnlineSet(PRTCPUSET pSet)
135{
136#if 0 /* this isn't safe at all IRQLs (great work guys) */
137 KAFFINITY Mask = KeQueryActiveProcessors();
138 return RTCpuSetFromU64(pSet, Mask);
139#else
140 *pSet = g_rtMpNtCpuSet;
141 return pSet;
142#endif
143}
144
145
146RTDECL(RTCPUID) RTMpGetOnlineCount(void)
147{
148 RTCPUSET Set;
149 RTMpGetOnlineSet(&Set);
150 return RTCpuSetCount(&Set);
151}
152
153
154#if 0
155/* Experiment with checking the undocumented KPRCB structure
156 * 'dt nt!_kprcb 0xaddress' shows the layout
157 */
158typedef struct
159{
160 LIST_ENTRY DpcListHead;
161 ULONG_PTR DpcLock;
162 volatile ULONG DpcQueueDepth;
163 ULONG DpcQueueCount;
164} KDPC_DATA, *PKDPC_DATA;
165#endif
166
167RTDECL(bool) RTMpIsCpuWorkPending(void)
168{
169 uint8_t *pkprcb;
170 PKDPC_DATA pDpcData;
171
172 _asm {
173 mov eax, fs:0x20
174 mov pkprcb, eax
175 }
176 pDpcData = (PKDPC_DATA)(pkprcb + 0x19e0);
177 if (pDpcData->DpcQueueDepth)
178 return true;
179
180 pDpcData++;
181 if (pDpcData->DpcQueueDepth)
182 return true;
183 return false;
184}
185#else
186RTDECL(bool) RTMpIsCpuWorkPending(void)
187{
188 /** @todo not implemented */
189 return false;
190}
191#endif
192
193
194/**
195 * Wrapper between the native nt per-cpu callbacks and PFNRTWORKER
196 *
197 * @param Dpc DPC object
198 * @param DeferredContext Context argument specified by KeInitializeDpc
199 * @param SystemArgument1 Argument specified by KeInsertQueueDpc
200 * @param SystemArgument2 Argument specified by KeInsertQueueDpc
201 */
202static VOID rtmpNtDPCWrapper(IN PKDPC Dpc, IN PVOID DeferredContext, IN PVOID SystemArgument1, IN PVOID SystemArgument2)
203{
204 PRTMPARGS pArgs = (PRTMPARGS)DeferredContext;
205 ASMAtomicIncU32(&pArgs->cHits);
206 pArgs->pfnWorker(KeGetCurrentProcessorNumber(), pArgs->pvUser1, pArgs->pvUser2);
207}
208
209
210/**
211 * Internal worker for the RTMpOn* APIs.
212 *
213 * @returns IPRT status code.
214 * @param pfnWorker The callback.
215 * @param pvUser1 User argument 1.
216 * @param pvUser2 User argument 2.
217 * @param enmCpuid What to do / is idCpu valid.
218 * @param idCpu Used if enmCpuid RT_NT_CPUID_SPECIFIC, otherwise ignored.
219 */
220static int rtMpCall(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2, RT_NT_CPUID enmCpuid, RTCPUID idCpu)
221{
222 PRTMPARGS pArgs;
223 KDPC *paExecCpuDpcs;
224
225#if 0
226 /* KeFlushQueuedDpcs must be run at IRQL PASSIVE_LEVEL according to MSDN, but the
227 * driver verifier doesn't complain...
228 */
229 AssertMsg(KeGetCurrentIrql() == PASSIVE_LEVEL, ("%d != %d (PASSIVE_LEVEL)\n", KeGetCurrentIrql(), PASSIVE_LEVEL));
230#endif
231
232 KAFFINITY Mask = KeQueryActiveProcessors();
233
234 /* KeFlushQueuedDpcs is not present in Windows 2000; import it dynamically so we can just fail this call. */
235 if (!g_pfnrtNtKeFlushQueuedDpcs)
236 return VERR_NOT_SUPPORTED;
237
238 pArgs = (PRTMPARGS)ExAllocatePoolWithTag(NonPagedPool, MAXIMUM_PROCESSORS*sizeof(KDPC) + sizeof(RTMPARGS), (ULONG)'RTMp');
239 if (!pArgs)
240 return VERR_NO_MEMORY;
241
242 pArgs->pfnWorker = pfnWorker;
243 pArgs->pvUser1 = pvUser1;
244 pArgs->pvUser2 = pvUser2;
245 pArgs->idCpu = NIL_RTCPUID;
246 pArgs->cHits = 0;
247
248 paExecCpuDpcs = (KDPC *)(pArgs + 1);
249
250 if (enmCpuid == RT_NT_CPUID_SPECIFIC)
251 {
252 KeInitializeDpc(&paExecCpuDpcs[0], rtmpNtDPCWrapper, pArgs);
253 KeSetImportanceDpc(&paExecCpuDpcs[0], HighImportance);
254 KeSetTargetProcessorDpc(&paExecCpuDpcs[0], (int)idCpu);
255 }
256 else
257 {
258 for (unsigned i = 0; i < MAXIMUM_PROCESSORS; i++)
259 {
260 KeInitializeDpc(&paExecCpuDpcs[i], rtmpNtDPCWrapper, pArgs);
261 KeSetImportanceDpc(&paExecCpuDpcs[i], HighImportance);
262 KeSetTargetProcessorDpc(&paExecCpuDpcs[i], i);
263 }
264 }
265
266 /* Raise the IRQL to DISPATCH_LEVEL so we can't be rescheduled to another cpu.
267 * KeInsertQueueDpc must also be executed at IRQL >= DISPATCH_LEVEL.
268 */
269 KIRQL oldIrql;
270 KeRaiseIrql(DISPATCH_LEVEL, &oldIrql);
271
272 /*
273 * We cannot do other than assume a 1:1 relationship between the
274 * affinity mask and the process despite the warnings in the docs.
275 * If someone knows a better way to get this done, please let bird know.
276 */
277 if (enmCpuid == RT_NT_CPUID_SPECIFIC)
278 {
279 BOOLEAN ret = KeInsertQueueDpc(&paExecCpuDpcs[0], 0, 0);
280 Assert(ret);
281 }
282 else
283 {
284 unsigned iSelf = KeGetCurrentProcessorNumber();
285
286 for (unsigned i = 0; i < MAXIMUM_PROCESSORS; i++)
287 {
288 if ( (i != iSelf)
289 && (Mask & RT_BIT_64(i)))
290 {
291 BOOLEAN ret = KeInsertQueueDpc(&paExecCpuDpcs[i], 0, 0);
292 Assert(ret);
293 }
294 }
295 if (enmCpuid != RT_NT_CPUID_OTHERS)
296 pfnWorker(iSelf, pvUser1, pvUser2);
297 }
298
299 KeLowerIrql(oldIrql);
300
301 /* Flush all DPCs and wait for completion. (can take long!) */
302 /** @todo Consider changing this to an active wait using some atomic inc/dec
303 * stuff (and check for the current cpu above in the specific case). */
304 g_pfnrtNtKeFlushQueuedDpcs();
305
306 ExFreePool(pArgs);
307 return VINF_SUCCESS;
308}
309
310
311RTDECL(int) RTMpOnAll(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
312{
313 return rtMpCall(pfnWorker, pvUser1, pvUser2, RT_NT_CPUID_ALL, 0);
314}
315
316
317RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
318{
319 return rtMpCall(pfnWorker, pvUser1, pvUser2, RT_NT_CPUID_OTHERS, 0);
320}
321
322
323RTDECL(int) RTMpOnSpecific(RTCPUID idCpu, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
324{
325 if (!RTMpIsCpuOnline(idCpu))
326 return !RTMpIsCpuPossible(idCpu)
327 ? VERR_CPU_NOT_FOUND
328 : VERR_CPU_OFFLINE;
329
330 return rtMpCall(pfnWorker, pvUser1, pvUser2, RT_NT_CPUID_SPECIFIC, idCpu);
331}
332
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette