Add usersim ring mapping helpers - #322
Merged
Merged
Conversation
Alan Jowett (Alan-Jowett)
requested a review
from Michael Friesen (mtfriesen)
as a code owner
August 4, 2026 16:35
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: e4f2928d-308e-4fec-8aa3-280de1761d0c Signed-off-by: Alan Jowett <alanjo@microsoft.com>
Alan Jowett (Alan-Jowett)
force-pushed
the
fix-5434-ring-buffer-mapping
branch
from
August 4, 2026 18:41
fe9ac74 to
75ff4ec
Compare
D. Michael Agun (mikeagun)
approved these changes
Aug 4, 2026
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.
This pull request adds several new memory management and object management APIs to the USERSIM interface, along with their corresponding stub or Windows-based implementations. These changes improve the completeness of the USERSIM API, enabling more advanced memory and object operations.
Memory management API additions
MmProbeAndLockPagesandMmUnlockPages, providing interfaces for locking and unlocking pages described by anMDL. [1] [2]MmMapViewInSystemSpaceandMmUnmapViewInSystemSpaceusing Windows API functions (MapViewOfFileandUnmapViewOfFile), allowing mapping and unmapping of sections in system space. [1] [2]Object management API additions
ObOpenObjectByPointer, which duplicates a handle for a given object usingDuplicateHandle. [1] [2]Miscellaneous
utilities.hheader inmm.cppandob.cppto support error handling and logging in the new implementations. [1] [2]