-
Notifications
You must be signed in to change notification settings - Fork 566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
redirect more of ntdll for more transparent private libraries #235
Comments
From [email protected] on May 25, 2010 20:56:04 r343 adds redirection of LoadLibraryA to prevent dbghelp.dll from using the app's |
From [email protected] on August 20, 2010 16:10:29 r411 fixes Dr. Memory issue #25 where fls data isolation breaks on a reset r411 also fixes a deadlock by intercepting RtlLockHeap and RtlUnlockHeap (called by kernel32!LocalFree) from private libs and turning them into nops for base heap |
From [email protected] on June 06, 2011 02:07:03 pasting in original list for this issue from issue #157 :
|
From [email protected] on June 07, 2011 06:19:42
|
From [email protected] on November 07, 2012 15:06:53 xref https://code.google.com/p/drmemory/issues/detail?id=1066 where chrome hooks on native ntdll affect priv libs |
From [email protected] on October 23, 2013 11:55:48 I split the user32.dll issues out into issue #1299 |
From [email protected] on November 25, 2009 22:56:25
Since we can't easily have a 2nd copy of ntdll, our 2nd copy of kernel32,
etc. use the same ntdll as the app. We then have to redirect ntdll imports
that use shared resources and could interfere with the app. There is a LOT
of stuff to emulate to really be transparent: we're going to add it
incrementally as needed, now that we have the infrastructure.
I've already added the core Rtl_Heap routines. We should focus next on
the Ldr_ routines. We'll redirect any additional routines as transparency
issues come up.
Original issue: http://code.google.com/p/dynamorio/issues/detail?id=235
The text was updated successfully, but these errors were encountered: