Update etwmon to support Windows 11#1867
Merged
tklengyel merged 2 commits intotklengyel:mainfrom Mar 5, 2026
Merged
Conversation
Windows 11 is missing EtwAdminlessProvRegHandle and IoMgrTraceHandle. This allows them to just be skipped but still process
Owner
|
This change is more intrusive then just skipping these two particular handles you mention. If you need to special case these for Windows 11 that's fine, but you just blank disabling the sanity check that's in place to ensure the plugin works as intended. |
Collaborator
|
Can one of the admins verify this patch? |
Windows 11 (build >= 22000) removed EtwAdminlessProvRegHandle and IoMgrTraceHandle, and added 8 new handles: EtwpDiskProvRegHandle, EtwCpuPartitionProvRegHandle, EtwCpuStarvationProvRegHandle, IopDumpEtwRegHandle, PnpEtwHandle, PnpRundownEtwHandle, WheapEtwHandle, and SshpTraceHandle. Add a dedicated win11_global_handles list and select it when the build number indicates Windows 11. Restore throw on unresolved symbols since each list now contains only handles known to exist on its target OS version. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Author
|
Ok, I updated it with the windows 11 handles. This works in my testing, but I only tested on Windows 11 24H2. |
Owner
|
@drakvuf-jenkins Test this please |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Windows 11 is missing EtwAdminlessProvRegHandle and IoMgrTraceHandle. This allows them to just be skipped but still process.