2023-05-25 16:22:33 -07:00
|
|
|
From 045f711cb526f02ce6a163bf8ab973b5d06a1c86 Mon Sep 17 00:00:00 2001
|
2020-04-28 04:07:19 -07:00
|
|
|
From: Andrew Wesie <awesie@gmail.com>
|
|
|
|
Date: Fri, 24 Apr 2020 14:55:14 -0500
|
|
|
|
Subject: [PATCH] ntdll: Track if a WRITECOPY page has been modified.
|
|
|
|
|
|
|
|
Once a WRITECOPY page is modified, it should be mapped as if it is a normal
|
|
|
|
read-write page.
|
|
|
|
|
|
|
|
Signed-off-by: Andrew Wesie <awesie@gmail.com>
|
|
|
|
---
|
2021-09-28 16:12:17 -07:00
|
|
|
dlls/ntdll/unix/virtual.c | 24 +++++++++++++++++++-----
|
|
|
|
1 file changed, 19 insertions(+), 5 deletions(-)
|
2020-04-28 04:07:19 -07:00
|
|
|
|
2020-06-02 16:20:16 -07:00
|
|
|
diff --git a/dlls/ntdll/unix/virtual.c b/dlls/ntdll/unix/virtual.c
|
2023-05-25 16:22:33 -07:00
|
|
|
index 2688383cc9f..b0c888d13a0 100644
|
2020-06-02 16:20:16 -07:00
|
|
|
--- a/dlls/ntdll/unix/virtual.c
|
|
|
|
+++ b/dlls/ntdll/unix/virtual.c
|
2023-05-25 16:22:33 -07:00
|
|
|
@@ -122,6 +122,7 @@ struct file_view
|
2020-04-28 04:07:19 -07:00
|
|
|
#define VPROT_GUARD 0x10
|
|
|
|
#define VPROT_COMMITTED 0x20
|
|
|
|
#define VPROT_WRITEWATCH 0x40
|
|
|
|
+#define VPROT_WRITTEN 0x80
|
|
|
|
/* per-mapping protection flags */
|
|
|
|
#define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
|
2023-05-25 16:22:33 -07:00
|
|
|
#define VPROT_PLACEHOLDER 0x0400
|
|
|
|
@@ -1130,7 +1131,7 @@ static int get_unix_prot( BYTE vprot )
|
2020-04-28 04:07:19 -07:00
|
|
|
#if defined(__i386__)
|
|
|
|
if (vprot & VPROT_WRITECOPY)
|
|
|
|
{
|
|
|
|
- if (experimental_WRITECOPY())
|
|
|
|
+ if (experimental_WRITECOPY() && !(vprot & VPROT_WRITTEN))
|
|
|
|
prot = (prot & ~PROT_WRITE) | PROT_READ;
|
|
|
|
else
|
|
|
|
prot |= PROT_WRITE | PROT_READ;
|
2023-05-25 16:22:33 -07:00
|
|
|
@@ -1702,7 +1703,11 @@ static NTSTATUS create_view( struct file_view **view_ret, void *base, size_t siz
|
2020-04-28 04:07:19 -07:00
|
|
|
*/
|
2020-06-02 16:20:16 -07:00
|
|
|
static DWORD get_win32_prot( BYTE vprot, unsigned int map_prot )
|
2020-04-28 04:07:19 -07:00
|
|
|
{
|
|
|
|
- DWORD ret = VIRTUAL_Win32Flags[vprot & 0x0f];
|
|
|
|
+ DWORD ret;
|
|
|
|
+
|
|
|
|
+ if ((vprot & VPROT_WRITECOPY) && (vprot & VPROT_WRITTEN))
|
|
|
|
+ vprot = (vprot & ~VPROT_WRITECOPY) | VPROT_WRITE;
|
|
|
|
+ ret = VIRTUAL_Win32Flags[vprot & 0x0f];
|
|
|
|
if (vprot & VPROT_GUARD) ret |= PAGE_GUARD;
|
|
|
|
if (map_prot & SEC_NOCACHE) ret |= PAGE_NOCACHE;
|
|
|
|
return ret;
|
2023-05-25 16:22:33 -07:00
|
|
|
@@ -1813,12 +1818,21 @@ static BOOL set_vprot( struct file_view *view, void *base, size_t size, BYTE vpr
|
2020-04-28 04:07:19 -07:00
|
|
|
if (view->protect & VPROT_WRITEWATCH)
|
|
|
|
{
|
|
|
|
/* each page may need different protections depending on write watch flag */
|
|
|
|
- set_page_vprot_bits( base, size, vprot & ~VPROT_WRITEWATCH, ~vprot & ~VPROT_WRITEWATCH );
|
|
|
|
+ set_page_vprot_bits( base, size, vprot & ~VPROT_WRITEWATCH, ~vprot & ~(VPROT_WRITEWATCH|VPROT_WRITTEN) );
|
|
|
|
mprotect_range( base, size, 0, 0 );
|
|
|
|
return TRUE;
|
|
|
|
}
|
2021-06-17 18:13:24 -07:00
|
|
|
+
|
2020-04-28 04:07:19 -07:00
|
|
|
+ /* check that we can map this memory with PROT_WRITE since we cannot fail later */
|
|
|
|
+ if (vprot & VPROT_WRITECOPY)
|
|
|
|
+ unix_prot |= PROT_WRITE;
|
|
|
|
+
|
2021-06-17 18:13:24 -07:00
|
|
|
if (mprotect_exec( base, size, unix_prot )) return FALSE;
|
2020-04-28 04:07:19 -07:00
|
|
|
- set_page_vprot( base, size, vprot );
|
|
|
|
+ /* each page may need different protections depending on writecopy */
|
|
|
|
+ set_page_vprot_bits( base, size, vprot, ~vprot & ~VPROT_WRITTEN );
|
|
|
|
+ if (vprot & VPROT_WRITECOPY)
|
|
|
|
+ mprotect_range( base, size, 0, 0 );
|
|
|
|
+
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-05-25 16:22:33 -07:00
|
|
|
@@ -3691,7 +3705,7 @@ NTSTATUS virtual_handle_fault( void *addr, DWORD err, void *stack )
|
2020-04-28 04:07:19 -07:00
|
|
|
}
|
|
|
|
if (vprot & VPROT_WRITECOPY)
|
|
|
|
{
|
|
|
|
- set_page_vprot_bits( page, page_size, VPROT_WRITE, VPROT_WRITECOPY );
|
|
|
|
+ set_page_vprot_bits( page, page_size, VPROT_WRITE | VPROT_WRITTEN, VPROT_WRITECOPY );
|
|
|
|
mprotect_range( page, page_size, 0, 0 );
|
|
|
|
}
|
|
|
|
/* ignore fault if page is writable now */
|
|
|
|
--
|
2023-05-25 16:22:33 -07:00
|
|
|
2.40.1
|
2020-04-28 04:07:19 -07:00
|
|
|
|