2 * Win32 virtual memory functions
4 * Copyright 1997, 2002 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
26 #ifdef HAVE_SYS_ERRNO_H
27 #include <sys/errno.h>
36 #include <sys/types.h>
37 #ifdef HAVE_SYS_MMAN_H
41 #define NONAMELESSUNION
42 #define NONAMELESSSTRUCT
47 #include "wine/library.h"
48 #include "wine/server.h"
49 #include "wine/list.h"
50 #include "wine/debug.h"
51 #include "ntdll_misc.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(virtual);
54 WINE_DECLARE_DEBUG_CHANNEL(module
);
61 #define MAP_NORESERVE 0
65 typedef struct file_view
67 struct list entry
; /* Entry in global view list */
68 void *base
; /* Base address */
69 UINT size
; /* Size in bytes */
70 HANDLE mapping
; /* Handle to the file mapping */
71 BYTE flags
; /* Allocation flags (VFLAG_*) */
72 BYTE protect
; /* Protection for all pages at allocation time */
73 BYTE prot
[1]; /* Protection byte for each page */
77 #define VFLAG_SYSTEM 0x01 /* system view (underlying mmap not under our control) */
78 #define VFLAG_VALLOC 0x02 /* allocated by VirtualAlloc */
80 /* Conversion from VPROT_* to Win32 flags */
81 static const BYTE VIRTUAL_Win32Flags
[16] =
83 PAGE_NOACCESS
, /* 0 */
84 PAGE_READONLY
, /* READ */
85 PAGE_READWRITE
, /* WRITE */
86 PAGE_READWRITE
, /* READ | WRITE */
87 PAGE_EXECUTE
, /* EXEC */
88 PAGE_EXECUTE_READ
, /* READ | EXEC */
89 PAGE_EXECUTE_READWRITE
, /* WRITE | EXEC */
90 PAGE_EXECUTE_READWRITE
, /* READ | WRITE | EXEC */
91 PAGE_WRITECOPY
, /* WRITECOPY */
92 PAGE_WRITECOPY
, /* READ | WRITECOPY */
93 PAGE_WRITECOPY
, /* WRITE | WRITECOPY */
94 PAGE_WRITECOPY
, /* READ | WRITE | WRITECOPY */
95 PAGE_EXECUTE_WRITECOPY
, /* EXEC | WRITECOPY */
96 PAGE_EXECUTE_WRITECOPY
, /* READ | EXEC | WRITECOPY */
97 PAGE_EXECUTE_WRITECOPY
, /* WRITE | EXEC | WRITECOPY */
98 PAGE_EXECUTE_WRITECOPY
/* READ | WRITE | EXEC | WRITECOPY */
101 static struct list views_list
= LIST_INIT(views_list
);
103 static CRITICAL_SECTION csVirtual
;
104 static CRITICAL_SECTION_DEBUG critsect_debug
=
107 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
108 0, 0, { 0, (DWORD
)(__FILE__
": csVirtual") }
110 static CRITICAL_SECTION csVirtual
= { &critsect_debug
, -1, 0, 0, 0, 0 };
113 /* These are always the same on an i386, and it will be faster this way */
114 # define page_mask 0xfff
115 # define page_shift 12
116 # define page_size 0x1000
117 /* Note: these are Windows limits, you cannot change them. */
118 # define ADDRESS_SPACE_LIMIT ((void *)0xc0000000) /* top of the total available address space */
119 # define USER_SPACE_LIMIT ((void *)0x80000000) /* top of the user address space */
121 static UINT page_shift
;
122 static UINT page_mask
;
123 static UINT page_size
;
124 # define ADDRESS_SPACE_LIMIT 0 /* no limit needed on other platforms */
125 # define USER_SPACE_LIMIT 0 /* no limit needed on other platforms */
126 #endif /* __i386__ */
127 #define granularity_mask 0xffff /* Allocation granularity (usually 64k) */
129 #define ROUND_ADDR(addr,mask) \
130 ((void *)((UINT_PTR)(addr) & ~(mask)))
132 #define ROUND_SIZE(addr,size) \
133 (((UINT)(size) + ((UINT_PTR)(addr) & page_mask) + page_mask) & ~page_mask)
135 #define VIRTUAL_DEBUG_DUMP_VIEW(view) \
136 if (!TRACE_ON(virtual)); else VIRTUAL_DumpView(view)
138 static void *user_space_limit
= USER_SPACE_LIMIT
;
141 /***********************************************************************
144 static const char *VIRTUAL_GetProtStr( BYTE prot
)
146 static char buffer
[6];
147 buffer
[0] = (prot
& VPROT_COMMITTED
) ? 'c' : '-';
148 buffer
[1] = (prot
& VPROT_GUARD
) ? 'g' : '-';
149 buffer
[2] = (prot
& VPROT_READ
) ? 'r' : '-';
150 buffer
[3] = (prot
& VPROT_WRITECOPY
) ? 'W' : ((prot
& VPROT_WRITE
) ? 'w' : '-');
151 buffer
[4] = (prot
& VPROT_EXEC
) ? 'x' : '-';
157 /***********************************************************************
160 static void VIRTUAL_DumpView( FILE_VIEW
*view
)
163 char *addr
= view
->base
;
164 BYTE prot
= view
->prot
[0];
166 DPRINTF( "View: %p - %p", addr
, addr
+ view
->size
- 1 );
167 if (view
->flags
& VFLAG_SYSTEM
)
168 DPRINTF( " (system)\n" );
169 else if (view
->flags
& VFLAG_VALLOC
)
170 DPRINTF( " (valloc)\n" );
171 else if (view
->mapping
)
172 DPRINTF( " %p\n", view
->mapping
);
174 DPRINTF( " (anonymous)\n");
176 for (count
= i
= 1; i
< view
->size
>> page_shift
; i
++, count
++)
178 if (view
->prot
[i
] == prot
) continue;
179 DPRINTF( " %p - %p %s\n",
180 addr
, addr
+ (count
<< page_shift
) - 1, VIRTUAL_GetProtStr(prot
) );
181 addr
+= (count
<< page_shift
);
182 prot
= view
->prot
[i
];
186 DPRINTF( " %p - %p %s\n",
187 addr
, addr
+ (count
<< page_shift
) - 1, VIRTUAL_GetProtStr(prot
) );
191 /***********************************************************************
194 void VIRTUAL_Dump(void)
196 struct file_view
*view
;
198 DPRINTF( "\nDump of all virtual memory views:\n\n" );
199 RtlEnterCriticalSection(&csVirtual
);
200 LIST_FOR_EACH_ENTRY( view
, &views_list
, FILE_VIEW
, entry
)
202 VIRTUAL_DumpView( view
);
204 RtlLeaveCriticalSection(&csVirtual
);
208 /***********************************************************************
211 * Find the view containing a given address. The csVirtual section must be held by caller.
220 static struct file_view
*VIRTUAL_FindView( const void *addr
)
222 struct file_view
*view
;
224 LIST_FOR_EACH_ENTRY( view
, &views_list
, struct file_view
, entry
)
226 if (view
->base
> addr
) break;
227 if ((const char*)view
->base
+ view
->size
> (const char*)addr
) return view
;
233 /***********************************************************************
236 * Find the first view overlapping at least part of the specified range.
237 * The csVirtual section must be held by caller.
239 static struct file_view
*find_view_range( const void *addr
, size_t size
)
241 struct file_view
*view
;
243 LIST_FOR_EACH_ENTRY( view
, &views_list
, struct file_view
, entry
)
245 if ((const char *)view
->base
>= (const char *)addr
+ size
) break;
246 if ((const char *)view
->base
+ view
->size
> (const char *)addr
) return view
;
252 /***********************************************************************
255 * Add a reserved area to the list maintained by libwine.
256 * The csVirtual section must be held by caller.
258 static void add_reserved_area( void *addr
, size_t size
)
260 TRACE( "adding %p-%p\n", addr
, (char *)addr
+ size
);
262 if (addr
< user_space_limit
)
264 /* unmap the part of the area that is below the limit */
265 assert( (char *)addr
+ size
> (char *)user_space_limit
);
266 munmap( addr
, (char *)user_space_limit
- (char *)addr
);
267 size
-= (char *)user_space_limit
- (char *)addr
;
268 addr
= user_space_limit
;
270 /* blow away existing mappings */
271 wine_anon_mmap( addr
, size
, PROT_NONE
, MAP_NORESERVE
| MAP_FIXED
);
272 wine_mmap_add_reserved_area( addr
, size
);
276 /***********************************************************************
277 * remove_reserved_area
279 * Remove a reserved area from the list maintained by libwine.
280 * The csVirtual section must be held by caller.
282 static void remove_reserved_area( void *addr
, size_t size
)
284 struct file_view
*view
;
286 LIST_FOR_EACH_ENTRY( view
, &views_list
, struct file_view
, entry
)
288 if ((char *)view
->base
>= (char *)addr
+ size
) break;
289 if ((char *)view
->base
+ view
->size
<= (char *)addr
) continue;
290 /* now we have an overlapping view */
291 if (view
->base
> addr
)
293 wine_mmap_remove_reserved_area( addr
, (char *)view
->base
- (char *)addr
, TRUE
);
294 size
-= (char *)view
->base
- (char *)addr
;
297 if ((char *)view
->base
+ view
->size
>= (char *)addr
+ size
)
299 /* view covers all the remaining area */
300 wine_mmap_remove_reserved_area( addr
, size
, FALSE
);
304 else /* view covers only part of the area */
306 wine_mmap_remove_reserved_area( addr
, (char *)view
->base
+ view
->size
- (char *)addr
, FALSE
);
307 size
-= (char *)view
->base
+ view
->size
- (char *)addr
;
308 addr
= (char *)view
->base
+ view
->size
;
311 /* remove remaining space */
312 if (size
) wine_mmap_remove_reserved_area( addr
, size
, TRUE
);
316 /***********************************************************************
319 * Check if an address range goes beyond a given limit.
321 static inline int is_beyond_limit( void *addr
, size_t size
, void *limit
)
323 return (limit
&& (addr
>= limit
|| (char *)addr
+ size
> (char *)limit
));
327 /***********************************************************************
330 * Unmap an area, or simply replace it by an empty mapping if it is
331 * in a reserved area. The csVirtual section must be held by caller.
333 static inline void unmap_area( void *addr
, size_t size
)
335 if (wine_mmap_is_in_reserved_area( addr
, size
))
336 wine_anon_mmap( addr
, size
, PROT_NONE
, MAP_NORESERVE
| MAP_FIXED
);
338 munmap( addr
, size
);
342 /***********************************************************************
345 * Deletes a view. The csVirtual section must be held by caller.
347 static void delete_view( struct file_view
*view
) /* [in] View */
349 if (!(view
->flags
& VFLAG_SYSTEM
)) unmap_area( view
->base
, view
->size
);
350 list_remove( &view
->entry
);
351 if (view
->mapping
) NtClose( view
->mapping
);
356 /***********************************************************************
359 * Create a view. The csVirtual section must be held by caller.
361 static NTSTATUS
create_view( struct file_view
**view_ret
, void *base
, size_t size
, BYTE vprot
)
363 struct file_view
*view
;
366 assert( !((unsigned int)base
& page_mask
) );
367 assert( !(size
& page_mask
) );
369 /* Create the view structure */
371 if (!(view
= malloc( sizeof(*view
) + (size
>> page_shift
) - 1 ))) return STATUS_NO_MEMORY
;
377 view
->protect
= vprot
;
378 memset( view
->prot
, vprot
, size
>> page_shift
);
380 /* Insert it in the linked list */
382 LIST_FOR_EACH( ptr
, &views_list
)
384 struct file_view
*next
= LIST_ENTRY( ptr
, struct file_view
, entry
);
385 if (next
->base
> base
) break;
387 list_add_before( ptr
, &view
->entry
);
389 /* Check for overlapping views. This can happen if the previous view
390 * was a system view that got unmapped behind our back. In that case
391 * we recover by simply deleting it. */
393 if ((ptr
= list_prev( &views_list
, &view
->entry
)) != NULL
)
395 struct file_view
*prev
= LIST_ENTRY( ptr
, struct file_view
, entry
);
396 if ((char *)prev
->base
+ prev
->size
> (char *)base
)
398 TRACE( "overlapping prev view %p-%p for %p-%p\n",
399 prev
->base
, (char *)prev
->base
+ prev
->size
,
400 base
, (char *)base
+ view
->size
);
401 assert( prev
->flags
& VFLAG_SYSTEM
);
405 if ((ptr
= list_next( &views_list
, &view
->entry
)) != NULL
)
407 struct file_view
*next
= LIST_ENTRY( ptr
, struct file_view
, entry
);
408 if ((char *)base
+ view
->size
> (char *)next
->base
)
410 TRACE( "overlapping next view %p-%p for %p-%p\n",
411 next
->base
, (char *)next
->base
+ next
->size
,
412 base
, (char *)base
+ view
->size
);
413 assert( next
->flags
& VFLAG_SYSTEM
);
419 VIRTUAL_DEBUG_DUMP_VIEW( view
);
420 return STATUS_SUCCESS
;
424 /***********************************************************************
425 * VIRTUAL_GetUnixProt
427 * Convert page protections to protection for mmap/mprotect.
429 static int VIRTUAL_GetUnixProt( BYTE vprot
)
432 if ((vprot
& VPROT_COMMITTED
) && !(vprot
& VPROT_GUARD
))
434 if (vprot
& VPROT_READ
) prot
|= PROT_READ
;
435 if (vprot
& VPROT_WRITE
) prot
|= PROT_WRITE
;
436 if (vprot
& VPROT_WRITECOPY
) prot
|= PROT_WRITE
;
437 if (vprot
& VPROT_EXEC
) prot
|= PROT_EXEC
;
443 /***********************************************************************
444 * VIRTUAL_GetWin32Prot
446 * Convert page protections to Win32 flags.
451 static void VIRTUAL_GetWin32Prot(
452 BYTE vprot
, /* [in] Page protection flags */
453 DWORD
*protect
, /* [out] Location to store Win32 protection flags */
454 DWORD
*state
) /* [out] Location to store mem state flag */
457 *protect
= VIRTUAL_Win32Flags
[vprot
& 0x0f];
458 /* if (vprot & VPROT_GUARD) *protect |= PAGE_GUARD;*/
459 if (vprot
& VPROT_NOCACHE
) *protect
|= PAGE_NOCACHE
;
461 if (vprot
& VPROT_GUARD
) *protect
= PAGE_NOACCESS
;
464 if (state
) *state
= (vprot
& VPROT_COMMITTED
) ? MEM_COMMIT
: MEM_RESERVE
;
468 /***********************************************************************
471 * Build page protections from Win32 flags.
474 * protect [I] Win32 protection flags
477 * Value of page protection flags
479 static BYTE
VIRTUAL_GetProt( DWORD protect
)
483 switch(protect
& 0xff)
489 vprot
= VPROT_READ
| VPROT_WRITE
;
492 /* MSDN CreateFileMapping() states that if PAGE_WRITECOPY is given,
493 * that the hFile must have been opened with GENERIC_READ and
494 * GENERIC_WRITE access. This is WRONG as tests show that you
495 * only need GENERIC_READ access (at least for Win9x,
496 * FIXME: what about NT?). Thus, we don't put VPROT_WRITE in
497 * PAGE_WRITECOPY and PAGE_EXECUTE_WRITECOPY.
499 vprot
= VPROT_READ
| VPROT_WRITECOPY
;
504 case PAGE_EXECUTE_READ
:
505 vprot
= VPROT_EXEC
| VPROT_READ
;
507 case PAGE_EXECUTE_READWRITE
:
508 vprot
= VPROT_EXEC
| VPROT_READ
| VPROT_WRITE
;
510 case PAGE_EXECUTE_WRITECOPY
:
511 /* See comment for PAGE_WRITECOPY above */
512 vprot
= VPROT_EXEC
| VPROT_READ
| VPROT_WRITECOPY
;
519 if (protect
& PAGE_GUARD
) vprot
|= VPROT_GUARD
;
520 if (protect
& PAGE_NOCACHE
) vprot
|= VPROT_NOCACHE
;
525 /***********************************************************************
528 * Change the protection of a range of pages.
534 static BOOL
VIRTUAL_SetProt( FILE_VIEW
*view
, /* [in] Pointer to view */
535 void *base
, /* [in] Starting address */
536 UINT size
, /* [in] Size in bytes */
537 BYTE vprot
) /* [in] Protections to use */
540 base
, (char *)base
+ size
- 1, VIRTUAL_GetProtStr( vprot
) );
542 if (mprotect( base
, size
, VIRTUAL_GetUnixProt(vprot
) ))
543 return FALSE
; /* FIXME: last error */
545 memset( view
->prot
+ (((char *)base
- (char *)view
->base
) >> page_shift
),
546 vprot
, size
>> page_shift
);
547 VIRTUAL_DEBUG_DUMP_VIEW( view
);
552 /***********************************************************************
555 * Create a view and mmap the corresponding memory area.
556 * The csVirtual section must be held by caller.
558 static NTSTATUS
map_view( struct file_view
**view_ret
, void *base
, size_t size
, BYTE vprot
)
565 if (is_beyond_limit( base
, size
, ADDRESS_SPACE_LIMIT
))
566 return STATUS_WORKING_SET_LIMIT_RANGE
;
568 switch (wine_mmap_is_in_reserved_area( base
, size
))
570 case -1: /* partially in a reserved area */
571 return STATUS_CONFLICTING_ADDRESSES
;
573 case 0: /* not in a reserved area, do a normal allocation */
574 if ((ptr
= wine_anon_mmap( base
, size
, VIRTUAL_GetUnixProt(vprot
), 0 )) == (void *)-1)
576 if (errno
== ENOMEM
) return STATUS_NO_MEMORY
;
577 return STATUS_INVALID_PARAMETER
;
581 /* We couldn't get the address we wanted */
582 if (is_beyond_limit( ptr
, size
, user_space_limit
)) add_reserved_area( ptr
, size
);
583 else munmap( ptr
, size
);
584 return STATUS_CONFLICTING_ADDRESSES
;
589 case 1: /* in a reserved area, make sure the address is available */
590 if (find_view_range( base
, size
)) return STATUS_CONFLICTING_ADDRESSES
;
591 /* replace the reserved area by our mapping */
592 if ((ptr
= wine_anon_mmap( base
, size
, VIRTUAL_GetUnixProt(vprot
), MAP_FIXED
)) != base
)
593 return STATUS_INVALID_PARAMETER
;
599 size_t view_size
= size
+ granularity_mask
+ 1;
603 if ((ptr
= wine_anon_mmap( NULL
, view_size
, VIRTUAL_GetUnixProt(vprot
), 0 )) == (void *)-1)
605 if (errno
== ENOMEM
) return STATUS_NO_MEMORY
;
606 return STATUS_INVALID_PARAMETER
;
608 /* if we got something beyond the user limit, unmap it and retry */
609 if (is_beyond_limit( ptr
, view_size
, user_space_limit
)) add_reserved_area( ptr
, view_size
);
613 /* Release the extra memory while keeping the range
614 * starting on the granularity boundary. */
615 if ((unsigned int)ptr
& granularity_mask
)
617 unsigned int extra
= granularity_mask
+ 1 - ((unsigned int)ptr
& granularity_mask
);
618 munmap( ptr
, extra
);
619 ptr
= (char *)ptr
+ extra
;
622 if (view_size
> size
)
623 munmap( (char *)ptr
+ size
, view_size
- size
);
626 status
= create_view( view_ret
, ptr
, size
, vprot
);
627 if (status
!= STATUS_SUCCESS
) unmap_area( ptr
, size
);
632 /***********************************************************************
635 * Linux kernels before 2.4.x can support non page-aligned offsets, as
636 * long as the offset is aligned to the filesystem block size. This is
637 * a big performance gain so we want to take advantage of it.
639 * However, when we use 64-bit file support this doesn't work because
640 * glibc rejects unaligned offsets. Also glibc 2.1.3 mmap64 is broken
641 * in that it rounds unaligned offsets down to a page boundary. For
642 * these reasons we do a direct system call here.
644 static void *unaligned_mmap( void *addr
, size_t length
, unsigned int prot
,
645 unsigned int flags
, int fd
, off_t offset
)
647 #if defined(linux) && defined(__i386__) && defined(__GNUC__)
648 if (!(offset
>> 32) && (offset
& page_mask
))
663 args
.length
= length
;
667 args
.offset
= offset
;
669 __asm__
__volatile__("push %%ebx\n\t"
674 : "0" (90), /* SYS_mmap */
677 if (ret
< 0 && ret
> -4096)
685 return mmap( addr
, length
, prot
, flags
, fd
, offset
);
689 /***********************************************************************
692 * Wrapper for mmap() to map a file into a view, falling back to read if mmap fails.
693 * The csVirtual section must be held by caller.
695 static NTSTATUS
map_file_into_view( struct file_view
*view
, int fd
, size_t start
, size_t size
,
696 off_t offset
, BYTE vprot
, BOOL removable
)
699 int prot
= VIRTUAL_GetUnixProt( vprot
);
700 BOOL shared_write
= (vprot
& VPROT_WRITE
) != 0;
702 assert( start
< view
->size
);
703 assert( start
+ size
<= view
->size
);
705 /* only try mmap if media is not removable (or if we require write access) */
706 if (!removable
|| shared_write
)
708 int flags
= MAP_FIXED
| (shared_write
? MAP_SHARED
: MAP_PRIVATE
);
710 if (unaligned_mmap( (char *)view
->base
+ start
, size
, prot
, flags
, fd
, offset
) != (void *)-1)
713 /* mmap() failed; if this is because the file offset is not */
714 /* page-aligned (EINVAL), or because the underlying filesystem */
715 /* does not support mmap() (ENOEXEC,ENODEV), we do it by hand. */
716 if ((errno
!= ENOEXEC
) && (errno
!= EINVAL
) && (errno
!= ENODEV
)) return FILE_GetNtStatus();
717 if (shared_write
) return FILE_GetNtStatus(); /* we cannot fake shared write mappings */
720 /* Reserve the memory with an anonymous mmap */
721 ptr
= wine_anon_mmap( (char *)view
->base
+ start
, size
, PROT_READ
| PROT_WRITE
, MAP_FIXED
);
722 if (ptr
== (void *)-1) return FILE_GetNtStatus();
723 /* Now read in the file */
724 pread( fd
, ptr
, size
, offset
);
725 if (prot
!= (PROT_READ
|PROT_WRITE
)) mprotect( ptr
, size
, prot
); /* Set the right protection */
727 memset( view
->prot
+ (start
>> page_shift
), vprot
, size
>> page_shift
);
728 return STATUS_SUCCESS
;
732 /***********************************************************************
735 * Decommit some pages of a given view.
736 * The csVirtual section must be held by caller.
738 static NTSTATUS
decommit_pages( struct file_view
*view
, size_t start
, size_t size
)
740 if (wine_anon_mmap( (char *)view
->base
+ start
, size
, PROT_NONE
, MAP_FIXED
) != (void *)-1)
742 BYTE
*p
= view
->prot
+ (start
>> page_shift
);
744 while (size
--) *p
++ &= ~VPROT_COMMITTED
;
745 return STATUS_SUCCESS
;
747 return FILE_GetNtStatus();
751 /***********************************************************************
754 * Apply the relocations to a mapped PE image
756 static int do_relocations( char *base
, const IMAGE_DATA_DIRECTORY
*dir
,
757 int delta
, DWORD total_size
)
759 IMAGE_BASE_RELOCATION
*rel
;
761 TRACE_(module
)( "relocating from %p-%p to %p-%p\n",
762 base
- delta
, base
- delta
+ total_size
, base
, base
+ total_size
);
764 for (rel
= (IMAGE_BASE_RELOCATION
*)(base
+ dir
->VirtualAddress
);
765 ((char *)rel
< base
+ dir
->VirtualAddress
+ dir
->Size
) && rel
->SizeOfBlock
;
766 rel
= (IMAGE_BASE_RELOCATION
*)((char*)rel
+ rel
->SizeOfBlock
) )
768 char *page
= base
+ rel
->VirtualAddress
;
769 WORD
*TypeOffset
= (WORD
*)(rel
+ 1);
770 int i
, count
= (rel
->SizeOfBlock
- sizeof(*rel
)) / sizeof(*TypeOffset
);
772 if (!count
) continue;
775 if ((char *)rel
+ rel
->SizeOfBlock
> base
+ dir
->VirtualAddress
+ dir
->Size
||
776 page
> base
+ total_size
)
778 ERR_(module
)("invalid relocation %p,%lx,%ld at %p,%lx,%lx\n",
779 rel
, rel
->VirtualAddress
, rel
->SizeOfBlock
,
780 base
, dir
->VirtualAddress
, dir
->Size
);
784 TRACE_(module
)("%ld relocations for page %lx\n", rel
->SizeOfBlock
, rel
->VirtualAddress
);
786 /* patching in reverse order */
787 for (i
= 0 ; i
< count
; i
++)
789 int offset
= TypeOffset
[i
] & 0xFFF;
790 int type
= TypeOffset
[i
] >> 12;
793 case IMAGE_REL_BASED_ABSOLUTE
:
795 case IMAGE_REL_BASED_HIGH
:
796 *(short*)(page
+offset
) += HIWORD(delta
);
798 case IMAGE_REL_BASED_LOW
:
799 *(short*)(page
+offset
) += LOWORD(delta
);
801 case IMAGE_REL_BASED_HIGHLOW
:
802 *(int*)(page
+offset
) += delta
;
803 /* FIXME: if this is an exported address, fire up enhanced logic */
806 FIXME_(module
)("Unknown/unsupported fixup type %d.\n", type
);
815 /***********************************************************************
818 * Map an executable (PE format) image into memory.
820 static NTSTATUS
map_image( HANDLE hmapping
, int fd
, char *base
, DWORD total_size
,
821 DWORD header_size
, int shared_fd
, BOOL removable
, PVOID
*addr_ptr
)
823 IMAGE_DOS_HEADER
*dos
;
824 IMAGE_NT_HEADERS
*nt
;
825 IMAGE_SECTION_HEADER
*sec
;
826 IMAGE_DATA_DIRECTORY
*imports
;
827 NTSTATUS status
= STATUS_CONFLICTING_ADDRESSES
;
830 struct file_view
*view
= NULL
;
833 /* zero-map the whole range */
835 RtlEnterCriticalSection( &csVirtual
);
837 if (base
>= (char *)0x110000) /* make sure the DOS area remains free */
838 status
= map_view( &view
, base
, total_size
,
839 VPROT_COMMITTED
| VPROT_READ
| VPROT_EXEC
| VPROT_WRITECOPY
| VPROT_IMAGE
);
841 if (status
== STATUS_CONFLICTING_ADDRESSES
)
842 status
= map_view( &view
, NULL
, total_size
,
843 VPROT_COMMITTED
| VPROT_READ
| VPROT_EXEC
| VPROT_WRITECOPY
| VPROT_IMAGE
);
845 if (status
!= STATUS_SUCCESS
) goto error
;
848 TRACE_(module
)( "mapped PE file at %p-%p\n", ptr
, ptr
+ total_size
);
852 status
= STATUS_INVALID_IMAGE_FORMAT
; /* generic error */
853 if (map_file_into_view( view
, fd
, 0, header_size
, 0, VPROT_COMMITTED
| VPROT_READ
,
854 removable
) != STATUS_SUCCESS
) goto error
;
855 dos
= (IMAGE_DOS_HEADER
*)ptr
;
856 nt
= (IMAGE_NT_HEADERS
*)(ptr
+ dos
->e_lfanew
);
857 if ((char *)(nt
+ 1) > ptr
+ header_size
) goto error
;
859 sec
= (IMAGE_SECTION_HEADER
*)((char*)&nt
->OptionalHeader
+nt
->FileHeader
.SizeOfOptionalHeader
);
860 if ((char *)(sec
+ nt
->FileHeader
.NumberOfSections
) > ptr
+ header_size
) goto error
;
862 imports
= nt
->OptionalHeader
.DataDirectory
+ IMAGE_DIRECTORY_ENTRY_IMPORT
;
863 if (!imports
->Size
|| !imports
->VirtualAddress
) imports
= NULL
;
865 /* check the architecture */
867 if (nt
->FileHeader
.Machine
!= IMAGE_FILE_MACHINE_I386
)
869 MESSAGE("Trying to load PE image for unsupported architecture (");
870 switch (nt
->FileHeader
.Machine
)
872 case IMAGE_FILE_MACHINE_UNKNOWN
: MESSAGE("Unknown"); break;
873 case IMAGE_FILE_MACHINE_I860
: MESSAGE("I860"); break;
874 case IMAGE_FILE_MACHINE_R3000
: MESSAGE("R3000"); break;
875 case IMAGE_FILE_MACHINE_R4000
: MESSAGE("R4000"); break;
876 case IMAGE_FILE_MACHINE_R10000
: MESSAGE("R10000"); break;
877 case IMAGE_FILE_MACHINE_ALPHA
: MESSAGE("Alpha"); break;
878 case IMAGE_FILE_MACHINE_POWERPC
: MESSAGE("PowerPC"); break;
879 default: MESSAGE("Unknown-%04x", nt
->FileHeader
.Machine
); break;
885 /* check for non page-aligned binary */
887 if (nt
->OptionalHeader
.SectionAlignment
<= page_mask
)
889 /* unaligned sections, this happens for native subsystem binaries */
890 /* in that case Windows simply maps in the whole file */
892 if (map_file_into_view( view
, fd
, 0, total_size
, 0, VPROT_COMMITTED
| VPROT_READ
,
893 removable
) != STATUS_SUCCESS
) goto error
;
895 /* check that all sections are loaded at the right offset */
896 for (i
= 0; i
< nt
->FileHeader
.NumberOfSections
; i
++)
898 if (sec
[i
].VirtualAddress
!= sec
[i
].PointerToRawData
)
899 goto error
; /* Windows refuses to load in that case too */
902 /* set the image protections */
903 VIRTUAL_SetProt( view
, ptr
, total_size
,
904 VPROT_COMMITTED
| VPROT_READ
| VPROT_WRITECOPY
| VPROT_EXEC
);
906 /* perform relocations if necessary */
907 /* FIXME: not 100% compatible, Windows doesn't do this for non page-aligned binaries */
910 const IMAGE_DATA_DIRECTORY
*relocs
;
911 relocs
= &nt
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_BASERELOC
];
912 if (relocs
->VirtualAddress
&& relocs
->Size
)
913 do_relocations( ptr
, relocs
, ptr
- base
, total_size
);
920 /* map all the sections */
922 for (i
= pos
= 0; i
< nt
->FileHeader
.NumberOfSections
; i
++, sec
++)
926 /* a few sanity checks */
927 size
= sec
->VirtualAddress
+ ROUND_SIZE( sec
->VirtualAddress
, sec
->Misc
.VirtualSize
);
928 if (sec
->VirtualAddress
> total_size
|| size
> total_size
|| size
< sec
->VirtualAddress
)
930 ERR_(module
)( "Section %.8s too large (%lx+%lx/%lx)\n",
931 sec
->Name
, sec
->VirtualAddress
, sec
->Misc
.VirtualSize
, total_size
);
935 if ((sec
->Characteristics
& IMAGE_SCN_MEM_SHARED
) &&
936 (sec
->Characteristics
& IMAGE_SCN_MEM_WRITE
))
938 size
= ROUND_SIZE( 0, sec
->Misc
.VirtualSize
);
939 TRACE_(module
)( "mapping shared section %.8s at %p off %lx (%x) size %lx (%lx) flags %lx\n",
940 sec
->Name
, ptr
+ sec
->VirtualAddress
,
941 sec
->PointerToRawData
, (int)pos
, sec
->SizeOfRawData
,
942 size
, sec
->Characteristics
);
943 if (map_file_into_view( view
, shared_fd
, sec
->VirtualAddress
, size
, pos
,
944 VPROT_COMMITTED
| VPROT_READ
| PROT_WRITE
,
945 FALSE
) != STATUS_SUCCESS
)
947 ERR_(module
)( "Could not map shared section %.8s\n", sec
->Name
);
951 /* check if the import directory falls inside this section */
952 if (imports
&& imports
->VirtualAddress
>= sec
->VirtualAddress
&&
953 imports
->VirtualAddress
< sec
->VirtualAddress
+ size
)
955 UINT_PTR base
= imports
->VirtualAddress
& ~page_mask
;
956 UINT_PTR end
= base
+ ROUND_SIZE( imports
->VirtualAddress
, imports
->Size
);
957 if (end
> sec
->VirtualAddress
+ size
) end
= sec
->VirtualAddress
+ size
;
959 map_file_into_view( view
, shared_fd
, base
, end
- base
,
960 pos
+ (base
- sec
->VirtualAddress
),
961 VPROT_COMMITTED
| VPROT_READ
| VPROT_WRITECOPY
,
968 TRACE_(module
)( "mapping section %.8s at %p off %lx size %lx flags %lx\n",
969 sec
->Name
, ptr
+ sec
->VirtualAddress
,
970 sec
->PointerToRawData
, sec
->SizeOfRawData
,
971 sec
->Characteristics
);
973 if ((sec
->Characteristics
& IMAGE_SCN_CNT_UNINITIALIZED_DATA
) &&
974 !(sec
->Characteristics
& IMAGE_SCN_CNT_INITIALIZED_DATA
)) continue;
975 if (!sec
->PointerToRawData
|| !sec
->SizeOfRawData
) continue;
977 /* Note: if the section is not aligned properly map_file_into_view will magically
978 * fall back to read(), so we don't need to check anything here.
980 if (map_file_into_view( view
, fd
, sec
->VirtualAddress
, sec
->SizeOfRawData
, sec
->PointerToRawData
,
981 VPROT_COMMITTED
| VPROT_READ
| VPROT_WRITECOPY
,
982 removable
) != STATUS_SUCCESS
)
984 ERR_(module
)( "Could not map section %.8s, file probably truncated\n", sec
->Name
);
988 if ((sec
->SizeOfRawData
< sec
->Misc
.VirtualSize
) && (sec
->SizeOfRawData
& page_mask
))
990 DWORD end
= ROUND_SIZE( 0, sec
->SizeOfRawData
);
991 if (end
> sec
->Misc
.VirtualSize
) end
= sec
->Misc
.VirtualSize
;
992 TRACE_(module
)("clearing %p - %p\n",
993 ptr
+ sec
->VirtualAddress
+ sec
->SizeOfRawData
,
994 ptr
+ sec
->VirtualAddress
+ end
);
995 memset( ptr
+ sec
->VirtualAddress
+ sec
->SizeOfRawData
, 0,
996 end
- sec
->SizeOfRawData
);
1001 /* perform base relocation, if necessary */
1005 const IMAGE_DATA_DIRECTORY
*relocs
;
1007 relocs
= &nt
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_BASERELOC
];
1008 if (!relocs
->VirtualAddress
|| !relocs
->Size
)
1010 if (nt
->OptionalHeader
.ImageBase
== 0x400000) {
1011 ERR("Image was mapped at %p: standard load address for a Win32 program (0x00400000) not available\n", ptr
);
1012 ERR("Do you have exec-shield or prelink active?\n");
1014 ERR( "FATAL: Need to relocate module from addr %lx, but there are no relocation records\n",
1015 nt
->OptionalHeader
.ImageBase
);
1019 /* FIXME: If we need to relocate a system DLL (base > 2GB) we should
1020 * really make sure that the *new* base address is also > 2GB.
1021 * Some DLLs really check the MSB of the module handle :-/
1023 if ((nt
->OptionalHeader
.ImageBase
& 0x80000000) && !((DWORD
)base
& 0x80000000))
1024 ERR( "Forced to relocate system DLL (base > 2GB). This is not good.\n" );
1026 if (!do_relocations( ptr
, relocs
, ptr
- base
, total_size
))
1032 /* set the image protections */
1034 sec
= (IMAGE_SECTION_HEADER
*)((char *)&nt
->OptionalHeader
+nt
->FileHeader
.SizeOfOptionalHeader
);
1035 for (i
= 0; i
< nt
->FileHeader
.NumberOfSections
; i
++, sec
++)
1037 DWORD size
= ROUND_SIZE( sec
->VirtualAddress
, sec
->Misc
.VirtualSize
);
1038 BYTE vprot
= VPROT_COMMITTED
;
1039 if (sec
->Characteristics
& IMAGE_SCN_MEM_READ
) vprot
|= VPROT_READ
;
1040 if (sec
->Characteristics
& IMAGE_SCN_MEM_WRITE
) vprot
|= VPROT_READ
|VPROT_WRITECOPY
;
1041 if (sec
->Characteristics
& IMAGE_SCN_MEM_EXECUTE
) vprot
|= VPROT_EXEC
;
1042 VIRTUAL_SetProt( view
, ptr
+ sec
->VirtualAddress
, size
, vprot
);
1046 if (!removable
) /* don't keep handle open on removable media */
1047 NtDuplicateObject( NtCurrentProcess(), hmapping
,
1048 NtCurrentProcess(), &view
->mapping
,
1049 0, 0, DUPLICATE_SAME_ACCESS
);
1051 RtlLeaveCriticalSection( &csVirtual
);
1054 return STATUS_SUCCESS
;
1057 if (view
) delete_view( view
);
1058 RtlLeaveCriticalSection( &csVirtual
);
1063 /***********************************************************************
1064 * is_current_process
1066 * Check whether a process handle is for the current process.
1068 BOOL
is_current_process( HANDLE handle
)
1072 if (handle
== NtCurrentProcess()) return TRUE
;
1073 SERVER_START_REQ( get_process_info
)
1075 req
->handle
= handle
;
1076 if (!wine_server_call( req
))
1077 ret
= ((DWORD
)reply
->pid
== GetCurrentProcessId());
1084 /***********************************************************************
1087 void virtual_init(void)
1090 page_size
= getpagesize();
1091 page_mask
= page_size
- 1;
1092 /* Make sure we have a power of 2 */
1093 assert( !(page_size
& page_mask
) );
1095 while ((1 << page_shift
) != page_size
) page_shift
++;
1096 #endif /* page_mask */
1100 /***********************************************************************
1101 * VIRTUAL_HandleFault
1103 DWORD
VIRTUAL_HandleFault( LPCVOID addr
)
1106 DWORD ret
= EXCEPTION_ACCESS_VIOLATION
;
1108 RtlEnterCriticalSection( &csVirtual
);
1109 if ((view
= VIRTUAL_FindView( addr
)))
1111 BYTE vprot
= view
->prot
[((const char *)addr
- (const char *)view
->base
) >> page_shift
];
1112 void *page
= (void *)((UINT_PTR
)addr
& ~page_mask
);
1113 char *stack
= NtCurrentTeb()->Tib
.StackLimit
;
1114 if (vprot
& VPROT_GUARD
)
1116 VIRTUAL_SetProt( view
, page
, page_mask
+ 1, vprot
& ~VPROT_GUARD
);
1117 ret
= STATUS_GUARD_PAGE_VIOLATION
;
1119 /* is it inside the stack guard page? */
1120 if (((const char *)addr
>= stack
) && ((const char *)addr
< stack
+ (page_mask
+1)))
1121 ret
= STATUS_STACK_OVERFLOW
;
1123 RtlLeaveCriticalSection( &csVirtual
);
1127 /***********************************************************************
1128 * VIRTUAL_HasMapping
1130 * Check if the specified view has an associated file mapping.
1132 BOOL
VIRTUAL_HasMapping( LPCVOID addr
)
1137 RtlEnterCriticalSection( &csVirtual
);
1138 if ((view
= VIRTUAL_FindView( addr
))) ret
= (view
->mapping
!= 0);
1139 RtlLeaveCriticalSection( &csVirtual
);
1144 /***********************************************************************
1145 * VIRTUAL_UseLargeAddressSpace
1147 * Increase the address space size for apps that support it.
1149 void VIRTUAL_UseLargeAddressSpace(void)
1151 if (user_space_limit
>= ADDRESS_SPACE_LIMIT
) return;
1152 RtlEnterCriticalSection( &csVirtual
);
1153 remove_reserved_area( user_space_limit
, (char *)ADDRESS_SPACE_LIMIT
- (char *)user_space_limit
);
1154 user_space_limit
= ADDRESS_SPACE_LIMIT
;
1155 RtlLeaveCriticalSection( &csVirtual
);
1159 /***********************************************************************
1160 * NtAllocateVirtualMemory (NTDLL.@)
1161 * ZwAllocateVirtualMemory (NTDLL.@)
1163 NTSTATUS WINAPI
NtAllocateVirtualMemory( HANDLE process
, PVOID
*ret
, ULONG zero_bits
,
1164 ULONG
*size_ptr
, ULONG type
, ULONG protect
)
1168 DWORD size
= *size_ptr
;
1169 NTSTATUS status
= STATUS_SUCCESS
;
1170 struct file_view
*view
;
1172 TRACE("%p %p %08lx %lx %08lx\n", process
, *ret
, size
, type
, protect
);
1174 if (!size
) return STATUS_INVALID_PARAMETER
;
1176 if (!is_current_process( process
))
1178 ERR("Unsupported on other process\n");
1179 return STATUS_ACCESS_DENIED
;
1182 /* Round parameters to a page boundary */
1184 if (size
> 0x7fc00000) return STATUS_WORKING_SET_LIMIT_RANGE
; /* 2Gb - 4Mb */
1188 if (type
& MEM_RESERVE
) /* Round down to 64k boundary */
1189 base
= ROUND_ADDR( *ret
, granularity_mask
);
1191 base
= ROUND_ADDR( *ret
, page_mask
);
1192 size
= (((UINT_PTR
)*ret
+ size
+ page_mask
) & ~page_mask
) - (UINT_PTR
)base
;
1194 /* disallow low 64k, wrap-around and kernel space */
1195 if (((char *)base
<= (char *)granularity_mask
) ||
1196 ((char *)base
+ size
< (char *)base
) ||
1197 is_beyond_limit( base
, size
, ADDRESS_SPACE_LIMIT
))
1198 return STATUS_INVALID_PARAMETER
;
1203 size
= (size
+ page_mask
) & ~page_mask
;
1206 if (type
& MEM_TOP_DOWN
) {
1207 /* FIXME: MEM_TOP_DOWN allocates the largest possible address. */
1208 WARN("MEM_TOP_DOWN ignored\n");
1209 type
&= ~MEM_TOP_DOWN
;
1213 WARN("zero_bits %lu ignored\n", zero_bits
);
1215 /* Compute the alloc type flags */
1217 if (!(type
& MEM_SYSTEM
))
1219 if (!(type
& (MEM_COMMIT
| MEM_RESERVE
)) || (type
& ~(MEM_COMMIT
| MEM_RESERVE
)))
1221 WARN("called with wrong alloc type flags (%08lx) !\n", type
);
1222 return STATUS_INVALID_PARAMETER
;
1225 vprot
= VIRTUAL_GetProt( protect
);
1226 if (type
& MEM_COMMIT
) vprot
|= VPROT_COMMITTED
;
1228 /* Reserve the memory */
1230 RtlEnterCriticalSection( &csVirtual
);
1232 if (type
& MEM_SYSTEM
)
1234 if (type
& MEM_IMAGE
) vprot
|= VPROT_IMAGE
;
1235 status
= create_view( &view
, base
, size
, vprot
| VPROT_COMMITTED
);
1236 if (status
== STATUS_SUCCESS
)
1238 view
->flags
|= VFLAG_VALLOC
| VFLAG_SYSTEM
;
1242 else if ((type
& MEM_RESERVE
) || !base
)
1244 status
= map_view( &view
, base
, size
, vprot
);
1245 if (status
== STATUS_SUCCESS
)
1247 view
->flags
|= VFLAG_VALLOC
;
1251 else /* commit the pages */
1253 if (!(view
= VIRTUAL_FindView( base
)) ||
1254 ((char *)base
+ size
> (char *)view
->base
+ view
->size
)) status
= STATUS_NOT_MAPPED_VIEW
;
1255 else if (!VIRTUAL_SetProt( view
, base
, size
, vprot
)) status
= STATUS_ACCESS_DENIED
;
1258 RtlLeaveCriticalSection( &csVirtual
);
1260 if (status
== STATUS_SUCCESS
)
1269 /***********************************************************************
1270 * NtFreeVirtualMemory (NTDLL.@)
1271 * ZwFreeVirtualMemory (NTDLL.@)
1273 NTSTATUS WINAPI
NtFreeVirtualMemory( HANDLE process
, PVOID
*addr_ptr
, ULONG
*size_ptr
, ULONG type
)
1277 NTSTATUS status
= STATUS_SUCCESS
;
1278 LPVOID addr
= *addr_ptr
;
1279 DWORD size
= *size_ptr
;
1281 TRACE("%p %p %08lx %lx\n", process
, addr
, size
, type
);
1283 if (!is_current_process( process
))
1285 ERR("Unsupported on other process\n");
1286 return STATUS_ACCESS_DENIED
;
1289 /* Fix the parameters */
1291 size
= ROUND_SIZE( addr
, size
);
1292 base
= ROUND_ADDR( addr
, page_mask
);
1294 RtlEnterCriticalSection(&csVirtual
);
1296 if (!(view
= VIRTUAL_FindView( base
)) ||
1297 (base
+ size
> (char *)view
->base
+ view
->size
) ||
1298 !(view
->flags
& VFLAG_VALLOC
))
1300 status
= STATUS_INVALID_PARAMETER
;
1302 else if (type
& MEM_SYSTEM
)
1304 /* return the values that the caller should use to unmap the area */
1305 *addr_ptr
= view
->base
;
1306 *size_ptr
= view
->size
;
1307 view
->flags
|= VFLAG_SYSTEM
;
1308 delete_view( view
);
1310 else if (type
== MEM_RELEASE
)
1312 /* Free the pages */
1314 if (size
|| (base
!= view
->base
)) status
= STATUS_INVALID_PARAMETER
;
1317 delete_view( view
);
1322 else if (type
== MEM_DECOMMIT
)
1324 status
= decommit_pages( view
, base
- (char *)view
->base
, size
);
1325 if (status
== STATUS_SUCCESS
)
1333 WARN("called with wrong free type flags (%08lx) !\n", type
);
1334 status
= STATUS_INVALID_PARAMETER
;
1337 RtlLeaveCriticalSection(&csVirtual
);
1342 /***********************************************************************
1343 * NtProtectVirtualMemory (NTDLL.@)
1344 * ZwProtectVirtualMemory (NTDLL.@)
1346 NTSTATUS WINAPI
NtProtectVirtualMemory( HANDLE process
, PVOID
*addr_ptr
, ULONG
*size_ptr
,
1347 ULONG new_prot
, ULONG
*old_prot
)
1350 NTSTATUS status
= STATUS_SUCCESS
;
1354 DWORD prot
, size
= *size_ptr
;
1355 LPVOID addr
= *addr_ptr
;
1357 TRACE("%p %p %08lx %08lx\n", process
, addr
, size
, new_prot
);
1359 if (!is_current_process( process
))
1361 ERR("Unsupported on other process\n");
1362 return STATUS_ACCESS_DENIED
;
1365 /* Fix the parameters */
1367 size
= ROUND_SIZE( addr
, size
);
1368 base
= ROUND_ADDR( addr
, page_mask
);
1370 RtlEnterCriticalSection( &csVirtual
);
1372 if (!(view
= VIRTUAL_FindView( base
)) || (base
+ size
> (char *)view
->base
+ view
->size
))
1374 status
= STATUS_INVALID_PARAMETER
;
1378 /* Make sure all the pages are committed */
1380 p
= view
->prot
+ ((base
- (char *)view
->base
) >> page_shift
);
1381 VIRTUAL_GetWin32Prot( *p
, &prot
, NULL
);
1382 for (i
= size
>> page_shift
; i
; i
--, p
++)
1384 if (!(*p
& VPROT_COMMITTED
))
1386 status
= STATUS_NOT_COMMITTED
;
1392 if (old_prot
) *old_prot
= prot
;
1393 vprot
= VIRTUAL_GetProt( new_prot
) | VPROT_COMMITTED
;
1394 if (!VIRTUAL_SetProt( view
, base
, size
, vprot
)) status
= STATUS_ACCESS_DENIED
;
1397 RtlLeaveCriticalSection( &csVirtual
);
1399 if (status
== STATUS_SUCCESS
)
1408 /***********************************************************************
1409 * NtQueryVirtualMemory (NTDLL.@)
1410 * ZwQueryVirtualMemory (NTDLL.@)
1412 NTSTATUS WINAPI
NtQueryVirtualMemory( HANDLE process
, LPCVOID addr
,
1413 MEMORY_INFORMATION_CLASS info_class
, PVOID buffer
,
1414 ULONG len
, ULONG
*res_len
)
1417 char *base
, *alloc_base
= 0;
1420 MEMORY_BASIC_INFORMATION
*info
= buffer
;
1422 if (info_class
!= MemoryBasicInformation
)
1424 FIXME("(%p, %p, %d, %p, %ld, %p) Unimplemented information class\n", process
, addr
,
1425 info_class
, buffer
, len
, res_len
);
1426 return STATUS_INVALID_INFO_CLASS
;
1428 if (ADDRESS_SPACE_LIMIT
&& addr
>= ADDRESS_SPACE_LIMIT
)
1429 return STATUS_WORKING_SET_LIMIT_RANGE
;
1431 if (!is_current_process( process
))
1433 ERR("Unsupported on other process\n");
1434 return STATUS_ACCESS_DENIED
;
1437 base
= ROUND_ADDR( addr
, page_mask
);
1439 /* Find the view containing the address */
1441 RtlEnterCriticalSection(&csVirtual
);
1442 ptr
= list_head( &views_list
);
1447 /* make the address space end at the user limit, except if
1448 * the last view was mapped beyond that */
1449 if (alloc_base
< (char *)user_space_limit
)
1451 if (user_space_limit
&& base
>= (char *)user_space_limit
)
1453 RtlLeaveCriticalSection( &csVirtual
);
1454 return STATUS_WORKING_SET_LIMIT_RANGE
;
1456 size
= (char *)user_space_limit
- alloc_base
;
1458 else size
= (char *)ADDRESS_SPACE_LIMIT
- alloc_base
;
1462 view
= LIST_ENTRY( ptr
, struct file_view
, entry
);
1463 if ((char *)view
->base
> base
)
1465 size
= (char *)view
->base
- alloc_base
;
1469 if ((char *)view
->base
+ view
->size
> base
)
1471 alloc_base
= view
->base
;
1475 alloc_base
= (char *)view
->base
+ view
->size
;
1476 ptr
= list_next( &views_list
, ptr
);
1479 /* Fill the info structure */
1483 info
->State
= MEM_FREE
;
1485 info
->AllocationProtect
= 0;
1490 BYTE vprot
= view
->prot
[(base
- alloc_base
) >> page_shift
];
1491 VIRTUAL_GetWin32Prot( vprot
, &info
->Protect
, &info
->State
);
1492 for (size
= base
- alloc_base
; size
< view
->size
; size
+= page_mask
+1)
1493 if (view
->prot
[size
>> page_shift
] != vprot
) break;
1494 VIRTUAL_GetWin32Prot( view
->protect
, &info
->AllocationProtect
, NULL
);
1495 if (view
->protect
& VPROT_IMAGE
) info
->Type
= MEM_IMAGE
;
1496 else if (view
->flags
& VFLAG_VALLOC
) info
->Type
= MEM_PRIVATE
;
1497 else info
->Type
= MEM_MAPPED
;
1499 RtlLeaveCriticalSection(&csVirtual
);
1501 info
->BaseAddress
= (LPVOID
)base
;
1502 info
->AllocationBase
= (LPVOID
)alloc_base
;
1503 info
->RegionSize
= size
- (base
- alloc_base
);
1504 if (res_len
) *res_len
= sizeof(*info
);
1505 return STATUS_SUCCESS
;
1509 /***********************************************************************
1510 * NtLockVirtualMemory (NTDLL.@)
1511 * ZwLockVirtualMemory (NTDLL.@)
1513 NTSTATUS WINAPI
NtLockVirtualMemory( HANDLE process
, PVOID
*addr
, ULONG
*size
, ULONG unknown
)
1515 if (!is_current_process( process
))
1517 ERR("Unsupported on other process\n");
1518 return STATUS_ACCESS_DENIED
;
1520 return STATUS_SUCCESS
;
1524 /***********************************************************************
1525 * NtUnlockVirtualMemory (NTDLL.@)
1526 * ZwUnlockVirtualMemory (NTDLL.@)
1528 NTSTATUS WINAPI
NtUnlockVirtualMemory( HANDLE process
, PVOID
*addr
, ULONG
*size
, ULONG unknown
)
1530 if (!is_current_process( process
))
1532 ERR("Unsupported on other process\n");
1533 return STATUS_ACCESS_DENIED
;
1535 return STATUS_SUCCESS
;
1539 /***********************************************************************
1540 * NtCreateSection (NTDLL.@)
1541 * ZwCreateSection (NTDLL.@)
1543 NTSTATUS WINAPI
NtCreateSection( HANDLE
*handle
, ACCESS_MASK access
, const OBJECT_ATTRIBUTES
*attr
,
1544 const LARGE_INTEGER
*size
, ULONG protect
,
1545 ULONG sec_flags
, HANDLE file
)
1549 DWORD len
= (attr
&& attr
->ObjectName
) ? attr
->ObjectName
->Length
: 0;
1551 /* Check parameters */
1553 if (len
> MAX_PATH
*sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
1555 vprot
= VIRTUAL_GetProt( protect
);
1556 if (sec_flags
& SEC_RESERVE
)
1558 if (file
) return STATUS_INVALID_PARAMETER
;
1560 else vprot
|= VPROT_COMMITTED
;
1561 if (sec_flags
& SEC_NOCACHE
) vprot
|= VPROT_NOCACHE
;
1562 if (sec_flags
& SEC_IMAGE
) vprot
|= VPROT_IMAGE
;
1564 /* Create the server object */
1566 SERVER_START_REQ( create_mapping
)
1568 req
->file_handle
= file
;
1569 req
->size_high
= size
? size
->u
.HighPart
: 0;
1570 req
->size_low
= size
? size
->u
.LowPart
: 0;
1571 req
->protect
= vprot
;
1572 req
->access
= access
;
1573 req
->inherit
= (attr
&& (attr
->Attributes
& OBJ_INHERIT
) != 0);
1574 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
1575 ret
= wine_server_call( req
);
1576 *handle
= reply
->handle
;
1583 /***********************************************************************
1584 * NtOpenSection (NTDLL.@)
1585 * ZwOpenSection (NTDLL.@)
1587 NTSTATUS WINAPI
NtOpenSection( HANDLE
*handle
, ACCESS_MASK access
, const OBJECT_ATTRIBUTES
*attr
)
1590 DWORD len
= attr
->ObjectName
->Length
;
1592 if (len
> MAX_PATH
*sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
1594 SERVER_START_REQ( open_mapping
)
1596 req
->access
= access
;
1597 req
->inherit
= (attr
->Attributes
& OBJ_INHERIT
) != 0;
1598 wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
1599 if (!(ret
= wine_server_call( req
))) *handle
= reply
->handle
;
1606 /***********************************************************************
1607 * NtMapViewOfSection (NTDLL.@)
1608 * ZwMapViewOfSection (NTDLL.@)
1610 NTSTATUS WINAPI
NtMapViewOfSection( HANDLE handle
, HANDLE process
, PVOID
*addr_ptr
, ULONG zero_bits
,
1611 ULONG commit_size
, const LARGE_INTEGER
*offset_ptr
, ULONG
*size_ptr
,
1612 SECTION_INHERIT inherit
, ULONG alloc_type
, ULONG protect
)
1615 FILE_FS_DEVICE_INFORMATION device_info
;
1618 int unix_handle
= -1;
1621 struct file_view
*view
;
1622 DWORD size_low
, size_high
, header_size
, shared_size
;
1624 BOOL removable
= FALSE
;
1625 LARGE_INTEGER offset
;
1627 offset
.QuadPart
= offset_ptr
? offset_ptr
->QuadPart
: 0;
1629 TRACE("handle=%p process=%p addr=%p off=%lx%08lx size=%x access=%lx\n",
1630 handle
, process
, *addr_ptr
, offset
.u
.HighPart
, offset
.u
.LowPart
, size
, protect
);
1632 if (!is_current_process( process
))
1634 ERR("Unsupported on other process\n");
1635 return STATUS_ACCESS_DENIED
;
1638 /* Check parameters */
1640 if ((offset
.u
.LowPart
& granularity_mask
) ||
1641 (*addr_ptr
&& ((UINT_PTR
)*addr_ptr
& granularity_mask
)))
1642 return STATUS_INVALID_PARAMETER
;
1644 SERVER_START_REQ( get_mapping_info
)
1646 req
->handle
= handle
;
1647 res
= wine_server_call( req
);
1648 prot
= reply
->protect
;
1650 size_low
= reply
->size_low
;
1651 size_high
= reply
->size_high
;
1652 header_size
= reply
->header_size
;
1653 shared_file
= reply
->shared_file
;
1654 shared_size
= reply
->shared_size
;
1657 if (res
) return res
;
1659 if ((res
= wine_server_handle_to_fd( handle
, 0, &unix_handle
, NULL
))) return res
;
1661 if (NtQueryVolumeInformationFile( handle
, &io
, &device_info
, sizeof(device_info
),
1662 FileFsDeviceInformation
) == STATUS_SUCCESS
)
1663 removable
= device_info
.Characteristics
& FILE_REMOVABLE_MEDIA
;
1665 if (prot
& VPROT_IMAGE
)
1671 if ((res
= wine_server_handle_to_fd( shared_file
, GENERIC_READ
, &shared_fd
,
1673 res
= map_image( handle
, unix_handle
, base
, size_low
, header_size
,
1674 shared_fd
, removable
, addr_ptr
);
1675 wine_server_release_fd( shared_file
, shared_fd
);
1676 NtClose( shared_file
);
1680 res
= map_image( handle
, unix_handle
, base
, size_low
, header_size
,
1681 -1, removable
, addr_ptr
);
1683 wine_server_release_fd( handle
, unix_handle
);
1684 if (!res
) *size_ptr
= size_low
;
1689 ERR("Sizes larger than 4Gb not supported\n");
1691 if ((offset
.u
.LowPart
>= size_low
) ||
1692 (*size_ptr
> size_low
- offset
.u
.LowPart
))
1694 res
= STATUS_INVALID_PARAMETER
;
1697 if (*size_ptr
) size
= ROUND_SIZE( offset
.u
.LowPart
, *size_ptr
);
1698 else size
= size_low
- offset
.u
.LowPart
;
1704 case PAGE_READWRITE
:
1705 case PAGE_EXECUTE_READWRITE
:
1706 if (!(prot
& VPROT_WRITE
))
1708 res
= STATUS_INVALID_PARAMETER
;
1714 case PAGE_WRITECOPY
:
1716 case PAGE_EXECUTE_READ
:
1717 case PAGE_EXECUTE_WRITECOPY
:
1718 if (prot
& VPROT_READ
) break;
1721 res
= STATUS_INVALID_PARAMETER
;
1725 /* FIXME: If a mapping is created with SEC_RESERVE and a process,
1726 * which has a view of this mapping commits some pages, they will
1727 * appear commited in all other processes, which have the same
1728 * view created. Since we don`t support this yet, we create the
1729 * whole mapping commited.
1731 prot
|= VPROT_COMMITTED
;
1733 /* Reserve a properly aligned area */
1735 RtlEnterCriticalSection( &csVirtual
);
1737 res
= map_view( &view
, *addr_ptr
, size
, prot
);
1740 RtlLeaveCriticalSection( &csVirtual
);
1746 TRACE("handle=%p size=%x offset=%lx%08lx\n",
1747 handle
, size
, offset
.u
.HighPart
, offset
.u
.LowPart
);
1749 res
= map_file_into_view( view
, unix_handle
, 0, size
, offset
.QuadPart
, prot
, removable
);
1750 if (res
== STATUS_SUCCESS
)
1752 if (!removable
) /* don't keep handle open on removable media */
1753 NtDuplicateObject( NtCurrentProcess(), handle
,
1754 NtCurrentProcess(), &view
->mapping
,
1755 0, 0, DUPLICATE_SAME_ACCESS
);
1757 *addr_ptr
= view
->base
;
1762 ERR( "map_file_into_view %p %x %lx%08lx failed\n",
1763 view
->base
, size
, offset
.u
.HighPart
, offset
.u
.LowPart
);
1764 delete_view( view
);
1767 RtlLeaveCriticalSection( &csVirtual
);
1770 wine_server_release_fd( handle
, unix_handle
);
1775 /***********************************************************************
1776 * NtUnmapViewOfSection (NTDLL.@)
1777 * ZwUnmapViewOfSection (NTDLL.@)
1779 NTSTATUS WINAPI
NtUnmapViewOfSection( HANDLE process
, PVOID addr
)
1782 NTSTATUS status
= STATUS_INVALID_PARAMETER
;
1783 void *base
= ROUND_ADDR( addr
, page_mask
);
1785 if (!is_current_process( process
))
1787 ERR("Unsupported on other process\n");
1788 return STATUS_ACCESS_DENIED
;
1790 RtlEnterCriticalSection( &csVirtual
);
1791 if ((view
= VIRTUAL_FindView( base
)) && (base
== view
->base
))
1793 delete_view( view
);
1794 status
= STATUS_SUCCESS
;
1796 RtlLeaveCriticalSection( &csVirtual
);
1801 /***********************************************************************
1802 * NtFlushVirtualMemory (NTDLL.@)
1803 * ZwFlushVirtualMemory (NTDLL.@)
1805 NTSTATUS WINAPI
NtFlushVirtualMemory( HANDLE process
, LPCVOID
*addr_ptr
,
1806 ULONG
*size_ptr
, ULONG unknown
)
1809 NTSTATUS status
= STATUS_SUCCESS
;
1810 void *addr
= ROUND_ADDR( *addr_ptr
, page_mask
);
1812 if (!is_current_process( process
))
1814 ERR("Unsupported on other process\n");
1815 return STATUS_ACCESS_DENIED
;
1817 RtlEnterCriticalSection( &csVirtual
);
1818 if (!(view
= VIRTUAL_FindView( addr
))) status
= STATUS_INVALID_PARAMETER
;
1821 if (!*size_ptr
) *size_ptr
= view
->size
;
1823 if (msync( addr
, *size_ptr
, MS_SYNC
)) status
= STATUS_NOT_MAPPED_DATA
;
1825 RtlLeaveCriticalSection( &csVirtual
);
1830 /***********************************************************************
1831 * NtReadVirtualMemory (NTDLL.@)
1832 * ZwReadVirtualMemory (NTDLL.@)
1834 NTSTATUS WINAPI
NtReadVirtualMemory( HANDLE process
, const void *addr
, void *buffer
,
1835 SIZE_T size
, SIZE_T
*bytes_read
)
1839 SERVER_START_REQ( read_process_memory
)
1841 req
->handle
= process
;
1842 req
->addr
= (void *)addr
;
1843 wine_server_set_reply( req
, buffer
, size
);
1844 if ((status
= wine_server_call( req
))) size
= 0;
1847 if (bytes_read
) *bytes_read
= size
;
1852 /***********************************************************************
1853 * NtWriteVirtualMemory (NTDLL.@)
1854 * ZwWriteVirtualMemory (NTDLL.@)
1856 NTSTATUS WINAPI
NtWriteVirtualMemory( HANDLE process
, void *addr
, const void *buffer
,
1857 SIZE_T size
, SIZE_T
*bytes_written
)
1859 static const unsigned int zero
;
1860 unsigned int first_offset
, last_offset
, first_mask
, last_mask
;
1863 if (!size
) return STATUS_INVALID_PARAMETER
;
1865 /* compute the mask for the first int */
1867 first_offset
= (unsigned int)addr
% sizeof(int);
1868 memset( &first_mask
, 0, first_offset
);
1870 /* compute the mask for the last int */
1871 last_offset
= (size
+ first_offset
) % sizeof(int);
1873 memset( &last_mask
, 0xff, last_offset
? last_offset
: sizeof(int) );
1875 SERVER_START_REQ( write_process_memory
)
1877 req
->handle
= process
;
1878 req
->addr
= (char *)addr
- first_offset
;
1879 req
->first_mask
= first_mask
;
1880 req
->last_mask
= last_mask
;
1881 if (first_offset
) wine_server_add_data( req
, &zero
, first_offset
);
1882 wine_server_add_data( req
, buffer
, size
);
1883 if (last_offset
) wine_server_add_data( req
, &zero
, sizeof(int) - last_offset
);
1885 if ((status
= wine_server_call( req
))) size
= 0;
1888 if (bytes_written
) *bytes_written
= size
;