ReactOS 0.4.15-dev-7942-gd23573b
fxtelemetrykm.cpp
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation
4
5Module Name:
6
7 FxTelemetryKm.cpp
8
9Abstract:
10
11 This module implements a telemetry methods.
12
13Author:
14
15
16
17Environment:
18
19 Kernel mode only
20
21Revision History:
22
23Notes:
24
25--*/
26
27#include "fxsupportpch.hpp"
28#include "fxldr.h"
29#include <ntstrsafe.h>
30#include <winmeta.h>
31#include <telemetry\microsofttelemetry.h>
32
33extern "C" {
34#if defined(EVENT_TRACING)
35#include "FxTelemetryKm.tmh"
36#endif
37}
38
39/* ec044b58-3d13-3d13-936f-7b67dfb3e */
40TRACELOGGING_DEFINE_PROVIDER(g_TelemetryProvider,
42 (0xec044b58, 0x3d13, 0x4880, 0x93, 0x6f, 0x7b, 0x67, 0xdf, 0xb3, 0xe0, 0x56),
43 TraceLoggingOptionMicrosoftTelemetry());
44
45VOID
47 _In_ PFX_TELEMETRY_CONTEXT* TelemetryContext
48 )
49{
52
56 FX_TAG);
57 if (NULL == context) {
58 goto exit;
59 }
60
61 status = ExUuidCreate(&(context->DriverSessionGUID));
62 if (!NT_SUCCESS(status)) {
64 context = NULL;
65 goto exit;
66 }
67
68 context->DoOnceFlagsBitmap = 0;
69
70exit:
71 *TelemetryContext = context;
72}
73
74VOID
76 VOID
77 )
78{
79 TraceLoggingRegister(g_TelemetryProvider);
80}
81
82VOID
84 VOID
85 )
86{
87 TraceLoggingUnregister(g_TelemetryProvider);
88}
89
90VOID
94 )
95{
96 //
97 // See if telemetry registered and all the criteria to log is met.
99 return;
100 }
101
102 //
103 // Log driver info stream
104 //
106}
107
111 )
112{
113 LARGE_INTEGER lastLoggedTime;
114 LARGE_INTEGER currentTime;
115 LONGLONG delta;
116
117 // If provider is not enabled exit.
118 if (FALSE == FX_TELEMETRY_ENABLED(g_TelemetryProvider, DriverGlobals)) {
119 return FALSE;
120 }
121
122 ASSERT(DriverGlobals->TelemetryContext);
123
124 //
125 // If we already fired an event during PnP start we are done. This avoids
126 // repeatedly firing events during PnP rebalance.
127 //
129 &DriverGlobals->TelemetryContext->DoOnceFlagsBitmap,
130 DeviceStartEventBit) != 0) {
131 return FALSE;
132 }
133
134 //
135 // log only if it has been MIN_HOURS_BEFORE_NEXT_LOG time since last log.
136 // We don't log every time driver loads to avoid sending too much data
137 // too many times in case of a buggy driver going through load/unload cycle
138 // or when a device is plugged in two many times.
139 //
140 lastLoggedTime.QuadPart = 0;
142
143 if (lastLoggedTime.QuadPart == 0) {
144 //
145 // driver is loading for first time ater install so need to log
146 // event
147 //
148 return TRUE;
149 }
150
151 Mx::MxQuerySystemTime(&currentTime);
152
153 delta = (currentTime.QuadPart - lastLoggedTime.QuadPart);
154
156 "lastlogged %I64x, current %I64x, delta %I64x",
157 lastLoggedTime.QuadPart, currentTime.QuadPart, delta);
158
159 //
160 // KeQuerySystemTime returns time in 100-ns. We convert MIN_HOURS_BEFORE_NEXT_LOG
161 // to 100-nano sec unit and then compare.
162 //
163 if (delta < WDF_ABS_TIMEOUT_IN_SEC(MIN_HOURS_BEFORE_NEXT_LOG * 60 * 60)) {
164 return FALSE;
165 }
166
167 return TRUE;
168}
169
170VOID
174 )
175{
176 FxTelemetryDriverInfo driverInfo = {0};
177 FxAutoString hardwareIDs, setupClass, busEnum, manufacturer;
178
179 //
180 // Log driver and device info
181 //
182 GetDriverInfo(DriverGlobals, Fdo, &driverInfo);
183
184 if (Fdo != NULL) {
185 //
186 // Get Setup class
187 //
190 &setupClass.m_UnicodeString);
191 //
192 // Get Bus enumerator
193 //
196 &busEnum.m_UnicodeString);
197 //
198 // Get hardware id multi-string
199 //
202 &hardwareIDs.m_UnicodeString);
203
205
206 //
207 // Get manufacturer
208 //
211 &manufacturer.m_UnicodeString);
212 }
213
214 KMDF_CENSUS_EVT_WRITE_DEVICE_START(g_TelemetryProvider,
216 driverInfo,
217 setupClass,
218 busEnum,
219 hardwareIDs,
220 manufacturer);
221
222 //
223 // write current time to registry
224 //
226}
227
228VOID
230 _Inout_ PUNICODE_STRING HardwareIds
231 )
232/*++
233
234 Routine Description:
235
236 This routine returns the first hardware ID present in the multi-string.
237 If the first string is longer than max allowed by Telemetry, a null value is
238 returned instead of retruning a partial ID.
239
240 Arguments:
241
242 HardwareIds - a multi-string terminated by two unicode_nulls.
243
244--*/
245
246{
247 PWCHAR curr;
248 USHORT lengthCch;
249
250 ASSERT(HardwareIds != NULL);
251
252 curr = (PWCHAR) HardwareIds->Buffer;
253 lengthCch = (HardwareIds->Length)/sizeof(WCHAR);
254
255 //
256 // if the caller supplied NULL buffer, then nothing to do.
257 //
258 if (curr == NULL) {
259 RtlInitUnicodeString(HardwareIds, NULL);
260 return;
261 }
262
263 //
264 // if the first element is NULL then update the length
265 //
266 if (*curr == UNICODE_NULL) {
267 HardwareIds->Length = 0;
268 HardwareIds->MaximumLength = HardwareIds->Length + sizeof(UNICODE_NULL);
269 return;
270 }
271
272 for (int i = 0; i < lengthCch; i++, curr++) {
273
274 if (*curr == UNICODE_NULL) {
275 //
276 // We found the first string. Update size. We only want to keep the
277 // first string.
278 //
279 HardwareIds->Length = (USHORT)(i * sizeof(WCHAR));
280 HardwareIds->MaximumLength = HardwareIds->Length + sizeof(UNICODE_NULL);
281 return;
282 }
283 }
284}
285
286VOID
291 )
292{
293 FxPkgPnp* pnpPkg;
294 USHORT devInfo = 0;
295
296 DriverInfo->bitmap.IsVerifierOn = Globals->FxVerifierOn;
298
299 if (Fdo == NULL) {
300 //
301 // this is for non-pnp or noDispatchOverride.
302 //
303 DriverInfo->bitmap.IsNonPnpDriver = FLAG_TO_BOOL(Globals->Public.DriverFlags, WdfDriverInitNonPnpDriver);
304 DriverInfo->bitmap.IsNoDispatchOverride = FLAG_TO_BOOL(Globals->Public.DriverFlags, WdfDriverInitNoDispatchOverride);
305 }
306 else {
307 pnpPkg = Fdo->m_PkgPnp;
308 devInfo = Fdo->GetDeviceTelemetryInfoFlags();
309
310 DriverInfo->bitmap.IsFilter = Fdo->GetFdoPkg()->IsFilter();
311 DriverInfo->bitmap.IsUsingRemoveLockOption = Fdo->IsRemoveLockEnabledForIo();
312 DriverInfo->bitmap.IsUsingNonDefaultHardwareReleaseOrder = pnpPkg->IsDefaultReleaseHardwareOrder();
313 DriverInfo->bitmap.IsPowerPolicyOwner = pnpPkg->IsPowerPolicyOwner();
314 DriverInfo->bitmap.IsS0IdleWakeFromS0Enabled = pnpPkg->IsS0IdleWakeFromS0Enabled();
315 DriverInfo->bitmap.IsS0IdleUsbSSEnabled = pnpPkg->IsS0IdleUsbSSEnabled();
316 DriverInfo->bitmap.IsS0IdleSystemManaged = pnpPkg->IsS0IdleSystemManaged();
317 DriverInfo->bitmap.IsSxWakeEnabled = pnpPkg->IsSxWakeEnabled();
318 DriverInfo->bitmap.IsUsingLevelTriggeredLineInterrupt = IsDeviceInfoFlagSet(devInfo, DeviceInfoLineBasedLevelTriggeredInterrupt);
319 DriverInfo->bitmap.IsUsingEdgeTriggeredLineInterrupt = IsDeviceInfoFlagSet(devInfo, DeviceInfoLineBasedEdgeTriggeredInterrupt);
320 DriverInfo->bitmap.IsUsingMsiXOrSingleMsi22Interrupt = IsDeviceInfoFlagSet(devInfo, DeviceInfoMsiXOrSingleMsi22Interrupt);
321 DriverInfo->bitmap.IsUsingMsi22MultiMessageInterrupt = IsDeviceInfoFlagSet(devInfo, DeviceInfoMsi22MultiMessageInterrupt);
322 DriverInfo->bitmap.IsUsingMultipleInterrupt = pnpPkg->HasMultipleInterrupts();
323 DriverInfo->bitmap.IsUsingPassiveLevelInterrupt = IsDeviceInfoFlagSet(devInfo, DeviceInfoPassiveLevelInterrupt);
324 DriverInfo->bitmap.IsUsingBusMasterDma = IsDeviceInfoFlagSet(devInfo, DeviceInfoDmaBusMaster);
325 DriverInfo->bitmap.IsUsingSystemDma = IsDeviceInfoFlagSet(devInfo, DeviceInfoDmaSystem);
326 DriverInfo->bitmap.IsUsingSystemDmaDuplex = IsDeviceInfoFlagSet(devInfo, DeviceInfoDmaSystemDuplex);
327 DriverInfo->bitmap.IsUsingStaticBusEnumration = IsDeviceInfoFlagSet(devInfo, DeviceInfoHasStaticChildren);
328 DriverInfo->bitmap.IsUsingDynamicBusEnumeration = IsDeviceInfoFlagSet(devInfo, DeviceInfoHasDynamicChildren);
329 }
330}
331
332VOID
335 _Out_ PLARGE_INTEGER LastLoggedTime
336 )
337{
338 FxAutoRegKey hKey, hWdf;
339 DECLARE_CONST_UNICODE_STRING(parametersPath, L"Parameters\\Wdf");
343
344 ASSERT(LastLoggedTime != NULL);
345 LastLoggedTime->QuadPart = 0;
346
347 status = FxRegKey::_OpenKey(NULL,
348 DriverGlobals->Driver->GetRegistryPathUnicodeString(),
349 &hWdf.m_Key,
350 KEY_READ);
351 if (!NT_SUCCESS(status)) {
353 "Unable to open driver's service key, status %!STATUS!", status);
354 return;
355 }
356
357 status = FxRegKey::_OpenKey(hWdf.m_Key,
358 &parametersPath,
359 &hKey.m_Key,
360 KEY_READ);
361 if (!NT_SUCCESS(status)) {
363 "Unable to open driver's service parameters key, status %!STATUS!",
364 status);
365 return;
366 }
367
368 value.QuadPart = 0;
369 status = FxRegKey::_QueryQuadWord(
370 hKey.m_Key, &valueName, &value);
371
372 //
373 // Set value only on success.
374 //
375 if (NT_SUCCESS(status)) {
376 LastLoggedTime->QuadPart = value.QuadPart;
377 }
378}
379
380VOID
383 )
384{
385 FxAutoRegKey hDriver, hParameters, hWdf;
386 DECLARE_CONST_UNICODE_STRING(parametersPart, L"Parameters");
387 DECLARE_CONST_UNICODE_STRING(wdfPart, L"Wdf");
388 LARGE_INTEGER currentTime;
389
390 //
391 // Not defined with the macro because ZwSetValue doesn't use
392 // PCUNICODE_STRING
393 //
394 UNICODE_STRING wdfTimeOfLastTelemetryLog;
396
397 RtlInitUnicodeString(&wdfTimeOfLastTelemetryLog, WDF_LAST_TELEMETRY_LOG_TIME_VALUE);
398
399 status = FxRegKey::_OpenKey(NULL,
400 DriverGlobals->Driver->GetRegistryPathUnicodeString(),
401 &hDriver.m_Key,
403 );
404 if (!NT_SUCCESS(status)) {
406 "Unable to open driver's service key, status %!STATUS!", status);
407 return;
408 }
409 //
410 // Key creation, unlike user mode, must happen one level at a time, since
411 // create will also open take both steps instead of trying open first
412 //
413 status = FxRegKey::_Create(hDriver.m_Key,
414 &parametersPart,
415 &hParameters.m_Key,
417 );
418 if (!NT_SUCCESS(status)) {
420 "Unable to write Parameters key, status %!STATUS!", status);
421 return;
422 }
423
424 status = FxRegKey::_Create(hParameters.m_Key,
425 &wdfPart,
426 &hWdf.m_Key,
428 );
429 if (!NT_SUCCESS(status)) {
431 "Unable to write Parameters key, status %!STATUS!", status);
432 return;
433 }
434
435 //
436 // Using ZwSetValueKey here to avoid having to change the implementation
437 // in FxRegKey of SetValue to a static / thiscall pair
438 //
439 currentTime.QuadPart = 0;
440 Mx::MxQuerySystemTime(&currentTime);
441
443 &wdfTimeOfLastTelemetryLog,
444 0,
445 REG_QWORD,
446 &currentTime.QuadPart,
447 sizeof(currentTime)
448 );
449
450 if (!NT_SUCCESS(status)) {
452 "Failed to record current time for Telemetry log, status %!STATUS!",
453 status);
454 }
455}
456
457VOID
461 _Out_ PUNICODE_STRING PropertyString
462 )
463{
464 MdDeviceObject pdo;
466 PFX_DRIVER_GLOBALS pFxDriverGlobals = Fdo->GetDriverGlobals();
467 ULONG length = 0;
468 PVOID buffer = NULL;
469
470 ASSERT(PropertyString != NULL);
471 RtlZeroMemory(PropertyString, sizeof(UNICODE_STRING));
472
473 pdo = Fdo->GetSafePhysicalDevice();
474 if (pdo == NULL) {
477 "Could not get PDO from FDO WDFDEVICE 0x%p, %!STATUS!",
478 Fdo->GetHandle(), status);
479 return;
480 }
481
485 "Could not retrieve property %d length %d, %!STATUS!",
487 return;
488 }
489
490 buffer = FxPoolAllocate(pFxDriverGlobals, PagedPool, length);
491 if (buffer == NULL) {
494 "Could not allocate memory for property %d length %d, %!STATUS!",
496 return;
497 }
498
500 if (!NT_SUCCESS(status)) {
502 "Could not query for full buffer, size %d, for "
503 "property %d, %!STATUS!",
506 return;
507 }
508
509 PropertyString->Buffer = (PWCH)buffer;
510 PropertyString->Length = (USHORT) length - sizeof(UNICODE_NULL);
511 PropertyString->MaximumLength = (USHORT) length;
512
513 //
514 // ensure it's null terminated
515 //
516 PropertyString->Buffer[PropertyString->Length/sizeof(WCHAR)] = UNICODE_NULL;
517}
518
524 )
525/*++
526
527Routine Description:
528 Retrieve the ImageName value from the named Service registry key.
529
530 Caller is responsible for freeing the buffer allocated in ImageName::Buffer.
531
532Arguments:
533 DriverGlobals - pointer to FX_DRIVER_GLOBALS
534
535 ImageeName - Pointer to a UNICODE_STRING which will receive the image name
536 upon a return value of NT_SUCCESS()
537
538Return Value:
539 NTSTATUS
540
541--*/
542{
545 DECLARE_CONST_UNICODE_STRING(valueName, L"ImagePath");
546 UNICODE_STRING imagePath = {0};
547 UNICODE_STRING imageName = {0};
549 USHORT size;
550
553
554 //
555 // Open driver's Service base key
556 //
557 status = FxRegKey::_OpenKey(NULL,
558 DriverGlobals->Driver->GetRegistryPathUnicodeString(),
559 &hKey.m_Key,
560 KEY_READ);
561 if (!NT_SUCCESS(status)) {
563 "Unable to open driver's service key, status %!STATUS!", status);
564 return status;
565 }
566
567 status = QueryAndAllocString(hKey.m_Key,
569 &valueName,
570 &value);
571 if (!NT_SUCCESS(status)) {
573 "Failed to get Image name from service key, status %!STATUS!",
574 status);
575 return status;
576 }
577
579
580 //
581 // Now read the "ImagePath" and extract just the driver filename as a new
582 // unicode string.
583 //
584 GetNameFromPath(&imagePath, &imageName);
585
586 if (imageName.Length == 0x0) {
589 "ERROR: GetNameFromPath could not find a name, status 0x%x\n",
590 status);
591 goto cleanUp;
592 }
593
594 //
595 // Check for interger overflow for length before we allocate memory
596 // size = path->Length + sizeof(UNICODE_NULL);
597 // len is used below to compute the string size including the NULL, so
598 // compute len to include the terminating NULL.
599 //
600 status = RtlUShortAdd(imageName.Length, sizeof(UNICODE_NULL), &size);
601 if (!NT_SUCCESS(status)) {
603 "ERROR: size computation failed with Status 0x%x\n", status);
604 goto cleanUp;
605 }
606
607 //
608 // allocate a buffer to hold Unicode string + null char.
609 //
610 ImageName->Buffer = (PWCH) FxPoolAllocate(DriverGlobals, PagedPool, size);
611
612 if (ImageName->Buffer == NULL) {
615 "ERROR: ExAllocatePoolWithTag failed with Status 0x%x\n", status);
616 goto cleanUp;
617 }
618
619 RtlZeroMemory(ImageName->Buffer, size);
620 ImageName->Length = 0x0;
621 ImageName->MaximumLength = size;
622
623 status = RtlUnicodeStringCopy(ImageName, &imageName);
624
625 //
626 // The copy cannot fail since we setup the buffer to hold enough space for
627 // the contents of the ImagePath value.
628 //
630
631cleanUp:
632
633 if (value != NULL) {
635 }
636
637 return status;
638}
639
640
644QueryAndAllocString(
649 )
650{
654
657
659 *Info = NULL;
660
664 NULL,
665 0,
666 &length);
667
669 goto cleanup;
670 }
671
672 //
673 // Pool can be paged b/c we are running at PASSIVE_LEVEL and we are going
674 // to free it at the end of this function.
675 //
676 status = RtlULongAdd(length,
678 &length);
679
681 goto cleanup;
682 }
683
685 PagedPool,
686 length);
687
688 if (info == NULL) {
690 goto cleanup;
691 }
692
694
695 //
696 // Query registry for the data under ValueName
697 //
701 info,
702 length,
703 &length);
704
705
707 if (info->Type != REG_SZ && info->Type != REG_EXPAND_SZ) {
709 goto cleanup;
710 }
711
712 if (info->DataLength == 0 ||
713 (info->DataLength % 2) != 0 ||
714 (info->DataLength >
717 goto cleanup;
718 }
719
720 *Info = info;
721 }
722
724
725 if (!NT_SUCCESS(status)) {
726 if (info != NULL) {
728 }
729 }
730
731 return status;
732}
unsigned char BOOLEAN
LONG NTSTATUS
Definition: precomp.h:26
static __inline NTSTATUS _GetDeviceProperty(_In_ MdDeviceObject DeviceObject, _In_ DEVICE_REGISTRY_PROPERTY DeviceProperty, _In_ ULONG BufferLength, _Out_opt_ PVOID PropertyBuffer, _Out_ PULONG ResultLength)
BOOLEAN IsSxWakeEnabled(VOID)
Definition: fxpkgpnp.hpp:3672
BOOLEAN HasMultipleInterrupts(VOID)
Definition: fxpkgpnp.hpp:4066
BOOLEAN IsS0IdleSystemManaged(VOID)
Definition: fxpkgpnp.hpp:3645
BOOLEAN IsPowerPolicyOwner(VOID)
Definition: fxpkgpnp.hpp:3612
BOOLEAN IsDefaultReleaseHardwareOrder(VOID)
Definition: fxpkgpnp.hpp:4054
BOOLEAN IsS0IdleUsbSSEnabled(VOID)
Definition: fxpkgpnp.hpp:3658
BOOLEAN IsS0IdleWakeFromS0Enabled(VOID)
Definition: fxpkgpnp.hpp:3632
static __inline VOID MxFreePool(__in PVOID Ptr)
Definition: mxmemorykm.h:41
static __inline PVOID MxAllocatePoolWithTag(__in POOL_TYPE PoolType, __in SIZE_T NumberOfBytes, __in ULONG Tag)
Definition: mxmemorykm.h:30
static __inline NTSTATUS MxSetValueKey(_In_ HANDLE KeyHandle, _In_ PUNICODE_STRING ValueName, _In_opt_ ULONG TitleIndex, _In_ ULONG Type, _In_opt_ PVOID Data, _In_ ULONG DataSize)
Definition: mxgeneralkm.h:688
static __inline NTSTATUS MxQueryValueKey(_In_ HANDLE KeyHandle, _In_ PUNICODE_STRING ValueName, _In_ KEY_VALUE_INFORMATION_CLASS KeyValueInformationClass, _Out_opt_ PVOID KeyValueInformation, _In_ ULONG Length, _Out_ PULONG ResultLength)
Definition: mxgeneralkm.h:708
static __inline VOID MxQuerySystemTime(_Out_ PLARGE_INTEGER CurrentTime)
Definition: mxgeneralkm.h:679
#define TRACINGDRIVER
Definition: dbgtrace.h:68
#define TRACINGDEVICE
Definition: dbgtrace.h:58
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:32
static void cleanup(void)
Definition: main.c:1335
void cleanUp()
Definition: main.cpp:469
#define __drv_maxIRQL(irql)
Definition: driverspecs.h:291
#define PASSIVE_LEVEL
Definition: env_spec_w32.h:693
#define NonPagedPool
Definition: env_spec_w32.h:307
#define PagedPool
Definition: env_spec_w32.h:308
DoTraceLevelMessage(pFxDriverGlobals, TRACE_LEVEL_VERBOSE, TRACINGPNP, "Enter, WDFDEVICE %p", Device)
PFX_DRIVER_GLOBALS pFxDriverGlobals
DriverGlobals
FxAutoRegKey hKey
struct _FX_TELEMETRY_CONTEXT * PFX_TELEMETRY_CONTEXT
#define FX_TAG
Definition: fxmacros.hpp:155
#define FLAG_TO_BOOL(_Flags, _FlagMask)
Definition: fxobject.hpp:125
void FxPoolFree(__in_xcount(ptr is at an offset from AllocationStart) PVOID ptr)
Definition: wdfpool.cpp:361
#define MIN_HOURS_BEFORE_NEXT_LOG
Definition: fxtelemetry.hpp:89
BOOLEAN __inline IsDeviceInfoFlagSet(_In_ USHORT DeviceInfo, _In_ FxDeviceInfoFlags Flag)
VOID GetNameFromPath(_In_ PCUNICODE_STRING Path, _Out_ PUNICODE_STRING Name)
Definition: fxtelemetry.cpp:54
VOID __inline BuildStringFromPartialInfo(_In_ PKEY_VALUE_PARTIAL_INFORMATION Info, _Out_ PUNICODE_STRING String)
#define WDF_LAST_TELEMETRY_LOG_TIME_VALUE
Definition: fxtelemetry.hpp:92
#define FX_TELEMETRY_ENABLED(TraceHandle, Globals)
Definition: fxtelemetry.hpp:45
@ DeviceInfoHasStaticChildren
@ DeviceInfoLineBasedEdgeTriggeredInterrupt
@ DeviceInfoMsi22MultiMessageInterrupt
@ DeviceInfoMsiXOrSingleMsi22Interrupt
@ DeviceInfoDmaBusMaster
@ DeviceInfoDmaSystem
@ DeviceInfoLineBasedLevelTriggeredInterrupt
Definition: fxtelemetry.hpp:99
@ DeviceInfoDmaSystemDuplex
@ DeviceInfoHasDynamicChildren
@ DeviceInfoPassiveLevelInterrupt
@ DeviceStartEventBit
Definition: fxtelemetry.hpp:57
#define KMDF_FX_TRACE_LOGGING_PROVIDER_NAME
VOID RegisterTelemetryProvider(VOID)
VOID UnregisterTelemetryProvider(VOID)
VOID LogDeviceStartTelemetryEvent(_In_ PFX_DRIVER_GLOBALS DriverGlobals, _In_opt_ FxDevice *Fdo)
TRACELOGGING_DEFINE_PROVIDER(g_TelemetryProvider, KMDF_FX_TRACE_LOGGING_PROVIDER_NAME,(0xec044b58, 0x3d13, 0x4880, 0x93, 0x6f, 0x7b, 0x67, 0xdf, 0xb3, 0xe0, 0x56), TraceLoggingOptionMicrosoftTelemetry())
VOID GetDriverInfo(_In_ PFX_DRIVER_GLOBALS Globals, _In_opt_ FxDevice *Fdo, _Out_ FxTelemetryDriverInfo *DriverInfo)
VOID RegistryReadLastLoggedTime(_In_ PFX_DRIVER_GLOBALS DriverGlobals, _Out_ PLARGE_INTEGER LastLoggedTime)
_Must_inspect_result_ NTSTATUS GetImageName(_In_ PFX_DRIVER_GLOBALS DriverGlobals, _Out_ PUNICODE_STRING ImageName)
VOID FxGetDevicePropertyString(_In_ FxDevice *Fdo, _In_ DEVICE_REGISTRY_PROPERTY DeviceProperty, _Out_ PUNICODE_STRING PropertyString)
VOID LogDriverInfoStream(_In_ PFX_DRIVER_GLOBALS DriverGlobals, _In_opt_ FxDevice *Fdo)
ULONG length
NTSTATUS status
VOID AllocAndInitializeTelemetryContext(_In_ PFX_TELEMETRY_CONTEXT *TelemetryContext)
VOID RegistryWriteCurrentTime(_In_ PFX_DRIVER_GLOBALS DriverGlobals)
VOID GetFirstHardwareId(_Inout_ PUNICODE_STRING HardwareIds)
BOOLEAN IsLoggingEnabledAndNeeded(_In_ PFX_DRIVER_GLOBALS DriverGlobals)
_Must_inspect_result_ _In_ PFX_DRIVER_GLOBALS Globals
#define KMDF_CENSUS_EVT_WRITE_DEVICE_START(TraceHandle, Globals, DriverConfig, SetupClass, BusEnum, HwID, Manafacturer)
@ FxEnhancedVerifierFunctionTableHookMask
Definition: fxverifier.h:48
GLsizeiptr size
Definition: glext.h:5919
GLuint buffer
Definition: glext.h:5915
GLuint GLsizei GLsizei * length
Definition: glext.h:6040
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define InterlockedBitTestAndSet
Definition: interlocked.h:30
#define REG_SZ
Definition: layer.c:22
#define ASSERT(a)
Definition: mode.c:44
NTKERNELAPI NTSTATUS ExUuidCreate(OUT UUID *Uuid)
Definition: uuid.c:380
static const char * ImageName
Definition: image.c:34
#define _Inout_
Definition: ms_sal.h:378
#define _Must_inspect_result_
Definition: ms_sal.h:558
#define _Out_
Definition: ms_sal.h:345
#define _In_
Definition: ms_sal.h:308
#define _In_opt_
Definition: ms_sal.h:309
DRIVER_INFORMATION DriverInfo
Definition: main.c:59
@ KeyValuePartialInformation
Definition: nt_native.h:1182
#define KEY_READ
Definition: nt_native.h:1023
NTSYSAPI VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
struct _KEY_VALUE_PARTIAL_INFORMATION * PKEY_VALUE_PARTIAL_INFORMATION
#define KEY_WRITE
Definition: nt_native.h:1031
#define REG_EXPAND_SZ
Definition: nt_native.h:1494
WCHAR * PWCH
Definition: ntbasedef.h:410
#define UNICODE_NULL
#define STATUS_OBJECT_TYPE_MISMATCH
Definition: ntstatus.h:273
#define L(x)
Definition: ntvdm.h:50
unsigned short USHORT
Definition: pedump.c:61
#define REG_QWORD
Definition: sdbapi.c:597
#define exit(n)
Definition: config.h:202
#define STATUS_BUFFER_TOO_SMALL
Definition: shellext.h:69
#define TRACE_LEVEL_VERBOSE
Definition: storswtr.h:30
#define TRACE_LEVEL_ERROR
Definition: storswtr.h:27
UNICODE_STRING m_UnicodeString
BOOLEAN FxVerifierOn
Definition: fxglobals.h:420
ULONG FxEnhancedVerifierOptions
Definition: fxglobals.h:518
Definition: http.c:7252
Definition: ps.c:97
#define FIELD_OFFSET(t, f)
Definition: typedefs.h:255
int64_t LONGLONG
Definition: typedefs.h:68
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
uint16_t * PWCHAR
Definition: typedefs.h:56
uint32_t ULONG
Definition: typedefs.h:59
#define STATUS_INVALID_DEVICE_REQUEST
Definition: udferr_usr.h:138
#define STATUS_INVALID_PARAMETER
Definition: udferr_usr.h:135
#define STATUS_UNSUCCESSFUL
Definition: udferr_usr.h:132
#define STATUS_INSUFFICIENT_RESOURCES
Definition: udferr_usr.h:158
LONGLONG QuadPart
Definition: typedefs.h:114
Definition: pdh_main.c:94
_Must_inspect_result_ _In_ WDFCHILDLIST _In_ PWDF_CHILD_LIST_ITERATOR _Out_ WDFDEVICE _Inout_opt_ PWDF_CHILD_RETRIEVE_INFO Info
Definition: wdfchildlist.h:690
#define DECLARE_CONST_UNICODE_STRING(_variablename, _string)
Definition: wdfcore.h:161
FORCEINLINE LONGLONG WDF_ABS_TIMEOUT_IN_SEC(_In_ ULONGLONG Time)
Definition: wdfcore.h:71
_Must_inspect_result_ _In_ WDFDEVICE _In_ DEVICE_REGISTRY_PROPERTY DeviceProperty
Definition: wdfdevice.h:3769
@ WdfDriverInitNonPnpDriver
Definition: wdfdriver.h:51
@ WdfDriverInitNoDispatchOverride
Definition: wdfdriver.h:52
_Must_inspect_result_ _In_ WDFDEVICE Fdo
Definition: wdffdo.h:461
_Must_inspect_result_ _In_ WDFKEY _In_ PCUNICODE_STRING ValueName
Definition: wdfregistry.h:243
_In_ LPWSTR _In_ ULONG _In_ ULONG _In_ ULONG _Out_ DEVINFO _In_ HDEV _In_ LPWSTR _In_ HANDLE hDriver
Definition: winddi.h:3557
DEVICE_REGISTRY_PROPERTY
Definition: iotypes.h:1194
@ DevicePropertyEnumeratorName
Definition: iotypes.h:1210
@ DevicePropertyManufacturer
Definition: iotypes.h:1203
@ DevicePropertyClassName
Definition: iotypes.h:1200
@ DevicePropertyHardwareID
Definition: iotypes.h:1196
__wchar_t WCHAR
Definition: xmlstorage.h:180